gitextract_2_7_lx4v/ ├── .auto-changelog ├── .editorconfig ├── .envrc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.md │ ├── dependabot.yml │ ├── mergify.yml │ ├── renovate.json │ ├── scripts/ │ │ └── generate-icons.js │ └── workflows/ │ ├── build.yaml │ ├── publish.yaml │ └── tag.yaml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .release-it.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── flake.nix ├── jsconfig.json ├── package.json ├── src/ │ ├── app.d.ts │ ├── app.html │ ├── css/ │ │ └── global.css │ ├── lib/ │ │ ├── components/ │ │ │ ├── Icon.svelte │ │ │ └── svg/ │ │ │ ├── Raw.svelte │ │ │ └── Svg.svelte │ │ ├── icons/ │ │ │ ├── addressBook.json │ │ │ ├── addressBook.ts │ │ │ ├── addressBookO.json │ │ │ ├── addressBookO.ts │ │ │ ├── addressCard.json │ │ │ ├── addressCard.ts │ │ │ ├── addressCardO.json │ │ │ ├── addressCardO.ts │ │ │ ├── adjust.json │ │ │ ├── adjust.ts │ │ │ ├── adn.json │ │ │ ├── adn.ts │ │ │ ├── alignCenter.json │ │ │ ├── alignCenter.ts │ │ │ ├── alignJustify.json │ │ │ ├── alignJustify.ts │ │ │ ├── alignLeft.json │ │ │ ├── alignLeft.ts │ │ │ ├── alignRight.json │ │ │ ├── alignRight.ts │ │ │ ├── amazon.json │ │ │ ├── amazon.ts │ │ │ ├── ambulance.json │ │ │ ├── ambulance.ts │ │ │ ├── americanSignLanguageInterpreting.json │ │ │ ├── americanSignLanguageInterpreting.ts │ │ │ ├── anchor.json │ │ │ ├── anchor.ts │ │ │ ├── android.json │ │ │ ├── android.ts │ │ │ ├── angellist.json │ │ │ ├── angellist.ts │ │ │ ├── angleDoubleDown.json │ │ │ ├── angleDoubleDown.ts │ │ │ ├── angleDoubleLeft.json │ │ │ ├── angleDoubleLeft.ts │ │ │ ├── angleDoubleRight.json │ │ │ ├── angleDoubleRight.ts │ │ │ ├── angleDoubleUp.json │ │ │ ├── angleDoubleUp.ts │ │ │ ├── angleDown.json │ │ │ ├── angleDown.ts │ │ │ ├── angleLeft.json │ │ │ ├── angleLeft.ts │ │ │ ├── angleRight.json │ │ │ ├── angleRight.ts │ │ │ ├── angleUp.json │ │ │ ├── angleUp.ts │ │ │ ├── apple.json │ │ │ ├── apple.ts │ │ │ ├── archive.json │ │ │ ├── archive.ts │ │ │ ├── areaChart.json │ │ │ ├── areaChart.ts │ │ │ ├── arrowCircleDown.json │ │ │ ├── arrowCircleDown.ts │ │ │ ├── arrowCircleLeft.json │ │ │ ├── arrowCircleLeft.ts │ │ │ ├── arrowCircleODown.json │ │ │ ├── arrowCircleODown.ts │ │ │ ├── arrowCircleOLeft.json │ │ │ ├── arrowCircleOLeft.ts │ │ │ ├── arrowCircleORight.json │ │ │ ├── arrowCircleORight.ts │ │ │ ├── arrowCircleOUp.json │ │ │ ├── arrowCircleOUp.ts │ │ │ ├── arrowCircleRight.json │ │ │ ├── arrowCircleRight.ts │ │ │ ├── arrowCircleUp.json │ │ │ ├── arrowCircleUp.ts │ │ │ ├── arrowDown.json │ │ │ ├── arrowDown.ts │ │ │ ├── arrowLeft.json │ │ │ ├── arrowLeft.ts │ │ │ ├── arrowRight.json │ │ │ ├── arrowRight.ts │ │ │ ├── arrowUp.json │ │ │ ├── arrowUp.ts │ │ │ ├── arrows.json │ │ │ ├── arrows.ts │ │ │ ├── arrowsAlt.json │ │ │ ├── arrowsAlt.ts │ │ │ ├── arrowsH.json │ │ │ ├── arrowsH.ts │ │ │ ├── arrowsV.json │ │ │ ├── arrowsV.ts │ │ │ ├── aslInterpreting.json │ │ │ ├── aslInterpreting.ts │ │ │ ├── assistiveListeningSystems.json │ │ │ ├── assistiveListeningSystems.ts │ │ │ ├── asterisk.json │ │ │ ├── asterisk.ts │ │ │ ├── at.json │ │ │ ├── at.ts │ │ │ ├── audioDescription.json │ │ │ ├── audioDescription.ts │ │ │ ├── automobile.json │ │ │ ├── automobile.ts │ │ │ ├── backward.json │ │ │ ├── backward.ts │ │ │ ├── balanceScale.json │ │ │ ├── balanceScale.ts │ │ │ ├── ban.json │ │ │ ├── ban.ts │ │ │ ├── bandcamp.json │ │ │ ├── bandcamp.ts │ │ │ ├── bank.json │ │ │ ├── bank.ts │ │ │ ├── barChart.json │ │ │ ├── barChart.ts │ │ │ ├── barChartO.json │ │ │ ├── barChartO.ts │ │ │ ├── barcode.json │ │ │ ├── barcode.ts │ │ │ ├── bars.json │ │ │ ├── bars.ts │ │ │ ├── bath.json │ │ │ ├── bath.ts │ │ │ ├── bathtub.json │ │ │ ├── bathtub.ts │ │ │ ├── battery.json │ │ │ ├── battery.ts │ │ │ ├── battery0.json │ │ │ ├── battery0.ts │ │ │ ├── battery1.json │ │ │ ├── battery1.ts │ │ │ ├── battery2.json │ │ │ ├── battery2.ts │ │ │ ├── battery3.json │ │ │ ├── battery3.ts │ │ │ ├── battery4.json │ │ │ ├── battery4.ts │ │ │ ├── batteryEmpty.json │ │ │ ├── batteryEmpty.ts │ │ │ ├── batteryFull.json │ │ │ ├── batteryFull.ts │ │ │ ├── batteryHalf.json │ │ │ ├── batteryHalf.ts │ │ │ ├── batteryQuarter.json │ │ │ ├── batteryQuarter.ts │ │ │ ├── batteryThreeQuarters.json │ │ │ ├── batteryThreeQuarters.ts │ │ │ ├── bed.json │ │ │ ├── bed.ts │ │ │ ├── beer.json │ │ │ ├── beer.ts │ │ │ ├── behance.json │ │ │ ├── behance.ts │ │ │ ├── behanceSquare.json │ │ │ ├── behanceSquare.ts │ │ │ ├── bell.json │ │ │ ├── bell.ts │ │ │ ├── bellO.json │ │ │ ├── bellO.ts │ │ │ ├── bellSlash.json │ │ │ ├── bellSlash.ts │ │ │ ├── bellSlashO.json │ │ │ ├── bellSlashO.ts │ │ │ ├── bicycle.json │ │ │ ├── bicycle.ts │ │ │ ├── binoculars.json │ │ │ ├── binoculars.ts │ │ │ ├── birthdayCake.json │ │ │ ├── birthdayCake.ts │ │ │ ├── bitbucket.json │ │ │ ├── bitbucket.ts │ │ │ ├── bitbucketSquare.json │ │ │ ├── bitbucketSquare.ts │ │ │ ├── bitcoin.json │ │ │ ├── bitcoin.ts │ │ │ ├── blackTie.json │ │ │ ├── blackTie.ts │ │ │ ├── blind.json │ │ │ ├── blind.ts │ │ │ ├── bluetooth.json │ │ │ ├── bluetooth.ts │ │ │ ├── bluetoothB.json │ │ │ ├── bluetoothB.ts │ │ │ ├── bold.json │ │ │ ├── bold.ts │ │ │ ├── bolt.json │ │ │ ├── bolt.ts │ │ │ ├── bomb.json │ │ │ ├── bomb.ts │ │ │ ├── book.json │ │ │ ├── book.ts │ │ │ ├── bookmark.json │ │ │ ├── bookmark.ts │ │ │ ├── bookmarkO.json │ │ │ ├── bookmarkO.ts │ │ │ ├── braille.json │ │ │ ├── braille.ts │ │ │ ├── briefcase.json │ │ │ ├── briefcase.ts │ │ │ ├── btc.json │ │ │ ├── btc.ts │ │ │ ├── bug.json │ │ │ ├── bug.ts │ │ │ ├── building.json │ │ │ ├── building.ts │ │ │ ├── buildingO.json │ │ │ ├── buildingO.ts │ │ │ ├── bullhorn.json │ │ │ ├── bullhorn.ts │ │ │ ├── bullseye.json │ │ │ ├── bullseye.ts │ │ │ ├── bus.json │ │ │ ├── bus.ts │ │ │ ├── buysellads.json │ │ │ ├── buysellads.ts │ │ │ ├── cab.json │ │ │ ├── cab.ts │ │ │ ├── calculator.json │ │ │ ├── calculator.ts │ │ │ ├── calendar.json │ │ │ ├── calendar.ts │ │ │ ├── calendarCheckO.json │ │ │ ├── calendarCheckO.ts │ │ │ ├── calendarMinusO.json │ │ │ ├── calendarMinusO.ts │ │ │ ├── calendarO.json │ │ │ ├── calendarO.ts │ │ │ ├── calendarPlusO.json │ │ │ ├── calendarPlusO.ts │ │ │ ├── calendarTimesO.json │ │ │ ├── calendarTimesO.ts │ │ │ ├── camera.json │ │ │ ├── camera.ts │ │ │ ├── cameraRetro.json │ │ │ ├── cameraRetro.ts │ │ │ ├── car.json │ │ │ ├── car.ts │ │ │ ├── caretDown.json │ │ │ ├── caretDown.ts │ │ │ ├── caretLeft.json │ │ │ ├── caretLeft.ts │ │ │ ├── caretRight.json │ │ │ ├── caretRight.ts │ │ │ ├── caretSquareODown.json │ │ │ ├── caretSquareODown.ts │ │ │ ├── caretSquareOLeft.json │ │ │ ├── caretSquareOLeft.ts │ │ │ ├── caretSquareORight.json │ │ │ ├── caretSquareORight.ts │ │ │ ├── caretSquareOUp.json │ │ │ ├── caretSquareOUp.ts │ │ │ ├── caretUp.json │ │ │ ├── caretUp.ts │ │ │ ├── cartArrowDown.json │ │ │ ├── cartArrowDown.ts │ │ │ ├── cartPlus.json │ │ │ ├── cartPlus.ts │ │ │ ├── cc.json │ │ │ ├── cc.ts │ │ │ ├── ccAmex.json │ │ │ ├── ccAmex.ts │ │ │ ├── ccDinersClub.json │ │ │ ├── ccDinersClub.ts │ │ │ ├── ccDiscover.json │ │ │ ├── ccDiscover.ts │ │ │ ├── ccJcb.json │ │ │ ├── ccJcb.ts │ │ │ ├── ccMastercard.json │ │ │ ├── ccMastercard.ts │ │ │ ├── ccPaypal.json │ │ │ ├── ccPaypal.ts │ │ │ ├── ccStripe.json │ │ │ ├── ccStripe.ts │ │ │ ├── ccVisa.json │ │ │ ├── ccVisa.ts │ │ │ ├── certificate.json │ │ │ ├── certificate.ts │ │ │ ├── chain.json │ │ │ ├── chain.ts │ │ │ ├── chainBroken.json │ │ │ ├── chainBroken.ts │ │ │ ├── check.json │ │ │ ├── check.ts │ │ │ ├── checkCircle.json │ │ │ ├── checkCircle.ts │ │ │ ├── checkCircleO.json │ │ │ ├── checkCircleO.ts │ │ │ ├── checkSquare.json │ │ │ ├── checkSquare.ts │ │ │ ├── checkSquareO.json │ │ │ ├── checkSquareO.ts │ │ │ ├── chevronCircleDown.json │ │ │ ├── chevronCircleDown.ts │ │ │ ├── chevronCircleLeft.json │ │ │ ├── chevronCircleLeft.ts │ │ │ ├── chevronCircleRight.json │ │ │ ├── chevronCircleRight.ts │ │ │ ├── chevronCircleUp.json │ │ │ ├── chevronCircleUp.ts │ │ │ ├── chevronDown.json │ │ │ ├── chevronDown.ts │ │ │ ├── chevronLeft.json │ │ │ ├── chevronLeft.ts │ │ │ ├── chevronRight.json │ │ │ ├── chevronRight.ts │ │ │ ├── chevronUp.json │ │ │ ├── chevronUp.ts │ │ │ ├── child.json │ │ │ ├── child.ts │ │ │ ├── chrome.json │ │ │ ├── chrome.ts │ │ │ ├── circle.json │ │ │ ├── circle.ts │ │ │ ├── circleO.json │ │ │ ├── circleO.ts │ │ │ ├── circleONotch.json │ │ │ ├── circleONotch.ts │ │ │ ├── circleThin.json │ │ │ ├── circleThin.ts │ │ │ ├── clipboard.json │ │ │ ├── clipboard.ts │ │ │ ├── clockO.json │ │ │ ├── clockO.ts │ │ │ ├── clone.json │ │ │ ├── clone.ts │ │ │ ├── close.json │ │ │ ├── close.ts │ │ │ ├── cloud.json │ │ │ ├── cloud.ts │ │ │ ├── cloudDownload.json │ │ │ ├── cloudDownload.ts │ │ │ ├── cloudUpload.json │ │ │ ├── cloudUpload.ts │ │ │ ├── cny.json │ │ │ ├── cny.ts │ │ │ ├── code.json │ │ │ ├── code.ts │ │ │ ├── codeFork.json │ │ │ ├── codeFork.ts │ │ │ ├── codepen.json │ │ │ ├── codepen.ts │ │ │ ├── codiepie.json │ │ │ ├── codiepie.ts │ │ │ ├── coffee.json │ │ │ ├── coffee.ts │ │ │ ├── cog.json │ │ │ ├── cog.ts │ │ │ ├── cogs.json │ │ │ ├── cogs.ts │ │ │ ├── columns.json │ │ │ ├── columns.ts │ │ │ ├── comment.json │ │ │ ├── comment.ts │ │ │ ├── commentO.json │ │ │ ├── commentO.ts │ │ │ ├── commenting.json │ │ │ ├── commenting.ts │ │ │ ├── commentingO.json │ │ │ ├── commentingO.ts │ │ │ ├── comments.json │ │ │ ├── comments.ts │ │ │ ├── commentsO.json │ │ │ ├── commentsO.ts │ │ │ ├── compass.json │ │ │ ├── compass.ts │ │ │ ├── compress.json │ │ │ ├── compress.ts │ │ │ ├── connectdevelop.json │ │ │ ├── connectdevelop.ts │ │ │ ├── contao.json │ │ │ ├── contao.ts │ │ │ ├── copy.json │ │ │ ├── copy.ts │ │ │ ├── copyright.json │ │ │ ├── copyright.ts │ │ │ ├── creativeCommons.json │ │ │ ├── creativeCommons.ts │ │ │ ├── creditCard.json │ │ │ ├── creditCard.ts │ │ │ ├── creditCardAlt.json │ │ │ ├── creditCardAlt.ts │ │ │ ├── crop.json │ │ │ ├── crop.ts │ │ │ ├── crosshairs.json │ │ │ ├── crosshairs.ts │ │ │ ├── css3.json │ │ │ ├── css3.ts │ │ │ ├── cube.json │ │ │ ├── cube.ts │ │ │ ├── cubes.json │ │ │ ├── cubes.ts │ │ │ ├── cut.json │ │ │ ├── cut.ts │ │ │ ├── cutlery.json │ │ │ ├── cutlery.ts │ │ │ ├── dashboard.json │ │ │ ├── dashboard.ts │ │ │ ├── dashcube.json │ │ │ ├── dashcube.ts │ │ │ ├── database.json │ │ │ ├── database.ts │ │ │ ├── deaf.json │ │ │ ├── deaf.ts │ │ │ ├── deafness.json │ │ │ ├── deafness.ts │ │ │ ├── dedent.json │ │ │ ├── dedent.ts │ │ │ ├── delicious.json │ │ │ ├── delicious.ts │ │ │ ├── desktop.json │ │ │ ├── desktop.ts │ │ │ ├── deviantart.json │ │ │ ├── deviantart.ts │ │ │ ├── diamond.json │ │ │ ├── diamond.ts │ │ │ ├── digg.json │ │ │ ├── digg.ts │ │ │ ├── dollar.json │ │ │ ├── dollar.ts │ │ │ ├── dotCircleO.json │ │ │ ├── dotCircleO.ts │ │ │ ├── download.json │ │ │ ├── download.ts │ │ │ ├── dribbble.json │ │ │ ├── dribbble.ts │ │ │ ├── driversLicense.json │ │ │ ├── driversLicense.ts │ │ │ ├── driversLicenseO.json │ │ │ ├── driversLicenseO.ts │ │ │ ├── dropbox.json │ │ │ ├── dropbox.ts │ │ │ ├── drupal.json │ │ │ ├── drupal.ts │ │ │ ├── edge.json │ │ │ ├── edge.ts │ │ │ ├── edit.json │ │ │ ├── edit.ts │ │ │ ├── eercast.json │ │ │ ├── eercast.ts │ │ │ ├── eject.json │ │ │ ├── eject.ts │ │ │ ├── ellipsisH.json │ │ │ ├── ellipsisH.ts │ │ │ ├── ellipsisV.json │ │ │ ├── ellipsisV.ts │ │ │ ├── empire.json │ │ │ ├── empire.ts │ │ │ ├── envelope.json │ │ │ ├── envelope.ts │ │ │ ├── envelopeO.json │ │ │ ├── envelopeO.ts │ │ │ ├── envelopeOpen.json │ │ │ ├── envelopeOpen.ts │ │ │ ├── envelopeOpenO.json │ │ │ ├── envelopeOpenO.ts │ │ │ ├── envelopeSquare.json │ │ │ ├── envelopeSquare.ts │ │ │ ├── envira.json │ │ │ ├── envira.ts │ │ │ ├── eraser.json │ │ │ ├── eraser.ts │ │ │ ├── etsy.json │ │ │ ├── etsy.ts │ │ │ ├── eur.json │ │ │ ├── eur.ts │ │ │ ├── euro.json │ │ │ ├── euro.ts │ │ │ ├── exchange.json │ │ │ ├── exchange.ts │ │ │ ├── exclamation.json │ │ │ ├── exclamation.ts │ │ │ ├── exclamationCircle.json │ │ │ ├── exclamationCircle.ts │ │ │ ├── exclamationTriangle.json │ │ │ ├── exclamationTriangle.ts │ │ │ ├── expand.json │ │ │ ├── expand.ts │ │ │ ├── expeditedssl.json │ │ │ ├── expeditedssl.ts │ │ │ ├── externalLink.json │ │ │ ├── externalLink.ts │ │ │ ├── externalLinkSquare.json │ │ │ ├── externalLinkSquare.ts │ │ │ ├── eye.json │ │ │ ├── eye.ts │ │ │ ├── eyeSlash.json │ │ │ ├── eyeSlash.ts │ │ │ ├── eyedropper.json │ │ │ ├── eyedropper.ts │ │ │ ├── fa.json │ │ │ ├── fa.ts │ │ │ ├── fa500px.json │ │ │ ├── fa500px.ts │ │ │ ├── faTry.json │ │ │ ├── faTry.ts │ │ │ ├── facebook.json │ │ │ ├── facebook.ts │ │ │ ├── facebookF.json │ │ │ ├── facebookF.ts │ │ │ ├── facebookOfficial.json │ │ │ ├── facebookOfficial.ts │ │ │ ├── facebookSquare.json │ │ │ ├── facebookSquare.ts │ │ │ ├── fastBackward.json │ │ │ ├── fastBackward.ts │ │ │ ├── fastForward.json │ │ │ ├── fastForward.ts │ │ │ ├── fax.json │ │ │ ├── fax.ts │ │ │ ├── feed.json │ │ │ ├── feed.ts │ │ │ ├── female.json │ │ │ ├── female.ts │ │ │ ├── fighterJet.json │ │ │ ├── fighterJet.ts │ │ │ ├── file.json │ │ │ ├── file.ts │ │ │ ├── fileArchiveO.json │ │ │ ├── fileArchiveO.ts │ │ │ ├── fileAudioO.json │ │ │ ├── fileAudioO.ts │ │ │ ├── fileCodeO.json │ │ │ ├── fileCodeO.ts │ │ │ ├── fileExcelO.json │ │ │ ├── fileExcelO.ts │ │ │ ├── fileImageO.json │ │ │ ├── fileImageO.ts │ │ │ ├── fileMovieO.json │ │ │ ├── fileMovieO.ts │ │ │ ├── fileO.json │ │ │ ├── fileO.ts │ │ │ ├── filePdfO.json │ │ │ ├── filePdfO.ts │ │ │ ├── filePhotoO.json │ │ │ ├── filePhotoO.ts │ │ │ ├── filePictureO.json │ │ │ ├── filePictureO.ts │ │ │ ├── filePowerpointO.json │ │ │ ├── filePowerpointO.ts │ │ │ ├── fileSoundO.json │ │ │ ├── fileSoundO.ts │ │ │ ├── fileText.json │ │ │ ├── fileText.ts │ │ │ ├── fileTextO.json │ │ │ ├── fileTextO.ts │ │ │ ├── fileVideoO.json │ │ │ ├── fileVideoO.ts │ │ │ ├── fileWordO.json │ │ │ ├── fileWordO.ts │ │ │ ├── fileZipO.json │ │ │ ├── fileZipO.ts │ │ │ ├── filesO.json │ │ │ ├── filesO.ts │ │ │ ├── film.json │ │ │ ├── film.ts │ │ │ ├── filter.json │ │ │ ├── filter.ts │ │ │ ├── fire.json │ │ │ ├── fire.ts │ │ │ ├── fireExtinguisher.json │ │ │ ├── fireExtinguisher.ts │ │ │ ├── firefox.json │ │ │ ├── firefox.ts │ │ │ ├── firstOrder.json │ │ │ ├── firstOrder.ts │ │ │ ├── flag.json │ │ │ ├── flag.ts │ │ │ ├── flagCheckered.json │ │ │ ├── flagCheckered.ts │ │ │ ├── flagO.json │ │ │ ├── flagO.ts │ │ │ ├── flash.json │ │ │ ├── flash.ts │ │ │ ├── flask.json │ │ │ ├── flask.ts │ │ │ ├── flickr.json │ │ │ ├── flickr.ts │ │ │ ├── floppyO.json │ │ │ ├── floppyO.ts │ │ │ ├── folder.json │ │ │ ├── folder.ts │ │ │ ├── folderO.json │ │ │ ├── folderO.ts │ │ │ ├── folderOpen.json │ │ │ ├── folderOpen.ts │ │ │ ├── folderOpenO.json │ │ │ ├── folderOpenO.ts │ │ │ ├── font.json │ │ │ ├── font.ts │ │ │ ├── fontAwesome.json │ │ │ ├── fontAwesome.ts │ │ │ ├── fonticons.json │ │ │ ├── fonticons.ts │ │ │ ├── fortAwesome.json │ │ │ ├── fortAwesome.ts │ │ │ ├── forumbee.json │ │ │ ├── forumbee.ts │ │ │ ├── forward.json │ │ │ ├── forward.ts │ │ │ ├── foursquare.json │ │ │ ├── foursquare.ts │ │ │ ├── freeCodeCamp.json │ │ │ ├── freeCodeCamp.ts │ │ │ ├── frownO.json │ │ │ ├── frownO.ts │ │ │ ├── futbolO.json │ │ │ ├── futbolO.ts │ │ │ ├── gamepad.json │ │ │ ├── gamepad.ts │ │ │ ├── gavel.json │ │ │ ├── gavel.ts │ │ │ ├── gbp.json │ │ │ ├── gbp.ts │ │ │ ├── ge.json │ │ │ ├── ge.ts │ │ │ ├── gear.json │ │ │ ├── gear.ts │ │ │ ├── gears.json │ │ │ ├── gears.ts │ │ │ ├── genderless.json │ │ │ ├── genderless.ts │ │ │ ├── getPocket.json │ │ │ ├── getPocket.ts │ │ │ ├── gg.json │ │ │ ├── gg.ts │ │ │ ├── ggCircle.json │ │ │ ├── ggCircle.ts │ │ │ ├── gift.json │ │ │ ├── gift.ts │ │ │ ├── git.json │ │ │ ├── git.ts │ │ │ ├── gitSquare.json │ │ │ ├── gitSquare.ts │ │ │ ├── github.json │ │ │ ├── github.ts │ │ │ ├── githubAlt.json │ │ │ ├── githubAlt.ts │ │ │ ├── githubSquare.json │ │ │ ├── githubSquare.ts │ │ │ ├── gitlab.json │ │ │ ├── gitlab.ts │ │ │ ├── gittip.json │ │ │ ├── gittip.ts │ │ │ ├── glass.json │ │ │ ├── glass.ts │ │ │ ├── glide.json │ │ │ ├── glide.ts │ │ │ ├── glideG.json │ │ │ ├── glideG.ts │ │ │ ├── globe.json │ │ │ ├── globe.ts │ │ │ ├── google.json │ │ │ ├── google.ts │ │ │ ├── googlePlus.json │ │ │ ├── googlePlus.ts │ │ │ ├── googlePlusCircle.json │ │ │ ├── googlePlusCircle.ts │ │ │ ├── googlePlusOfficial.json │ │ │ ├── googlePlusOfficial.ts │ │ │ ├── googlePlusSquare.json │ │ │ ├── googlePlusSquare.ts │ │ │ ├── googleWallet.json │ │ │ ├── googleWallet.ts │ │ │ ├── graduationCap.json │ │ │ ├── graduationCap.ts │ │ │ ├── gratipay.json │ │ │ ├── gratipay.ts │ │ │ ├── grav.json │ │ │ ├── grav.ts │ │ │ ├── group.json │ │ │ ├── group.ts │ │ │ ├── hSquare.json │ │ │ ├── hSquare.ts │ │ │ ├── hackerNews.json │ │ │ ├── hackerNews.ts │ │ │ ├── handGrabO.json │ │ │ ├── handGrabO.ts │ │ │ ├── handLizardO.json │ │ │ ├── handLizardO.ts │ │ │ ├── handODown.json │ │ │ ├── handODown.ts │ │ │ ├── handOLeft.json │ │ │ ├── handOLeft.ts │ │ │ ├── handORight.json │ │ │ ├── handORight.ts │ │ │ ├── handOUp.json │ │ │ ├── handOUp.ts │ │ │ ├── handPaperO.json │ │ │ ├── handPaperO.ts │ │ │ ├── handPeaceO.json │ │ │ ├── handPeaceO.ts │ │ │ ├── handPointerO.json │ │ │ ├── handPointerO.ts │ │ │ ├── handRockO.json │ │ │ ├── handRockO.ts │ │ │ ├── handScissorsO.json │ │ │ ├── handScissorsO.ts │ │ │ ├── handSpockO.json │ │ │ ├── handSpockO.ts │ │ │ ├── handStopO.json │ │ │ ├── handStopO.ts │ │ │ ├── handshakeO.json │ │ │ ├── handshakeO.ts │ │ │ ├── hardOfHearing.json │ │ │ ├── hardOfHearing.ts │ │ │ ├── hashtag.json │ │ │ ├── hashtag.ts │ │ │ ├── hddO.json │ │ │ ├── hddO.ts │ │ │ ├── header.json │ │ │ ├── header.ts │ │ │ ├── headphones.json │ │ │ ├── headphones.ts │ │ │ ├── heart.json │ │ │ ├── heart.ts │ │ │ ├── heartO.json │ │ │ ├── heartO.ts │ │ │ ├── heartbeat.json │ │ │ ├── heartbeat.ts │ │ │ ├── history.json │ │ │ ├── history.ts │ │ │ ├── home.json │ │ │ ├── home.ts │ │ │ ├── hospitalO.json │ │ │ ├── hospitalO.ts │ │ │ ├── hotel.json │ │ │ ├── hotel.ts │ │ │ ├── hourglass.json │ │ │ ├── hourglass.ts │ │ │ ├── hourglass1.json │ │ │ ├── hourglass1.ts │ │ │ ├── hourglass2.json │ │ │ ├── hourglass2.ts │ │ │ ├── hourglass3.json │ │ │ ├── hourglass3.ts │ │ │ ├── hourglassEnd.json │ │ │ ├── hourglassEnd.ts │ │ │ ├── hourglassHalf.json │ │ │ ├── hourglassHalf.ts │ │ │ ├── hourglassO.json │ │ │ ├── hourglassO.ts │ │ │ ├── hourglassStart.json │ │ │ ├── hourglassStart.ts │ │ │ ├── houzz.json │ │ │ ├── houzz.ts │ │ │ ├── html5.json │ │ │ ├── html5.ts │ │ │ ├── iCursor.json │ │ │ ├── iCursor.ts │ │ │ ├── icons.json │ │ │ ├── idBadge.json │ │ │ ├── idBadge.ts │ │ │ ├── idCard.json │ │ │ ├── idCard.ts │ │ │ ├── idCardO.json │ │ │ ├── idCardO.ts │ │ │ ├── ils.json │ │ │ ├── ils.ts │ │ │ ├── image.json │ │ │ ├── image.ts │ │ │ ├── imdb.json │ │ │ ├── imdb.ts │ │ │ ├── inbox.json │ │ │ ├── inbox.ts │ │ │ ├── indent.json │ │ │ ├── indent.ts │ │ │ ├── index.ts │ │ │ ├── industry.json │ │ │ ├── industry.ts │ │ │ ├── info.json │ │ │ ├── info.ts │ │ │ ├── infoCircle.json │ │ │ ├── infoCircle.ts │ │ │ ├── inr.json │ │ │ ├── inr.ts │ │ │ ├── instagram.json │ │ │ ├── instagram.ts │ │ │ ├── institution.json │ │ │ ├── institution.ts │ │ │ ├── internetExplorer.json │ │ │ ├── internetExplorer.ts │ │ │ ├── intersex.json │ │ │ ├── intersex.ts │ │ │ ├── ioxhost.json │ │ │ ├── ioxhost.ts │ │ │ ├── italic.json │ │ │ ├── italic.ts │ │ │ ├── joomla.json │ │ │ ├── joomla.ts │ │ │ ├── jpy.json │ │ │ ├── jpy.ts │ │ │ ├── jsfiddle.json │ │ │ ├── jsfiddle.ts │ │ │ ├── key.json │ │ │ ├── key.ts │ │ │ ├── keyboardO.json │ │ │ ├── keyboardO.ts │ │ │ ├── krw.json │ │ │ ├── krw.ts │ │ │ ├── language.json │ │ │ ├── language.ts │ │ │ ├── laptop.json │ │ │ ├── laptop.ts │ │ │ ├── lastfm.json │ │ │ ├── lastfm.ts │ │ │ ├── lastfmSquare.json │ │ │ ├── lastfmSquare.ts │ │ │ ├── leaf.json │ │ │ ├── leaf.ts │ │ │ ├── leanpub.json │ │ │ ├── leanpub.ts │ │ │ ├── legal.json │ │ │ ├── legal.ts │ │ │ ├── lemonO.json │ │ │ ├── lemonO.ts │ │ │ ├── levelDown.json │ │ │ ├── levelDown.ts │ │ │ ├── levelUp.json │ │ │ ├── levelUp.ts │ │ │ ├── lifeBouy.json │ │ │ ├── lifeBouy.ts │ │ │ ├── lifeBuoy.json │ │ │ ├── lifeBuoy.ts │ │ │ ├── lifeRing.json │ │ │ ├── lifeRing.ts │ │ │ ├── lifeSaver.json │ │ │ ├── lifeSaver.ts │ │ │ ├── lightbulbO.json │ │ │ ├── lightbulbO.ts │ │ │ ├── lineChart.json │ │ │ ├── lineChart.ts │ │ │ ├── link.json │ │ │ ├── link.ts │ │ │ ├── linkedin.json │ │ │ ├── linkedin.ts │ │ │ ├── linkedinSquare.json │ │ │ ├── linkedinSquare.ts │ │ │ ├── linode.json │ │ │ ├── linode.ts │ │ │ ├── linux.json │ │ │ ├── linux.ts │ │ │ ├── list.json │ │ │ ├── list.ts │ │ │ ├── listAlt.json │ │ │ ├── listAlt.ts │ │ │ ├── listOl.json │ │ │ ├── listOl.ts │ │ │ ├── listUl.json │ │ │ ├── listUl.ts │ │ │ ├── locationArrow.json │ │ │ ├── locationArrow.ts │ │ │ ├── lock.json │ │ │ ├── lock.ts │ │ │ ├── longArrowDown.json │ │ │ ├── longArrowDown.ts │ │ │ ├── longArrowLeft.json │ │ │ ├── longArrowLeft.ts │ │ │ ├── longArrowRight.json │ │ │ ├── longArrowRight.ts │ │ │ ├── longArrowUp.json │ │ │ ├── longArrowUp.ts │ │ │ ├── lowVision.json │ │ │ ├── lowVision.ts │ │ │ ├── magic.json │ │ │ ├── magic.ts │ │ │ ├── magnet.json │ │ │ ├── magnet.ts │ │ │ ├── mailForward.json │ │ │ ├── mailForward.ts │ │ │ ├── mailReply.json │ │ │ ├── mailReply.ts │ │ │ ├── mailReplyAll.json │ │ │ ├── mailReplyAll.ts │ │ │ ├── male.json │ │ │ ├── male.ts │ │ │ ├── map.json │ │ │ ├── map.ts │ │ │ ├── mapMarker.json │ │ │ ├── mapMarker.ts │ │ │ ├── mapO.json │ │ │ ├── mapO.ts │ │ │ ├── mapPin.json │ │ │ ├── mapPin.ts │ │ │ ├── mapSigns.json │ │ │ ├── mapSigns.ts │ │ │ ├── mars.json │ │ │ ├── mars.ts │ │ │ ├── marsDouble.json │ │ │ ├── marsDouble.ts │ │ │ ├── marsStroke.json │ │ │ ├── marsStroke.ts │ │ │ ├── marsStrokeH.json │ │ │ ├── marsStrokeH.ts │ │ │ ├── marsStrokeV.json │ │ │ ├── marsStrokeV.ts │ │ │ ├── maxcdn.json │ │ │ ├── maxcdn.ts │ │ │ ├── meanpath.json │ │ │ ├── meanpath.ts │ │ │ ├── medium.json │ │ │ ├── medium.ts │ │ │ ├── medkit.json │ │ │ ├── medkit.ts │ │ │ ├── meetup.json │ │ │ ├── meetup.ts │ │ │ ├── mehO.json │ │ │ ├── mehO.ts │ │ │ ├── mercury.json │ │ │ ├── mercury.ts │ │ │ ├── microchip.json │ │ │ ├── microchip.ts │ │ │ ├── microphone.json │ │ │ ├── microphone.ts │ │ │ ├── microphoneSlash.json │ │ │ ├── microphoneSlash.ts │ │ │ ├── minus.json │ │ │ ├── minus.ts │ │ │ ├── minusCircle.json │ │ │ ├── minusCircle.ts │ │ │ ├── minusSquare.json │ │ │ ├── minusSquare.ts │ │ │ ├── minusSquareO.json │ │ │ ├── minusSquareO.ts │ │ │ ├── mixcloud.json │ │ │ ├── mixcloud.ts │ │ │ ├── mobile.json │ │ │ ├── mobile.ts │ │ │ ├── mobilePhone.json │ │ │ ├── mobilePhone.ts │ │ │ ├── modx.json │ │ │ ├── modx.ts │ │ │ ├── money.json │ │ │ ├── money.ts │ │ │ ├── moonO.json │ │ │ ├── moonO.ts │ │ │ ├── mortarBoard.json │ │ │ ├── mortarBoard.ts │ │ │ ├── motorcycle.json │ │ │ ├── motorcycle.ts │ │ │ ├── mousePointer.json │ │ │ ├── mousePointer.ts │ │ │ ├── music.json │ │ │ ├── music.ts │ │ │ ├── navicon.json │ │ │ ├── navicon.ts │ │ │ ├── neuter.json │ │ │ ├── neuter.ts │ │ │ ├── newspaperO.json │ │ │ ├── newspaperO.ts │ │ │ ├── objectGroup.json │ │ │ ├── objectGroup.ts │ │ │ ├── objectUngroup.json │ │ │ ├── objectUngroup.ts │ │ │ ├── odnoklassniki.json │ │ │ ├── odnoklassniki.ts │ │ │ ├── odnoklassnikiSquare.json │ │ │ ├── odnoklassnikiSquare.ts │ │ │ ├── opencart.json │ │ │ ├── opencart.ts │ │ │ ├── openid.json │ │ │ ├── openid.ts │ │ │ ├── opera.json │ │ │ ├── opera.ts │ │ │ ├── optinMonster.json │ │ │ ├── optinMonster.ts │ │ │ ├── outdent.json │ │ │ ├── outdent.ts │ │ │ ├── pagelines.json │ │ │ ├── pagelines.ts │ │ │ ├── paintBrush.json │ │ │ ├── paintBrush.ts │ │ │ ├── paperPlane.json │ │ │ ├── paperPlane.ts │ │ │ ├── paperPlaneO.json │ │ │ ├── paperPlaneO.ts │ │ │ ├── paperclip.json │ │ │ ├── paperclip.ts │ │ │ ├── paragraph.json │ │ │ ├── paragraph.ts │ │ │ ├── paste.json │ │ │ ├── paste.ts │ │ │ ├── pause.json │ │ │ ├── pause.ts │ │ │ ├── pauseCircle.json │ │ │ ├── pauseCircle.ts │ │ │ ├── pauseCircleO.json │ │ │ ├── pauseCircleO.ts │ │ │ ├── paw.json │ │ │ ├── paw.ts │ │ │ ├── paypal.json │ │ │ ├── paypal.ts │ │ │ ├── pencil.json │ │ │ ├── pencil.ts │ │ │ ├── pencilSquare.json │ │ │ ├── pencilSquare.ts │ │ │ ├── pencilSquareO.json │ │ │ ├── pencilSquareO.ts │ │ │ ├── percent.json │ │ │ ├── percent.ts │ │ │ ├── phone.json │ │ │ ├── phone.ts │ │ │ ├── phoneSquare.json │ │ │ ├── phoneSquare.ts │ │ │ ├── photo.json │ │ │ ├── photo.ts │ │ │ ├── pictureO.json │ │ │ ├── pictureO.ts │ │ │ ├── pieChart.json │ │ │ ├── pieChart.ts │ │ │ ├── piedPiper.json │ │ │ ├── piedPiper.ts │ │ │ ├── piedPiperAlt.json │ │ │ ├── piedPiperAlt.ts │ │ │ ├── piedPiperPp.json │ │ │ ├── piedPiperPp.ts │ │ │ ├── pinterest.json │ │ │ ├── pinterest.ts │ │ │ ├── pinterestP.json │ │ │ ├── pinterestP.ts │ │ │ ├── pinterestSquare.json │ │ │ ├── pinterestSquare.ts │ │ │ ├── plane.json │ │ │ ├── plane.ts │ │ │ ├── play.json │ │ │ ├── play.ts │ │ │ ├── playCircle.json │ │ │ ├── playCircle.ts │ │ │ ├── playCircleO.json │ │ │ ├── playCircleO.ts │ │ │ ├── plug.json │ │ │ ├── plug.ts │ │ │ ├── plus.json │ │ │ ├── plus.ts │ │ │ ├── plusCircle.json │ │ │ ├── plusCircle.ts │ │ │ ├── plusSquare.json │ │ │ ├── plusSquare.ts │ │ │ ├── plusSquareO.json │ │ │ ├── plusSquareO.ts │ │ │ ├── podcast.json │ │ │ ├── podcast.ts │ │ │ ├── powerOff.json │ │ │ ├── powerOff.ts │ │ │ ├── print.json │ │ │ ├── print.ts │ │ │ ├── productHunt.json │ │ │ ├── productHunt.ts │ │ │ ├── puzzlePiece.json │ │ │ ├── puzzlePiece.ts │ │ │ ├── qq.json │ │ │ ├── qq.ts │ │ │ ├── qrcode.json │ │ │ ├── qrcode.ts │ │ │ ├── question.json │ │ │ ├── question.ts │ │ │ ├── questionCircle.json │ │ │ ├── questionCircle.ts │ │ │ ├── questionCircleO.json │ │ │ ├── questionCircleO.ts │ │ │ ├── quora.json │ │ │ ├── quora.ts │ │ │ ├── quoteLeft.json │ │ │ ├── quoteLeft.ts │ │ │ ├── quoteRight.json │ │ │ ├── quoteRight.ts │ │ │ ├── ra.json │ │ │ ├── ra.ts │ │ │ ├── random.json │ │ │ ├── random.ts │ │ │ ├── ravelry.json │ │ │ ├── ravelry.ts │ │ │ ├── rebel.json │ │ │ ├── rebel.ts │ │ │ ├── recycle.json │ │ │ ├── recycle.ts │ │ │ ├── reddit.json │ │ │ ├── reddit.ts │ │ │ ├── redditAlien.json │ │ │ ├── redditAlien.ts │ │ │ ├── redditSquare.json │ │ │ ├── redditSquare.ts │ │ │ ├── refresh.json │ │ │ ├── refresh.ts │ │ │ ├── registered.json │ │ │ ├── registered.ts │ │ │ ├── remove.json │ │ │ ├── remove.ts │ │ │ ├── renren.json │ │ │ ├── renren.ts │ │ │ ├── reorder.json │ │ │ ├── reorder.ts │ │ │ ├── repeat.json │ │ │ ├── repeat.ts │ │ │ ├── reply.json │ │ │ ├── reply.ts │ │ │ ├── replyAll.json │ │ │ ├── replyAll.ts │ │ │ ├── resistance.json │ │ │ ├── resistance.ts │ │ │ ├── retweet.json │ │ │ ├── retweet.ts │ │ │ ├── rmb.json │ │ │ ├── rmb.ts │ │ │ ├── road.json │ │ │ ├── road.ts │ │ │ ├── rocket.json │ │ │ ├── rocket.ts │ │ │ ├── rotateLeft.json │ │ │ ├── rotateLeft.ts │ │ │ ├── rotateRight.json │ │ │ ├── rotateRight.ts │ │ │ ├── rouble.json │ │ │ ├── rouble.ts │ │ │ ├── rss.json │ │ │ ├── rss.ts │ │ │ ├── rssSquare.json │ │ │ ├── rssSquare.ts │ │ │ ├── rub.json │ │ │ ├── rub.ts │ │ │ ├── ruble.json │ │ │ ├── ruble.ts │ │ │ ├── rupee.json │ │ │ ├── rupee.ts │ │ │ ├── s15.json │ │ │ ├── s15.ts │ │ │ ├── safari.json │ │ │ ├── safari.ts │ │ │ ├── save.json │ │ │ ├── save.ts │ │ │ ├── scissors.json │ │ │ ├── scissors.ts │ │ │ ├── scribd.json │ │ │ ├── scribd.ts │ │ │ ├── search.json │ │ │ ├── search.ts │ │ │ ├── searchMinus.json │ │ │ ├── searchMinus.ts │ │ │ ├── searchPlus.json │ │ │ ├── searchPlus.ts │ │ │ ├── sellsy.json │ │ │ ├── sellsy.ts │ │ │ ├── send.json │ │ │ ├── send.ts │ │ │ ├── sendO.json │ │ │ ├── sendO.ts │ │ │ ├── server.json │ │ │ ├── server.ts │ │ │ ├── share.json │ │ │ ├── share.ts │ │ │ ├── shareAlt.json │ │ │ ├── shareAlt.ts │ │ │ ├── shareAltSquare.json │ │ │ ├── shareAltSquare.ts │ │ │ ├── shareSquare.json │ │ │ ├── shareSquare.ts │ │ │ ├── shareSquareO.json │ │ │ ├── shareSquareO.ts │ │ │ ├── shekel.json │ │ │ ├── shekel.ts │ │ │ ├── sheqel.json │ │ │ ├── sheqel.ts │ │ │ ├── shield.json │ │ │ ├── shield.ts │ │ │ ├── ship.json │ │ │ ├── ship.ts │ │ │ ├── shirtsinbulk.json │ │ │ ├── shirtsinbulk.ts │ │ │ ├── shoppingBag.json │ │ │ ├── shoppingBag.ts │ │ │ ├── shoppingBasket.json │ │ │ ├── shoppingBasket.ts │ │ │ ├── shoppingCart.json │ │ │ ├── shoppingCart.ts │ │ │ ├── shower.json │ │ │ ├── shower.ts │ │ │ ├── signIn.json │ │ │ ├── signIn.ts │ │ │ ├── signLanguage.json │ │ │ ├── signLanguage.ts │ │ │ ├── signOut.json │ │ │ ├── signOut.ts │ │ │ ├── signal.json │ │ │ ├── signal.ts │ │ │ ├── signing.json │ │ │ ├── signing.ts │ │ │ ├── simplybuilt.json │ │ │ ├── simplybuilt.ts │ │ │ ├── sitemap.json │ │ │ ├── sitemap.ts │ │ │ ├── skyatlas.json │ │ │ ├── skyatlas.ts │ │ │ ├── skype.json │ │ │ ├── skype.ts │ │ │ ├── slack.json │ │ │ ├── slack.ts │ │ │ ├── sliders.json │ │ │ ├── sliders.ts │ │ │ ├── slideshare.json │ │ │ ├── slideshare.ts │ │ │ ├── smileO.json │ │ │ ├── smileO.ts │ │ │ ├── snapchat.json │ │ │ ├── snapchat.ts │ │ │ ├── snapchatGhost.json │ │ │ ├── snapchatGhost.ts │ │ │ ├── snapchatSquare.json │ │ │ ├── snapchatSquare.ts │ │ │ ├── snowflakeO.json │ │ │ ├── snowflakeO.ts │ │ │ ├── soccerBallO.json │ │ │ ├── soccerBallO.ts │ │ │ ├── sort.json │ │ │ ├── sort.ts │ │ │ ├── sortAlphaAsc.json │ │ │ ├── sortAlphaAsc.ts │ │ │ ├── sortAlphaDesc.json │ │ │ ├── sortAlphaDesc.ts │ │ │ ├── sortAmountAsc.json │ │ │ ├── sortAmountAsc.ts │ │ │ ├── sortAmountDesc.json │ │ │ ├── sortAmountDesc.ts │ │ │ ├── sortAsc.json │ │ │ ├── sortAsc.ts │ │ │ ├── sortDesc.json │ │ │ ├── sortDesc.ts │ │ │ ├── sortDown.json │ │ │ ├── sortDown.ts │ │ │ ├── sortNumericAsc.json │ │ │ ├── sortNumericAsc.ts │ │ │ ├── sortNumericDesc.json │ │ │ ├── sortNumericDesc.ts │ │ │ ├── sortUp.json │ │ │ ├── sortUp.ts │ │ │ ├── soundcloud.json │ │ │ ├── soundcloud.ts │ │ │ ├── spaceShuttle.json │ │ │ ├── spaceShuttle.ts │ │ │ ├── spinner.json │ │ │ ├── spinner.ts │ │ │ ├── spoon.json │ │ │ ├── spoon.ts │ │ │ ├── spotify.json │ │ │ ├── spotify.ts │ │ │ ├── square.json │ │ │ ├── square.ts │ │ │ ├── squareO.json │ │ │ ├── squareO.ts │ │ │ ├── stackExchange.json │ │ │ ├── stackExchange.ts │ │ │ ├── stackOverflow.json │ │ │ ├── stackOverflow.ts │ │ │ ├── star.json │ │ │ ├── star.ts │ │ │ ├── starHalf.json │ │ │ ├── starHalf.ts │ │ │ ├── starHalfEmpty.json │ │ │ ├── starHalfEmpty.ts │ │ │ ├── starHalfFull.json │ │ │ ├── starHalfFull.ts │ │ │ ├── starHalfO.json │ │ │ ├── starHalfO.ts │ │ │ ├── starO.json │ │ │ ├── starO.ts │ │ │ ├── steam.json │ │ │ ├── steam.ts │ │ │ ├── steamSquare.json │ │ │ ├── steamSquare.ts │ │ │ ├── stepBackward.json │ │ │ ├── stepBackward.ts │ │ │ ├── stepForward.json │ │ │ ├── stepForward.ts │ │ │ ├── stethoscope.json │ │ │ ├── stethoscope.ts │ │ │ ├── stickyNote.json │ │ │ ├── stickyNote.ts │ │ │ ├── stickyNoteO.json │ │ │ ├── stickyNoteO.ts │ │ │ ├── stop.json │ │ │ ├── stop.ts │ │ │ ├── stopCircle.json │ │ │ ├── stopCircle.ts │ │ │ ├── stopCircleO.json │ │ │ ├── stopCircleO.ts │ │ │ ├── streetView.json │ │ │ ├── streetView.ts │ │ │ ├── strikethrough.json │ │ │ ├── strikethrough.ts │ │ │ ├── stumbleupon.json │ │ │ ├── stumbleupon.ts │ │ │ ├── stumbleuponCircle.json │ │ │ ├── stumbleuponCircle.ts │ │ │ ├── subscript.json │ │ │ ├── subscript.ts │ │ │ ├── subway.json │ │ │ ├── subway.ts │ │ │ ├── suitcase.json │ │ │ ├── suitcase.ts │ │ │ ├── sunO.json │ │ │ ├── sunO.ts │ │ │ ├── superpowers.json │ │ │ ├── superpowers.ts │ │ │ ├── superscript.json │ │ │ ├── superscript.ts │ │ │ ├── support.json │ │ │ ├── support.ts │ │ │ ├── table.json │ │ │ ├── table.ts │ │ │ ├── tablet.json │ │ │ ├── tablet.ts │ │ │ ├── tachometer.json │ │ │ ├── tachometer.ts │ │ │ ├── tag.json │ │ │ ├── tag.ts │ │ │ ├── tags.json │ │ │ ├── tags.ts │ │ │ ├── tasks.json │ │ │ ├── tasks.ts │ │ │ ├── taxi.json │ │ │ ├── taxi.ts │ │ │ ├── telegram.json │ │ │ ├── telegram.ts │ │ │ ├── television.json │ │ │ ├── television.ts │ │ │ ├── tencentWeibo.json │ │ │ ├── tencentWeibo.ts │ │ │ ├── terminal.json │ │ │ ├── terminal.ts │ │ │ ├── textHeight.json │ │ │ ├── textHeight.ts │ │ │ ├── textWidth.json │ │ │ ├── textWidth.ts │ │ │ ├── th.json │ │ │ ├── th.ts │ │ │ ├── thLarge.json │ │ │ ├── thLarge.ts │ │ │ ├── thList.json │ │ │ ├── thList.ts │ │ │ ├── themeisle.json │ │ │ ├── themeisle.ts │ │ │ ├── thermometer.json │ │ │ ├── thermometer.ts │ │ │ ├── thermometer0.json │ │ │ ├── thermometer0.ts │ │ │ ├── thermometer1.json │ │ │ ├── thermometer1.ts │ │ │ ├── thermometer2.json │ │ │ ├── thermometer2.ts │ │ │ ├── thermometer3.json │ │ │ ├── thermometer3.ts │ │ │ ├── thermometer4.json │ │ │ ├── thermometer4.ts │ │ │ ├── thermometerEmpty.json │ │ │ ├── thermometerEmpty.ts │ │ │ ├── thermometerFull.json │ │ │ ├── thermometerFull.ts │ │ │ ├── thermometerHalf.json │ │ │ ├── thermometerHalf.ts │ │ │ ├── thermometerQuarter.json │ │ │ ├── thermometerQuarter.ts │ │ │ ├── thermometerThreeQuarters.json │ │ │ ├── thermometerThreeQuarters.ts │ │ │ ├── thumbTack.json │ │ │ ├── thumbTack.ts │ │ │ ├── thumbsDown.json │ │ │ ├── thumbsDown.ts │ │ │ ├── thumbsODown.json │ │ │ ├── thumbsODown.ts │ │ │ ├── thumbsOUp.json │ │ │ ├── thumbsOUp.ts │ │ │ ├── thumbsUp.json │ │ │ ├── thumbsUp.ts │ │ │ ├── ticket.json │ │ │ ├── ticket.ts │ │ │ ├── times.json │ │ │ ├── times.ts │ │ │ ├── timesCircle.json │ │ │ ├── timesCircle.ts │ │ │ ├── timesCircleO.json │ │ │ ├── timesCircleO.ts │ │ │ ├── timesRectangle.json │ │ │ ├── timesRectangle.ts │ │ │ ├── timesRectangleO.json │ │ │ ├── timesRectangleO.ts │ │ │ ├── tint.json │ │ │ ├── tint.ts │ │ │ ├── toggleDown.json │ │ │ ├── toggleDown.ts │ │ │ ├── toggleLeft.json │ │ │ ├── toggleLeft.ts │ │ │ ├── toggleOff.json │ │ │ ├── toggleOff.ts │ │ │ ├── toggleOn.json │ │ │ ├── toggleOn.ts │ │ │ ├── toggleRight.json │ │ │ ├── toggleRight.ts │ │ │ ├── toggleUp.json │ │ │ ├── toggleUp.ts │ │ │ ├── trademark.json │ │ │ ├── trademark.ts │ │ │ ├── train.json │ │ │ ├── train.ts │ │ │ ├── transgender.json │ │ │ ├── transgender.ts │ │ │ ├── transgenderAlt.json │ │ │ ├── transgenderAlt.ts │ │ │ ├── trash.json │ │ │ ├── trash.ts │ │ │ ├── trashO.json │ │ │ ├── trashO.ts │ │ │ ├── tree.json │ │ │ ├── tree.ts │ │ │ ├── trello.json │ │ │ ├── trello.ts │ │ │ ├── tripadvisor.json │ │ │ ├── tripadvisor.ts │ │ │ ├── trophy.json │ │ │ ├── trophy.ts │ │ │ ├── truck.json │ │ │ ├── truck.ts │ │ │ ├── tty.json │ │ │ ├── tty.ts │ │ │ ├── tumblr.json │ │ │ ├── tumblr.ts │ │ │ ├── tumblrSquare.json │ │ │ ├── tumblrSquare.ts │ │ │ ├── turkishLira.json │ │ │ ├── turkishLira.ts │ │ │ ├── tv.json │ │ │ ├── tv.ts │ │ │ ├── twitch.json │ │ │ ├── twitch.ts │ │ │ ├── twitter.json │ │ │ ├── twitter.ts │ │ │ ├── twitterSquare.json │ │ │ ├── twitterSquare.ts │ │ │ ├── umbrella.json │ │ │ ├── umbrella.ts │ │ │ ├── underline.json │ │ │ ├── underline.ts │ │ │ ├── undo.json │ │ │ ├── undo.ts │ │ │ ├── universalAccess.json │ │ │ ├── universalAccess.ts │ │ │ ├── university.json │ │ │ ├── university.ts │ │ │ ├── unlink.json │ │ │ ├── unlink.ts │ │ │ ├── unlock.json │ │ │ ├── unlock.ts │ │ │ ├── unlockAlt.json │ │ │ ├── unlockAlt.ts │ │ │ ├── unsorted.json │ │ │ ├── unsorted.ts │ │ │ ├── upload.json │ │ │ ├── upload.ts │ │ │ ├── usb.json │ │ │ ├── usb.ts │ │ │ ├── usd.json │ │ │ ├── usd.ts │ │ │ ├── user.json │ │ │ ├── user.ts │ │ │ ├── userCircle.json │ │ │ ├── userCircle.ts │ │ │ ├── userCircleO.json │ │ │ ├── userCircleO.ts │ │ │ ├── userMd.json │ │ │ ├── userMd.ts │ │ │ ├── userO.json │ │ │ ├── userO.ts │ │ │ ├── userPlus.json │ │ │ ├── userPlus.ts │ │ │ ├── userSecret.json │ │ │ ├── userSecret.ts │ │ │ ├── userTimes.json │ │ │ ├── userTimes.ts │ │ │ ├── users.json │ │ │ ├── users.ts │ │ │ ├── vcard.json │ │ │ ├── vcard.ts │ │ │ ├── vcardO.json │ │ │ ├── vcardO.ts │ │ │ ├── venus.json │ │ │ ├── venus.ts │ │ │ ├── venusDouble.json │ │ │ ├── venusDouble.ts │ │ │ ├── venusMars.json │ │ │ ├── venusMars.ts │ │ │ ├── viacoin.json │ │ │ ├── viacoin.ts │ │ │ ├── viadeo.json │ │ │ ├── viadeo.ts │ │ │ ├── viadeoSquare.json │ │ │ ├── viadeoSquare.ts │ │ │ ├── videoCamera.json │ │ │ ├── videoCamera.ts │ │ │ ├── vimeo.json │ │ │ ├── vimeo.ts │ │ │ ├── vimeoSquare.json │ │ │ ├── vimeoSquare.ts │ │ │ ├── vine.json │ │ │ ├── vine.ts │ │ │ ├── vk.json │ │ │ ├── vk.ts │ │ │ ├── volumeControlPhone.json │ │ │ ├── volumeControlPhone.ts │ │ │ ├── volumeDown.json │ │ │ ├── volumeDown.ts │ │ │ ├── volumeOff.json │ │ │ ├── volumeOff.ts │ │ │ ├── volumeUp.json │ │ │ ├── volumeUp.ts │ │ │ ├── warning.json │ │ │ ├── warning.ts │ │ │ ├── wechat.json │ │ │ ├── wechat.ts │ │ │ ├── weibo.json │ │ │ ├── weibo.ts │ │ │ ├── weixin.json │ │ │ ├── weixin.ts │ │ │ ├── whatsapp.json │ │ │ ├── whatsapp.ts │ │ │ ├── wheelchair.json │ │ │ ├── wheelchair.ts │ │ │ ├── wheelchairAlt.json │ │ │ ├── wheelchairAlt.ts │ │ │ ├── wifi.json │ │ │ ├── wifi.ts │ │ │ ├── wikipediaW.json │ │ │ ├── wikipediaW.ts │ │ │ ├── windowClose.json │ │ │ ├── windowClose.ts │ │ │ ├── windowCloseO.json │ │ │ ├── windowCloseO.ts │ │ │ ├── windowMaximize.json │ │ │ ├── windowMaximize.ts │ │ │ ├── windowMinimize.json │ │ │ ├── windowMinimize.ts │ │ │ ├── windowRestore.json │ │ │ ├── windowRestore.ts │ │ │ ├── windows.json │ │ │ ├── windows.ts │ │ │ ├── won.json │ │ │ ├── won.ts │ │ │ ├── wordpress.json │ │ │ ├── wordpress.ts │ │ │ ├── wpbeginner.json │ │ │ ├── wpbeginner.ts │ │ │ ├── wpexplorer.json │ │ │ ├── wpexplorer.ts │ │ │ ├── wpforms.json │ │ │ ├── wpforms.ts │ │ │ ├── wrench.json │ │ │ ├── wrench.ts │ │ │ ├── xing.json │ │ │ ├── xing.ts │ │ │ ├── xingSquare.json │ │ │ ├── xingSquare.ts │ │ │ ├── yCombinator.json │ │ │ ├── yCombinator.ts │ │ │ ├── yCombinatorSquare.json │ │ │ ├── yCombinatorSquare.ts │ │ │ ├── yahoo.json │ │ │ ├── yahoo.ts │ │ │ ├── yc.json │ │ │ ├── yc.ts │ │ │ ├── ycSquare.json │ │ │ ├── ycSquare.ts │ │ │ ├── yelp.json │ │ │ ├── yelp.ts │ │ │ ├── yen.json │ │ │ ├── yen.ts │ │ │ ├── yoast.json │ │ │ ├── yoast.ts │ │ │ ├── youtube.json │ │ │ ├── youtube.ts │ │ │ ├── youtubePlay.json │ │ │ ├── youtubePlay.ts │ │ │ ├── youtubeSquare.json │ │ │ └── youtubeSquare.ts │ │ └── index.ts │ └── routes/ │ ├── +layout.ts │ ├── +page.svelte │ └── icons/ │ └── +page.svelte ├── svelte.config.js └── vite.config.js