diff --git a/dj_backend_server/dj_backend_server/settings.py b/dj_backend_server/dj_backend_server/settings.py index 4b18b27c..9986bc11 100644 --- a/dj_backend_server/dj_backend_server/settings.py +++ b/dj_backend_server/dj_backend_server/settings.py @@ -85,6 +85,7 @@ 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', + 'web.utils.context_processors.app_url', ], 'libraries':{ 'time_difference': 'web.template_filters.time_difference' diff --git a/dj_backend_server/web/interfaces/dashboard.py b/dj_backend_server/web/interfaces/dashboard.py new file mode 100644 index 00000000..26d98458 --- /dev/null +++ b/dj_backend_server/web/interfaces/dashboard.py @@ -0,0 +1,22 @@ +from django.db.models import Count +from django.db.models.functions import TruncDay +from web.models.chat_histories import ChatHistory + + +def get_discussion_counts(): + # Aggregate discussion counts per day grouped by session_id + discussion_counts = ( + ChatHistory.objects + .values('session_id') + .annotate(created_date=TruncDay('created_at')) + .values('created_date') + .annotate(discussion_count=Count('id')) + .order_by('created_date') + ) + formatted_counts = [ + {'year': count['created_date'].strftime('%b %d'), 'value': count['discussion_count']} + for count in discussion_counts + ] + return formatted_counts + + diff --git a/dj_backend_server/web/static/android-chrome-192x192.png b/dj_backend_server/web/static/android-chrome-192x192.png index c3d8ac52..c910e94f 100644 Binary files a/dj_backend_server/web/static/android-chrome-192x192.png and b/dj_backend_server/web/static/android-chrome-192x192.png differ diff --git a/dj_backend_server/web/static/android-chrome-512x512.png b/dj_backend_server/web/static/android-chrome-512x512.png index 74944f30..dd9ab406 100644 Binary files a/dj_backend_server/web/static/android-chrome-512x512.png and b/dj_backend_server/web/static/android-chrome-512x512.png differ diff --git a/dj_backend_server/web/static/apple-touch-icon.png b/dj_backend_server/web/static/apple-touch-icon.png index c06579b0..c1763f4d 100644 Binary files a/dj_backend_server/web/static/apple-touch-icon.png and b/dj_backend_server/web/static/apple-touch-icon.png differ diff --git a/dj_backend_server/web/static/assets/css/icons.css b/dj_backend_server/web/static/assets/css/icons.css new file mode 100644 index 00000000..d305334b --- /dev/null +++ b/dj_backend_server/web/static/assets/css/icons.css @@ -0,0 +1,10545 @@ +/* +Template Name: TailFox - Responsive Tailwind Admin Dashboard +Version: 1.0 +Author: MyraStudio +Email: myrathemes@gmail.com +File: Icons Css File +*/ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +.fa { + font-family: var(--fa-style-family, "Font Awesome 6 Free"); + font-weight: var(--fa-style, 900); +} + +.fa, +.fa-classic, +.fa-sharp, +.fas, +.fa-solid, +.far, +.fa-regular, +.fab, +.fa-brands { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: var(--fa-display, inline-block); + font-style: normal; + font-variant: normal; + line-height: 1; + text-rendering: auto; +} + +.fas, +.fa-classic, +.fa-solid, +.far, +.fa-regular { + font-family: "Font Awesome 6 Free"; +} + +.fab, +.fa-brands { + font-family: "Font Awesome 6 Brands"; +} + +.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-2xs { + font-size: 0.625em; + line-height: 0.1em; + vertical-align: 0.225em; +} + +.fa-xs { + font-size: 0.75em; + line-height: 0.08333em; + vertical-align: 0.125em; +} + +.fa-sm { + font-size: 0.875em; + line-height: 0.07143em; + vertical-align: 0.05357em; +} + +.fa-lg { + font-size: 1.25em; + line-height: 0.05em; + vertical-align: -0.075em; +} + +.fa-xl { + font-size: 1.5em; + line-height: 0.04167em; + vertical-align: -0.125em; +} + +.fa-2xl { + font-size: 2em; + line-height: 0.03125em; + vertical-align: -0.1875em; +} + +.fa-fw { + text-align: center; + width: 1.25em; +} + +.fa-ul { + list-style-type: none; + margin-left: var(--fa-li-margin, 2.5em); + padding-left: 0; +} + +.fa-ul > li { + position: relative; +} + +.fa-li { + left: calc(var(--fa-li-width, 2em) * -1); + position: absolute; + text-align: center; + width: var(--fa-li-width, 2em); + line-height: inherit; +} + +.fa-border { + border-color: var(--fa-border-color, #eee); + border-radius: var(--fa-border-radius, 0.1em); + border-style: var(--fa-border-style, solid); + border-width: var(--fa-border-width, 0.08em); + padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); +} + +.fa-pull-left { + float: left; + margin-right: var(--fa-pull-margin, 0.3em); +} + +.fa-pull-right { + float: right; + margin-left: var(--fa-pull-margin, 0.3em); +} + +.fa-beat { + -webkit-animation-name: fa-beat; + animation-name: fa-beat; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); + animation-timing-function: var(--fa-animation-timing, ease-in-out); +} + +.fa-bounce { + -webkit-animation-name: fa-bounce; + animation-name: fa-bounce; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); +} + +.fa-fade { + -webkit-animation-name: fa-fade; + animation-name: fa-fade; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); +} + +.fa-beat-fade { + -webkit-animation-name: fa-beat-fade; + animation-name: fa-beat-fade; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); +} + +.fa-flip { + -webkit-animation-name: fa-flip; + animation-name: fa-flip; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); + animation-timing-function: var(--fa-animation-timing, ease-in-out); +} + +.fa-shake { + -webkit-animation-name: fa-shake; + animation-name: fa-shake; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, linear); + animation-timing-function: var(--fa-animation-timing, linear); +} + +.fa-spin { + -webkit-animation-name: fa-spin; + animation-name: fa-spin; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 2s); + animation-duration: var(--fa-animation-duration, 2s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, linear); + animation-timing-function: var(--fa-animation-timing, linear); +} + +.fa-spin-reverse { + --fa-animation-direction: reverse; +} + +.fa-pulse, +.fa-spin-pulse { + -webkit-animation-name: fa-spin; + animation-name: fa-spin; + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); + animation-timing-function: var(--fa-animation-timing, steps(8)); +} + +@media (prefers-reduced-motion: reduce) { + .fa-beat, + .fa-bounce, + .fa-fade, + .fa-beat-fade, + .fa-flip, + .fa-pulse, + .fa-shake, + .fa-spin, + .fa-spin-pulse { + -webkit-animation-delay: -1ms; + animation-delay: -1ms; + -webkit-animation-duration: 1ms; + animation-duration: 1ms; + -webkit-animation-iteration-count: 1; + animation-iteration-count: 1; + -webkit-transition-delay: 0s; + transition-delay: 0s; + -webkit-transition-duration: 0s; + transition-duration: 0s; + } +} +@-webkit-keyframes fa-beat { + 0%, 90% { + -webkit-transform: scale(1); + transform: scale(1); + } + 45% { + -webkit-transform: scale(var(--fa-beat-scale, 1.25)); + transform: scale(var(--fa-beat-scale, 1.25)); + } +} +@keyframes fa-beat { + 0%, 90% { + -webkit-transform: scale(1); + transform: scale(1); + } + 45% { + -webkit-transform: scale(var(--fa-beat-scale, 1.25)); + transform: scale(var(--fa-beat-scale, 1.25)); + } +} +@-webkit-keyframes fa-bounce { + 0% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); + } + 10% { + -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); + transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); + } + 30% { + -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); + transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); + } + 50% { + -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); + transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); + } + 57% { + -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); + transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); + } + 64% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); + } + 100% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); + } +} +@keyframes fa-bounce { + 0% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); + } + 10% { + -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); + transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); + } + 30% { + -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); + transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); + } + 50% { + -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); + transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); + } + 57% { + -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); + transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); + } + 64% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); + } + 100% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); + } +} +@-webkit-keyframes fa-fade { + 50% { + opacity: var(--fa-fade-opacity, 0.4); + } +} +@keyframes fa-fade { + 50% { + opacity: var(--fa-fade-opacity, 0.4); + } +} +@-webkit-keyframes fa-beat-fade { + 0%, 100% { + opacity: var(--fa-beat-fade-opacity, 0.4); + -webkit-transform: scale(1); + transform: scale(1); + } + 50% { + opacity: 1; + -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); + transform: scale(var(--fa-beat-fade-scale, 1.125)); + } +} +@keyframes fa-beat-fade { + 0%, 100% { + opacity: var(--fa-beat-fade-opacity, 0.4); + -webkit-transform: scale(1); + transform: scale(1); + } + 50% { + opacity: 1; + -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); + transform: scale(var(--fa-beat-fade-scale, 1.125)); + } +} +@-webkit-keyframes fa-flip { + 50% { + -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); + transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); + } +} +@keyframes fa-flip { + 50% { + -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); + transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); + } +} +@-webkit-keyframes fa-shake { + 0% { + -webkit-transform: rotate(-15deg); + transform: rotate(-15deg); + } + 4% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); + } + 8%, 24% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); + } + 12%, 28% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); + } + 16% { + -webkit-transform: rotate(-22deg); + transform: rotate(-22deg); + } + 20% { + -webkit-transform: rotate(22deg); + transform: rotate(22deg); + } + 32% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); + } + 36% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); + } + 40%, 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@keyframes fa-shake { + 0% { + -webkit-transform: rotate(-15deg); + transform: rotate(-15deg); + } + 4% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); + } + 8%, 24% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); + } + 12%, 28% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); + } + 16% { + -webkit-transform: rotate(-22deg); + transform: rotate(-22deg); + } + 20% { + -webkit-transform: rotate(22deg); + transform: rotate(22deg); + } + 32% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); + } + 36% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); + } + 40%, 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } +} +@-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 { + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +.fa-rotate-180 { + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} + +.fa-rotate-270 { + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} + +.fa-flip-horizontal { + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +.fa-flip-vertical { + -webkit-transform: scale(1, -1); + transform: scale(1, -1); +} + +.fa-flip-both, +.fa-flip-horizontal.fa-flip-vertical { + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); +} + +.fa-rotate-by { + -webkit-transform: rotate(var(--fa-rotate-angle, none)); + transform: rotate(var(--fa-rotate-angle, none)); +} + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2.5em; +} + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; + z-index: var(--fa-stack-z-index, auto); +} + +.fa-stack-1x { + line-height: inherit; +} + +.fa-stack-2x { + font-size: 2em; +} + +.fa-inverse { + color: var(--fa-inverse, #fff); +} + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ +.fa-0::before { + content: "0"; +} + +.fa-1::before { + content: "1"; +} + +.fa-2::before { + content: "2"; +} + +.fa-3::before { + content: "3"; +} + +.fa-4::before { + content: "4"; +} + +.fa-5::before { + content: "5"; +} + +.fa-6::before { + content: "6"; +} + +.fa-7::before { + content: "7"; +} + +.fa-8::before { + content: "8"; +} + +.fa-9::before { + content: "9"; +} + +.fa-fill-drip::before { + content: "\f576"; +} + +.fa-arrows-to-circle::before { + content: "\e4bd"; +} + +.fa-circle-chevron-right::before { + content: "\f138"; +} + +.fa-chevron-circle-right::before { + content: "\f138"; +} + +.fa-at::before { + content: "@"; +} + +.fa-trash-can::before { + content: "\f2ed"; +} + +.fa-trash-alt::before { + content: "\f2ed"; +} + +.fa-text-height::before { + content: "\f034"; +} + +.fa-user-xmark::before { + content: "\f235"; +} + +.fa-user-times::before { + content: "\f235"; +} + +.fa-stethoscope::before { + content: "\f0f1"; +} + +.fa-message::before { + content: "\f27a"; +} + +.fa-comment-alt::before { + content: "\f27a"; +} + +.fa-info::before { + content: "\f129"; +} + +.fa-down-left-and-up-right-to-center::before { + content: "\f422"; +} + +.fa-compress-alt::before { + content: "\f422"; +} + +.fa-explosion::before { + content: "\e4e9"; +} + +.fa-file-lines::before { + content: "\f15c"; +} + +.fa-file-alt::before { + content: "\f15c"; +} + +.fa-file-text::before { + content: "\f15c"; +} + +.fa-wave-square::before { + content: "\f83e"; +} + +.fa-ring::before { + content: "\f70b"; +} + +.fa-building-un::before { + content: "\e4d9"; +} + +.fa-dice-three::before { + content: "\f527"; +} + +.fa-calendar-days::before { + content: "\f073"; +} + +.fa-calendar-alt::before { + content: "\f073"; +} + +.fa-anchor-circle-check::before { + content: "\e4aa"; +} + +.fa-building-circle-arrow-right::before { + content: "\e4d1"; +} + +.fa-volleyball::before { + content: "\f45f"; +} + +.fa-volleyball-ball::before { + content: "\f45f"; +} + +.fa-arrows-up-to-line::before { + content: "\e4c2"; +} + +.fa-sort-down::before { + content: "\f0dd"; +} + +.fa-sort-desc::before { + content: "\f0dd"; +} + +.fa-circle-minus::before { + content: "\f056"; +} + +.fa-minus-circle::before { + content: "\f056"; +} + +.fa-door-open::before { + content: "\f52b"; +} + +.fa-right-from-bracket::before { + content: "\f2f5"; +} + +.fa-sign-out-alt::before { + content: "\f2f5"; +} + +.fa-atom::before { + content: "\f5d2"; +} + +.fa-soap::before { + content: "\e06e"; +} + +.fa-icons::before { + content: "\f86d"; +} + +.fa-heart-music-camera-bolt::before { + content: "\f86d"; +} + +.fa-microphone-lines-slash::before { + content: "\f539"; +} + +.fa-microphone-alt-slash::before { + content: "\f539"; +} + +.fa-bridge-circle-check::before { + content: "\e4c9"; +} + +.fa-pump-medical::before { + content: "\e06a"; +} + +.fa-fingerprint::before { + content: "\f577"; +} + +.fa-hand-point-right::before { + content: "\f0a4"; +} + +.fa-magnifying-glass-location::before { + content: "\f689"; +} + +.fa-search-location::before { + content: "\f689"; +} + +.fa-forward-step::before { + content: "\f051"; +} + +.fa-step-forward::before { + content: "\f051"; +} + +.fa-face-smile-beam::before { + content: "\f5b8"; +} + +.fa-smile-beam::before { + content: "\f5b8"; +} + +.fa-flag-checkered::before { + content: "\f11e"; +} + +.fa-football::before { + content: "\f44e"; +} + +.fa-football-ball::before { + content: "\f44e"; +} + +.fa-school-circle-exclamation::before { + content: "\e56c"; +} + +.fa-crop::before { + content: "\f125"; +} + +.fa-angles-down::before { + content: "\f103"; +} + +.fa-angle-double-down::before { + content: "\f103"; +} + +.fa-users-rectangle::before { + content: "\e594"; +} + +.fa-people-roof::before { + content: "\e537"; +} + +.fa-people-line::before { + content: "\e534"; +} + +.fa-beer-mug-empty::before { + content: "\f0fc"; +} + +.fa-beer::before { + content: "\f0fc"; +} + +.fa-diagram-predecessor::before { + content: "\e477"; +} + +.fa-arrow-up-long::before { + content: "\f176"; +} + +.fa-long-arrow-up::before { + content: "\f176"; +} + +.fa-fire-flame-simple::before { + content: "\f46a"; +} + +.fa-burn::before { + content: "\f46a"; +} + +.fa-person::before { + content: "\f183"; +} + +.fa-male::before { + content: "\f183"; +} + +.fa-laptop::before { + content: "\f109"; +} + +.fa-file-csv::before { + content: "\f6dd"; +} + +.fa-menorah::before { + content: "\f676"; +} + +.fa-truck-plane::before { + content: "\e58f"; +} + +.fa-record-vinyl::before { + content: "\f8d9"; +} + +.fa-face-grin-stars::before { + content: "\f587"; +} + +.fa-grin-stars::before { + content: "\f587"; +} + +.fa-bong::before { + content: "\f55c"; +} + +.fa-spaghetti-monster-flying::before { + content: "\f67b"; +} + +.fa-pastafarianism::before { + content: "\f67b"; +} + +.fa-arrow-down-up-across-line::before { + content: "\e4af"; +} + +.fa-spoon::before { + content: "\f2e5"; +} + +.fa-utensil-spoon::before { + content: "\f2e5"; +} + +.fa-jar-wheat::before { + content: "\e517"; +} + +.fa-envelopes-bulk::before { + content: "\f674"; +} + +.fa-mail-bulk::before { + content: "\f674"; +} + +.fa-file-circle-exclamation::before { + content: "\e4eb"; +} + +.fa-circle-h::before { + content: "\f47e"; +} + +.fa-hospital-symbol::before { + content: "\f47e"; +} + +.fa-pager::before { + content: "\f815"; +} + +.fa-address-book::before { + content: "\f2b9"; +} + +.fa-contact-book::before { + content: "\f2b9"; +} + +.fa-strikethrough::before { + content: "\f0cc"; +} + +.fa-k::before { + content: "K"; +} + +.fa-landmark-flag::before { + content: "\e51c"; +} + +.fa-pencil::before { + content: "\f303"; +} + +.fa-pencil-alt::before { + content: "\f303"; +} + +.fa-backward::before { + content: "\f04a"; +} + +.fa-caret-right::before { + content: "\f0da"; +} + +.fa-comments::before { + content: "\f086"; +} + +.fa-paste::before { + content: "\f0ea"; +} + +.fa-file-clipboard::before { + content: "\f0ea"; +} + +.fa-code-pull-request::before { + content: "\e13c"; +} + +.fa-clipboard-list::before { + content: "\f46d"; +} + +.fa-truck-ramp-box::before { + content: "\f4de"; +} + +.fa-truck-loading::before { + content: "\f4de"; +} + +.fa-user-check::before { + content: "\f4fc"; +} + +.fa-vial-virus::before { + content: "\e597"; +} + +.fa-sheet-plastic::before { + content: "\e571"; +} + +.fa-blog::before { + content: "\f781"; +} + +.fa-user-ninja::before { + content: "\f504"; +} + +.fa-person-arrow-up-from-line::before { + content: "\e539"; +} + +.fa-scroll-torah::before { + content: "\f6a0"; +} + +.fa-torah::before { + content: "\f6a0"; +} + +.fa-broom-ball::before { + content: "\f458"; +} + +.fa-quidditch::before { + content: "\f458"; +} + +.fa-quidditch-broom-ball::before { + content: "\f458"; +} + +.fa-toggle-off::before { + content: "\f204"; +} + +.fa-box-archive::before { + content: "\f187"; +} + +.fa-archive::before { + content: "\f187"; +} + +.fa-person-drowning::before { + content: "\e545"; +} + +.fa-arrow-down-9-1::before { + content: "\f886"; +} + +.fa-sort-numeric-desc::before { + content: "\f886"; +} + +.fa-sort-numeric-down-alt::before { + content: "\f886"; +} + +.fa-face-grin-tongue-squint::before { + content: "\f58a"; +} + +.fa-grin-tongue-squint::before { + content: "\f58a"; +} + +.fa-spray-can::before { + content: "\f5bd"; +} + +.fa-truck-monster::before { + content: "\f63b"; +} + +.fa-w::before { + content: "W"; +} + +.fa-earth-africa::before { + content: "\f57c"; +} + +.fa-globe-africa::before { + content: "\f57c"; +} + +.fa-rainbow::before { + content: "\f75b"; +} + +.fa-circle-notch::before { + content: "\f1ce"; +} + +.fa-tablet-screen-button::before { + content: "\f3fa"; +} + +.fa-tablet-alt::before { + content: "\f3fa"; +} + +.fa-paw::before { + content: "\f1b0"; +} + +.fa-cloud::before { + content: "\f0c2"; +} + +.fa-trowel-bricks::before { + content: "\e58a"; +} + +.fa-face-flushed::before { + content: "\f579"; +} + +.fa-flushed::before { + content: "\f579"; +} + +.fa-hospital-user::before { + content: "\f80d"; +} + +.fa-tent-arrow-left-right::before { + content: "\e57f"; +} + +.fa-gavel::before { + content: "\f0e3"; +} + +.fa-legal::before { + content: "\f0e3"; +} + +.fa-binoculars::before { + content: "\f1e5"; +} + +.fa-microphone-slash::before { + content: "\f131"; +} + +.fa-box-tissue::before { + content: "\e05b"; +} + +.fa-motorcycle::before { + content: "\f21c"; +} + +.fa-bell-concierge::before { + content: "\f562"; +} + +.fa-concierge-bell::before { + content: "\f562"; +} + +.fa-pen-ruler::before { + content: "\f5ae"; +} + +.fa-pencil-ruler::before { + content: "\f5ae"; +} + +.fa-people-arrows::before { + content: "\e068"; +} + +.fa-people-arrows-left-right::before { + content: "\e068"; +} + +.fa-mars-and-venus-burst::before { + content: "\e523"; +} + +.fa-square-caret-right::before { + content: "\f152"; +} + +.fa-caret-square-right::before { + content: "\f152"; +} + +.fa-scissors::before { + content: "\f0c4"; +} + +.fa-cut::before { + content: "\f0c4"; +} + +.fa-sun-plant-wilt::before { + content: "\e57a"; +} + +.fa-toilets-portable::before { + content: "\e584"; +} + +.fa-hockey-puck::before { + content: "\f453"; +} + +.fa-table::before { + content: "\f0ce"; +} + +.fa-magnifying-glass-arrow-right::before { + content: "\e521"; +} + +.fa-tachograph-digital::before { + content: "\f566"; +} + +.fa-digital-tachograph::before { + content: "\f566"; +} + +.fa-users-slash::before { + content: "\e073"; +} + +.fa-clover::before { + content: "\e139"; +} + +.fa-reply::before { + content: "\f3e5"; +} + +.fa-mail-reply::before { + content: "\f3e5"; +} + +.fa-star-and-crescent::before { + content: "\f699"; +} + +.fa-house-fire::before { + content: "\e50c"; +} + +.fa-square-minus::before { + content: "\f146"; +} + +.fa-minus-square::before { + content: "\f146"; +} + +.fa-helicopter::before { + content: "\f533"; +} + +.fa-compass::before { + content: "\f14e"; +} + +.fa-square-caret-down::before { + content: "\f150"; +} + +.fa-caret-square-down::before { + content: "\f150"; +} + +.fa-file-circle-question::before { + content: "\e4ef"; +} + +.fa-laptop-code::before { + content: "\f5fc"; +} + +.fa-swatchbook::before { + content: "\f5c3"; +} + +.fa-prescription-bottle::before { + content: "\f485"; +} + +.fa-bars::before { + content: "\f0c9"; +} + +.fa-navicon::before { + content: "\f0c9"; +} + +.fa-people-group::before { + content: "\e533"; +} + +.fa-hourglass-end::before { + content: "\f253"; +} + +.fa-hourglass-3::before { + content: "\f253"; +} + +.fa-heart-crack::before { + content: "\f7a9"; +} + +.fa-heart-broken::before { + content: "\f7a9"; +} + +.fa-square-up-right::before { + content: "\f360"; +} + +.fa-external-link-square-alt::before { + content: "\f360"; +} + +.fa-face-kiss-beam::before { + content: "\f597"; +} + +.fa-kiss-beam::before { + content: "\f597"; +} + +.fa-film::before { + content: "\f008"; +} + +.fa-ruler-horizontal::before { + content: "\f547"; +} + +.fa-people-robbery::before { + content: "\e536"; +} + +.fa-lightbulb::before { + content: "\f0eb"; +} + +.fa-caret-left::before { + content: "\f0d9"; +} + +.fa-circle-exclamation::before { + content: "\f06a"; +} + +.fa-exclamation-circle::before { + content: "\f06a"; +} + +.fa-school-circle-xmark::before { + content: "\e56d"; +} + +.fa-arrow-right-from-bracket::before { + content: "\f08b"; +} + +.fa-sign-out::before { + content: "\f08b"; +} + +.fa-circle-chevron-down::before { + content: "\f13a"; +} + +.fa-chevron-circle-down::before { + content: "\f13a"; +} + +.fa-unlock-keyhole::before { + content: "\f13e"; +} + +.fa-unlock-alt::before { + content: "\f13e"; +} + +.fa-cloud-showers-heavy::before { + content: "\f740"; +} + +.fa-headphones-simple::before { + content: "\f58f"; +} + +.fa-headphones-alt::before { + content: "\f58f"; +} + +.fa-sitemap::before { + content: "\f0e8"; +} + +.fa-circle-dollar-to-slot::before { + content: "\f4b9"; +} + +.fa-donate::before { + content: "\f4b9"; +} + +.fa-memory::before { + content: "\f538"; +} + +.fa-road-spikes::before { + content: "\e568"; +} + +.fa-fire-burner::before { + content: "\e4f1"; +} + +.fa-flag::before { + content: "\f024"; +} + +.fa-hanukiah::before { + content: "\f6e6"; +} + +.fa-feather::before { + content: "\f52d"; +} + +.fa-volume-low::before { + content: "\f027"; +} + +.fa-volume-down::before { + content: "\f027"; +} + +.fa-comment-slash::before { + content: "\f4b3"; +} + +.fa-cloud-sun-rain::before { + content: "\f743"; +} + +.fa-compress::before { + content: "\f066"; +} + +.fa-wheat-awn::before { + content: "\e2cd"; +} + +.fa-wheat-alt::before { + content: "\e2cd"; +} + +.fa-ankh::before { + content: "\f644"; +} + +.fa-hands-holding-child::before { + content: "\e4fa"; +} + +.fa-asterisk::before { + content: "*"; +} + +.fa-square-check::before { + content: "\f14a"; +} + +.fa-check-square::before { + content: "\f14a"; +} + +.fa-peseta-sign::before { + content: "\e221"; +} + +.fa-heading::before { + content: "\f1dc"; +} + +.fa-header::before { + content: "\f1dc"; +} + +.fa-ghost::before { + content: "\f6e2"; +} + +.fa-list::before { + content: "\f03a"; +} + +.fa-list-squares::before { + content: "\f03a"; +} + +.fa-square-phone-flip::before { + content: "\f87b"; +} + +.fa-phone-square-alt::before { + content: "\f87b"; +} + +.fa-cart-plus::before { + content: "\f217"; +} + +.fa-gamepad::before { + content: "\f11b"; +} + +.fa-circle-dot::before { + content: "\f192"; +} + +.fa-dot-circle::before { + content: "\f192"; +} + +.fa-face-dizzy::before { + content: "\f567"; +} + +.fa-dizzy::before { + content: "\f567"; +} + +.fa-egg::before { + content: "\f7fb"; +} + +.fa-house-medical-circle-xmark::before { + content: "\e513"; +} + +.fa-campground::before { + content: "\f6bb"; +} + +.fa-folder-plus::before { + content: "\f65e"; +} + +.fa-futbol::before { + content: "\f1e3"; +} + +.fa-futbol-ball::before { + content: "\f1e3"; +} + +.fa-soccer-ball::before { + content: "\f1e3"; +} + +.fa-paintbrush::before { + content: "\f1fc"; +} + +.fa-paint-brush::before { + content: "\f1fc"; +} + +.fa-lock::before { + content: "\f023"; +} + +.fa-gas-pump::before { + content: "\f52f"; +} + +.fa-hot-tub-person::before { + content: "\f593"; +} + +.fa-hot-tub::before { + content: "\f593"; +} + +.fa-map-location::before { + content: "\f59f"; +} + +.fa-map-marked::before { + content: "\f59f"; +} + +.fa-house-flood-water::before { + content: "\e50e"; +} + +.fa-tree::before { + content: "\f1bb"; +} + +.fa-bridge-lock::before { + content: "\e4cc"; +} + +.fa-sack-dollar::before { + content: "\f81d"; +} + +.fa-pen-to-square::before { + content: "\f044"; +} + +.fa-edit::before { + content: "\f044"; +} + +.fa-car-side::before { + content: "\f5e4"; +} + +.fa-share-nodes::before { + content: "\f1e0"; +} + +.fa-share-alt::before { + content: "\f1e0"; +} + +.fa-heart-circle-minus::before { + content: "\e4ff"; +} + +.fa-hourglass-half::before { + content: "\f252"; +} + +.fa-hourglass-2::before { + content: "\f252"; +} + +.fa-microscope::before { + content: "\f610"; +} + +.fa-sink::before { + content: "\e06d"; +} + +.fa-bag-shopping::before { + content: "\f290"; +} + +.fa-shopping-bag::before { + content: "\f290"; +} + +.fa-arrow-down-z-a::before { + content: "\f881"; +} + +.fa-sort-alpha-desc::before { + content: "\f881"; +} + +.fa-sort-alpha-down-alt::before { + content: "\f881"; +} + +.fa-mitten::before { + content: "\f7b5"; +} + +.fa-person-rays::before { + content: "\e54d"; +} + +.fa-users::before { + content: "\f0c0"; +} + +.fa-eye-slash::before { + content: "\f070"; +} + +.fa-flask-vial::before { + content: "\e4f3"; +} + +.fa-hand::before { + content: "\f256"; +} + +.fa-hand-paper::before { + content: "\f256"; +} + +.fa-om::before { + content: "\f679"; +} + +.fa-worm::before { + content: "\e599"; +} + +.fa-house-circle-xmark::before { + content: "\e50b"; +} + +.fa-plug::before { + content: "\f1e6"; +} + +.fa-chevron-up::before { + content: "\f077"; +} + +.fa-hand-spock::before { + content: "\f259"; +} + +.fa-stopwatch::before { + content: "\f2f2"; +} + +.fa-face-kiss::before { + content: "\f596"; +} + +.fa-kiss::before { + content: "\f596"; +} + +.fa-bridge-circle-xmark::before { + content: "\e4cb"; +} + +.fa-face-grin-tongue::before { + content: "\f589"; +} + +.fa-grin-tongue::before { + content: "\f589"; +} + +.fa-chess-bishop::before { + content: "\f43a"; +} + +.fa-face-grin-wink::before { + content: "\f58c"; +} + +.fa-grin-wink::before { + content: "\f58c"; +} + +.fa-ear-deaf::before { + content: "\f2a4"; +} + +.fa-deaf::before { + content: "\f2a4"; +} + +.fa-deafness::before { + content: "\f2a4"; +} + +.fa-hard-of-hearing::before { + content: "\f2a4"; +} + +.fa-road-circle-check::before { + content: "\e564"; +} + +.fa-dice-five::before { + content: "\f523"; +} + +.fa-square-rss::before { + content: "\f143"; +} + +.fa-rss-square::before { + content: "\f143"; +} + +.fa-land-mine-on::before { + content: "\e51b"; +} + +.fa-i-cursor::before { + content: "\f246"; +} + +.fa-stamp::before { + content: "\f5bf"; +} + +.fa-stairs::before { + content: "\e289"; +} + +.fa-i::before { + content: "I"; +} + +.fa-hryvnia-sign::before { + content: "\f6f2"; +} + +.fa-hryvnia::before { + content: "\f6f2"; +} + +.fa-pills::before { + content: "\f484"; +} + +.fa-face-grin-wide::before { + content: "\f581"; +} + +.fa-grin-alt::before { + content: "\f581"; +} + +.fa-tooth::before { + content: "\f5c9"; +} + +.fa-v::before { + content: "V"; +} + +.fa-bangladeshi-taka-sign::before { + content: "\e2e6"; +} + +.fa-bicycle::before { + content: "\f206"; +} + +.fa-staff-snake::before { + content: "\e579"; +} + +.fa-rod-asclepius::before { + content: "\e579"; +} + +.fa-rod-snake::before { + content: "\e579"; +} + +.fa-staff-aesculapius::before { + content: "\e579"; +} + +.fa-head-side-cough-slash::before { + content: "\e062"; +} + +.fa-truck-medical::before { + content: "\f0f9"; +} + +.fa-ambulance::before { + content: "\f0f9"; +} + +.fa-wheat-awn-circle-exclamation::before { + content: "\e598"; +} + +.fa-snowman::before { + content: "\f7d0"; +} + +.fa-mortar-pestle::before { + content: "\f5a7"; +} + +.fa-road-barrier::before { + content: "\e562"; +} + +.fa-school::before { + content: "\f549"; +} + +.fa-igloo::before { + content: "\f7ae"; +} + +.fa-joint::before { + content: "\f595"; +} + +.fa-angle-right::before { + content: "\f105"; +} + +.fa-horse::before { + content: "\f6f0"; +} + +.fa-q::before { + content: "Q"; +} + +.fa-g::before { + content: "G"; +} + +.fa-notes-medical::before { + content: "\f481"; +} + +.fa-temperature-half::before { + content: "\f2c9"; +} + +.fa-temperature-2::before { + content: "\f2c9"; +} + +.fa-thermometer-2::before { + content: "\f2c9"; +} + +.fa-thermometer-half::before { + content: "\f2c9"; +} + +.fa-dong-sign::before { + content: "\e169"; +} + +.fa-capsules::before { + content: "\f46b"; +} + +.fa-poo-storm::before { + content: "\f75a"; +} + +.fa-poo-bolt::before { + content: "\f75a"; +} + +.fa-face-frown-open::before { + content: "\f57a"; +} + +.fa-frown-open::before { + content: "\f57a"; +} + +.fa-hand-point-up::before { + content: "\f0a6"; +} + +.fa-money-bill::before { + content: "\f0d6"; +} + +.fa-bookmark::before { + content: "\f02e"; +} + +.fa-align-justify::before { + content: "\f039"; +} + +.fa-umbrella-beach::before { + content: "\f5ca"; +} + +.fa-helmet-un::before { + content: "\e503"; +} + +.fa-bullseye::before { + content: "\f140"; +} + +.fa-bacon::before { + content: "\f7e5"; +} + +.fa-hand-point-down::before { + content: "\f0a7"; +} + +.fa-arrow-up-from-bracket::before { + content: "\e09a"; +} + +.fa-folder::before { + content: "\f07b"; +} + +.fa-folder-blank::before { + content: "\f07b"; +} + +.fa-file-waveform::before { + content: "\f478"; +} + +.fa-file-medical-alt::before { + content: "\f478"; +} + +.fa-radiation::before { + content: "\f7b9"; +} + +.fa-chart-simple::before { + content: "\e473"; +} + +.fa-mars-stroke::before { + content: "\f229"; +} + +.fa-vial::before { + content: "\f492"; +} + +.fa-gauge::before { + content: "\f624"; +} + +.fa-dashboard::before { + content: "\f624"; +} + +.fa-gauge-med::before { + content: "\f624"; +} + +.fa-tachometer-alt-average::before { + content: "\f624"; +} + +.fa-wand-magic-sparkles::before { + content: "\e2ca"; +} + +.fa-magic-wand-sparkles::before { + content: "\e2ca"; +} + +.fa-e::before { + content: "E"; +} + +.fa-pen-clip::before { + content: "\f305"; +} + +.fa-pen-alt::before { + content: "\f305"; +} + +.fa-bridge-circle-exclamation::before { + content: "\e4ca"; +} + +.fa-user::before { + content: "\f007"; +} + +.fa-school-circle-check::before { + content: "\e56b"; +} + +.fa-dumpster::before { + content: "\f793"; +} + +.fa-van-shuttle::before { + content: "\f5b6"; +} + +.fa-shuttle-van::before { + content: "\f5b6"; +} + +.fa-building-user::before { + content: "\e4da"; +} + +.fa-square-caret-left::before { + content: "\f191"; +} + +.fa-caret-square-left::before { + content: "\f191"; +} + +.fa-highlighter::before { + content: "\f591"; +} + +.fa-key::before { + content: "\f084"; +} + +.fa-bullhorn::before { + content: "\f0a1"; +} + +.fa-globe::before { + content: "\f0ac"; +} + +.fa-synagogue::before { + content: "\f69b"; +} + +.fa-person-half-dress::before { + content: "\e548"; +} + +.fa-road-bridge::before { + content: "\e563"; +} + +.fa-location-arrow::before { + content: "\f124"; +} + +.fa-c::before { + content: "C"; +} + +.fa-tablet-button::before { + content: "\f10a"; +} + +.fa-building-lock::before { + content: "\e4d6"; +} + +.fa-pizza-slice::before { + content: "\f818"; +} + +.fa-money-bill-wave::before { + content: "\f53a"; +} + +.fa-chart-area::before { + content: "\f1fe"; +} + +.fa-area-chart::before { + content: "\f1fe"; +} + +.fa-house-flag::before { + content: "\e50d"; +} + +.fa-person-circle-minus::before { + content: "\e540"; +} + +.fa-ban::before { + content: "\f05e"; +} + +.fa-cancel::before { + content: "\f05e"; +} + +.fa-camera-rotate::before { + content: "\e0d8"; +} + +.fa-spray-can-sparkles::before { + content: "\f5d0"; +} + +.fa-air-freshener::before { + content: "\f5d0"; +} + +.fa-star::before { + content: "\f005"; +} + +.fa-repeat::before { + content: "\f363"; +} + +.fa-cross::before { + content: "\f654"; +} + +.fa-box::before { + content: "\f466"; +} + +.fa-venus-mars::before { + content: "\f228"; +} + +.fa-arrow-pointer::before { + content: "\f245"; +} + +.fa-mouse-pointer::before { + content: "\f245"; +} + +.fa-maximize::before { + content: "\f31e"; +} + +.fa-expand-arrows-alt::before { + content: "\f31e"; +} + +.fa-charging-station::before { + content: "\f5e7"; +} + +.fa-shapes::before { + content: "\f61f"; +} + +.fa-triangle-circle-square::before { + content: "\f61f"; +} + +.fa-shuffle::before { + content: "\f074"; +} + +.fa-random::before { + content: "\f074"; +} + +.fa-person-running::before { + content: "\f70c"; +} + +.fa-running::before { + content: "\f70c"; +} + +.fa-mobile-retro::before { + content: "\e527"; +} + +.fa-grip-lines-vertical::before { + content: "\f7a5"; +} + +.fa-spider::before { + content: "\f717"; +} + +.fa-hands-bound::before { + content: "\e4f9"; +} + +.fa-file-invoice-dollar::before { + content: "\f571"; +} + +.fa-plane-circle-exclamation::before { + content: "\e556"; +} + +.fa-x-ray::before { + content: "\f497"; +} + +.fa-spell-check::before { + content: "\f891"; +} + +.fa-slash::before { + content: "\f715"; +} + +.fa-computer-mouse::before { + content: "\f8cc"; +} + +.fa-mouse::before { + content: "\f8cc"; +} + +.fa-arrow-right-to-bracket::before { + content: "\f090"; +} + +.fa-sign-in::before { + content: "\f090"; +} + +.fa-shop-slash::before { + content: "\e070"; +} + +.fa-store-alt-slash::before { + content: "\e070"; +} + +.fa-server::before { + content: "\f233"; +} + +.fa-virus-covid-slash::before { + content: "\e4a9"; +} + +.fa-shop-lock::before { + content: "\e4a5"; +} + +.fa-hourglass-start::before { + content: "\f251"; +} + +.fa-hourglass-1::before { + content: "\f251"; +} + +.fa-blender-phone::before { + content: "\f6b6"; +} + +.fa-building-wheat::before { + content: "\e4db"; +} + +.fa-person-breastfeeding::before { + content: "\e53a"; +} + +.fa-right-to-bracket::before { + content: "\f2f6"; +} + +.fa-sign-in-alt::before { + content: "\f2f6"; +} + +.fa-venus::before { + content: "\f221"; +} + +.fa-passport::before { + content: "\f5ab"; +} + +.fa-heart-pulse::before { + content: "\f21e"; +} + +.fa-heartbeat::before { + content: "\f21e"; +} + +.fa-people-carry-box::before { + content: "\f4ce"; +} + +.fa-people-carry::before { + content: "\f4ce"; +} + +.fa-temperature-high::before { + content: "\f769"; +} + +.fa-microchip::before { + content: "\f2db"; +} + +.fa-crown::before { + content: "\f521"; +} + +.fa-weight-hanging::before { + content: "\f5cd"; +} + +.fa-xmarks-lines::before { + content: "\e59a"; +} + +.fa-file-prescription::before { + content: "\f572"; +} + +.fa-weight-scale::before { + content: "\f496"; +} + +.fa-weight::before { + content: "\f496"; +} + +.fa-user-group::before { + content: "\f500"; +} + +.fa-user-friends::before { + content: "\f500"; +} + +.fa-arrow-up-a-z::before { + content: "\f15e"; +} + +.fa-sort-alpha-up::before { + content: "\f15e"; +} + +.fa-chess-knight::before { + content: "\f441"; +} + +.fa-face-laugh-squint::before { + content: "\f59b"; +} + +.fa-laugh-squint::before { + content: "\f59b"; +} + +.fa-wheelchair::before { + content: "\f193"; +} + +.fa-circle-arrow-up::before { + content: "\f0aa"; +} + +.fa-arrow-circle-up::before { + content: "\f0aa"; +} + +.fa-toggle-on::before { + content: "\f205"; +} + +.fa-person-walking::before { + content: "\f554"; +} + +.fa-walking::before { + content: "\f554"; +} + +.fa-l::before { + content: "L"; +} + +.fa-fire::before { + content: "\f06d"; +} + +.fa-bed-pulse::before { + content: "\f487"; +} + +.fa-procedures::before { + content: "\f487"; +} + +.fa-shuttle-space::before { + content: "\f197"; +} + +.fa-space-shuttle::before { + content: "\f197"; +} + +.fa-face-laugh::before { + content: "\f599"; +} + +.fa-laugh::before { + content: "\f599"; +} + +.fa-folder-open::before { + content: "\f07c"; +} + +.fa-heart-circle-plus::before { + content: "\e500"; +} + +.fa-code-fork::before { + content: "\e13b"; +} + +.fa-city::before { + content: "\f64f"; +} + +.fa-microphone-lines::before { + content: "\f3c9"; +} + +.fa-microphone-alt::before { + content: "\f3c9"; +} + +.fa-pepper-hot::before { + content: "\f816"; +} + +.fa-unlock::before { + content: "\f09c"; +} + +.fa-colon-sign::before { + content: "\e140"; +} + +.fa-headset::before { + content: "\f590"; +} + +.fa-store-slash::before { + content: "\e071"; +} + +.fa-road-circle-xmark::before { + content: "\e566"; +} + +.fa-user-minus::before { + content: "\f503"; +} + +.fa-mars-stroke-up::before { + content: "\f22a"; +} + +.fa-mars-stroke-v::before { + content: "\f22a"; +} + +.fa-champagne-glasses::before { + content: "\f79f"; +} + +.fa-glass-cheers::before { + content: "\f79f"; +} + +.fa-clipboard::before { + content: "\f328"; +} + +.fa-house-circle-exclamation::before { + content: "\e50a"; +} + +.fa-file-arrow-up::before { + content: "\f574"; +} + +.fa-file-upload::before { + content: "\f574"; +} + +.fa-wifi::before { + content: "\f1eb"; +} + +.fa-wifi-3::before { + content: "\f1eb"; +} + +.fa-wifi-strong::before { + content: "\f1eb"; +} + +.fa-bath::before { + content: "\f2cd"; +} + +.fa-bathtub::before { + content: "\f2cd"; +} + +.fa-underline::before { + content: "\f0cd"; +} + +.fa-user-pen::before { + content: "\f4ff"; +} + +.fa-user-edit::before { + content: "\f4ff"; +} + +.fa-signature::before { + content: "\f5b7"; +} + +.fa-stroopwafel::before { + content: "\f551"; +} + +.fa-bold::before { + content: "\f032"; +} + +.fa-anchor-lock::before { + content: "\e4ad"; +} + +.fa-building-ngo::before { + content: "\e4d7"; +} + +.fa-manat-sign::before { + content: "\e1d5"; +} + +.fa-not-equal::before { + content: "\f53e"; +} + +.fa-border-top-left::before { + content: "\f853"; +} + +.fa-border-style::before { + content: "\f853"; +} + +.fa-map-location-dot::before { + content: "\f5a0"; +} + +.fa-map-marked-alt::before { + content: "\f5a0"; +} + +.fa-jedi::before { + content: "\f669"; +} + +.fa-square-poll-vertical::before { + content: "\f681"; +} + +.fa-poll::before { + content: "\f681"; +} + +.fa-mug-hot::before { + content: "\f7b6"; +} + +.fa-car-battery::before { + content: "\f5df"; +} + +.fa-battery-car::before { + content: "\f5df"; +} + +.fa-gift::before { + content: "\f06b"; +} + +.fa-dice-two::before { + content: "\f528"; +} + +.fa-chess-queen::before { + content: "\f445"; +} + +.fa-glasses::before { + content: "\f530"; +} + +.fa-chess-board::before { + content: "\f43c"; +} + +.fa-building-circle-check::before { + content: "\e4d2"; +} + +.fa-person-chalkboard::before { + content: "\e53d"; +} + +.fa-mars-stroke-right::before { + content: "\f22b"; +} + +.fa-mars-stroke-h::before { + content: "\f22b"; +} + +.fa-hand-back-fist::before { + content: "\f255"; +} + +.fa-hand-rock::before { + content: "\f255"; +} + +.fa-square-caret-up::before { + content: "\f151"; +} + +.fa-caret-square-up::before { + content: "\f151"; +} + +.fa-cloud-showers-water::before { + content: "\e4e4"; +} + +.fa-chart-bar::before { + content: "\f080"; +} + +.fa-bar-chart::before { + content: "\f080"; +} + +.fa-hands-bubbles::before { + content: "\e05e"; +} + +.fa-hands-wash::before { + content: "\e05e"; +} + +.fa-less-than-equal::before { + content: "\f537"; +} + +.fa-train::before { + content: "\f238"; +} + +.fa-eye-low-vision::before { + content: "\f2a8"; +} + +.fa-low-vision::before { + content: "\f2a8"; +} + +.fa-crow::before { + content: "\f520"; +} + +.fa-sailboat::before { + content: "\e445"; +} + +.fa-window-restore::before { + content: "\f2d2"; +} + +.fa-square-plus::before { + content: "\f0fe"; +} + +.fa-plus-square::before { + content: "\f0fe"; +} + +.fa-torii-gate::before { + content: "\f6a1"; +} + +.fa-frog::before { + content: "\f52e"; +} + +.fa-bucket::before { + content: "\e4cf"; +} + +.fa-image::before { + content: "\f03e"; +} + +.fa-microphone::before { + content: "\f130"; +} + +.fa-cow::before { + content: "\f6c8"; +} + +.fa-caret-up::before { + content: "\f0d8"; +} + +.fa-screwdriver::before { + content: "\f54a"; +} + +.fa-folder-closed::before { + content: "\e185"; +} + +.fa-house-tsunami::before { + content: "\e515"; +} + +.fa-square-nfi::before { + content: "\e576"; +} + +.fa-arrow-up-from-ground-water::before { + content: "\e4b5"; +} + +.fa-martini-glass::before { + content: "\f57b"; +} + +.fa-glass-martini-alt::before { + content: "\f57b"; +} + +.fa-rotate-left::before { + content: "\f2ea"; +} + +.fa-rotate-back::before { + content: "\f2ea"; +} + +.fa-rotate-backward::before { + content: "\f2ea"; +} + +.fa-undo-alt::before { + content: "\f2ea"; +} + +.fa-table-columns::before { + content: "\f0db"; +} + +.fa-columns::before { + content: "\f0db"; +} + +.fa-lemon::before { + content: "\f094"; +} + +.fa-head-side-mask::before { + content: "\e063"; +} + +.fa-handshake::before { + content: "\f2b5"; +} + +.fa-gem::before { + content: "\f3a5"; +} + +.fa-dolly::before { + content: "\f472"; +} + +.fa-dolly-box::before { + content: "\f472"; +} + +.fa-smoking::before { + content: "\f48d"; +} + +.fa-minimize::before { + content: "\f78c"; +} + +.fa-compress-arrows-alt::before { + content: "\f78c"; +} + +.fa-monument::before { + content: "\f5a6"; +} + +.fa-snowplow::before { + content: "\f7d2"; +} + +.fa-angles-right::before { + content: "\f101"; +} + +.fa-angle-double-right::before { + content: "\f101"; +} + +.fa-cannabis::before { + content: "\f55f"; +} + +.fa-circle-play::before { + content: "\f144"; +} + +.fa-play-circle::before { + content: "\f144"; +} + +.fa-tablets::before { + content: "\f490"; +} + +.fa-ethernet::before { + content: "\f796"; +} + +.fa-euro-sign::before { + content: "\f153"; +} + +.fa-eur::before { + content: "\f153"; +} + +.fa-euro::before { + content: "\f153"; +} + +.fa-chair::before { + content: "\f6c0"; +} + +.fa-circle-check::before { + content: "\f058"; +} + +.fa-check-circle::before { + content: "\f058"; +} + +.fa-circle-stop::before { + content: "\f28d"; +} + +.fa-stop-circle::before { + content: "\f28d"; +} + +.fa-compass-drafting::before { + content: "\f568"; +} + +.fa-drafting-compass::before { + content: "\f568"; +} + +.fa-plate-wheat::before { + content: "\e55a"; +} + +.fa-icicles::before { + content: "\f7ad"; +} + +.fa-person-shelter::before { + content: "\e54f"; +} + +.fa-neuter::before { + content: "\f22c"; +} + +.fa-id-badge::before { + content: "\f2c1"; +} + +.fa-marker::before { + content: "\f5a1"; +} + +.fa-face-laugh-beam::before { + content: "\f59a"; +} + +.fa-laugh-beam::before { + content: "\f59a"; +} + +.fa-helicopter-symbol::before { + content: "\e502"; +} + +.fa-universal-access::before { + content: "\f29a"; +} + +.fa-circle-chevron-up::before { + content: "\f139"; +} + +.fa-chevron-circle-up::before { + content: "\f139"; +} + +.fa-lari-sign::before { + content: "\e1c8"; +} + +.fa-volcano::before { + content: "\f770"; +} + +.fa-person-walking-dashed-line-arrow-right::before { + content: "\e553"; +} + +.fa-sterling-sign::before { + content: "\f154"; +} + +.fa-gbp::before { + content: "\f154"; +} + +.fa-pound-sign::before { + content: "\f154"; +} + +.fa-viruses::before { + content: "\e076"; +} + +.fa-square-person-confined::before { + content: "\e577"; +} + +.fa-user-tie::before { + content: "\f508"; +} + +.fa-arrow-down-long::before { + content: "\f175"; +} + +.fa-long-arrow-down::before { + content: "\f175"; +} + +.fa-tent-arrow-down-to-line::before { + content: "\e57e"; +} + +.fa-certificate::before { + content: "\f0a3"; +} + +.fa-reply-all::before { + content: "\f122"; +} + +.fa-mail-reply-all::before { + content: "\f122"; +} + +.fa-suitcase::before { + content: "\f0f2"; +} + +.fa-person-skating::before { + content: "\f7c5"; +} + +.fa-skating::before { + content: "\f7c5"; +} + +.fa-filter-circle-dollar::before { + content: "\f662"; +} + +.fa-funnel-dollar::before { + content: "\f662"; +} + +.fa-camera-retro::before { + content: "\f083"; +} + +.fa-circle-arrow-down::before { + content: "\f0ab"; +} + +.fa-arrow-circle-down::before { + content: "\f0ab"; +} + +.fa-file-import::before { + content: "\f56f"; +} + +.fa-arrow-right-to-file::before { + content: "\f56f"; +} + +.fa-square-arrow-up-right::before { + content: "\f14c"; +} + +.fa-external-link-square::before { + content: "\f14c"; +} + +.fa-box-open::before { + content: "\f49e"; +} + +.fa-scroll::before { + content: "\f70e"; +} + +.fa-spa::before { + content: "\f5bb"; +} + +.fa-location-pin-lock::before { + content: "\e51f"; +} + +.fa-pause::before { + content: "\f04c"; +} + +.fa-hill-avalanche::before { + content: "\e507"; +} + +.fa-temperature-empty::before { + content: "\f2cb"; +} + +.fa-temperature-0::before { + content: "\f2cb"; +} + +.fa-thermometer-0::before { + content: "\f2cb"; +} + +.fa-thermometer-empty::before { + content: "\f2cb"; +} + +.fa-bomb::before { + content: "\f1e2"; +} + +.fa-registered::before { + content: "\f25d"; +} + +.fa-address-card::before { + content: "\f2bb"; +} + +.fa-contact-card::before { + content: "\f2bb"; +} + +.fa-vcard::before { + content: "\f2bb"; +} + +.fa-scale-unbalanced-flip::before { + content: "\f516"; +} + +.fa-balance-scale-right::before { + content: "\f516"; +} + +.fa-subscript::before { + content: "\f12c"; +} + +.fa-diamond-turn-right::before { + content: "\f5eb"; +} + +.fa-directions::before { + content: "\f5eb"; +} + +.fa-burst::before { + content: "\e4dc"; +} + +.fa-house-laptop::before { + content: "\e066"; +} + +.fa-laptop-house::before { + content: "\e066"; +} + +.fa-face-tired::before { + content: "\f5c8"; +} + +.fa-tired::before { + content: "\f5c8"; +} + +.fa-money-bills::before { + content: "\e1f3"; +} + +.fa-smog::before { + content: "\f75f"; +} + +.fa-crutch::before { + content: "\f7f7"; +} + +.fa-cloud-arrow-up::before { + content: "\f0ee"; +} + +.fa-cloud-upload::before { + content: "\f0ee"; +} + +.fa-cloud-upload-alt::before { + content: "\f0ee"; +} + +.fa-palette::before { + content: "\f53f"; +} + +.fa-arrows-turn-right::before { + content: "\e4c0"; +} + +.fa-vest::before { + content: "\e085"; +} + +.fa-ferry::before { + content: "\e4ea"; +} + +.fa-arrows-down-to-people::before { + content: "\e4b9"; +} + +.fa-seedling::before { + content: "\f4d8"; +} + +.fa-sprout::before { + content: "\f4d8"; +} + +.fa-left-right::before { + content: "\f337"; +} + +.fa-arrows-alt-h::before { + content: "\f337"; +} + +.fa-boxes-packing::before { + content: "\e4c7"; +} + +.fa-circle-arrow-left::before { + content: "\f0a8"; +} + +.fa-arrow-circle-left::before { + content: "\f0a8"; +} + +.fa-group-arrows-rotate::before { + content: "\e4f6"; +} + +.fa-bowl-food::before { + content: "\e4c6"; +} + +.fa-candy-cane::before { + content: "\f786"; +} + +.fa-arrow-down-wide-short::before { + content: "\f160"; +} + +.fa-sort-amount-asc::before { + content: "\f160"; +} + +.fa-sort-amount-down::before { + content: "\f160"; +} + +.fa-cloud-bolt::before { + content: "\f76c"; +} + +.fa-thunderstorm::before { + content: "\f76c"; +} + +.fa-text-slash::before { + content: "\f87d"; +} + +.fa-remove-format::before { + content: "\f87d"; +} + +.fa-face-smile-wink::before { + content: "\f4da"; +} + +.fa-smile-wink::before { + content: "\f4da"; +} + +.fa-file-word::before { + content: "\f1c2"; +} + +.fa-file-powerpoint::before { + content: "\f1c4"; +} + +.fa-arrows-left-right::before { + content: "\f07e"; +} + +.fa-arrows-h::before { + content: "\f07e"; +} + +.fa-house-lock::before { + content: "\e510"; +} + +.fa-cloud-arrow-down::before { + content: "\f0ed"; +} + +.fa-cloud-download::before { + content: "\f0ed"; +} + +.fa-cloud-download-alt::before { + content: "\f0ed"; +} + +.fa-children::before { + content: "\e4e1"; +} + +.fa-chalkboard::before { + content: "\f51b"; +} + +.fa-blackboard::before { + content: "\f51b"; +} + +.fa-user-large-slash::before { + content: "\f4fa"; +} + +.fa-user-alt-slash::before { + content: "\f4fa"; +} + +.fa-envelope-open::before { + content: "\f2b6"; +} + +.fa-handshake-simple-slash::before { + content: "\e05f"; +} + +.fa-handshake-alt-slash::before { + content: "\e05f"; +} + +.fa-mattress-pillow::before { + content: "\e525"; +} + +.fa-guarani-sign::before { + content: "\e19a"; +} + +.fa-arrows-rotate::before { + content: "\f021"; +} + +.fa-refresh::before { + content: "\f021"; +} + +.fa-sync::before { + content: "\f021"; +} + +.fa-fire-extinguisher::before { + content: "\f134"; +} + +.fa-cruzeiro-sign::before { + content: "\e152"; +} + +.fa-greater-than-equal::before { + content: "\f532"; +} + +.fa-shield-halved::before { + content: "\f3ed"; +} + +.fa-shield-alt::before { + content: "\f3ed"; +} + +.fa-book-atlas::before { + content: "\f558"; +} + +.fa-atlas::before { + content: "\f558"; +} + +.fa-virus::before { + content: "\e074"; +} + +.fa-envelope-circle-check::before { + content: "\e4e8"; +} + +.fa-layer-group::before { + content: "\f5fd"; +} + +.fa-arrows-to-dot::before { + content: "\e4be"; +} + +.fa-archway::before { + content: "\f557"; +} + +.fa-heart-circle-check::before { + content: "\e4fd"; +} + +.fa-house-chimney-crack::before { + content: "\f6f1"; +} + +.fa-house-damage::before { + content: "\f6f1"; +} + +.fa-file-zipper::before { + content: "\f1c6"; +} + +.fa-file-archive::before { + content: "\f1c6"; +} + +.fa-square::before { + content: "\f0c8"; +} + +.fa-martini-glass-empty::before { + content: "\f000"; +} + +.fa-glass-martini::before { + content: "\f000"; +} + +.fa-couch::before { + content: "\f4b8"; +} + +.fa-cedi-sign::before { + content: "\e0df"; +} + +.fa-italic::before { + content: "\f033"; +} + +.fa-church::before { + content: "\f51d"; +} + +.fa-comments-dollar::before { + content: "\f653"; +} + +.fa-democrat::before { + content: "\f747"; +} + +.fa-z::before { + content: "Z"; +} + +.fa-person-skiing::before { + content: "\f7c9"; +} + +.fa-skiing::before { + content: "\f7c9"; +} + +.fa-road-lock::before { + content: "\e567"; +} + +.fa-a::before { + content: "A"; +} + +.fa-temperature-arrow-down::before { + content: "\e03f"; +} + +.fa-temperature-down::before { + content: "\e03f"; +} + +.fa-feather-pointed::before { + content: "\f56b"; +} + +.fa-feather-alt::before { + content: "\f56b"; +} + +.fa-p::before { + content: "P"; +} + +.fa-snowflake::before { + content: "\f2dc"; +} + +.fa-newspaper::before { + content: "\f1ea"; +} + +.fa-rectangle-ad::before { + content: "\f641"; +} + +.fa-ad::before { + content: "\f641"; +} + +.fa-circle-arrow-right::before { + content: "\f0a9"; +} + +.fa-arrow-circle-right::before { + content: "\f0a9"; +} + +.fa-filter-circle-xmark::before { + content: "\e17b"; +} + +.fa-locust::before { + content: "\e520"; +} + +.fa-sort::before { + content: "\f0dc"; +} + +.fa-unsorted::before { + content: "\f0dc"; +} + +.fa-list-ol::before { + content: "\f0cb"; +} + +.fa-list-1-2::before { + content: "\f0cb"; +} + +.fa-list-numeric::before { + content: "\f0cb"; +} + +.fa-person-dress-burst::before { + content: "\e544"; +} + +.fa-money-check-dollar::before { + content: "\f53d"; +} + +.fa-money-check-alt::before { + content: "\f53d"; +} + +.fa-vector-square::before { + content: "\f5cb"; +} + +.fa-bread-slice::before { + content: "\f7ec"; +} + +.fa-language::before { + content: "\f1ab"; +} + +.fa-face-kiss-wink-heart::before { + content: "\f598"; +} + +.fa-kiss-wink-heart::before { + content: "\f598"; +} + +.fa-filter::before { + content: "\f0b0"; +} + +.fa-question::before { + content: "?"; +} + +.fa-file-signature::before { + content: "\f573"; +} + +.fa-up-down-left-right::before { + content: "\f0b2"; +} + +.fa-arrows-alt::before { + content: "\f0b2"; +} + +.fa-house-chimney-user::before { + content: "\e065"; +} + +.fa-hand-holding-heart::before { + content: "\f4be"; +} + +.fa-puzzle-piece::before { + content: "\f12e"; +} + +.fa-money-check::before { + content: "\f53c"; +} + +.fa-star-half-stroke::before { + content: "\f5c0"; +} + +.fa-star-half-alt::before { + content: "\f5c0"; +} + +.fa-code::before { + content: "\f121"; +} + +.fa-whiskey-glass::before { + content: "\f7a0"; +} + +.fa-glass-whiskey::before { + content: "\f7a0"; +} + +.fa-building-circle-exclamation::before { + content: "\e4d3"; +} + +.fa-magnifying-glass-chart::before { + content: "\e522"; +} + +.fa-arrow-up-right-from-square::before { + content: "\f08e"; +} + +.fa-external-link::before { + content: "\f08e"; +} + +.fa-cubes-stacked::before { + content: "\e4e6"; +} + +.fa-won-sign::before { + content: "\f159"; +} + +.fa-krw::before { + content: "\f159"; +} + +.fa-won::before { + content: "\f159"; +} + +.fa-virus-covid::before { + content: "\e4a8"; +} + +.fa-austral-sign::before { + content: "\e0a9"; +} + +.fa-f::before { + content: "F"; +} + +.fa-leaf::before { + content: "\f06c"; +} + +.fa-road::before { + content: "\f018"; +} + +.fa-taxi::before { + content: "\f1ba"; +} + +.fa-cab::before { + content: "\f1ba"; +} + +.fa-person-circle-plus::before { + content: "\e541"; +} + +.fa-chart-pie::before { + content: "\f200"; +} + +.fa-pie-chart::before { + content: "\f200"; +} + +.fa-bolt-lightning::before { + content: "\e0b7"; +} + +.fa-sack-xmark::before { + content: "\e56a"; +} + +.fa-file-excel::before { + content: "\f1c3"; +} + +.fa-file-contract::before { + content: "\f56c"; +} + +.fa-fish-fins::before { + content: "\e4f2"; +} + +.fa-building-flag::before { + content: "\e4d5"; +} + +.fa-face-grin-beam::before { + content: "\f582"; +} + +.fa-grin-beam::before { + content: "\f582"; +} + +.fa-object-ungroup::before { + content: "\f248"; +} + +.fa-poop::before { + content: "\f619"; +} + +.fa-location-pin::before { + content: "\f041"; +} + +.fa-map-marker::before { + content: "\f041"; +} + +.fa-kaaba::before { + content: "\f66b"; +} + +.fa-toilet-paper::before { + content: "\f71e"; +} + +.fa-helmet-safety::before { + content: "\f807"; +} + +.fa-hard-hat::before { + content: "\f807"; +} + +.fa-hat-hard::before { + content: "\f807"; +} + +.fa-eject::before { + content: "\f052"; +} + +.fa-circle-right::before { + content: "\f35a"; +} + +.fa-arrow-alt-circle-right::before { + content: "\f35a"; +} + +.fa-plane-circle-check::before { + content: "\e555"; +} + +.fa-face-rolling-eyes::before { + content: "\f5a5"; +} + +.fa-meh-rolling-eyes::before { + content: "\f5a5"; +} + +.fa-object-group::before { + content: "\f247"; +} + +.fa-chart-line::before { + content: "\f201"; +} + +.fa-line-chart::before { + content: "\f201"; +} + +.fa-mask-ventilator::before { + content: "\e524"; +} + +.fa-arrow-right::before { + content: "\f061"; +} + +.fa-signs-post::before { + content: "\f277"; +} + +.fa-map-signs::before { + content: "\f277"; +} + +.fa-cash-register::before { + content: "\f788"; +} + +.fa-person-circle-question::before { + content: "\e542"; +} + +.fa-h::before { + content: "H"; +} + +.fa-tarp::before { + content: "\e57b"; +} + +.fa-screwdriver-wrench::before { + content: "\f7d9"; +} + +.fa-tools::before { + content: "\f7d9"; +} + +.fa-arrows-to-eye::before { + content: "\e4bf"; +} + +.fa-plug-circle-bolt::before { + content: "\e55b"; +} + +.fa-heart::before { + content: "\f004"; +} + +.fa-mars-and-venus::before { + content: "\f224"; +} + +.fa-house-user::before { + content: "\e1b0"; +} + +.fa-home-user::before { + content: "\e1b0"; +} + +.fa-dumpster-fire::before { + content: "\f794"; +} + +.fa-house-crack::before { + content: "\e3b1"; +} + +.fa-martini-glass-citrus::before { + content: "\f561"; +} + +.fa-cocktail::before { + content: "\f561"; +} + +.fa-face-surprise::before { + content: "\f5c2"; +} + +.fa-surprise::before { + content: "\f5c2"; +} + +.fa-bottle-water::before { + content: "\e4c5"; +} + +.fa-circle-pause::before { + content: "\f28b"; +} + +.fa-pause-circle::before { + content: "\f28b"; +} + +.fa-toilet-paper-slash::before { + content: "\e072"; +} + +.fa-apple-whole::before { + content: "\f5d1"; +} + +.fa-apple-alt::before { + content: "\f5d1"; +} + +.fa-kitchen-set::before { + content: "\e51a"; +} + +.fa-r::before { + content: "R"; +} + +.fa-temperature-quarter::before { + content: "\f2ca"; +} + +.fa-temperature-1::before { + content: "\f2ca"; +} + +.fa-thermometer-1::before { + content: "\f2ca"; +} + +.fa-thermometer-quarter::before { + content: "\f2ca"; +} + +.fa-cube::before { + content: "\f1b2"; +} + +.fa-bitcoin-sign::before { + content: "\e0b4"; +} + +.fa-shield-dog::before { + content: "\e573"; +} + +.fa-solar-panel::before { + content: "\f5ba"; +} + +.fa-lock-open::before { + content: "\f3c1"; +} + +.fa-elevator::before { + content: "\e16d"; +} + +.fa-money-bill-transfer::before { + content: "\e528"; +} + +.fa-money-bill-trend-up::before { + content: "\e529"; +} + +.fa-house-flood-water-circle-arrow-right::before { + content: "\e50f"; +} + +.fa-square-poll-horizontal::before { + content: "\f682"; +} + +.fa-poll-h::before { + content: "\f682"; +} + +.fa-circle::before { + content: "\f111"; +} + +.fa-backward-fast::before { + content: "\f049"; +} + +.fa-fast-backward::before { + content: "\f049"; +} + +.fa-recycle::before { + content: "\f1b8"; +} + +.fa-user-astronaut::before { + content: "\f4fb"; +} + +.fa-plane-slash::before { + content: "\e069"; +} + +.fa-trademark::before { + content: "\f25c"; +} + +.fa-basketball::before { + content: "\f434"; +} + +.fa-basketball-ball::before { + content: "\f434"; +} + +.fa-satellite-dish::before { + content: "\f7c0"; +} + +.fa-circle-up::before { + content: "\f35b"; +} + +.fa-arrow-alt-circle-up::before { + content: "\f35b"; +} + +.fa-mobile-screen-button::before { + content: "\f3cd"; +} + +.fa-mobile-alt::before { + content: "\f3cd"; +} + +.fa-volume-high::before { + content: "\f028"; +} + +.fa-volume-up::before { + content: "\f028"; +} + +.fa-users-rays::before { + content: "\e593"; +} + +.fa-wallet::before { + content: "\f555"; +} + +.fa-clipboard-check::before { + content: "\f46c"; +} + +.fa-file-audio::before { + content: "\f1c7"; +} + +.fa-burger::before { + content: "\f805"; +} + +.fa-hamburger::before { + content: "\f805"; +} + +.fa-wrench::before { + content: "\f0ad"; +} + +.fa-bugs::before { + content: "\e4d0"; +} + +.fa-rupee-sign::before { + content: "\f156"; +} + +.fa-rupee::before { + content: "\f156"; +} + +.fa-file-image::before { + content: "\f1c5"; +} + +.fa-circle-question::before { + content: "\f059"; +} + +.fa-question-circle::before { + content: "\f059"; +} + +.fa-plane-departure::before { + content: "\f5b0"; +} + +.fa-handshake-slash::before { + content: "\e060"; +} + +.fa-book-bookmark::before { + content: "\e0bb"; +} + +.fa-code-branch::before { + content: "\f126"; +} + +.fa-hat-cowboy::before { + content: "\f8c0"; +} + +.fa-bridge::before { + content: "\e4c8"; +} + +.fa-phone-flip::before { + content: "\f879"; +} + +.fa-phone-alt::before { + content: "\f879"; +} + +.fa-truck-front::before { + content: "\e2b7"; +} + +.fa-cat::before { + content: "\f6be"; +} + +.fa-anchor-circle-exclamation::before { + content: "\e4ab"; +} + +.fa-truck-field::before { + content: "\e58d"; +} + +.fa-route::before { + content: "\f4d7"; +} + +.fa-clipboard-question::before { + content: "\e4e3"; +} + +.fa-panorama::before { + content: "\e209"; +} + +.fa-comment-medical::before { + content: "\f7f5"; +} + +.fa-teeth-open::before { + content: "\f62f"; +} + +.fa-file-circle-minus::before { + content: "\e4ed"; +} + +.fa-tags::before { + content: "\f02c"; +} + +.fa-wine-glass::before { + content: "\f4e3"; +} + +.fa-forward-fast::before { + content: "\f050"; +} + +.fa-fast-forward::before { + content: "\f050"; +} + +.fa-face-meh-blank::before { + content: "\f5a4"; +} + +.fa-meh-blank::before { + content: "\f5a4"; +} + +.fa-square-parking::before { + content: "\f540"; +} + +.fa-parking::before { + content: "\f540"; +} + +.fa-house-signal::before { + content: "\e012"; +} + +.fa-bars-progress::before { + content: "\f828"; +} + +.fa-tasks-alt::before { + content: "\f828"; +} + +.fa-faucet-drip::before { + content: "\e006"; +} + +.fa-cart-flatbed::before { + content: "\f474"; +} + +.fa-dolly-flatbed::before { + content: "\f474"; +} + +.fa-ban-smoking::before { + content: "\f54d"; +} + +.fa-smoking-ban::before { + content: "\f54d"; +} + +.fa-terminal::before { + content: "\f120"; +} + +.fa-mobile-button::before { + content: "\f10b"; +} + +.fa-house-medical-flag::before { + content: "\e514"; +} + +.fa-basket-shopping::before { + content: "\f291"; +} + +.fa-shopping-basket::before { + content: "\f291"; +} + +.fa-tape::before { + content: "\f4db"; +} + +.fa-bus-simple::before { + content: "\f55e"; +} + +.fa-bus-alt::before { + content: "\f55e"; +} + +.fa-eye::before { + content: "\f06e"; +} + +.fa-face-sad-cry::before { + content: "\f5b3"; +} + +.fa-sad-cry::before { + content: "\f5b3"; +} + +.fa-audio-description::before { + content: "\f29e"; +} + +.fa-person-military-to-person::before { + content: "\e54c"; +} + +.fa-file-shield::before { + content: "\e4f0"; +} + +.fa-user-slash::before { + content: "\f506"; +} + +.fa-pen::before { + content: "\f304"; +} + +.fa-tower-observation::before { + content: "\e586"; +} + +.fa-file-code::before { + content: "\f1c9"; +} + +.fa-signal::before { + content: "\f012"; +} + +.fa-signal-5::before { + content: "\f012"; +} + +.fa-signal-perfect::before { + content: "\f012"; +} + +.fa-bus::before { + content: "\f207"; +} + +.fa-heart-circle-xmark::before { + content: "\e501"; +} + +.fa-house-chimney::before { + content: "\e3af"; +} + +.fa-home-lg::before { + content: "\e3af"; +} + +.fa-window-maximize::before { + content: "\f2d0"; +} + +.fa-face-frown::before { + content: "\f119"; +} + +.fa-frown::before { + content: "\f119"; +} + +.fa-prescription::before { + content: "\f5b1"; +} + +.fa-shop::before { + content: "\f54f"; +} + +.fa-store-alt::before { + content: "\f54f"; +} + +.fa-floppy-disk::before { + content: "\f0c7"; +} + +.fa-save::before { + content: "\f0c7"; +} + +.fa-vihara::before { + content: "\f6a7"; +} + +.fa-scale-unbalanced::before { + content: "\f515"; +} + +.fa-balance-scale-left::before { + content: "\f515"; +} + +.fa-sort-up::before { + content: "\f0de"; +} + +.fa-sort-asc::before { + content: "\f0de"; +} + +.fa-comment-dots::before { + content: "\f4ad"; +} + +.fa-commenting::before { + content: "\f4ad"; +} + +.fa-plant-wilt::before { + content: "\e5aa"; +} + +.fa-diamond::before { + content: "\f219"; +} + +.fa-face-grin-squint::before { + content: "\f585"; +} + +.fa-grin-squint::before { + content: "\f585"; +} + +.fa-hand-holding-dollar::before { + content: "\f4c0"; +} + +.fa-hand-holding-usd::before { + content: "\f4c0"; +} + +.fa-bacterium::before { + content: "\e05a"; +} + +.fa-hand-pointer::before { + content: "\f25a"; +} + +.fa-drum-steelpan::before { + content: "\f56a"; +} + +.fa-hand-scissors::before { + content: "\f257"; +} + +.fa-hands-praying::before { + content: "\f684"; +} + +.fa-praying-hands::before { + content: "\f684"; +} + +.fa-arrow-rotate-right::before { + content: "\f01e"; +} + +.fa-arrow-right-rotate::before { + content: "\f01e"; +} + +.fa-arrow-rotate-forward::before { + content: "\f01e"; +} + +.fa-redo::before { + content: "\f01e"; +} + +.fa-biohazard::before { + content: "\f780"; +} + +.fa-location-crosshairs::before { + content: "\f601"; +} + +.fa-location::before { + content: "\f601"; +} + +.fa-mars-double::before { + content: "\f227"; +} + +.fa-child-dress::before { + content: "\e59c"; +} + +.fa-users-between-lines::before { + content: "\e591"; +} + +.fa-lungs-virus::before { + content: "\e067"; +} + +.fa-face-grin-tears::before { + content: "\f588"; +} + +.fa-grin-tears::before { + content: "\f588"; +} + +.fa-phone::before { + content: "\f095"; +} + +.fa-calendar-xmark::before { + content: "\f273"; +} + +.fa-calendar-times::before { + content: "\f273"; +} + +.fa-child-reaching::before { + content: "\e59d"; +} + +.fa-head-side-virus::before { + content: "\e064"; +} + +.fa-user-gear::before { + content: "\f4fe"; +} + +.fa-user-cog::before { + content: "\f4fe"; +} + +.fa-arrow-up-1-9::before { + content: "\f163"; +} + +.fa-sort-numeric-up::before { + content: "\f163"; +} + +.fa-door-closed::before { + content: "\f52a"; +} + +.fa-shield-virus::before { + content: "\e06c"; +} + +.fa-dice-six::before { + content: "\f526"; +} + +.fa-mosquito-net::before { + content: "\e52c"; +} + +.fa-bridge-water::before { + content: "\e4ce"; +} + +.fa-person-booth::before { + content: "\f756"; +} + +.fa-text-width::before { + content: "\f035"; +} + +.fa-hat-wizard::before { + content: "\f6e8"; +} + +.fa-pen-fancy::before { + content: "\f5ac"; +} + +.fa-person-digging::before { + content: "\f85e"; +} + +.fa-digging::before { + content: "\f85e"; +} + +.fa-trash::before { + content: "\f1f8"; +} + +.fa-gauge-simple::before { + content: "\f629"; +} + +.fa-gauge-simple-med::before { + content: "\f629"; +} + +.fa-tachometer-average::before { + content: "\f629"; +} + +.fa-book-medical::before { + content: "\f7e6"; +} + +.fa-poo::before { + content: "\f2fe"; +} + +.fa-quote-right::before { + content: "\f10e"; +} + +.fa-quote-right-alt::before { + content: "\f10e"; +} + +.fa-shirt::before { + content: "\f553"; +} + +.fa-t-shirt::before { + content: "\f553"; +} + +.fa-tshirt::before { + content: "\f553"; +} + +.fa-cubes::before { + content: "\f1b3"; +} + +.fa-divide::before { + content: "\f529"; +} + +.fa-tenge-sign::before { + content: "\f7d7"; +} + +.fa-tenge::before { + content: "\f7d7"; +} + +.fa-headphones::before { + content: "\f025"; +} + +.fa-hands-holding::before { + content: "\f4c2"; +} + +.fa-hands-clapping::before { + content: "\e1a8"; +} + +.fa-republican::before { + content: "\f75e"; +} + +.fa-arrow-left::before { + content: "\f060"; +} + +.fa-person-circle-xmark::before { + content: "\e543"; +} + +.fa-ruler::before { + content: "\f545"; +} + +.fa-align-left::before { + content: "\f036"; +} + +.fa-dice-d6::before { + content: "\f6d1"; +} + +.fa-restroom::before { + content: "\f7bd"; +} + +.fa-j::before { + content: "J"; +} + +.fa-users-viewfinder::before { + content: "\e595"; +} + +.fa-file-video::before { + content: "\f1c8"; +} + +.fa-up-right-from-square::before { + content: "\f35d"; +} + +.fa-external-link-alt::before { + content: "\f35d"; +} + +.fa-table-cells::before { + content: "\f00a"; +} + +.fa-th::before { + content: "\f00a"; +} + +.fa-file-pdf::before { + content: "\f1c1"; +} + +.fa-book-bible::before { + content: "\f647"; +} + +.fa-bible::before { + content: "\f647"; +} + +.fa-o::before { + content: "O"; +} + +.fa-suitcase-medical::before { + content: "\f0fa"; +} + +.fa-medkit::before { + content: "\f0fa"; +} + +.fa-user-secret::before { + content: "\f21b"; +} + +.fa-otter::before { + content: "\f700"; +} + +.fa-person-dress::before { + content: "\f182"; +} + +.fa-female::before { + content: "\f182"; +} + +.fa-comment-dollar::before { + content: "\f651"; +} + +.fa-business-time::before { + content: "\f64a"; +} + +.fa-briefcase-clock::before { + content: "\f64a"; +} + +.fa-table-cells-large::before { + content: "\f009"; +} + +.fa-th-large::before { + content: "\f009"; +} + +.fa-book-tanakh::before { + content: "\f827"; +} + +.fa-tanakh::before { + content: "\f827"; +} + +.fa-phone-volume::before { + content: "\f2a0"; +} + +.fa-volume-control-phone::before { + content: "\f2a0"; +} + +.fa-hat-cowboy-side::before { + content: "\f8c1"; +} + +.fa-clipboard-user::before { + content: "\f7f3"; +} + +.fa-child::before { + content: "\f1ae"; +} + +.fa-lira-sign::before { + content: "\f195"; +} + +.fa-satellite::before { + content: "\f7bf"; +} + +.fa-plane-lock::before { + content: "\e558"; +} + +.fa-tag::before { + content: "\f02b"; +} + +.fa-comment::before { + content: "\f075"; +} + +.fa-cake-candles::before { + content: "\f1fd"; +} + +.fa-birthday-cake::before { + content: "\f1fd"; +} + +.fa-cake::before { + content: "\f1fd"; +} + +.fa-envelope::before { + content: "\f0e0"; +} + +.fa-angles-up::before { + content: "\f102"; +} + +.fa-angle-double-up::before { + content: "\f102"; +} + +.fa-paperclip::before { + content: "\f0c6"; +} + +.fa-arrow-right-to-city::before { + content: "\e4b3"; +} + +.fa-ribbon::before { + content: "\f4d6"; +} + +.fa-lungs::before { + content: "\f604"; +} + +.fa-arrow-up-9-1::before { + content: "\f887"; +} + +.fa-sort-numeric-up-alt::before { + content: "\f887"; +} + +.fa-litecoin-sign::before { + content: "\e1d3"; +} + +.fa-border-none::before { + content: "\f850"; +} + +.fa-circle-nodes::before { + content: "\e4e2"; +} + +.fa-parachute-box::before { + content: "\f4cd"; +} + +.fa-indent::before { + content: "\f03c"; +} + +.fa-truck-field-un::before { + content: "\e58e"; +} + +.fa-hourglass::before { + content: "\f254"; +} + +.fa-hourglass-empty::before { + content: "\f254"; +} + +.fa-mountain::before { + content: "\f6fc"; +} + +.fa-user-doctor::before { + content: "\f0f0"; +} + +.fa-user-md::before { + content: "\f0f0"; +} + +.fa-circle-info::before { + content: "\f05a"; +} + +.fa-info-circle::before { + content: "\f05a"; +} + +.fa-cloud-meatball::before { + content: "\f73b"; +} + +.fa-camera::before { + content: "\f030"; +} + +.fa-camera-alt::before { + content: "\f030"; +} + +.fa-square-virus::before { + content: "\e578"; +} + +.fa-meteor::before { + content: "\f753"; +} + +.fa-car-on::before { + content: "\e4dd"; +} + +.fa-sleigh::before { + content: "\f7cc"; +} + +.fa-arrow-down-1-9::before { + content: "\f162"; +} + +.fa-sort-numeric-asc::before { + content: "\f162"; +} + +.fa-sort-numeric-down::before { + content: "\f162"; +} + +.fa-hand-holding-droplet::before { + content: "\f4c1"; +} + +.fa-hand-holding-water::before { + content: "\f4c1"; +} + +.fa-water::before { + content: "\f773"; +} + +.fa-calendar-check::before { + content: "\f274"; +} + +.fa-braille::before { + content: "\f2a1"; +} + +.fa-prescription-bottle-medical::before { + content: "\f486"; +} + +.fa-prescription-bottle-alt::before { + content: "\f486"; +} + +.fa-landmark::before { + content: "\f66f"; +} + +.fa-truck::before { + content: "\f0d1"; +} + +.fa-crosshairs::before { + content: "\f05b"; +} + +.fa-person-cane::before { + content: "\e53c"; +} + +.fa-tent::before { + content: "\e57d"; +} + +.fa-vest-patches::before { + content: "\e086"; +} + +.fa-check-double::before { + content: "\f560"; +} + +.fa-arrow-down-a-z::before { + content: "\f15d"; +} + +.fa-sort-alpha-asc::before { + content: "\f15d"; +} + +.fa-sort-alpha-down::before { + content: "\f15d"; +} + +.fa-money-bill-wheat::before { + content: "\e52a"; +} + +.fa-cookie::before { + content: "\f563"; +} + +.fa-arrow-rotate-left::before { + content: "\f0e2"; +} + +.fa-arrow-left-rotate::before { + content: "\f0e2"; +} + +.fa-arrow-rotate-back::before { + content: "\f0e2"; +} + +.fa-arrow-rotate-backward::before { + content: "\f0e2"; +} + +.fa-undo::before { + content: "\f0e2"; +} + +.fa-hard-drive::before { + content: "\f0a0"; +} + +.fa-hdd::before { + content: "\f0a0"; +} + +.fa-face-grin-squint-tears::before { + content: "\f586"; +} + +.fa-grin-squint-tears::before { + content: "\f586"; +} + +.fa-dumbbell::before { + content: "\f44b"; +} + +.fa-rectangle-list::before { + content: "\f022"; +} + +.fa-list-alt::before { + content: "\f022"; +} + +.fa-tarp-droplet::before { + content: "\e57c"; +} + +.fa-house-medical-circle-check::before { + content: "\e511"; +} + +.fa-person-skiing-nordic::before { + content: "\f7ca"; +} + +.fa-skiing-nordic::before { + content: "\f7ca"; +} + +.fa-calendar-plus::before { + content: "\f271"; +} + +.fa-plane-arrival::before { + content: "\f5af"; +} + +.fa-circle-left::before { + content: "\f359"; +} + +.fa-arrow-alt-circle-left::before { + content: "\f359"; +} + +.fa-train-subway::before { + content: "\f239"; +} + +.fa-subway::before { + content: "\f239"; +} + +.fa-chart-gantt::before { + content: "\e0e4"; +} + +.fa-indian-rupee-sign::before { + content: "\e1bc"; +} + +.fa-indian-rupee::before { + content: "\e1bc"; +} + +.fa-inr::before { + content: "\e1bc"; +} + +.fa-crop-simple::before { + content: "\f565"; +} + +.fa-crop-alt::before { + content: "\f565"; +} + +.fa-money-bill-1::before { + content: "\f3d1"; +} + +.fa-money-bill-alt::before { + content: "\f3d1"; +} + +.fa-left-long::before { + content: "\f30a"; +} + +.fa-long-arrow-alt-left::before { + content: "\f30a"; +} + +.fa-dna::before { + content: "\f471"; +} + +.fa-virus-slash::before { + content: "\e075"; +} + +.fa-minus::before { + content: "\f068"; +} + +.fa-subtract::before { + content: "\f068"; +} + +.fa-chess::before { + content: "\f439"; +} + +.fa-arrow-left-long::before { + content: "\f177"; +} + +.fa-long-arrow-left::before { + content: "\f177"; +} + +.fa-plug-circle-check::before { + content: "\e55c"; +} + +.fa-street-view::before { + content: "\f21d"; +} + +.fa-franc-sign::before { + content: "\e18f"; +} + +.fa-volume-off::before { + content: "\f026"; +} + +.fa-hands-asl-interpreting::before { + content: "\f2a3"; +} + +.fa-american-sign-language-interpreting::before { + content: "\f2a3"; +} + +.fa-asl-interpreting::before { + content: "\f2a3"; +} + +.fa-hands-american-sign-language-interpreting::before { + content: "\f2a3"; +} + +.fa-gear::before { + content: "\f013"; +} + +.fa-cog::before { + content: "\f013"; +} + +.fa-droplet-slash::before { + content: "\f5c7"; +} + +.fa-tint-slash::before { + content: "\f5c7"; +} + +.fa-mosque::before { + content: "\f678"; +} + +.fa-mosquito::before { + content: "\e52b"; +} + +.fa-star-of-david::before { + content: "\f69a"; +} + +.fa-person-military-rifle::before { + content: "\e54b"; +} + +.fa-cart-shopping::before { + content: "\f07a"; +} + +.fa-shopping-cart::before { + content: "\f07a"; +} + +.fa-vials::before { + content: "\f493"; +} + +.fa-plug-circle-plus::before { + content: "\e55f"; +} + +.fa-place-of-worship::before { + content: "\f67f"; +} + +.fa-grip-vertical::before { + content: "\f58e"; +} + +.fa-arrow-turn-up::before { + content: "\f148"; +} + +.fa-level-up::before { + content: "\f148"; +} + +.fa-u::before { + content: "U"; +} + +.fa-square-root-variable::before { + content: "\f698"; +} + +.fa-square-root-alt::before { + content: "\f698"; +} + +.fa-clock::before { + content: "\f017"; +} + +.fa-clock-four::before { + content: "\f017"; +} + +.fa-backward-step::before { + content: "\f048"; +} + +.fa-step-backward::before { + content: "\f048"; +} + +.fa-pallet::before { + content: "\f482"; +} + +.fa-faucet::before { + content: "\e005"; +} + +.fa-baseball-bat-ball::before { + content: "\f432"; +} + +.fa-s::before { + content: "S"; +} + +.fa-timeline::before { + content: "\e29c"; +} + +.fa-keyboard::before { + content: "\f11c"; +} + +.fa-caret-down::before { + content: "\f0d7"; +} + +.fa-house-chimney-medical::before { + content: "\f7f2"; +} + +.fa-clinic-medical::before { + content: "\f7f2"; +} + +.fa-temperature-three-quarters::before { + content: "\f2c8"; +} + +.fa-temperature-3::before { + content: "\f2c8"; +} + +.fa-thermometer-3::before { + content: "\f2c8"; +} + +.fa-thermometer-three-quarters::before { + content: "\f2c8"; +} + +.fa-mobile-screen::before { + content: "\f3cf"; +} + +.fa-mobile-android-alt::before { + content: "\f3cf"; +} + +.fa-plane-up::before { + content: "\e22d"; +} + +.fa-piggy-bank::before { + content: "\f4d3"; +} + +.fa-battery-half::before { + content: "\f242"; +} + +.fa-battery-3::before { + content: "\f242"; +} + +.fa-mountain-city::before { + content: "\e52e"; +} + +.fa-coins::before { + content: "\f51e"; +} + +.fa-khanda::before { + content: "\f66d"; +} + +.fa-sliders::before { + content: "\f1de"; +} + +.fa-sliders-h::before { + content: "\f1de"; +} + +.fa-folder-tree::before { + content: "\f802"; +} + +.fa-network-wired::before { + content: "\f6ff"; +} + +.fa-map-pin::before { + content: "\f276"; +} + +.fa-hamsa::before { + content: "\f665"; +} + +.fa-cent-sign::before { + content: "\e3f5"; +} + +.fa-flask::before { + content: "\f0c3"; +} + +.fa-person-pregnant::before { + content: "\e31e"; +} + +.fa-wand-sparkles::before { + content: "\f72b"; +} + +.fa-ellipsis-vertical::before { + content: "\f142"; +} + +.fa-ellipsis-v::before { + content: "\f142"; +} + +.fa-ticket::before { + content: "\f145"; +} + +.fa-power-off::before { + content: "\f011"; +} + +.fa-right-long::before { + content: "\f30b"; +} + +.fa-long-arrow-alt-right::before { + content: "\f30b"; +} + +.fa-flag-usa::before { + content: "\f74d"; +} + +.fa-laptop-file::before { + content: "\e51d"; +} + +.fa-tty::before { + content: "\f1e4"; +} + +.fa-teletype::before { + content: "\f1e4"; +} + +.fa-diagram-next::before { + content: "\e476"; +} + +.fa-person-rifle::before { + content: "\e54e"; +} + +.fa-house-medical-circle-exclamation::before { + content: "\e512"; +} + +.fa-closed-captioning::before { + content: "\f20a"; +} + +.fa-person-hiking::before { + content: "\f6ec"; +} + +.fa-hiking::before { + content: "\f6ec"; +} + +.fa-venus-double::before { + content: "\f226"; +} + +.fa-images::before { + content: "\f302"; +} + +.fa-calculator::before { + content: "\f1ec"; +} + +.fa-people-pulling::before { + content: "\e535"; +} + +.fa-n::before { + content: "N"; +} + +.fa-cable-car::before { + content: "\f7da"; +} + +.fa-tram::before { + content: "\f7da"; +} + +.fa-cloud-rain::before { + content: "\f73d"; +} + +.fa-building-circle-xmark::before { + content: "\e4d4"; +} + +.fa-ship::before { + content: "\f21a"; +} + +.fa-arrows-down-to-line::before { + content: "\e4b8"; +} + +.fa-download::before { + content: "\f019"; +} + +.fa-face-grin::before { + content: "\f580"; +} + +.fa-grin::before { + content: "\f580"; +} + +.fa-delete-left::before { + content: "\f55a"; +} + +.fa-backspace::before { + content: "\f55a"; +} + +.fa-eye-dropper::before { + content: "\f1fb"; +} + +.fa-eye-dropper-empty::before { + content: "\f1fb"; +} + +.fa-eyedropper::before { + content: "\f1fb"; +} + +.fa-file-circle-check::before { + content: "\e5a0"; +} + +.fa-forward::before { + content: "\f04e"; +} + +.fa-mobile::before { + content: "\f3ce"; +} + +.fa-mobile-android::before { + content: "\f3ce"; +} + +.fa-mobile-phone::before { + content: "\f3ce"; +} + +.fa-face-meh::before { + content: "\f11a"; +} + +.fa-meh::before { + content: "\f11a"; +} + +.fa-align-center::before { + content: "\f037"; +} + +.fa-book-skull::before { + content: "\f6b7"; +} + +.fa-book-dead::before { + content: "\f6b7"; +} + +.fa-id-card::before { + content: "\f2c2"; +} + +.fa-drivers-license::before { + content: "\f2c2"; +} + +.fa-outdent::before { + content: "\f03b"; +} + +.fa-dedent::before { + content: "\f03b"; +} + +.fa-heart-circle-exclamation::before { + content: "\e4fe"; +} + +.fa-house::before { + content: "\f015"; +} + +.fa-home::before { + content: "\f015"; +} + +.fa-home-alt::before { + content: "\f015"; +} + +.fa-home-lg-alt::before { + content: "\f015"; +} + +.fa-calendar-week::before { + content: "\f784"; +} + +.fa-laptop-medical::before { + content: "\f812"; +} + +.fa-b::before { + content: "B"; +} + +.fa-file-medical::before { + content: "\f477"; +} + +.fa-dice-one::before { + content: "\f525"; +} + +.fa-kiwi-bird::before { + content: "\f535"; +} + +.fa-arrow-right-arrow-left::before { + content: "\f0ec"; +} + +.fa-exchange::before { + content: "\f0ec"; +} + +.fa-rotate-right::before { + content: "\f2f9"; +} + +.fa-redo-alt::before { + content: "\f2f9"; +} + +.fa-rotate-forward::before { + content: "\f2f9"; +} + +.fa-utensils::before { + content: "\f2e7"; +} + +.fa-cutlery::before { + content: "\f2e7"; +} + +.fa-arrow-up-wide-short::before { + content: "\f161"; +} + +.fa-sort-amount-up::before { + content: "\f161"; +} + +.fa-mill-sign::before { + content: "\e1ed"; +} + +.fa-bowl-rice::before { + content: "\e2eb"; +} + +.fa-skull::before { + content: "\f54c"; +} + +.fa-tower-broadcast::before { + content: "\f519"; +} + +.fa-broadcast-tower::before { + content: "\f519"; +} + +.fa-truck-pickup::before { + content: "\f63c"; +} + +.fa-up-long::before { + content: "\f30c"; +} + +.fa-long-arrow-alt-up::before { + content: "\f30c"; +} + +.fa-stop::before { + content: "\f04d"; +} + +.fa-code-merge::before { + content: "\f387"; +} + +.fa-upload::before { + content: "\f093"; +} + +.fa-hurricane::before { + content: "\f751"; +} + +.fa-mound::before { + content: "\e52d"; +} + +.fa-toilet-portable::before { + content: "\e583"; +} + +.fa-compact-disc::before { + content: "\f51f"; +} + +.fa-file-arrow-down::before { + content: "\f56d"; +} + +.fa-file-download::before { + content: "\f56d"; +} + +.fa-caravan::before { + content: "\f8ff"; +} + +.fa-shield-cat::before { + content: "\e572"; +} + +.fa-bolt::before { + content: "\f0e7"; +} + +.fa-zap::before { + content: "\f0e7"; +} + +.fa-glass-water::before { + content: "\e4f4"; +} + +.fa-oil-well::before { + content: "\e532"; +} + +.fa-vault::before { + content: "\e2c5"; +} + +.fa-mars::before { + content: "\f222"; +} + +.fa-toilet::before { + content: "\f7d8"; +} + +.fa-plane-circle-xmark::before { + content: "\e557"; +} + +.fa-yen-sign::before { + content: "\f157"; +} + +.fa-cny::before { + content: "\f157"; +} + +.fa-jpy::before { + content: "\f157"; +} + +.fa-rmb::before { + content: "\f157"; +} + +.fa-yen::before { + content: "\f157"; +} + +.fa-ruble-sign::before { + content: "\f158"; +} + +.fa-rouble::before { + content: "\f158"; +} + +.fa-rub::before { + content: "\f158"; +} + +.fa-ruble::before { + content: "\f158"; +} + +.fa-sun::before { + content: "\f185"; +} + +.fa-guitar::before { + content: "\f7a6"; +} + +.fa-face-laugh-wink::before { + content: "\f59c"; +} + +.fa-laugh-wink::before { + content: "\f59c"; +} + +.fa-horse-head::before { + content: "\f7ab"; +} + +.fa-bore-hole::before { + content: "\e4c3"; +} + +.fa-industry::before { + content: "\f275"; +} + +.fa-circle-down::before { + content: "\f358"; +} + +.fa-arrow-alt-circle-down::before { + content: "\f358"; +} + +.fa-arrows-turn-to-dots::before { + content: "\e4c1"; +} + +.fa-florin-sign::before { + content: "\e184"; +} + +.fa-arrow-down-short-wide::before { + content: "\f884"; +} + +.fa-sort-amount-desc::before { + content: "\f884"; +} + +.fa-sort-amount-down-alt::before { + content: "\f884"; +} + +.fa-less-than::before { + content: "<"; +} + +.fa-angle-down::before { + content: "\f107"; +} + +.fa-car-tunnel::before { + content: "\e4de"; +} + +.fa-head-side-cough::before { + content: "\e061"; +} + +.fa-grip-lines::before { + content: "\f7a4"; +} + +.fa-thumbs-down::before { + content: "\f165"; +} + +.fa-user-lock::before { + content: "\f502"; +} + +.fa-arrow-right-long::before { + content: "\f178"; +} + +.fa-long-arrow-right::before { + content: "\f178"; +} + +.fa-anchor-circle-xmark::before { + content: "\e4ac"; +} + +.fa-ellipsis::before { + content: "\f141"; +} + +.fa-ellipsis-h::before { + content: "\f141"; +} + +.fa-chess-pawn::before { + content: "\f443"; +} + +.fa-kit-medical::before { + content: "\f479"; +} + +.fa-first-aid::before { + content: "\f479"; +} + +.fa-person-through-window::before { + content: "\e5a9"; +} + +.fa-toolbox::before { + content: "\f552"; +} + +.fa-hands-holding-circle::before { + content: "\e4fb"; +} + +.fa-bug::before { + content: "\f188"; +} + +.fa-credit-card::before { + content: "\f09d"; +} + +.fa-credit-card-alt::before { + content: "\f09d"; +} + +.fa-car::before { + content: "\f1b9"; +} + +.fa-automobile::before { + content: "\f1b9"; +} + +.fa-hand-holding-hand::before { + content: "\e4f7"; +} + +.fa-book-open-reader::before { + content: "\f5da"; +} + +.fa-book-reader::before { + content: "\f5da"; +} + +.fa-mountain-sun::before { + content: "\e52f"; +} + +.fa-arrows-left-right-to-line::before { + content: "\e4ba"; +} + +.fa-dice-d20::before { + content: "\f6cf"; +} + +.fa-truck-droplet::before { + content: "\e58c"; +} + +.fa-file-circle-xmark::before { + content: "\e5a1"; +} + +.fa-temperature-arrow-up::before { + content: "\e040"; +} + +.fa-temperature-up::before { + content: "\e040"; +} + +.fa-medal::before { + content: "\f5a2"; +} + +.fa-bed::before { + content: "\f236"; +} + +.fa-square-h::before { + content: "\f0fd"; +} + +.fa-h-square::before { + content: "\f0fd"; +} + +.fa-podcast::before { + content: "\f2ce"; +} + +.fa-temperature-full::before { + content: "\f2c7"; +} + +.fa-temperature-4::before { + content: "\f2c7"; +} + +.fa-thermometer-4::before { + content: "\f2c7"; +} + +.fa-thermometer-full::before { + content: "\f2c7"; +} + +.fa-bell::before { + content: "\f0f3"; +} + +.fa-superscript::before { + content: "\f12b"; +} + +.fa-plug-circle-xmark::before { + content: "\e560"; +} + +.fa-star-of-life::before { + content: "\f621"; +} + +.fa-phone-slash::before { + content: "\f3dd"; +} + +.fa-paint-roller::before { + content: "\f5aa"; +} + +.fa-handshake-angle::before { + content: "\f4c4"; +} + +.fa-hands-helping::before { + content: "\f4c4"; +} + +.fa-location-dot::before { + content: "\f3c5"; +} + +.fa-map-marker-alt::before { + content: "\f3c5"; +} + +.fa-file::before { + content: "\f15b"; +} + +.fa-greater-than::before { + content: ">"; +} + +.fa-person-swimming::before { + content: "\f5c4"; +} + +.fa-swimmer::before { + content: "\f5c4"; +} + +.fa-arrow-down::before { + content: "\f063"; +} + +.fa-droplet::before { + content: "\f043"; +} + +.fa-tint::before { + content: "\f043"; +} + +.fa-eraser::before { + content: "\f12d"; +} + +.fa-earth-americas::before { + content: "\f57d"; +} + +.fa-earth::before { + content: "\f57d"; +} + +.fa-earth-america::before { + content: "\f57d"; +} + +.fa-globe-americas::before { + content: "\f57d"; +} + +.fa-person-burst::before { + content: "\e53b"; +} + +.fa-dove::before { + content: "\f4ba"; +} + +.fa-battery-empty::before { + content: "\f244"; +} + +.fa-battery-0::before { + content: "\f244"; +} + +.fa-socks::before { + content: "\f696"; +} + +.fa-inbox::before { + content: "\f01c"; +} + +.fa-section::before { + content: "\e447"; +} + +.fa-gauge-high::before { + content: "\f625"; +} + +.fa-tachometer-alt::before { + content: "\f625"; +} + +.fa-tachometer-alt-fast::before { + content: "\f625"; +} + +.fa-envelope-open-text::before { + content: "\f658"; +} + +.fa-hospital::before { + content: "\f0f8"; +} + +.fa-hospital-alt::before { + content: "\f0f8"; +} + +.fa-hospital-wide::before { + content: "\f0f8"; +} + +.fa-wine-bottle::before { + content: "\f72f"; +} + +.fa-chess-rook::before { + content: "\f447"; +} + +.fa-bars-staggered::before { + content: "\f550"; +} + +.fa-reorder::before { + content: "\f550"; +} + +.fa-stream::before { + content: "\f550"; +} + +.fa-dharmachakra::before { + content: "\f655"; +} + +.fa-hotdog::before { + content: "\f80f"; +} + +.fa-person-walking-with-cane::before { + content: "\f29d"; +} + +.fa-blind::before { + content: "\f29d"; +} + +.fa-drum::before { + content: "\f569"; +} + +.fa-ice-cream::before { + content: "\f810"; +} + +.fa-heart-circle-bolt::before { + content: "\e4fc"; +} + +.fa-fax::before { + content: "\f1ac"; +} + +.fa-paragraph::before { + content: "\f1dd"; +} + +.fa-check-to-slot::before { + content: "\f772"; +} + +.fa-vote-yea::before { + content: "\f772"; +} + +.fa-star-half::before { + content: "\f089"; +} + +.fa-boxes-stacked::before { + content: "\f468"; +} + +.fa-boxes::before { + content: "\f468"; +} + +.fa-boxes-alt::before { + content: "\f468"; +} + +.fa-link::before { + content: "\f0c1"; +} + +.fa-chain::before { + content: "\f0c1"; +} + +.fa-ear-listen::before { + content: "\f2a2"; +} + +.fa-assistive-listening-systems::before { + content: "\f2a2"; +} + +.fa-tree-city::before { + content: "\e587"; +} + +.fa-play::before { + content: "\f04b"; +} + +.fa-font::before { + content: "\f031"; +} + +.fa-rupiah-sign::before { + content: "\e23d"; +} + +.fa-magnifying-glass::before { + content: "\f002"; +} + +.fa-search::before { + content: "\f002"; +} + +.fa-table-tennis-paddle-ball::before { + content: "\f45d"; +} + +.fa-ping-pong-paddle-ball::before { + content: "\f45d"; +} + +.fa-table-tennis::before { + content: "\f45d"; +} + +.fa-person-dots-from-line::before { + content: "\f470"; +} + +.fa-diagnoses::before { + content: "\f470"; +} + +.fa-trash-can-arrow-up::before { + content: "\f82a"; +} + +.fa-trash-restore-alt::before { + content: "\f82a"; +} + +.fa-naira-sign::before { + content: "\e1f6"; +} + +.fa-cart-arrow-down::before { + content: "\f218"; +} + +.fa-walkie-talkie::before { + content: "\f8ef"; +} + +.fa-file-pen::before { + content: "\f31c"; +} + +.fa-file-edit::before { + content: "\f31c"; +} + +.fa-receipt::before { + content: "\f543"; +} + +.fa-square-pen::before { + content: "\f14b"; +} + +.fa-pen-square::before { + content: "\f14b"; +} + +.fa-pencil-square::before { + content: "\f14b"; +} + +.fa-suitcase-rolling::before { + content: "\f5c1"; +} + +.fa-person-circle-exclamation::before { + content: "\e53f"; +} + +.fa-chevron-down::before { + content: "\f078"; +} + +.fa-battery-full::before { + content: "\f240"; +} + +.fa-battery::before { + content: "\f240"; +} + +.fa-battery-5::before { + content: "\f240"; +} + +.fa-skull-crossbones::before { + content: "\f714"; +} + +.fa-code-compare::before { + content: "\e13a"; +} + +.fa-list-ul::before { + content: "\f0ca"; +} + +.fa-list-dots::before { + content: "\f0ca"; +} + +.fa-school-lock::before { + content: "\e56f"; +} + +.fa-tower-cell::before { + content: "\e585"; +} + +.fa-down-long::before { + content: "\f309"; +} + +.fa-long-arrow-alt-down::before { + content: "\f309"; +} + +.fa-ranking-star::before { + content: "\e561"; +} + +.fa-chess-king::before { + content: "\f43f"; +} + +.fa-person-harassing::before { + content: "\e549"; +} + +.fa-brazilian-real-sign::before { + content: "\e46c"; +} + +.fa-landmark-dome::before { + content: "\f752"; +} + +.fa-landmark-alt::before { + content: "\f752"; +} + +.fa-arrow-up::before { + content: "\f062"; +} + +.fa-tv::before { + content: "\f26c"; +} + +.fa-television::before { + content: "\f26c"; +} + +.fa-tv-alt::before { + content: "\f26c"; +} + +.fa-shrimp::before { + content: "\e448"; +} + +.fa-list-check::before { + content: "\f0ae"; +} + +.fa-tasks::before { + content: "\f0ae"; +} + +.fa-jug-detergent::before { + content: "\e519"; +} + +.fa-circle-user::before { + content: "\f2bd"; +} + +.fa-user-circle::before { + content: "\f2bd"; +} + +.fa-user-shield::before { + content: "\f505"; +} + +.fa-wind::before { + content: "\f72e"; +} + +.fa-car-burst::before { + content: "\f5e1"; +} + +.fa-car-crash::before { + content: "\f5e1"; +} + +.fa-y::before { + content: "Y"; +} + +.fa-person-snowboarding::before { + content: "\f7ce"; +} + +.fa-snowboarding::before { + content: "\f7ce"; +} + +.fa-truck-fast::before { + content: "\f48b"; +} + +.fa-shipping-fast::before { + content: "\f48b"; +} + +.fa-fish::before { + content: "\f578"; +} + +.fa-user-graduate::before { + content: "\f501"; +} + +.fa-circle-half-stroke::before { + content: "\f042"; +} + +.fa-adjust::before { + content: "\f042"; +} + +.fa-clapperboard::before { + content: "\e131"; +} + +.fa-circle-radiation::before { + content: "\f7ba"; +} + +.fa-radiation-alt::before { + content: "\f7ba"; +} + +.fa-baseball::before { + content: "\f433"; +} + +.fa-baseball-ball::before { + content: "\f433"; +} + +.fa-jet-fighter-up::before { + content: "\e518"; +} + +.fa-diagram-project::before { + content: "\f542"; +} + +.fa-project-diagram::before { + content: "\f542"; +} + +.fa-copy::before { + content: "\f0c5"; +} + +.fa-volume-xmark::before { + content: "\f6a9"; +} + +.fa-volume-mute::before { + content: "\f6a9"; +} + +.fa-volume-times::before { + content: "\f6a9"; +} + +.fa-hand-sparkles::before { + content: "\e05d"; +} + +.fa-grip::before { + content: "\f58d"; +} + +.fa-grip-horizontal::before { + content: "\f58d"; +} + +.fa-share-from-square::before { + content: "\f14d"; +} + +.fa-share-square::before { + content: "\f14d"; +} + +.fa-child-combatant::before { + content: "\e4e0"; +} + +.fa-child-rifle::before { + content: "\e4e0"; +} + +.fa-gun::before { + content: "\e19b"; +} + +.fa-square-phone::before { + content: "\f098"; +} + +.fa-phone-square::before { + content: "\f098"; +} + +.fa-plus::before { + content: "+"; +} + +.fa-add::before { + content: "+"; +} + +.fa-expand::before { + content: "\f065"; +} + +.fa-computer::before { + content: "\e4e5"; +} + +.fa-xmark::before { + content: "\f00d"; +} + +.fa-close::before { + content: "\f00d"; +} + +.fa-multiply::before { + content: "\f00d"; +} + +.fa-remove::before { + content: "\f00d"; +} + +.fa-times::before { + content: "\f00d"; +} + +.fa-arrows-up-down-left-right::before { + content: "\f047"; +} + +.fa-arrows::before { + content: "\f047"; +} + +.fa-chalkboard-user::before { + content: "\f51c"; +} + +.fa-chalkboard-teacher::before { + content: "\f51c"; +} + +.fa-peso-sign::before { + content: "\e222"; +} + +.fa-building-shield::before { + content: "\e4d8"; +} + +.fa-baby::before { + content: "\f77c"; +} + +.fa-users-line::before { + content: "\e592"; +} + +.fa-quote-left::before { + content: "\f10d"; +} + +.fa-quote-left-alt::before { + content: "\f10d"; +} + +.fa-tractor::before { + content: "\f722"; +} + +.fa-trash-arrow-up::before { + content: "\f829"; +} + +.fa-trash-restore::before { + content: "\f829"; +} + +.fa-arrow-down-up-lock::before { + content: "\e4b0"; +} + +.fa-lines-leaning::before { + content: "\e51e"; +} + +.fa-ruler-combined::before { + content: "\f546"; +} + +.fa-copyright::before { + content: "\f1f9"; +} + +.fa-equals::before { + content: "="; +} + +.fa-blender::before { + content: "\f517"; +} + +.fa-teeth::before { + content: "\f62e"; +} + +.fa-shekel-sign::before { + content: "\f20b"; +} + +.fa-ils::before { + content: "\f20b"; +} + +.fa-shekel::before { + content: "\f20b"; +} + +.fa-sheqel::before { + content: "\f20b"; +} + +.fa-sheqel-sign::before { + content: "\f20b"; +} + +.fa-map::before { + content: "\f279"; +} + +.fa-rocket::before { + content: "\f135"; +} + +.fa-photo-film::before { + content: "\f87c"; +} + +.fa-photo-video::before { + content: "\f87c"; +} + +.fa-folder-minus::before { + content: "\f65d"; +} + +.fa-store::before { + content: "\f54e"; +} + +.fa-arrow-trend-up::before { + content: "\e098"; +} + +.fa-plug-circle-minus::before { + content: "\e55e"; +} + +.fa-sign-hanging::before { + content: "\f4d9"; +} + +.fa-sign::before { + content: "\f4d9"; +} + +.fa-bezier-curve::before { + content: "\f55b"; +} + +.fa-bell-slash::before { + content: "\f1f6"; +} + +.fa-tablet::before { + content: "\f3fb"; +} + +.fa-tablet-android::before { + content: "\f3fb"; +} + +.fa-school-flag::before { + content: "\e56e"; +} + +.fa-fill::before { + content: "\f575"; +} + +.fa-angle-up::before { + content: "\f106"; +} + +.fa-drumstick-bite::before { + content: "\f6d7"; +} + +.fa-holly-berry::before { + content: "\f7aa"; +} + +.fa-chevron-left::before { + content: "\f053"; +} + +.fa-bacteria::before { + content: "\e059"; +} + +.fa-hand-lizard::before { + content: "\f258"; +} + +.fa-notdef::before { + content: "\e1fe"; +} + +.fa-disease::before { + content: "\f7fa"; +} + +.fa-briefcase-medical::before { + content: "\f469"; +} + +.fa-genderless::before { + content: "\f22d"; +} + +.fa-chevron-right::before { + content: "\f054"; +} + +.fa-retweet::before { + content: "\f079"; +} + +.fa-car-rear::before { + content: "\f5de"; +} + +.fa-car-alt::before { + content: "\f5de"; +} + +.fa-pump-soap::before { + content: "\e06b"; +} + +.fa-video-slash::before { + content: "\f4e2"; +} + +.fa-battery-quarter::before { + content: "\f243"; +} + +.fa-battery-2::before { + content: "\f243"; +} + +.fa-radio::before { + content: "\f8d7"; +} + +.fa-baby-carriage::before { + content: "\f77d"; +} + +.fa-carriage-baby::before { + content: "\f77d"; +} + +.fa-traffic-light::before { + content: "\f637"; +} + +.fa-thermometer::before { + content: "\f491"; +} + +.fa-vr-cardboard::before { + content: "\f729"; +} + +.fa-hand-middle-finger::before { + content: "\f806"; +} + +.fa-percent::before { + content: "%"; +} + +.fa-percentage::before { + content: "%"; +} + +.fa-truck-moving::before { + content: "\f4df"; +} + +.fa-glass-water-droplet::before { + content: "\e4f5"; +} + +.fa-display::before { + content: "\e163"; +} + +.fa-face-smile::before { + content: "\f118"; +} + +.fa-smile::before { + content: "\f118"; +} + +.fa-thumbtack::before { + content: "\f08d"; +} + +.fa-thumb-tack::before { + content: "\f08d"; +} + +.fa-trophy::before { + content: "\f091"; +} + +.fa-person-praying::before { + content: "\f683"; +} + +.fa-pray::before { + content: "\f683"; +} + +.fa-hammer::before { + content: "\f6e3"; +} + +.fa-hand-peace::before { + content: "\f25b"; +} + +.fa-rotate::before { + content: "\f2f1"; +} + +.fa-sync-alt::before { + content: "\f2f1"; +} + +.fa-spinner::before { + content: "\f110"; +} + +.fa-robot::before { + content: "\f544"; +} + +.fa-peace::before { + content: "\f67c"; +} + +.fa-gears::before { + content: "\f085"; +} + +.fa-cogs::before { + content: "\f085"; +} + +.fa-warehouse::before { + content: "\f494"; +} + +.fa-arrow-up-right-dots::before { + content: "\e4b7"; +} + +.fa-splotch::before { + content: "\f5bc"; +} + +.fa-face-grin-hearts::before { + content: "\f584"; +} + +.fa-grin-hearts::before { + content: "\f584"; +} + +.fa-dice-four::before { + content: "\f524"; +} + +.fa-sim-card::before { + content: "\f7c4"; +} + +.fa-transgender::before { + content: "\f225"; +} + +.fa-transgender-alt::before { + content: "\f225"; +} + +.fa-mercury::before { + content: "\f223"; +} + +.fa-arrow-turn-down::before { + content: "\f149"; +} + +.fa-level-down::before { + content: "\f149"; +} + +.fa-person-falling-burst::before { + content: "\e547"; +} + +.fa-award::before { + content: "\f559"; +} + +.fa-ticket-simple::before { + content: "\f3ff"; +} + +.fa-ticket-alt::before { + content: "\f3ff"; +} + +.fa-building::before { + content: "\f1ad"; +} + +.fa-angles-left::before { + content: "\f100"; +} + +.fa-angle-double-left::before { + content: "\f100"; +} + +.fa-qrcode::before { + content: "\f029"; +} + +.fa-clock-rotate-left::before { + content: "\f1da"; +} + +.fa-history::before { + content: "\f1da"; +} + +.fa-face-grin-beam-sweat::before { + content: "\f583"; +} + +.fa-grin-beam-sweat::before { + content: "\f583"; +} + +.fa-file-export::before { + content: "\f56e"; +} + +.fa-arrow-right-from-file::before { + content: "\f56e"; +} + +.fa-shield::before { + content: "\f132"; +} + +.fa-shield-blank::before { + content: "\f132"; +} + +.fa-arrow-up-short-wide::before { + content: "\f885"; +} + +.fa-sort-amount-up-alt::before { + content: "\f885"; +} + +.fa-house-medical::before { + content: "\e3b2"; +} + +.fa-golf-ball-tee::before { + content: "\f450"; +} + +.fa-golf-ball::before { + content: "\f450"; +} + +.fa-circle-chevron-left::before { + content: "\f137"; +} + +.fa-chevron-circle-left::before { + content: "\f137"; +} + +.fa-house-chimney-window::before { + content: "\e00d"; +} + +.fa-pen-nib::before { + content: "\f5ad"; +} + +.fa-tent-arrow-turn-left::before { + content: "\e580"; +} + +.fa-tents::before { + content: "\e582"; +} + +.fa-wand-magic::before { + content: "\f0d0"; +} + +.fa-magic::before { + content: "\f0d0"; +} + +.fa-dog::before { + content: "\f6d3"; +} + +.fa-carrot::before { + content: "\f787"; +} + +.fa-moon::before { + content: "\f186"; +} + +.fa-wine-glass-empty::before { + content: "\f5ce"; +} + +.fa-wine-glass-alt::before { + content: "\f5ce"; +} + +.fa-cheese::before { + content: "\f7ef"; +} + +.fa-yin-yang::before { + content: "\f6ad"; +} + +.fa-music::before { + content: "\f001"; +} + +.fa-code-commit::before { + content: "\f386"; +} + +.fa-temperature-low::before { + content: "\f76b"; +} + +.fa-person-biking::before { + content: "\f84a"; +} + +.fa-biking::before { + content: "\f84a"; +} + +.fa-broom::before { + content: "\f51a"; +} + +.fa-shield-heart::before { + content: "\e574"; +} + +.fa-gopuram::before { + content: "\f664"; +} + +.fa-earth-oceania::before { + content: "\e47b"; +} + +.fa-globe-oceania::before { + content: "\e47b"; +} + +.fa-square-xmark::before { + content: "\f2d3"; +} + +.fa-times-square::before { + content: "\f2d3"; +} + +.fa-xmark-square::before { + content: "\f2d3"; +} + +.fa-hashtag::before { + content: "#"; +} + +.fa-up-right-and-down-left-from-center::before { + content: "\f424"; +} + +.fa-expand-alt::before { + content: "\f424"; +} + +.fa-oil-can::before { + content: "\f613"; +} + +.fa-t::before { + content: "T"; +} + +.fa-hippo::before { + content: "\f6ed"; +} + +.fa-chart-column::before { + content: "\e0e3"; +} + +.fa-infinity::before { + content: "\f534"; +} + +.fa-vial-circle-check::before { + content: "\e596"; +} + +.fa-person-arrow-down-to-line::before { + content: "\e538"; +} + +.fa-voicemail::before { + content: "\f897"; +} + +.fa-fan::before { + content: "\f863"; +} + +.fa-person-walking-luggage::before { + content: "\e554"; +} + +.fa-up-down::before { + content: "\f338"; +} + +.fa-arrows-alt-v::before { + content: "\f338"; +} + +.fa-cloud-moon-rain::before { + content: "\f73c"; +} + +.fa-calendar::before { + content: "\f133"; +} + +.fa-trailer::before { + content: "\e041"; +} + +.fa-bahai::before { + content: "\f666"; +} + +.fa-haykal::before { + content: "\f666"; +} + +.fa-sd-card::before { + content: "\f7c2"; +} + +.fa-dragon::before { + content: "\f6d5"; +} + +.fa-shoe-prints::before { + content: "\f54b"; +} + +.fa-circle-plus::before { + content: "\f055"; +} + +.fa-plus-circle::before { + content: "\f055"; +} + +.fa-face-grin-tongue-wink::before { + content: "\f58b"; +} + +.fa-grin-tongue-wink::before { + content: "\f58b"; +} + +.fa-hand-holding::before { + content: "\f4bd"; +} + +.fa-plug-circle-exclamation::before { + content: "\e55d"; +} + +.fa-link-slash::before { + content: "\f127"; +} + +.fa-chain-broken::before { + content: "\f127"; +} + +.fa-chain-slash::before { + content: "\f127"; +} + +.fa-unlink::before { + content: "\f127"; +} + +.fa-clone::before { + content: "\f24d"; +} + +.fa-person-walking-arrow-loop-left::before { + content: "\e551"; +} + +.fa-arrow-up-z-a::before { + content: "\f882"; +} + +.fa-sort-alpha-up-alt::before { + content: "\f882"; +} + +.fa-fire-flame-curved::before { + content: "\f7e4"; +} + +.fa-fire-alt::before { + content: "\f7e4"; +} + +.fa-tornado::before { + content: "\f76f"; +} + +.fa-file-circle-plus::before { + content: "\e494"; +} + +.fa-book-quran::before { + content: "\f687"; +} + +.fa-quran::before { + content: "\f687"; +} + +.fa-anchor::before { + content: "\f13d"; +} + +.fa-border-all::before { + content: "\f84c"; +} + +.fa-face-angry::before { + content: "\f556"; +} + +.fa-angry::before { + content: "\f556"; +} + +.fa-cookie-bite::before { + content: "\f564"; +} + +.fa-arrow-trend-down::before { + content: "\e097"; +} + +.fa-rss::before { + content: "\f09e"; +} + +.fa-feed::before { + content: "\f09e"; +} + +.fa-draw-polygon::before { + content: "\f5ee"; +} + +.fa-scale-balanced::before { + content: "\f24e"; +} + +.fa-balance-scale::before { + content: "\f24e"; +} + +.fa-gauge-simple-high::before { + content: "\f62a"; +} + +.fa-tachometer::before { + content: "\f62a"; +} + +.fa-tachometer-fast::before { + content: "\f62a"; +} + +.fa-shower::before { + content: "\f2cc"; +} + +.fa-desktop::before { + content: "\f390"; +} + +.fa-desktop-alt::before { + content: "\f390"; +} + +.fa-m::before { + content: "M"; +} + +.fa-table-list::before { + content: "\f00b"; +} + +.fa-th-list::before { + content: "\f00b"; +} + +.fa-comment-sms::before { + content: "\f7cd"; +} + +.fa-sms::before { + content: "\f7cd"; +} + +.fa-book::before { + content: "\f02d"; +} + +.fa-user-plus::before { + content: "\f234"; +} + +.fa-check::before { + content: "\f00c"; +} + +.fa-battery-three-quarters::before { + content: "\f241"; +} + +.fa-battery-4::before { + content: "\f241"; +} + +.fa-house-circle-check::before { + content: "\e509"; +} + +.fa-angle-left::before { + content: "\f104"; +} + +.fa-diagram-successor::before { + content: "\e47a"; +} + +.fa-truck-arrow-right::before { + content: "\e58b"; +} + +.fa-arrows-split-up-and-left::before { + content: "\e4bc"; +} + +.fa-hand-fist::before { + content: "\f6de"; +} + +.fa-fist-raised::before { + content: "\f6de"; +} + +.fa-cloud-moon::before { + content: "\f6c3"; +} + +.fa-briefcase::before { + content: "\f0b1"; +} + +.fa-person-falling::before { + content: "\e546"; +} + +.fa-image-portrait::before { + content: "\f3e0"; +} + +.fa-portrait::before { + content: "\f3e0"; +} + +.fa-user-tag::before { + content: "\f507"; +} + +.fa-rug::before { + content: "\e569"; +} + +.fa-earth-europe::before { + content: "\f7a2"; +} + +.fa-globe-europe::before { + content: "\f7a2"; +} + +.fa-cart-flatbed-suitcase::before { + content: "\f59d"; +} + +.fa-luggage-cart::before { + content: "\f59d"; +} + +.fa-rectangle-xmark::before { + content: "\f410"; +} + +.fa-rectangle-times::before { + content: "\f410"; +} + +.fa-times-rectangle::before { + content: "\f410"; +} + +.fa-window-close::before { + content: "\f410"; +} + +.fa-baht-sign::before { + content: "\e0ac"; +} + +.fa-book-open::before { + content: "\f518"; +} + +.fa-book-journal-whills::before { + content: "\f66a"; +} + +.fa-journal-whills::before { + content: "\f66a"; +} + +.fa-handcuffs::before { + content: "\e4f8"; +} + +.fa-triangle-exclamation::before { + content: "\f071"; +} + +.fa-exclamation-triangle::before { + content: "\f071"; +} + +.fa-warning::before { + content: "\f071"; +} + +.fa-database::before { + content: "\f1c0"; +} + +.fa-share::before { + content: "\f064"; +} + +.fa-arrow-turn-right::before { + content: "\f064"; +} + +.fa-mail-forward::before { + content: "\f064"; +} + +.fa-bottle-droplet::before { + content: "\e4c4"; +} + +.fa-mask-face::before { + content: "\e1d7"; +} + +.fa-hill-rockslide::before { + content: "\e508"; +} + +.fa-right-left::before { + content: "\f362"; +} + +.fa-exchange-alt::before { + content: "\f362"; +} + +.fa-paper-plane::before { + content: "\f1d8"; +} + +.fa-road-circle-exclamation::before { + content: "\e565"; +} + +.fa-dungeon::before { + content: "\f6d9"; +} + +.fa-align-right::before { + content: "\f038"; +} + +.fa-money-bill-1-wave::before { + content: "\f53b"; +} + +.fa-money-bill-wave-alt::before { + content: "\f53b"; +} + +.fa-life-ring::before { + content: "\f1cd"; +} + +.fa-hands::before { + content: "\f2a7"; +} + +.fa-sign-language::before { + content: "\f2a7"; +} + +.fa-signing::before { + content: "\f2a7"; +} + +.fa-calendar-day::before { + content: "\f783"; +} + +.fa-water-ladder::before { + content: "\f5c5"; +} + +.fa-ladder-water::before { + content: "\f5c5"; +} + +.fa-swimming-pool::before { + content: "\f5c5"; +} + +.fa-arrows-up-down::before { + content: "\f07d"; +} + +.fa-arrows-v::before { + content: "\f07d"; +} + +.fa-face-grimace::before { + content: "\f57f"; +} + +.fa-grimace::before { + content: "\f57f"; +} + +.fa-wheelchair-move::before { + content: "\e2ce"; +} + +.fa-wheelchair-alt::before { + content: "\e2ce"; +} + +.fa-turn-down::before { + content: "\f3be"; +} + +.fa-level-down-alt::before { + content: "\f3be"; +} + +.fa-person-walking-arrow-right::before { + content: "\e552"; +} + +.fa-square-envelope::before { + content: "\f199"; +} + +.fa-envelope-square::before { + content: "\f199"; +} + +.fa-dice::before { + content: "\f522"; +} + +.fa-bowling-ball::before { + content: "\f436"; +} + +.fa-brain::before { + content: "\f5dc"; +} + +.fa-bandage::before { + content: "\f462"; +} + +.fa-band-aid::before { + content: "\f462"; +} + +.fa-calendar-minus::before { + content: "\f272"; +} + +.fa-circle-xmark::before { + content: "\f057"; +} + +.fa-times-circle::before { + content: "\f057"; +} + +.fa-xmark-circle::before { + content: "\f057"; +} + +.fa-gifts::before { + content: "\f79c"; +} + +.fa-hotel::before { + content: "\f594"; +} + +.fa-earth-asia::before { + content: "\f57e"; +} + +.fa-globe-asia::before { + content: "\f57e"; +} + +.fa-id-card-clip::before { + content: "\f47f"; +} + +.fa-id-card-alt::before { + content: "\f47f"; +} + +.fa-magnifying-glass-plus::before { + content: "\f00e"; +} + +.fa-search-plus::before { + content: "\f00e"; +} + +.fa-thumbs-up::before { + content: "\f164"; +} + +.fa-user-clock::before { + content: "\f4fd"; +} + +.fa-hand-dots::before { + content: "\f461"; +} + +.fa-allergies::before { + content: "\f461"; +} + +.fa-file-invoice::before { + content: "\f570"; +} + +.fa-window-minimize::before { + content: "\f2d1"; +} + +.fa-mug-saucer::before { + content: "\f0f4"; +} + +.fa-coffee::before { + content: "\f0f4"; +} + +.fa-brush::before { + content: "\f55d"; +} + +.fa-mask::before { + content: "\f6fa"; +} + +.fa-magnifying-glass-minus::before { + content: "\f010"; +} + +.fa-search-minus::before { + content: "\f010"; +} + +.fa-ruler-vertical::before { + content: "\f548"; +} + +.fa-user-large::before { + content: "\f406"; +} + +.fa-user-alt::before { + content: "\f406"; +} + +.fa-train-tram::before { + content: "\e5b4"; +} + +.fa-user-nurse::before { + content: "\f82f"; +} + +.fa-syringe::before { + content: "\f48e"; +} + +.fa-cloud-sun::before { + content: "\f6c4"; +} + +.fa-stopwatch-20::before { + content: "\e06f"; +} + +.fa-square-full::before { + content: "\f45c"; +} + +.fa-magnet::before { + content: "\f076"; +} + +.fa-jar::before { + content: "\e516"; +} + +.fa-note-sticky::before { + content: "\f249"; +} + +.fa-sticky-note::before { + content: "\f249"; +} + +.fa-bug-slash::before { + content: "\e490"; +} + +.fa-arrow-up-from-water-pump::before { + content: "\e4b6"; +} + +.fa-bone::before { + content: "\f5d7"; +} + +.fa-user-injured::before { + content: "\f728"; +} + +.fa-face-sad-tear::before { + content: "\f5b4"; +} + +.fa-sad-tear::before { + content: "\f5b4"; +} + +.fa-plane::before { + content: "\f072"; +} + +.fa-tent-arrows-down::before { + content: "\e581"; +} + +.fa-exclamation::before { + content: "!"; +} + +.fa-arrows-spin::before { + content: "\e4bb"; +} + +.fa-print::before { + content: "\f02f"; +} + +.fa-turkish-lira-sign::before { + content: "\e2bb"; +} + +.fa-try::before { + content: "\e2bb"; +} + +.fa-turkish-lira::before { + content: "\e2bb"; +} + +.fa-dollar-sign::before { + content: "$"; +} + +.fa-dollar::before { + content: "$"; +} + +.fa-usd::before { + content: "$"; +} + +.fa-x::before { + content: "X"; +} + +.fa-magnifying-glass-dollar::before { + content: "\f688"; +} + +.fa-search-dollar::before { + content: "\f688"; +} + +.fa-users-gear::before { + content: "\f509"; +} + +.fa-users-cog::before { + content: "\f509"; +} + +.fa-person-military-pointing::before { + content: "\e54a"; +} + +.fa-building-columns::before { + content: "\f19c"; +} + +.fa-bank::before { + content: "\f19c"; +} + +.fa-institution::before { + content: "\f19c"; +} + +.fa-museum::before { + content: "\f19c"; +} + +.fa-university::before { + content: "\f19c"; +} + +.fa-umbrella::before { + content: "\f0e9"; +} + +.fa-trowel::before { + content: "\e589"; +} + +.fa-d::before { + content: "D"; +} + +.fa-stapler::before { + content: "\e5af"; +} + +.fa-masks-theater::before { + content: "\f630"; +} + +.fa-theater-masks::before { + content: "\f630"; +} + +.fa-kip-sign::before { + content: "\e1c4"; +} + +.fa-hand-point-left::before { + content: "\f0a5"; +} + +.fa-handshake-simple::before { + content: "\f4c6"; +} + +.fa-handshake-alt::before { + content: "\f4c6"; +} + +.fa-jet-fighter::before { + content: "\f0fb"; +} + +.fa-fighter-jet::before { + content: "\f0fb"; +} + +.fa-square-share-nodes::before { + content: "\f1e1"; +} + +.fa-share-alt-square::before { + content: "\f1e1"; +} + +.fa-barcode::before { + content: "\f02a"; +} + +.fa-plus-minus::before { + content: "\e43c"; +} + +.fa-video::before { + content: "\f03d"; +} + +.fa-video-camera::before { + content: "\f03d"; +} + +.fa-graduation-cap::before { + content: "\f19d"; +} + +.fa-mortar-board::before { + content: "\f19d"; +} + +.fa-hand-holding-medical::before { + content: "\e05c"; +} + +.fa-person-circle-check::before { + content: "\e53e"; +} + +.fa-turn-up::before { + content: "\f3bf"; +} + +.fa-level-up-alt::before { + content: "\f3bf"; +} + +.sr-only, +.fa-sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} + +.sr-only-focusable:not(:focus), +.fa-sr-only-focusable:not(:focus) { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} + +:root, :host { + --fa-style-family-brands: "Font Awesome 6 Brands"; + --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; +} + +@font-face { + font-family: "Font Awesome 6 Brands"; + font-style: normal; + font-weight: 400; + font-display: block; + src: url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.ttf") format("truetype"); +} +.fab, +.fa-brands { + font-weight: 400; +} + +.fa-monero:before { + content: "\f3d0"; +} + +.fa-hooli:before { + content: "\f427"; +} + +.fa-yelp:before { + content: "\f1e9"; +} + +.fa-cc-visa:before { + content: "\f1f0"; +} + +.fa-lastfm:before { + content: "\f202"; +} + +.fa-shopware:before { + content: "\f5b5"; +} + +.fa-creative-commons-nc:before { + content: "\f4e8"; +} + +.fa-aws:before { + content: "\f375"; +} + +.fa-redhat:before { + content: "\f7bc"; +} + +.fa-yoast:before { + content: "\f2b1"; +} + +.fa-cloudflare:before { + content: "\e07d"; +} + +.fa-ups:before { + content: "\f7e0"; +} + +.fa-wpexplorer:before { + content: "\f2de"; +} + +.fa-dyalog:before { + content: "\f399"; +} + +.fa-bity:before { + content: "\f37a"; +} + +.fa-stackpath:before { + content: "\f842"; +} + +.fa-buysellads:before { + content: "\f20d"; +} + +.fa-first-order:before { + content: "\f2b0"; +} + +.fa-modx:before { + content: "\f285"; +} + +.fa-guilded:before { + content: "\e07e"; +} + +.fa-vnv:before { + content: "\f40b"; +} + +.fa-square-js:before { + content: "\f3b9"; +} + +.fa-js-square:before { + content: "\f3b9"; +} + +.fa-microsoft:before { + content: "\f3ca"; +} + +.fa-qq:before { + content: "\f1d6"; +} + +.fa-orcid:before { + content: "\f8d2"; +} + +.fa-java:before { + content: "\f4e4"; +} + +.fa-invision:before { + content: "\f7b0"; +} + +.fa-creative-commons-pd-alt:before { + content: "\f4ed"; +} + +.fa-centercode:before { + content: "\f380"; +} + +.fa-glide-g:before { + content: "\f2a6"; +} + +.fa-drupal:before { + content: "\f1a9"; +} + +.fa-hire-a-helper:before { + content: "\f3b0"; +} + +.fa-creative-commons-by:before { + content: "\f4e7"; +} + +.fa-unity:before { + content: "\e049"; +} + +.fa-whmcs:before { + content: "\f40d"; +} + +.fa-rocketchat:before { + content: "\f3e8"; +} + +.fa-vk:before { + content: "\f189"; +} + +.fa-untappd:before { + content: "\f405"; +} + +.fa-mailchimp:before { + content: "\f59e"; +} + +.fa-css3-alt:before { + content: "\f38b"; +} + +.fa-square-reddit:before { + content: "\f1a2"; +} + +.fa-reddit-square:before { + content: "\f1a2"; +} + +.fa-vimeo-v:before { + content: "\f27d"; +} + +.fa-contao:before { + content: "\f26d"; +} + +.fa-square-font-awesome:before { + content: "\e5ad"; +} + +.fa-deskpro:before { + content: "\f38f"; +} + +.fa-sistrix:before { + content: "\f3ee"; +} + +.fa-square-instagram:before { + content: "\e055"; +} + +.fa-instagram-square:before { + content: "\e055"; +} + +.fa-battle-net:before { + content: "\f835"; +} + +.fa-the-red-yeti:before { + content: "\f69d"; +} + +.fa-square-hacker-news:before { + content: "\f3af"; +} + +.fa-hacker-news-square:before { + content: "\f3af"; +} + +.fa-edge:before { + content: "\f282"; +} + +.fa-threads:before { + content: "\e618"; +} + +.fa-napster:before { + content: "\f3d2"; +} + +.fa-square-snapchat:before { + content: "\f2ad"; +} + +.fa-snapchat-square:before { + content: "\f2ad"; +} + +.fa-google-plus-g:before { + content: "\f0d5"; +} + +.fa-artstation:before { + content: "\f77a"; +} + +.fa-markdown:before { + content: "\f60f"; +} + +.fa-sourcetree:before { + content: "\f7d3"; +} + +.fa-google-plus:before { + content: "\f2b3"; +} + +.fa-diaspora:before { + content: "\f791"; +} + +.fa-foursquare:before { + content: "\f180"; +} + +.fa-stack-overflow:before { + content: "\f16c"; +} + +.fa-github-alt:before { + content: "\f113"; +} + +.fa-phoenix-squadron:before { + content: "\f511"; +} + +.fa-pagelines:before { + content: "\f18c"; +} + +.fa-algolia:before { + content: "\f36c"; +} + +.fa-red-river:before { + content: "\f3e3"; +} + +.fa-creative-commons-sa:before { + content: "\f4ef"; +} + +.fa-safari:before { + content: "\f267"; +} + +.fa-google:before { + content: "\f1a0"; +} + +.fa-square-font-awesome-stroke:before { + content: "\f35c"; +} + +.fa-font-awesome-alt:before { + content: "\f35c"; +} + +.fa-atlassian:before { + content: "\f77b"; +} + +.fa-linkedin-in:before { + content: "\f0e1"; +} + +.fa-digital-ocean:before { + content: "\f391"; +} + +.fa-nimblr:before { + content: "\f5a8"; +} + +.fa-chromecast:before { + content: "\f838"; +} + +.fa-evernote:before { + content: "\f839"; +} + +.fa-hacker-news:before { + content: "\f1d4"; +} + +.fa-creative-commons-sampling:before { + content: "\f4f0"; +} + +.fa-adversal:before { + content: "\f36a"; +} + +.fa-creative-commons:before { + content: "\f25e"; +} + +.fa-watchman-monitoring:before { + content: "\e087"; +} + +.fa-fonticons:before { + content: "\f280"; +} + +.fa-weixin:before { + content: "\f1d7"; +} + +.fa-shirtsinbulk:before { + content: "\f214"; +} + +.fa-codepen:before { + content: "\f1cb"; +} + +.fa-git-alt:before { + content: "\f841"; +} + +.fa-lyft:before { + content: "\f3c3"; +} + +.fa-rev:before { + content: "\f5b2"; +} + +.fa-windows:before { + content: "\f17a"; +} + +.fa-wizards-of-the-coast:before { + content: "\f730"; +} + +.fa-square-viadeo:before { + content: "\f2aa"; +} + +.fa-viadeo-square:before { + content: "\f2aa"; +} + +.fa-meetup:before { + content: "\f2e0"; +} + +.fa-centos:before { + content: "\f789"; +} + +.fa-adn:before { + content: "\f170"; +} + +.fa-cloudsmith:before { + content: "\f384"; +} + +.fa-pied-piper-alt:before { + content: "\f1a8"; +} + +.fa-square-dribbble:before { + content: "\f397"; +} + +.fa-dribbble-square:before { + content: "\f397"; +} + +.fa-codiepie:before { + content: "\f284"; +} + +.fa-node:before { + content: "\f419"; +} + +.fa-mix:before { + content: "\f3cb"; +} + +.fa-steam:before { + content: "\f1b6"; +} + +.fa-cc-apple-pay:before { + content: "\f416"; +} + +.fa-scribd:before { + content: "\f28a"; +} + +.fa-debian:before { + content: "\e60b"; +} + +.fa-openid:before { + content: "\f19b"; +} + +.fa-instalod:before { + content: "\e081"; +} + +.fa-expeditedssl:before { + content: "\f23e"; +} + +.fa-sellcast:before { + content: "\f2da"; +} + +.fa-square-twitter:before { + content: "\f081"; +} + +.fa-twitter-square:before { + content: "\f081"; +} + +.fa-r-project:before { + content: "\f4f7"; +} + +.fa-delicious:before { + content: "\f1a5"; +} + +.fa-freebsd:before { + content: "\f3a4"; +} + +.fa-vuejs:before { + content: "\f41f"; +} + +.fa-accusoft:before { + content: "\f369"; +} + +.fa-ioxhost:before { + content: "\f208"; +} + +.fa-fonticons-fi:before { + content: "\f3a2"; +} + +.fa-app-store:before { + content: "\f36f"; +} + +.fa-cc-mastercard:before { + content: "\f1f1"; +} + +.fa-itunes-note:before { + content: "\f3b5"; +} + +.fa-golang:before { + content: "\e40f"; +} + +.fa-kickstarter:before { + content: "\f3bb"; +} + +.fa-grav:before { + content: "\f2d6"; +} + +.fa-weibo:before { + content: "\f18a"; +} + +.fa-uncharted:before { + content: "\e084"; +} + +.fa-firstdraft:before { + content: "\f3a1"; +} + +.fa-square-youtube:before { + content: "\f431"; +} + +.fa-youtube-square:before { + content: "\f431"; +} + +.fa-wikipedia-w:before { + content: "\f266"; +} + +.fa-wpressr:before { + content: "\f3e4"; +} + +.fa-rendact:before { + content: "\f3e4"; +} + +.fa-angellist:before { + content: "\f209"; +} + +.fa-galactic-republic:before { + content: "\f50c"; +} + +.fa-nfc-directional:before { + content: "\e530"; +} + +.fa-skype:before { + content: "\f17e"; +} + +.fa-joget:before { + content: "\f3b7"; +} + +.fa-fedora:before { + content: "\f798"; +} + +.fa-stripe-s:before { + content: "\f42a"; +} + +.fa-meta:before { + content: "\e49b"; +} + +.fa-laravel:before { + content: "\f3bd"; +} + +.fa-hotjar:before { + content: "\f3b1"; +} + +.fa-bluetooth-b:before { + content: "\f294"; +} + +.fa-sticker-mule:before { + content: "\f3f7"; +} + +.fa-creative-commons-zero:before { + content: "\f4f3"; +} + +.fa-hips:before { + content: "\f452"; +} + +.fa-behance:before { + content: "\f1b4"; +} + +.fa-reddit:before { + content: "\f1a1"; +} + +.fa-discord:before { + content: "\f392"; +} + +.fa-chrome:before { + content: "\f268"; +} + +.fa-app-store-ios:before { + content: "\f370"; +} + +.fa-cc-discover:before { + content: "\f1f2"; +} + +.fa-wpbeginner:before { + content: "\f297"; +} + +.fa-confluence:before { + content: "\f78d"; +} + +.fa-mdb:before { + content: "\f8ca"; +} + +.fa-dochub:before { + content: "\f394"; +} + +.fa-accessible-icon:before { + content: "\f368"; +} + +.fa-ebay:before { + content: "\f4f4"; +} + +.fa-amazon:before { + content: "\f270"; +} + +.fa-unsplash:before { + content: "\e07c"; +} + +.fa-yarn:before { + content: "\f7e3"; +} + +.fa-square-steam:before { + content: "\f1b7"; +} + +.fa-steam-square:before { + content: "\f1b7"; +} + +.fa-500px:before { + content: "\f26e"; +} + +.fa-square-vimeo:before { + content: "\f194"; +} + +.fa-vimeo-square:before { + content: "\f194"; +} + +.fa-asymmetrik:before { + content: "\f372"; +} + +.fa-font-awesome:before { + content: "\f2b4"; +} + +.fa-font-awesome-flag:before { + content: "\f2b4"; +} + +.fa-font-awesome-logo-full:before { + content: "\f2b4"; +} + +.fa-gratipay:before { + content: "\f184"; +} + +.fa-apple:before { + content: "\f179"; +} + +.fa-hive:before { + content: "\e07f"; +} + +.fa-gitkraken:before { + content: "\f3a6"; +} + +.fa-keybase:before { + content: "\f4f5"; +} + +.fa-apple-pay:before { + content: "\f415"; +} + +.fa-padlet:before { + content: "\e4a0"; +} + +.fa-amazon-pay:before { + content: "\f42c"; +} + +.fa-square-github:before { + content: "\f092"; +} + +.fa-github-square:before { + content: "\f092"; +} + +.fa-stumbleupon:before { + content: "\f1a4"; +} + +.fa-fedex:before { + content: "\f797"; +} + +.fa-phoenix-framework:before { + content: "\f3dc"; +} + +.fa-shopify:before { + content: "\e057"; +} + +.fa-neos:before { + content: "\f612"; +} + +.fa-square-threads:before { + content: "\e619"; +} + +.fa-hackerrank:before { + content: "\f5f7"; +} + +.fa-researchgate:before { + content: "\f4f8"; +} + +.fa-swift:before { + content: "\f8e1"; +} + +.fa-angular:before { + content: "\f420"; +} + +.fa-speakap:before { + content: "\f3f3"; +} + +.fa-angrycreative:before { + content: "\f36e"; +} + +.fa-y-combinator:before { + content: "\f23b"; +} + +.fa-empire:before { + content: "\f1d1"; +} + +.fa-envira:before { + content: "\f299"; +} + +.fa-square-gitlab:before { + content: "\e5ae"; +} + +.fa-gitlab-square:before { + content: "\e5ae"; +} + +.fa-studiovinari:before { + content: "\f3f8"; +} + +.fa-pied-piper:before { + content: "\f2ae"; +} + +.fa-wordpress:before { + content: "\f19a"; +} + +.fa-product-hunt:before { + content: "\f288"; +} + +.fa-firefox:before { + content: "\f269"; +} + +.fa-linode:before { + content: "\f2b8"; +} + +.fa-goodreads:before { + content: "\f3a8"; +} + +.fa-square-odnoklassniki:before { + content: "\f264"; +} + +.fa-odnoklassniki-square:before { + content: "\f264"; +} + +.fa-jsfiddle:before { + content: "\f1cc"; +} + +.fa-sith:before { + content: "\f512"; +} + +.fa-themeisle:before { + content: "\f2b2"; +} + +.fa-page4:before { + content: "\f3d7"; +} + +.fa-hashnode:before { + content: "\e499"; +} + +.fa-react:before { + content: "\f41b"; +} + +.fa-cc-paypal:before { + content: "\f1f4"; +} + +.fa-squarespace:before { + content: "\f5be"; +} + +.fa-cc-stripe:before { + content: "\f1f5"; +} + +.fa-creative-commons-share:before { + content: "\f4f2"; +} + +.fa-bitcoin:before { + content: "\f379"; +} + +.fa-keycdn:before { + content: "\f3ba"; +} + +.fa-opera:before { + content: "\f26a"; +} + +.fa-itch-io:before { + content: "\f83a"; +} + +.fa-umbraco:before { + content: "\f8e8"; +} + +.fa-galactic-senate:before { + content: "\f50d"; +} + +.fa-ubuntu:before { + content: "\f7df"; +} + +.fa-draft2digital:before { + content: "\f396"; +} + +.fa-stripe:before { + content: "\f429"; +} + +.fa-houzz:before { + content: "\f27c"; +} + +.fa-gg:before { + content: "\f260"; +} + +.fa-dhl:before { + content: "\f790"; +} + +.fa-square-pinterest:before { + content: "\f0d3"; +} + +.fa-pinterest-square:before { + content: "\f0d3"; +} + +.fa-xing:before { + content: "\f168"; +} + +.fa-blackberry:before { + content: "\f37b"; +} + +.fa-creative-commons-pd:before { + content: "\f4ec"; +} + +.fa-playstation:before { + content: "\f3df"; +} + +.fa-quinscape:before { + content: "\f459"; +} + +.fa-less:before { + content: "\f41d"; +} + +.fa-blogger-b:before { + content: "\f37d"; +} + +.fa-opencart:before { + content: "\f23d"; +} + +.fa-vine:before { + content: "\f1ca"; +} + +.fa-paypal:before { + content: "\f1ed"; +} + +.fa-gitlab:before { + content: "\f296"; +} + +.fa-typo3:before { + content: "\f42b"; +} + +.fa-reddit-alien:before { + content: "\f281"; +} + +.fa-yahoo:before { + content: "\f19e"; +} + +.fa-dailymotion:before { + content: "\e052"; +} + +.fa-affiliatetheme:before { + content: "\f36b"; +} + +.fa-pied-piper-pp:before { + content: "\f1a7"; +} + +.fa-bootstrap:before { + content: "\f836"; +} + +.fa-odnoklassniki:before { + content: "\f263"; +} + +.fa-nfc-symbol:before { + content: "\e531"; +} + +.fa-ethereum:before { + content: "\f42e"; +} + +.fa-speaker-deck:before { + content: "\f83c"; +} + +.fa-creative-commons-nc-eu:before { + content: "\f4e9"; +} + +.fa-patreon:before { + content: "\f3d9"; +} + +.fa-avianex:before { + content: "\f374"; +} + +.fa-ello:before { + content: "\f5f1"; +} + +.fa-gofore:before { + content: "\f3a7"; +} + +.fa-bimobject:before { + content: "\f378"; +} + +.fa-facebook-f:before { + content: "\f39e"; +} + +.fa-square-google-plus:before { + content: "\f0d4"; +} + +.fa-google-plus-square:before { + content: "\f0d4"; +} + +.fa-mandalorian:before { + content: "\f50f"; +} + +.fa-first-order-alt:before { + content: "\f50a"; +} + +.fa-osi:before { + content: "\f41a"; +} + +.fa-google-wallet:before { + content: "\f1ee"; +} + +.fa-d-and-d-beyond:before { + content: "\f6ca"; +} + +.fa-periscope:before { + content: "\f3da"; +} + +.fa-fulcrum:before { + content: "\f50b"; +} + +.fa-cloudscale:before { + content: "\f383"; +} + +.fa-forumbee:before { + content: "\f211"; +} + +.fa-mizuni:before { + content: "\f3cc"; +} + +.fa-schlix:before { + content: "\f3ea"; +} + +.fa-square-xing:before { + content: "\f169"; +} + +.fa-xing-square:before { + content: "\f169"; +} + +.fa-bandcamp:before { + content: "\f2d5"; +} + +.fa-wpforms:before { + content: "\f298"; +} + +.fa-cloudversify:before { + content: "\f385"; +} + +.fa-usps:before { + content: "\f7e1"; +} + +.fa-megaport:before { + content: "\f5a3"; +} + +.fa-magento:before { + content: "\f3c4"; +} + +.fa-spotify:before { + content: "\f1bc"; +} + +.fa-optin-monster:before { + content: "\f23c"; +} + +.fa-fly:before { + content: "\f417"; +} + +.fa-aviato:before { + content: "\f421"; +} + +.fa-itunes:before { + content: "\f3b4"; +} + +.fa-cuttlefish:before { + content: "\f38c"; +} + +.fa-blogger:before { + content: "\f37c"; +} + +.fa-flickr:before { + content: "\f16e"; +} + +.fa-viber:before { + content: "\f409"; +} + +.fa-soundcloud:before { + content: "\f1be"; +} + +.fa-digg:before { + content: "\f1a6"; +} + +.fa-tencent-weibo:before { + content: "\f1d5"; +} + +.fa-symfony:before { + content: "\f83d"; +} + +.fa-maxcdn:before { + content: "\f136"; +} + +.fa-etsy:before { + content: "\f2d7"; +} + +.fa-facebook-messenger:before { + content: "\f39f"; +} + +.fa-audible:before { + content: "\f373"; +} + +.fa-think-peaks:before { + content: "\f731"; +} + +.fa-bilibili:before { + content: "\e3d9"; +} + +.fa-erlang:before { + content: "\f39d"; +} + +.fa-x-twitter:before { + content: "\e61b"; +} + +.fa-cotton-bureau:before { + content: "\f89e"; +} + +.fa-dashcube:before { + content: "\f210"; +} + +.fa-42-group:before { + content: "\e080"; +} + +.fa-innosoft:before { + content: "\e080"; +} + +.fa-stack-exchange:before { + content: "\f18d"; +} + +.fa-elementor:before { + content: "\f430"; +} + +.fa-square-pied-piper:before { + content: "\e01e"; +} + +.fa-pied-piper-square:before { + content: "\e01e"; +} + +.fa-creative-commons-nd:before { + content: "\f4eb"; +} + +.fa-palfed:before { + content: "\f3d8"; +} + +.fa-superpowers:before { + content: "\f2dd"; +} + +.fa-resolving:before { + content: "\f3e7"; +} + +.fa-xbox:before { + content: "\f412"; +} + +.fa-searchengin:before { + content: "\f3eb"; +} + +.fa-tiktok:before { + content: "\e07b"; +} + +.fa-square-facebook:before { + content: "\f082"; +} + +.fa-facebook-square:before { + content: "\f082"; +} + +.fa-renren:before { + content: "\f18b"; +} + +.fa-linux:before { + content: "\f17c"; +} + +.fa-glide:before { + content: "\f2a5"; +} + +.fa-linkedin:before { + content: "\f08c"; +} + +.fa-hubspot:before { + content: "\f3b2"; +} + +.fa-deploydog:before { + content: "\f38e"; +} + +.fa-twitch:before { + content: "\f1e8"; +} + +.fa-ravelry:before { + content: "\f2d9"; +} + +.fa-mixer:before { + content: "\e056"; +} + +.fa-square-lastfm:before { + content: "\f203"; +} + +.fa-lastfm-square:before { + content: "\f203"; +} + +.fa-vimeo:before { + content: "\f40a"; +} + +.fa-mendeley:before { + content: "\f7b3"; +} + +.fa-uniregistry:before { + content: "\f404"; +} + +.fa-figma:before { + content: "\f799"; +} + +.fa-creative-commons-remix:before { + content: "\f4ee"; +} + +.fa-cc-amazon-pay:before { + content: "\f42d"; +} + +.fa-dropbox:before { + content: "\f16b"; +} + +.fa-instagram:before { + content: "\f16d"; +} + +.fa-cmplid:before { + content: "\e360"; +} + +.fa-facebook:before { + content: "\f09a"; +} + +.fa-gripfire:before { + content: "\f3ac"; +} + +.fa-jedi-order:before { + content: "\f50e"; +} + +.fa-uikit:before { + content: "\f403"; +} + +.fa-fort-awesome-alt:before { + content: "\f3a3"; +} + +.fa-phabricator:before { + content: "\f3db"; +} + +.fa-ussunnah:before { + content: "\f407"; +} + +.fa-earlybirds:before { + content: "\f39a"; +} + +.fa-trade-federation:before { + content: "\f513"; +} + +.fa-autoprefixer:before { + content: "\f41c"; +} + +.fa-whatsapp:before { + content: "\f232"; +} + +.fa-slideshare:before { + content: "\f1e7"; +} + +.fa-google-play:before { + content: "\f3ab"; +} + +.fa-viadeo:before { + content: "\f2a9"; +} + +.fa-line:before { + content: "\f3c0"; +} + +.fa-google-drive:before { + content: "\f3aa"; +} + +.fa-servicestack:before { + content: "\f3ec"; +} + +.fa-simplybuilt:before { + content: "\f215"; +} + +.fa-bitbucket:before { + content: "\f171"; +} + +.fa-imdb:before { + content: "\f2d8"; +} + +.fa-deezer:before { + content: "\e077"; +} + +.fa-raspberry-pi:before { + content: "\f7bb"; +} + +.fa-jira:before { + content: "\f7b1"; +} + +.fa-docker:before { + content: "\f395"; +} + +.fa-screenpal:before { + content: "\e570"; +} + +.fa-bluetooth:before { + content: "\f293"; +} + +.fa-gitter:before { + content: "\f426"; +} + +.fa-d-and-d:before { + content: "\f38d"; +} + +.fa-microblog:before { + content: "\e01a"; +} + +.fa-cc-diners-club:before { + content: "\f24c"; +} + +.fa-gg-circle:before { + content: "\f261"; +} + +.fa-pied-piper-hat:before { + content: "\f4e5"; +} + +.fa-kickstarter-k:before { + content: "\f3bc"; +} + +.fa-yandex:before { + content: "\f413"; +} + +.fa-readme:before { + content: "\f4d5"; +} + +.fa-html5:before { + content: "\f13b"; +} + +.fa-sellsy:before { + content: "\f213"; +} + +.fa-sass:before { + content: "\f41e"; +} + +.fa-wirsindhandwerk:before { + content: "\e2d0"; +} + +.fa-wsh:before { + content: "\e2d0"; +} + +.fa-buromobelexperte:before { + content: "\f37f"; +} + +.fa-salesforce:before { + content: "\f83b"; +} + +.fa-octopus-deploy:before { + content: "\e082"; +} + +.fa-medapps:before { + content: "\f3c6"; +} + +.fa-ns8:before { + content: "\f3d5"; +} + +.fa-pinterest-p:before { + content: "\f231"; +} + +.fa-apper:before { + content: "\f371"; +} + +.fa-fort-awesome:before { + content: "\f286"; +} + +.fa-waze:before { + content: "\f83f"; +} + +.fa-cc-jcb:before { + content: "\f24b"; +} + +.fa-snapchat:before { + content: "\f2ab"; +} + +.fa-snapchat-ghost:before { + content: "\f2ab"; +} + +.fa-fantasy-flight-games:before { + content: "\f6dc"; +} + +.fa-rust:before { + content: "\e07a"; +} + +.fa-wix:before { + content: "\f5cf"; +} + +.fa-square-behance:before { + content: "\f1b5"; +} + +.fa-behance-square:before { + content: "\f1b5"; +} + +.fa-supple:before { + content: "\f3f9"; +} + +.fa-rebel:before { + content: "\f1d0"; +} + +.fa-css3:before { + content: "\f13c"; +} + +.fa-staylinked:before { + content: "\f3f5"; +} + +.fa-kaggle:before { + content: "\f5fa"; +} + +.fa-space-awesome:before { + content: "\e5ac"; +} + +.fa-deviantart:before { + content: "\f1bd"; +} + +.fa-cpanel:before { + content: "\f388"; +} + +.fa-goodreads-g:before { + content: "\f3a9"; +} + +.fa-square-git:before { + content: "\f1d2"; +} + +.fa-git-square:before { + content: "\f1d2"; +} + +.fa-square-tumblr:before { + content: "\f174"; +} + +.fa-tumblr-square:before { + content: "\f174"; +} + +.fa-trello:before { + content: "\f181"; +} + +.fa-creative-commons-nc-jp:before { + content: "\f4ea"; +} + +.fa-get-pocket:before { + content: "\f265"; +} + +.fa-perbyte:before { + content: "\e083"; +} + +.fa-grunt:before { + content: "\f3ad"; +} + +.fa-weebly:before { + content: "\f5cc"; +} + +.fa-connectdevelop:before { + content: "\f20e"; +} + +.fa-leanpub:before { + content: "\f212"; +} + +.fa-black-tie:before { + content: "\f27e"; +} + +.fa-themeco:before { + content: "\f5c6"; +} + +.fa-python:before { + content: "\f3e2"; +} + +.fa-android:before { + content: "\f17b"; +} + +.fa-bots:before { + content: "\e340"; +} + +.fa-free-code-camp:before { + content: "\f2c5"; +} + +.fa-hornbill:before { + content: "\f592"; +} + +.fa-js:before { + content: "\f3b8"; +} + +.fa-ideal:before { + content: "\e013"; +} + +.fa-git:before { + content: "\f1d3"; +} + +.fa-dev:before { + content: "\f6cc"; +} + +.fa-sketch:before { + content: "\f7c6"; +} + +.fa-yandex-international:before { + content: "\f414"; +} + +.fa-cc-amex:before { + content: "\f1f3"; +} + +.fa-uber:before { + content: "\f402"; +} + +.fa-github:before { + content: "\f09b"; +} + +.fa-php:before { + content: "\f457"; +} + +.fa-alipay:before { + content: "\f642"; +} + +.fa-youtube:before { + content: "\f167"; +} + +.fa-skyatlas:before { + content: "\f216"; +} + +.fa-firefox-browser:before { + content: "\e007"; +} + +.fa-replyd:before { + content: "\f3e6"; +} + +.fa-suse:before { + content: "\f7d6"; +} + +.fa-jenkins:before { + content: "\f3b6"; +} + +.fa-twitter:before { + content: "\f099"; +} + +.fa-rockrms:before { + content: "\f3e9"; +} + +.fa-pinterest:before { + content: "\f0d2"; +} + +.fa-buffer:before { + content: "\f837"; +} + +.fa-npm:before { + content: "\f3d4"; +} + +.fa-yammer:before { + content: "\f840"; +} + +.fa-btc:before { + content: "\f15a"; +} + +.fa-dribbble:before { + content: "\f17d"; +} + +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} + +.fa-internet-explorer:before { + content: "\f26b"; +} + +.fa-stubber:before { + content: "\e5c7"; +} + +.fa-telegram:before { + content: "\f2c6"; +} + +.fa-telegram-plane:before { + content: "\f2c6"; +} + +.fa-old-republic:before { + content: "\f510"; +} + +.fa-odysee:before { + content: "\e5c6"; +} + +.fa-square-whatsapp:before { + content: "\f40c"; +} + +.fa-whatsapp-square:before { + content: "\f40c"; +} + +.fa-node-js:before { + content: "\f3d3"; +} + +.fa-edge-legacy:before { + content: "\e078"; +} + +.fa-slack:before { + content: "\f198"; +} + +.fa-slack-hash:before { + content: "\f198"; +} + +.fa-medrt:before { + content: "\f3c8"; +} + +.fa-usb:before { + content: "\f287"; +} + +.fa-tumblr:before { + content: "\f173"; +} + +.fa-vaadin:before { + content: "\f408"; +} + +.fa-quora:before { + content: "\f2c4"; +} + +.fa-square-x-twitter:before { + content: "\e61a"; +} + +.fa-reacteurope:before { + content: "\f75d"; +} + +.fa-medium:before { + content: "\f23a"; +} + +.fa-medium-m:before { + content: "\f23a"; +} + +.fa-amilia:before { + content: "\f36d"; +} + +.fa-mixcloud:before { + content: "\f289"; +} + +.fa-flipboard:before { + content: "\f44d"; +} + +.fa-viacoin:before { + content: "\f237"; +} + +.fa-critical-role:before { + content: "\f6c9"; +} + +.fa-sitrox:before { + content: "\e44a"; +} + +.fa-discourse:before { + content: "\f393"; +} + +.fa-joomla:before { + content: "\f1aa"; +} + +.fa-mastodon:before { + content: "\f4f6"; +} + +.fa-airbnb:before { + content: "\f834"; +} + +.fa-wolf-pack-battalion:before { + content: "\f514"; +} + +.fa-buy-n-large:before { + content: "\f8a6"; +} + +.fa-gulp:before { + content: "\f3ae"; +} + +.fa-creative-commons-sampling-plus:before { + content: "\f4f1"; +} + +.fa-strava:before { + content: "\f428"; +} + +.fa-ember:before { + content: "\f423"; +} + +.fa-canadian-maple-leaf:before { + content: "\f785"; +} + +.fa-teamspeak:before { + content: "\f4f9"; +} + +.fa-pushed:before { + content: "\f3e1"; +} + +.fa-wordpress-simple:before { + content: "\f411"; +} + +.fa-nutritionix:before { + content: "\f3d6"; +} + +.fa-wodu:before { + content: "\e088"; +} + +.fa-google-pay:before { + content: "\e079"; +} + +.fa-intercom:before { + content: "\f7af"; +} + +.fa-zhihu:before { + content: "\f63f"; +} + +.fa-korvue:before { + content: "\f42f"; +} + +.fa-pix:before { + content: "\e43a"; +} + +.fa-steam-symbol:before { + content: "\f3f6"; +} + +:root, :host { + --fa-style-family-classic: "Font Awesome 6 Free"; + --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; +} + +@font-face { + font-family: "Font Awesome 6 Free"; + font-style: normal; + font-weight: 400; + font-display: block; + src: url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.ttf") format("truetype"); +} +.far, +.fa-regular { + font-weight: 400; +} + +:root, :host { + --fa-style-family-classic: "Font Awesome 6 Free"; + --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; +} + +@font-face { + font-family: "Font Awesome 6 Free"; + font-style: normal; + font-weight: 900; + font-display: block; + src: url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.ttf") format("truetype"); +} +.fas, +.fa-solid { + font-weight: 900; +} + +@font-face { + font-family: "Font Awesome 5 Brands"; + font-display: block; + font-weight: 400; + src: url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.ttf") format("truetype"); +} +@font-face { + font-family: "Font Awesome 5 Free"; + font-display: block; + font-weight: 900; + src: url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.ttf") format("truetype"); +} +@font-face { + font-family: "Font Awesome 5 Free"; + font-display: block; + font-weight: 400; + src: url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.ttf") format("truetype"); +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.ttf") format("truetype"); +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.ttf") format("truetype"); +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.ttf") format("truetype"); + unicode-range: U+F003, U+F006, U+F014, U+F016-F017, U+F01A-F01B, U+F01D, U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088, U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5, U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A, U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E, U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7, U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D, U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA, U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC; +} +@font-face { + font-family: "FontAwesome"; + font-display: block; + src: url("../fonts/fa-v4compatibility.woff2") format("woff2"), url("../fonts/fa-v4compatibility.ttf") format("truetype"); + unicode-range: U+F041, U+F047, U+F065-F066, U+F07D-F07E, U+F080, U+F08B, U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4, U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E, U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F27A; +} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/css/icons.min.css b/dj_backend_server/web/static/assets/css/icons.min.css new file mode 100644 index 00000000..9a739b80 --- /dev/null +++ b/dj_backend_server/web/static/assets/css/icons.min.css @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */.fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands";font-weight:400}.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-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width,2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay, 0s);animation-delay:var(--fa-animation-delay, 0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration, 1s);animation-duration:var(--fa-animation-duration, 1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay, 0s);animation-delay:var(--fa-animation-delay, 0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration, 1s);animation-duration:var(--fa-animation-duration, 1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(0.28,0.84,0.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(0.28,0.84,0.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-delay:var(--fa-animation-delay, 0s);animation-delay:var(--fa-animation-delay, 0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration, 1s);animation-duration:var(--fa-animation-duration, 1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(0.4,0,0.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(0.4,0,0.6,1))}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-delay:var(--fa-animation-delay, 0s);animation-delay:var(--fa-animation-delay, 0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration, 1s);animation-duration:var(--fa-animation-duration, 1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(0.4,0,0.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(0.4,0,0.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay, 0s);animation-delay:var(--fa-animation-delay, 0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration, 1s);animation-duration:var(--fa-animation-duration, 1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-delay:var(--fa-animation-delay, 0s);animation-delay:var(--fa-animation-delay, 0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration, 1s);animation-duration:var(--fa-animation-duration, 1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-delay:var(--fa-animation-delay, 0s);animation-delay:var(--fa-animation-delay, 0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration, 2s);animation-duration:var(--fa-animation-duration, 2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration, 1s);animation-duration:var(--fa-animation-duration, 1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%,100%,64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}}@keyframes fa-bounce{0%,100%,64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity, .4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity, .4)}}@-webkit-keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity, .4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity, .4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}24%,8%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}100%,40%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}24%,8%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}100%,40%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-0::before{content:"0"}.fa-1::before{content:"1"}.fa-2::before{content:"2"}.fa-3::before{content:"3"}.fa-4::before{content:"4"}.fa-5::before{content:"5"}.fa-6::before{content:"6"}.fa-7::before{content:"7"}.fa-8::before{content:"8"}.fa-9::before{content:"9"}.fa-fill-drip::before{content:"\f576"}.fa-arrows-to-circle::before{content:"\e4bd"}.fa-chevron-circle-right::before,.fa-circle-chevron-right::before{content:"\f138"}.fa-at::before{content:"@"}.fa-trash-alt::before,.fa-trash-can::before{content:"\f2ed"}.fa-text-height::before{content:"\f034"}.fa-user-times::before,.fa-user-xmark::before{content:"\f235"}.fa-stethoscope::before{content:"\f0f1"}.fa-comment-alt::before,.fa-message::before{content:"\f27a"}.fa-info::before{content:"\f129"}.fa-compress-alt::before,.fa-down-left-and-up-right-to-center::before{content:"\f422"}.fa-explosion::before{content:"\e4e9"}.fa-file-alt::before,.fa-file-lines::before,.fa-file-text::before{content:"\f15c"}.fa-wave-square::before{content:"\f83e"}.fa-ring::before{content:"\f70b"}.fa-building-un::before{content:"\e4d9"}.fa-dice-three::before{content:"\f527"}.fa-calendar-alt::before,.fa-calendar-days::before{content:"\f073"}.fa-anchor-circle-check::before{content:"\e4aa"}.fa-building-circle-arrow-right::before{content:"\e4d1"}.fa-volleyball-ball::before,.fa-volleyball::before{content:"\f45f"}.fa-arrows-up-to-line::before{content:"\e4c2"}.fa-sort-desc::before,.fa-sort-down::before{content:"\f0dd"}.fa-circle-minus::before,.fa-minus-circle::before{content:"\f056"}.fa-door-open::before{content:"\f52b"}.fa-right-from-bracket::before,.fa-sign-out-alt::before{content:"\f2f5"}.fa-atom::before{content:"\f5d2"}.fa-soap::before{content:"\e06e"}.fa-heart-music-camera-bolt::before,.fa-icons::before{content:"\f86d"}.fa-microphone-alt-slash::before,.fa-microphone-lines-slash::before{content:"\f539"}.fa-bridge-circle-check::before{content:"\e4c9"}.fa-pump-medical::before{content:"\e06a"}.fa-fingerprint::before{content:"\f577"}.fa-hand-point-right::before{content:"\f0a4"}.fa-magnifying-glass-location::before,.fa-search-location::before{content:"\f689"}.fa-forward-step::before,.fa-step-forward::before{content:"\f051"}.fa-face-smile-beam::before,.fa-smile-beam::before{content:"\f5b8"}.fa-flag-checkered::before{content:"\f11e"}.fa-football-ball::before,.fa-football::before{content:"\f44e"}.fa-school-circle-exclamation::before{content:"\e56c"}.fa-crop::before{content:"\f125"}.fa-angle-double-down::before,.fa-angles-down::before{content:"\f103"}.fa-users-rectangle::before{content:"\e594"}.fa-people-roof::before{content:"\e537"}.fa-people-line::before{content:"\e534"}.fa-beer-mug-empty::before,.fa-beer::before{content:"\f0fc"}.fa-diagram-predecessor::before{content:"\e477"}.fa-arrow-up-long::before,.fa-long-arrow-up::before{content:"\f176"}.fa-burn::before,.fa-fire-flame-simple::before{content:"\f46a"}.fa-male::before,.fa-person::before{content:"\f183"}.fa-laptop::before{content:"\f109"}.fa-file-csv::before{content:"\f6dd"}.fa-menorah::before{content:"\f676"}.fa-truck-plane::before{content:"\e58f"}.fa-record-vinyl::before{content:"\f8d9"}.fa-face-grin-stars::before,.fa-grin-stars::before{content:"\f587"}.fa-bong::before{content:"\f55c"}.fa-pastafarianism::before,.fa-spaghetti-monster-flying::before{content:"\f67b"}.fa-arrow-down-up-across-line::before{content:"\e4af"}.fa-spoon::before,.fa-utensil-spoon::before{content:"\f2e5"}.fa-jar-wheat::before{content:"\e517"}.fa-envelopes-bulk::before,.fa-mail-bulk::before{content:"\f674"}.fa-file-circle-exclamation::before{content:"\e4eb"}.fa-circle-h::before,.fa-hospital-symbol::before{content:"\f47e"}.fa-pager::before{content:"\f815"}.fa-address-book::before,.fa-contact-book::before{content:"\f2b9"}.fa-strikethrough::before{content:"\f0cc"}.fa-k::before{content:"K"}.fa-landmark-flag::before{content:"\e51c"}.fa-pencil-alt::before,.fa-pencil::before{content:"\f303"}.fa-backward::before{content:"\f04a"}.fa-caret-right::before{content:"\f0da"}.fa-comments::before{content:"\f086"}.fa-file-clipboard::before,.fa-paste::before{content:"\f0ea"}.fa-code-pull-request::before{content:"\e13c"}.fa-clipboard-list::before{content:"\f46d"}.fa-truck-loading::before,.fa-truck-ramp-box::before{content:"\f4de"}.fa-user-check::before{content:"\f4fc"}.fa-vial-virus::before{content:"\e597"}.fa-sheet-plastic::before{content:"\e571"}.fa-blog::before{content:"\f781"}.fa-user-ninja::before{content:"\f504"}.fa-person-arrow-up-from-line::before{content:"\e539"}.fa-scroll-torah::before,.fa-torah::before{content:"\f6a0"}.fa-broom-ball::before,.fa-quidditch-broom-ball::before,.fa-quidditch::before{content:"\f458"}.fa-toggle-off::before{content:"\f204"}.fa-archive::before,.fa-box-archive::before{content:"\f187"}.fa-person-drowning::before{content:"\e545"}.fa-arrow-down-9-1::before,.fa-sort-numeric-desc::before,.fa-sort-numeric-down-alt::before{content:"\f886"}.fa-face-grin-tongue-squint::before,.fa-grin-tongue-squint::before{content:"\f58a"}.fa-spray-can::before{content:"\f5bd"}.fa-truck-monster::before{content:"\f63b"}.fa-w::before{content:"W"}.fa-earth-africa::before,.fa-globe-africa::before{content:"\f57c"}.fa-rainbow::before{content:"\f75b"}.fa-circle-notch::before{content:"\f1ce"}.fa-tablet-alt::before,.fa-tablet-screen-button::before{content:"\f3fa"}.fa-paw::before{content:"\f1b0"}.fa-cloud::before{content:"\f0c2"}.fa-trowel-bricks::before{content:"\e58a"}.fa-face-flushed::before,.fa-flushed::before{content:"\f579"}.fa-hospital-user::before{content:"\f80d"}.fa-tent-arrow-left-right::before{content:"\e57f"}.fa-gavel::before,.fa-legal::before{content:"\f0e3"}.fa-binoculars::before{content:"\f1e5"}.fa-microphone-slash::before{content:"\f131"}.fa-box-tissue::before{content:"\e05b"}.fa-motorcycle::before{content:"\f21c"}.fa-bell-concierge::before,.fa-concierge-bell::before{content:"\f562"}.fa-pen-ruler::before,.fa-pencil-ruler::before{content:"\f5ae"}.fa-people-arrows-left-right::before,.fa-people-arrows::before{content:"\e068"}.fa-mars-and-venus-burst::before{content:"\e523"}.fa-caret-square-right::before,.fa-square-caret-right::before{content:"\f152"}.fa-cut::before,.fa-scissors::before{content:"\f0c4"}.fa-sun-plant-wilt::before{content:"\e57a"}.fa-toilets-portable::before{content:"\e584"}.fa-hockey-puck::before{content:"\f453"}.fa-table::before{content:"\f0ce"}.fa-magnifying-glass-arrow-right::before{content:"\e521"}.fa-digital-tachograph::before,.fa-tachograph-digital::before{content:"\f566"}.fa-users-slash::before{content:"\e073"}.fa-clover::before{content:"\e139"}.fa-mail-reply::before,.fa-reply::before{content:"\f3e5"}.fa-star-and-crescent::before{content:"\f699"}.fa-house-fire::before{content:"\e50c"}.fa-minus-square::before,.fa-square-minus::before{content:"\f146"}.fa-helicopter::before{content:"\f533"}.fa-compass::before{content:"\f14e"}.fa-caret-square-down::before,.fa-square-caret-down::before{content:"\f150"}.fa-file-circle-question::before{content:"\e4ef"}.fa-laptop-code::before{content:"\f5fc"}.fa-swatchbook::before{content:"\f5c3"}.fa-prescription-bottle::before{content:"\f485"}.fa-bars::before,.fa-navicon::before{content:"\f0c9"}.fa-people-group::before{content:"\e533"}.fa-hourglass-3::before,.fa-hourglass-end::before{content:"\f253"}.fa-heart-broken::before,.fa-heart-crack::before{content:"\f7a9"}.fa-external-link-square-alt::before,.fa-square-up-right::before{content:"\f360"}.fa-face-kiss-beam::before,.fa-kiss-beam::before{content:"\f597"}.fa-film::before{content:"\f008"}.fa-ruler-horizontal::before{content:"\f547"}.fa-people-robbery::before{content:"\e536"}.fa-lightbulb::before{content:"\f0eb"}.fa-caret-left::before{content:"\f0d9"}.fa-circle-exclamation::before,.fa-exclamation-circle::before{content:"\f06a"}.fa-school-circle-xmark::before{content:"\e56d"}.fa-arrow-right-from-bracket::before,.fa-sign-out::before{content:"\f08b"}.fa-chevron-circle-down::before,.fa-circle-chevron-down::before{content:"\f13a"}.fa-unlock-alt::before,.fa-unlock-keyhole::before{content:"\f13e"}.fa-cloud-showers-heavy::before{content:"\f740"}.fa-headphones-alt::before,.fa-headphones-simple::before{content:"\f58f"}.fa-sitemap::before{content:"\f0e8"}.fa-circle-dollar-to-slot::before,.fa-donate::before{content:"\f4b9"}.fa-memory::before{content:"\f538"}.fa-road-spikes::before{content:"\e568"}.fa-fire-burner::before{content:"\e4f1"}.fa-flag::before{content:"\f024"}.fa-hanukiah::before{content:"\f6e6"}.fa-feather::before{content:"\f52d"}.fa-volume-down::before,.fa-volume-low::before{content:"\f027"}.fa-comment-slash::before{content:"\f4b3"}.fa-cloud-sun-rain::before{content:"\f743"}.fa-compress::before{content:"\f066"}.fa-wheat-alt::before,.fa-wheat-awn::before{content:"\e2cd"}.fa-ankh::before{content:"\f644"}.fa-hands-holding-child::before{content:"\e4fa"}.fa-asterisk::before{content:"*"}.fa-check-square::before,.fa-square-check::before{content:"\f14a"}.fa-peseta-sign::before{content:"\e221"}.fa-header::before,.fa-heading::before{content:"\f1dc"}.fa-ghost::before{content:"\f6e2"}.fa-list-squares::before,.fa-list::before{content:"\f03a"}.fa-phone-square-alt::before,.fa-square-phone-flip::before{content:"\f87b"}.fa-cart-plus::before{content:"\f217"}.fa-gamepad::before{content:"\f11b"}.fa-circle-dot::before,.fa-dot-circle::before{content:"\f192"}.fa-dizzy::before,.fa-face-dizzy::before{content:"\f567"}.fa-egg::before{content:"\f7fb"}.fa-house-medical-circle-xmark::before{content:"\e513"}.fa-campground::before{content:"\f6bb"}.fa-folder-plus::before{content:"\f65e"}.fa-futbol-ball::before,.fa-futbol::before,.fa-soccer-ball::before{content:"\f1e3"}.fa-paint-brush::before,.fa-paintbrush::before{content:"\f1fc"}.fa-lock::before{content:"\f023"}.fa-gas-pump::before{content:"\f52f"}.fa-hot-tub-person::before,.fa-hot-tub::before{content:"\f593"}.fa-map-location::before,.fa-map-marked::before{content:"\f59f"}.fa-house-flood-water::before{content:"\e50e"}.fa-tree::before{content:"\f1bb"}.fa-bridge-lock::before{content:"\e4cc"}.fa-sack-dollar::before{content:"\f81d"}.fa-edit::before,.fa-pen-to-square::before{content:"\f044"}.fa-car-side::before{content:"\f5e4"}.fa-share-alt::before,.fa-share-nodes::before{content:"\f1e0"}.fa-heart-circle-minus::before{content:"\e4ff"}.fa-hourglass-2::before,.fa-hourglass-half::before{content:"\f252"}.fa-microscope::before{content:"\f610"}.fa-sink::before{content:"\e06d"}.fa-bag-shopping::before,.fa-shopping-bag::before{content:"\f290"}.fa-arrow-down-z-a::before,.fa-sort-alpha-desc::before,.fa-sort-alpha-down-alt::before{content:"\f881"}.fa-mitten::before{content:"\f7b5"}.fa-person-rays::before{content:"\e54d"}.fa-users::before{content:"\f0c0"}.fa-eye-slash::before{content:"\f070"}.fa-flask-vial::before{content:"\e4f3"}.fa-hand-paper::before,.fa-hand::before{content:"\f256"}.fa-om::before{content:"\f679"}.fa-worm::before{content:"\e599"}.fa-house-circle-xmark::before{content:"\e50b"}.fa-plug::before{content:"\f1e6"}.fa-chevron-up::before{content:"\f077"}.fa-hand-spock::before{content:"\f259"}.fa-stopwatch::before{content:"\f2f2"}.fa-face-kiss::before,.fa-kiss::before{content:"\f596"}.fa-bridge-circle-xmark::before{content:"\e4cb"}.fa-face-grin-tongue::before,.fa-grin-tongue::before{content:"\f589"}.fa-chess-bishop::before{content:"\f43a"}.fa-face-grin-wink::before,.fa-grin-wink::before{content:"\f58c"}.fa-deaf::before,.fa-deafness::before,.fa-ear-deaf::before,.fa-hard-of-hearing::before{content:"\f2a4"}.fa-road-circle-check::before{content:"\e564"}.fa-dice-five::before{content:"\f523"}.fa-rss-square::before,.fa-square-rss::before{content:"\f143"}.fa-land-mine-on::before{content:"\e51b"}.fa-i-cursor::before{content:"\f246"}.fa-stamp::before{content:"\f5bf"}.fa-stairs::before{content:"\e289"}.fa-i::before{content:"I"}.fa-hryvnia-sign::before,.fa-hryvnia::before{content:"\f6f2"}.fa-pills::before{content:"\f484"}.fa-face-grin-wide::before,.fa-grin-alt::before{content:"\f581"}.fa-tooth::before{content:"\f5c9"}.fa-v::before{content:"V"}.fa-bangladeshi-taka-sign::before{content:"\e2e6"}.fa-bicycle::before{content:"\f206"}.fa-rod-asclepius::before,.fa-rod-snake::before,.fa-staff-aesculapius::before,.fa-staff-snake::before{content:"\e579"}.fa-head-side-cough-slash::before{content:"\e062"}.fa-ambulance::before,.fa-truck-medical::before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation::before{content:"\e598"}.fa-snowman::before{content:"\f7d0"}.fa-mortar-pestle::before{content:"\f5a7"}.fa-road-barrier::before{content:"\e562"}.fa-school::before{content:"\f549"}.fa-igloo::before{content:"\f7ae"}.fa-joint::before{content:"\f595"}.fa-angle-right::before{content:"\f105"}.fa-horse::before{content:"\f6f0"}.fa-q::before{content:"Q"}.fa-g::before{content:"G"}.fa-notes-medical::before{content:"\f481"}.fa-temperature-2::before,.fa-temperature-half::before,.fa-thermometer-2::before,.fa-thermometer-half::before{content:"\f2c9"}.fa-dong-sign::before{content:"\e169"}.fa-capsules::before{content:"\f46b"}.fa-poo-bolt::before,.fa-poo-storm::before{content:"\f75a"}.fa-face-frown-open::before,.fa-frown-open::before{content:"\f57a"}.fa-hand-point-up::before{content:"\f0a6"}.fa-money-bill::before{content:"\f0d6"}.fa-bookmark::before{content:"\f02e"}.fa-align-justify::before{content:"\f039"}.fa-umbrella-beach::before{content:"\f5ca"}.fa-helmet-un::before{content:"\e503"}.fa-bullseye::before{content:"\f140"}.fa-bacon::before{content:"\f7e5"}.fa-hand-point-down::before{content:"\f0a7"}.fa-arrow-up-from-bracket::before{content:"\e09a"}.fa-folder-blank::before,.fa-folder::before{content:"\f07b"}.fa-file-medical-alt::before,.fa-file-waveform::before{content:"\f478"}.fa-radiation::before{content:"\f7b9"}.fa-chart-simple::before{content:"\e473"}.fa-mars-stroke::before{content:"\f229"}.fa-vial::before{content:"\f492"}.fa-dashboard::before,.fa-gauge-med::before,.fa-gauge::before,.fa-tachometer-alt-average::before{content:"\f624"}.fa-magic-wand-sparkles::before,.fa-wand-magic-sparkles::before{content:"\e2ca"}.fa-e::before{content:"E"}.fa-pen-alt::before,.fa-pen-clip::before{content:"\f305"}.fa-bridge-circle-exclamation::before{content:"\e4ca"}.fa-user::before{content:"\f007"}.fa-school-circle-check::before{content:"\e56b"}.fa-dumpster::before{content:"\f793"}.fa-shuttle-van::before,.fa-van-shuttle::before{content:"\f5b6"}.fa-building-user::before{content:"\e4da"}.fa-caret-square-left::before,.fa-square-caret-left::before{content:"\f191"}.fa-highlighter::before{content:"\f591"}.fa-key::before{content:"\f084"}.fa-bullhorn::before{content:"\f0a1"}.fa-globe::before{content:"\f0ac"}.fa-synagogue::before{content:"\f69b"}.fa-person-half-dress::before{content:"\e548"}.fa-road-bridge::before{content:"\e563"}.fa-location-arrow::before{content:"\f124"}.fa-c::before{content:"C"}.fa-tablet-button::before{content:"\f10a"}.fa-building-lock::before{content:"\e4d6"}.fa-pizza-slice::before{content:"\f818"}.fa-money-bill-wave::before{content:"\f53a"}.fa-area-chart::before,.fa-chart-area::before{content:"\f1fe"}.fa-house-flag::before{content:"\e50d"}.fa-person-circle-minus::before{content:"\e540"}.fa-ban::before,.fa-cancel::before{content:"\f05e"}.fa-camera-rotate::before{content:"\e0d8"}.fa-air-freshener::before,.fa-spray-can-sparkles::before{content:"\f5d0"}.fa-star::before{content:"\f005"}.fa-repeat::before{content:"\f363"}.fa-cross::before{content:"\f654"}.fa-box::before{content:"\f466"}.fa-venus-mars::before{content:"\f228"}.fa-arrow-pointer::before,.fa-mouse-pointer::before{content:"\f245"}.fa-expand-arrows-alt::before,.fa-maximize::before{content:"\f31e"}.fa-charging-station::before{content:"\f5e7"}.fa-shapes::before,.fa-triangle-circle-square::before{content:"\f61f"}.fa-random::before,.fa-shuffle::before{content:"\f074"}.fa-person-running::before,.fa-running::before{content:"\f70c"}.fa-mobile-retro::before{content:"\e527"}.fa-grip-lines-vertical::before{content:"\f7a5"}.fa-spider::before{content:"\f717"}.fa-hands-bound::before{content:"\e4f9"}.fa-file-invoice-dollar::before{content:"\f571"}.fa-plane-circle-exclamation::before{content:"\e556"}.fa-x-ray::before{content:"\f497"}.fa-spell-check::before{content:"\f891"}.fa-slash::before{content:"\f715"}.fa-computer-mouse::before,.fa-mouse::before{content:"\f8cc"}.fa-arrow-right-to-bracket::before,.fa-sign-in::before{content:"\f090"}.fa-shop-slash::before,.fa-store-alt-slash::before{content:"\e070"}.fa-server::before{content:"\f233"}.fa-virus-covid-slash::before{content:"\e4a9"}.fa-shop-lock::before{content:"\e4a5"}.fa-hourglass-1::before,.fa-hourglass-start::before{content:"\f251"}.fa-blender-phone::before{content:"\f6b6"}.fa-building-wheat::before{content:"\e4db"}.fa-person-breastfeeding::before{content:"\e53a"}.fa-right-to-bracket::before,.fa-sign-in-alt::before{content:"\f2f6"}.fa-venus::before{content:"\f221"}.fa-passport::before{content:"\f5ab"}.fa-heart-pulse::before,.fa-heartbeat::before{content:"\f21e"}.fa-people-carry-box::before,.fa-people-carry::before{content:"\f4ce"}.fa-temperature-high::before{content:"\f769"}.fa-microchip::before{content:"\f2db"}.fa-crown::before{content:"\f521"}.fa-weight-hanging::before{content:"\f5cd"}.fa-xmarks-lines::before{content:"\e59a"}.fa-file-prescription::before{content:"\f572"}.fa-weight-scale::before,.fa-weight::before{content:"\f496"}.fa-user-friends::before,.fa-user-group::before{content:"\f500"}.fa-arrow-up-a-z::before,.fa-sort-alpha-up::before{content:"\f15e"}.fa-chess-knight::before{content:"\f441"}.fa-face-laugh-squint::before,.fa-laugh-squint::before{content:"\f59b"}.fa-wheelchair::before{content:"\f193"}.fa-arrow-circle-up::before,.fa-circle-arrow-up::before{content:"\f0aa"}.fa-toggle-on::before{content:"\f205"}.fa-person-walking::before,.fa-walking::before{content:"\f554"}.fa-l::before{content:"L"}.fa-fire::before{content:"\f06d"}.fa-bed-pulse::before,.fa-procedures::before{content:"\f487"}.fa-shuttle-space::before,.fa-space-shuttle::before{content:"\f197"}.fa-face-laugh::before,.fa-laugh::before{content:"\f599"}.fa-folder-open::before{content:"\f07c"}.fa-heart-circle-plus::before{content:"\e500"}.fa-code-fork::before{content:"\e13b"}.fa-city::before{content:"\f64f"}.fa-microphone-alt::before,.fa-microphone-lines::before{content:"\f3c9"}.fa-pepper-hot::before{content:"\f816"}.fa-unlock::before{content:"\f09c"}.fa-colon-sign::before{content:"\e140"}.fa-headset::before{content:"\f590"}.fa-store-slash::before{content:"\e071"}.fa-road-circle-xmark::before{content:"\e566"}.fa-user-minus::before{content:"\f503"}.fa-mars-stroke-up::before,.fa-mars-stroke-v::before{content:"\f22a"}.fa-champagne-glasses::before,.fa-glass-cheers::before{content:"\f79f"}.fa-clipboard::before{content:"\f328"}.fa-house-circle-exclamation::before{content:"\e50a"}.fa-file-arrow-up::before,.fa-file-upload::before{content:"\f574"}.fa-wifi-3::before,.fa-wifi-strong::before,.fa-wifi::before{content:"\f1eb"}.fa-bath::before,.fa-bathtub::before{content:"\f2cd"}.fa-underline::before{content:"\f0cd"}.fa-user-edit::before,.fa-user-pen::before{content:"\f4ff"}.fa-signature::before{content:"\f5b7"}.fa-stroopwafel::before{content:"\f551"}.fa-bold::before{content:"\f032"}.fa-anchor-lock::before{content:"\e4ad"}.fa-building-ngo::before{content:"\e4d7"}.fa-manat-sign::before{content:"\e1d5"}.fa-not-equal::before{content:"\f53e"}.fa-border-style::before,.fa-border-top-left::before{content:"\f853"}.fa-map-location-dot::before,.fa-map-marked-alt::before{content:"\f5a0"}.fa-jedi::before{content:"\f669"}.fa-poll::before,.fa-square-poll-vertical::before{content:"\f681"}.fa-mug-hot::before{content:"\f7b6"}.fa-battery-car::before,.fa-car-battery::before{content:"\f5df"}.fa-gift::before{content:"\f06b"}.fa-dice-two::before{content:"\f528"}.fa-chess-queen::before{content:"\f445"}.fa-glasses::before{content:"\f530"}.fa-chess-board::before{content:"\f43c"}.fa-building-circle-check::before{content:"\e4d2"}.fa-person-chalkboard::before{content:"\e53d"}.fa-mars-stroke-h::before,.fa-mars-stroke-right::before{content:"\f22b"}.fa-hand-back-fist::before,.fa-hand-rock::before{content:"\f255"}.fa-caret-square-up::before,.fa-square-caret-up::before{content:"\f151"}.fa-cloud-showers-water::before{content:"\e4e4"}.fa-bar-chart::before,.fa-chart-bar::before{content:"\f080"}.fa-hands-bubbles::before,.fa-hands-wash::before{content:"\e05e"}.fa-less-than-equal::before{content:"\f537"}.fa-train::before{content:"\f238"}.fa-eye-low-vision::before,.fa-low-vision::before{content:"\f2a8"}.fa-crow::before{content:"\f520"}.fa-sailboat::before{content:"\e445"}.fa-window-restore::before{content:"\f2d2"}.fa-plus-square::before,.fa-square-plus::before{content:"\f0fe"}.fa-torii-gate::before{content:"\f6a1"}.fa-frog::before{content:"\f52e"}.fa-bucket::before{content:"\e4cf"}.fa-image::before{content:"\f03e"}.fa-microphone::before{content:"\f130"}.fa-cow::before{content:"\f6c8"}.fa-caret-up::before{content:"\f0d8"}.fa-screwdriver::before{content:"\f54a"}.fa-folder-closed::before{content:"\e185"}.fa-house-tsunami::before{content:"\e515"}.fa-square-nfi::before{content:"\e576"}.fa-arrow-up-from-ground-water::before{content:"\e4b5"}.fa-glass-martini-alt::before,.fa-martini-glass::before{content:"\f57b"}.fa-rotate-back::before,.fa-rotate-backward::before,.fa-rotate-left::before,.fa-undo-alt::before{content:"\f2ea"}.fa-columns::before,.fa-table-columns::before{content:"\f0db"}.fa-lemon::before{content:"\f094"}.fa-head-side-mask::before{content:"\e063"}.fa-handshake::before{content:"\f2b5"}.fa-gem::before{content:"\f3a5"}.fa-dolly-box::before,.fa-dolly::before{content:"\f472"}.fa-smoking::before{content:"\f48d"}.fa-compress-arrows-alt::before,.fa-minimize::before{content:"\f78c"}.fa-monument::before{content:"\f5a6"}.fa-snowplow::before{content:"\f7d2"}.fa-angle-double-right::before,.fa-angles-right::before{content:"\f101"}.fa-cannabis::before{content:"\f55f"}.fa-circle-play::before,.fa-play-circle::before{content:"\f144"}.fa-tablets::before{content:"\f490"}.fa-ethernet::before{content:"\f796"}.fa-eur::before,.fa-euro-sign::before,.fa-euro::before{content:"\f153"}.fa-chair::before{content:"\f6c0"}.fa-check-circle::before,.fa-circle-check::before{content:"\f058"}.fa-circle-stop::before,.fa-stop-circle::before{content:"\f28d"}.fa-compass-drafting::before,.fa-drafting-compass::before{content:"\f568"}.fa-plate-wheat::before{content:"\e55a"}.fa-icicles::before{content:"\f7ad"}.fa-person-shelter::before{content:"\e54f"}.fa-neuter::before{content:"\f22c"}.fa-id-badge::before{content:"\f2c1"}.fa-marker::before{content:"\f5a1"}.fa-face-laugh-beam::before,.fa-laugh-beam::before{content:"\f59a"}.fa-helicopter-symbol::before{content:"\e502"}.fa-universal-access::before{content:"\f29a"}.fa-chevron-circle-up::before,.fa-circle-chevron-up::before{content:"\f139"}.fa-lari-sign::before{content:"\e1c8"}.fa-volcano::before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right::before{content:"\e553"}.fa-gbp::before,.fa-pound-sign::before,.fa-sterling-sign::before{content:"\f154"}.fa-viruses::before{content:"\e076"}.fa-square-person-confined::before{content:"\e577"}.fa-user-tie::before{content:"\f508"}.fa-arrow-down-long::before,.fa-long-arrow-down::before{content:"\f175"}.fa-tent-arrow-down-to-line::before{content:"\e57e"}.fa-certificate::before{content:"\f0a3"}.fa-mail-reply-all::before,.fa-reply-all::before{content:"\f122"}.fa-suitcase::before{content:"\f0f2"}.fa-person-skating::before,.fa-skating::before{content:"\f7c5"}.fa-filter-circle-dollar::before,.fa-funnel-dollar::before{content:"\f662"}.fa-camera-retro::before{content:"\f083"}.fa-arrow-circle-down::before,.fa-circle-arrow-down::before{content:"\f0ab"}.fa-arrow-right-to-file::before,.fa-file-import::before{content:"\f56f"}.fa-external-link-square::before,.fa-square-arrow-up-right::before{content:"\f14c"}.fa-box-open::before{content:"\f49e"}.fa-scroll::before{content:"\f70e"}.fa-spa::before{content:"\f5bb"}.fa-location-pin-lock::before{content:"\e51f"}.fa-pause::before{content:"\f04c"}.fa-hill-avalanche::before{content:"\e507"}.fa-temperature-0::before,.fa-temperature-empty::before,.fa-thermometer-0::before,.fa-thermometer-empty::before{content:"\f2cb"}.fa-bomb::before{content:"\f1e2"}.fa-registered::before{content:"\f25d"}.fa-address-card::before,.fa-contact-card::before,.fa-vcard::before{content:"\f2bb"}.fa-balance-scale-right::before,.fa-scale-unbalanced-flip::before{content:"\f516"}.fa-subscript::before{content:"\f12c"}.fa-diamond-turn-right::before,.fa-directions::before{content:"\f5eb"}.fa-burst::before{content:"\e4dc"}.fa-house-laptop::before,.fa-laptop-house::before{content:"\e066"}.fa-face-tired::before,.fa-tired::before{content:"\f5c8"}.fa-money-bills::before{content:"\e1f3"}.fa-smog::before{content:"\f75f"}.fa-crutch::before{content:"\f7f7"}.fa-cloud-arrow-up::before,.fa-cloud-upload-alt::before,.fa-cloud-upload::before{content:"\f0ee"}.fa-palette::before{content:"\f53f"}.fa-arrows-turn-right::before{content:"\e4c0"}.fa-vest::before{content:"\e085"}.fa-ferry::before{content:"\e4ea"}.fa-arrows-down-to-people::before{content:"\e4b9"}.fa-seedling::before,.fa-sprout::before{content:"\f4d8"}.fa-arrows-alt-h::before,.fa-left-right::before{content:"\f337"}.fa-boxes-packing::before{content:"\e4c7"}.fa-arrow-circle-left::before,.fa-circle-arrow-left::before{content:"\f0a8"}.fa-group-arrows-rotate::before{content:"\e4f6"}.fa-bowl-food::before{content:"\e4c6"}.fa-candy-cane::before{content:"\f786"}.fa-arrow-down-wide-short::before,.fa-sort-amount-asc::before,.fa-sort-amount-down::before{content:"\f160"}.fa-cloud-bolt::before,.fa-thunderstorm::before{content:"\f76c"}.fa-remove-format::before,.fa-text-slash::before{content:"\f87d"}.fa-face-smile-wink::before,.fa-smile-wink::before{content:"\f4da"}.fa-file-word::before{content:"\f1c2"}.fa-file-powerpoint::before{content:"\f1c4"}.fa-arrows-h::before,.fa-arrows-left-right::before{content:"\f07e"}.fa-house-lock::before{content:"\e510"}.fa-cloud-arrow-down::before,.fa-cloud-download-alt::before,.fa-cloud-download::before{content:"\f0ed"}.fa-children::before{content:"\e4e1"}.fa-blackboard::before,.fa-chalkboard::before{content:"\f51b"}.fa-user-alt-slash::before,.fa-user-large-slash::before{content:"\f4fa"}.fa-envelope-open::before{content:"\f2b6"}.fa-handshake-alt-slash::before,.fa-handshake-simple-slash::before{content:"\e05f"}.fa-mattress-pillow::before{content:"\e525"}.fa-guarani-sign::before{content:"\e19a"}.fa-arrows-rotate::before,.fa-refresh::before,.fa-sync::before{content:"\f021"}.fa-fire-extinguisher::before{content:"\f134"}.fa-cruzeiro-sign::before{content:"\e152"}.fa-greater-than-equal::before{content:"\f532"}.fa-shield-alt::before,.fa-shield-halved::before{content:"\f3ed"}.fa-atlas::before,.fa-book-atlas::before{content:"\f558"}.fa-virus::before{content:"\e074"}.fa-envelope-circle-check::before{content:"\e4e8"}.fa-layer-group::before{content:"\f5fd"}.fa-arrows-to-dot::before{content:"\e4be"}.fa-archway::before{content:"\f557"}.fa-heart-circle-check::before{content:"\e4fd"}.fa-house-chimney-crack::before,.fa-house-damage::before{content:"\f6f1"}.fa-file-archive::before,.fa-file-zipper::before{content:"\f1c6"}.fa-square::before{content:"\f0c8"}.fa-glass-martini::before,.fa-martini-glass-empty::before{content:"\f000"}.fa-couch::before{content:"\f4b8"}.fa-cedi-sign::before{content:"\e0df"}.fa-italic::before{content:"\f033"}.fa-church::before{content:"\f51d"}.fa-comments-dollar::before{content:"\f653"}.fa-democrat::before{content:"\f747"}.fa-z::before{content:"Z"}.fa-person-skiing::before,.fa-skiing::before{content:"\f7c9"}.fa-road-lock::before{content:"\e567"}.fa-a::before{content:"A"}.fa-temperature-arrow-down::before,.fa-temperature-down::before{content:"\e03f"}.fa-feather-alt::before,.fa-feather-pointed::before{content:"\f56b"}.fa-p::before{content:"P"}.fa-snowflake::before{content:"\f2dc"}.fa-newspaper::before{content:"\f1ea"}.fa-ad::before,.fa-rectangle-ad::before{content:"\f641"}.fa-arrow-circle-right::before,.fa-circle-arrow-right::before{content:"\f0a9"}.fa-filter-circle-xmark::before{content:"\e17b"}.fa-locust::before{content:"\e520"}.fa-sort::before,.fa-unsorted::before{content:"\f0dc"}.fa-list-1-2::before,.fa-list-numeric::before,.fa-list-ol::before{content:"\f0cb"}.fa-person-dress-burst::before{content:"\e544"}.fa-money-check-alt::before,.fa-money-check-dollar::before{content:"\f53d"}.fa-vector-square::before{content:"\f5cb"}.fa-bread-slice::before{content:"\f7ec"}.fa-language::before{content:"\f1ab"}.fa-face-kiss-wink-heart::before,.fa-kiss-wink-heart::before{content:"\f598"}.fa-filter::before{content:"\f0b0"}.fa-question::before{content:"?"}.fa-file-signature::before{content:"\f573"}.fa-arrows-alt::before,.fa-up-down-left-right::before{content:"\f0b2"}.fa-house-chimney-user::before{content:"\e065"}.fa-hand-holding-heart::before{content:"\f4be"}.fa-puzzle-piece::before{content:"\f12e"}.fa-money-check::before{content:"\f53c"}.fa-star-half-alt::before,.fa-star-half-stroke::before{content:"\f5c0"}.fa-code::before{content:"\f121"}.fa-glass-whiskey::before,.fa-whiskey-glass::before{content:"\f7a0"}.fa-building-circle-exclamation::before{content:"\e4d3"}.fa-magnifying-glass-chart::before{content:"\e522"}.fa-arrow-up-right-from-square::before,.fa-external-link::before{content:"\f08e"}.fa-cubes-stacked::before{content:"\e4e6"}.fa-krw::before,.fa-won-sign::before,.fa-won::before{content:"\f159"}.fa-virus-covid::before{content:"\e4a8"}.fa-austral-sign::before{content:"\e0a9"}.fa-f::before{content:"F"}.fa-leaf::before{content:"\f06c"}.fa-road::before{content:"\f018"}.fa-cab::before,.fa-taxi::before{content:"\f1ba"}.fa-person-circle-plus::before{content:"\e541"}.fa-chart-pie::before,.fa-pie-chart::before{content:"\f200"}.fa-bolt-lightning::before{content:"\e0b7"}.fa-sack-xmark::before{content:"\e56a"}.fa-file-excel::before{content:"\f1c3"}.fa-file-contract::before{content:"\f56c"}.fa-fish-fins::before{content:"\e4f2"}.fa-building-flag::before{content:"\e4d5"}.fa-face-grin-beam::before,.fa-grin-beam::before{content:"\f582"}.fa-object-ungroup::before{content:"\f248"}.fa-poop::before{content:"\f619"}.fa-location-pin::before,.fa-map-marker::before{content:"\f041"}.fa-kaaba::before{content:"\f66b"}.fa-toilet-paper::before{content:"\f71e"}.fa-hard-hat::before,.fa-hat-hard::before,.fa-helmet-safety::before{content:"\f807"}.fa-eject::before{content:"\f052"}.fa-arrow-alt-circle-right::before,.fa-circle-right::before{content:"\f35a"}.fa-plane-circle-check::before{content:"\e555"}.fa-face-rolling-eyes::before,.fa-meh-rolling-eyes::before{content:"\f5a5"}.fa-object-group::before{content:"\f247"}.fa-chart-line::before,.fa-line-chart::before{content:"\f201"}.fa-mask-ventilator::before{content:"\e524"}.fa-arrow-right::before{content:"\f061"}.fa-map-signs::before,.fa-signs-post::before{content:"\f277"}.fa-cash-register::before{content:"\f788"}.fa-person-circle-question::before{content:"\e542"}.fa-h::before{content:"H"}.fa-tarp::before{content:"\e57b"}.fa-screwdriver-wrench::before,.fa-tools::before{content:"\f7d9"}.fa-arrows-to-eye::before{content:"\e4bf"}.fa-plug-circle-bolt::before{content:"\e55b"}.fa-heart::before{content:"\f004"}.fa-mars-and-venus::before{content:"\f224"}.fa-home-user::before,.fa-house-user::before{content:"\e1b0"}.fa-dumpster-fire::before{content:"\f794"}.fa-house-crack::before{content:"\e3b1"}.fa-cocktail::before,.fa-martini-glass-citrus::before{content:"\f561"}.fa-face-surprise::before,.fa-surprise::before{content:"\f5c2"}.fa-bottle-water::before{content:"\e4c5"}.fa-circle-pause::before,.fa-pause-circle::before{content:"\f28b"}.fa-toilet-paper-slash::before{content:"\e072"}.fa-apple-alt::before,.fa-apple-whole::before{content:"\f5d1"}.fa-kitchen-set::before{content:"\e51a"}.fa-r::before{content:"R"}.fa-temperature-1::before,.fa-temperature-quarter::before,.fa-thermometer-1::before,.fa-thermometer-quarter::before{content:"\f2ca"}.fa-cube::before{content:"\f1b2"}.fa-bitcoin-sign::before{content:"\e0b4"}.fa-shield-dog::before{content:"\e573"}.fa-solar-panel::before{content:"\f5ba"}.fa-lock-open::before{content:"\f3c1"}.fa-elevator::before{content:"\e16d"}.fa-money-bill-transfer::before{content:"\e528"}.fa-money-bill-trend-up::before{content:"\e529"}.fa-house-flood-water-circle-arrow-right::before{content:"\e50f"}.fa-poll-h::before,.fa-square-poll-horizontal::before{content:"\f682"}.fa-circle::before{content:"\f111"}.fa-backward-fast::before,.fa-fast-backward::before{content:"\f049"}.fa-recycle::before{content:"\f1b8"}.fa-user-astronaut::before{content:"\f4fb"}.fa-plane-slash::before{content:"\e069"}.fa-trademark::before{content:"\f25c"}.fa-basketball-ball::before,.fa-basketball::before{content:"\f434"}.fa-satellite-dish::before{content:"\f7c0"}.fa-arrow-alt-circle-up::before,.fa-circle-up::before{content:"\f35b"}.fa-mobile-alt::before,.fa-mobile-screen-button::before{content:"\f3cd"}.fa-volume-high::before,.fa-volume-up::before{content:"\f028"}.fa-users-rays::before{content:"\e593"}.fa-wallet::before{content:"\f555"}.fa-clipboard-check::before{content:"\f46c"}.fa-file-audio::before{content:"\f1c7"}.fa-burger::before,.fa-hamburger::before{content:"\f805"}.fa-wrench::before{content:"\f0ad"}.fa-bugs::before{content:"\e4d0"}.fa-rupee-sign::before,.fa-rupee::before{content:"\f156"}.fa-file-image::before{content:"\f1c5"}.fa-circle-question::before,.fa-question-circle::before{content:"\f059"}.fa-plane-departure::before{content:"\f5b0"}.fa-handshake-slash::before{content:"\e060"}.fa-book-bookmark::before{content:"\e0bb"}.fa-code-branch::before{content:"\f126"}.fa-hat-cowboy::before{content:"\f8c0"}.fa-bridge::before{content:"\e4c8"}.fa-phone-alt::before,.fa-phone-flip::before{content:"\f879"}.fa-truck-front::before{content:"\e2b7"}.fa-cat::before{content:"\f6be"}.fa-anchor-circle-exclamation::before{content:"\e4ab"}.fa-truck-field::before{content:"\e58d"}.fa-route::before{content:"\f4d7"}.fa-clipboard-question::before{content:"\e4e3"}.fa-panorama::before{content:"\e209"}.fa-comment-medical::before{content:"\f7f5"}.fa-teeth-open::before{content:"\f62f"}.fa-file-circle-minus::before{content:"\e4ed"}.fa-tags::before{content:"\f02c"}.fa-wine-glass::before{content:"\f4e3"}.fa-fast-forward::before,.fa-forward-fast::before{content:"\f050"}.fa-face-meh-blank::before,.fa-meh-blank::before{content:"\f5a4"}.fa-parking::before,.fa-square-parking::before{content:"\f540"}.fa-house-signal::before{content:"\e012"}.fa-bars-progress::before,.fa-tasks-alt::before{content:"\f828"}.fa-faucet-drip::before{content:"\e006"}.fa-cart-flatbed::before,.fa-dolly-flatbed::before{content:"\f474"}.fa-ban-smoking::before,.fa-smoking-ban::before{content:"\f54d"}.fa-terminal::before{content:"\f120"}.fa-mobile-button::before{content:"\f10b"}.fa-house-medical-flag::before{content:"\e514"}.fa-basket-shopping::before,.fa-shopping-basket::before{content:"\f291"}.fa-tape::before{content:"\f4db"}.fa-bus-alt::before,.fa-bus-simple::before{content:"\f55e"}.fa-eye::before{content:"\f06e"}.fa-face-sad-cry::before,.fa-sad-cry::before{content:"\f5b3"}.fa-audio-description::before{content:"\f29e"}.fa-person-military-to-person::before{content:"\e54c"}.fa-file-shield::before{content:"\e4f0"}.fa-user-slash::before{content:"\f506"}.fa-pen::before{content:"\f304"}.fa-tower-observation::before{content:"\e586"}.fa-file-code::before{content:"\f1c9"}.fa-signal-5::before,.fa-signal-perfect::before,.fa-signal::before{content:"\f012"}.fa-bus::before{content:"\f207"}.fa-heart-circle-xmark::before{content:"\e501"}.fa-home-lg::before,.fa-house-chimney::before{content:"\e3af"}.fa-window-maximize::before{content:"\f2d0"}.fa-face-frown::before,.fa-frown::before{content:"\f119"}.fa-prescription::before{content:"\f5b1"}.fa-shop::before,.fa-store-alt::before{content:"\f54f"}.fa-floppy-disk::before,.fa-save::before{content:"\f0c7"}.fa-vihara::before{content:"\f6a7"}.fa-balance-scale-left::before,.fa-scale-unbalanced::before{content:"\f515"}.fa-sort-asc::before,.fa-sort-up::before{content:"\f0de"}.fa-comment-dots::before,.fa-commenting::before{content:"\f4ad"}.fa-plant-wilt::before{content:"\e5aa"}.fa-diamond::before{content:"\f219"}.fa-face-grin-squint::before,.fa-grin-squint::before{content:"\f585"}.fa-hand-holding-dollar::before,.fa-hand-holding-usd::before{content:"\f4c0"}.fa-bacterium::before{content:"\e05a"}.fa-hand-pointer::before{content:"\f25a"}.fa-drum-steelpan::before{content:"\f56a"}.fa-hand-scissors::before{content:"\f257"}.fa-hands-praying::before,.fa-praying-hands::before{content:"\f684"}.fa-arrow-right-rotate::before,.fa-arrow-rotate-forward::before,.fa-arrow-rotate-right::before,.fa-redo::before{content:"\f01e"}.fa-biohazard::before{content:"\f780"}.fa-location-crosshairs::before,.fa-location::before{content:"\f601"}.fa-mars-double::before{content:"\f227"}.fa-child-dress::before{content:"\e59c"}.fa-users-between-lines::before{content:"\e591"}.fa-lungs-virus::before{content:"\e067"}.fa-face-grin-tears::before,.fa-grin-tears::before{content:"\f588"}.fa-phone::before{content:"\f095"}.fa-calendar-times::before,.fa-calendar-xmark::before{content:"\f273"}.fa-child-reaching::before{content:"\e59d"}.fa-head-side-virus::before{content:"\e064"}.fa-user-cog::before,.fa-user-gear::before{content:"\f4fe"}.fa-arrow-up-1-9::before,.fa-sort-numeric-up::before{content:"\f163"}.fa-door-closed::before{content:"\f52a"}.fa-shield-virus::before{content:"\e06c"}.fa-dice-six::before{content:"\f526"}.fa-mosquito-net::before{content:"\e52c"}.fa-bridge-water::before{content:"\e4ce"}.fa-person-booth::before{content:"\f756"}.fa-text-width::before{content:"\f035"}.fa-hat-wizard::before{content:"\f6e8"}.fa-pen-fancy::before{content:"\f5ac"}.fa-digging::before,.fa-person-digging::before{content:"\f85e"}.fa-trash::before{content:"\f1f8"}.fa-gauge-simple-med::before,.fa-gauge-simple::before,.fa-tachometer-average::before{content:"\f629"}.fa-book-medical::before{content:"\f7e6"}.fa-poo::before{content:"\f2fe"}.fa-quote-right-alt::before,.fa-quote-right::before{content:"\f10e"}.fa-shirt::before,.fa-t-shirt::before,.fa-tshirt::before{content:"\f553"}.fa-cubes::before{content:"\f1b3"}.fa-divide::before{content:"\f529"}.fa-tenge-sign::before,.fa-tenge::before{content:"\f7d7"}.fa-headphones::before{content:"\f025"}.fa-hands-holding::before{content:"\f4c2"}.fa-hands-clapping::before{content:"\e1a8"}.fa-republican::before{content:"\f75e"}.fa-arrow-left::before{content:"\f060"}.fa-person-circle-xmark::before{content:"\e543"}.fa-ruler::before{content:"\f545"}.fa-align-left::before{content:"\f036"}.fa-dice-d6::before{content:"\f6d1"}.fa-restroom::before{content:"\f7bd"}.fa-j::before{content:"J"}.fa-users-viewfinder::before{content:"\e595"}.fa-file-video::before{content:"\f1c8"}.fa-external-link-alt::before,.fa-up-right-from-square::before{content:"\f35d"}.fa-table-cells::before,.fa-th::before{content:"\f00a"}.fa-file-pdf::before{content:"\f1c1"}.fa-bible::before,.fa-book-bible::before{content:"\f647"}.fa-o::before{content:"O"}.fa-medkit::before,.fa-suitcase-medical::before{content:"\f0fa"}.fa-user-secret::before{content:"\f21b"}.fa-otter::before{content:"\f700"}.fa-female::before,.fa-person-dress::before{content:"\f182"}.fa-comment-dollar::before{content:"\f651"}.fa-briefcase-clock::before,.fa-business-time::before{content:"\f64a"}.fa-table-cells-large::before,.fa-th-large::before{content:"\f009"}.fa-book-tanakh::before,.fa-tanakh::before{content:"\f827"}.fa-phone-volume::before,.fa-volume-control-phone::before{content:"\f2a0"}.fa-hat-cowboy-side::before{content:"\f8c1"}.fa-clipboard-user::before{content:"\f7f3"}.fa-child::before{content:"\f1ae"}.fa-lira-sign::before{content:"\f195"}.fa-satellite::before{content:"\f7bf"}.fa-plane-lock::before{content:"\e558"}.fa-tag::before{content:"\f02b"}.fa-comment::before{content:"\f075"}.fa-birthday-cake::before,.fa-cake-candles::before,.fa-cake::before{content:"\f1fd"}.fa-envelope::before{content:"\f0e0"}.fa-angle-double-up::before,.fa-angles-up::before{content:"\f102"}.fa-paperclip::before{content:"\f0c6"}.fa-arrow-right-to-city::before{content:"\e4b3"}.fa-ribbon::before{content:"\f4d6"}.fa-lungs::before{content:"\f604"}.fa-arrow-up-9-1::before,.fa-sort-numeric-up-alt::before{content:"\f887"}.fa-litecoin-sign::before{content:"\e1d3"}.fa-border-none::before{content:"\f850"}.fa-circle-nodes::before{content:"\e4e2"}.fa-parachute-box::before{content:"\f4cd"}.fa-indent::before{content:"\f03c"}.fa-truck-field-un::before{content:"\e58e"}.fa-hourglass-empty::before,.fa-hourglass::before{content:"\f254"}.fa-mountain::before{content:"\f6fc"}.fa-user-doctor::before,.fa-user-md::before{content:"\f0f0"}.fa-circle-info::before,.fa-info-circle::before{content:"\f05a"}.fa-cloud-meatball::before{content:"\f73b"}.fa-camera-alt::before,.fa-camera::before{content:"\f030"}.fa-square-virus::before{content:"\e578"}.fa-meteor::before{content:"\f753"}.fa-car-on::before{content:"\e4dd"}.fa-sleigh::before{content:"\f7cc"}.fa-arrow-down-1-9::before,.fa-sort-numeric-asc::before,.fa-sort-numeric-down::before{content:"\f162"}.fa-hand-holding-droplet::before,.fa-hand-holding-water::before{content:"\f4c1"}.fa-water::before{content:"\f773"}.fa-calendar-check::before{content:"\f274"}.fa-braille::before{content:"\f2a1"}.fa-prescription-bottle-alt::before,.fa-prescription-bottle-medical::before{content:"\f486"}.fa-landmark::before{content:"\f66f"}.fa-truck::before{content:"\f0d1"}.fa-crosshairs::before{content:"\f05b"}.fa-person-cane::before{content:"\e53c"}.fa-tent::before{content:"\e57d"}.fa-vest-patches::before{content:"\e086"}.fa-check-double::before{content:"\f560"}.fa-arrow-down-a-z::before,.fa-sort-alpha-asc::before,.fa-sort-alpha-down::before{content:"\f15d"}.fa-money-bill-wheat::before{content:"\e52a"}.fa-cookie::before{content:"\f563"}.fa-arrow-left-rotate::before,.fa-arrow-rotate-back::before,.fa-arrow-rotate-backward::before,.fa-arrow-rotate-left::before,.fa-undo::before{content:"\f0e2"}.fa-hard-drive::before,.fa-hdd::before{content:"\f0a0"}.fa-face-grin-squint-tears::before,.fa-grin-squint-tears::before{content:"\f586"}.fa-dumbbell::before{content:"\f44b"}.fa-list-alt::before,.fa-rectangle-list::before{content:"\f022"}.fa-tarp-droplet::before{content:"\e57c"}.fa-house-medical-circle-check::before{content:"\e511"}.fa-person-skiing-nordic::before,.fa-skiing-nordic::before{content:"\f7ca"}.fa-calendar-plus::before{content:"\f271"}.fa-plane-arrival::before{content:"\f5af"}.fa-arrow-alt-circle-left::before,.fa-circle-left::before{content:"\f359"}.fa-subway::before,.fa-train-subway::before{content:"\f239"}.fa-chart-gantt::before{content:"\e0e4"}.fa-indian-rupee-sign::before,.fa-indian-rupee::before,.fa-inr::before{content:"\e1bc"}.fa-crop-alt::before,.fa-crop-simple::before{content:"\f565"}.fa-money-bill-1::before,.fa-money-bill-alt::before{content:"\f3d1"}.fa-left-long::before,.fa-long-arrow-alt-left::before{content:"\f30a"}.fa-dna::before{content:"\f471"}.fa-virus-slash::before{content:"\e075"}.fa-minus::before,.fa-subtract::before{content:"\f068"}.fa-chess::before{content:"\f439"}.fa-arrow-left-long::before,.fa-long-arrow-left::before{content:"\f177"}.fa-plug-circle-check::before{content:"\e55c"}.fa-street-view::before{content:"\f21d"}.fa-franc-sign::before{content:"\e18f"}.fa-volume-off::before{content:"\f026"}.fa-american-sign-language-interpreting::before,.fa-asl-interpreting::before,.fa-hands-american-sign-language-interpreting::before,.fa-hands-asl-interpreting::before{content:"\f2a3"}.fa-cog::before,.fa-gear::before{content:"\f013"}.fa-droplet-slash::before,.fa-tint-slash::before{content:"\f5c7"}.fa-mosque::before{content:"\f678"}.fa-mosquito::before{content:"\e52b"}.fa-star-of-david::before{content:"\f69a"}.fa-person-military-rifle::before{content:"\e54b"}.fa-cart-shopping::before,.fa-shopping-cart::before{content:"\f07a"}.fa-vials::before{content:"\f493"}.fa-plug-circle-plus::before{content:"\e55f"}.fa-place-of-worship::before{content:"\f67f"}.fa-grip-vertical::before{content:"\f58e"}.fa-arrow-turn-up::before,.fa-level-up::before{content:"\f148"}.fa-u::before{content:"U"}.fa-square-root-alt::before,.fa-square-root-variable::before{content:"\f698"}.fa-clock-four::before,.fa-clock::before{content:"\f017"}.fa-backward-step::before,.fa-step-backward::before{content:"\f048"}.fa-pallet::before{content:"\f482"}.fa-faucet::before{content:"\e005"}.fa-baseball-bat-ball::before{content:"\f432"}.fa-s::before{content:"S"}.fa-timeline::before{content:"\e29c"}.fa-keyboard::before{content:"\f11c"}.fa-caret-down::before{content:"\f0d7"}.fa-clinic-medical::before,.fa-house-chimney-medical::before{content:"\f7f2"}.fa-temperature-3::before,.fa-temperature-three-quarters::before,.fa-thermometer-3::before,.fa-thermometer-three-quarters::before{content:"\f2c8"}.fa-mobile-android-alt::before,.fa-mobile-screen::before{content:"\f3cf"}.fa-plane-up::before{content:"\e22d"}.fa-piggy-bank::before{content:"\f4d3"}.fa-battery-3::before,.fa-battery-half::before{content:"\f242"}.fa-mountain-city::before{content:"\e52e"}.fa-coins::before{content:"\f51e"}.fa-khanda::before{content:"\f66d"}.fa-sliders-h::before,.fa-sliders::before{content:"\f1de"}.fa-folder-tree::before{content:"\f802"}.fa-network-wired::before{content:"\f6ff"}.fa-map-pin::before{content:"\f276"}.fa-hamsa::before{content:"\f665"}.fa-cent-sign::before{content:"\e3f5"}.fa-flask::before{content:"\f0c3"}.fa-person-pregnant::before{content:"\e31e"}.fa-wand-sparkles::before{content:"\f72b"}.fa-ellipsis-v::before,.fa-ellipsis-vertical::before{content:"\f142"}.fa-ticket::before{content:"\f145"}.fa-power-off::before{content:"\f011"}.fa-long-arrow-alt-right::before,.fa-right-long::before{content:"\f30b"}.fa-flag-usa::before{content:"\f74d"}.fa-laptop-file::before{content:"\e51d"}.fa-teletype::before,.fa-tty::before{content:"\f1e4"}.fa-diagram-next::before{content:"\e476"}.fa-person-rifle::before{content:"\e54e"}.fa-house-medical-circle-exclamation::before{content:"\e512"}.fa-closed-captioning::before{content:"\f20a"}.fa-hiking::before,.fa-person-hiking::before{content:"\f6ec"}.fa-venus-double::before{content:"\f226"}.fa-images::before{content:"\f302"}.fa-calculator::before{content:"\f1ec"}.fa-people-pulling::before{content:"\e535"}.fa-n::before{content:"N"}.fa-cable-car::before,.fa-tram::before{content:"\f7da"}.fa-cloud-rain::before{content:"\f73d"}.fa-building-circle-xmark::before{content:"\e4d4"}.fa-ship::before{content:"\f21a"}.fa-arrows-down-to-line::before{content:"\e4b8"}.fa-download::before{content:"\f019"}.fa-face-grin::before,.fa-grin::before{content:"\f580"}.fa-backspace::before,.fa-delete-left::before{content:"\f55a"}.fa-eye-dropper-empty::before,.fa-eye-dropper::before,.fa-eyedropper::before{content:"\f1fb"}.fa-file-circle-check::before{content:"\e5a0"}.fa-forward::before{content:"\f04e"}.fa-mobile-android::before,.fa-mobile-phone::before,.fa-mobile::before{content:"\f3ce"}.fa-face-meh::before,.fa-meh::before{content:"\f11a"}.fa-align-center::before{content:"\f037"}.fa-book-dead::before,.fa-book-skull::before{content:"\f6b7"}.fa-drivers-license::before,.fa-id-card::before{content:"\f2c2"}.fa-dedent::before,.fa-outdent::before{content:"\f03b"}.fa-heart-circle-exclamation::before{content:"\e4fe"}.fa-home-alt::before,.fa-home-lg-alt::before,.fa-home::before,.fa-house::before{content:"\f015"}.fa-calendar-week::before{content:"\f784"}.fa-laptop-medical::before{content:"\f812"}.fa-b::before{content:"B"}.fa-file-medical::before{content:"\f477"}.fa-dice-one::before{content:"\f525"}.fa-kiwi-bird::before{content:"\f535"}.fa-arrow-right-arrow-left::before,.fa-exchange::before{content:"\f0ec"}.fa-redo-alt::before,.fa-rotate-forward::before,.fa-rotate-right::before{content:"\f2f9"}.fa-cutlery::before,.fa-utensils::before{content:"\f2e7"}.fa-arrow-up-wide-short::before,.fa-sort-amount-up::before{content:"\f161"}.fa-mill-sign::before{content:"\e1ed"}.fa-bowl-rice::before{content:"\e2eb"}.fa-skull::before{content:"\f54c"}.fa-broadcast-tower::before,.fa-tower-broadcast::before{content:"\f519"}.fa-truck-pickup::before{content:"\f63c"}.fa-long-arrow-alt-up::before,.fa-up-long::before{content:"\f30c"}.fa-stop::before{content:"\f04d"}.fa-code-merge::before{content:"\f387"}.fa-upload::before{content:"\f093"}.fa-hurricane::before{content:"\f751"}.fa-mound::before{content:"\e52d"}.fa-toilet-portable::before{content:"\e583"}.fa-compact-disc::before{content:"\f51f"}.fa-file-arrow-down::before,.fa-file-download::before{content:"\f56d"}.fa-caravan::before{content:"\f8ff"}.fa-shield-cat::before{content:"\e572"}.fa-bolt::before,.fa-zap::before{content:"\f0e7"}.fa-glass-water::before{content:"\e4f4"}.fa-oil-well::before{content:"\e532"}.fa-vault::before{content:"\e2c5"}.fa-mars::before{content:"\f222"}.fa-toilet::before{content:"\f7d8"}.fa-plane-circle-xmark::before{content:"\e557"}.fa-cny::before,.fa-jpy::before,.fa-rmb::before,.fa-yen-sign::before,.fa-yen::before{content:"\f157"}.fa-rouble::before,.fa-rub::before,.fa-ruble-sign::before,.fa-ruble::before{content:"\f158"}.fa-sun::before{content:"\f185"}.fa-guitar::before{content:"\f7a6"}.fa-face-laugh-wink::before,.fa-laugh-wink::before{content:"\f59c"}.fa-horse-head::before{content:"\f7ab"}.fa-bore-hole::before{content:"\e4c3"}.fa-industry::before{content:"\f275"}.fa-arrow-alt-circle-down::before,.fa-circle-down::before{content:"\f358"}.fa-arrows-turn-to-dots::before{content:"\e4c1"}.fa-florin-sign::before{content:"\e184"}.fa-arrow-down-short-wide::before,.fa-sort-amount-desc::before,.fa-sort-amount-down-alt::before{content:"\f884"}.fa-less-than::before{content:"<"}.fa-angle-down::before{content:"\f107"}.fa-car-tunnel::before{content:"\e4de"}.fa-head-side-cough::before{content:"\e061"}.fa-grip-lines::before{content:"\f7a4"}.fa-thumbs-down::before{content:"\f165"}.fa-user-lock::before{content:"\f502"}.fa-arrow-right-long::before,.fa-long-arrow-right::before{content:"\f178"}.fa-anchor-circle-xmark::before{content:"\e4ac"}.fa-ellipsis-h::before,.fa-ellipsis::before{content:"\f141"}.fa-chess-pawn::before{content:"\f443"}.fa-first-aid::before,.fa-kit-medical::before{content:"\f479"}.fa-person-through-window::before{content:"\e5a9"}.fa-toolbox::before{content:"\f552"}.fa-hands-holding-circle::before{content:"\e4fb"}.fa-bug::before{content:"\f188"}.fa-credit-card-alt::before,.fa-credit-card::before{content:"\f09d"}.fa-automobile::before,.fa-car::before{content:"\f1b9"}.fa-hand-holding-hand::before{content:"\e4f7"}.fa-book-open-reader::before,.fa-book-reader::before{content:"\f5da"}.fa-mountain-sun::before{content:"\e52f"}.fa-arrows-left-right-to-line::before{content:"\e4ba"}.fa-dice-d20::before{content:"\f6cf"}.fa-truck-droplet::before{content:"\e58c"}.fa-file-circle-xmark::before{content:"\e5a1"}.fa-temperature-arrow-up::before,.fa-temperature-up::before{content:"\e040"}.fa-medal::before{content:"\f5a2"}.fa-bed::before{content:"\f236"}.fa-h-square::before,.fa-square-h::before{content:"\f0fd"}.fa-podcast::before{content:"\f2ce"}.fa-temperature-4::before,.fa-temperature-full::before,.fa-thermometer-4::before,.fa-thermometer-full::before{content:"\f2c7"}.fa-bell::before{content:"\f0f3"}.fa-superscript::before{content:"\f12b"}.fa-plug-circle-xmark::before{content:"\e560"}.fa-star-of-life::before{content:"\f621"}.fa-phone-slash::before{content:"\f3dd"}.fa-paint-roller::before{content:"\f5aa"}.fa-hands-helping::before,.fa-handshake-angle::before{content:"\f4c4"}.fa-location-dot::before,.fa-map-marker-alt::before{content:"\f3c5"}.fa-file::before{content:"\f15b"}.fa-greater-than::before{content:">"}.fa-person-swimming::before,.fa-swimmer::before{content:"\f5c4"}.fa-arrow-down::before{content:"\f063"}.fa-droplet::before,.fa-tint::before{content:"\f043"}.fa-eraser::before{content:"\f12d"}.fa-earth-america::before,.fa-earth-americas::before,.fa-earth::before,.fa-globe-americas::before{content:"\f57d"}.fa-person-burst::before{content:"\e53b"}.fa-dove::before{content:"\f4ba"}.fa-battery-0::before,.fa-battery-empty::before{content:"\f244"}.fa-socks::before{content:"\f696"}.fa-inbox::before{content:"\f01c"}.fa-section::before{content:"\e447"}.fa-gauge-high::before,.fa-tachometer-alt-fast::before,.fa-tachometer-alt::before{content:"\f625"}.fa-envelope-open-text::before{content:"\f658"}.fa-hospital-alt::before,.fa-hospital-wide::before,.fa-hospital::before{content:"\f0f8"}.fa-wine-bottle::before{content:"\f72f"}.fa-chess-rook::before{content:"\f447"}.fa-bars-staggered::before,.fa-reorder::before,.fa-stream::before{content:"\f550"}.fa-dharmachakra::before{content:"\f655"}.fa-hotdog::before{content:"\f80f"}.fa-blind::before,.fa-person-walking-with-cane::before{content:"\f29d"}.fa-drum::before{content:"\f569"}.fa-ice-cream::before{content:"\f810"}.fa-heart-circle-bolt::before{content:"\e4fc"}.fa-fax::before{content:"\f1ac"}.fa-paragraph::before{content:"\f1dd"}.fa-check-to-slot::before,.fa-vote-yea::before{content:"\f772"}.fa-star-half::before{content:"\f089"}.fa-boxes-alt::before,.fa-boxes-stacked::before,.fa-boxes::before{content:"\f468"}.fa-chain::before,.fa-link::before{content:"\f0c1"}.fa-assistive-listening-systems::before,.fa-ear-listen::before{content:"\f2a2"}.fa-tree-city::before{content:"\e587"}.fa-play::before{content:"\f04b"}.fa-font::before{content:"\f031"}.fa-rupiah-sign::before{content:"\e23d"}.fa-magnifying-glass::before,.fa-search::before{content:"\f002"}.fa-ping-pong-paddle-ball::before,.fa-table-tennis-paddle-ball::before,.fa-table-tennis::before{content:"\f45d"}.fa-diagnoses::before,.fa-person-dots-from-line::before{content:"\f470"}.fa-trash-can-arrow-up::before,.fa-trash-restore-alt::before{content:"\f82a"}.fa-naira-sign::before{content:"\e1f6"}.fa-cart-arrow-down::before{content:"\f218"}.fa-walkie-talkie::before{content:"\f8ef"}.fa-file-edit::before,.fa-file-pen::before{content:"\f31c"}.fa-receipt::before{content:"\f543"}.fa-pen-square::before,.fa-pencil-square::before,.fa-square-pen::before{content:"\f14b"}.fa-suitcase-rolling::before{content:"\f5c1"}.fa-person-circle-exclamation::before{content:"\e53f"}.fa-chevron-down::before{content:"\f078"}.fa-battery-5::before,.fa-battery-full::before,.fa-battery::before{content:"\f240"}.fa-skull-crossbones::before{content:"\f714"}.fa-code-compare::before{content:"\e13a"}.fa-list-dots::before,.fa-list-ul::before{content:"\f0ca"}.fa-school-lock::before{content:"\e56f"}.fa-tower-cell::before{content:"\e585"}.fa-down-long::before,.fa-long-arrow-alt-down::before{content:"\f309"}.fa-ranking-star::before{content:"\e561"}.fa-chess-king::before{content:"\f43f"}.fa-person-harassing::before{content:"\e549"}.fa-brazilian-real-sign::before{content:"\e46c"}.fa-landmark-alt::before,.fa-landmark-dome::before{content:"\f752"}.fa-arrow-up::before{content:"\f062"}.fa-television::before,.fa-tv-alt::before,.fa-tv::before{content:"\f26c"}.fa-shrimp::before{content:"\e448"}.fa-list-check::before,.fa-tasks::before{content:"\f0ae"}.fa-jug-detergent::before{content:"\e519"}.fa-circle-user::before,.fa-user-circle::before{content:"\f2bd"}.fa-user-shield::before{content:"\f505"}.fa-wind::before{content:"\f72e"}.fa-car-burst::before,.fa-car-crash::before{content:"\f5e1"}.fa-y::before{content:"Y"}.fa-person-snowboarding::before,.fa-snowboarding::before{content:"\f7ce"}.fa-shipping-fast::before,.fa-truck-fast::before{content:"\f48b"}.fa-fish::before{content:"\f578"}.fa-user-graduate::before{content:"\f501"}.fa-adjust::before,.fa-circle-half-stroke::before{content:"\f042"}.fa-clapperboard::before{content:"\e131"}.fa-circle-radiation::before,.fa-radiation-alt::before{content:"\f7ba"}.fa-baseball-ball::before,.fa-baseball::before{content:"\f433"}.fa-jet-fighter-up::before{content:"\e518"}.fa-diagram-project::before,.fa-project-diagram::before{content:"\f542"}.fa-copy::before{content:"\f0c5"}.fa-volume-mute::before,.fa-volume-times::before,.fa-volume-xmark::before{content:"\f6a9"}.fa-hand-sparkles::before{content:"\e05d"}.fa-grip-horizontal::before,.fa-grip::before{content:"\f58d"}.fa-share-from-square::before,.fa-share-square::before{content:"\f14d"}.fa-child-combatant::before,.fa-child-rifle::before{content:"\e4e0"}.fa-gun::before{content:"\e19b"}.fa-phone-square::before,.fa-square-phone::before{content:"\f098"}.fa-add::before,.fa-plus::before{content:"+"}.fa-expand::before{content:"\f065"}.fa-computer::before{content:"\e4e5"}.fa-close::before,.fa-multiply::before,.fa-remove::before,.fa-times::before,.fa-xmark::before{content:"\f00d"}.fa-arrows-up-down-left-right::before,.fa-arrows::before{content:"\f047"}.fa-chalkboard-teacher::before,.fa-chalkboard-user::before{content:"\f51c"}.fa-peso-sign::before{content:"\e222"}.fa-building-shield::before{content:"\e4d8"}.fa-baby::before{content:"\f77c"}.fa-users-line::before{content:"\e592"}.fa-quote-left-alt::before,.fa-quote-left::before{content:"\f10d"}.fa-tractor::before{content:"\f722"}.fa-trash-arrow-up::before,.fa-trash-restore::before{content:"\f829"}.fa-arrow-down-up-lock::before{content:"\e4b0"}.fa-lines-leaning::before{content:"\e51e"}.fa-ruler-combined::before{content:"\f546"}.fa-copyright::before{content:"\f1f9"}.fa-equals::before{content:"="}.fa-blender::before{content:"\f517"}.fa-teeth::before{content:"\f62e"}.fa-ils::before,.fa-shekel-sign::before,.fa-shekel::before,.fa-sheqel-sign::before,.fa-sheqel::before{content:"\f20b"}.fa-map::before{content:"\f279"}.fa-rocket::before{content:"\f135"}.fa-photo-film::before,.fa-photo-video::before{content:"\f87c"}.fa-folder-minus::before{content:"\f65d"}.fa-store::before{content:"\f54e"}.fa-arrow-trend-up::before{content:"\e098"}.fa-plug-circle-minus::before{content:"\e55e"}.fa-sign-hanging::before,.fa-sign::before{content:"\f4d9"}.fa-bezier-curve::before{content:"\f55b"}.fa-bell-slash::before{content:"\f1f6"}.fa-tablet-android::before,.fa-tablet::before{content:"\f3fb"}.fa-school-flag::before{content:"\e56e"}.fa-fill::before{content:"\f575"}.fa-angle-up::before{content:"\f106"}.fa-drumstick-bite::before{content:"\f6d7"}.fa-holly-berry::before{content:"\f7aa"}.fa-chevron-left::before{content:"\f053"}.fa-bacteria::before{content:"\e059"}.fa-hand-lizard::before{content:"\f258"}.fa-notdef::before{content:"\e1fe"}.fa-disease::before{content:"\f7fa"}.fa-briefcase-medical::before{content:"\f469"}.fa-genderless::before{content:"\f22d"}.fa-chevron-right::before{content:"\f054"}.fa-retweet::before{content:"\f079"}.fa-car-alt::before,.fa-car-rear::before{content:"\f5de"}.fa-pump-soap::before{content:"\e06b"}.fa-video-slash::before{content:"\f4e2"}.fa-battery-2::before,.fa-battery-quarter::before{content:"\f243"}.fa-radio::before{content:"\f8d7"}.fa-baby-carriage::before,.fa-carriage-baby::before{content:"\f77d"}.fa-traffic-light::before{content:"\f637"}.fa-thermometer::before{content:"\f491"}.fa-vr-cardboard::before{content:"\f729"}.fa-hand-middle-finger::before{content:"\f806"}.fa-percent::before,.fa-percentage::before{content:"%"}.fa-truck-moving::before{content:"\f4df"}.fa-glass-water-droplet::before{content:"\e4f5"}.fa-display::before{content:"\e163"}.fa-face-smile::before,.fa-smile::before{content:"\f118"}.fa-thumb-tack::before,.fa-thumbtack::before{content:"\f08d"}.fa-trophy::before{content:"\f091"}.fa-person-praying::before,.fa-pray::before{content:"\f683"}.fa-hammer::before{content:"\f6e3"}.fa-hand-peace::before{content:"\f25b"}.fa-rotate::before,.fa-sync-alt::before{content:"\f2f1"}.fa-spinner::before{content:"\f110"}.fa-robot::before{content:"\f544"}.fa-peace::before{content:"\f67c"}.fa-cogs::before,.fa-gears::before{content:"\f085"}.fa-warehouse::before{content:"\f494"}.fa-arrow-up-right-dots::before{content:"\e4b7"}.fa-splotch::before{content:"\f5bc"}.fa-face-grin-hearts::before,.fa-grin-hearts::before{content:"\f584"}.fa-dice-four::before{content:"\f524"}.fa-sim-card::before{content:"\f7c4"}.fa-transgender-alt::before,.fa-transgender::before{content:"\f225"}.fa-mercury::before{content:"\f223"}.fa-arrow-turn-down::before,.fa-level-down::before{content:"\f149"}.fa-person-falling-burst::before{content:"\e547"}.fa-award::before{content:"\f559"}.fa-ticket-alt::before,.fa-ticket-simple::before{content:"\f3ff"}.fa-building::before{content:"\f1ad"}.fa-angle-double-left::before,.fa-angles-left::before{content:"\f100"}.fa-qrcode::before{content:"\f029"}.fa-clock-rotate-left::before,.fa-history::before{content:"\f1da"}.fa-face-grin-beam-sweat::before,.fa-grin-beam-sweat::before{content:"\f583"}.fa-arrow-right-from-file::before,.fa-file-export::before{content:"\f56e"}.fa-shield-blank::before,.fa-shield::before{content:"\f132"}.fa-arrow-up-short-wide::before,.fa-sort-amount-up-alt::before{content:"\f885"}.fa-house-medical::before{content:"\e3b2"}.fa-golf-ball-tee::before,.fa-golf-ball::before{content:"\f450"}.fa-chevron-circle-left::before,.fa-circle-chevron-left::before{content:"\f137"}.fa-house-chimney-window::before{content:"\e00d"}.fa-pen-nib::before{content:"\f5ad"}.fa-tent-arrow-turn-left::before{content:"\e580"}.fa-tents::before{content:"\e582"}.fa-magic::before,.fa-wand-magic::before{content:"\f0d0"}.fa-dog::before{content:"\f6d3"}.fa-carrot::before{content:"\f787"}.fa-moon::before{content:"\f186"}.fa-wine-glass-alt::before,.fa-wine-glass-empty::before{content:"\f5ce"}.fa-cheese::before{content:"\f7ef"}.fa-yin-yang::before{content:"\f6ad"}.fa-music::before{content:"\f001"}.fa-code-commit::before{content:"\f386"}.fa-temperature-low::before{content:"\f76b"}.fa-biking::before,.fa-person-biking::before{content:"\f84a"}.fa-broom::before{content:"\f51a"}.fa-shield-heart::before{content:"\e574"}.fa-gopuram::before{content:"\f664"}.fa-earth-oceania::before,.fa-globe-oceania::before{content:"\e47b"}.fa-square-xmark::before,.fa-times-square::before,.fa-xmark-square::before{content:"\f2d3"}.fa-hashtag::before{content:"#"}.fa-expand-alt::before,.fa-up-right-and-down-left-from-center::before{content:"\f424"}.fa-oil-can::before{content:"\f613"}.fa-t::before{content:"T"}.fa-hippo::before{content:"\f6ed"}.fa-chart-column::before{content:"\e0e3"}.fa-infinity::before{content:"\f534"}.fa-vial-circle-check::before{content:"\e596"}.fa-person-arrow-down-to-line::before{content:"\e538"}.fa-voicemail::before{content:"\f897"}.fa-fan::before{content:"\f863"}.fa-person-walking-luggage::before{content:"\e554"}.fa-arrows-alt-v::before,.fa-up-down::before{content:"\f338"}.fa-cloud-moon-rain::before{content:"\f73c"}.fa-calendar::before{content:"\f133"}.fa-trailer::before{content:"\e041"}.fa-bahai::before,.fa-haykal::before{content:"\f666"}.fa-sd-card::before{content:"\f7c2"}.fa-dragon::before{content:"\f6d5"}.fa-shoe-prints::before{content:"\f54b"}.fa-circle-plus::before,.fa-plus-circle::before{content:"\f055"}.fa-face-grin-tongue-wink::before,.fa-grin-tongue-wink::before{content:"\f58b"}.fa-hand-holding::before{content:"\f4bd"}.fa-plug-circle-exclamation::before{content:"\e55d"}.fa-chain-broken::before,.fa-chain-slash::before,.fa-link-slash::before,.fa-unlink::before{content:"\f127"}.fa-clone::before{content:"\f24d"}.fa-person-walking-arrow-loop-left::before{content:"\e551"}.fa-arrow-up-z-a::before,.fa-sort-alpha-up-alt::before{content:"\f882"}.fa-fire-alt::before,.fa-fire-flame-curved::before{content:"\f7e4"}.fa-tornado::before{content:"\f76f"}.fa-file-circle-plus::before{content:"\e494"}.fa-book-quran::before,.fa-quran::before{content:"\f687"}.fa-anchor::before{content:"\f13d"}.fa-border-all::before{content:"\f84c"}.fa-angry::before,.fa-face-angry::before{content:"\f556"}.fa-cookie-bite::before{content:"\f564"}.fa-arrow-trend-down::before{content:"\e097"}.fa-feed::before,.fa-rss::before{content:"\f09e"}.fa-draw-polygon::before{content:"\f5ee"}.fa-balance-scale::before,.fa-scale-balanced::before{content:"\f24e"}.fa-gauge-simple-high::before,.fa-tachometer-fast::before,.fa-tachometer::before{content:"\f62a"}.fa-shower::before{content:"\f2cc"}.fa-desktop-alt::before,.fa-desktop::before{content:"\f390"}.fa-m::before{content:"M"}.fa-table-list::before,.fa-th-list::before{content:"\f00b"}.fa-comment-sms::before,.fa-sms::before{content:"\f7cd"}.fa-book::before{content:"\f02d"}.fa-user-plus::before{content:"\f234"}.fa-check::before{content:"\f00c"}.fa-battery-4::before,.fa-battery-three-quarters::before{content:"\f241"}.fa-house-circle-check::before{content:"\e509"}.fa-angle-left::before{content:"\f104"}.fa-diagram-successor::before{content:"\e47a"}.fa-truck-arrow-right::before{content:"\e58b"}.fa-arrows-split-up-and-left::before{content:"\e4bc"}.fa-fist-raised::before,.fa-hand-fist::before{content:"\f6de"}.fa-cloud-moon::before{content:"\f6c3"}.fa-briefcase::before{content:"\f0b1"}.fa-person-falling::before{content:"\e546"}.fa-image-portrait::before,.fa-portrait::before{content:"\f3e0"}.fa-user-tag::before{content:"\f507"}.fa-rug::before{content:"\e569"}.fa-earth-europe::before,.fa-globe-europe::before{content:"\f7a2"}.fa-cart-flatbed-suitcase::before,.fa-luggage-cart::before{content:"\f59d"}.fa-rectangle-times::before,.fa-rectangle-xmark::before,.fa-times-rectangle::before,.fa-window-close::before{content:"\f410"}.fa-baht-sign::before{content:"\e0ac"}.fa-book-open::before{content:"\f518"}.fa-book-journal-whills::before,.fa-journal-whills::before{content:"\f66a"}.fa-handcuffs::before{content:"\e4f8"}.fa-exclamation-triangle::before,.fa-triangle-exclamation::before,.fa-warning::before{content:"\f071"}.fa-database::before{content:"\f1c0"}.fa-arrow-turn-right::before,.fa-mail-forward::before,.fa-share::before{content:"\f064"}.fa-bottle-droplet::before{content:"\e4c4"}.fa-mask-face::before{content:"\e1d7"}.fa-hill-rockslide::before{content:"\e508"}.fa-exchange-alt::before,.fa-right-left::before{content:"\f362"}.fa-paper-plane::before{content:"\f1d8"}.fa-road-circle-exclamation::before{content:"\e565"}.fa-dungeon::before{content:"\f6d9"}.fa-align-right::before{content:"\f038"}.fa-money-bill-1-wave::before,.fa-money-bill-wave-alt::before{content:"\f53b"}.fa-life-ring::before{content:"\f1cd"}.fa-hands::before,.fa-sign-language::before,.fa-signing::before{content:"\f2a7"}.fa-calendar-day::before{content:"\f783"}.fa-ladder-water::before,.fa-swimming-pool::before,.fa-water-ladder::before{content:"\f5c5"}.fa-arrows-up-down::before,.fa-arrows-v::before{content:"\f07d"}.fa-face-grimace::before,.fa-grimace::before{content:"\f57f"}.fa-wheelchair-alt::before,.fa-wheelchair-move::before{content:"\e2ce"}.fa-level-down-alt::before,.fa-turn-down::before{content:"\f3be"}.fa-person-walking-arrow-right::before{content:"\e552"}.fa-envelope-square::before,.fa-square-envelope::before{content:"\f199"}.fa-dice::before{content:"\f522"}.fa-bowling-ball::before{content:"\f436"}.fa-brain::before{content:"\f5dc"}.fa-band-aid::before,.fa-bandage::before{content:"\f462"}.fa-calendar-minus::before{content:"\f272"}.fa-circle-xmark::before,.fa-times-circle::before,.fa-xmark-circle::before{content:"\f057"}.fa-gifts::before{content:"\f79c"}.fa-hotel::before{content:"\f594"}.fa-earth-asia::before,.fa-globe-asia::before{content:"\f57e"}.fa-id-card-alt::before,.fa-id-card-clip::before{content:"\f47f"}.fa-magnifying-glass-plus::before,.fa-search-plus::before{content:"\f00e"}.fa-thumbs-up::before{content:"\f164"}.fa-user-clock::before{content:"\f4fd"}.fa-allergies::before,.fa-hand-dots::before{content:"\f461"}.fa-file-invoice::before{content:"\f570"}.fa-window-minimize::before{content:"\f2d1"}.fa-coffee::before,.fa-mug-saucer::before{content:"\f0f4"}.fa-brush::before{content:"\f55d"}.fa-mask::before{content:"\f6fa"}.fa-magnifying-glass-minus::before,.fa-search-minus::before{content:"\f010"}.fa-ruler-vertical::before{content:"\f548"}.fa-user-alt::before,.fa-user-large::before{content:"\f406"}.fa-train-tram::before{content:"\e5b4"}.fa-user-nurse::before{content:"\f82f"}.fa-syringe::before{content:"\f48e"}.fa-cloud-sun::before{content:"\f6c4"}.fa-stopwatch-20::before{content:"\e06f"}.fa-square-full::before{content:"\f45c"}.fa-magnet::before{content:"\f076"}.fa-jar::before{content:"\e516"}.fa-note-sticky::before,.fa-sticky-note::before{content:"\f249"}.fa-bug-slash::before{content:"\e490"}.fa-arrow-up-from-water-pump::before{content:"\e4b6"}.fa-bone::before{content:"\f5d7"}.fa-user-injured::before{content:"\f728"}.fa-face-sad-tear::before,.fa-sad-tear::before{content:"\f5b4"}.fa-plane::before{content:"\f072"}.fa-tent-arrows-down::before{content:"\e581"}.fa-exclamation::before{content:"!"}.fa-arrows-spin::before{content:"\e4bb"}.fa-print::before{content:"\f02f"}.fa-try::before,.fa-turkish-lira-sign::before,.fa-turkish-lira::before{content:"\e2bb"}.fa-dollar-sign::before,.fa-dollar::before,.fa-usd::before{content:"$"}.fa-x::before{content:"X"}.fa-magnifying-glass-dollar::before,.fa-search-dollar::before{content:"\f688"}.fa-users-cog::before,.fa-users-gear::before{content:"\f509"}.fa-person-military-pointing::before{content:"\e54a"}.fa-bank::before,.fa-building-columns::before,.fa-institution::before,.fa-museum::before,.fa-university::before{content:"\f19c"}.fa-umbrella::before{content:"\f0e9"}.fa-trowel::before{content:"\e589"}.fa-d::before{content:"D"}.fa-stapler::before{content:"\e5af"}.fa-masks-theater::before,.fa-theater-masks::before{content:"\f630"}.fa-kip-sign::before{content:"\e1c4"}.fa-hand-point-left::before{content:"\f0a5"}.fa-handshake-alt::before,.fa-handshake-simple::before{content:"\f4c6"}.fa-fighter-jet::before,.fa-jet-fighter::before{content:"\f0fb"}.fa-share-alt-square::before,.fa-square-share-nodes::before{content:"\f1e1"}.fa-barcode::before{content:"\f02a"}.fa-plus-minus::before{content:"\e43c"}.fa-video-camera::before,.fa-video::before{content:"\f03d"}.fa-graduation-cap::before,.fa-mortar-board::before{content:"\f19d"}.fa-hand-holding-medical::before{content:"\e05c"}.fa-person-circle-check::before{content:"\e53e"}.fa-level-up-alt::before,.fa-turn-up::before{content:"\f3bf"}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands";--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free";--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url("../fonts/fa-brands-400.woff2") format("woff2"),url("../fonts/fa-brands-400.ttf") format("truetype")}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url("../fonts/fa-regular-400.woff2") format("woff2"),url("../fonts/fa-regular-400.ttf") format("truetype")}.fa-regular,.far{font-weight:400}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url("../fonts/fa-solid-900.woff2") format("woff2"),url("../fonts/fa-solid-900.ttf") format("truetype")}.fa-solid,.fas{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url("../fonts/fa-brands-400.woff2") format("woff2"),url("../fonts/fa-brands-400.ttf") format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url("../fonts/fa-solid-900.woff2") format("woff2"),url("../fonts/fa-solid-900.ttf") format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url("../fonts/fa-regular-400.woff2") format("woff2"),url("../fonts/fa-regular-400.ttf") format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url("../fonts/fa-solid-900.woff2") format("woff2"),url("../fonts/fa-solid-900.ttf") format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url("../fonts/fa-brands-400.woff2") format("woff2"),url("../fonts/fa-brands-400.ttf") format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url("../fonts/fa-regular-400.woff2") format("woff2"),url("../fonts/fa-regular-400.ttf") format("truetype");unicode-range:U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC}@font-face{font-family:FontAwesome;font-display:block;src:url("../fonts/fa-v4compatibility.woff2") format("woff2"),url("../fonts/fa-v4compatibility.ttf") format("truetype");unicode-range:U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A} +/*# sourceMappingURL=icons.min.css.map */ diff --git a/dj_backend_server/web/static/assets/css/icons.min.css.map b/dj_backend_server/web/static/assets/css/icons.min.css.map new file mode 100644 index 00000000..ac63a349 --- /dev/null +++ b/dj_backend_server/web/static/assets/css/icons.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["icons.scss","icons/_fontawesome-all.scss","icons.css"],"names":[],"mappings":"AAAA;;;;;;CAAA;ACAA;;;;EAAA;AAKA;EACE,0DAAA;EACA,iCAAA;ACQF;;ADNA;;;;;;;;;EASE,kCAAA;EACA,mCAAA;EACA,wCAAA;EACA,kBAAA;EACA,oBAAA;EACA,cAAA;EACA,oBAAA;ACSF;;ADPA;;;;;EAKE,kCAAA;ACUF;;ADRA;;EAEE,oCAAA;ACWF;;ADTA;EACE,cAAA;ACYF;;ADVA;EACE,cAAA;ACaF;;ADXA;EACE,cAAA;ACcF;;ADZA;EACE,cAAA;ACeF;;ADbA;EACE,cAAA;ACgBF;;ADdA;EACE,cAAA;ACiBF;;ADfA;EACE,cAAA;ACkBF;;ADhBA;EACE,cAAA;ACmBF;;ADjBA;EACE,cAAA;ACoBF;;ADlBA;EACE,eAAA;ACqBF;;ADnBA;EACE,kBAAA;EACA,kBAAA;EACA,uBAAA;ACsBF;;ADpBA;EACE,iBAAA;EACA,sBAAA;EACA,uBAAA;ACuBF;;ADrBA;EACE,kBAAA;EACA,sBAAA;EACA,yBAAA;ACwBF;;ADtBA;EACE,iBAAA;EACA,mBAAA;EACA,wBAAA;ACyBF;;ADvBA;EACE,gBAAA;EACA,sBAAA;EACA,wBAAA;AC0BF;;ADxBA;EACE,cAAA;EACA,sBAAA;EACA,yBAAA;AC2BF;;ADzBA;EACE,kBAAA;EACA,aAAA;AC4BF;;AD1BA;EACE,qBAAA;EACA,uCAAA;EACA,eAAA;AC6BF;;AD5BE;EACE,kBAAA;AC+BJ;;AD7BA;EACE,wCAAA;EACA,kBAAA;EACA,kBAAA;EACA,8BAAA;EACA,oBAAA;ACgCF;;AD9BA;EACE,0CAAA;EACA,6CAAA;EACA,2CAAA;EACA,4CAAA;EACA,sDAAA;ACiCF;;AD/BA;EACE,WAAA;EACA,0CAAA;ACkCF;;ADhCA;EACE,YAAA;EACA,yCAAA;ACmCF;;ADjCA;EACE,+BAAA;EACQ,uBAAA;EACR,sDAAA;EACQ,8CAAA;EACR,kEAAA;EACQ,0DAAA;EACR,4DAAA;EACQ,oDAAA;EACR,gFAAA;EACQ,wEAAA;EACR,0EAAA;EACQ,kEAAA;ACoCV;;ADlCA;EACE,iCAAA;EACQ,yBAAA;EACR,sDAAA;EACQ,8CAAA;EACR,kEAAA;EACQ,0DAAA;EACR,4DAAA;EACQ,oDAAA;EACR,gFAAA;EACQ,wEAAA;EACR,gGAAA;EACQ,wFAAA;ACqCV;;ADnCA;EACE,+BAAA;EACQ,uBAAA;EACR,sDAAA;EACQ,8CAAA;EACR,kEAAA;EACQ,0DAAA;EACR,4DAAA;EACQ,oDAAA;EACR,gFAAA;EACQ,wEAAA;EACR,2FAAA;EACQ,mFAAA;ACsCV;;ADpCA;EACE,oCAAA;EACQ,4BAAA;EACR,sDAAA;EACQ,8CAAA;EACR,kEAAA;EACQ,0DAAA;EACR,4DAAA;EACQ,oDAAA;EACR,gFAAA;EACQ,wEAAA;EACR,2FAAA;EACQ,mFAAA;ACuCV;;ADrCA;EACE,+BAAA;EACQ,uBAAA;EACR,sDAAA;EACQ,8CAAA;EACR,kEAAA;EACQ,0DAAA;EACR,4DAAA;EACQ,oDAAA;EACR,gFAAA;EACQ,wEAAA;EACR,0EAAA;EACQ,kEAAA;ACwCV;;ADtCA;EACE,gCAAA;EACQ,wBAAA;EACR,sDAAA;EACQ,8CAAA;EACR,kEAAA;EACQ,0DAAA;EACR,4DAAA;EACQ,oDAAA;EACR,gFAAA;EACQ,wEAAA;EACR,qEAAA;EACQ,6DAAA;ACyCV;;ADvCA;EACE,+BAAA;EACQ,uBAAA;EACR,sDAAA;EACQ,8CAAA;EACR,kEAAA;EACQ,0DAAA;EACR,4DAAA;EACQ,oDAAA;EACR,gFAAA;EACQ,wEAAA;EACR,qEAAA;EACQ,6DAAA;AC0CV;;ADxCA;EACE,iCAAA;AC2CF;;ADzCA;;EAEE,+BAAA;EACQ,uBAAA;EACR,kEAAA;EACQ,0DAAA;EACR,4DAAA;EACQ,oDAAA;EACR,gFAAA;EACQ,wEAAA;EACR,uEAAA;EACQ,+DAAA;AC4CV;;AD1CA;EACE;;;;;;;;;IASE,6BAAA;IACQ,qBAAA;IACR,+BAAA;IACQ,uBAAA;IACR,oCAAA;IACQ,4BAAA;IACR,4BAAA;IACQ,oBAAA;IACR,+BAAA;IACQ,uBAAA;EC6CV;AACF;AD5CA;EACE;IACE,2BAAA;IACQ,mBAAA;EC8CV;ED7CA;IACE,oDAAA;IACQ,4CAAA;EC+CV;AACF;AD9CA;EACE;IACE,2BAAA;IACQ,mBAAA;ECgDV;ED/CA;IACE,oDAAA;IACQ,4CAAA;ECiDV;AACF;ADhDA;EACE;IACE,4CAAA;IACQ,oCAAA;ECkDV;EDjDA;IACE,gHAAA;IACQ,wGAAA;ECmDV;EDlDA;IACE,4IAAA;IACQ,oIAAA;ECoDV;EDnDA;IACE,gHAAA;IACQ,wGAAA;ECqDV;EDpDA;IACE,6EAAA;IACQ,qEAAA;ECsDV;EDrDA;IACE,4CAAA;IACQ,oCAAA;ECuDV;EDtDA;IACE,4CAAA;IACQ,oCAAA;ECwDV;AACF;ADvDA;EACE;IACE,4CAAA;IACQ,oCAAA;ECyDV;EDxDA;IACE,gHAAA;IACQ,wGAAA;EC0DV;EDzDA;IACE,4IAAA;IACQ,oIAAA;EC2DV;ED1DA;IACE,gHAAA;IACQ,wGAAA;EC4DV;ED3DA;IACE,6EAAA;IACQ,qEAAA;EC6DV;ED5DA;IACE,4CAAA;IACQ,oCAAA;EC8DV;ED7DA;IACE,4CAAA;IACQ,oCAAA;EC+DV;AACF;AD9DA;EACE;IACE,oCAAA;ECgEF;AACF;AD/DA;EACE;IACE,oCAAA;ECiEF;AACF;ADhEA;EACE;IACE,yCAAA;IACA,2BAAA;IACQ,mBAAA;ECkEV;EDjEA;IACE,UAAA;IACA,0DAAA;IACQ,kDAAA;ECmEV;AACF;ADlEA;EACE;IACE,yCAAA;IACA,2BAAA;IACQ,mBAAA;ECoEV;EDnEA;IACE,UAAA;IACA,0DAAA;IACQ,kDAAA;ECqEV;AACF;ADpEA;EACE;IACE,yHAAA;IACQ,iHAAA;ECsEV;AACF;ADrEA;EACE;IACE,yHAAA;IACQ,iHAAA;ECuEV;AACF;ADtEA;EACE;IACE,iCAAA;IACQ,yBAAA;ECwEV;EDvEA;IACE,gCAAA;IACQ,wBAAA;ECyEV;EDxEA;IACE,iCAAA;IACQ,yBAAA;EC0EV;EDzEA;IACE,gCAAA;IACQ,wBAAA;EC2EV;ED1EA;IACE,iCAAA;IACQ,yBAAA;EC4EV;ED3EA;IACE,gCAAA;IACQ,wBAAA;EC6EV;ED5EA;IACE,iCAAA;IACQ,yBAAA;EC8EV;ED7EA;IACE,gCAAA;IACQ,wBAAA;EC+EV;ED9EA;IACE,+BAAA;IACQ,uBAAA;ECgFV;AACF;AD/EA;EACE;IACE,iCAAA;IACQ,yBAAA;ECiFV;EDhFA;IACE,gCAAA;IACQ,wBAAA;ECkFV;EDjFA;IACE,iCAAA;IACQ,yBAAA;ECmFV;EDlFA;IACE,gCAAA;IACQ,wBAAA;ECoFV;EDnFA;IACE,iCAAA;IACQ,yBAAA;ECqFV;EDpFA;IACE,gCAAA;IACQ,wBAAA;ECsFV;EDrFA;IACE,iCAAA;IACQ,yBAAA;ECuFV;EDtFA;IACE,gCAAA;IACQ,wBAAA;ECwFV;EDvFA;IACE,+BAAA;IACQ,uBAAA;ECyFV;AACF;ADxFA;EACE;IACE,+BAAA;IACQ,uBAAA;EC0FV;EDzFA;IACE,iCAAA;IACQ,yBAAA;EC2FV;AACF;AD1FA;EACE;IACE,+BAAA;IACQ,uBAAA;EC4FV;ED3FA;IACE,iCAAA;IACQ,yBAAA;EC6FV;AACF;AD5FA;EACE,gCAAA;EACQ,wBAAA;AC8FV;;AD5FA;EACE,iCAAA;EACQ,yBAAA;AC+FV;;AD7FA;EACE,iCAAA;EACQ,yBAAA;ACgGV;;AD9FA;EACE,+BAAA;EACQ,uBAAA;ACiGV;;AD/FA;EACE,+BAAA;EACQ,uBAAA;ACkGV;;ADhGA;;EAEE,gCAAA;EACQ,wBAAA;ACmGV;;ADjGA;EACE,uDAAA;EACQ,+CAAA;ACoGV;;ADlGA;EACE,qBAAA;EACA,WAAA;EACA,gBAAA;EACA,kBAAA;EACA,sBAAA;EACA,YAAA;ACqGF;;ADnGA;;EAEE,OAAA;EACA,kBAAA;EACA,kBAAA;EACA,WAAA;EACA,sCAAA;ACsGF;;ADpGA;EACE,oBAAA;ACuGF;;ADrGA;EACE,cAAA;ACwGF;;ADtGA;EACE,8BAAA;ACyGF;;ADvGA;gEAAA;AAGA;EACE,YAAA;ACyGF;;ADvGA;EACE,YAAA;AC0GF;;ADxGA;EACE,YAAA;AC2GF;;ADzGA;EACE,YAAA;AC4GF;;AD1GA;EACE,YAAA;AC6GF;;AD3GA;EACE,YAAA;AC8GF;;AD5GA;EACE,YAAA;AC+GF;;AD7GA;EACE,YAAA;ACgHF;;AD9GA;EACE,YAAA;ACiHF;;AD/GA;EACE,YAAA;ACkHF;;ADhHA;EACE,gBAAA;ACmHF;;ADjHA;EACE,gBAAA;ACoHF;;ADlHA;EACE,gBAAA;ACqHF;;ADnHA;EACE,gBAAA;ACsHF;;ADpHA;EACE,YAAA;ACuHF;;ADrHA;EACE,gBAAA;ACwHF;;ADtHA;EACE,gBAAA;ACyHF;;ADvHA;EACE,gBAAA;AC0HF;;ADxHA;EACE,gBAAA;AC2HF;;ADzHA;EACE,gBAAA;AC4HF;;AD1HA;EACE,gBAAA;AC6HF;;AD3HA;EACE,gBAAA;AC8HF;;AD5HA;EACE,gBAAA;AC+HF;;AD7HA;EACE,gBAAA;ACgIF;;AD9HA;EACE,gBAAA;ACiIF;;AD/HA;EACE,gBAAA;ACkIF;;ADhIA;EACE,gBAAA;ACmIF;;ADjIA;EACE,gBAAA;ACoIF;;ADlIA;EACE,gBAAA;ACqIF;;ADnIA;EACE,gBAAA;ACsIF;;ADpIA;EACE,gBAAA;ACuIF;;ADrIA;EACE,gBAAA;ACwIF;;ADtIA;EACE,gBAAA;ACyIF;;ADvIA;EACE,gBAAA;AC0IF;;ADxIA;EACE,gBAAA;AC2IF;;ADzIA;EACE,gBAAA;AC4IF;;AD1IA;EACE,gBAAA;AC6IF;;AD3IA;EACE,gBAAA;AC8IF;;AD5IA;EACE,gBAAA;AC+IF;;AD7IA;EACE,gBAAA;ACgJF;;AD9IA;EACE,gBAAA;ACiJF;;AD/IA;EACE,gBAAA;ACkJF;;ADhJA;EACE,gBAAA;ACmJF;;ADjJA;EACE,gBAAA;ACoJF;;ADlJA;EACE,gBAAA;ACqJF;;ADnJA;EACE,gBAAA;ACsJF;;ADpJA;EACE,gBAAA;ACuJF;;ADrJA;EACE,gBAAA;ACwJF;;ADtJA;EACE,gBAAA;ACyJF;;ADvJA;EACE,gBAAA;AC0JF;;ADxJA;EACE,gBAAA;AC2JF;;ADzJA;EACE,gBAAA;AC4JF;;AD1JA;EACE,gBAAA;AC6JF;;AD3JA;EACE,gBAAA;AC8JF;;AD5JA;EACE,gBAAA;AC+JF;;AD7JA;EACE,gBAAA;ACgKF;;AD9JA;EACE,gBAAA;ACiKF;;AD/JA;EACE,gBAAA;ACkKF;;ADhKA;EACE,gBAAA;ACmKF;;ADjKA;EACE,gBAAA;ACoKF;;ADlKA;EACE,gBAAA;ACqKF;;ADnKA;EACE,gBAAA;ACsKF;;ADpKA;EACE,gBAAA;ACuKF;;ADrKA;EACE,gBAAA;ACwKF;;ADtKA;EACE,gBAAA;ACyKF;;ADvKA;EACE,gBAAA;AC0KF;;ADxKA;EACE,gBAAA;AC2KF;;ADzKA;EACE,gBAAA;AC4KF;;AD1KA;EACE,gBAAA;AC6KF;;AD3KA;EACE,gBAAA;AC8KF;;AD5KA;EACE,gBAAA;AC+KF;;AD7KA;EACE,gBAAA;ACgLF;;AD9KA;EACE,gBAAA;ACiLF;;AD/KA;EACE,gBAAA;ACkLF;;ADhLA;EACE,gBAAA;ACmLF;;ADjLA;EACE,gBAAA;ACoLF;;ADlLA;EACE,gBAAA;ACqLF;;ADnLA;EACE,gBAAA;ACsLF;;ADpLA;EACE,gBAAA;ACuLF;;ADrLA;EACE,gBAAA;ACwLF;;ADtLA;EACE,gBAAA;ACyLF;;ADvLA;EACE,gBAAA;AC0LF;;ADxLA;EACE,gBAAA;AC2LF;;ADzLA;EACE,gBAAA;AC4LF;;AD1LA;EACE,gBAAA;AC6LF;;AD3LA;EACE,gBAAA;AC8LF;;AD5LA;EACE,gBAAA;AC+LF;;AD7LA;EACE,gBAAA;ACgMF;;AD9LA;EACE,gBAAA;ACiMF;;AD/LA;EACE,gBAAA;ACkMF;;ADhMA;EACE,gBAAA;ACmMF;;ADjMA;EACE,gBAAA;ACoMF;;ADlMA;EACE,gBAAA;ACqMF;;ADnMA;EACE,gBAAA;ACsMF;;ADpMA;EACE,gBAAA;ACuMF;;ADrMA;EACE,gBAAA;ACwMF;;ADtMA;EACE,gBAAA;ACyMF;;ADvMA;EACE,gBAAA;AC0MF;;ADxMA;EACE,gBAAA;AC2MF;;ADzMA;EACE,gBAAA;AC4MF;;AD1MA;EACE,gBAAA;AC6MF;;AD3MA;EACE,gBAAA;AC8MF;;AD5MA;EACE,gBAAA;AC+MF;;AD7MA;EACE,gBAAA;ACgNF;;AD9MA;EACE,gBAAA;ACiNF;;AD/MA;EACE,gBAAA;ACkNF;;ADhNA;EACE,YAAA;ACmNF;;ADjNA;EACE,gBAAA;ACoNF;;ADlNA;EACE,gBAAA;ACqNF;;ADnNA;EACE,gBAAA;ACsNF;;ADpNA;EACE,gBAAA;ACuNF;;ADrNA;EACE,gBAAA;ACwNF;;ADtNA;EACE,gBAAA;ACyNF;;ADvNA;EACE,gBAAA;AC0NF;;ADxNA;EACE,gBAAA;AC2NF;;ADzNA;EACE,gBAAA;AC4NF;;AD1NA;EACE,gBAAA;AC6NF;;AD3NA;EACE,gBAAA;AC8NF;;AD5NA;EACE,gBAAA;AC+NF;;AD7NA;EACE,gBAAA;ACgOF;;AD9NA;EACE,gBAAA;ACiOF;;AD/NA;EACE,gBAAA;ACkOF;;ADhOA;EACE,gBAAA;ACmOF;;ADjOA;EACE,gBAAA;ACoOF;;ADlOA;EACE,gBAAA;ACqOF;;ADnOA;EACE,gBAAA;ACsOF;;ADpOA;EACE,gBAAA;ACuOF;;ADrOA;EACE,gBAAA;ACwOF;;ADtOA;EACE,gBAAA;ACyOF;;ADvOA;EACE,gBAAA;AC0OF;;ADxOA;EACE,gBAAA;AC2OF;;ADzOA;EACE,gBAAA;AC4OF;;AD1OA;EACE,gBAAA;AC6OF;;AD3OA;EACE,gBAAA;AC8OF;;AD5OA;EACE,gBAAA;AC+OF;;AD7OA;EACE,gBAAA;ACgPF;;AD9OA;EACE,gBAAA;ACiPF;;AD/OA;EACE,gBAAA;ACkPF;;ADhPA;EACE,gBAAA;ACmPF;;ADjPA;EACE,gBAAA;ACoPF;;ADlPA;EACE,gBAAA;ACqPF;;ADnPA;EACE,YAAA;ACsPF;;ADpPA;EACE,gBAAA;ACuPF;;ADrPA;EACE,gBAAA;ACwPF;;ADtPA;EACE,gBAAA;ACyPF;;ADvPA;EACE,gBAAA;AC0PF;;ADxPA;EACE,gBAAA;AC2PF;;ADzPA;EACE,gBAAA;AC4PF;;AD1PA;EACE,gBAAA;AC6PF;;AD3PA;EACE,gBAAA;AC8PF;;AD5PA;EACE,gBAAA;AC+PF;;AD7PA;EACE,gBAAA;ACgQF;;AD9PA;EACE,gBAAA;ACiQF;;AD/PA;EACE,gBAAA;ACkQF;;ADhQA;EACE,gBAAA;ACmQF;;ADjQA;EACE,gBAAA;ACoQF;;ADlQA;EACE,gBAAA;ACqQF;;ADnQA;EACE,gBAAA;ACsQF;;ADpQA;EACE,gBAAA;ACuQF;;ADrQA;EACE,gBAAA;ACwQF;;ADtQA;EACE,gBAAA;ACyQF;;ADvQA;EACE,gBAAA;AC0QF;;ADxQA;EACE,gBAAA;AC2QF;;ADzQA;EACE,gBAAA;AC4QF;;AD1QA;EACE,gBAAA;AC6QF;;AD3QA;EACE,gBAAA;AC8QF;;AD5QA;EACE,gBAAA;AC+QF;;AD7QA;EACE,gBAAA;ACgRF;;AD9QA;EACE,gBAAA;ACiRF;;AD/QA;EACE,gBAAA;ACkRF;;ADhRA;EACE,gBAAA;ACmRF;;ADjRA;EACE,gBAAA;ACoRF;;ADlRA;EACE,gBAAA;ACqRF;;ADnRA;EACE,gBAAA;ACsRF;;ADpRA;EACE,gBAAA;ACuRF;;ADrRA;EACE,gBAAA;ACwRF;;ADtRA;EACE,gBAAA;ACyRF;;ADvRA;EACE,gBAAA;AC0RF;;ADxRA;EACE,gBAAA;AC2RF;;ADzRA;EACE,gBAAA;AC4RF;;AD1RA;EACE,gBAAA;AC6RF;;AD3RA;EACE,gBAAA;AC8RF;;AD5RA;EACE,gBAAA;AC+RF;;AD7RA;EACE,gBAAA;ACgSF;;AD9RA;EACE,gBAAA;ACiSF;;AD/RA;EACE,gBAAA;ACkSF;;ADhSA;EACE,gBAAA;ACmSF;;ADjSA;EACE,gBAAA;ACoSF;;ADlSA;EACE,gBAAA;ACqSF;;ADnSA;EACE,gBAAA;ACsSF;;ADpSA;EACE,gBAAA;ACuSF;;ADrSA;EACE,gBAAA;ACwSF;;ADtSA;EACE,gBAAA;ACySF;;ADvSA;EACE,gBAAA;AC0SF;;ADxSA;EACE,gBAAA;AC2SF;;ADzSA;EACE,gBAAA;AC4SF;;AD1SA;EACE,gBAAA;AC6SF;;AD3SA;EACE,gBAAA;AC8SF;;AD5SA;EACE,gBAAA;AC+SF;;AD7SA;EACE,gBAAA;ACgTF;;AD9SA;EACE,gBAAA;ACiTF;;AD/SA;EACE,gBAAA;ACkTF;;ADhTA;EACE,gBAAA;ACmTF;;ADjTA;EACE,gBAAA;ACoTF;;ADlTA;EACE,gBAAA;ACqTF;;ADnTA;EACE,gBAAA;ACsTF;;ADpTA;EACE,gBAAA;ACuTF;;ADrTA;EACE,gBAAA;ACwTF;;ADtTA;EACE,gBAAA;ACyTF;;ADvTA;EACE,gBAAA;AC0TF;;ADxTA;EACE,gBAAA;AC2TF;;ADzTA;EACE,gBAAA;AC4TF;;AD1TA;EACE,gBAAA;AC6TF;;AD3TA;EACE,gBAAA;AC8TF;;AD5TA;EACE,gBAAA;AC+TF;;AD7TA;EACE,gBAAA;ACgUF;;AD9TA;EACE,gBAAA;ACiUF;;AD/TA;EACE,gBAAA;ACkUF;;ADhUA;EACE,gBAAA;ACmUF;;ADjUA;EACE,gBAAA;ACoUF;;ADlUA;EACE,gBAAA;ACqUF;;ADnUA;EACE,gBAAA;ACsUF;;ADpUA;EACE,gBAAA;ACuUF;;ADrUA;EACE,gBAAA;ACwUF;;ADtUA;EACE,gBAAA;ACyUF;;ADvUA;EACE,gBAAA;AC0UF;;ADxUA;EACE,gBAAA;AC2UF;;ADzUA;EACE,gBAAA;AC4UF;;AD1UA;EACE,gBAAA;AC6UF;;AD3UA;EACE,gBAAA;AC8UF;;AD5UA;EACE,gBAAA;AC+UF;;AD7UA;EACE,gBAAA;ACgVF;;AD9UA;EACE,gBAAA;ACiVF;;AD/UA;EACE,gBAAA;ACkVF;;ADhVA;EACE,gBAAA;ACmVF;;ADjVA;EACE,gBAAA;ACoVF;;ADlVA;EACE,gBAAA;ACqVF;;ADnVA;EACE,gBAAA;ACsVF;;ADpVA;EACE,gBAAA;ACuVF;;ADrVA;EACE,gBAAA;ACwVF;;ADtVA;EACE,gBAAA;ACyVF;;ADvVA;EACE,YAAA;AC0VF;;ADxVA;EACE,gBAAA;AC2VF;;ADzVA;EACE,gBAAA;AC4VF;;AD1VA;EACE,gBAAA;AC6VF;;AD3VA;EACE,gBAAA;AC8VF;;AD5VA;EACE,gBAAA;AC+VF;;AD7VA;EACE,gBAAA;ACgWF;;AD9VA;EACE,gBAAA;ACiWF;;AD/VA;EACE,gBAAA;ACkWF;;ADhWA;EACE,gBAAA;ACmWF;;ADjWA;EACE,gBAAA;ACoWF;;ADlWA;EACE,gBAAA;ACqWF;;ADnWA;EACE,gBAAA;ACsWF;;ADpWA;EACE,gBAAA;ACuWF;;ADrWA;EACE,gBAAA;ACwWF;;ADtWA;EACE,gBAAA;ACyWF;;ADvWA;EACE,gBAAA;AC0WF;;ADxWA;EACE,gBAAA;AC2WF;;ADzWA;EACE,gBAAA;AC4WF;;AD1WA;EACE,gBAAA;AC6WF;;AD3WA;EACE,gBAAA;AC8WF;;AD5WA;EACE,gBAAA;AC+WF;;AD7WA;EACE,gBAAA;ACgXF;;AD9WA;EACE,gBAAA;ACiXF;;AD/WA;EACE,gBAAA;ACkXF;;ADhXA;EACE,gBAAA;ACmXF;;ADjXA;EACE,gBAAA;ACoXF;;ADlXA;EACE,gBAAA;ACqXF;;ADnXA;EACE,gBAAA;ACsXF;;ADpXA;EACE,gBAAA;ACuXF;;ADrXA;EACE,gBAAA;ACwXF;;ADtXA;EACE,gBAAA;ACyXF;;ADvXA;EACE,gBAAA;AC0XF;;ADxXA;EACE,gBAAA;AC2XF;;ADzXA;EACE,gBAAA;AC4XF;;AD1XA;EACE,gBAAA;AC6XF;;AD3XA;EACE,gBAAA;AC8XF;;AD5XA;EACE,gBAAA;AC+XF;;AD7XA;EACE,gBAAA;ACgYF;;AD9XA;EACE,gBAAA;ACiYF;;AD/XA;EACE,gBAAA;ACkYF;;ADhYA;EACE,gBAAA;ACmYF;;ADjYA;EACE,gBAAA;ACoYF;;ADlYA;EACE,gBAAA;ACqYF;;ADnYA;EACE,gBAAA;ACsYF;;ADpYA;EACE,gBAAA;ACuYF;;ADrYA;EACE,gBAAA;ACwYF;;ADtYA;EACE,gBAAA;ACyYF;;ADvYA;EACE,gBAAA;AC0YF;;ADxYA;EACE,gBAAA;AC2YF;;ADzYA;EACE,gBAAA;AC4YF;;AD1YA;EACE,gBAAA;AC6YF;;AD3YA;EACE,gBAAA;AC8YF;;AD5YA;EACE,gBAAA;AC+YF;;AD7YA;EACE,gBAAA;ACgZF;;AD9YA;EACE,gBAAA;ACiZF;;AD/YA;EACE,gBAAA;ACkZF;;ADhZA;EACE,gBAAA;ACmZF;;ADjZA;EACE,gBAAA;ACoZF;;ADlZA;EACE,gBAAA;ACqZF;;ADnZA;EACE,gBAAA;ACsZF;;ADpZA;EACE,gBAAA;ACuZF;;ADrZA;EACE,gBAAA;ACwZF;;ADtZA;EACE,gBAAA;ACyZF;;ADvZA;EACE,gBAAA;AC0ZF;;ADxZA;EACE,gBAAA;AC2ZF;;ADzZA;EACE,gBAAA;AC4ZF;;AD1ZA;EACE,gBAAA;AC6ZF;;AD3ZA;EACE,gBAAA;AC8ZF;;AD5ZA;EACE,gBAAA;AC+ZF;;AD7ZA;EACE,gBAAA;ACgaF;;AD9ZA;EACE,gBAAA;ACiaF;;AD/ZA;EACE,gBAAA;ACkaF;;ADhaA;EACE,gBAAA;ACmaF;;ADjaA;EACE,gBAAA;ACoaF;;ADlaA;EACE,gBAAA;ACqaF;;ADnaA;EACE,gBAAA;ACsaF;;ADpaA;EACE,gBAAA;ACuaF;;ADraA;EACE,gBAAA;ACwaF;;ADtaA;EACE,gBAAA;ACyaF;;ADvaA;EACE,gBAAA;AC0aF;;ADxaA;EACE,gBAAA;AC2aF;;ADzaA;EACE,gBAAA;AC4aF;;AD1aA;EACE,gBAAA;AC6aF;;AD3aA;EACE,gBAAA;AC8aF;;AD5aA;EACE,YAAA;AC+aF;;AD7aA;EACE,gBAAA;ACgbF;;AD9aA;EACE,gBAAA;ACibF;;AD/aA;EACE,gBAAA;ACkbF;;ADhbA;EACE,gBAAA;ACmbF;;ADjbA;EACE,gBAAA;ACobF;;ADlbA;EACE,gBAAA;ACqbF;;ADnbA;EACE,YAAA;ACsbF;;ADpbA;EACE,gBAAA;ACubF;;ADrbA;EACE,gBAAA;ACwbF;;ADtbA;EACE,gBAAA;ACybF;;ADvbA;EACE,gBAAA;AC0bF;;ADxbA;EACE,gBAAA;AC2bF;;ADzbA;EACE,gBAAA;AC4bF;;AD1bA;EACE,gBAAA;AC6bF;;AD3bA;EACE,gBAAA;AC8bF;;AD5bA;EACE,gBAAA;AC+bF;;AD7bA;EACE,gBAAA;ACgcF;;AD9bA;EACE,gBAAA;ACicF;;AD/bA;EACE,gBAAA;ACkcF;;ADhcA;EACE,gBAAA;ACmcF;;ADjcA;EACE,gBAAA;ACocF;;ADlcA;EACE,gBAAA;ACqcF;;ADncA;EACE,gBAAA;ACscF;;ADpcA;EACE,gBAAA;ACucF;;ADrcA;EACE,gBAAA;ACwcF;;ADtcA;EACE,YAAA;ACycF;;ADvcA;EACE,YAAA;AC0cF;;ADxcA;EACE,gBAAA;AC2cF;;ADzcA;EACE,gBAAA;AC4cF;;AD1cA;EACE,gBAAA;AC6cF;;AD3cA;EACE,gBAAA;AC8cF;;AD5cA;EACE,gBAAA;AC+cF;;AD7cA;EACE,gBAAA;ACgdF;;AD9cA;EACE,gBAAA;ACidF;;AD/cA;EACE,gBAAA;ACkdF;;ADhdA;EACE,gBAAA;ACmdF;;ADjdA;EACE,gBAAA;ACodF;;ADldA;EACE,gBAAA;ACqdF;;ADndA;EACE,gBAAA;ACsdF;;ADpdA;EACE,gBAAA;ACudF;;ADrdA;EACE,gBAAA;ACwdF;;ADtdA;EACE,gBAAA;ACydF;;ADvdA;EACE,gBAAA;AC0dF;;ADxdA;EACE,gBAAA;AC2dF;;ADzdA;EACE,gBAAA;AC4dF;;AD1dA;EACE,gBAAA;AC6dF;;AD3dA;EACE,gBAAA;AC8dF;;AD5dA;EACE,gBAAA;AC+dF;;AD7dA;EACE,gBAAA;ACgeF;;AD9dA;EACE,gBAAA;ACieF;;AD/dA;EACE,gBAAA;ACkeF;;ADheA;EACE,gBAAA;ACmeF;;ADjeA;EACE,gBAAA;ACoeF;;ADleA;EACE,gBAAA;ACqeF;;ADneA;EACE,gBAAA;ACseF;;ADpeA;EACE,gBAAA;ACueF;;ADreA;EACE,gBAAA;ACweF;;ADteA;EACE,gBAAA;ACyeF;;ADveA;EACE,gBAAA;AC0eF;;ADxeA;EACE,gBAAA;AC2eF;;ADzeA;EACE,gBAAA;AC4eF;;AD1eA;EACE,gBAAA;AC6eF;;AD3eA;EACE,YAAA;AC8eF;;AD5eA;EACE,gBAAA;AC+eF;;AD7eA;EACE,gBAAA;ACgfF;;AD9eA;EACE,gBAAA;ACifF;;AD/eA;EACE,gBAAA;ACkfF;;ADhfA;EACE,gBAAA;ACmfF;;ADjfA;EACE,gBAAA;ACofF;;ADlfA;EACE,gBAAA;ACqfF;;ADnfA;EACE,gBAAA;ACsfF;;ADpfA;EACE,gBAAA;ACufF;;ADrfA;EACE,gBAAA;ACwfF;;ADtfA;EACE,gBAAA;ACyfF;;ADvfA;EACE,gBAAA;AC0fF;;ADxfA;EACE,gBAAA;AC2fF;;ADzfA;EACE,gBAAA;AC4fF;;AD1fA;EACE,gBAAA;AC6fF;;AD3fA;EACE,gBAAA;AC8fF;;AD5fA;EACE,gBAAA;AC+fF;;AD7fA;EACE,gBAAA;ACggBF;;AD9fA;EACE,gBAAA;ACigBF;;AD/fA;EACE,YAAA;ACkgBF;;ADhgBA;EACE,gBAAA;ACmgBF;;ADjgBA;EACE,gBAAA;ACogBF;;ADlgBA;EACE,gBAAA;ACqgBF;;ADngBA;EACE,gBAAA;ACsgBF;;ADpgBA;EACE,gBAAA;ACugBF;;ADrgBA;EACE,gBAAA;ACwgBF;;ADtgBA;EACE,gBAAA;ACygBF;;ADvgBA;EACE,gBAAA;AC0gBF;;ADxgBA;EACE,gBAAA;AC2gBF;;ADzgBA;EACE,gBAAA;AC4gBF;;AD1gBA;EACE,gBAAA;AC6gBF;;AD3gBA;EACE,gBAAA;AC8gBF;;AD5gBA;EACE,gBAAA;AC+gBF;;AD7gBA;EACE,gBAAA;ACghBF;;AD9gBA;EACE,gBAAA;ACihBF;;AD/gBA;EACE,gBAAA;ACkhBF;;ADhhBA;EACE,gBAAA;ACmhBF;;ADjhBA;EACE,gBAAA;ACohBF;;ADlhBA;EACE,gBAAA;ACqhBF;;ADnhBA;EACE,gBAAA;ACshBF;;ADphBA;EACE,gBAAA;ACuhBF;;ADrhBA;EACE,gBAAA;ACwhBF;;ADthBA;EACE,gBAAA;ACyhBF;;ADvhBA;EACE,gBAAA;AC0hBF;;ADxhBA;EACE,gBAAA;AC2hBF;;ADzhBA;EACE,gBAAA;AC4hBF;;AD1hBA;EACE,gBAAA;AC6hBF;;AD3hBA;EACE,gBAAA;AC8hBF;;AD5hBA;EACE,gBAAA;AC+hBF;;AD7hBA;EACE,gBAAA;ACgiBF;;AD9hBA;EACE,gBAAA;ACiiBF;;AD/hBA;EACE,gBAAA;ACkiBF;;ADhiBA;EACE,gBAAA;ACmiBF;;ADjiBA;EACE,gBAAA;ACoiBF;;ADliBA;EACE,gBAAA;ACqiBF;;ADniBA;EACE,gBAAA;ACsiBF;;ADpiBA;EACE,gBAAA;ACuiBF;;ADriBA;EACE,gBAAA;ACwiBF;;ADtiBA;EACE,gBAAA;ACyiBF;;ADviBA;EACE,gBAAA;AC0iBF;;ADxiBA;EACE,gBAAA;AC2iBF;;ADziBA;EACE,gBAAA;AC4iBF;;AD1iBA;EACE,gBAAA;AC6iBF;;AD3iBA;EACE,gBAAA;AC8iBF;;AD5iBA;EACE,gBAAA;AC+iBF;;AD7iBA;EACE,gBAAA;ACgjBF;;AD9iBA;EACE,gBAAA;ACijBF;;AD/iBA;EACE,gBAAA;ACkjBF;;ADhjBA;EACE,gBAAA;ACmjBF;;ADjjBA;EACE,gBAAA;ACojBF;;ADljBA;EACE,gBAAA;ACqjBF;;ADnjBA;EACE,gBAAA;ACsjBF;;ADpjBA;EACE,gBAAA;ACujBF;;ADrjBA;EACE,gBAAA;ACwjBF;;ADtjBA;EACE,gBAAA;ACyjBF;;ADvjBA;EACE,gBAAA;AC0jBF;;ADxjBA;EACE,gBAAA;AC2jBF;;ADzjBA;EACE,gBAAA;AC4jBF;;AD1jBA;EACE,gBAAA;AC6jBF;;AD3jBA;EACE,gBAAA;AC8jBF;;AD5jBA;EACE,gBAAA;AC+jBF;;AD7jBA;EACE,gBAAA;ACgkBF;;AD9jBA;EACE,gBAAA;ACikBF;;AD/jBA;EACE,gBAAA;ACkkBF;;ADhkBA;EACE,gBAAA;ACmkBF;;ADjkBA;EACE,gBAAA;ACokBF;;ADlkBA;EACE,gBAAA;ACqkBF;;ADnkBA;EACE,gBAAA;ACskBF;;ADpkBA;EACE,gBAAA;ACukBF;;ADrkBA;EACE,gBAAA;ACwkBF;;ADtkBA;EACE,gBAAA;ACykBF;;ADvkBA;EACE,gBAAA;AC0kBF;;ADxkBA;EACE,gBAAA;AC2kBF;;ADzkBA;EACE,gBAAA;AC4kBF;;AD1kBA;EACE,gBAAA;AC6kBF;;AD3kBA;EACE,gBAAA;AC8kBF;;AD5kBA;EACE,gBAAA;AC+kBF;;AD7kBA;EACE,gBAAA;ACglBF;;AD9kBA;EACE,gBAAA;ACilBF;;AD/kBA;EACE,gBAAA;ACklBF;;ADhlBA;EACE,gBAAA;ACmlBF;;ADjlBA;EACE,YAAA;AColBF;;ADllBA;EACE,gBAAA;ACqlBF;;ADnlBA;EACE,gBAAA;ACslBF;;ADplBA;EACE,gBAAA;ACulBF;;ADrlBA;EACE,gBAAA;ACwlBF;;ADtlBA;EACE,gBAAA;ACylBF;;ADvlBA;EACE,gBAAA;AC0lBF;;ADxlBA;EACE,gBAAA;AC2lBF;;ADzlBA;EACE,gBAAA;AC4lBF;;AD1lBA;EACE,gBAAA;AC6lBF;;AD3lBA;EACE,gBAAA;AC8lBF;;AD5lBA;EACE,gBAAA;AC+lBF;;AD7lBA;EACE,gBAAA;ACgmBF;;AD9lBA;EACE,gBAAA;ACimBF;;AD/lBA;EACE,gBAAA;ACkmBF;;ADhmBA;EACE,gBAAA;ACmmBF;;ADjmBA;EACE,gBAAA;AComBF;;ADlmBA;EACE,gBAAA;ACqmBF;;ADnmBA;EACE,gBAAA;ACsmBF;;ADpmBA;EACE,gBAAA;ACumBF;;ADrmBA;EACE,gBAAA;ACwmBF;;ADtmBA;EACE,gBAAA;ACymBF;;ADvmBA;EACE,gBAAA;AC0mBF;;ADxmBA;EACE,gBAAA;AC2mBF;;ADzmBA;EACE,gBAAA;AC4mBF;;AD1mBA;EACE,gBAAA;AC6mBF;;AD3mBA;EACE,gBAAA;AC8mBF;;AD5mBA;EACE,gBAAA;AC+mBF;;AD7mBA;EACE,gBAAA;ACgnBF;;AD9mBA;EACE,gBAAA;ACinBF;;AD/mBA;EACE,gBAAA;ACknBF;;ADhnBA;EACE,gBAAA;ACmnBF;;ADjnBA;EACE,gBAAA;AConBF;;ADlnBA;EACE,gBAAA;ACqnBF;;ADnnBA;EACE,gBAAA;ACsnBF;;ADpnBA;EACE,gBAAA;ACunBF;;ADrnBA;EACE,gBAAA;ACwnBF;;ADtnBA;EACE,gBAAA;ACynBF;;ADvnBA;EACE,gBAAA;AC0nBF;;ADxnBA;EACE,gBAAA;AC2nBF;;ADznBA;EACE,gBAAA;AC4nBF;;AD1nBA;EACE,gBAAA;AC6nBF;;AD3nBA;EACE,gBAAA;AC8nBF;;AD5nBA;EACE,gBAAA;AC+nBF;;AD7nBA;EACE,gBAAA;ACgoBF;;AD9nBA;EACE,gBAAA;ACioBF;;AD/nBA;EACE,gBAAA;ACkoBF;;ADhoBA;EACE,gBAAA;ACmoBF;;ADjoBA;EACE,gBAAA;ACooBF;;ADloBA;EACE,gBAAA;ACqoBF;;ADnoBA;EACE,gBAAA;ACsoBF;;ADpoBA;EACE,gBAAA;ACuoBF;;ADroBA;EACE,gBAAA;ACwoBF;;ADtoBA;EACE,gBAAA;ACyoBF;;ADvoBA;EACE,gBAAA;AC0oBF;;ADxoBA;EACE,gBAAA;AC2oBF;;ADzoBA;EACE,gBAAA;AC4oBF;;AD1oBA;EACE,gBAAA;AC6oBF;;AD3oBA;EACE,gBAAA;AC8oBF;;AD5oBA;EACE,gBAAA;AC+oBF;;AD7oBA;EACE,gBAAA;ACgpBF;;AD9oBA;EACE,gBAAA;ACipBF;;AD/oBA;EACE,gBAAA;ACkpBF;;ADhpBA;EACE,gBAAA;ACmpBF;;ADjpBA;EACE,gBAAA;ACopBF;;ADlpBA;EACE,gBAAA;ACqpBF;;ADnpBA;EACE,gBAAA;ACspBF;;ADppBA;EACE,gBAAA;ACupBF;;ADrpBA;EACE,gBAAA;ACwpBF;;ADtpBA;EACE,gBAAA;ACypBF;;ADvpBA;EACE,gBAAA;AC0pBF;;ADxpBA;EACE,gBAAA;AC2pBF;;ADzpBA;EACE,gBAAA;AC4pBF;;AD1pBA;EACE,gBAAA;AC6pBF;;AD3pBA;EACE,gBAAA;AC8pBF;;AD5pBA;EACE,gBAAA;AC+pBF;;AD7pBA;EACE,gBAAA;ACgqBF;;AD9pBA;EACE,gBAAA;ACiqBF;;AD/pBA;EACE,gBAAA;ACkqBF;;ADhqBA;EACE,gBAAA;ACmqBF;;ADjqBA;EACE,gBAAA;ACoqBF;;ADlqBA;EACE,gBAAA;ACqqBF;;ADnqBA;EACE,gBAAA;ACsqBF;;ADpqBA;EACE,gBAAA;ACuqBF;;ADrqBA;EACE,gBAAA;ACwqBF;;ADtqBA;EACE,gBAAA;ACyqBF;;ADvqBA;EACE,gBAAA;AC0qBF;;ADxqBA;EACE,gBAAA;AC2qBF;;ADzqBA;EACE,gBAAA;AC4qBF;;AD1qBA;EACE,gBAAA;AC6qBF;;AD3qBA;EACE,gBAAA;AC8qBF;;AD5qBA;EACE,gBAAA;AC+qBF;;AD7qBA;EACE,gBAAA;ACgrBF;;AD9qBA;EACE,gBAAA;ACirBF;;AD/qBA;EACE,gBAAA;ACkrBF;;ADhrBA;EACE,gBAAA;ACmrBF;;ADjrBA;EACE,gBAAA;ACorBF;;ADlrBA;EACE,gBAAA;ACqrBF;;ADnrBA;EACE,gBAAA;ACsrBF;;ADprBA;EACE,gBAAA;ACurBF;;ADrrBA;EACE,gBAAA;ACwrBF;;ADtrBA;EACE,gBAAA;ACyrBF;;ADvrBA;EACE,gBAAA;AC0rBF;;ADxrBA;EACE,gBAAA;AC2rBF;;ADzrBA;EACE,gBAAA;AC4rBF;;AD1rBA;EACE,gBAAA;AC6rBF;;AD3rBA;EACE,gBAAA;AC8rBF;;AD5rBA;EACE,gBAAA;AC+rBF;;AD7rBA;EACE,gBAAA;ACgsBF;;AD9rBA;EACE,gBAAA;ACisBF;;AD/rBA;EACE,gBAAA;ACksBF;;ADhsBA;EACE,gBAAA;ACmsBF;;ADjsBA;EACE,gBAAA;ACosBF;;ADlsBA;EACE,gBAAA;ACqsBF;;ADnsBA;EACE,gBAAA;ACssBF;;ADpsBA;EACE,gBAAA;ACusBF;;ADrsBA;EACE,gBAAA;ACwsBF;;ADtsBA;EACE,gBAAA;ACysBF;;ADvsBA;EACE,gBAAA;AC0sBF;;ADxsBA;EACE,gBAAA;AC2sBF;;ADzsBA;EACE,gBAAA;AC4sBF;;AD1sBA;EACE,gBAAA;AC6sBF;;AD3sBA;EACE,gBAAA;AC8sBF;;AD5sBA;EACE,gBAAA;AC+sBF;;AD7sBA;EACE,gBAAA;ACgtBF;;AD9sBA;EACE,gBAAA;ACitBF;;AD/sBA;EACE,gBAAA;ACktBF;;ADhtBA;EACE,gBAAA;ACmtBF;;ADjtBA;EACE,gBAAA;ACotBF;;ADltBA;EACE,gBAAA;ACqtBF;;ADntBA;EACE,gBAAA;ACstBF;;ADptBA;EACE,gBAAA;ACutBF;;ADrtBA;EACE,gBAAA;ACwtBF;;ADttBA;EACE,gBAAA;ACytBF;;ADvtBA;EACE,gBAAA;AC0tBF;;ADxtBA;EACE,gBAAA;AC2tBF;;ADztBA;EACE,gBAAA;AC4tBF;;AD1tBA;EACE,gBAAA;AC6tBF;;AD3tBA;EACE,gBAAA;AC8tBF;;AD5tBA;EACE,gBAAA;AC+tBF;;AD7tBA;EACE,gBAAA;ACguBF;;AD9tBA;EACE,gBAAA;ACiuBF;;AD/tBA;EACE,gBAAA;ACkuBF;;ADhuBA;EACE,gBAAA;ACmuBF;;ADjuBA;EACE,gBAAA;ACouBF;;ADluBA;EACE,gBAAA;ACquBF;;ADnuBA;EACE,gBAAA;ACsuBF;;ADpuBA;EACE,gBAAA;ACuuBF;;ADruBA;EACE,gBAAA;ACwuBF;;ADtuBA;EACE,gBAAA;ACyuBF;;ADvuBA;EACE,gBAAA;AC0uBF;;ADxuBA;EACE,gBAAA;AC2uBF;;ADzuBA;EACE,gBAAA;AC4uBF;;AD1uBA;EACE,gBAAA;AC6uBF;;AD3uBA;EACE,gBAAA;AC8uBF;;AD5uBA;EACE,gBAAA;AC+uBF;;AD7uBA;EACE,gBAAA;ACgvBF;;AD9uBA;EACE,gBAAA;ACivBF;;AD/uBA;EACE,gBAAA;ACkvBF;;ADhvBA;EACE,gBAAA;ACmvBF;;ADjvBA;EACE,gBAAA;ACovBF;;ADlvBA;EACE,gBAAA;ACqvBF;;ADnvBA;EACE,gBAAA;ACsvBF;;ADpvBA;EACE,gBAAA;ACuvBF;;ADrvBA;EACE,gBAAA;ACwvBF;;ADtvBA;EACE,gBAAA;ACyvBF;;ADvvBA;EACE,gBAAA;AC0vBF;;ADxvBA;EACE,gBAAA;AC2vBF;;ADzvBA;EACE,gBAAA;AC4vBF;;AD1vBA;EACE,gBAAA;AC6vBF;;AD3vBA;EACE,gBAAA;AC8vBF;;AD5vBA;EACE,gBAAA;AC+vBF;;AD7vBA;EACE,gBAAA;ACgwBF;;AD9vBA;EACE,gBAAA;ACiwBF;;AD/vBA;EACE,gBAAA;ACkwBF;;ADhwBA;EACE,gBAAA;ACmwBF;;ADjwBA;EACE,gBAAA;ACowBF;;ADlwBA;EACE,gBAAA;ACqwBF;;ADnwBA;EACE,gBAAA;ACswBF;;ADpwBA;EACE,gBAAA;ACuwBF;;ADrwBA;EACE,gBAAA;ACwwBF;;ADtwBA;EACE,gBAAA;ACywBF;;ADvwBA;EACE,gBAAA;AC0wBF;;ADxwBA;EACE,gBAAA;AC2wBF;;ADzwBA;EACE,gBAAA;AC4wBF;;AD1wBA;EACE,gBAAA;AC6wBF;;AD3wBA;EACE,gBAAA;AC8wBF;;AD5wBA;EACE,gBAAA;AC+wBF;;AD7wBA;EACE,gBAAA;ACgxBF;;AD9wBA;EACE,gBAAA;ACixBF;;AD/wBA;EACE,gBAAA;ACkxBF;;ADhxBA;EACE,gBAAA;ACmxBF;;ADjxBA;EACE,gBAAA;ACoxBF;;ADlxBA;EACE,gBAAA;ACqxBF;;ADnxBA;EACE,gBAAA;ACsxBF;;ADpxBA;EACE,gBAAA;ACuxBF;;ADrxBA;EACE,gBAAA;ACwxBF;;ADtxBA;EACE,gBAAA;ACyxBF;;ADvxBA;EACE,gBAAA;AC0xBF;;ADxxBA;EACE,gBAAA;AC2xBF;;ADzxBA;EACE,gBAAA;AC4xBF;;AD1xBA;EACE,gBAAA;AC6xBF;;AD3xBA;EACE,gBAAA;AC8xBF;;AD5xBA;EACE,gBAAA;AC+xBF;;AD7xBA;EACE,gBAAA;ACgyBF;;AD9xBA;EACE,gBAAA;ACiyBF;;AD/xBA;EACE,gBAAA;ACkyBF;;ADhyBA;EACE,gBAAA;ACmyBF;;ADjyBA;EACE,gBAAA;ACoyBF;;ADlyBA;EACE,gBAAA;ACqyBF;;ADnyBA;EACE,gBAAA;ACsyBF;;ADpyBA;EACE,gBAAA;ACuyBF;;ADryBA;EACE,gBAAA;ACwyBF;;ADtyBA;EACE,gBAAA;ACyyBF;;ADvyBA;EACE,gBAAA;AC0yBF;;ADxyBA;EACE,gBAAA;AC2yBF;;ADzyBA;EACE,gBAAA;AC4yBF;;AD1yBA;EACE,gBAAA;AC6yBF;;AD3yBA;EACE,gBAAA;AC8yBF;;AD5yBA;EACE,gBAAA;AC+yBF;;AD7yBA;EACE,gBAAA;ACgzBF;;AD9yBA;EACE,gBAAA;ACizBF;;AD/yBA;EACE,gBAAA;ACkzBF;;ADhzBA;EACE,gBAAA;ACmzBF;;ADjzBA;EACE,gBAAA;ACozBF;;ADlzBA;EACE,gBAAA;ACqzBF;;ADnzBA;EACE,gBAAA;ACszBF;;ADpzBA;EACE,gBAAA;ACuzBF;;ADrzBA;EACE,gBAAA;ACwzBF;;ADtzBA;EACE,gBAAA;ACyzBF;;ADvzBA;EACE,gBAAA;AC0zBF;;ADxzBA;EACE,gBAAA;AC2zBF;;ADzzBA;EACE,gBAAA;AC4zBF;;AD1zBA;EACE,gBAAA;AC6zBF;;AD3zBA;EACE,gBAAA;AC8zBF;;AD5zBA;EACE,gBAAA;AC+zBF;;AD7zBA;EACE,gBAAA;ACg0BF;;AD9zBA;EACE,gBAAA;ACi0BF;;AD/zBA;EACE,gBAAA;ACk0BF;;ADh0BA;EACE,gBAAA;ACm0BF;;ADj0BA;EACE,gBAAA;ACo0BF;;ADl0BA;EACE,gBAAA;ACq0BF;;ADn0BA;EACE,gBAAA;ACs0BF;;ADp0BA;EACE,gBAAA;ACu0BF;;ADr0BA;EACE,gBAAA;ACw0BF;;ADt0BA;EACE,gBAAA;ACy0BF;;ADv0BA;EACE,gBAAA;AC00BF;;ADx0BA;EACE,gBAAA;AC20BF;;ADz0BA;EACE,gBAAA;AC40BF;;AD10BA;EACE,gBAAA;AC60BF;;AD30BA;EACE,gBAAA;AC80BF;;AD50BA;EACE,gBAAA;AC+0BF;;AD70BA;EACE,gBAAA;ACg1BF;;AD90BA;EACE,gBAAA;ACi1BF;;AD/0BA;EACE,gBAAA;ACk1BF;;ADh1BA;EACE,gBAAA;ACm1BF;;ADj1BA;EACE,gBAAA;ACo1BF;;ADl1BA;EACE,gBAAA;ACq1BF;;ADn1BA;EACE,gBAAA;ACs1BF;;ADp1BA;EACE,gBAAA;ACu1BF;;ADr1BA;EACE,gBAAA;ACw1BF;;ADt1BA;EACE,gBAAA;ACy1BF;;ADv1BA;EACE,gBAAA;AC01BF;;ADx1BA;EACE,gBAAA;AC21BF;;ADz1BA;EACE,gBAAA;AC41BF;;AD11BA;EACE,gBAAA;AC61BF;;AD31BA;EACE,gBAAA;AC81BF;;AD51BA;EACE,gBAAA;AC+1BF;;AD71BA;EACE,gBAAA;ACg2BF;;AD91BA;EACE,gBAAA;ACi2BF;;AD/1BA;EACE,YAAA;ACk2BF;;ADh2BA;EACE,gBAAA;ACm2BF;;ADj2BA;EACE,gBAAA;ACo2BF;;ADl2BA;EACE,gBAAA;ACq2BF;;ADn2BA;EACE,YAAA;ACs2BF;;ADp2BA;EACE,gBAAA;ACu2BF;;ADr2BA;EACE,gBAAA;ACw2BF;;ADt2BA;EACE,gBAAA;ACy2BF;;ADv2BA;EACE,gBAAA;AC02BF;;ADx2BA;EACE,YAAA;AC22BF;;ADz2BA;EACE,gBAAA;AC42BF;;AD12BA;EACE,gBAAA;AC62BF;;AD32BA;EACE,gBAAA;AC82BF;;AD52BA;EACE,gBAAA;AC+2BF;;AD72BA;EACE,gBAAA;ACg3BF;;AD92BA;EACE,gBAAA;ACi3BF;;AD/2BA;EACE,gBAAA;ACk3BF;;ADh3BA;EACE,gBAAA;ACm3BF;;ADj3BA;EACE,gBAAA;ACo3BF;;ADl3BA;EACE,gBAAA;ACq3BF;;ADn3BA;EACE,gBAAA;ACs3BF;;ADp3BA;EACE,gBAAA;ACu3BF;;ADr3BA;EACE,gBAAA;ACw3BF;;ADt3BA;EACE,gBAAA;ACy3BF;;ADv3BA;EACE,gBAAA;AC03BF;;ADx3BA;EACE,gBAAA;AC23BF;;ADz3BA;EACE,gBAAA;AC43BF;;AD13BA;EACE,gBAAA;AC63BF;;AD33BA;EACE,gBAAA;AC83BF;;AD53BA;EACE,gBAAA;AC+3BF;;AD73BA;EACE,gBAAA;ACg4BF;;AD93BA;EACE,gBAAA;ACi4BF;;AD/3BA;EACE,YAAA;ACk4BF;;ADh4BA;EACE,gBAAA;ACm4BF;;ADj4BA;EACE,gBAAA;ACo4BF;;ADl4BA;EACE,gBAAA;ACq4BF;;ADn4BA;EACE,gBAAA;ACs4BF;;ADp4BA;EACE,gBAAA;ACu4BF;;ADr4BA;EACE,gBAAA;ACw4BF;;ADt4BA;EACE,gBAAA;ACy4BF;;ADv4BA;EACE,gBAAA;AC04BF;;ADx4BA;EACE,gBAAA;AC24BF;;ADz4BA;EACE,gBAAA;AC44BF;;AD14BA;EACE,gBAAA;AC64BF;;AD34BA;EACE,gBAAA;AC84BF;;AD54BA;EACE,gBAAA;AC+4BF;;AD74BA;EACE,gBAAA;ACg5BF;;AD94BA;EACE,gBAAA;ACi5BF;;AD/4BA;EACE,gBAAA;ACk5BF;;ADh5BA;EACE,gBAAA;ACm5BF;;ADj5BA;EACE,gBAAA;ACo5BF;;ADl5BA;EACE,gBAAA;ACq5BF;;ADn5BA;EACE,gBAAA;ACs5BF;;ADp5BA;EACE,gBAAA;ACu5BF;;ADr5BA;EACE,gBAAA;ACw5BF;;ADt5BA;EACE,YAAA;ACy5BF;;ADv5BA;EACE,gBAAA;AC05BF;;ADx5BA;EACE,gBAAA;AC25BF;;ADz5BA;EACE,gBAAA;AC45BF;;AD15BA;EACE,gBAAA;AC65BF;;AD35BA;EACE,gBAAA;AC85BF;;AD55BA;EACE,gBAAA;AC+5BF;;AD75BA;EACE,gBAAA;ACg6BF;;AD95BA;EACE,gBAAA;ACi6BF;;AD/5BA;EACE,gBAAA;ACk6BF;;ADh6BA;EACE,gBAAA;ACm6BF;;ADj6BA;EACE,gBAAA;ACo6BF;;ADl6BA;EACE,gBAAA;ACq6BF;;ADn6BA;EACE,gBAAA;ACs6BF;;ADp6BA;EACE,gBAAA;ACu6BF;;ADr6BA;EACE,gBAAA;ACw6BF;;ADt6BA;EACE,gBAAA;ACy6BF;;ADv6BA;EACE,gBAAA;AC06BF;;ADx6BA;EACE,gBAAA;AC26BF;;ADz6BA;EACE,gBAAA;AC46BF;;AD16BA;EACE,gBAAA;AC66BF;;AD36BA;EACE,gBAAA;AC86BF;;AD56BA;EACE,gBAAA;AC+6BF;;AD76BA;EACE,gBAAA;ACg7BF;;AD96BA;EACE,gBAAA;ACi7BF;;AD/6BA;EACE,gBAAA;ACk7BF;;ADh7BA;EACE,gBAAA;ACm7BF;;ADj7BA;EACE,gBAAA;ACo7BF;;ADl7BA;EACE,gBAAA;ACq7BF;;ADn7BA;EACE,gBAAA;ACs7BF;;ADp7BA;EACE,gBAAA;ACu7BF;;ADr7BA;EACE,gBAAA;ACw7BF;;ADt7BA;EACE,gBAAA;ACy7BF;;ADv7BA;EACE,gBAAA;AC07BF;;ADx7BA;EACE,gBAAA;AC27BF;;ADz7BA;EACE,gBAAA;AC47BF;;AD17BA;EACE,gBAAA;AC67BF;;AD37BA;EACE,gBAAA;AC87BF;;AD57BA;EACE,gBAAA;AC+7BF;;AD77BA;EACE,gBAAA;ACg8BF;;AD97BA;EACE,YAAA;ACi8BF;;AD/7BA;EACE,gBAAA;ACk8BF;;ADh8BA;EACE,gBAAA;ACm8BF;;ADj8BA;EACE,gBAAA;ACo8BF;;ADl8BA;EACE,gBAAA;ACq8BF;;ADn8BA;EACE,gBAAA;ACs8BF;;ADp8BA;EACE,gBAAA;ACu8BF;;ADr8BA;EACE,gBAAA;ACw8BF;;ADt8BA;EACE,gBAAA;ACy8BF;;ADv8BA;EACE,gBAAA;AC08BF;;ADx8BA;EACE,gBAAA;AC28BF;;ADz8BA;EACE,gBAAA;AC48BF;;AD18BA;EACE,gBAAA;AC68BF;;AD38BA;EACE,gBAAA;AC88BF;;AD58BA;EACE,gBAAA;AC+8BF;;AD78BA;EACE,gBAAA;ACg9BF;;AD98BA;EACE,gBAAA;ACi9BF;;AD/8BA;EACE,gBAAA;ACk9BF;;ADh9BA;EACE,gBAAA;ACm9BF;;ADj9BA;EACE,gBAAA;ACo9BF;;ADl9BA;EACE,gBAAA;ACq9BF;;ADn9BA;EACE,gBAAA;ACs9BF;;ADp9BA;EACE,gBAAA;ACu9BF;;ADr9BA;EACE,YAAA;ACw9BF;;ADt9BA;EACE,gBAAA;ACy9BF;;ADv9BA;EACE,gBAAA;AC09BF;;ADx9BA;EACE,gBAAA;AC29BF;;ADz9BA;EACE,gBAAA;AC49BF;;AD19BA;EACE,gBAAA;AC69BF;;AD39BA;EACE,gBAAA;AC89BF;;AD59BA;EACE,gBAAA;AC+9BF;;AD79BA;EACE,gBAAA;ACg+BF;;AD99BA;EACE,gBAAA;ACi+BF;;AD/9BA;EACE,gBAAA;ACk+BF;;ADh+BA;EACE,gBAAA;ACm+BF;;ADj+BA;EACE,gBAAA;ACo+BF;;ADl+BA;EACE,gBAAA;ACq+BF;;ADn+BA;EACE,gBAAA;ACs+BF;;ADp+BA;EACE,gBAAA;ACu+BF;;ADr+BA;EACE,gBAAA;ACw+BF;;ADt+BA;EACE,gBAAA;ACy+BF;;ADv+BA;EACE,gBAAA;AC0+BF;;ADx+BA;EACE,gBAAA;AC2+BF;;ADz+BA;EACE,gBAAA;AC4+BF;;AD1+BA;EACE,gBAAA;AC6+BF;;AD3+BA;EACE,gBAAA;AC8+BF;;AD5+BA;EACE,gBAAA;AC++BF;;AD7+BA;EACE,gBAAA;ACg/BF;;AD9+BA;EACE,gBAAA;ACi/BF;;AD/+BA;EACE,gBAAA;ACk/BF;;ADh/BA;EACE,gBAAA;ACm/BF;;ADj/BA;EACE,gBAAA;ACo/BF;;ADl/BA;EACE,gBAAA;ACq/BF;;ADn/BA;EACE,gBAAA;ACs/BF;;ADp/BA;EACE,gBAAA;ACu/BF;;ADr/BA;EACE,gBAAA;ACw/BF;;ADt/BA;EACE,gBAAA;ACy/BF;;ADv/BA;EACE,gBAAA;AC0/BF;;ADx/BA;EACE,gBAAA;AC2/BF;;ADz/BA;EACE,gBAAA;AC4/BF;;AD1/BA;EACE,gBAAA;AC6/BF;;AD3/BA;EACE,gBAAA;AC8/BF;;AD5/BA;EACE,gBAAA;AC+/BF;;AD7/BA;EACE,gBAAA;ACggCF;;AD9/BA;EACE,gBAAA;ACigCF;;AD//BA;EACE,gBAAA;ACkgCF;;ADhgCA;EACE,gBAAA;ACmgCF;;ADjgCA;EACE,gBAAA;ACogCF;;ADlgCA;EACE,gBAAA;ACqgCF;;ADngCA;EACE,gBAAA;ACsgCF;;ADpgCA;EACE,gBAAA;ACugCF;;ADrgCA;EACE,gBAAA;ACwgCF;;ADtgCA;EACE,gBAAA;ACygCF;;ADvgCA;EACE,gBAAA;AC0gCF;;ADxgCA;EACE,gBAAA;AC2gCF;;ADzgCA;EACE,gBAAA;AC4gCF;;AD1gCA;EACE,gBAAA;AC6gCF;;AD3gCA;EACE,gBAAA;AC8gCF;;AD5gCA;EACE,gBAAA;AC+gCF;;AD7gCA;EACE,gBAAA;ACghCF;;AD9gCA;EACE,gBAAA;ACihCF;;AD/gCA;EACE,gBAAA;ACkhCF;;ADhhCA;EACE,gBAAA;ACmhCF;;ADjhCA;EACE,gBAAA;ACohCF;;ADlhCA;EACE,gBAAA;ACqhCF;;ADnhCA;EACE,gBAAA;ACshCF;;ADphCA;EACE,gBAAA;ACuhCF;;ADrhCA;EACE,gBAAA;ACwhCF;;ADthCA;EACE,gBAAA;ACyhCF;;ADvhCA;EACE,gBAAA;AC0hCF;;ADxhCA;EACE,gBAAA;AC2hCF;;ADzhCA;EACE,gBAAA;AC4hCF;;AD1hCA;EACE,gBAAA;AC6hCF;;AD3hCA;EACE,gBAAA;AC8hCF;;AD5hCA;EACE,gBAAA;AC+hCF;;AD7hCA;EACE,gBAAA;ACgiCF;;AD9hCA;EACE,gBAAA;ACiiCF;;AD/hCA;EACE,gBAAA;ACkiCF;;ADhiCA;EACE,gBAAA;ACmiCF;;ADjiCA;EACE,gBAAA;ACoiCF;;ADliCA;EACE,gBAAA;ACqiCF;;ADniCA;EACE,gBAAA;ACsiCF;;ADpiCA;EACE,gBAAA;ACuiCF;;ADriCA;EACE,gBAAA;ACwiCF;;ADtiCA;EACE,gBAAA;ACyiCF;;ADviCA;EACE,gBAAA;AC0iCF;;ADxiCA;EACE,gBAAA;AC2iCF;;ADziCA;EACE,gBAAA;AC4iCF;;AD1iCA;EACE,gBAAA;AC6iCF;;AD3iCA;EACE,gBAAA;AC8iCF;;AD5iCA;EACE,gBAAA;AC+iCF;;AD7iCA;EACE,gBAAA;ACgjCF;;AD9iCA;EACE,gBAAA;ACijCF;;AD/iCA;EACE,gBAAA;ACkjCF;;ADhjCA;EACE,gBAAA;ACmjCF;;ADjjCA;EACE,gBAAA;ACojCF;;ADljCA;EACE,gBAAA;ACqjCF;;ADnjCA;EACE,gBAAA;ACsjCF;;ADpjCA;EACE,gBAAA;ACujCF;;ADrjCA;EACE,gBAAA;ACwjCF;;ADtjCA;EACE,gBAAA;ACyjCF;;ADvjCA;EACE,gBAAA;AC0jCF;;ADxjCA;EACE,gBAAA;AC2jCF;;ADzjCA;EACE,gBAAA;AC4jCF;;AD1jCA;EACE,gBAAA;AC6jCF;;AD3jCA;EACE,gBAAA;AC8jCF;;AD5jCA;EACE,gBAAA;AC+jCF;;AD7jCA;EACE,gBAAA;ACgkCF;;AD9jCA;EACE,gBAAA;ACikCF;;AD/jCA;EACE,gBAAA;ACkkCF;;ADhkCA;EACE,gBAAA;ACmkCF;;ADjkCA;EACE,gBAAA;ACokCF;;ADlkCA;EACE,gBAAA;ACqkCF;;ADnkCA;EACE,gBAAA;ACskCF;;ADpkCA;EACE,gBAAA;ACukCF;;ADrkCA;EACE,gBAAA;ACwkCF;;ADtkCA;EACE,gBAAA;ACykCF;;ADvkCA;EACE,gBAAA;AC0kCF;;ADxkCA;EACE,gBAAA;AC2kCF;;ADzkCA;EACE,gBAAA;AC4kCF;;AD1kCA;EACE,gBAAA;AC6kCF;;AD3kCA;EACE,gBAAA;AC8kCF;;AD5kCA;EACE,gBAAA;AC+kCF;;AD7kCA;EACE,gBAAA;ACglCF;;AD9kCA;EACE,gBAAA;ACilCF;;AD/kCA;EACE,gBAAA;ACklCF;;ADhlCA;EACE,gBAAA;ACmlCF;;ADjlCA;EACE,gBAAA;AColCF;;ADllCA;EACE,gBAAA;ACqlCF;;ADnlCA;EACE,gBAAA;ACslCF;;ADplCA;EACE,gBAAA;ACulCF;;ADrlCA;EACE,gBAAA;ACwlCF;;ADtlCA;EACE,gBAAA;ACylCF;;ADvlCA;EACE,gBAAA;AC0lCF;;ADxlCA;EACE,gBAAA;AC2lCF;;ADzlCA;EACE,gBAAA;AC4lCF;;AD1lCA;EACE,gBAAA;AC6lCF;;AD3lCA;EACE,gBAAA;AC8lCF;;AD5lCA;EACE,gBAAA;AC+lCF;;AD7lCA;EACE,gBAAA;ACgmCF;;AD9lCA;EACE,gBAAA;ACimCF;;AD/lCA;EACE,gBAAA;ACkmCF;;ADhmCA;EACE,gBAAA;ACmmCF;;ADjmCA;EACE,gBAAA;AComCF;;ADlmCA;EACE,gBAAA;ACqmCF;;ADnmCA;EACE,gBAAA;ACsmCF;;ADpmCA;EACE,gBAAA;ACumCF;;ADrmCA;EACE,gBAAA;ACwmCF;;ADtmCA;EACE,gBAAA;ACymCF;;ADvmCA;EACE,gBAAA;AC0mCF;;ADxmCA;EACE,gBAAA;AC2mCF;;ADzmCA;EACE,gBAAA;AC4mCF;;AD1mCA;EACE,gBAAA;AC6mCF;;AD3mCA;EACE,gBAAA;AC8mCF;;AD5mCA;EACE,gBAAA;AC+mCF;;AD7mCA;EACE,gBAAA;ACgnCF;;AD9mCA;EACE,gBAAA;ACinCF;;AD/mCA;EACE,gBAAA;ACknCF;;ADhnCA;EACE,gBAAA;ACmnCF;;ADjnCA;EACE,gBAAA;AConCF;;ADlnCA;EACE,gBAAA;ACqnCF;;ADnnCA;EACE,gBAAA;ACsnCF;;ADpnCA;EACE,gBAAA;ACunCF;;ADrnCA;EACE,gBAAA;ACwnCF;;ADtnCA;EACE,gBAAA;ACynCF;;ADvnCA;EACE,gBAAA;AC0nCF;;ADxnCA;EACE,gBAAA;AC2nCF;;ADznCA;EACE,gBAAA;AC4nCF;;AD1nCA;EACE,gBAAA;AC6nCF;;AD3nCA;EACE,gBAAA;AC8nCF;;AD5nCA;EACE,gBAAA;AC+nCF;;AD7nCA;EACE,gBAAA;ACgoCF;;AD9nCA;EACE,gBAAA;ACioCF;;AD/nCA;EACE,gBAAA;ACkoCF;;ADhoCA;EACE,gBAAA;ACmoCF;;ADjoCA;EACE,gBAAA;ACooCF;;ADloCA;EACE,gBAAA;ACqoCF;;ADnoCA;EACE,gBAAA;ACsoCF;;ADpoCA;EACE,gBAAA;ACuoCF;;ADroCA;EACE,gBAAA;ACwoCF;;ADtoCA;EACE,gBAAA;ACyoCF;;ADvoCA;EACE,gBAAA;AC0oCF;;ADxoCA;EACE,gBAAA;AC2oCF;;ADzoCA;EACE,gBAAA;AC4oCF;;AD1oCA;EACE,gBAAA;AC6oCF;;AD3oCA;EACE,gBAAA;AC8oCF;;AD5oCA;EACE,gBAAA;AC+oCF;;AD7oCA;EACE,gBAAA;ACgpCF;;AD9oCA;EACE,gBAAA;ACipCF;;AD/oCA;EACE,gBAAA;ACkpCF;;ADhpCA;EACE,gBAAA;ACmpCF;;ADjpCA;EACE,gBAAA;ACopCF;;ADlpCA;EACE,YAAA;ACqpCF;;ADnpCA;EACE,gBAAA;ACspCF;;ADppCA;EACE,gBAAA;ACupCF;;ADrpCA;EACE,gBAAA;ACwpCF;;ADtpCA;EACE,gBAAA;ACypCF;;ADvpCA;EACE,gBAAA;AC0pCF;;ADxpCA;EACE,gBAAA;AC2pCF;;ADzpCA;EACE,gBAAA;AC4pCF;;AD1pCA;EACE,gBAAA;AC6pCF;;AD3pCA;EACE,gBAAA;AC8pCF;;AD5pCA;EACE,YAAA;AC+pCF;;AD7pCA;EACE,gBAAA;ACgqCF;;AD9pCA;EACE,gBAAA;ACiqCF;;AD/pCA;EACE,gBAAA;ACkqCF;;ADhqCA;EACE,gBAAA;ACmqCF;;ADjqCA;EACE,gBAAA;ACoqCF;;ADlqCA;EACE,gBAAA;ACqqCF;;ADnqCA;EACE,gBAAA;ACsqCF;;ADpqCA;EACE,gBAAA;ACuqCF;;ADrqCA;EACE,gBAAA;ACwqCF;;ADtqCA;EACE,gBAAA;ACyqCF;;ADvqCA;EACE,gBAAA;AC0qCF;;ADxqCA;EACE,gBAAA;AC2qCF;;ADzqCA;EACE,gBAAA;AC4qCF;;AD1qCA;EACE,gBAAA;AC6qCF;;AD3qCA;EACE,gBAAA;AC8qCF;;AD5qCA;EACE,gBAAA;AC+qCF;;AD7qCA;EACE,gBAAA;ACgrCF;;AD9qCA;EACE,gBAAA;ACirCF;;AD/qCA;EACE,gBAAA;ACkrCF;;ADhrCA;EACE,gBAAA;ACmrCF;;ADjrCA;EACE,gBAAA;ACorCF;;ADlrCA;EACE,gBAAA;ACqrCF;;ADnrCA;EACE,gBAAA;ACsrCF;;ADprCA;EACE,gBAAA;ACurCF;;ADrrCA;EACE,gBAAA;ACwrCF;;ADtrCA;EACE,gBAAA;ACyrCF;;ADvrCA;EACE,gBAAA;AC0rCF;;ADxrCA;EACE,gBAAA;AC2rCF;;ADzrCA;EACE,gBAAA;AC4rCF;;AD1rCA;EACE,gBAAA;AC6rCF;;AD3rCA;EACE,gBAAA;AC8rCF;;AD5rCA;EACE,gBAAA;AC+rCF;;AD7rCA;EACE,gBAAA;ACgsCF;;AD9rCA;EACE,gBAAA;ACisCF;;AD/rCA;EACE,gBAAA;ACksCF;;ADhsCA;EACE,gBAAA;ACmsCF;;ADjsCA;EACE,gBAAA;ACosCF;;ADlsCA;EACE,gBAAA;ACqsCF;;ADnsCA;EACE,gBAAA;ACssCF;;ADpsCA;EACE,gBAAA;ACusCF;;ADrsCA;EACE,gBAAA;ACwsCF;;ADtsCA;EACE,gBAAA;ACysCF;;ADvsCA;EACE,gBAAA;AC0sCF;;ADxsCA;EACE,gBAAA;AC2sCF;;ADzsCA;EACE,gBAAA;AC4sCF;;AD1sCA;EACE,gBAAA;AC6sCF;;AD3sCA;EACE,gBAAA;AC8sCF;;AD5sCA;EACE,gBAAA;AC+sCF;;AD7sCA;EACE,gBAAA;ACgtCF;;AD9sCA;EACE,gBAAA;ACitCF;;AD/sCA;EACE,gBAAA;ACktCF;;ADhtCA;EACE,gBAAA;ACmtCF;;ADjtCA;EACE,gBAAA;ACotCF;;ADltCA;EACE,gBAAA;ACqtCF;;ADntCA;EACE,gBAAA;ACstCF;;ADptCA;EACE,gBAAA;ACutCF;;ADrtCA;EACE,gBAAA;ACwtCF;;ADttCA;EACE,gBAAA;ACytCF;;ADvtCA;EACE,gBAAA;AC0tCF;;ADxtCA;EACE,gBAAA;AC2tCF;;ADztCA;EACE,gBAAA;AC4tCF;;AD1tCA;EACE,gBAAA;AC6tCF;;AD3tCA;EACE,gBAAA;AC8tCF;;AD5tCA;EACE,gBAAA;AC+tCF;;AD7tCA;EACE,gBAAA;ACguCF;;AD9tCA;EACE,gBAAA;ACiuCF;;AD/tCA;EACE,gBAAA;ACkuCF;;ADhuCA;EACE,gBAAA;ACmuCF;;ADjuCA;EACE,gBAAA;ACouCF;;ADluCA;EACE,gBAAA;ACquCF;;ADnuCA;EACE,gBAAA;ACsuCF;;ADpuCA;EACE,gBAAA;ACuuCF;;ADruCA;EACE,gBAAA;ACwuCF;;ADtuCA;EACE,gBAAA;ACyuCF;;ADvuCA;EACE,gBAAA;AC0uCF;;ADxuCA;EACE,gBAAA;AC2uCF;;ADzuCA;EACE,gBAAA;AC4uCF;;AD1uCA;EACE,gBAAA;AC6uCF;;AD3uCA;EACE,gBAAA;AC8uCF;;AD5uCA;EACE,gBAAA;AC+uCF;;AD7uCA;EACE,gBAAA;ACgvCF;;AD9uCA;EACE,gBAAA;ACivCF;;AD/uCA;EACE,gBAAA;ACkvCF;;ADhvCA;EACE,gBAAA;ACmvCF;;ADjvCA;EACE,gBAAA;ACovCF;;ADlvCA;EACE,gBAAA;ACqvCF;;ADnvCA;EACE,gBAAA;ACsvCF;;ADpvCA;EACE,gBAAA;ACuvCF;;ADrvCA;EACE,gBAAA;ACwvCF;;ADtvCA;EACE,gBAAA;ACyvCF;;ADvvCA;EACE,gBAAA;AC0vCF;;ADxvCA;EACE,gBAAA;AC2vCF;;ADzvCA;EACE,gBAAA;AC4vCF;;AD1vCA;EACE,gBAAA;AC6vCF;;AD3vCA;EACE,gBAAA;AC8vCF;;AD5vCA;EACE,gBAAA;AC+vCF;;AD7vCA;EACE,gBAAA;ACgwCF;;AD9vCA;EACE,gBAAA;ACiwCF;;AD/vCA;EACE,gBAAA;ACkwCF;;ADhwCA;EACE,gBAAA;ACmwCF;;ADjwCA;EACE,gBAAA;ACowCF;;ADlwCA;EACE,gBAAA;ACqwCF;;ADnwCA;EACE,gBAAA;ACswCF;;ADpwCA;EACE,gBAAA;ACuwCF;;ADrwCA;EACE,gBAAA;ACwwCF;;ADtwCA;EACE,gBAAA;ACywCF;;ADvwCA;EACE,gBAAA;AC0wCF;;ADxwCA;EACE,gBAAA;AC2wCF;;ADzwCA;EACE,gBAAA;AC4wCF;;AD1wCA;EACE,gBAAA;AC6wCF;;AD3wCA;EACE,gBAAA;AC8wCF;;AD5wCA;EACE,gBAAA;AC+wCF;;AD7wCA;EACE,gBAAA;ACgxCF;;AD9wCA;EACE,gBAAA;ACixCF;;AD/wCA;EACE,gBAAA;ACkxCF;;ADhxCA;EACE,gBAAA;ACmxCF;;ADjxCA;EACE,gBAAA;ACoxCF;;ADlxCA;EACE,gBAAA;ACqxCF;;ADnxCA;EACE,gBAAA;ACsxCF;;ADpxCA;EACE,gBAAA;ACuxCF;;ADrxCA;EACE,gBAAA;ACwxCF;;ADtxCA;EACE,gBAAA;ACyxCF;;ADvxCA;EACE,gBAAA;AC0xCF;;ADxxCA;EACE,gBAAA;AC2xCF;;ADzxCA;EACE,gBAAA;AC4xCF;;AD1xCA;EACE,gBAAA;AC6xCF;;AD3xCA;EACE,gBAAA;AC8xCF;;AD5xCA;EACE,gBAAA;AC+xCF;;AD7xCA;EACE,gBAAA;ACgyCF;;AD9xCA;EACE,gBAAA;ACiyCF;;AD/xCA;EACE,gBAAA;ACkyCF;;ADhyCA;EACE,gBAAA;ACmyCF;;ADjyCA;EACE,gBAAA;ACoyCF;;ADlyCA;EACE,gBAAA;ACqyCF;;ADnyCA;EACE,gBAAA;ACsyCF;;ADpyCA;EACE,gBAAA;ACuyCF;;ADryCA;EACE,gBAAA;ACwyCF;;ADtyCA;EACE,gBAAA;ACyyCF;;ADvyCA;EACE,gBAAA;AC0yCF;;ADxyCA;EACE,gBAAA;AC2yCF;;ADzyCA;EACE,YAAA;AC4yCF;;AD1yCA;EACE,gBAAA;AC6yCF;;AD3yCA;EACE,gBAAA;AC8yCF;;AD5yCA;EACE,gBAAA;AC+yCF;;AD7yCA;EACE,gBAAA;ACgzCF;;AD9yCA;EACE,gBAAA;ACizCF;;AD/yCA;EACE,gBAAA;ACkzCF;;ADhzCA;EACE,gBAAA;ACmzCF;;ADjzCA;EACE,gBAAA;ACozCF;;ADlzCA;EACE,gBAAA;ACqzCF;;ADnzCA;EACE,YAAA;ACszCF;;ADpzCA;EACE,gBAAA;ACuzCF;;ADrzCA;EACE,gBAAA;ACwzCF;;ADtzCA;EACE,gBAAA;ACyzCF;;ADvzCA;EACE,gBAAA;AC0zCF;;ADxzCA;EACE,gBAAA;AC2zCF;;ADzzCA;EACE,gBAAA;AC4zCF;;AD1zCA;EACE,gBAAA;AC6zCF;;AD3zCA;EACE,gBAAA;AC8zCF;;AD5zCA;EACE,gBAAA;AC+zCF;;AD7zCA;EACE,gBAAA;ACg0CF;;AD9zCA;EACE,gBAAA;ACi0CF;;AD/zCA;EACE,gBAAA;ACk0CF;;ADh0CA;EACE,gBAAA;ACm0CF;;ADj0CA;EACE,gBAAA;ACo0CF;;ADl0CA;EACE,gBAAA;ACq0CF;;ADn0CA;EACE,gBAAA;ACs0CF;;ADp0CA;EACE,gBAAA;ACu0CF;;ADr0CA;EACE,gBAAA;ACw0CF;;ADt0CA;EACE,gBAAA;ACy0CF;;ADv0CA;EACE,gBAAA;AC00CF;;ADx0CA;EACE,gBAAA;AC20CF;;ADz0CA;EACE,gBAAA;AC40CF;;AD10CA;EACE,gBAAA;AC60CF;;AD30CA;EACE,gBAAA;AC80CF;;AD50CA;EACE,gBAAA;AC+0CF;;AD70CA;EACE,gBAAA;ACg1CF;;AD90CA;EACE,gBAAA;ACi1CF;;AD/0CA;EACE,gBAAA;ACk1CF;;ADh1CA;EACE,gBAAA;ACm1CF;;ADj1CA;EACE,gBAAA;ACo1CF;;ADl1CA;EACE,gBAAA;ACq1CF;;ADn1CA;EACE,gBAAA;ACs1CF;;ADp1CA;EACE,gBAAA;ACu1CF;;ADr1CA;EACE,gBAAA;ACw1CF;;ADt1CA;EACE,gBAAA;ACy1CF;;ADv1CA;EACE,gBAAA;AC01CF;;ADx1CA;EACE,gBAAA;AC21CF;;ADz1CA;EACE,gBAAA;AC41CF;;AD11CA;EACE,gBAAA;AC61CF;;AD31CA;EACE,gBAAA;AC81CF;;AD51CA;EACE,gBAAA;AC+1CF;;AD71CA;EACE,gBAAA;ACg2CF;;AD91CA;EACE,gBAAA;ACi2CF;;AD/1CA;EACE,gBAAA;ACk2CF;;ADh2CA;EACE,gBAAA;ACm2CF;;ADj2CA;EACE,gBAAA;ACo2CF;;ADl2CA;EACE,gBAAA;ACq2CF;;ADn2CA;EACE,gBAAA;ACs2CF;;ADp2CA;EACE,YAAA;ACu2CF;;ADr2CA;EACE,gBAAA;ACw2CF;;ADt2CA;EACE,gBAAA;ACy2CF;;ADv2CA;EACE,gBAAA;AC02CF;;ADx2CA;EACE,gBAAA;AC22CF;;ADz2CA;EACE,gBAAA;AC42CF;;AD12CA;EACE,gBAAA;AC62CF;;AD32CA;EACE,gBAAA;AC82CF;;AD52CA;EACE,gBAAA;AC+2CF;;AD72CA;EACE,gBAAA;ACg3CF;;AD92CA;EACE,gBAAA;ACi3CF;;AD/2CA;EACE,gBAAA;ACk3CF;;ADh3CA;EACE,gBAAA;ACm3CF;;ADj3CA;EACE,gBAAA;ACo3CF;;ADl3CA;EACE,gBAAA;ACq3CF;;ADn3CA;EACE,gBAAA;ACs3CF;;ADp3CA;EACE,gBAAA;ACu3CF;;ADr3CA;EACE,gBAAA;ACw3CF;;ADt3CA;EACE,gBAAA;ACy3CF;;ADv3CA;EACE,gBAAA;AC03CF;;ADx3CA;EACE,gBAAA;AC23CF;;ADz3CA;EACE,gBAAA;AC43CF;;AD13CA;EACE,gBAAA;AC63CF;;AD33CA;EACE,gBAAA;AC83CF;;AD53CA;EACE,gBAAA;AC+3CF;;AD73CA;EACE,gBAAA;ACg4CF;;AD93CA;EACE,gBAAA;ACi4CF;;AD/3CA;EACE,gBAAA;ACk4CF;;ADh4CA;EACE,gBAAA;ACm4CF;;ADj4CA;EACE,gBAAA;ACo4CF;;ADl4CA;EACE,gBAAA;ACq4CF;;ADn4CA;EACE,gBAAA;ACs4CF;;ADp4CA;EACE,gBAAA;ACu4CF;;ADr4CA;EACE,gBAAA;ACw4CF;;ADt4CA;EACE,gBAAA;ACy4CF;;ADv4CA;EACE,gBAAA;AC04CF;;ADx4CA;EACE,YAAA;AC24CF;;ADz4CA;EACE,gBAAA;AC44CF;;AD14CA;EACE,gBAAA;AC64CF;;AD34CA;EACE,gBAAA;AC84CF;;AD54CA;EACE,gBAAA;AC+4CF;;AD74CA;EACE,gBAAA;ACg5CF;;AD94CA;EACE,gBAAA;ACi5CF;;AD/4CA;EACE,gBAAA;ACk5CF;;ADh5CA;EACE,gBAAA;ACm5CF;;ADj5CA;EACE,gBAAA;ACo5CF;;ADl5CA;EACE,gBAAA;ACq5CF;;ADn5CA;EACE,gBAAA;ACs5CF;;ADp5CA;EACE,gBAAA;ACu5CF;;ADr5CA;EACE,gBAAA;ACw5CF;;ADt5CA;EACE,gBAAA;ACy5CF;;ADv5CA;EACE,gBAAA;AC05CF;;ADx5CA;EACE,gBAAA;AC25CF;;ADz5CA;EACE,gBAAA;AC45CF;;AD15CA;EACE,gBAAA;AC65CF;;AD35CA;EACE,gBAAA;AC85CF;;AD55CA;EACE,gBAAA;AC+5CF;;AD75CA;EACE,gBAAA;ACg6CF;;AD95CA;EACE,gBAAA;ACi6CF;;AD/5CA;EACE,gBAAA;ACk6CF;;ADh6CA;EACE,gBAAA;ACm6CF;;ADj6CA;EACE,gBAAA;ACo6CF;;ADl6CA;EACE,gBAAA;ACq6CF;;ADn6CA;EACE,gBAAA;ACs6CF;;ADp6CA;EACE,gBAAA;ACu6CF;;ADr6CA;EACE,gBAAA;ACw6CF;;ADt6CA;EACE,gBAAA;ACy6CF;;ADv6CA;EACE,gBAAA;AC06CF;;ADx6CA;EACE,gBAAA;AC26CF;;ADz6CA;EACE,gBAAA;AC46CF;;AD16CA;EACE,gBAAA;AC66CF;;AD36CA;EACE,gBAAA;AC86CF;;AD56CA;EACE,gBAAA;AC+6CF;;AD76CA;EACE,gBAAA;ACg7CF;;AD96CA;EACE,gBAAA;ACi7CF;;AD/6CA;EACE,gBAAA;ACk7CF;;ADh7CA;EACE,gBAAA;ACm7CF;;ADj7CA;EACE,gBAAA;ACo7CF;;ADl7CA;EACE,gBAAA;ACq7CF;;ADn7CA;EACE,gBAAA;ACs7CF;;ADp7CA;EACE,gBAAA;ACu7CF;;ADr7CA;EACE,gBAAA;ACw7CF;;ADt7CA;EACE,gBAAA;ACy7CF;;ADv7CA;EACE,gBAAA;AC07CF;;ADx7CA;EACE,gBAAA;AC27CF;;ADz7CA;EACE,gBAAA;AC47CF;;AD17CA;EACE,gBAAA;AC67CF;;AD37CA;EACE,gBAAA;AC87CF;;AD57CA;EACE,gBAAA;AC+7CF;;AD77CA;EACE,gBAAA;ACg8CF;;AD97CA;EACE,gBAAA;ACi8CF;;AD/7CA;EACE,gBAAA;ACk8CF;;ADh8CA;EACE,gBAAA;ACm8CF;;ADj8CA;EACE,gBAAA;ACo8CF;;ADl8CA;EACE,gBAAA;ACq8CF;;ADn8CA;EACE,gBAAA;ACs8CF;;ADp8CA;EACE,gBAAA;ACu8CF;;ADr8CA;EACE,gBAAA;ACw8CF;;ADt8CA;EACE,gBAAA;ACy8CF;;ADv8CA;EACE,YAAA;AC08CF;;ADx8CA;EACE,gBAAA;AC28CF;;ADz8CA;EACE,gBAAA;AC48CF;;AD18CA;EACE,gBAAA;AC68CF;;AD38CA;EACE,gBAAA;AC88CF;;AD58CA;EACE,gBAAA;AC+8CF;;AD78CA;EACE,gBAAA;ACg9CF;;AD98CA;EACE,gBAAA;ACi9CF;;AD/8CA;EACE,gBAAA;ACk9CF;;ADh9CA;EACE,gBAAA;ACm9CF;;ADj9CA;EACE,gBAAA;ACo9CF;;ADl9CA;EACE,gBAAA;ACq9CF;;ADn9CA;EACE,gBAAA;ACs9CF;;ADp9CA;EACE,gBAAA;ACu9CF;;ADr9CA;EACE,gBAAA;ACw9CF;;ADt9CA;EACE,gBAAA;ACy9CF;;ADv9CA;EACE,gBAAA;AC09CF;;ADx9CA;EACE,gBAAA;AC29CF;;ADz9CA;EACE,gBAAA;AC49CF;;AD19CA;EACE,gBAAA;AC69CF;;AD39CA;EACE,gBAAA;AC89CF;;AD59CA;EACE,gBAAA;AC+9CF;;AD79CA;EACE,gBAAA;ACg+CF;;AD99CA;EACE,gBAAA;ACi+CF;;AD/9CA;EACE,gBAAA;ACk+CF;;ADh+CA;EACE,gBAAA;ACm+CF;;ADj+CA;EACE,gBAAA;ACo+CF;;ADl+CA;EACE,gBAAA;ACq+CF;;ADn+CA;EACE,gBAAA;ACs+CF;;ADp+CA;EACE,gBAAA;ACu+CF;;ADr+CA;EACE,gBAAA;ACw+CF;;ADt+CA;EACE,gBAAA;ACy+CF;;ADv+CA;EACE,gBAAA;AC0+CF;;ADx+CA;EACE,gBAAA;AC2+CF;;ADz+CA;EACE,gBAAA;AC4+CF;;AD1+CA;EACE,gBAAA;AC6+CF;;AD3+CA;EACE,gBAAA;AC8+CF;;AD5+CA;EACE,gBAAA;AC++CF;;AD7+CA;EACE,gBAAA;ACg/CF;;AD9+CA;EACE,gBAAA;ACi/CF;;AD/+CA;EACE,gBAAA;ACk/CF;;ADh/CA;EACE,gBAAA;ACm/CF;;ADj/CA;EACE,gBAAA;ACo/CF;;ADl/CA;EACE,gBAAA;ACq/CF;;ADn/CA;EACE,gBAAA;ACs/CF;;ADp/CA;EACE,gBAAA;ACu/CF;;ADr/CA;EACE,gBAAA;ACw/CF;;ADt/CA;EACE,gBAAA;ACy/CF;;ADv/CA;EACE,gBAAA;AC0/CF;;ADx/CA;EACE,gBAAA;AC2/CF;;ADz/CA;EACE,gBAAA;AC4/CF;;AD1/CA;EACE,gBAAA;AC6/CF;;AD3/CA;EACE,gBAAA;AC8/CF;;AD5/CA;EACE,YAAA;AC+/CF;;AD7/CA;EACE,gBAAA;ACggDF;;AD9/CA;EACE,gBAAA;ACigDF;;AD//CA;EACE,gBAAA;ACkgDF;;ADhgDA;EACE,gBAAA;ACmgDF;;ADjgDA;EACE,gBAAA;ACogDF;;ADlgDA;EACE,gBAAA;ACqgDF;;ADngDA;EACE,gBAAA;ACsgDF;;ADpgDA;EACE,gBAAA;ACugDF;;ADrgDA;EACE,gBAAA;ACwgDF;;ADtgDA;EACE,gBAAA;ACygDF;;ADvgDA;EACE,gBAAA;AC0gDF;;ADxgDA;EACE,gBAAA;AC2gDF;;ADzgDA;EACE,gBAAA;AC4gDF;;AD1gDA;EACE,gBAAA;AC6gDF;;AD3gDA;EACE,gBAAA;AC8gDF;;AD5gDA;EACE,gBAAA;AC+gDF;;AD7gDA;EACE,gBAAA;ACghDF;;AD9gDA;EACE,gBAAA;ACihDF;;AD/gDA;EACE,gBAAA;ACkhDF;;ADhhDA;EACE,gBAAA;ACmhDF;;ADjhDA;EACE,gBAAA;ACohDF;;ADlhDA;EACE,gBAAA;ACqhDF;;ADnhDA;EACE,gBAAA;ACshDF;;ADphDA;EACE,gBAAA;ACuhDF;;ADrhDA;EACE,gBAAA;ACwhDF;;ADthDA;EACE,gBAAA;ACyhDF;;ADvhDA;EACE,gBAAA;AC0hDF;;ADxhDA;EACE,gBAAA;AC2hDF;;ADzhDA;EACE,gBAAA;AC4hDF;;AD1hDA;EACE,gBAAA;AC6hDF;;AD3hDA;EACE,gBAAA;AC8hDF;;AD5hDA;EACE,gBAAA;AC+hDF;;AD7hDA;EACE,gBAAA;ACgiDF;;AD9hDA;EACE,gBAAA;ACiiDF;;AD/hDA;EACE,gBAAA;ACkiDF;;ADhiDA;EACE,gBAAA;ACmiDF;;ADjiDA;EACE,gBAAA;ACoiDF;;ADliDA;EACE,gBAAA;ACqiDF;;ADniDA;EACE,gBAAA;ACsiDF;;ADpiDA;EACE,gBAAA;ACuiDF;;ADriDA;EACE,gBAAA;ACwiDF;;ADtiDA;EACE,gBAAA;ACyiDF;;ADviDA;EACE,gBAAA;AC0iDF;;ADxiDA;EACE,gBAAA;AC2iDF;;ADziDA;EACE,gBAAA;AC4iDF;;AD1iDA;EACE,gBAAA;AC6iDF;;AD3iDA;EACE,gBAAA;AC8iDF;;AD5iDA;EACE,gBAAA;AC+iDF;;AD7iDA;EACE,gBAAA;ACgjDF;;AD9iDA;EACE,gBAAA;ACijDF;;AD/iDA;EACE,gBAAA;ACkjDF;;ADhjDA;EACE,gBAAA;ACmjDF;;ADjjDA;EACE,gBAAA;ACojDF;;ADljDA;EACE,gBAAA;ACqjDF;;ADnjDA;EACE,gBAAA;ACsjDF;;ADpjDA;EACE,gBAAA;ACujDF;;ADrjDA;EACE,gBAAA;ACwjDF;;ADtjDA;EACE,gBAAA;ACyjDF;;ADvjDA;EACE,gBAAA;AC0jDF;;ADxjDA;EACE,gBAAA;AC2jDF;;ADzjDA;EACE,gBAAA;AC4jDF;;AD1jDA;EACE,gBAAA;AC6jDF;;AD3jDA;EACE,gBAAA;AC8jDF;;AD5jDA;EACE,gBAAA;AC+jDF;;AD7jDA;EACE,gBAAA;ACgkDF;;AD9jDA;EACE,gBAAA;ACikDF;;AD/jDA;EACE,gBAAA;ACkkDF;;ADhkDA;EACE,gBAAA;ACmkDF;;ADjkDA;EACE,gBAAA;ACokDF;;ADlkDA;EACE,gBAAA;ACqkDF;;ADnkDA;EACE,gBAAA;ACskDF;;ADpkDA;EACE,gBAAA;ACukDF;;ADrkDA;EACE,gBAAA;ACwkDF;;ADtkDA;EACE,gBAAA;ACykDF;;ADvkDA;EACE,gBAAA;AC0kDF;;ADxkDA;EACE,gBAAA;AC2kDF;;ADzkDA;EACE,gBAAA;AC4kDF;;AD1kDA;EACE,gBAAA;AC6kDF;;AD3kDA;EACE,gBAAA;AC8kDF;;AD5kDA;EACE,gBAAA;AC+kDF;;AD7kDA;EACE,gBAAA;ACglDF;;AD9kDA;EACE,gBAAA;ACilDF;;AD/kDA;EACE,gBAAA;ACklDF;;ADhlDA;EACE,gBAAA;ACmlDF;;ADjlDA;EACE,gBAAA;AColDF;;ADllDA;EACE,gBAAA;ACqlDF;;ADnlDA;EACE,gBAAA;ACslDF;;ADplDA;EACE,gBAAA;ACulDF;;ADrlDA;EACE,gBAAA;ACwlDF;;ADtlDA;EACE,gBAAA;ACylDF;;ADvlDA;EACE,gBAAA;AC0lDF;;ADxlDA;EACE,gBAAA;AC2lDF;;ADzlDA;EACE,gBAAA;AC4lDF;;AD1lDA;EACE,gBAAA;AC6lDF;;AD3lDA;EACE,gBAAA;AC8lDF;;AD5lDA;EACE,gBAAA;AC+lDF;;AD7lDA;EACE,gBAAA;ACgmDF;;AD9lDA;EACE,gBAAA;ACimDF;;AD/lDA;EACE,gBAAA;ACkmDF;;ADhmDA;EACE,gBAAA;ACmmDF;;ADjmDA;EACE,gBAAA;AComDF;;ADlmDA;EACE,gBAAA;ACqmDF;;ADnmDA;EACE,gBAAA;ACsmDF;;ADpmDA;EACE,gBAAA;ACumDF;;ADrmDA;EACE,YAAA;ACwmDF;;ADtmDA;EACE,gBAAA;ACymDF;;ADvmDA;EACE,gBAAA;AC0mDF;;ADxmDA;EACE,gBAAA;AC2mDF;;ADzmDA;EACE,gBAAA;AC4mDF;;AD1mDA;EACE,gBAAA;AC6mDF;;AD3mDA;EACE,gBAAA;AC8mDF;;AD5mDA;EACE,gBAAA;AC+mDF;;AD7mDA;EACE,gBAAA;ACgnDF;;AD9mDA;EACE,gBAAA;ACinDF;;AD/mDA;EACE,gBAAA;ACknDF;;ADhnDA;EACE,gBAAA;ACmnDF;;ADjnDA;EACE,gBAAA;AConDF;;ADlnDA;EACE,gBAAA;ACqnDF;;ADnnDA;EACE,gBAAA;ACsnDF;;ADpnDA;EACE,gBAAA;ACunDF;;ADrnDA;EACE,gBAAA;ACwnDF;;ADtnDA;EACE,gBAAA;ACynDF;;ADvnDA;EACE,gBAAA;AC0nDF;;ADxnDA;EACE,gBAAA;AC2nDF;;ADznDA;EACE,gBAAA;AC4nDF;;AD1nDA;EACE,gBAAA;AC6nDF;;AD3nDA;EACE,gBAAA;AC8nDF;;AD5nDA;EACE,gBAAA;AC+nDF;;AD7nDA;EACE,gBAAA;ACgoDF;;AD9nDA;EACE,gBAAA;ACioDF;;AD/nDA;EACE,gBAAA;ACkoDF;;ADhoDA;EACE,gBAAA;ACmoDF;;ADjoDA;EACE,gBAAA;ACooDF;;ADloDA;EACE,gBAAA;ACqoDF;;ADnoDA;EACE,gBAAA;ACsoDF;;ADpoDA;EACE,YAAA;ACuoDF;;ADroDA;EACE,YAAA;ACwoDF;;ADtoDA;EACE,gBAAA;ACyoDF;;ADvoDA;EACE,gBAAA;AC0oDF;;ADxoDA;EACE,gBAAA;AC2oDF;;ADzoDA;EACE,gBAAA;AC4oDF;;AD1oDA;EACE,gBAAA;AC6oDF;;AD3oDA;EACE,gBAAA;AC8oDF;;AD5oDA;EACE,gBAAA;AC+oDF;;AD7oDA;EACE,gBAAA;ACgpDF;;AD9oDA;EACE,gBAAA;ACipDF;;AD/oDA;EACE,gBAAA;ACkpDF;;ADhpDA;EACE,gBAAA;ACmpDF;;ADjpDA;EACE,gBAAA;ACopDF;;ADlpDA;EACE,gBAAA;ACqpDF;;ADnpDA;EACE,gBAAA;ACspDF;;ADppDA;EACE,gBAAA;ACupDF;;ADrpDA;EACE,gBAAA;ACwpDF;;ADtpDA;EACE,gBAAA;ACypDF;;ADvpDA;EACE,gBAAA;AC0pDF;;ADxpDA;EACE,gBAAA;AC2pDF;;ADzpDA;EACE,gBAAA;AC4pDF;;AD1pDA;EACE,gBAAA;AC6pDF;;AD3pDA;EACE,gBAAA;AC8pDF;;AD5pDA;EACE,gBAAA;AC+pDF;;AD7pDA;EACE,gBAAA;ACgqDF;;AD9pDA;EACE,YAAA;ACiqDF;;AD/pDA;EACE,gBAAA;ACkqDF;;ADhqDA;EACE,gBAAA;ACmqDF;;ADjqDA;EACE,gBAAA;ACoqDF;;ADlqDA;EACE,gBAAA;ACqqDF;;ADnqDA;EACE,gBAAA;ACsqDF;;ADpqDA;EACE,gBAAA;ACuqDF;;ADrqDA;EACE,gBAAA;ACwqDF;;ADtqDA;EACE,gBAAA;ACyqDF;;ADvqDA;EACE,gBAAA;AC0qDF;;ADxqDA;EACE,gBAAA;AC2qDF;;ADzqDA;EACE,gBAAA;AC4qDF;;AD1qDA;EACE,gBAAA;AC6qDF;;AD3qDA;EACE,gBAAA;AC8qDF;;AD5qDA;EACE,gBAAA;AC+qDF;;AD7qDA;EACE,gBAAA;ACgrDF;;AD9qDA;EACE,gBAAA;ACirDF;;AD/qDA;EACE,gBAAA;ACkrDF;;ADhrDA;EACE,gBAAA;ACmrDF;;ADjrDA;EACE,gBAAA;ACorDF;;ADlrDA;EACE,gBAAA;ACqrDF;;ADnrDA;EACE,gBAAA;ACsrDF;;ADprDA;EACE,gBAAA;ACurDF;;ADrrDA;EACE,gBAAA;ACwrDF;;ADtrDA;EACE,gBAAA;ACyrDF;;ADvrDA;EACE,gBAAA;AC0rDF;;ADxrDA;EACE,gBAAA;AC2rDF;;ADzrDA;EACE,gBAAA;AC4rDF;;AD1rDA;EACE,gBAAA;AC6rDF;;AD3rDA;EACE,gBAAA;AC8rDF;;AD5rDA;EACE,gBAAA;AC+rDF;;AD7rDA;EACE,gBAAA;ACgsDF;;AD9rDA;EACE,gBAAA;ACisDF;;AD/rDA;EACE,gBAAA;ACksDF;;ADhsDA;EACE,gBAAA;ACmsDF;;ADjsDA;EACE,gBAAA;ACosDF;;ADlsDA;EACE,gBAAA;ACqsDF;;ADnsDA;EACE,gBAAA;ACssDF;;ADpsDA;EACE,gBAAA;ACusDF;;ADrsDA;EACE,gBAAA;ACwsDF;;ADtsDA;EACE,gBAAA;ACysDF;;ADvsDA;EACE,gBAAA;AC0sDF;;ADxsDA;EACE,gBAAA;AC2sDF;;ADzsDA;EACE,gBAAA;AC4sDF;;AD1sDA;EACE,gBAAA;AC6sDF;;AD3sDA;EACE,gBAAA;AC8sDF;;AD5sDA;EACE,gBAAA;AC+sDF;;AD7sDA;EACE,gBAAA;ACgtDF;;AD9sDA;EACE,gBAAA;ACitDF;;AD/sDA;EACE,YAAA;ACktDF;;ADhtDA;EACE,YAAA;ACmtDF;;ADjtDA;EACE,gBAAA;ACotDF;;ADltDA;EACE,gBAAA;ACqtDF;;ADntDA;EACE,gBAAA;ACstDF;;ADptDA;EACE,gBAAA;ACutDF;;ADrtDA;EACE,gBAAA;ACwtDF;;ADttDA;EACE,gBAAA;ACytDF;;ADvtDA;EACE,gBAAA;AC0tDF;;ADxtDA;EACE,gBAAA;AC2tDF;;ADztDA;EACE,gBAAA;AC4tDF;;AD1tDA;EACE,gBAAA;AC6tDF;;AD3tDA;EACE,gBAAA;AC8tDF;;AD5tDA;EACE,gBAAA;AC+tDF;;AD7tDA;EACE,gBAAA;ACguDF;;AD9tDA;EACE,gBAAA;ACiuDF;;AD/tDA;EACE,gBAAA;ACkuDF;;ADhuDA;EACE,gBAAA;ACmuDF;;ADjuDA;EACE,gBAAA;ACouDF;;ADluDA;EACE,gBAAA;ACquDF;;ADnuDA;EACE,gBAAA;ACsuDF;;ADpuDA;EACE,gBAAA;ACuuDF;;ADruDA;EACE,gBAAA;ACwuDF;;ADtuDA;EACE,gBAAA;ACyuDF;;ADvuDA;EACE,gBAAA;AC0uDF;;ADxuDA;EACE,gBAAA;AC2uDF;;ADzuDA;EACE,gBAAA;AC4uDF;;AD1uDA;EACE,gBAAA;AC6uDF;;AD3uDA;EACE,gBAAA;AC8uDF;;AD5uDA;EACE,gBAAA;AC+uDF;;AD7uDA;EACE,gBAAA;ACgvDF;;AD9uDA;EACE,gBAAA;ACivDF;;AD/uDA;EACE,gBAAA;ACkvDF;;ADhvDA;EACE,gBAAA;ACmvDF;;ADjvDA;EACE,gBAAA;ACovDF;;ADlvDA;EACE,gBAAA;ACqvDF;;ADnvDA;EACE,gBAAA;ACsvDF;;ADpvDA;EACE,gBAAA;ACuvDF;;ADrvDA;EACE,gBAAA;ACwvDF;;ADtvDA;EACE,gBAAA;ACyvDF;;ADvvDA;EACE,gBAAA;AC0vDF;;ADxvDA;EACE,gBAAA;AC2vDF;;ADzvDA;EACE,gBAAA;AC4vDF;;AD1vDA;EACE,gBAAA;AC6vDF;;AD3vDA;EACE,gBAAA;AC8vDF;;AD5vDA;EACE,gBAAA;AC+vDF;;AD7vDA;EACE,gBAAA;ACgwDF;;AD9vDA;EACE,gBAAA;ACiwDF;;AD/vDA;EACE,gBAAA;ACkwDF;;ADhwDA;EACE,gBAAA;ACmwDF;;ADjwDA;EACE,gBAAA;ACowDF;;ADlwDA;EACE,gBAAA;ACqwDF;;ADnwDA;EACE,gBAAA;ACswDF;;ADpwDA;EACE,gBAAA;ACuwDF;;ADrwDA;EACE,gBAAA;ACwwDF;;ADtwDA;EACE,gBAAA;ACywDF;;ADvwDA;EACE,gBAAA;AC0wDF;;ADxwDA;EACE,gBAAA;AC2wDF;;ADzwDA;EACE,gBAAA;AC4wDF;;AD1wDA;EACE,gBAAA;AC6wDF;;AD3wDA;EACE,gBAAA;AC8wDF;;AD5wDA;EACE,gBAAA;AC+wDF;;AD7wDA;EACE,gBAAA;ACgxDF;;AD9wDA;EACE,gBAAA;ACixDF;;AD/wDA;EACE,gBAAA;ACkxDF;;ADhxDA;EACE,gBAAA;ACmxDF;;ADjxDA;EACE,gBAAA;ACoxDF;;ADlxDA;EACE,gBAAA;ACqxDF;;ADnxDA;EACE,gBAAA;ACsxDF;;ADpxDA;EACE,gBAAA;ACuxDF;;ADrxDA;EACE,gBAAA;ACwxDF;;ADtxDA;EACE,gBAAA;ACyxDF;;ADvxDA;EACE,gBAAA;AC0xDF;;ADxxDA;EACE,gBAAA;AC2xDF;;ADzxDA;EACE,gBAAA;AC4xDF;;AD1xDA;EACE,gBAAA;AC6xDF;;AD3xDA;EACE,gBAAA;AC8xDF;;AD5xDA;EACE,gBAAA;AC+xDF;;AD7xDA;EACE,gBAAA;ACgyDF;;AD9xDA;EACE,gBAAA;ACiyDF;;AD/xDA;EACE,gBAAA;ACkyDF;;ADhyDA;EACE,gBAAA;ACmyDF;;ADjyDA;EACE,YAAA;ACoyDF;;ADlyDA;EACE,gBAAA;ACqyDF;;ADnyDA;EACE,gBAAA;ACsyDF;;ADpyDA;EACE,gBAAA;ACuyDF;;ADryDA;EACE,YAAA;ACwyDF;;ADtyDA;EACE,gBAAA;ACyyDF;;ADvyDA;EACE,gBAAA;AC0yDF;;ADxyDA;EACE,gBAAA;AC2yDF;;ADzyDA;EACE,gBAAA;AC4yDF;;AD1yDA;EACE,gBAAA;AC6yDF;;AD3yDA;EACE,gBAAA;AC8yDF;;AD5yDA;EACE,gBAAA;AC+yDF;;AD7yDA;EACE,gBAAA;ACgzDF;;AD9yDA;EACE,gBAAA;ACizDF;;AD/yDA;EACE,gBAAA;ACkzDF;;ADhzDA;EACE,gBAAA;ACmzDF;;ADjzDA;EACE,gBAAA;ACozDF;;ADlzDA;EACE,gBAAA;ACqzDF;;ADnzDA;EACE,gBAAA;ACszDF;;ADpzDA;EACE,gBAAA;ACuzDF;;ADrzDA;EACE,gBAAA;ACwzDF;;ADtzDA;EACE,gBAAA;ACyzDF;;ADvzDA;EACE,gBAAA;AC0zDF;;ADxzDA;EACE,gBAAA;AC2zDF;;ADzzDA;EACE,gBAAA;AC4zDF;;AD1zDA;EACE,gBAAA;AC6zDF;;AD3zDA;EACE,gBAAA;AC8zDF;;AD5zDA;EACE,gBAAA;AC+zDF;;AD7zDA;EACE,gBAAA;ACg0DF;;AD9zDA;EACE,gBAAA;ACi0DF;;AD/zDA;EACE,gBAAA;ACk0DF;;ADh0DA;EACE,gBAAA;ACm0DF;;ADj0DA;EACE,gBAAA;ACo0DF;;ADl0DA;EACE,gBAAA;ACq0DF;;ADn0DA;EACE,gBAAA;ACs0DF;;ADp0DA;EACE,gBAAA;ACu0DF;;ADr0DA;EACE,gBAAA;ACw0DF;;ADt0DA;EACE,gBAAA;ACy0DF;;ADv0DA;EACE,gBAAA;AC00DF;;ADx0DA;EACE,gBAAA;AC20DF;;ADz0DA;EACE,gBAAA;AC40DF;;AD10DA;EACE,gBAAA;AC60DF;;AD30DA;EACE,gBAAA;AC80DF;;AD50DA;EACE,gBAAA;AC+0DF;;AD70DA;EACE,gBAAA;ACg1DF;;AD90DA;EACE,gBAAA;ACi1DF;;AD/0DA;EACE,gBAAA;ACk1DF;;ADh1DA;EACE,gBAAA;ACm1DF;;ADj1DA;EACE,gBAAA;ACo1DF;;ADl1DA;EACE,gBAAA;ACq1DF;;ADn1DA;EACE,gBAAA;ACs1DF;;ADp1DA;EACE,gBAAA;ACu1DF;;ADr1DA;EACE,gBAAA;ACw1DF;;ADt1DA;EACE,gBAAA;ACy1DF;;ADv1DA;EACE,gBAAA;AC01DF;;ADx1DA;EACE,gBAAA;AC21DF;;ADz1DA;EACE,gBAAA;AC41DF;;AD11DA;EACE,gBAAA;AC61DF;;AD31DA;EACE,gBAAA;AC81DF;;AD51DA;EACE,gBAAA;AC+1DF;;AD71DA;EACE,YAAA;ACg2DF;;AD91DA;EACE,gBAAA;ACi2DF;;AD/1DA;EACE,gBAAA;ACk2DF;;ADh2DA;EACE,gBAAA;ACm2DF;;ADj2DA;EACE,gBAAA;ACo2DF;;ADl2DA;EACE,gBAAA;ACq2DF;;ADn2DA;EACE,gBAAA;ACs2DF;;ADp2DA;EACE,gBAAA;ACu2DF;;ADr2DA;EACE,gBAAA;ACw2DF;;ADt2DA;EACE,gBAAA;ACy2DF;;ADv2DA;EACE,gBAAA;AC02DF;;ADx2DA;EACE,gBAAA;AC22DF;;ADz2DA;EACE,gBAAA;AC42DF;;AD12DA;EACE,gBAAA;AC62DF;;AD32DA;EACE,gBAAA;AC82DF;;AD52DA;EACE,gBAAA;AC+2DF;;AD72DA;EACE,gBAAA;ACg3DF;;AD92DA;EACE,gBAAA;ACi3DF;;AD/2DA;EACE,gBAAA;ACk3DF;;ADh3DA;EACE,gBAAA;ACm3DF;;ADj3DA;EACE,gBAAA;ACo3DF;;ADl3DA;EACE,gBAAA;ACq3DF;;ADn3DA;EACE,gBAAA;ACs3DF;;ADp3DA;EACE,gBAAA;ACu3DF;;ADr3DA;EACE,gBAAA;ACw3DF;;ADt3DA;EACE,gBAAA;ACy3DF;;ADv3DA;EACE,gBAAA;AC03DF;;ADx3DA;EACE,gBAAA;AC23DF;;ADz3DA;EACE,gBAAA;AC43DF;;AD13DA;EACE,gBAAA;AC63DF;;AD33DA;EACE,gBAAA;AC83DF;;AD53DA;EACE,gBAAA;AC+3DF;;AD73DA;EACE,gBAAA;ACg4DF;;AD93DA;EACE,gBAAA;ACi4DF;;AD/3DA;EACE,gBAAA;ACk4DF;;ADh4DA;EACE,gBAAA;ACm4DF;;ADj4DA;EACE,gBAAA;ACo4DF;;ADl4DA;EACE,gBAAA;ACq4DF;;ADn4DA;EACE,gBAAA;ACs4DF;;ADp4DA;EACE,gBAAA;ACu4DF;;ADr4DA;EACE,gBAAA;ACw4DF;;ADt4DA;EACE,gBAAA;ACy4DF;;ADv4DA;EACE,gBAAA;AC04DF;;ADx4DA;EACE,gBAAA;AC24DF;;ADz4DA;EACE,gBAAA;AC44DF;;AD14DA;EACE,gBAAA;AC64DF;;AD34DA;EACE,gBAAA;AC84DF;;AD54DA;EACE,gBAAA;AC+4DF;;AD74DA;EACE,gBAAA;ACg5DF;;AD94DA;EACE,gBAAA;ACi5DF;;AD/4DA;EACE,gBAAA;ACk5DF;;ADh5DA;EACE,gBAAA;ACm5DF;;ADj5DA;EACE,gBAAA;ACo5DF;;ADl5DA;EACE,gBAAA;ACq5DF;;ADn5DA;EACE,gBAAA;ACs5DF;;ADp5DA;EACE,gBAAA;ACu5DF;;ADr5DA;EACE,gBAAA;ACw5DF;;ADt5DA;EACE,gBAAA;ACy5DF;;ADv5DA;EACE,gBAAA;AC05DF;;ADx5DA;EACE,gBAAA;AC25DF;;ADz5DA;EACE,gBAAA;AC45DF;;AD15DA;EACE,gBAAA;AC65DF;;AD35DA;EACE,gBAAA;AC85DF;;AD55DA;EACE,gBAAA;AC+5DF;;AD75DA;EACE,gBAAA;ACg6DF;;AD95DA;EACE,gBAAA;ACi6DF;;AD/5DA;EACE,gBAAA;ACk6DF;;ADh6DA;EACE,gBAAA;ACm6DF;;ADj6DA;EACE,gBAAA;ACo6DF;;ADl6DA;EACE,gBAAA;ACq6DF;;ADn6DA;EACE,gBAAA;ACs6DF;;ADp6DA;EACE,gBAAA;ACu6DF;;ADr6DA;EACE,gBAAA;ACw6DF;;ADt6DA;EACE,gBAAA;ACy6DF;;ADv6DA;EACE,gBAAA;AC06DF;;ADx6DA;EACE,gBAAA;AC26DF;;ADz6DA;EACE,gBAAA;AC46DF;;AD16DA;EACE,gBAAA;AC66DF;;AD36DA;EACE,gBAAA;AC86DF;;AD56DA;EACE,gBAAA;AC+6DF;;AD76DA;EACE,gBAAA;ACg7DF;;AD96DA;EACE,gBAAA;ACi7DF;;AD/6DA;EACE,gBAAA;ACk7DF;;ADh7DA;EACE,gBAAA;ACm7DF;;ADj7DA;EACE,gBAAA;ACo7DF;;ADl7DA;EACE,gBAAA;ACq7DF;;ADn7DA;EACE,gBAAA;ACs7DF;;ADp7DA;EACE,gBAAA;ACu7DF;;ADr7DA;EACE,gBAAA;ACw7DF;;ADt7DA;EACE,gBAAA;ACy7DF;;ADv7DA;EACE,gBAAA;AC07DF;;ADx7DA;EACE,gBAAA;AC27DF;;ADz7DA;EACE,gBAAA;AC47DF;;AD17DA;EACE,gBAAA;AC67DF;;AD37DA;EACE,gBAAA;AC87DF;;AD57DA;EACE,gBAAA;AC+7DF;;AD77DA;EACE,gBAAA;ACg8DF;;AD97DA;EACE,gBAAA;ACi8DF;;AD/7DA;EACE,gBAAA;ACk8DF;;ADh8DA;EACE,gBAAA;ACm8DF;;ADj8DA;EACE,gBAAA;ACo8DF;;ADl8DA;EACE,gBAAA;ACq8DF;;ADn8DA;EACE,gBAAA;ACs8DF;;ADp8DA;EACE,gBAAA;ACu8DF;;ADr8DA;EACE,gBAAA;ACw8DF;;ADt8DA;EACE,gBAAA;ACy8DF;;ADv8DA;EACE,gBAAA;AC08DF;;ADx8DA;EACE,gBAAA;AC28DF;;ADz8DA;EACE,gBAAA;AC48DF;;AD18DA;EACE,gBAAA;AC68DF;;AD38DA;EACE,gBAAA;AC88DF;;AD58DA;EACE,gBAAA;AC+8DF;;AD78DA;EACE,gBAAA;ACg9DF;;AD98DA;EACE,gBAAA;ACi9DF;;AD/8DA;EACE,gBAAA;ACk9DF;;ADh9DA;EACE,gBAAA;ACm9DF;;ADj9DA;EACE,gBAAA;ACo9DF;;ADl9DA;EACE,gBAAA;ACq9DF;;ADn9DA;EACE,gBAAA;ACs9DF;;ADp9DA;EACE,gBAAA;ACu9DF;;ADr9DA;EACE,gBAAA;ACw9DF;;ADt9DA;EACE,gBAAA;ACy9DF;;ADv9DA;EACE,gBAAA;AC09DF;;ADx9DA;EACE,gBAAA;AC29DF;;ADz9DA;EACE,YAAA;AC49DF;;AD19DA;EACE,gBAAA;AC69DF;;AD39DA;EACE,gBAAA;AC89DF;;AD59DA;EACE,gBAAA;AC+9DF;;AD79DA;EACE,gBAAA;ACg+DF;;AD99DA;EACE,gBAAA;ACi+DF;;AD/9DA;EACE,YAAA;ACk+DF;;ADh+DA;EACE,YAAA;ACm+DF;;ADj+DA;EACE,YAAA;ACo+DF;;ADl+DA;EACE,YAAA;ACq+DF;;ADn+DA;EACE,gBAAA;ACs+DF;;ADp+DA;EACE,gBAAA;ACu+DF;;ADr+DA;EACE,gBAAA;ACw+DF;;ADt+DA;EACE,gBAAA;ACy+DF;;ADv+DA;EACE,gBAAA;AC0+DF;;ADx+DA;EACE,gBAAA;AC2+DF;;ADz+DA;EACE,gBAAA;AC4+DF;;AD1+DA;EACE,gBAAA;AC6+DF;;AD3+DA;EACE,gBAAA;AC8+DF;;AD5+DA;EACE,gBAAA;AC++DF;;AD7+DA;EACE,gBAAA;ACg/DF;;AD9+DA;EACE,gBAAA;ACi/DF;;AD/+DA;EACE,YAAA;ACk/DF;;ADh/DA;EACE,gBAAA;ACm/DF;;ADj/DA;EACE,gBAAA;ACo/DF;;ADl/DA;EACE,gBAAA;ACq/DF;;ADn/DA;EACE,gBAAA;ACs/DF;;ADp/DA;EACE,gBAAA;ACu/DF;;ADr/DA;EACE,gBAAA;ACw/DF;;ADt/DA;EACE,gBAAA;ACy/DF;;ADv/DA;EACE,gBAAA;AC0/DF;;ADx/DA;EACE,gBAAA;AC2/DF;;ADz/DA;EACE,gBAAA;AC4/DF;;AD1/DA;EACE,gBAAA;AC6/DF;;AD3/DA;EACE,gBAAA;AC8/DF;;AD5/DA;EACE,gBAAA;AC+/DF;;AD7/DA;EACE,gBAAA;ACggEF;;AD9/DA;EACE,gBAAA;ACigEF;;AD//DA;EACE,gBAAA;ACkgEF;;ADhgEA;EACE,gBAAA;ACmgEF;;ADjgEA;EACE,gBAAA;ACogEF;;ADlgEA;EACE,gBAAA;ACqgEF;;ADngEA;EACE,gBAAA;ACsgEF;;ADpgEA;EACE,gBAAA;ACugEF;;ADrgEA;;EAEE,kBAAA;EACA,UAAA;EACA,WAAA;EACA,UAAA;EACA,YAAA;EACA,gBAAA;EACA,sBAAA;EACA,mBAAA;EACA,eAAA;ACwgEF;;ADtgEA;;EAEE,kBAAA;EACA,UAAA;EACA,WAAA;EACA,UAAA;EACA,YAAA;EACA,gBAAA;EACA,sBAAA;EACA,mBAAA;EACA,eAAA;ACygEF;;ADxgEA;EACE,iDAAA;EACA,0DAAA;AC2gEF;;ADzgEA;EACE,oCAAA;EACA,kBAAA;EACA,gBAAA;EACA,mBAAA;EACA,8GAAA;AC4gEF;AD1gEA;;EAEE,gBAAA;AC4gEF;;AD1gEA;EACE,gBAAA;AC6gEF;;AD3gEA;EACE,gBAAA;AC8gEF;;AD5gEA;EACE,gBAAA;AC+gEF;;AD7gEA;EACE,gBAAA;ACghEF;;AD9gEA;EACE,gBAAA;ACihEF;;AD/gEA;EACE,gBAAA;ACkhEF;;ADhhEA;EACE,gBAAA;ACmhEF;;ADjhEA;EACE,gBAAA;ACohEF;;ADlhEA;EACE,gBAAA;ACqhEF;;ADnhEA;EACE,gBAAA;ACshEF;;ADphEA;EACE,gBAAA;ACuhEF;;ADrhEA;EACE,gBAAA;ACwhEF;;ADthEA;EACE,gBAAA;ACyhEF;;ADvhEA;EACE,gBAAA;AC0hEF;;ADxhEA;EACE,gBAAA;AC2hEF;;ADzhEA;EACE,gBAAA;AC4hEF;;AD1hEA;EACE,gBAAA;AC6hEF;;AD3hEA;EACE,gBAAA;AC8hEF;;AD5hEA;EACE,gBAAA;AC+hEF;;AD7hEA;EACE,gBAAA;ACgiEF;;AD9hEA;EACE,gBAAA;ACiiEF;;AD/hEA;EACE,gBAAA;ACkiEF;;ADhiEA;EACE,gBAAA;ACmiEF;;ADjiEA;EACE,gBAAA;ACoiEF;;ADliEA;EACE,gBAAA;ACqiEF;;ADniEA;EACE,gBAAA;ACsiEF;;ADpiEA;EACE,gBAAA;ACuiEF;;ADriEA;EACE,gBAAA;ACwiEF;;ADtiEA;EACE,gBAAA;ACyiEF;;ADviEA;EACE,gBAAA;AC0iEF;;ADxiEA;EACE,gBAAA;AC2iEF;;ADziEA;EACE,gBAAA;AC4iEF;;AD1iEA;EACE,gBAAA;AC6iEF;;AD3iEA;EACE,gBAAA;AC8iEF;;AD5iEA;EACE,gBAAA;AC+iEF;;AD7iEA;EACE,gBAAA;ACgjEF;;AD9iEA;EACE,gBAAA;ACijEF;;AD/iEA;EACE,gBAAA;ACkjEF;;ADhjEA;EACE,gBAAA;ACmjEF;;ADjjEA;EACE,gBAAA;ACojEF;;ADljEA;EACE,gBAAA;ACqjEF;;ADnjEA;EACE,gBAAA;ACsjEF;;ADpjEA;EACE,gBAAA;ACujEF;;ADrjEA;EACE,gBAAA;ACwjEF;;ADtjEA;EACE,gBAAA;ACyjEF;;ADvjEA;EACE,gBAAA;AC0jEF;;ADxjEA;EACE,gBAAA;AC2jEF;;ADzjEA;EACE,gBAAA;AC4jEF;;AD1jEA;EACE,gBAAA;AC6jEF;;AD3jEA;EACE,gBAAA;AC8jEF;;AD5jEA;EACE,gBAAA;AC+jEF;;AD7jEA;EACE,gBAAA;ACgkEF;;AD9jEA;EACE,gBAAA;ACikEF;;AD/jEA;EACE,gBAAA;ACkkEF;;ADhkEA;EACE,gBAAA;ACmkEF;;ADjkEA;EACE,gBAAA;ACokEF;;ADlkEA;EACE,gBAAA;ACqkEF;;ADnkEA;EACE,gBAAA;ACskEF;;ADpkEA;EACE,gBAAA;ACukEF;;ADrkEA;EACE,gBAAA;ACwkEF;;ADtkEA;EACE,gBAAA;ACykEF;;ADvkEA;EACE,gBAAA;AC0kEF;;ADxkEA;EACE,gBAAA;AC2kEF;;ADzkEA;EACE,gBAAA;AC4kEF;;AD1kEA;EACE,gBAAA;AC6kEF;;AD3kEA;EACE,gBAAA;AC8kEF;;AD5kEA;EACE,gBAAA;AC+kEF;;AD7kEA;EACE,gBAAA;ACglEF;;AD9kEA;EACE,gBAAA;ACilEF;;AD/kEA;EACE,gBAAA;ACklEF;;ADhlEA;EACE,gBAAA;ACmlEF;;ADjlEA;EACE,gBAAA;AColEF;;ADllEA;EACE,gBAAA;ACqlEF;;ADnlEA;EACE,gBAAA;ACslEF;;ADplEA;EACE,gBAAA;ACulEF;;ADrlEA;EACE,gBAAA;ACwlEF;;ADtlEA;EACE,gBAAA;ACylEF;;ADvlEA;EACE,gBAAA;AC0lEF;;ADxlEA;EACE,gBAAA;AC2lEF;;ADzlEA;EACE,gBAAA;AC4lEF;;AD1lEA;EACE,gBAAA;AC6lEF;;AD3lEA;EACE,gBAAA;AC8lEF;;AD5lEA;EACE,gBAAA;AC+lEF;;AD7lEA;EACE,gBAAA;ACgmEF;;AD9lEA;EACE,gBAAA;ACimEF;;AD/lEA;EACE,gBAAA;ACkmEF;;ADhmEA;EACE,gBAAA;ACmmEF;;ADjmEA;EACE,gBAAA;AComEF;;ADlmEA;EACE,gBAAA;ACqmEF;;ADnmEA;EACE,gBAAA;ACsmEF;;ADpmEA;EACE,gBAAA;ACumEF;;ADrmEA;EACE,gBAAA;ACwmEF;;ADtmEA;EACE,gBAAA;ACymEF;;ADvmEA;EACE,gBAAA;AC0mEF;;ADxmEA;EACE,gBAAA;AC2mEF;;ADzmEA;EACE,gBAAA;AC4mEF;;AD1mEA;EACE,gBAAA;AC6mEF;;AD3mEA;EACE,gBAAA;AC8mEF;;AD5mEA;EACE,gBAAA;AC+mEF;;AD7mEA;EACE,gBAAA;ACgnEF;;AD9mEA;EACE,gBAAA;ACinEF;;AD/mEA;EACE,gBAAA;ACknEF;;ADhnEA;EACE,gBAAA;ACmnEF;;ADjnEA;EACE,gBAAA;AConEF;;ADlnEA;EACE,gBAAA;ACqnEF;;ADnnEA;EACE,gBAAA;ACsnEF;;ADpnEA;EACE,gBAAA;ACunEF;;ADrnEA;EACE,gBAAA;ACwnEF;;ADtnEA;EACE,gBAAA;ACynEF;;ADvnEA;EACE,gBAAA;AC0nEF;;ADxnEA;EACE,gBAAA;AC2nEF;;ADznEA;EACE,gBAAA;AC4nEF;;AD1nEA;EACE,gBAAA;AC6nEF;;AD3nEA;EACE,gBAAA;AC8nEF;;AD5nEA;EACE,gBAAA;AC+nEF;;AD7nEA;EACE,gBAAA;ACgoEF;;AD9nEA;EACE,gBAAA;ACioEF;;AD/nEA;EACE,gBAAA;ACkoEF;;ADhoEA;EACE,gBAAA;ACmoEF;;ADjoEA;EACE,gBAAA;ACooEF;;ADloEA;EACE,gBAAA;ACqoEF;;ADnoEA;EACE,gBAAA;ACsoEF;;ADpoEA;EACE,gBAAA;ACuoEF;;ADroEA;EACE,gBAAA;ACwoEF;;ADtoEA;EACE,gBAAA;ACyoEF;;ADvoEA;EACE,gBAAA;AC0oEF;;ADxoEA;EACE,gBAAA;AC2oEF;;ADzoEA;EACE,gBAAA;AC4oEF;;AD1oEA;EACE,gBAAA;AC6oEF;;AD3oEA;EACE,gBAAA;AC8oEF;;AD5oEA;EACE,gBAAA;AC+oEF;;AD7oEA;EACE,gBAAA;ACgpEF;;AD9oEA;EACE,gBAAA;ACipEF;;AD/oEA;EACE,gBAAA;ACkpEF;;ADhpEA;EACE,gBAAA;ACmpEF;;ADjpEA;EACE,gBAAA;ACopEF;;ADlpEA;EACE,gBAAA;ACqpEF;;ADnpEA;EACE,gBAAA;ACspEF;;ADppEA;EACE,gBAAA;ACupEF;;ADrpEA;EACE,gBAAA;ACwpEF;;ADtpEA;EACE,gBAAA;ACypEF;;ADvpEA;EACE,gBAAA;AC0pEF;;ADxpEA;EACE,gBAAA;AC2pEF;;ADzpEA;EACE,gBAAA;AC4pEF;;AD1pEA;EACE,gBAAA;AC6pEF;;AD3pEA;EACE,gBAAA;AC8pEF;;AD5pEA;EACE,gBAAA;AC+pEF;;AD7pEA;EACE,gBAAA;ACgqEF;;AD9pEA;EACE,gBAAA;ACiqEF;;AD/pEA;EACE,gBAAA;ACkqEF;;ADhqEA;EACE,gBAAA;ACmqEF;;ADjqEA;EACE,gBAAA;ACoqEF;;ADlqEA;EACE,gBAAA;ACqqEF;;ADnqEA;EACE,gBAAA;ACsqEF;;ADpqEA;EACE,gBAAA;ACuqEF;;ADrqEA;EACE,gBAAA;ACwqEF;;ADtqEA;EACE,gBAAA;ACyqEF;;ADvqEA;EACE,gBAAA;AC0qEF;;ADxqEA;EACE,gBAAA;AC2qEF;;ADzqEA;EACE,gBAAA;AC4qEF;;AD1qEA;EACE,gBAAA;AC6qEF;;AD3qEA;EACE,gBAAA;AC8qEF;;AD5qEA;EACE,gBAAA;AC+qEF;;AD7qEA;EACE,gBAAA;ACgrEF;;AD9qEA;EACE,gBAAA;ACirEF;;AD/qEA;EACE,gBAAA;ACkrEF;;ADhrEA;EACE,gBAAA;ACmrEF;;ADjrEA;EACE,gBAAA;ACorEF;;ADlrEA;EACE,gBAAA;ACqrEF;;ADnrEA;EACE,gBAAA;ACsrEF;;ADprEA;EACE,gBAAA;ACurEF;;ADrrEA;EACE,gBAAA;ACwrEF;;ADtrEA;EACE,gBAAA;ACyrEF;;ADvrEA;EACE,gBAAA;AC0rEF;;ADxrEA;EACE,gBAAA;AC2rEF;;ADzrEA;EACE,gBAAA;AC4rEF;;AD1rEA;EACE,gBAAA;AC6rEF;;AD3rEA;EACE,gBAAA;AC8rEF;;AD5rEA;EACE,gBAAA;AC+rEF;;AD7rEA;EACE,gBAAA;ACgsEF;;AD9rEA;EACE,gBAAA;ACisEF;;AD/rEA;EACE,gBAAA;ACksEF;;ADhsEA;EACE,gBAAA;ACmsEF;;ADjsEA;EACE,gBAAA;ACosEF;;ADlsEA;EACE,gBAAA;ACqsEF;;ADnsEA;EACE,gBAAA;ACssEF;;ADpsEA;EACE,gBAAA;ACusEF;;ADrsEA;EACE,gBAAA;ACwsEF;;ADtsEA;EACE,gBAAA;ACysEF;;ADvsEA;EACE,gBAAA;AC0sEF;;ADxsEA;EACE,gBAAA;AC2sEF;;ADzsEA;EACE,gBAAA;AC4sEF;;AD1sEA;EACE,gBAAA;AC6sEF;;AD3sEA;EACE,gBAAA;AC8sEF;;AD5sEA;EACE,gBAAA;AC+sEF;;AD7sEA;EACE,gBAAA;ACgtEF;;AD9sEA;EACE,gBAAA;ACitEF;;AD/sEA;EACE,gBAAA;ACktEF;;ADhtEA;EACE,gBAAA;ACmtEF;;ADjtEA;EACE,gBAAA;ACotEF;;ADltEA;EACE,gBAAA;ACqtEF;;ADntEA;EACE,gBAAA;ACstEF;;ADptEA;EACE,gBAAA;ACutEF;;ADrtEA;EACE,gBAAA;ACwtEF;;ADttEA;EACE,gBAAA;ACytEF;;ADvtEA;EACE,gBAAA;AC0tEF;;ADxtEA;EACE,gBAAA;AC2tEF;;ADztEA;EACE,gBAAA;AC4tEF;;AD1tEA;EACE,gBAAA;AC6tEF;;AD3tEA;EACE,gBAAA;AC8tEF;;AD5tEA;EACE,gBAAA;AC+tEF;;AD7tEA;EACE,gBAAA;ACguEF;;AD9tEA;EACE,gBAAA;ACiuEF;;AD/tEA;EACE,gBAAA;ACkuEF;;ADhuEA;EACE,gBAAA;ACmuEF;;ADjuEA;EACE,gBAAA;ACouEF;;ADluEA;EACE,gBAAA;ACquEF;;ADnuEA;EACE,gBAAA;ACsuEF;;ADpuEA;EACE,gBAAA;ACuuEF;;ADruEA;EACE,gBAAA;ACwuEF;;ADtuEA;EACE,gBAAA;ACyuEF;;ADvuEA;EACE,gBAAA;AC0uEF;;ADxuEA;EACE,gBAAA;AC2uEF;;ADzuEA;EACE,gBAAA;AC4uEF;;AD1uEA;EACE,gBAAA;AC6uEF;;AD3uEA;EACE,gBAAA;AC8uEF;;AD5uEA;EACE,gBAAA;AC+uEF;;AD7uEA;EACE,gBAAA;ACgvEF;;AD9uEA;EACE,gBAAA;ACivEF;;AD/uEA;EACE,gBAAA;ACkvEF;;ADhvEA;EACE,gBAAA;ACmvEF;;ADjvEA;EACE,gBAAA;ACovEF;;ADlvEA;EACE,gBAAA;ACqvEF;;ADnvEA;EACE,gBAAA;ACsvEF;;ADpvEA;EACE,gBAAA;ACuvEF;;ADrvEA;EACE,gBAAA;ACwvEF;;ADtvEA;EACE,gBAAA;ACyvEF;;ADvvEA;EACE,gBAAA;AC0vEF;;ADxvEA;EACE,gBAAA;AC2vEF;;ADzvEA;EACE,gBAAA;AC4vEF;;AD1vEA;EACE,gBAAA;AC6vEF;;AD3vEA;EACE,gBAAA;AC8vEF;;AD5vEA;EACE,gBAAA;AC+vEF;;AD7vEA;EACE,gBAAA;ACgwEF;;AD9vEA;EACE,gBAAA;ACiwEF;;AD/vEA;EACE,gBAAA;ACkwEF;;ADhwEA;EACE,gBAAA;ACmwEF;;ADjwEA;EACE,gBAAA;ACowEF;;ADlwEA;EACE,gBAAA;ACqwEF;;ADnwEA;EACE,gBAAA;ACswEF;;ADpwEA;EACE,gBAAA;ACuwEF;;ADrwEA;EACE,gBAAA;ACwwEF;;ADtwEA;EACE,gBAAA;ACywEF;;ADvwEA;EACE,gBAAA;AC0wEF;;ADxwEA;EACE,gBAAA;AC2wEF;;ADzwEA;EACE,gBAAA;AC4wEF;;AD1wEA;EACE,gBAAA;AC6wEF;;AD3wEA;EACE,gBAAA;AC8wEF;;AD5wEA;EACE,gBAAA;AC+wEF;;AD7wEA;EACE,gBAAA;ACgxEF;;AD9wEA;EACE,gBAAA;ACixEF;;AD/wEA;EACE,gBAAA;ACkxEF;;ADhxEA;EACE,gBAAA;ACmxEF;;ADjxEA;EACE,gBAAA;ACoxEF;;ADlxEA;EACE,gBAAA;ACqxEF;;ADnxEA;EACE,gBAAA;ACsxEF;;ADpxEA;EACE,gBAAA;ACuxEF;;ADrxEA;EACE,gBAAA;ACwxEF;;ADtxEA;EACE,gBAAA;ACyxEF;;ADvxEA;EACE,gBAAA;AC0xEF;;ADxxEA;EACE,gBAAA;AC2xEF;;ADzxEA;EACE,gBAAA;AC4xEF;;AD1xEA;EACE,gBAAA;AC6xEF;;AD3xEA;EACE,gBAAA;AC8xEF;;AD5xEA;EACE,gBAAA;AC+xEF;;AD7xEA;EACE,gBAAA;ACgyEF;;AD9xEA;EACE,gBAAA;ACiyEF;;AD/xEA;EACE,gBAAA;ACkyEF;;ADhyEA;EACE,gBAAA;ACmyEF;;ADjyEA;EACE,gBAAA;ACoyEF;;ADlyEA;EACE,gBAAA;ACqyEF;;ADnyEA;EACE,gBAAA;ACsyEF;;ADpyEA;EACE,gBAAA;ACuyEF;;ADryEA;EACE,gBAAA;ACwyEF;;ADtyEA;EACE,gBAAA;ACyyEF;;ADvyEA;EACE,gBAAA;AC0yEF;;ADxyEA;EACE,gBAAA;AC2yEF;;ADzyEA;EACE,gBAAA;AC4yEF;;AD1yEA;EACE,gBAAA;AC6yEF;;AD3yEA;EACE,gBAAA;AC8yEF;;AD5yEA;EACE,gBAAA;AC+yEF;;AD7yEA;EACE,gBAAA;ACgzEF;;AD9yEA;EACE,gBAAA;ACizEF;;AD/yEA;EACE,gBAAA;ACkzEF;;ADhzEA;EACE,gBAAA;ACmzEF;;ADjzEA;EACE,gBAAA;ACozEF;;ADlzEA;EACE,gBAAA;ACqzEF;;ADnzEA;EACE,gBAAA;ACszEF;;ADpzEA;EACE,gBAAA;ACuzEF;;ADrzEA;EACE,gBAAA;ACwzEF;;ADtzEA;EACE,gBAAA;ACyzEF;;ADvzEA;EACE,gBAAA;AC0zEF;;ADxzEA;EACE,gBAAA;AC2zEF;;ADzzEA;EACE,gBAAA;AC4zEF;;AD1zEA;EACE,gBAAA;AC6zEF;;AD3zEA;EACE,gBAAA;AC8zEF;;AD5zEA;EACE,gBAAA;AC+zEF;;AD7zEA;EACE,gBAAA;ACg0EF;;AD9zEA;EACE,gBAAA;ACi0EF;;AD/zEA;EACE,gBAAA;ACk0EF;;ADh0EA;EACE,gBAAA;ACm0EF;;ADj0EA;EACE,gBAAA;ACo0EF;;ADl0EA;EACE,gBAAA;ACq0EF;;ADn0EA;EACE,gBAAA;ACs0EF;;ADp0EA;EACE,gBAAA;ACu0EF;;ADr0EA;EACE,gBAAA;ACw0EF;;ADt0EA;EACE,gBAAA;ACy0EF;;ADv0EA;EACE,gBAAA;AC00EF;;ADx0EA;EACE,gBAAA;AC20EF;;ADz0EA;EACE,gBAAA;AC40EF;;AD10EA;EACE,gBAAA;AC60EF;;AD30EA;EACE,gBAAA;AC80EF;;AD50EA;EACE,gBAAA;AC+0EF;;AD70EA;EACE,gBAAA;ACg1EF;;AD90EA;EACE,gBAAA;ACi1EF;;AD/0EA;EACE,gBAAA;ACk1EF;;ADh1EA;EACE,gBAAA;ACm1EF;;ADj1EA;EACE,gBAAA;ACo1EF;;ADl1EA;EACE,gBAAA;ACq1EF;;ADn1EA;EACE,gBAAA;ACs1EF;;ADp1EA;EACE,gBAAA;ACu1EF;;ADr1EA;EACE,gBAAA;ACw1EF;;ADt1EA;EACE,gBAAA;ACy1EF;;ADv1EA;EACE,gBAAA;AC01EF;;ADx1EA;EACE,gBAAA;AC21EF;;ADz1EA;EACE,gBAAA;AC41EF;;AD11EA;EACE,gBAAA;AC61EF;;AD31EA;EACE,gBAAA;AC81EF;;AD51EA;EACE,gBAAA;AC+1EF;;AD71EA;EACE,gBAAA;ACg2EF;;AD91EA;EACE,gBAAA;ACi2EF;;AD/1EA;EACE,gBAAA;ACk2EF;;ADh2EA;EACE,gBAAA;ACm2EF;;ADj2EA;EACE,gBAAA;ACo2EF;;ADl2EA;EACE,gBAAA;ACq2EF;;ADn2EA;EACE,gBAAA;ACs2EF;;ADp2EA;EACE,gBAAA;ACu2EF;;ADr2EA;EACE,gBAAA;ACw2EF;;ADt2EA;EACE,gBAAA;ACy2EF;;ADv2EA;EACE,gBAAA;AC02EF;;ADx2EA;EACE,gBAAA;AC22EF;;ADz2EA;EACE,gBAAA;AC42EF;;AD12EA;EACE,gBAAA;AC62EF;;AD32EA;EACE,gBAAA;AC82EF;;AD52EA;EACE,gBAAA;AC+2EF;;AD72EA;EACE,gBAAA;ACg3EF;;AD92EA;EACE,gBAAA;ACi3EF;;AD/2EA;EACE,gBAAA;ACk3EF;;ADh3EA;EACE,gBAAA;ACm3EF;;ADj3EA;EACE,gBAAA;ACo3EF;;ADl3EA;EACE,gBAAA;ACq3EF;;ADn3EA;EACE,gBAAA;ACs3EF;;ADp3EA;EACE,gBAAA;ACu3EF;;ADr3EA;EACE,gBAAA;ACw3EF;;ADt3EA;EACE,gBAAA;ACy3EF;;ADv3EA;EACE,gBAAA;AC03EF;;ADx3EA;EACE,gBAAA;AC23EF;;ADz3EA;EACE,gBAAA;AC43EF;;AD13EA;EACE,gBAAA;AC63EF;;AD33EA;EACE,gBAAA;AC83EF;;AD53EA;EACE,gBAAA;AC+3EF;;AD73EA;EACE,gBAAA;ACg4EF;;AD93EA;EACE,gBAAA;ACi4EF;;AD/3EA;EACE,gBAAA;ACk4EF;;ADh4EA;EACE,gBAAA;ACm4EF;;ADj4EA;EACE,gBAAA;ACo4EF;;ADl4EA;EACE,gBAAA;ACq4EF;;ADn4EA;EACE,gBAAA;ACs4EF;;ADp4EA;EACE,gBAAA;ACu4EF;;ADr4EA;EACE,gBAAA;ACw4EF;;ADt4EA;EACE,gBAAA;ACy4EF;;ADv4EA;EACE,gBAAA;AC04EF;;ADx4EA;EACE,gBAAA;AC24EF;;ADz4EA;EACE,gBAAA;AC44EF;;AD14EA;EACE,gBAAA;AC64EF;;AD34EA;EACE,gBAAA;AC84EF;;AD54EA;EACE,gBAAA;AC+4EF;;AD74EA;EACE,gBAAA;ACg5EF;;AD94EA;EACE,gBAAA;ACi5EF;;AD/4EA;EACE,gBAAA;ACk5EF;;ADh5EA;EACE,gBAAA;ACm5EF;;ADj5EA;EACE,gBAAA;ACo5EF;;ADl5EA;EACE,gBAAA;ACq5EF;;ADn5EA;EACE,gBAAA;ACs5EF;;ADp5EA;EACE,gBAAA;ACu5EF;;ADr5EA;EACE,gBAAA;ACw5EF;;ADt5EA;EACE,gBAAA;ACy5EF;;ADv5EA;EACE,gBAAA;AC05EF;;ADx5EA;EACE,gBAAA;AC25EF;;ADz5EA;EACE,gBAAA;AC45EF;;AD15EA;EACE,gBAAA;AC65EF;;AD35EA;EACE,gBAAA;AC85EF;;AD55EA;EACE,gBAAA;AC+5EF;;AD75EA;EACE,gBAAA;ACg6EF;;AD95EA;EACE,gBAAA;ACi6EF;;AD/5EA;EACE,gBAAA;ACk6EF;;ADh6EA;EACE,gBAAA;ACm6EF;;ADj6EA;EACE,gBAAA;ACo6EF;;ADl6EA;EACE,gBAAA;ACq6EF;;ADn6EA;EACE,gBAAA;ACs6EF;;ADp6EA;EACE,gBAAA;ACu6EF;;ADr6EA;EACE,gBAAA;ACw6EF;;ADt6EA;EACE,gBAAA;ACy6EF;;ADv6EA;EACE,gBAAA;AC06EF;;ADx6EA;EACE,gBAAA;AC26EF;;ADz6EA;EACE,gBAAA;AC46EF;;AD16EA;EACE,gBAAA;AC66EF;;AD36EA;EACE,gBAAA;AC86EF;;AD56EA;EACE,gBAAA;AC+6EF;;AD76EA;EACE,gBAAA;ACg7EF;;AD96EA;EACE,gBAAA;ACi7EF;;AD/6EA;EACE,gBAAA;ACk7EF;;ADh7EA;EACE,gBAAA;ACm7EF;;ADj7EA;EACE,gBAAA;ACo7EF;;ADl7EA;EACE,gBAAA;ACq7EF;;ADn7EA;EACE,gBAAA;ACs7EF;;ADp7EA;EACE,gBAAA;ACu7EF;;ADr7EA;EACE,gBAAA;ACw7EF;;ADt7EA;EACE,gBAAA;ACy7EF;;ADv7EA;EACE,gBAAA;AC07EF;;ADx7EA;EACE,gBAAA;AC27EF;;ADz7EA;EACE,gBAAA;AC47EF;;AD17EA;EACE,gBAAA;AC67EF;;AD37EA;EACE,gBAAA;AC87EF;;AD57EA;EACE,gBAAA;AC+7EF;;AD77EA;EACE,gBAAA;ACg8EF;;AD97EA;EACE,gBAAA;ACi8EF;;AD/7EA;EACE,gBAAA;ACk8EF;;ADh8EA;EACE,gBAAA;ACm8EF;;ADj8EA;EACE,gBAAA;ACo8EF;;ADl8EA;EACE,gBAAA;ACq8EF;;ADn8EA;EACE,gBAAA;ACs8EF;;ADp8EA;EACE,gBAAA;ACu8EF;;ADr8EA;EACE,gBAAA;ACw8EF;;ADt8EA;EACE,gBAAA;ACy8EF;;ADv8EA;EACE,gBAAA;AC08EF;;ADx8EA;EACE,gBAAA;AC28EF;;ADz8EA;EACE,gBAAA;AC48EF;;AD18EA;EACE,gBAAA;AC68EF;;AD38EA;EACE,gBAAA;AC88EF;;AD58EA;EACE,gBAAA;AC+8EF;;AD78EA;EACE,gBAAA;ACg9EF;;AD98EA;EACE,gBAAA;ACi9EF;;AD/8EA;EACE,gBAAA;ACk9EF;;ADh9EA;EACE,gBAAA;ACm9EF;;ADj9EA;EACE,gBAAA;ACo9EF;;ADl9EA;EACE,gBAAA;ACq9EF;;ADn9EA;EACE,gBAAA;ACs9EF;;ADp9EA;EACE,gBAAA;ACu9EF;;ADr9EA;EACE,gBAAA;ACw9EF;;ADt9EA;EACE,gBAAA;ACy9EF;;ADv9EA;EACE,gBAAA;AC09EF;;ADx9EA;EACE,gBAAA;AC29EF;;ADz9EA;EACE,gBAAA;AC49EF;;AD19EA;EACE,gBAAA;AC69EF;;AD39EA;EACE,gBAAA;AC89EF;;AD59EA;EACE,gBAAA;AC+9EF;;AD79EA;EACE,gBAAA;ACg+EF;;AD99EA;EACE,gBAAA;ACi+EF;;AD/9EA;EACE,gBAAA;ACk+EF;;ADh+EA;EACE,gBAAA;ACm+EF;;ADj+EA;EACE,gBAAA;ACo+EF;;ADl+EA;EACE,gBAAA;ACq+EF;;ADn+EA;EACE,gBAAA;ACs+EF;;ADp+EA;EACE,gBAAA;ACu+EF;;ADr+EA;EACE,gBAAA;ACw+EF;;ADt+EA;EACE,gBAAA;ACy+EF;;ADv+EA;EACE,gBAAA;AC0+EF;;ADx+EA;EACE,gBAAA;AC2+EF;;ADz+EA;EACE,gBAAA;AC4+EF;;AD1+EA;EACE,gBAAA;AC6+EF;;AD3+EA;EACE,gBAAA;AC8+EF;;AD5+EA;EACE,gBAAA;AC++EF;;AD7+EA;EACE,gBAAA;ACg/EF;;AD9+EA;EACE,gBAAA;ACi/EF;;AD/+EA;EACE,gBAAA;ACk/EF;;ADh/EA;EACE,gBAAA;ACm/EF;;ADj/EA;EACE,gBAAA;ACo/EF;;ADl/EA;EACE,gBAAA;ACq/EF;;ADn/EA;EACE,gBAAA;ACs/EF;;ADp/EA;EACE,gBAAA;ACu/EF;;ADr/EA;EACE,gBAAA;ACw/EF;;ADt/EA;EACE,gBAAA;ACy/EF;;ADv/EA;EACE,gBAAA;AC0/EF;;ADx/EA;EACE,gBAAA;AC2/EF;;ADz/EA;EACE,gBAAA;AC4/EF;;AD1/EA;EACE,gBAAA;AC6/EF;;AD3/EA;EACE,gBAAA;AC8/EF;;AD5/EA;EACE,gBAAA;AC+/EF;;AD7/EA;EACE,gBAAA;ACggFF;;AD9/EA;EACE,gBAAA;ACigFF;;AD//EA;EACE,gBAAA;ACkgFF;;ADhgFA;EACE,gBAAA;ACmgFF;;ADjgFA;EACE,gBAAA;ACogFF;;ADlgFA;EACE,gBAAA;ACqgFF;;ADngFA;EACE,gBAAA;ACsgFF;;ADrgFA;EACE,gDAAA;EACA,yDAAA;ACwgFF;;ADtgFA;EACE,kCAAA;EACA,kBAAA;EACA,gBAAA;EACA,mBAAA;EACA,gHAAA;ACygFF;ADvgFA;;EAEE,gBAAA;ACygFF;;ADxgFA;EACE,gDAAA;EACA,uDAAA;AC2gFF;;ADzgFA;EACE,kCAAA;EACA,kBAAA;EACA,gBAAA;EACA,mBAAA;EACA,4GAAA;AC4gFF;AD1gFA;;EAEE,gBAAA;AC4gFF;;AD3gFA;EACE,oCAAA;EACA,mBAAA;EACA,gBAAA;EACA,8GAAA;AC8gFF;AD5gFA;EACE,kCAAA;EACA,mBAAA;EACA,gBAAA;EACA,4GAAA;AC8gFF;AD5gFA;EACE,kCAAA;EACA,mBAAA;EACA,gBAAA;EACA,gHAAA;AC8gFF;AD7gFA;EACE,0BAAA;EACA,mBAAA;EACA,4GAAA;AC+gFF;AD7gFA;EACE,0BAAA;EACA,mBAAA;EACA,8GAAA;AC+gFF;AD7gFA;EACE,0BAAA;EACA,mBAAA;EACA,gHAAA;EACA,4oBAAA;AC+gFF;AD7gFA;EACE,0BAAA;EACA,mBAAA;EACA,wHAAA;EACA,2RAAA;AC+gFF","file":"icons.min.css","sourcesContent":["/*\r\nTemplate Name: TailFox - Responsive Tailwind Admin Dashboard\r\nVersion: 1.0\r\nAuthor: MyraStudio\r\nEmail: myrathemes@gmail.com\r\nFile: Icons Css File\r\n*/\r\n\r\n// Icons\r\n@import \"icons/fontawesome-all\";","/*!\n * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2023 Fonticons, Inc.\n */\n.fa {\n font-family: var(--fa-style-family, \"Font Awesome 6 Free\");\n font-weight: var(--fa-style, 900); }\n\n.fa,\n.fa-classic,\n.fa-sharp,\n.fas,\n.fa-solid,\n.far,\n.fa-regular,\n.fab,\n.fa-brands {\n -moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n display: var(--fa-display, inline-block);\n font-style: normal;\n font-variant: normal;\n line-height: 1;\n text-rendering: auto; }\n\n.fas,\n.fa-classic,\n.fa-solid,\n.far,\n.fa-regular {\n font-family: 'Font Awesome 6 Free'; }\n\n.fab,\n.fa-brands {\n font-family: 'Font Awesome 6 Brands'; }\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-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em; }\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.08333em;\n vertical-align: 0.125em; }\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.07143em;\n vertical-align: 0.05357em; }\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em; }\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.04167em;\n vertical-align: -0.125em; }\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em; }\n\n.fa-fw {\n text-align: center;\n width: 1.25em; }\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0; }\n .fa-ul > li {\n position: relative; }\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit; }\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); }\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em); }\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em); }\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out); }\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); }\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out); }\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear); }\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear); }\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse; }\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8)); }\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n .fa-bounce,\n .fa-fade,\n .fa-beat-fade,\n .fa-flip,\n .fa-pulse,\n .fa-shake,\n .fa-spin,\n .fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s; } }\n\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1); }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25)); } }\n\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1); }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25)); } }\n\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0); }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0); }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0); } }\n\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0); }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0); }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0); } }\n\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4); } }\n\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4); } }\n\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125)); } }\n\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125)); } }\n\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }\n\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }\n\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg); }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg); }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg); }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg); }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg); }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg); }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg); }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg); }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); } }\n\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg); }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg); }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg); }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg); }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg); }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg); }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg); }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg); }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg); } }\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 -webkit-transform: rotate(90deg);\n transform: rotate(90deg); }\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg); }\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1); }\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1); }\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none)); }\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n line-height: 2em;\n position: relative;\n vertical-align: middle;\n width: 2.5em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n left: 0;\n position: absolute;\n text-align: center;\n width: 100%;\n z-index: var(--fa-stack-z-index, auto); }\n\n.fa-stack-1x {\n line-height: inherit; }\n\n.fa-stack-2x {\n font-size: 2em; }\n\n.fa-inverse {\n color: var(--fa-inverse, #fff); }\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\nreaders do not read off random characters that represent icons */\n\n.fa-0::before {\n content: \"\\30\"; }\n\n.fa-1::before {\n content: \"\\31\"; }\n\n.fa-2::before {\n content: \"\\32\"; }\n\n.fa-3::before {\n content: \"\\33\"; }\n\n.fa-4::before {\n content: \"\\34\"; }\n\n.fa-5::before {\n content: \"\\35\"; }\n\n.fa-6::before {\n content: \"\\36\"; }\n\n.fa-7::before {\n content: \"\\37\"; }\n\n.fa-8::before {\n content: \"\\38\"; }\n\n.fa-9::before {\n content: \"\\39\"; }\n\n.fa-fill-drip::before {\n content: \"\\f576\"; }\n\n.fa-arrows-to-circle::before {\n content: \"\\e4bd\"; }\n\n.fa-circle-chevron-right::before {\n content: \"\\f138\"; }\n\n.fa-chevron-circle-right::before {\n content: \"\\f138\"; }\n\n.fa-at::before {\n content: \"\\40\"; }\n\n.fa-trash-can::before {\n content: \"\\f2ed\"; }\n\n.fa-trash-alt::before {\n content: \"\\f2ed\"; }\n\n.fa-text-height::before {\n content: \"\\f034\"; }\n\n.fa-user-xmark::before {\n content: \"\\f235\"; }\n\n.fa-user-times::before {\n content: \"\\f235\"; }\n\n.fa-stethoscope::before {\n content: \"\\f0f1\"; }\n\n.fa-message::before {\n content: \"\\f27a\"; }\n\n.fa-comment-alt::before {\n content: \"\\f27a\"; }\n\n.fa-info::before {\n content: \"\\f129\"; }\n\n.fa-down-left-and-up-right-to-center::before {\n content: \"\\f422\"; }\n\n.fa-compress-alt::before {\n content: \"\\f422\"; }\n\n.fa-explosion::before {\n content: \"\\e4e9\"; }\n\n.fa-file-lines::before {\n content: \"\\f15c\"; }\n\n.fa-file-alt::before {\n content: \"\\f15c\"; }\n\n.fa-file-text::before {\n content: \"\\f15c\"; }\n\n.fa-wave-square::before {\n content: \"\\f83e\"; }\n\n.fa-ring::before {\n content: \"\\f70b\"; }\n\n.fa-building-un::before {\n content: \"\\e4d9\"; }\n\n.fa-dice-three::before {\n content: \"\\f527\"; }\n\n.fa-calendar-days::before {\n content: \"\\f073\"; }\n\n.fa-calendar-alt::before {\n content: \"\\f073\"; }\n\n.fa-anchor-circle-check::before {\n content: \"\\e4aa\"; }\n\n.fa-building-circle-arrow-right::before {\n content: \"\\e4d1\"; }\n\n.fa-volleyball::before {\n content: \"\\f45f\"; }\n\n.fa-volleyball-ball::before {\n content: \"\\f45f\"; }\n\n.fa-arrows-up-to-line::before {\n content: \"\\e4c2\"; }\n\n.fa-sort-down::before {\n content: \"\\f0dd\"; }\n\n.fa-sort-desc::before {\n content: \"\\f0dd\"; }\n\n.fa-circle-minus::before {\n content: \"\\f056\"; }\n\n.fa-minus-circle::before {\n content: \"\\f056\"; }\n\n.fa-door-open::before {\n content: \"\\f52b\"; }\n\n.fa-right-from-bracket::before {\n content: \"\\f2f5\"; }\n\n.fa-sign-out-alt::before {\n content: \"\\f2f5\"; }\n\n.fa-atom::before {\n content: \"\\f5d2\"; }\n\n.fa-soap::before {\n content: \"\\e06e\"; }\n\n.fa-icons::before {\n content: \"\\f86d\"; }\n\n.fa-heart-music-camera-bolt::before {\n content: \"\\f86d\"; }\n\n.fa-microphone-lines-slash::before {\n content: \"\\f539\"; }\n\n.fa-microphone-alt-slash::before {\n content: \"\\f539\"; }\n\n.fa-bridge-circle-check::before {\n content: \"\\e4c9\"; }\n\n.fa-pump-medical::before {\n content: \"\\e06a\"; }\n\n.fa-fingerprint::before {\n content: \"\\f577\"; }\n\n.fa-hand-point-right::before {\n content: \"\\f0a4\"; }\n\n.fa-magnifying-glass-location::before {\n content: \"\\f689\"; }\n\n.fa-search-location::before {\n content: \"\\f689\"; }\n\n.fa-forward-step::before {\n content: \"\\f051\"; }\n\n.fa-step-forward::before {\n content: \"\\f051\"; }\n\n.fa-face-smile-beam::before {\n content: \"\\f5b8\"; }\n\n.fa-smile-beam::before {\n content: \"\\f5b8\"; }\n\n.fa-flag-checkered::before {\n content: \"\\f11e\"; }\n\n.fa-football::before {\n content: \"\\f44e\"; }\n\n.fa-football-ball::before {\n content: \"\\f44e\"; }\n\n.fa-school-circle-exclamation::before {\n content: \"\\e56c\"; }\n\n.fa-crop::before {\n content: \"\\f125\"; }\n\n.fa-angles-down::before {\n content: \"\\f103\"; }\n\n.fa-angle-double-down::before {\n content: \"\\f103\"; }\n\n.fa-users-rectangle::before {\n content: \"\\e594\"; }\n\n.fa-people-roof::before {\n content: \"\\e537\"; }\n\n.fa-people-line::before {\n content: \"\\e534\"; }\n\n.fa-beer-mug-empty::before {\n content: \"\\f0fc\"; }\n\n.fa-beer::before {\n content: \"\\f0fc\"; }\n\n.fa-diagram-predecessor::before {\n content: \"\\e477\"; }\n\n.fa-arrow-up-long::before {\n content: \"\\f176\"; }\n\n.fa-long-arrow-up::before {\n content: \"\\f176\"; }\n\n.fa-fire-flame-simple::before {\n content: \"\\f46a\"; }\n\n.fa-burn::before {\n content: \"\\f46a\"; }\n\n.fa-person::before {\n content: \"\\f183\"; }\n\n.fa-male::before {\n content: \"\\f183\"; }\n\n.fa-laptop::before {\n content: \"\\f109\"; }\n\n.fa-file-csv::before {\n content: \"\\f6dd\"; }\n\n.fa-menorah::before {\n content: \"\\f676\"; }\n\n.fa-truck-plane::before {\n content: \"\\e58f\"; }\n\n.fa-record-vinyl::before {\n content: \"\\f8d9\"; }\n\n.fa-face-grin-stars::before {\n content: \"\\f587\"; }\n\n.fa-grin-stars::before {\n content: \"\\f587\"; }\n\n.fa-bong::before {\n content: \"\\f55c\"; }\n\n.fa-spaghetti-monster-flying::before {\n content: \"\\f67b\"; }\n\n.fa-pastafarianism::before {\n content: \"\\f67b\"; }\n\n.fa-arrow-down-up-across-line::before {\n content: \"\\e4af\"; }\n\n.fa-spoon::before {\n content: \"\\f2e5\"; }\n\n.fa-utensil-spoon::before {\n content: \"\\f2e5\"; }\n\n.fa-jar-wheat::before {\n content: \"\\e517\"; }\n\n.fa-envelopes-bulk::before {\n content: \"\\f674\"; }\n\n.fa-mail-bulk::before {\n content: \"\\f674\"; }\n\n.fa-file-circle-exclamation::before {\n content: \"\\e4eb\"; }\n\n.fa-circle-h::before {\n content: \"\\f47e\"; }\n\n.fa-hospital-symbol::before {\n content: \"\\f47e\"; }\n\n.fa-pager::before {\n content: \"\\f815\"; }\n\n.fa-address-book::before {\n content: \"\\f2b9\"; }\n\n.fa-contact-book::before {\n content: \"\\f2b9\"; }\n\n.fa-strikethrough::before {\n content: \"\\f0cc\"; }\n\n.fa-k::before {\n content: \"\\4b\"; }\n\n.fa-landmark-flag::before {\n content: \"\\e51c\"; }\n\n.fa-pencil::before {\n content: \"\\f303\"; }\n\n.fa-pencil-alt::before {\n content: \"\\f303\"; }\n\n.fa-backward::before {\n content: \"\\f04a\"; }\n\n.fa-caret-right::before {\n content: \"\\f0da\"; }\n\n.fa-comments::before {\n content: \"\\f086\"; }\n\n.fa-paste::before {\n content: \"\\f0ea\"; }\n\n.fa-file-clipboard::before {\n content: \"\\f0ea\"; }\n\n.fa-code-pull-request::before {\n content: \"\\e13c\"; }\n\n.fa-clipboard-list::before {\n content: \"\\f46d\"; }\n\n.fa-truck-ramp-box::before {\n content: \"\\f4de\"; }\n\n.fa-truck-loading::before {\n content: \"\\f4de\"; }\n\n.fa-user-check::before {\n content: \"\\f4fc\"; }\n\n.fa-vial-virus::before {\n content: \"\\e597\"; }\n\n.fa-sheet-plastic::before {\n content: \"\\e571\"; }\n\n.fa-blog::before {\n content: \"\\f781\"; }\n\n.fa-user-ninja::before {\n content: \"\\f504\"; }\n\n.fa-person-arrow-up-from-line::before {\n content: \"\\e539\"; }\n\n.fa-scroll-torah::before {\n content: \"\\f6a0\"; }\n\n.fa-torah::before {\n content: \"\\f6a0\"; }\n\n.fa-broom-ball::before {\n content: \"\\f458\"; }\n\n.fa-quidditch::before {\n content: \"\\f458\"; }\n\n.fa-quidditch-broom-ball::before {\n content: \"\\f458\"; }\n\n.fa-toggle-off::before {\n content: \"\\f204\"; }\n\n.fa-box-archive::before {\n content: \"\\f187\"; }\n\n.fa-archive::before {\n content: \"\\f187\"; }\n\n.fa-person-drowning::before {\n content: \"\\e545\"; }\n\n.fa-arrow-down-9-1::before {\n content: \"\\f886\"; }\n\n.fa-sort-numeric-desc::before {\n content: \"\\f886\"; }\n\n.fa-sort-numeric-down-alt::before {\n content: \"\\f886\"; }\n\n.fa-face-grin-tongue-squint::before {\n content: \"\\f58a\"; }\n\n.fa-grin-tongue-squint::before {\n content: \"\\f58a\"; }\n\n.fa-spray-can::before {\n content: \"\\f5bd\"; }\n\n.fa-truck-monster::before {\n content: \"\\f63b\"; }\n\n.fa-w::before {\n content: \"\\57\"; }\n\n.fa-earth-africa::before {\n content: \"\\f57c\"; }\n\n.fa-globe-africa::before {\n content: \"\\f57c\"; }\n\n.fa-rainbow::before {\n content: \"\\f75b\"; }\n\n.fa-circle-notch::before {\n content: \"\\f1ce\"; }\n\n.fa-tablet-screen-button::before {\n content: \"\\f3fa\"; }\n\n.fa-tablet-alt::before {\n content: \"\\f3fa\"; }\n\n.fa-paw::before {\n content: \"\\f1b0\"; }\n\n.fa-cloud::before {\n content: \"\\f0c2\"; }\n\n.fa-trowel-bricks::before {\n content: \"\\e58a\"; }\n\n.fa-face-flushed::before {\n content: \"\\f579\"; }\n\n.fa-flushed::before {\n content: \"\\f579\"; }\n\n.fa-hospital-user::before {\n content: \"\\f80d\"; }\n\n.fa-tent-arrow-left-right::before {\n content: \"\\e57f\"; }\n\n.fa-gavel::before {\n content: \"\\f0e3\"; }\n\n.fa-legal::before {\n content: \"\\f0e3\"; }\n\n.fa-binoculars::before {\n content: \"\\f1e5\"; }\n\n.fa-microphone-slash::before {\n content: \"\\f131\"; }\n\n.fa-box-tissue::before {\n content: \"\\e05b\"; }\n\n.fa-motorcycle::before {\n content: \"\\f21c\"; }\n\n.fa-bell-concierge::before {\n content: \"\\f562\"; }\n\n.fa-concierge-bell::before {\n content: \"\\f562\"; }\n\n.fa-pen-ruler::before {\n content: \"\\f5ae\"; }\n\n.fa-pencil-ruler::before {\n content: \"\\f5ae\"; }\n\n.fa-people-arrows::before {\n content: \"\\e068\"; }\n\n.fa-people-arrows-left-right::before {\n content: \"\\e068\"; }\n\n.fa-mars-and-venus-burst::before {\n content: \"\\e523\"; }\n\n.fa-square-caret-right::before {\n content: \"\\f152\"; }\n\n.fa-caret-square-right::before {\n content: \"\\f152\"; }\n\n.fa-scissors::before {\n content: \"\\f0c4\"; }\n\n.fa-cut::before {\n content: \"\\f0c4\"; }\n\n.fa-sun-plant-wilt::before {\n content: \"\\e57a\"; }\n\n.fa-toilets-portable::before {\n content: \"\\e584\"; }\n\n.fa-hockey-puck::before {\n content: \"\\f453\"; }\n\n.fa-table::before {\n content: \"\\f0ce\"; }\n\n.fa-magnifying-glass-arrow-right::before {\n content: \"\\e521\"; }\n\n.fa-tachograph-digital::before {\n content: \"\\f566\"; }\n\n.fa-digital-tachograph::before {\n content: \"\\f566\"; }\n\n.fa-users-slash::before {\n content: \"\\e073\"; }\n\n.fa-clover::before {\n content: \"\\e139\"; }\n\n.fa-reply::before {\n content: \"\\f3e5\"; }\n\n.fa-mail-reply::before {\n content: \"\\f3e5\"; }\n\n.fa-star-and-crescent::before {\n content: \"\\f699\"; }\n\n.fa-house-fire::before {\n content: \"\\e50c\"; }\n\n.fa-square-minus::before {\n content: \"\\f146\"; }\n\n.fa-minus-square::before {\n content: \"\\f146\"; }\n\n.fa-helicopter::before {\n content: \"\\f533\"; }\n\n.fa-compass::before {\n content: \"\\f14e\"; }\n\n.fa-square-caret-down::before {\n content: \"\\f150\"; }\n\n.fa-caret-square-down::before {\n content: \"\\f150\"; }\n\n.fa-file-circle-question::before {\n content: \"\\e4ef\"; }\n\n.fa-laptop-code::before {\n content: \"\\f5fc\"; }\n\n.fa-swatchbook::before {\n content: \"\\f5c3\"; }\n\n.fa-prescription-bottle::before {\n content: \"\\f485\"; }\n\n.fa-bars::before {\n content: \"\\f0c9\"; }\n\n.fa-navicon::before {\n content: \"\\f0c9\"; }\n\n.fa-people-group::before {\n content: \"\\e533\"; }\n\n.fa-hourglass-end::before {\n content: \"\\f253\"; }\n\n.fa-hourglass-3::before {\n content: \"\\f253\"; }\n\n.fa-heart-crack::before {\n content: \"\\f7a9\"; }\n\n.fa-heart-broken::before {\n content: \"\\f7a9\"; }\n\n.fa-square-up-right::before {\n content: \"\\f360\"; }\n\n.fa-external-link-square-alt::before {\n content: \"\\f360\"; }\n\n.fa-face-kiss-beam::before {\n content: \"\\f597\"; }\n\n.fa-kiss-beam::before {\n content: \"\\f597\"; }\n\n.fa-film::before {\n content: \"\\f008\"; }\n\n.fa-ruler-horizontal::before {\n content: \"\\f547\"; }\n\n.fa-people-robbery::before {\n content: \"\\e536\"; }\n\n.fa-lightbulb::before {\n content: \"\\f0eb\"; }\n\n.fa-caret-left::before {\n content: \"\\f0d9\"; }\n\n.fa-circle-exclamation::before {\n content: \"\\f06a\"; }\n\n.fa-exclamation-circle::before {\n content: \"\\f06a\"; }\n\n.fa-school-circle-xmark::before {\n content: \"\\e56d\"; }\n\n.fa-arrow-right-from-bracket::before {\n content: \"\\f08b\"; }\n\n.fa-sign-out::before {\n content: \"\\f08b\"; }\n\n.fa-circle-chevron-down::before {\n content: \"\\f13a\"; }\n\n.fa-chevron-circle-down::before {\n content: \"\\f13a\"; }\n\n.fa-unlock-keyhole::before {\n content: \"\\f13e\"; }\n\n.fa-unlock-alt::before {\n content: \"\\f13e\"; }\n\n.fa-cloud-showers-heavy::before {\n content: \"\\f740\"; }\n\n.fa-headphones-simple::before {\n content: \"\\f58f\"; }\n\n.fa-headphones-alt::before {\n content: \"\\f58f\"; }\n\n.fa-sitemap::before {\n content: \"\\f0e8\"; }\n\n.fa-circle-dollar-to-slot::before {\n content: \"\\f4b9\"; }\n\n.fa-donate::before {\n content: \"\\f4b9\"; }\n\n.fa-memory::before {\n content: \"\\f538\"; }\n\n.fa-road-spikes::before {\n content: \"\\e568\"; }\n\n.fa-fire-burner::before {\n content: \"\\e4f1\"; }\n\n.fa-flag::before {\n content: \"\\f024\"; }\n\n.fa-hanukiah::before {\n content: \"\\f6e6\"; }\n\n.fa-feather::before {\n content: \"\\f52d\"; }\n\n.fa-volume-low::before {\n content: \"\\f027\"; }\n\n.fa-volume-down::before {\n content: \"\\f027\"; }\n\n.fa-comment-slash::before {\n content: \"\\f4b3\"; }\n\n.fa-cloud-sun-rain::before {\n content: \"\\f743\"; }\n\n.fa-compress::before {\n content: \"\\f066\"; }\n\n.fa-wheat-awn::before {\n content: \"\\e2cd\"; }\n\n.fa-wheat-alt::before {\n content: \"\\e2cd\"; }\n\n.fa-ankh::before {\n content: \"\\f644\"; }\n\n.fa-hands-holding-child::before {\n content: \"\\e4fa\"; }\n\n.fa-asterisk::before {\n content: \"\\2a\"; }\n\n.fa-square-check::before {\n content: \"\\f14a\"; }\n\n.fa-check-square::before {\n content: \"\\f14a\"; }\n\n.fa-peseta-sign::before {\n content: \"\\e221\"; }\n\n.fa-heading::before {\n content: \"\\f1dc\"; }\n\n.fa-header::before {\n content: \"\\f1dc\"; }\n\n.fa-ghost::before {\n content: \"\\f6e2\"; }\n\n.fa-list::before {\n content: \"\\f03a\"; }\n\n.fa-list-squares::before {\n content: \"\\f03a\"; }\n\n.fa-square-phone-flip::before {\n content: \"\\f87b\"; }\n\n.fa-phone-square-alt::before {\n content: \"\\f87b\"; }\n\n.fa-cart-plus::before {\n content: \"\\f217\"; }\n\n.fa-gamepad::before {\n content: \"\\f11b\"; }\n\n.fa-circle-dot::before {\n content: \"\\f192\"; }\n\n.fa-dot-circle::before {\n content: \"\\f192\"; }\n\n.fa-face-dizzy::before {\n content: \"\\f567\"; }\n\n.fa-dizzy::before {\n content: \"\\f567\"; }\n\n.fa-egg::before {\n content: \"\\f7fb\"; }\n\n.fa-house-medical-circle-xmark::before {\n content: \"\\e513\"; }\n\n.fa-campground::before {\n content: \"\\f6bb\"; }\n\n.fa-folder-plus::before {\n content: \"\\f65e\"; }\n\n.fa-futbol::before {\n content: \"\\f1e3\"; }\n\n.fa-futbol-ball::before {\n content: \"\\f1e3\"; }\n\n.fa-soccer-ball::before {\n content: \"\\f1e3\"; }\n\n.fa-paintbrush::before {\n content: \"\\f1fc\"; }\n\n.fa-paint-brush::before {\n content: \"\\f1fc\"; }\n\n.fa-lock::before {\n content: \"\\f023\"; }\n\n.fa-gas-pump::before {\n content: \"\\f52f\"; }\n\n.fa-hot-tub-person::before {\n content: \"\\f593\"; }\n\n.fa-hot-tub::before {\n content: \"\\f593\"; }\n\n.fa-map-location::before {\n content: \"\\f59f\"; }\n\n.fa-map-marked::before {\n content: \"\\f59f\"; }\n\n.fa-house-flood-water::before {\n content: \"\\e50e\"; }\n\n.fa-tree::before {\n content: \"\\f1bb\"; }\n\n.fa-bridge-lock::before {\n content: \"\\e4cc\"; }\n\n.fa-sack-dollar::before {\n content: \"\\f81d\"; }\n\n.fa-pen-to-square::before {\n content: \"\\f044\"; }\n\n.fa-edit::before {\n content: \"\\f044\"; }\n\n.fa-car-side::before {\n content: \"\\f5e4\"; }\n\n.fa-share-nodes::before {\n content: \"\\f1e0\"; }\n\n.fa-share-alt::before {\n content: \"\\f1e0\"; }\n\n.fa-heart-circle-minus::before {\n content: \"\\e4ff\"; }\n\n.fa-hourglass-half::before {\n content: \"\\f252\"; }\n\n.fa-hourglass-2::before {\n content: \"\\f252\"; }\n\n.fa-microscope::before {\n content: \"\\f610\"; }\n\n.fa-sink::before {\n content: \"\\e06d\"; }\n\n.fa-bag-shopping::before {\n content: \"\\f290\"; }\n\n.fa-shopping-bag::before {\n content: \"\\f290\"; }\n\n.fa-arrow-down-z-a::before {\n content: \"\\f881\"; }\n\n.fa-sort-alpha-desc::before {\n content: \"\\f881\"; }\n\n.fa-sort-alpha-down-alt::before {\n content: \"\\f881\"; }\n\n.fa-mitten::before {\n content: \"\\f7b5\"; }\n\n.fa-person-rays::before {\n content: \"\\e54d\"; }\n\n.fa-users::before {\n content: \"\\f0c0\"; }\n\n.fa-eye-slash::before {\n content: \"\\f070\"; }\n\n.fa-flask-vial::before {\n content: \"\\e4f3\"; }\n\n.fa-hand::before {\n content: \"\\f256\"; }\n\n.fa-hand-paper::before {\n content: \"\\f256\"; }\n\n.fa-om::before {\n content: \"\\f679\"; }\n\n.fa-worm::before {\n content: \"\\e599\"; }\n\n.fa-house-circle-xmark::before {\n content: \"\\e50b\"; }\n\n.fa-plug::before {\n content: \"\\f1e6\"; }\n\n.fa-chevron-up::before {\n content: \"\\f077\"; }\n\n.fa-hand-spock::before {\n content: \"\\f259\"; }\n\n.fa-stopwatch::before {\n content: \"\\f2f2\"; }\n\n.fa-face-kiss::before {\n content: \"\\f596\"; }\n\n.fa-kiss::before {\n content: \"\\f596\"; }\n\n.fa-bridge-circle-xmark::before {\n content: \"\\e4cb\"; }\n\n.fa-face-grin-tongue::before {\n content: \"\\f589\"; }\n\n.fa-grin-tongue::before {\n content: \"\\f589\"; }\n\n.fa-chess-bishop::before {\n content: \"\\f43a\"; }\n\n.fa-face-grin-wink::before {\n content: \"\\f58c\"; }\n\n.fa-grin-wink::before {\n content: \"\\f58c\"; }\n\n.fa-ear-deaf::before {\n content: \"\\f2a4\"; }\n\n.fa-deaf::before {\n content: \"\\f2a4\"; }\n\n.fa-deafness::before {\n content: \"\\f2a4\"; }\n\n.fa-hard-of-hearing::before {\n content: \"\\f2a4\"; }\n\n.fa-road-circle-check::before {\n content: \"\\e564\"; }\n\n.fa-dice-five::before {\n content: \"\\f523\"; }\n\n.fa-square-rss::before {\n content: \"\\f143\"; }\n\n.fa-rss-square::before {\n content: \"\\f143\"; }\n\n.fa-land-mine-on::before {\n content: \"\\e51b\"; }\n\n.fa-i-cursor::before {\n content: \"\\f246\"; }\n\n.fa-stamp::before {\n content: \"\\f5bf\"; }\n\n.fa-stairs::before {\n content: \"\\e289\"; }\n\n.fa-i::before {\n content: \"\\49\"; }\n\n.fa-hryvnia-sign::before {\n content: \"\\f6f2\"; }\n\n.fa-hryvnia::before {\n content: \"\\f6f2\"; }\n\n.fa-pills::before {\n content: \"\\f484\"; }\n\n.fa-face-grin-wide::before {\n content: \"\\f581\"; }\n\n.fa-grin-alt::before {\n content: \"\\f581\"; }\n\n.fa-tooth::before {\n content: \"\\f5c9\"; }\n\n.fa-v::before {\n content: \"\\56\"; }\n\n.fa-bangladeshi-taka-sign::before {\n content: \"\\e2e6\"; }\n\n.fa-bicycle::before {\n content: \"\\f206\"; }\n\n.fa-staff-snake::before {\n content: \"\\e579\"; }\n\n.fa-rod-asclepius::before {\n content: \"\\e579\"; }\n\n.fa-rod-snake::before {\n content: \"\\e579\"; }\n\n.fa-staff-aesculapius::before {\n content: \"\\e579\"; }\n\n.fa-head-side-cough-slash::before {\n content: \"\\e062\"; }\n\n.fa-truck-medical::before {\n content: \"\\f0f9\"; }\n\n.fa-ambulance::before {\n content: \"\\f0f9\"; }\n\n.fa-wheat-awn-circle-exclamation::before {\n content: \"\\e598\"; }\n\n.fa-snowman::before {\n content: \"\\f7d0\"; }\n\n.fa-mortar-pestle::before {\n content: \"\\f5a7\"; }\n\n.fa-road-barrier::before {\n content: \"\\e562\"; }\n\n.fa-school::before {\n content: \"\\f549\"; }\n\n.fa-igloo::before {\n content: \"\\f7ae\"; }\n\n.fa-joint::before {\n content: \"\\f595\"; }\n\n.fa-angle-right::before {\n content: \"\\f105\"; }\n\n.fa-horse::before {\n content: \"\\f6f0\"; }\n\n.fa-q::before {\n content: \"\\51\"; }\n\n.fa-g::before {\n content: \"\\47\"; }\n\n.fa-notes-medical::before {\n content: \"\\f481\"; }\n\n.fa-temperature-half::before {\n content: \"\\f2c9\"; }\n\n.fa-temperature-2::before {\n content: \"\\f2c9\"; }\n\n.fa-thermometer-2::before {\n content: \"\\f2c9\"; }\n\n.fa-thermometer-half::before {\n content: \"\\f2c9\"; }\n\n.fa-dong-sign::before {\n content: \"\\e169\"; }\n\n.fa-capsules::before {\n content: \"\\f46b\"; }\n\n.fa-poo-storm::before {\n content: \"\\f75a\"; }\n\n.fa-poo-bolt::before {\n content: \"\\f75a\"; }\n\n.fa-face-frown-open::before {\n content: \"\\f57a\"; }\n\n.fa-frown-open::before {\n content: \"\\f57a\"; }\n\n.fa-hand-point-up::before {\n content: \"\\f0a6\"; }\n\n.fa-money-bill::before {\n content: \"\\f0d6\"; }\n\n.fa-bookmark::before {\n content: \"\\f02e\"; }\n\n.fa-align-justify::before {\n content: \"\\f039\"; }\n\n.fa-umbrella-beach::before {\n content: \"\\f5ca\"; }\n\n.fa-helmet-un::before {\n content: \"\\e503\"; }\n\n.fa-bullseye::before {\n content: \"\\f140\"; }\n\n.fa-bacon::before {\n content: \"\\f7e5\"; }\n\n.fa-hand-point-down::before {\n content: \"\\f0a7\"; }\n\n.fa-arrow-up-from-bracket::before {\n content: \"\\e09a\"; }\n\n.fa-folder::before {\n content: \"\\f07b\"; }\n\n.fa-folder-blank::before {\n content: \"\\f07b\"; }\n\n.fa-file-waveform::before {\n content: \"\\f478\"; }\n\n.fa-file-medical-alt::before {\n content: \"\\f478\"; }\n\n.fa-radiation::before {\n content: \"\\f7b9\"; }\n\n.fa-chart-simple::before {\n content: \"\\e473\"; }\n\n.fa-mars-stroke::before {\n content: \"\\f229\"; }\n\n.fa-vial::before {\n content: \"\\f492\"; }\n\n.fa-gauge::before {\n content: \"\\f624\"; }\n\n.fa-dashboard::before {\n content: \"\\f624\"; }\n\n.fa-gauge-med::before {\n content: \"\\f624\"; }\n\n.fa-tachometer-alt-average::before {\n content: \"\\f624\"; }\n\n.fa-wand-magic-sparkles::before {\n content: \"\\e2ca\"; }\n\n.fa-magic-wand-sparkles::before {\n content: \"\\e2ca\"; }\n\n.fa-e::before {\n content: \"\\45\"; }\n\n.fa-pen-clip::before {\n content: \"\\f305\"; }\n\n.fa-pen-alt::before {\n content: \"\\f305\"; }\n\n.fa-bridge-circle-exclamation::before {\n content: \"\\e4ca\"; }\n\n.fa-user::before {\n content: \"\\f007\"; }\n\n.fa-school-circle-check::before {\n content: \"\\e56b\"; }\n\n.fa-dumpster::before {\n content: \"\\f793\"; }\n\n.fa-van-shuttle::before {\n content: \"\\f5b6\"; }\n\n.fa-shuttle-van::before {\n content: \"\\f5b6\"; }\n\n.fa-building-user::before {\n content: \"\\e4da\"; }\n\n.fa-square-caret-left::before {\n content: \"\\f191\"; }\n\n.fa-caret-square-left::before {\n content: \"\\f191\"; }\n\n.fa-highlighter::before {\n content: \"\\f591\"; }\n\n.fa-key::before {\n content: \"\\f084\"; }\n\n.fa-bullhorn::before {\n content: \"\\f0a1\"; }\n\n.fa-globe::before {\n content: \"\\f0ac\"; }\n\n.fa-synagogue::before {\n content: \"\\f69b\"; }\n\n.fa-person-half-dress::before {\n content: \"\\e548\"; }\n\n.fa-road-bridge::before {\n content: \"\\e563\"; }\n\n.fa-location-arrow::before {\n content: \"\\f124\"; }\n\n.fa-c::before {\n content: \"\\43\"; }\n\n.fa-tablet-button::before {\n content: \"\\f10a\"; }\n\n.fa-building-lock::before {\n content: \"\\e4d6\"; }\n\n.fa-pizza-slice::before {\n content: \"\\f818\"; }\n\n.fa-money-bill-wave::before {\n content: \"\\f53a\"; }\n\n.fa-chart-area::before {\n content: \"\\f1fe\"; }\n\n.fa-area-chart::before {\n content: \"\\f1fe\"; }\n\n.fa-house-flag::before {\n content: \"\\e50d\"; }\n\n.fa-person-circle-minus::before {\n content: \"\\e540\"; }\n\n.fa-ban::before {\n content: \"\\f05e\"; }\n\n.fa-cancel::before {\n content: \"\\f05e\"; }\n\n.fa-camera-rotate::before {\n content: \"\\e0d8\"; }\n\n.fa-spray-can-sparkles::before {\n content: \"\\f5d0\"; }\n\n.fa-air-freshener::before {\n content: \"\\f5d0\"; }\n\n.fa-star::before {\n content: \"\\f005\"; }\n\n.fa-repeat::before {\n content: \"\\f363\"; }\n\n.fa-cross::before {\n content: \"\\f654\"; }\n\n.fa-box::before {\n content: \"\\f466\"; }\n\n.fa-venus-mars::before {\n content: \"\\f228\"; }\n\n.fa-arrow-pointer::before {\n content: \"\\f245\"; }\n\n.fa-mouse-pointer::before {\n content: \"\\f245\"; }\n\n.fa-maximize::before {\n content: \"\\f31e\"; }\n\n.fa-expand-arrows-alt::before {\n content: \"\\f31e\"; }\n\n.fa-charging-station::before {\n content: \"\\f5e7\"; }\n\n.fa-shapes::before {\n content: \"\\f61f\"; }\n\n.fa-triangle-circle-square::before {\n content: \"\\f61f\"; }\n\n.fa-shuffle::before {\n content: \"\\f074\"; }\n\n.fa-random::before {\n content: \"\\f074\"; }\n\n.fa-person-running::before {\n content: \"\\f70c\"; }\n\n.fa-running::before {\n content: \"\\f70c\"; }\n\n.fa-mobile-retro::before {\n content: \"\\e527\"; }\n\n.fa-grip-lines-vertical::before {\n content: \"\\f7a5\"; }\n\n.fa-spider::before {\n content: \"\\f717\"; }\n\n.fa-hands-bound::before {\n content: \"\\e4f9\"; }\n\n.fa-file-invoice-dollar::before {\n content: \"\\f571\"; }\n\n.fa-plane-circle-exclamation::before {\n content: \"\\e556\"; }\n\n.fa-x-ray::before {\n content: \"\\f497\"; }\n\n.fa-spell-check::before {\n content: \"\\f891\"; }\n\n.fa-slash::before {\n content: \"\\f715\"; }\n\n.fa-computer-mouse::before {\n content: \"\\f8cc\"; }\n\n.fa-mouse::before {\n content: \"\\f8cc\"; }\n\n.fa-arrow-right-to-bracket::before {\n content: \"\\f090\"; }\n\n.fa-sign-in::before {\n content: \"\\f090\"; }\n\n.fa-shop-slash::before {\n content: \"\\e070\"; }\n\n.fa-store-alt-slash::before {\n content: \"\\e070\"; }\n\n.fa-server::before {\n content: \"\\f233\"; }\n\n.fa-virus-covid-slash::before {\n content: \"\\e4a9\"; }\n\n.fa-shop-lock::before {\n content: \"\\e4a5\"; }\n\n.fa-hourglass-start::before {\n content: \"\\f251\"; }\n\n.fa-hourglass-1::before {\n content: \"\\f251\"; }\n\n.fa-blender-phone::before {\n content: \"\\f6b6\"; }\n\n.fa-building-wheat::before {\n content: \"\\e4db\"; }\n\n.fa-person-breastfeeding::before {\n content: \"\\e53a\"; }\n\n.fa-right-to-bracket::before {\n content: \"\\f2f6\"; }\n\n.fa-sign-in-alt::before {\n content: \"\\f2f6\"; }\n\n.fa-venus::before {\n content: \"\\f221\"; }\n\n.fa-passport::before {\n content: \"\\f5ab\"; }\n\n.fa-heart-pulse::before {\n content: \"\\f21e\"; }\n\n.fa-heartbeat::before {\n content: \"\\f21e\"; }\n\n.fa-people-carry-box::before {\n content: \"\\f4ce\"; }\n\n.fa-people-carry::before {\n content: \"\\f4ce\"; }\n\n.fa-temperature-high::before {\n content: \"\\f769\"; }\n\n.fa-microchip::before {\n content: \"\\f2db\"; }\n\n.fa-crown::before {\n content: \"\\f521\"; }\n\n.fa-weight-hanging::before {\n content: \"\\f5cd\"; }\n\n.fa-xmarks-lines::before {\n content: \"\\e59a\"; }\n\n.fa-file-prescription::before {\n content: \"\\f572\"; }\n\n.fa-weight-scale::before {\n content: \"\\f496\"; }\n\n.fa-weight::before {\n content: \"\\f496\"; }\n\n.fa-user-group::before {\n content: \"\\f500\"; }\n\n.fa-user-friends::before {\n content: \"\\f500\"; }\n\n.fa-arrow-up-a-z::before {\n content: \"\\f15e\"; }\n\n.fa-sort-alpha-up::before {\n content: \"\\f15e\"; }\n\n.fa-chess-knight::before {\n content: \"\\f441\"; }\n\n.fa-face-laugh-squint::before {\n content: \"\\f59b\"; }\n\n.fa-laugh-squint::before {\n content: \"\\f59b\"; }\n\n.fa-wheelchair::before {\n content: \"\\f193\"; }\n\n.fa-circle-arrow-up::before {\n content: \"\\f0aa\"; }\n\n.fa-arrow-circle-up::before {\n content: \"\\f0aa\"; }\n\n.fa-toggle-on::before {\n content: \"\\f205\"; }\n\n.fa-person-walking::before {\n content: \"\\f554\"; }\n\n.fa-walking::before {\n content: \"\\f554\"; }\n\n.fa-l::before {\n content: \"\\4c\"; }\n\n.fa-fire::before {\n content: \"\\f06d\"; }\n\n.fa-bed-pulse::before {\n content: \"\\f487\"; }\n\n.fa-procedures::before {\n content: \"\\f487\"; }\n\n.fa-shuttle-space::before {\n content: \"\\f197\"; }\n\n.fa-space-shuttle::before {\n content: \"\\f197\"; }\n\n.fa-face-laugh::before {\n content: \"\\f599\"; }\n\n.fa-laugh::before {\n content: \"\\f599\"; }\n\n.fa-folder-open::before {\n content: \"\\f07c\"; }\n\n.fa-heart-circle-plus::before {\n content: \"\\e500\"; }\n\n.fa-code-fork::before {\n content: \"\\e13b\"; }\n\n.fa-city::before {\n content: \"\\f64f\"; }\n\n.fa-microphone-lines::before {\n content: \"\\f3c9\"; }\n\n.fa-microphone-alt::before {\n content: \"\\f3c9\"; }\n\n.fa-pepper-hot::before {\n content: \"\\f816\"; }\n\n.fa-unlock::before {\n content: \"\\f09c\"; }\n\n.fa-colon-sign::before {\n content: \"\\e140\"; }\n\n.fa-headset::before {\n content: \"\\f590\"; }\n\n.fa-store-slash::before {\n content: \"\\e071\"; }\n\n.fa-road-circle-xmark::before {\n content: \"\\e566\"; }\n\n.fa-user-minus::before {\n content: \"\\f503\"; }\n\n.fa-mars-stroke-up::before {\n content: \"\\f22a\"; }\n\n.fa-mars-stroke-v::before {\n content: \"\\f22a\"; }\n\n.fa-champagne-glasses::before {\n content: \"\\f79f\"; }\n\n.fa-glass-cheers::before {\n content: \"\\f79f\"; }\n\n.fa-clipboard::before {\n content: \"\\f328\"; }\n\n.fa-house-circle-exclamation::before {\n content: \"\\e50a\"; }\n\n.fa-file-arrow-up::before {\n content: \"\\f574\"; }\n\n.fa-file-upload::before {\n content: \"\\f574\"; }\n\n.fa-wifi::before {\n content: \"\\f1eb\"; }\n\n.fa-wifi-3::before {\n content: \"\\f1eb\"; }\n\n.fa-wifi-strong::before {\n content: \"\\f1eb\"; }\n\n.fa-bath::before {\n content: \"\\f2cd\"; }\n\n.fa-bathtub::before {\n content: \"\\f2cd\"; }\n\n.fa-underline::before {\n content: \"\\f0cd\"; }\n\n.fa-user-pen::before {\n content: \"\\f4ff\"; }\n\n.fa-user-edit::before {\n content: \"\\f4ff\"; }\n\n.fa-signature::before {\n content: \"\\f5b7\"; }\n\n.fa-stroopwafel::before {\n content: \"\\f551\"; }\n\n.fa-bold::before {\n content: \"\\f032\"; }\n\n.fa-anchor-lock::before {\n content: \"\\e4ad\"; }\n\n.fa-building-ngo::before {\n content: \"\\e4d7\"; }\n\n.fa-manat-sign::before {\n content: \"\\e1d5\"; }\n\n.fa-not-equal::before {\n content: \"\\f53e\"; }\n\n.fa-border-top-left::before {\n content: \"\\f853\"; }\n\n.fa-border-style::before {\n content: \"\\f853\"; }\n\n.fa-map-location-dot::before {\n content: \"\\f5a0\"; }\n\n.fa-map-marked-alt::before {\n content: \"\\f5a0\"; }\n\n.fa-jedi::before {\n content: \"\\f669\"; }\n\n.fa-square-poll-vertical::before {\n content: \"\\f681\"; }\n\n.fa-poll::before {\n content: \"\\f681\"; }\n\n.fa-mug-hot::before {\n content: \"\\f7b6\"; }\n\n.fa-car-battery::before {\n content: \"\\f5df\"; }\n\n.fa-battery-car::before {\n content: \"\\f5df\"; }\n\n.fa-gift::before {\n content: \"\\f06b\"; }\n\n.fa-dice-two::before {\n content: \"\\f528\"; }\n\n.fa-chess-queen::before {\n content: \"\\f445\"; }\n\n.fa-glasses::before {\n content: \"\\f530\"; }\n\n.fa-chess-board::before {\n content: \"\\f43c\"; }\n\n.fa-building-circle-check::before {\n content: \"\\e4d2\"; }\n\n.fa-person-chalkboard::before {\n content: \"\\e53d\"; }\n\n.fa-mars-stroke-right::before {\n content: \"\\f22b\"; }\n\n.fa-mars-stroke-h::before {\n content: \"\\f22b\"; }\n\n.fa-hand-back-fist::before {\n content: \"\\f255\"; }\n\n.fa-hand-rock::before {\n content: \"\\f255\"; }\n\n.fa-square-caret-up::before {\n content: \"\\f151\"; }\n\n.fa-caret-square-up::before {\n content: \"\\f151\"; }\n\n.fa-cloud-showers-water::before {\n content: \"\\e4e4\"; }\n\n.fa-chart-bar::before {\n content: \"\\f080\"; }\n\n.fa-bar-chart::before {\n content: \"\\f080\"; }\n\n.fa-hands-bubbles::before {\n content: \"\\e05e\"; }\n\n.fa-hands-wash::before {\n content: \"\\e05e\"; }\n\n.fa-less-than-equal::before {\n content: \"\\f537\"; }\n\n.fa-train::before {\n content: \"\\f238\"; }\n\n.fa-eye-low-vision::before {\n content: \"\\f2a8\"; }\n\n.fa-low-vision::before {\n content: \"\\f2a8\"; }\n\n.fa-crow::before {\n content: \"\\f520\"; }\n\n.fa-sailboat::before {\n content: \"\\e445\"; }\n\n.fa-window-restore::before {\n content: \"\\f2d2\"; }\n\n.fa-square-plus::before {\n content: \"\\f0fe\"; }\n\n.fa-plus-square::before {\n content: \"\\f0fe\"; }\n\n.fa-torii-gate::before {\n content: \"\\f6a1\"; }\n\n.fa-frog::before {\n content: \"\\f52e\"; }\n\n.fa-bucket::before {\n content: \"\\e4cf\"; }\n\n.fa-image::before {\n content: \"\\f03e\"; }\n\n.fa-microphone::before {\n content: \"\\f130\"; }\n\n.fa-cow::before {\n content: \"\\f6c8\"; }\n\n.fa-caret-up::before {\n content: \"\\f0d8\"; }\n\n.fa-screwdriver::before {\n content: \"\\f54a\"; }\n\n.fa-folder-closed::before {\n content: \"\\e185\"; }\n\n.fa-house-tsunami::before {\n content: \"\\e515\"; }\n\n.fa-square-nfi::before {\n content: \"\\e576\"; }\n\n.fa-arrow-up-from-ground-water::before {\n content: \"\\e4b5\"; }\n\n.fa-martini-glass::before {\n content: \"\\f57b\"; }\n\n.fa-glass-martini-alt::before {\n content: \"\\f57b\"; }\n\n.fa-rotate-left::before {\n content: \"\\f2ea\"; }\n\n.fa-rotate-back::before {\n content: \"\\f2ea\"; }\n\n.fa-rotate-backward::before {\n content: \"\\f2ea\"; }\n\n.fa-undo-alt::before {\n content: \"\\f2ea\"; }\n\n.fa-table-columns::before {\n content: \"\\f0db\"; }\n\n.fa-columns::before {\n content: \"\\f0db\"; }\n\n.fa-lemon::before {\n content: \"\\f094\"; }\n\n.fa-head-side-mask::before {\n content: \"\\e063\"; }\n\n.fa-handshake::before {\n content: \"\\f2b5\"; }\n\n.fa-gem::before {\n content: \"\\f3a5\"; }\n\n.fa-dolly::before {\n content: \"\\f472\"; }\n\n.fa-dolly-box::before {\n content: \"\\f472\"; }\n\n.fa-smoking::before {\n content: \"\\f48d\"; }\n\n.fa-minimize::before {\n content: \"\\f78c\"; }\n\n.fa-compress-arrows-alt::before {\n content: \"\\f78c\"; }\n\n.fa-monument::before {\n content: \"\\f5a6\"; }\n\n.fa-snowplow::before {\n content: \"\\f7d2\"; }\n\n.fa-angles-right::before {\n content: \"\\f101\"; }\n\n.fa-angle-double-right::before {\n content: \"\\f101\"; }\n\n.fa-cannabis::before {\n content: \"\\f55f\"; }\n\n.fa-circle-play::before {\n content: \"\\f144\"; }\n\n.fa-play-circle::before {\n content: \"\\f144\"; }\n\n.fa-tablets::before {\n content: \"\\f490\"; }\n\n.fa-ethernet::before {\n content: \"\\f796\"; }\n\n.fa-euro-sign::before {\n content: \"\\f153\"; }\n\n.fa-eur::before {\n content: \"\\f153\"; }\n\n.fa-euro::before {\n content: \"\\f153\"; }\n\n.fa-chair::before {\n content: \"\\f6c0\"; }\n\n.fa-circle-check::before {\n content: \"\\f058\"; }\n\n.fa-check-circle::before {\n content: \"\\f058\"; }\n\n.fa-circle-stop::before {\n content: \"\\f28d\"; }\n\n.fa-stop-circle::before {\n content: \"\\f28d\"; }\n\n.fa-compass-drafting::before {\n content: \"\\f568\"; }\n\n.fa-drafting-compass::before {\n content: \"\\f568\"; }\n\n.fa-plate-wheat::before {\n content: \"\\e55a\"; }\n\n.fa-icicles::before {\n content: \"\\f7ad\"; }\n\n.fa-person-shelter::before {\n content: \"\\e54f\"; }\n\n.fa-neuter::before {\n content: \"\\f22c\"; }\n\n.fa-id-badge::before {\n content: \"\\f2c1\"; }\n\n.fa-marker::before {\n content: \"\\f5a1\"; }\n\n.fa-face-laugh-beam::before {\n content: \"\\f59a\"; }\n\n.fa-laugh-beam::before {\n content: \"\\f59a\"; }\n\n.fa-helicopter-symbol::before {\n content: \"\\e502\"; }\n\n.fa-universal-access::before {\n content: \"\\f29a\"; }\n\n.fa-circle-chevron-up::before {\n content: \"\\f139\"; }\n\n.fa-chevron-circle-up::before {\n content: \"\\f139\"; }\n\n.fa-lari-sign::before {\n content: \"\\e1c8\"; }\n\n.fa-volcano::before {\n content: \"\\f770\"; }\n\n.fa-person-walking-dashed-line-arrow-right::before {\n content: \"\\e553\"; }\n\n.fa-sterling-sign::before {\n content: \"\\f154\"; }\n\n.fa-gbp::before {\n content: \"\\f154\"; }\n\n.fa-pound-sign::before {\n content: \"\\f154\"; }\n\n.fa-viruses::before {\n content: \"\\e076\"; }\n\n.fa-square-person-confined::before {\n content: \"\\e577\"; }\n\n.fa-user-tie::before {\n content: \"\\f508\"; }\n\n.fa-arrow-down-long::before {\n content: \"\\f175\"; }\n\n.fa-long-arrow-down::before {\n content: \"\\f175\"; }\n\n.fa-tent-arrow-down-to-line::before {\n content: \"\\e57e\"; }\n\n.fa-certificate::before {\n content: \"\\f0a3\"; }\n\n.fa-reply-all::before {\n content: \"\\f122\"; }\n\n.fa-mail-reply-all::before {\n content: \"\\f122\"; }\n\n.fa-suitcase::before {\n content: \"\\f0f2\"; }\n\n.fa-person-skating::before {\n content: \"\\f7c5\"; }\n\n.fa-skating::before {\n content: \"\\f7c5\"; }\n\n.fa-filter-circle-dollar::before {\n content: \"\\f662\"; }\n\n.fa-funnel-dollar::before {\n content: \"\\f662\"; }\n\n.fa-camera-retro::before {\n content: \"\\f083\"; }\n\n.fa-circle-arrow-down::before {\n content: \"\\f0ab\"; }\n\n.fa-arrow-circle-down::before {\n content: \"\\f0ab\"; }\n\n.fa-file-import::before {\n content: \"\\f56f\"; }\n\n.fa-arrow-right-to-file::before {\n content: \"\\f56f\"; }\n\n.fa-square-arrow-up-right::before {\n content: \"\\f14c\"; }\n\n.fa-external-link-square::before {\n content: \"\\f14c\"; }\n\n.fa-box-open::before {\n content: \"\\f49e\"; }\n\n.fa-scroll::before {\n content: \"\\f70e\"; }\n\n.fa-spa::before {\n content: \"\\f5bb\"; }\n\n.fa-location-pin-lock::before {\n content: \"\\e51f\"; }\n\n.fa-pause::before {\n content: \"\\f04c\"; }\n\n.fa-hill-avalanche::before {\n content: \"\\e507\"; }\n\n.fa-temperature-empty::before {\n content: \"\\f2cb\"; }\n\n.fa-temperature-0::before {\n content: \"\\f2cb\"; }\n\n.fa-thermometer-0::before {\n content: \"\\f2cb\"; }\n\n.fa-thermometer-empty::before {\n content: \"\\f2cb\"; }\n\n.fa-bomb::before {\n content: \"\\f1e2\"; }\n\n.fa-registered::before {\n content: \"\\f25d\"; }\n\n.fa-address-card::before {\n content: \"\\f2bb\"; }\n\n.fa-contact-card::before {\n content: \"\\f2bb\"; }\n\n.fa-vcard::before {\n content: \"\\f2bb\"; }\n\n.fa-scale-unbalanced-flip::before {\n content: \"\\f516\"; }\n\n.fa-balance-scale-right::before {\n content: \"\\f516\"; }\n\n.fa-subscript::before {\n content: \"\\f12c\"; }\n\n.fa-diamond-turn-right::before {\n content: \"\\f5eb\"; }\n\n.fa-directions::before {\n content: \"\\f5eb\"; }\n\n.fa-burst::before {\n content: \"\\e4dc\"; }\n\n.fa-house-laptop::before {\n content: \"\\e066\"; }\n\n.fa-laptop-house::before {\n content: \"\\e066\"; }\n\n.fa-face-tired::before {\n content: \"\\f5c8\"; }\n\n.fa-tired::before {\n content: \"\\f5c8\"; }\n\n.fa-money-bills::before {\n content: \"\\e1f3\"; }\n\n.fa-smog::before {\n content: \"\\f75f\"; }\n\n.fa-crutch::before {\n content: \"\\f7f7\"; }\n\n.fa-cloud-arrow-up::before {\n content: \"\\f0ee\"; }\n\n.fa-cloud-upload::before {\n content: \"\\f0ee\"; }\n\n.fa-cloud-upload-alt::before {\n content: \"\\f0ee\"; }\n\n.fa-palette::before {\n content: \"\\f53f\"; }\n\n.fa-arrows-turn-right::before {\n content: \"\\e4c0\"; }\n\n.fa-vest::before {\n content: \"\\e085\"; }\n\n.fa-ferry::before {\n content: \"\\e4ea\"; }\n\n.fa-arrows-down-to-people::before {\n content: \"\\e4b9\"; }\n\n.fa-seedling::before {\n content: \"\\f4d8\"; }\n\n.fa-sprout::before {\n content: \"\\f4d8\"; }\n\n.fa-left-right::before {\n content: \"\\f337\"; }\n\n.fa-arrows-alt-h::before {\n content: \"\\f337\"; }\n\n.fa-boxes-packing::before {\n content: \"\\e4c7\"; }\n\n.fa-circle-arrow-left::before {\n content: \"\\f0a8\"; }\n\n.fa-arrow-circle-left::before {\n content: \"\\f0a8\"; }\n\n.fa-group-arrows-rotate::before {\n content: \"\\e4f6\"; }\n\n.fa-bowl-food::before {\n content: \"\\e4c6\"; }\n\n.fa-candy-cane::before {\n content: \"\\f786\"; }\n\n.fa-arrow-down-wide-short::before {\n content: \"\\f160\"; }\n\n.fa-sort-amount-asc::before {\n content: \"\\f160\"; }\n\n.fa-sort-amount-down::before {\n content: \"\\f160\"; }\n\n.fa-cloud-bolt::before {\n content: \"\\f76c\"; }\n\n.fa-thunderstorm::before {\n content: \"\\f76c\"; }\n\n.fa-text-slash::before {\n content: \"\\f87d\"; }\n\n.fa-remove-format::before {\n content: \"\\f87d\"; }\n\n.fa-face-smile-wink::before {\n content: \"\\f4da\"; }\n\n.fa-smile-wink::before {\n content: \"\\f4da\"; }\n\n.fa-file-word::before {\n content: \"\\f1c2\"; }\n\n.fa-file-powerpoint::before {\n content: \"\\f1c4\"; }\n\n.fa-arrows-left-right::before {\n content: \"\\f07e\"; }\n\n.fa-arrows-h::before {\n content: \"\\f07e\"; }\n\n.fa-house-lock::before {\n content: \"\\e510\"; }\n\n.fa-cloud-arrow-down::before {\n content: \"\\f0ed\"; }\n\n.fa-cloud-download::before {\n content: \"\\f0ed\"; }\n\n.fa-cloud-download-alt::before {\n content: \"\\f0ed\"; }\n\n.fa-children::before {\n content: \"\\e4e1\"; }\n\n.fa-chalkboard::before {\n content: \"\\f51b\"; }\n\n.fa-blackboard::before {\n content: \"\\f51b\"; }\n\n.fa-user-large-slash::before {\n content: \"\\f4fa\"; }\n\n.fa-user-alt-slash::before {\n content: \"\\f4fa\"; }\n\n.fa-envelope-open::before {\n content: \"\\f2b6\"; }\n\n.fa-handshake-simple-slash::before {\n content: \"\\e05f\"; }\n\n.fa-handshake-alt-slash::before {\n content: \"\\e05f\"; }\n\n.fa-mattress-pillow::before {\n content: \"\\e525\"; }\n\n.fa-guarani-sign::before {\n content: \"\\e19a\"; }\n\n.fa-arrows-rotate::before {\n content: \"\\f021\"; }\n\n.fa-refresh::before {\n content: \"\\f021\"; }\n\n.fa-sync::before {\n content: \"\\f021\"; }\n\n.fa-fire-extinguisher::before {\n content: \"\\f134\"; }\n\n.fa-cruzeiro-sign::before {\n content: \"\\e152\"; }\n\n.fa-greater-than-equal::before {\n content: \"\\f532\"; }\n\n.fa-shield-halved::before {\n content: \"\\f3ed\"; }\n\n.fa-shield-alt::before {\n content: \"\\f3ed\"; }\n\n.fa-book-atlas::before {\n content: \"\\f558\"; }\n\n.fa-atlas::before {\n content: \"\\f558\"; }\n\n.fa-virus::before {\n content: \"\\e074\"; }\n\n.fa-envelope-circle-check::before {\n content: \"\\e4e8\"; }\n\n.fa-layer-group::before {\n content: \"\\f5fd\"; }\n\n.fa-arrows-to-dot::before {\n content: \"\\e4be\"; }\n\n.fa-archway::before {\n content: \"\\f557\"; }\n\n.fa-heart-circle-check::before {\n content: \"\\e4fd\"; }\n\n.fa-house-chimney-crack::before {\n content: \"\\f6f1\"; }\n\n.fa-house-damage::before {\n content: \"\\f6f1\"; }\n\n.fa-file-zipper::before {\n content: \"\\f1c6\"; }\n\n.fa-file-archive::before {\n content: \"\\f1c6\"; }\n\n.fa-square::before {\n content: \"\\f0c8\"; }\n\n.fa-martini-glass-empty::before {\n content: \"\\f000\"; }\n\n.fa-glass-martini::before {\n content: \"\\f000\"; }\n\n.fa-couch::before {\n content: \"\\f4b8\"; }\n\n.fa-cedi-sign::before {\n content: \"\\e0df\"; }\n\n.fa-italic::before {\n content: \"\\f033\"; }\n\n.fa-church::before {\n content: \"\\f51d\"; }\n\n.fa-comments-dollar::before {\n content: \"\\f653\"; }\n\n.fa-democrat::before {\n content: \"\\f747\"; }\n\n.fa-z::before {\n content: \"\\5a\"; }\n\n.fa-person-skiing::before {\n content: \"\\f7c9\"; }\n\n.fa-skiing::before {\n content: \"\\f7c9\"; }\n\n.fa-road-lock::before {\n content: \"\\e567\"; }\n\n.fa-a::before {\n content: \"\\41\"; }\n\n.fa-temperature-arrow-down::before {\n content: \"\\e03f\"; }\n\n.fa-temperature-down::before {\n content: \"\\e03f\"; }\n\n.fa-feather-pointed::before {\n content: \"\\f56b\"; }\n\n.fa-feather-alt::before {\n content: \"\\f56b\"; }\n\n.fa-p::before {\n content: \"\\50\"; }\n\n.fa-snowflake::before {\n content: \"\\f2dc\"; }\n\n.fa-newspaper::before {\n content: \"\\f1ea\"; }\n\n.fa-rectangle-ad::before {\n content: \"\\f641\"; }\n\n.fa-ad::before {\n content: \"\\f641\"; }\n\n.fa-circle-arrow-right::before {\n content: \"\\f0a9\"; }\n\n.fa-arrow-circle-right::before {\n content: \"\\f0a9\"; }\n\n.fa-filter-circle-xmark::before {\n content: \"\\e17b\"; }\n\n.fa-locust::before {\n content: \"\\e520\"; }\n\n.fa-sort::before {\n content: \"\\f0dc\"; }\n\n.fa-unsorted::before {\n content: \"\\f0dc\"; }\n\n.fa-list-ol::before {\n content: \"\\f0cb\"; }\n\n.fa-list-1-2::before {\n content: \"\\f0cb\"; }\n\n.fa-list-numeric::before {\n content: \"\\f0cb\"; }\n\n.fa-person-dress-burst::before {\n content: \"\\e544\"; }\n\n.fa-money-check-dollar::before {\n content: \"\\f53d\"; }\n\n.fa-money-check-alt::before {\n content: \"\\f53d\"; }\n\n.fa-vector-square::before {\n content: \"\\f5cb\"; }\n\n.fa-bread-slice::before {\n content: \"\\f7ec\"; }\n\n.fa-language::before {\n content: \"\\f1ab\"; }\n\n.fa-face-kiss-wink-heart::before {\n content: \"\\f598\"; }\n\n.fa-kiss-wink-heart::before {\n content: \"\\f598\"; }\n\n.fa-filter::before {\n content: \"\\f0b0\"; }\n\n.fa-question::before {\n content: \"\\3f\"; }\n\n.fa-file-signature::before {\n content: \"\\f573\"; }\n\n.fa-up-down-left-right::before {\n content: \"\\f0b2\"; }\n\n.fa-arrows-alt::before {\n content: \"\\f0b2\"; }\n\n.fa-house-chimney-user::before {\n content: \"\\e065\"; }\n\n.fa-hand-holding-heart::before {\n content: \"\\f4be\"; }\n\n.fa-puzzle-piece::before {\n content: \"\\f12e\"; }\n\n.fa-money-check::before {\n content: \"\\f53c\"; }\n\n.fa-star-half-stroke::before {\n content: \"\\f5c0\"; }\n\n.fa-star-half-alt::before {\n content: \"\\f5c0\"; }\n\n.fa-code::before {\n content: \"\\f121\"; }\n\n.fa-whiskey-glass::before {\n content: \"\\f7a0\"; }\n\n.fa-glass-whiskey::before {\n content: \"\\f7a0\"; }\n\n.fa-building-circle-exclamation::before {\n content: \"\\e4d3\"; }\n\n.fa-magnifying-glass-chart::before {\n content: \"\\e522\"; }\n\n.fa-arrow-up-right-from-square::before {\n content: \"\\f08e\"; }\n\n.fa-external-link::before {\n content: \"\\f08e\"; }\n\n.fa-cubes-stacked::before {\n content: \"\\e4e6\"; }\n\n.fa-won-sign::before {\n content: \"\\f159\"; }\n\n.fa-krw::before {\n content: \"\\f159\"; }\n\n.fa-won::before {\n content: \"\\f159\"; }\n\n.fa-virus-covid::before {\n content: \"\\e4a8\"; }\n\n.fa-austral-sign::before {\n content: \"\\e0a9\"; }\n\n.fa-f::before {\n content: \"\\46\"; }\n\n.fa-leaf::before {\n content: \"\\f06c\"; }\n\n.fa-road::before {\n content: \"\\f018\"; }\n\n.fa-taxi::before {\n content: \"\\f1ba\"; }\n\n.fa-cab::before {\n content: \"\\f1ba\"; }\n\n.fa-person-circle-plus::before {\n content: \"\\e541\"; }\n\n.fa-chart-pie::before {\n content: \"\\f200\"; }\n\n.fa-pie-chart::before {\n content: \"\\f200\"; }\n\n.fa-bolt-lightning::before {\n content: \"\\e0b7\"; }\n\n.fa-sack-xmark::before {\n content: \"\\e56a\"; }\n\n.fa-file-excel::before {\n content: \"\\f1c3\"; }\n\n.fa-file-contract::before {\n content: \"\\f56c\"; }\n\n.fa-fish-fins::before {\n content: \"\\e4f2\"; }\n\n.fa-building-flag::before {\n content: \"\\e4d5\"; }\n\n.fa-face-grin-beam::before {\n content: \"\\f582\"; }\n\n.fa-grin-beam::before {\n content: \"\\f582\"; }\n\n.fa-object-ungroup::before {\n content: \"\\f248\"; }\n\n.fa-poop::before {\n content: \"\\f619\"; }\n\n.fa-location-pin::before {\n content: \"\\f041\"; }\n\n.fa-map-marker::before {\n content: \"\\f041\"; }\n\n.fa-kaaba::before {\n content: \"\\f66b\"; }\n\n.fa-toilet-paper::before {\n content: \"\\f71e\"; }\n\n.fa-helmet-safety::before {\n content: \"\\f807\"; }\n\n.fa-hard-hat::before {\n content: \"\\f807\"; }\n\n.fa-hat-hard::before {\n content: \"\\f807\"; }\n\n.fa-eject::before {\n content: \"\\f052\"; }\n\n.fa-circle-right::before {\n content: \"\\f35a\"; }\n\n.fa-arrow-alt-circle-right::before {\n content: \"\\f35a\"; }\n\n.fa-plane-circle-check::before {\n content: \"\\e555\"; }\n\n.fa-face-rolling-eyes::before {\n content: \"\\f5a5\"; }\n\n.fa-meh-rolling-eyes::before {\n content: \"\\f5a5\"; }\n\n.fa-object-group::before {\n content: \"\\f247\"; }\n\n.fa-chart-line::before {\n content: \"\\f201\"; }\n\n.fa-line-chart::before {\n content: \"\\f201\"; }\n\n.fa-mask-ventilator::before {\n content: \"\\e524\"; }\n\n.fa-arrow-right::before {\n content: \"\\f061\"; }\n\n.fa-signs-post::before {\n content: \"\\f277\"; }\n\n.fa-map-signs::before {\n content: \"\\f277\"; }\n\n.fa-cash-register::before {\n content: \"\\f788\"; }\n\n.fa-person-circle-question::before {\n content: \"\\e542\"; }\n\n.fa-h::before {\n content: \"\\48\"; }\n\n.fa-tarp::before {\n content: \"\\e57b\"; }\n\n.fa-screwdriver-wrench::before {\n content: \"\\f7d9\"; }\n\n.fa-tools::before {\n content: \"\\f7d9\"; }\n\n.fa-arrows-to-eye::before {\n content: \"\\e4bf\"; }\n\n.fa-plug-circle-bolt::before {\n content: \"\\e55b\"; }\n\n.fa-heart::before {\n content: \"\\f004\"; }\n\n.fa-mars-and-venus::before {\n content: \"\\f224\"; }\n\n.fa-house-user::before {\n content: \"\\e1b0\"; }\n\n.fa-home-user::before {\n content: \"\\e1b0\"; }\n\n.fa-dumpster-fire::before {\n content: \"\\f794\"; }\n\n.fa-house-crack::before {\n content: \"\\e3b1\"; }\n\n.fa-martini-glass-citrus::before {\n content: \"\\f561\"; }\n\n.fa-cocktail::before {\n content: \"\\f561\"; }\n\n.fa-face-surprise::before {\n content: \"\\f5c2\"; }\n\n.fa-surprise::before {\n content: \"\\f5c2\"; }\n\n.fa-bottle-water::before {\n content: \"\\e4c5\"; }\n\n.fa-circle-pause::before {\n content: \"\\f28b\"; }\n\n.fa-pause-circle::before {\n content: \"\\f28b\"; }\n\n.fa-toilet-paper-slash::before {\n content: \"\\e072\"; }\n\n.fa-apple-whole::before {\n content: \"\\f5d1\"; }\n\n.fa-apple-alt::before {\n content: \"\\f5d1\"; }\n\n.fa-kitchen-set::before {\n content: \"\\e51a\"; }\n\n.fa-r::before {\n content: \"\\52\"; }\n\n.fa-temperature-quarter::before {\n content: \"\\f2ca\"; }\n\n.fa-temperature-1::before {\n content: \"\\f2ca\"; }\n\n.fa-thermometer-1::before {\n content: \"\\f2ca\"; }\n\n.fa-thermometer-quarter::before {\n content: \"\\f2ca\"; }\n\n.fa-cube::before {\n content: \"\\f1b2\"; }\n\n.fa-bitcoin-sign::before {\n content: \"\\e0b4\"; }\n\n.fa-shield-dog::before {\n content: \"\\e573\"; }\n\n.fa-solar-panel::before {\n content: \"\\f5ba\"; }\n\n.fa-lock-open::before {\n content: \"\\f3c1\"; }\n\n.fa-elevator::before {\n content: \"\\e16d\"; }\n\n.fa-money-bill-transfer::before {\n content: \"\\e528\"; }\n\n.fa-money-bill-trend-up::before {\n content: \"\\e529\"; }\n\n.fa-house-flood-water-circle-arrow-right::before {\n content: \"\\e50f\"; }\n\n.fa-square-poll-horizontal::before {\n content: \"\\f682\"; }\n\n.fa-poll-h::before {\n content: \"\\f682\"; }\n\n.fa-circle::before {\n content: \"\\f111\"; }\n\n.fa-backward-fast::before {\n content: \"\\f049\"; }\n\n.fa-fast-backward::before {\n content: \"\\f049\"; }\n\n.fa-recycle::before {\n content: \"\\f1b8\"; }\n\n.fa-user-astronaut::before {\n content: \"\\f4fb\"; }\n\n.fa-plane-slash::before {\n content: \"\\e069\"; }\n\n.fa-trademark::before {\n content: \"\\f25c\"; }\n\n.fa-basketball::before {\n content: \"\\f434\"; }\n\n.fa-basketball-ball::before {\n content: \"\\f434\"; }\n\n.fa-satellite-dish::before {\n content: \"\\f7c0\"; }\n\n.fa-circle-up::before {\n content: \"\\f35b\"; }\n\n.fa-arrow-alt-circle-up::before {\n content: \"\\f35b\"; }\n\n.fa-mobile-screen-button::before {\n content: \"\\f3cd\"; }\n\n.fa-mobile-alt::before {\n content: \"\\f3cd\"; }\n\n.fa-volume-high::before {\n content: \"\\f028\"; }\n\n.fa-volume-up::before {\n content: \"\\f028\"; }\n\n.fa-users-rays::before {\n content: \"\\e593\"; }\n\n.fa-wallet::before {\n content: \"\\f555\"; }\n\n.fa-clipboard-check::before {\n content: \"\\f46c\"; }\n\n.fa-file-audio::before {\n content: \"\\f1c7\"; }\n\n.fa-burger::before {\n content: \"\\f805\"; }\n\n.fa-hamburger::before {\n content: \"\\f805\"; }\n\n.fa-wrench::before {\n content: \"\\f0ad\"; }\n\n.fa-bugs::before {\n content: \"\\e4d0\"; }\n\n.fa-rupee-sign::before {\n content: \"\\f156\"; }\n\n.fa-rupee::before {\n content: \"\\f156\"; }\n\n.fa-file-image::before {\n content: \"\\f1c5\"; }\n\n.fa-circle-question::before {\n content: \"\\f059\"; }\n\n.fa-question-circle::before {\n content: \"\\f059\"; }\n\n.fa-plane-departure::before {\n content: \"\\f5b0\"; }\n\n.fa-handshake-slash::before {\n content: \"\\e060\"; }\n\n.fa-book-bookmark::before {\n content: \"\\e0bb\"; }\n\n.fa-code-branch::before {\n content: \"\\f126\"; }\n\n.fa-hat-cowboy::before {\n content: \"\\f8c0\"; }\n\n.fa-bridge::before {\n content: \"\\e4c8\"; }\n\n.fa-phone-flip::before {\n content: \"\\f879\"; }\n\n.fa-phone-alt::before {\n content: \"\\f879\"; }\n\n.fa-truck-front::before {\n content: \"\\e2b7\"; }\n\n.fa-cat::before {\n content: \"\\f6be\"; }\n\n.fa-anchor-circle-exclamation::before {\n content: \"\\e4ab\"; }\n\n.fa-truck-field::before {\n content: \"\\e58d\"; }\n\n.fa-route::before {\n content: \"\\f4d7\"; }\n\n.fa-clipboard-question::before {\n content: \"\\e4e3\"; }\n\n.fa-panorama::before {\n content: \"\\e209\"; }\n\n.fa-comment-medical::before {\n content: \"\\f7f5\"; }\n\n.fa-teeth-open::before {\n content: \"\\f62f\"; }\n\n.fa-file-circle-minus::before {\n content: \"\\e4ed\"; }\n\n.fa-tags::before {\n content: \"\\f02c\"; }\n\n.fa-wine-glass::before {\n content: \"\\f4e3\"; }\n\n.fa-forward-fast::before {\n content: \"\\f050\"; }\n\n.fa-fast-forward::before {\n content: \"\\f050\"; }\n\n.fa-face-meh-blank::before {\n content: \"\\f5a4\"; }\n\n.fa-meh-blank::before {\n content: \"\\f5a4\"; }\n\n.fa-square-parking::before {\n content: \"\\f540\"; }\n\n.fa-parking::before {\n content: \"\\f540\"; }\n\n.fa-house-signal::before {\n content: \"\\e012\"; }\n\n.fa-bars-progress::before {\n content: \"\\f828\"; }\n\n.fa-tasks-alt::before {\n content: \"\\f828\"; }\n\n.fa-faucet-drip::before {\n content: \"\\e006\"; }\n\n.fa-cart-flatbed::before {\n content: \"\\f474\"; }\n\n.fa-dolly-flatbed::before {\n content: \"\\f474\"; }\n\n.fa-ban-smoking::before {\n content: \"\\f54d\"; }\n\n.fa-smoking-ban::before {\n content: \"\\f54d\"; }\n\n.fa-terminal::before {\n content: \"\\f120\"; }\n\n.fa-mobile-button::before {\n content: \"\\f10b\"; }\n\n.fa-house-medical-flag::before {\n content: \"\\e514\"; }\n\n.fa-basket-shopping::before {\n content: \"\\f291\"; }\n\n.fa-shopping-basket::before {\n content: \"\\f291\"; }\n\n.fa-tape::before {\n content: \"\\f4db\"; }\n\n.fa-bus-simple::before {\n content: \"\\f55e\"; }\n\n.fa-bus-alt::before {\n content: \"\\f55e\"; }\n\n.fa-eye::before {\n content: \"\\f06e\"; }\n\n.fa-face-sad-cry::before {\n content: \"\\f5b3\"; }\n\n.fa-sad-cry::before {\n content: \"\\f5b3\"; }\n\n.fa-audio-description::before {\n content: \"\\f29e\"; }\n\n.fa-person-military-to-person::before {\n content: \"\\e54c\"; }\n\n.fa-file-shield::before {\n content: \"\\e4f0\"; }\n\n.fa-user-slash::before {\n content: \"\\f506\"; }\n\n.fa-pen::before {\n content: \"\\f304\"; }\n\n.fa-tower-observation::before {\n content: \"\\e586\"; }\n\n.fa-file-code::before {\n content: \"\\f1c9\"; }\n\n.fa-signal::before {\n content: \"\\f012\"; }\n\n.fa-signal-5::before {\n content: \"\\f012\"; }\n\n.fa-signal-perfect::before {\n content: \"\\f012\"; }\n\n.fa-bus::before {\n content: \"\\f207\"; }\n\n.fa-heart-circle-xmark::before {\n content: \"\\e501\"; }\n\n.fa-house-chimney::before {\n content: \"\\e3af\"; }\n\n.fa-home-lg::before {\n content: \"\\e3af\"; }\n\n.fa-window-maximize::before {\n content: \"\\f2d0\"; }\n\n.fa-face-frown::before {\n content: \"\\f119\"; }\n\n.fa-frown::before {\n content: \"\\f119\"; }\n\n.fa-prescription::before {\n content: \"\\f5b1\"; }\n\n.fa-shop::before {\n content: \"\\f54f\"; }\n\n.fa-store-alt::before {\n content: \"\\f54f\"; }\n\n.fa-floppy-disk::before {\n content: \"\\f0c7\"; }\n\n.fa-save::before {\n content: \"\\f0c7\"; }\n\n.fa-vihara::before {\n content: \"\\f6a7\"; }\n\n.fa-scale-unbalanced::before {\n content: \"\\f515\"; }\n\n.fa-balance-scale-left::before {\n content: \"\\f515\"; }\n\n.fa-sort-up::before {\n content: \"\\f0de\"; }\n\n.fa-sort-asc::before {\n content: \"\\f0de\"; }\n\n.fa-comment-dots::before {\n content: \"\\f4ad\"; }\n\n.fa-commenting::before {\n content: \"\\f4ad\"; }\n\n.fa-plant-wilt::before {\n content: \"\\e5aa\"; }\n\n.fa-diamond::before {\n content: \"\\f219\"; }\n\n.fa-face-grin-squint::before {\n content: \"\\f585\"; }\n\n.fa-grin-squint::before {\n content: \"\\f585\"; }\n\n.fa-hand-holding-dollar::before {\n content: \"\\f4c0\"; }\n\n.fa-hand-holding-usd::before {\n content: \"\\f4c0\"; }\n\n.fa-bacterium::before {\n content: \"\\e05a\"; }\n\n.fa-hand-pointer::before {\n content: \"\\f25a\"; }\n\n.fa-drum-steelpan::before {\n content: \"\\f56a\"; }\n\n.fa-hand-scissors::before {\n content: \"\\f257\"; }\n\n.fa-hands-praying::before {\n content: \"\\f684\"; }\n\n.fa-praying-hands::before {\n content: \"\\f684\"; }\n\n.fa-arrow-rotate-right::before {\n content: \"\\f01e\"; }\n\n.fa-arrow-right-rotate::before {\n content: \"\\f01e\"; }\n\n.fa-arrow-rotate-forward::before {\n content: \"\\f01e\"; }\n\n.fa-redo::before {\n content: \"\\f01e\"; }\n\n.fa-biohazard::before {\n content: \"\\f780\"; }\n\n.fa-location-crosshairs::before {\n content: \"\\f601\"; }\n\n.fa-location::before {\n content: \"\\f601\"; }\n\n.fa-mars-double::before {\n content: \"\\f227\"; }\n\n.fa-child-dress::before {\n content: \"\\e59c\"; }\n\n.fa-users-between-lines::before {\n content: \"\\e591\"; }\n\n.fa-lungs-virus::before {\n content: \"\\e067\"; }\n\n.fa-face-grin-tears::before {\n content: \"\\f588\"; }\n\n.fa-grin-tears::before {\n content: \"\\f588\"; }\n\n.fa-phone::before {\n content: \"\\f095\"; }\n\n.fa-calendar-xmark::before {\n content: \"\\f273\"; }\n\n.fa-calendar-times::before {\n content: \"\\f273\"; }\n\n.fa-child-reaching::before {\n content: \"\\e59d\"; }\n\n.fa-head-side-virus::before {\n content: \"\\e064\"; }\n\n.fa-user-gear::before {\n content: \"\\f4fe\"; }\n\n.fa-user-cog::before {\n content: \"\\f4fe\"; }\n\n.fa-arrow-up-1-9::before {\n content: \"\\f163\"; }\n\n.fa-sort-numeric-up::before {\n content: \"\\f163\"; }\n\n.fa-door-closed::before {\n content: \"\\f52a\"; }\n\n.fa-shield-virus::before {\n content: \"\\e06c\"; }\n\n.fa-dice-six::before {\n content: \"\\f526\"; }\n\n.fa-mosquito-net::before {\n content: \"\\e52c\"; }\n\n.fa-bridge-water::before {\n content: \"\\e4ce\"; }\n\n.fa-person-booth::before {\n content: \"\\f756\"; }\n\n.fa-text-width::before {\n content: \"\\f035\"; }\n\n.fa-hat-wizard::before {\n content: \"\\f6e8\"; }\n\n.fa-pen-fancy::before {\n content: \"\\f5ac\"; }\n\n.fa-person-digging::before {\n content: \"\\f85e\"; }\n\n.fa-digging::before {\n content: \"\\f85e\"; }\n\n.fa-trash::before {\n content: \"\\f1f8\"; }\n\n.fa-gauge-simple::before {\n content: \"\\f629\"; }\n\n.fa-gauge-simple-med::before {\n content: \"\\f629\"; }\n\n.fa-tachometer-average::before {\n content: \"\\f629\"; }\n\n.fa-book-medical::before {\n content: \"\\f7e6\"; }\n\n.fa-poo::before {\n content: \"\\f2fe\"; }\n\n.fa-quote-right::before {\n content: \"\\f10e\"; }\n\n.fa-quote-right-alt::before {\n content: \"\\f10e\"; }\n\n.fa-shirt::before {\n content: \"\\f553\"; }\n\n.fa-t-shirt::before {\n content: \"\\f553\"; }\n\n.fa-tshirt::before {\n content: \"\\f553\"; }\n\n.fa-cubes::before {\n content: \"\\f1b3\"; }\n\n.fa-divide::before {\n content: \"\\f529\"; }\n\n.fa-tenge-sign::before {\n content: \"\\f7d7\"; }\n\n.fa-tenge::before {\n content: \"\\f7d7\"; }\n\n.fa-headphones::before {\n content: \"\\f025\"; }\n\n.fa-hands-holding::before {\n content: \"\\f4c2\"; }\n\n.fa-hands-clapping::before {\n content: \"\\e1a8\"; }\n\n.fa-republican::before {\n content: \"\\f75e\"; }\n\n.fa-arrow-left::before {\n content: \"\\f060\"; }\n\n.fa-person-circle-xmark::before {\n content: \"\\e543\"; }\n\n.fa-ruler::before {\n content: \"\\f545\"; }\n\n.fa-align-left::before {\n content: \"\\f036\"; }\n\n.fa-dice-d6::before {\n content: \"\\f6d1\"; }\n\n.fa-restroom::before {\n content: \"\\f7bd\"; }\n\n.fa-j::before {\n content: \"\\4a\"; }\n\n.fa-users-viewfinder::before {\n content: \"\\e595\"; }\n\n.fa-file-video::before {\n content: \"\\f1c8\"; }\n\n.fa-up-right-from-square::before {\n content: \"\\f35d\"; }\n\n.fa-external-link-alt::before {\n content: \"\\f35d\"; }\n\n.fa-table-cells::before {\n content: \"\\f00a\"; }\n\n.fa-th::before {\n content: \"\\f00a\"; }\n\n.fa-file-pdf::before {\n content: \"\\f1c1\"; }\n\n.fa-book-bible::before {\n content: \"\\f647\"; }\n\n.fa-bible::before {\n content: \"\\f647\"; }\n\n.fa-o::before {\n content: \"\\4f\"; }\n\n.fa-suitcase-medical::before {\n content: \"\\f0fa\"; }\n\n.fa-medkit::before {\n content: \"\\f0fa\"; }\n\n.fa-user-secret::before {\n content: \"\\f21b\"; }\n\n.fa-otter::before {\n content: \"\\f700\"; }\n\n.fa-person-dress::before {\n content: \"\\f182\"; }\n\n.fa-female::before {\n content: \"\\f182\"; }\n\n.fa-comment-dollar::before {\n content: \"\\f651\"; }\n\n.fa-business-time::before {\n content: \"\\f64a\"; }\n\n.fa-briefcase-clock::before {\n content: \"\\f64a\"; }\n\n.fa-table-cells-large::before {\n content: \"\\f009\"; }\n\n.fa-th-large::before {\n content: \"\\f009\"; }\n\n.fa-book-tanakh::before {\n content: \"\\f827\"; }\n\n.fa-tanakh::before {\n content: \"\\f827\"; }\n\n.fa-phone-volume::before {\n content: \"\\f2a0\"; }\n\n.fa-volume-control-phone::before {\n content: \"\\f2a0\"; }\n\n.fa-hat-cowboy-side::before {\n content: \"\\f8c1\"; }\n\n.fa-clipboard-user::before {\n content: \"\\f7f3\"; }\n\n.fa-child::before {\n content: \"\\f1ae\"; }\n\n.fa-lira-sign::before {\n content: \"\\f195\"; }\n\n.fa-satellite::before {\n content: \"\\f7bf\"; }\n\n.fa-plane-lock::before {\n content: \"\\e558\"; }\n\n.fa-tag::before {\n content: \"\\f02b\"; }\n\n.fa-comment::before {\n content: \"\\f075\"; }\n\n.fa-cake-candles::before {\n content: \"\\f1fd\"; }\n\n.fa-birthday-cake::before {\n content: \"\\f1fd\"; }\n\n.fa-cake::before {\n content: \"\\f1fd\"; }\n\n.fa-envelope::before {\n content: \"\\f0e0\"; }\n\n.fa-angles-up::before {\n content: \"\\f102\"; }\n\n.fa-angle-double-up::before {\n content: \"\\f102\"; }\n\n.fa-paperclip::before {\n content: \"\\f0c6\"; }\n\n.fa-arrow-right-to-city::before {\n content: \"\\e4b3\"; }\n\n.fa-ribbon::before {\n content: \"\\f4d6\"; }\n\n.fa-lungs::before {\n content: \"\\f604\"; }\n\n.fa-arrow-up-9-1::before {\n content: \"\\f887\"; }\n\n.fa-sort-numeric-up-alt::before {\n content: \"\\f887\"; }\n\n.fa-litecoin-sign::before {\n content: \"\\e1d3\"; }\n\n.fa-border-none::before {\n content: \"\\f850\"; }\n\n.fa-circle-nodes::before {\n content: \"\\e4e2\"; }\n\n.fa-parachute-box::before {\n content: \"\\f4cd\"; }\n\n.fa-indent::before {\n content: \"\\f03c\"; }\n\n.fa-truck-field-un::before {\n content: \"\\e58e\"; }\n\n.fa-hourglass::before {\n content: \"\\f254\"; }\n\n.fa-hourglass-empty::before {\n content: \"\\f254\"; }\n\n.fa-mountain::before {\n content: \"\\f6fc\"; }\n\n.fa-user-doctor::before {\n content: \"\\f0f0\"; }\n\n.fa-user-md::before {\n content: \"\\f0f0\"; }\n\n.fa-circle-info::before {\n content: \"\\f05a\"; }\n\n.fa-info-circle::before {\n content: \"\\f05a\"; }\n\n.fa-cloud-meatball::before {\n content: \"\\f73b\"; }\n\n.fa-camera::before {\n content: \"\\f030\"; }\n\n.fa-camera-alt::before {\n content: \"\\f030\"; }\n\n.fa-square-virus::before {\n content: \"\\e578\"; }\n\n.fa-meteor::before {\n content: \"\\f753\"; }\n\n.fa-car-on::before {\n content: \"\\e4dd\"; }\n\n.fa-sleigh::before {\n content: \"\\f7cc\"; }\n\n.fa-arrow-down-1-9::before {\n content: \"\\f162\"; }\n\n.fa-sort-numeric-asc::before {\n content: \"\\f162\"; }\n\n.fa-sort-numeric-down::before {\n content: \"\\f162\"; }\n\n.fa-hand-holding-droplet::before {\n content: \"\\f4c1\"; }\n\n.fa-hand-holding-water::before {\n content: \"\\f4c1\"; }\n\n.fa-water::before {\n content: \"\\f773\"; }\n\n.fa-calendar-check::before {\n content: \"\\f274\"; }\n\n.fa-braille::before {\n content: \"\\f2a1\"; }\n\n.fa-prescription-bottle-medical::before {\n content: \"\\f486\"; }\n\n.fa-prescription-bottle-alt::before {\n content: \"\\f486\"; }\n\n.fa-landmark::before {\n content: \"\\f66f\"; }\n\n.fa-truck::before {\n content: \"\\f0d1\"; }\n\n.fa-crosshairs::before {\n content: \"\\f05b\"; }\n\n.fa-person-cane::before {\n content: \"\\e53c\"; }\n\n.fa-tent::before {\n content: \"\\e57d\"; }\n\n.fa-vest-patches::before {\n content: \"\\e086\"; }\n\n.fa-check-double::before {\n content: \"\\f560\"; }\n\n.fa-arrow-down-a-z::before {\n content: \"\\f15d\"; }\n\n.fa-sort-alpha-asc::before {\n content: \"\\f15d\"; }\n\n.fa-sort-alpha-down::before {\n content: \"\\f15d\"; }\n\n.fa-money-bill-wheat::before {\n content: \"\\e52a\"; }\n\n.fa-cookie::before {\n content: \"\\f563\"; }\n\n.fa-arrow-rotate-left::before {\n content: \"\\f0e2\"; }\n\n.fa-arrow-left-rotate::before {\n content: \"\\f0e2\"; }\n\n.fa-arrow-rotate-back::before {\n content: \"\\f0e2\"; }\n\n.fa-arrow-rotate-backward::before {\n content: \"\\f0e2\"; }\n\n.fa-undo::before {\n content: \"\\f0e2\"; }\n\n.fa-hard-drive::before {\n content: \"\\f0a0\"; }\n\n.fa-hdd::before {\n content: \"\\f0a0\"; }\n\n.fa-face-grin-squint-tears::before {\n content: \"\\f586\"; }\n\n.fa-grin-squint-tears::before {\n content: \"\\f586\"; }\n\n.fa-dumbbell::before {\n content: \"\\f44b\"; }\n\n.fa-rectangle-list::before {\n content: \"\\f022\"; }\n\n.fa-list-alt::before {\n content: \"\\f022\"; }\n\n.fa-tarp-droplet::before {\n content: \"\\e57c\"; }\n\n.fa-house-medical-circle-check::before {\n content: \"\\e511\"; }\n\n.fa-person-skiing-nordic::before {\n content: \"\\f7ca\"; }\n\n.fa-skiing-nordic::before {\n content: \"\\f7ca\"; }\n\n.fa-calendar-plus::before {\n content: \"\\f271\"; }\n\n.fa-plane-arrival::before {\n content: \"\\f5af\"; }\n\n.fa-circle-left::before {\n content: \"\\f359\"; }\n\n.fa-arrow-alt-circle-left::before {\n content: \"\\f359\"; }\n\n.fa-train-subway::before {\n content: \"\\f239\"; }\n\n.fa-subway::before {\n content: \"\\f239\"; }\n\n.fa-chart-gantt::before {\n content: \"\\e0e4\"; }\n\n.fa-indian-rupee-sign::before {\n content: \"\\e1bc\"; }\n\n.fa-indian-rupee::before {\n content: \"\\e1bc\"; }\n\n.fa-inr::before {\n content: \"\\e1bc\"; }\n\n.fa-crop-simple::before {\n content: \"\\f565\"; }\n\n.fa-crop-alt::before {\n content: \"\\f565\"; }\n\n.fa-money-bill-1::before {\n content: \"\\f3d1\"; }\n\n.fa-money-bill-alt::before {\n content: \"\\f3d1\"; }\n\n.fa-left-long::before {\n content: \"\\f30a\"; }\n\n.fa-long-arrow-alt-left::before {\n content: \"\\f30a\"; }\n\n.fa-dna::before {\n content: \"\\f471\"; }\n\n.fa-virus-slash::before {\n content: \"\\e075\"; }\n\n.fa-minus::before {\n content: \"\\f068\"; }\n\n.fa-subtract::before {\n content: \"\\f068\"; }\n\n.fa-chess::before {\n content: \"\\f439\"; }\n\n.fa-arrow-left-long::before {\n content: \"\\f177\"; }\n\n.fa-long-arrow-left::before {\n content: \"\\f177\"; }\n\n.fa-plug-circle-check::before {\n content: \"\\e55c\"; }\n\n.fa-street-view::before {\n content: \"\\f21d\"; }\n\n.fa-franc-sign::before {\n content: \"\\e18f\"; }\n\n.fa-volume-off::before {\n content: \"\\f026\"; }\n\n.fa-hands-asl-interpreting::before {\n content: \"\\f2a3\"; }\n\n.fa-american-sign-language-interpreting::before {\n content: \"\\f2a3\"; }\n\n.fa-asl-interpreting::before {\n content: \"\\f2a3\"; }\n\n.fa-hands-american-sign-language-interpreting::before {\n content: \"\\f2a3\"; }\n\n.fa-gear::before {\n content: \"\\f013\"; }\n\n.fa-cog::before {\n content: \"\\f013\"; }\n\n.fa-droplet-slash::before {\n content: \"\\f5c7\"; }\n\n.fa-tint-slash::before {\n content: \"\\f5c7\"; }\n\n.fa-mosque::before {\n content: \"\\f678\"; }\n\n.fa-mosquito::before {\n content: \"\\e52b\"; }\n\n.fa-star-of-david::before {\n content: \"\\f69a\"; }\n\n.fa-person-military-rifle::before {\n content: \"\\e54b\"; }\n\n.fa-cart-shopping::before {\n content: \"\\f07a\"; }\n\n.fa-shopping-cart::before {\n content: \"\\f07a\"; }\n\n.fa-vials::before {\n content: \"\\f493\"; }\n\n.fa-plug-circle-plus::before {\n content: \"\\e55f\"; }\n\n.fa-place-of-worship::before {\n content: \"\\f67f\"; }\n\n.fa-grip-vertical::before {\n content: \"\\f58e\"; }\n\n.fa-arrow-turn-up::before {\n content: \"\\f148\"; }\n\n.fa-level-up::before {\n content: \"\\f148\"; }\n\n.fa-u::before {\n content: \"\\55\"; }\n\n.fa-square-root-variable::before {\n content: \"\\f698\"; }\n\n.fa-square-root-alt::before {\n content: \"\\f698\"; }\n\n.fa-clock::before {\n content: \"\\f017\"; }\n\n.fa-clock-four::before {\n content: \"\\f017\"; }\n\n.fa-backward-step::before {\n content: \"\\f048\"; }\n\n.fa-step-backward::before {\n content: \"\\f048\"; }\n\n.fa-pallet::before {\n content: \"\\f482\"; }\n\n.fa-faucet::before {\n content: \"\\e005\"; }\n\n.fa-baseball-bat-ball::before {\n content: \"\\f432\"; }\n\n.fa-s::before {\n content: \"\\53\"; }\n\n.fa-timeline::before {\n content: \"\\e29c\"; }\n\n.fa-keyboard::before {\n content: \"\\f11c\"; }\n\n.fa-caret-down::before {\n content: \"\\f0d7\"; }\n\n.fa-house-chimney-medical::before {\n content: \"\\f7f2\"; }\n\n.fa-clinic-medical::before {\n content: \"\\f7f2\"; }\n\n.fa-temperature-three-quarters::before {\n content: \"\\f2c8\"; }\n\n.fa-temperature-3::before {\n content: \"\\f2c8\"; }\n\n.fa-thermometer-3::before {\n content: \"\\f2c8\"; }\n\n.fa-thermometer-three-quarters::before {\n content: \"\\f2c8\"; }\n\n.fa-mobile-screen::before {\n content: \"\\f3cf\"; }\n\n.fa-mobile-android-alt::before {\n content: \"\\f3cf\"; }\n\n.fa-plane-up::before {\n content: \"\\e22d\"; }\n\n.fa-piggy-bank::before {\n content: \"\\f4d3\"; }\n\n.fa-battery-half::before {\n content: \"\\f242\"; }\n\n.fa-battery-3::before {\n content: \"\\f242\"; }\n\n.fa-mountain-city::before {\n content: \"\\e52e\"; }\n\n.fa-coins::before {\n content: \"\\f51e\"; }\n\n.fa-khanda::before {\n content: \"\\f66d\"; }\n\n.fa-sliders::before {\n content: \"\\f1de\"; }\n\n.fa-sliders-h::before {\n content: \"\\f1de\"; }\n\n.fa-folder-tree::before {\n content: \"\\f802\"; }\n\n.fa-network-wired::before {\n content: \"\\f6ff\"; }\n\n.fa-map-pin::before {\n content: \"\\f276\"; }\n\n.fa-hamsa::before {\n content: \"\\f665\"; }\n\n.fa-cent-sign::before {\n content: \"\\e3f5\"; }\n\n.fa-flask::before {\n content: \"\\f0c3\"; }\n\n.fa-person-pregnant::before {\n content: \"\\e31e\"; }\n\n.fa-wand-sparkles::before {\n content: \"\\f72b\"; }\n\n.fa-ellipsis-vertical::before {\n content: \"\\f142\"; }\n\n.fa-ellipsis-v::before {\n content: \"\\f142\"; }\n\n.fa-ticket::before {\n content: \"\\f145\"; }\n\n.fa-power-off::before {\n content: \"\\f011\"; }\n\n.fa-right-long::before {\n content: \"\\f30b\"; }\n\n.fa-long-arrow-alt-right::before {\n content: \"\\f30b\"; }\n\n.fa-flag-usa::before {\n content: \"\\f74d\"; }\n\n.fa-laptop-file::before {\n content: \"\\e51d\"; }\n\n.fa-tty::before {\n content: \"\\f1e4\"; }\n\n.fa-teletype::before {\n content: \"\\f1e4\"; }\n\n.fa-diagram-next::before {\n content: \"\\e476\"; }\n\n.fa-person-rifle::before {\n content: \"\\e54e\"; }\n\n.fa-house-medical-circle-exclamation::before {\n content: \"\\e512\"; }\n\n.fa-closed-captioning::before {\n content: \"\\f20a\"; }\n\n.fa-person-hiking::before {\n content: \"\\f6ec\"; }\n\n.fa-hiking::before {\n content: \"\\f6ec\"; }\n\n.fa-venus-double::before {\n content: \"\\f226\"; }\n\n.fa-images::before {\n content: \"\\f302\"; }\n\n.fa-calculator::before {\n content: \"\\f1ec\"; }\n\n.fa-people-pulling::before {\n content: \"\\e535\"; }\n\n.fa-n::before {\n content: \"\\4e\"; }\n\n.fa-cable-car::before {\n content: \"\\f7da\"; }\n\n.fa-tram::before {\n content: \"\\f7da\"; }\n\n.fa-cloud-rain::before {\n content: \"\\f73d\"; }\n\n.fa-building-circle-xmark::before {\n content: \"\\e4d4\"; }\n\n.fa-ship::before {\n content: \"\\f21a\"; }\n\n.fa-arrows-down-to-line::before {\n content: \"\\e4b8\"; }\n\n.fa-download::before {\n content: \"\\f019\"; }\n\n.fa-face-grin::before {\n content: \"\\f580\"; }\n\n.fa-grin::before {\n content: \"\\f580\"; }\n\n.fa-delete-left::before {\n content: \"\\f55a\"; }\n\n.fa-backspace::before {\n content: \"\\f55a\"; }\n\n.fa-eye-dropper::before {\n content: \"\\f1fb\"; }\n\n.fa-eye-dropper-empty::before {\n content: \"\\f1fb\"; }\n\n.fa-eyedropper::before {\n content: \"\\f1fb\"; }\n\n.fa-file-circle-check::before {\n content: \"\\e5a0\"; }\n\n.fa-forward::before {\n content: \"\\f04e\"; }\n\n.fa-mobile::before {\n content: \"\\f3ce\"; }\n\n.fa-mobile-android::before {\n content: \"\\f3ce\"; }\n\n.fa-mobile-phone::before {\n content: \"\\f3ce\"; }\n\n.fa-face-meh::before {\n content: \"\\f11a\"; }\n\n.fa-meh::before {\n content: \"\\f11a\"; }\n\n.fa-align-center::before {\n content: \"\\f037\"; }\n\n.fa-book-skull::before {\n content: \"\\f6b7\"; }\n\n.fa-book-dead::before {\n content: \"\\f6b7\"; }\n\n.fa-id-card::before {\n content: \"\\f2c2\"; }\n\n.fa-drivers-license::before {\n content: \"\\f2c2\"; }\n\n.fa-outdent::before {\n content: \"\\f03b\"; }\n\n.fa-dedent::before {\n content: \"\\f03b\"; }\n\n.fa-heart-circle-exclamation::before {\n content: \"\\e4fe\"; }\n\n.fa-house::before {\n content: \"\\f015\"; }\n\n.fa-home::before {\n content: \"\\f015\"; }\n\n.fa-home-alt::before {\n content: \"\\f015\"; }\n\n.fa-home-lg-alt::before {\n content: \"\\f015\"; }\n\n.fa-calendar-week::before {\n content: \"\\f784\"; }\n\n.fa-laptop-medical::before {\n content: \"\\f812\"; }\n\n.fa-b::before {\n content: \"\\42\"; }\n\n.fa-file-medical::before {\n content: \"\\f477\"; }\n\n.fa-dice-one::before {\n content: \"\\f525\"; }\n\n.fa-kiwi-bird::before {\n content: \"\\f535\"; }\n\n.fa-arrow-right-arrow-left::before {\n content: \"\\f0ec\"; }\n\n.fa-exchange::before {\n content: \"\\f0ec\"; }\n\n.fa-rotate-right::before {\n content: \"\\f2f9\"; }\n\n.fa-redo-alt::before {\n content: \"\\f2f9\"; }\n\n.fa-rotate-forward::before {\n content: \"\\f2f9\"; }\n\n.fa-utensils::before {\n content: \"\\f2e7\"; }\n\n.fa-cutlery::before {\n content: \"\\f2e7\"; }\n\n.fa-arrow-up-wide-short::before {\n content: \"\\f161\"; }\n\n.fa-sort-amount-up::before {\n content: \"\\f161\"; }\n\n.fa-mill-sign::before {\n content: \"\\e1ed\"; }\n\n.fa-bowl-rice::before {\n content: \"\\e2eb\"; }\n\n.fa-skull::before {\n content: \"\\f54c\"; }\n\n.fa-tower-broadcast::before {\n content: \"\\f519\"; }\n\n.fa-broadcast-tower::before {\n content: \"\\f519\"; }\n\n.fa-truck-pickup::before {\n content: \"\\f63c\"; }\n\n.fa-up-long::before {\n content: \"\\f30c\"; }\n\n.fa-long-arrow-alt-up::before {\n content: \"\\f30c\"; }\n\n.fa-stop::before {\n content: \"\\f04d\"; }\n\n.fa-code-merge::before {\n content: \"\\f387\"; }\n\n.fa-upload::before {\n content: \"\\f093\"; }\n\n.fa-hurricane::before {\n content: \"\\f751\"; }\n\n.fa-mound::before {\n content: \"\\e52d\"; }\n\n.fa-toilet-portable::before {\n content: \"\\e583\"; }\n\n.fa-compact-disc::before {\n content: \"\\f51f\"; }\n\n.fa-file-arrow-down::before {\n content: \"\\f56d\"; }\n\n.fa-file-download::before {\n content: \"\\f56d\"; }\n\n.fa-caravan::before {\n content: \"\\f8ff\"; }\n\n.fa-shield-cat::before {\n content: \"\\e572\"; }\n\n.fa-bolt::before {\n content: \"\\f0e7\"; }\n\n.fa-zap::before {\n content: \"\\f0e7\"; }\n\n.fa-glass-water::before {\n content: \"\\e4f4\"; }\n\n.fa-oil-well::before {\n content: \"\\e532\"; }\n\n.fa-vault::before {\n content: \"\\e2c5\"; }\n\n.fa-mars::before {\n content: \"\\f222\"; }\n\n.fa-toilet::before {\n content: \"\\f7d8\"; }\n\n.fa-plane-circle-xmark::before {\n content: \"\\e557\"; }\n\n.fa-yen-sign::before {\n content: \"\\f157\"; }\n\n.fa-cny::before {\n content: \"\\f157\"; }\n\n.fa-jpy::before {\n content: \"\\f157\"; }\n\n.fa-rmb::before {\n content: \"\\f157\"; }\n\n.fa-yen::before {\n content: \"\\f157\"; }\n\n.fa-ruble-sign::before {\n content: \"\\f158\"; }\n\n.fa-rouble::before {\n content: \"\\f158\"; }\n\n.fa-rub::before {\n content: \"\\f158\"; }\n\n.fa-ruble::before {\n content: \"\\f158\"; }\n\n.fa-sun::before {\n content: \"\\f185\"; }\n\n.fa-guitar::before {\n content: \"\\f7a6\"; }\n\n.fa-face-laugh-wink::before {\n content: \"\\f59c\"; }\n\n.fa-laugh-wink::before {\n content: \"\\f59c\"; }\n\n.fa-horse-head::before {\n content: \"\\f7ab\"; }\n\n.fa-bore-hole::before {\n content: \"\\e4c3\"; }\n\n.fa-industry::before {\n content: \"\\f275\"; }\n\n.fa-circle-down::before {\n content: \"\\f358\"; }\n\n.fa-arrow-alt-circle-down::before {\n content: \"\\f358\"; }\n\n.fa-arrows-turn-to-dots::before {\n content: \"\\e4c1\"; }\n\n.fa-florin-sign::before {\n content: \"\\e184\"; }\n\n.fa-arrow-down-short-wide::before {\n content: \"\\f884\"; }\n\n.fa-sort-amount-desc::before {\n content: \"\\f884\"; }\n\n.fa-sort-amount-down-alt::before {\n content: \"\\f884\"; }\n\n.fa-less-than::before {\n content: \"\\3c\"; }\n\n.fa-angle-down::before {\n content: \"\\f107\"; }\n\n.fa-car-tunnel::before {\n content: \"\\e4de\"; }\n\n.fa-head-side-cough::before {\n content: \"\\e061\"; }\n\n.fa-grip-lines::before {\n content: \"\\f7a4\"; }\n\n.fa-thumbs-down::before {\n content: \"\\f165\"; }\n\n.fa-user-lock::before {\n content: \"\\f502\"; }\n\n.fa-arrow-right-long::before {\n content: \"\\f178\"; }\n\n.fa-long-arrow-right::before {\n content: \"\\f178\"; }\n\n.fa-anchor-circle-xmark::before {\n content: \"\\e4ac\"; }\n\n.fa-ellipsis::before {\n content: \"\\f141\"; }\n\n.fa-ellipsis-h::before {\n content: \"\\f141\"; }\n\n.fa-chess-pawn::before {\n content: \"\\f443\"; }\n\n.fa-kit-medical::before {\n content: \"\\f479\"; }\n\n.fa-first-aid::before {\n content: \"\\f479\"; }\n\n.fa-person-through-window::before {\n content: \"\\e5a9\"; }\n\n.fa-toolbox::before {\n content: \"\\f552\"; }\n\n.fa-hands-holding-circle::before {\n content: \"\\e4fb\"; }\n\n.fa-bug::before {\n content: \"\\f188\"; }\n\n.fa-credit-card::before {\n content: \"\\f09d\"; }\n\n.fa-credit-card-alt::before {\n content: \"\\f09d\"; }\n\n.fa-car::before {\n content: \"\\f1b9\"; }\n\n.fa-automobile::before {\n content: \"\\f1b9\"; }\n\n.fa-hand-holding-hand::before {\n content: \"\\e4f7\"; }\n\n.fa-book-open-reader::before {\n content: \"\\f5da\"; }\n\n.fa-book-reader::before {\n content: \"\\f5da\"; }\n\n.fa-mountain-sun::before {\n content: \"\\e52f\"; }\n\n.fa-arrows-left-right-to-line::before {\n content: \"\\e4ba\"; }\n\n.fa-dice-d20::before {\n content: \"\\f6cf\"; }\n\n.fa-truck-droplet::before {\n content: \"\\e58c\"; }\n\n.fa-file-circle-xmark::before {\n content: \"\\e5a1\"; }\n\n.fa-temperature-arrow-up::before {\n content: \"\\e040\"; }\n\n.fa-temperature-up::before {\n content: \"\\e040\"; }\n\n.fa-medal::before {\n content: \"\\f5a2\"; }\n\n.fa-bed::before {\n content: \"\\f236\"; }\n\n.fa-square-h::before {\n content: \"\\f0fd\"; }\n\n.fa-h-square::before {\n content: \"\\f0fd\"; }\n\n.fa-podcast::before {\n content: \"\\f2ce\"; }\n\n.fa-temperature-full::before {\n content: \"\\f2c7\"; }\n\n.fa-temperature-4::before {\n content: \"\\f2c7\"; }\n\n.fa-thermometer-4::before {\n content: \"\\f2c7\"; }\n\n.fa-thermometer-full::before {\n content: \"\\f2c7\"; }\n\n.fa-bell::before {\n content: \"\\f0f3\"; }\n\n.fa-superscript::before {\n content: \"\\f12b\"; }\n\n.fa-plug-circle-xmark::before {\n content: \"\\e560\"; }\n\n.fa-star-of-life::before {\n content: \"\\f621\"; }\n\n.fa-phone-slash::before {\n content: \"\\f3dd\"; }\n\n.fa-paint-roller::before {\n content: \"\\f5aa\"; }\n\n.fa-handshake-angle::before {\n content: \"\\f4c4\"; }\n\n.fa-hands-helping::before {\n content: \"\\f4c4\"; }\n\n.fa-location-dot::before {\n content: \"\\f3c5\"; }\n\n.fa-map-marker-alt::before {\n content: \"\\f3c5\"; }\n\n.fa-file::before {\n content: \"\\f15b\"; }\n\n.fa-greater-than::before {\n content: \"\\3e\"; }\n\n.fa-person-swimming::before {\n content: \"\\f5c4\"; }\n\n.fa-swimmer::before {\n content: \"\\f5c4\"; }\n\n.fa-arrow-down::before {\n content: \"\\f063\"; }\n\n.fa-droplet::before {\n content: \"\\f043\"; }\n\n.fa-tint::before {\n content: \"\\f043\"; }\n\n.fa-eraser::before {\n content: \"\\f12d\"; }\n\n.fa-earth-americas::before {\n content: \"\\f57d\"; }\n\n.fa-earth::before {\n content: \"\\f57d\"; }\n\n.fa-earth-america::before {\n content: \"\\f57d\"; }\n\n.fa-globe-americas::before {\n content: \"\\f57d\"; }\n\n.fa-person-burst::before {\n content: \"\\e53b\"; }\n\n.fa-dove::before {\n content: \"\\f4ba\"; }\n\n.fa-battery-empty::before {\n content: \"\\f244\"; }\n\n.fa-battery-0::before {\n content: \"\\f244\"; }\n\n.fa-socks::before {\n content: \"\\f696\"; }\n\n.fa-inbox::before {\n content: \"\\f01c\"; }\n\n.fa-section::before {\n content: \"\\e447\"; }\n\n.fa-gauge-high::before {\n content: \"\\f625\"; }\n\n.fa-tachometer-alt::before {\n content: \"\\f625\"; }\n\n.fa-tachometer-alt-fast::before {\n content: \"\\f625\"; }\n\n.fa-envelope-open-text::before {\n content: \"\\f658\"; }\n\n.fa-hospital::before {\n content: \"\\f0f8\"; }\n\n.fa-hospital-alt::before {\n content: \"\\f0f8\"; }\n\n.fa-hospital-wide::before {\n content: \"\\f0f8\"; }\n\n.fa-wine-bottle::before {\n content: \"\\f72f\"; }\n\n.fa-chess-rook::before {\n content: \"\\f447\"; }\n\n.fa-bars-staggered::before {\n content: \"\\f550\"; }\n\n.fa-reorder::before {\n content: \"\\f550\"; }\n\n.fa-stream::before {\n content: \"\\f550\"; }\n\n.fa-dharmachakra::before {\n content: \"\\f655\"; }\n\n.fa-hotdog::before {\n content: \"\\f80f\"; }\n\n.fa-person-walking-with-cane::before {\n content: \"\\f29d\"; }\n\n.fa-blind::before {\n content: \"\\f29d\"; }\n\n.fa-drum::before {\n content: \"\\f569\"; }\n\n.fa-ice-cream::before {\n content: \"\\f810\"; }\n\n.fa-heart-circle-bolt::before {\n content: \"\\e4fc\"; }\n\n.fa-fax::before {\n content: \"\\f1ac\"; }\n\n.fa-paragraph::before {\n content: \"\\f1dd\"; }\n\n.fa-check-to-slot::before {\n content: \"\\f772\"; }\n\n.fa-vote-yea::before {\n content: \"\\f772\"; }\n\n.fa-star-half::before {\n content: \"\\f089\"; }\n\n.fa-boxes-stacked::before {\n content: \"\\f468\"; }\n\n.fa-boxes::before {\n content: \"\\f468\"; }\n\n.fa-boxes-alt::before {\n content: \"\\f468\"; }\n\n.fa-link::before {\n content: \"\\f0c1\"; }\n\n.fa-chain::before {\n content: \"\\f0c1\"; }\n\n.fa-ear-listen::before {\n content: \"\\f2a2\"; }\n\n.fa-assistive-listening-systems::before {\n content: \"\\f2a2\"; }\n\n.fa-tree-city::before {\n content: \"\\e587\"; }\n\n.fa-play::before {\n content: \"\\f04b\"; }\n\n.fa-font::before {\n content: \"\\f031\"; }\n\n.fa-rupiah-sign::before {\n content: \"\\e23d\"; }\n\n.fa-magnifying-glass::before {\n content: \"\\f002\"; }\n\n.fa-search::before {\n content: \"\\f002\"; }\n\n.fa-table-tennis-paddle-ball::before {\n content: \"\\f45d\"; }\n\n.fa-ping-pong-paddle-ball::before {\n content: \"\\f45d\"; }\n\n.fa-table-tennis::before {\n content: \"\\f45d\"; }\n\n.fa-person-dots-from-line::before {\n content: \"\\f470\"; }\n\n.fa-diagnoses::before {\n content: \"\\f470\"; }\n\n.fa-trash-can-arrow-up::before {\n content: \"\\f82a\"; }\n\n.fa-trash-restore-alt::before {\n content: \"\\f82a\"; }\n\n.fa-naira-sign::before {\n content: \"\\e1f6\"; }\n\n.fa-cart-arrow-down::before {\n content: \"\\f218\"; }\n\n.fa-walkie-talkie::before {\n content: \"\\f8ef\"; }\n\n.fa-file-pen::before {\n content: \"\\f31c\"; }\n\n.fa-file-edit::before {\n content: \"\\f31c\"; }\n\n.fa-receipt::before {\n content: \"\\f543\"; }\n\n.fa-square-pen::before {\n content: \"\\f14b\"; }\n\n.fa-pen-square::before {\n content: \"\\f14b\"; }\n\n.fa-pencil-square::before {\n content: \"\\f14b\"; }\n\n.fa-suitcase-rolling::before {\n content: \"\\f5c1\"; }\n\n.fa-person-circle-exclamation::before {\n content: \"\\e53f\"; }\n\n.fa-chevron-down::before {\n content: \"\\f078\"; }\n\n.fa-battery-full::before {\n content: \"\\f240\"; }\n\n.fa-battery::before {\n content: \"\\f240\"; }\n\n.fa-battery-5::before {\n content: \"\\f240\"; }\n\n.fa-skull-crossbones::before {\n content: \"\\f714\"; }\n\n.fa-code-compare::before {\n content: \"\\e13a\"; }\n\n.fa-list-ul::before {\n content: \"\\f0ca\"; }\n\n.fa-list-dots::before {\n content: \"\\f0ca\"; }\n\n.fa-school-lock::before {\n content: \"\\e56f\"; }\n\n.fa-tower-cell::before {\n content: \"\\e585\"; }\n\n.fa-down-long::before {\n content: \"\\f309\"; }\n\n.fa-long-arrow-alt-down::before {\n content: \"\\f309\"; }\n\n.fa-ranking-star::before {\n content: \"\\e561\"; }\n\n.fa-chess-king::before {\n content: \"\\f43f\"; }\n\n.fa-person-harassing::before {\n content: \"\\e549\"; }\n\n.fa-brazilian-real-sign::before {\n content: \"\\e46c\"; }\n\n.fa-landmark-dome::before {\n content: \"\\f752\"; }\n\n.fa-landmark-alt::before {\n content: \"\\f752\"; }\n\n.fa-arrow-up::before {\n content: \"\\f062\"; }\n\n.fa-tv::before {\n content: \"\\f26c\"; }\n\n.fa-television::before {\n content: \"\\f26c\"; }\n\n.fa-tv-alt::before {\n content: \"\\f26c\"; }\n\n.fa-shrimp::before {\n content: \"\\e448\"; }\n\n.fa-list-check::before {\n content: \"\\f0ae\"; }\n\n.fa-tasks::before {\n content: \"\\f0ae\"; }\n\n.fa-jug-detergent::before {\n content: \"\\e519\"; }\n\n.fa-circle-user::before {\n content: \"\\f2bd\"; }\n\n.fa-user-circle::before {\n content: \"\\f2bd\"; }\n\n.fa-user-shield::before {\n content: \"\\f505\"; }\n\n.fa-wind::before {\n content: \"\\f72e\"; }\n\n.fa-car-burst::before {\n content: \"\\f5e1\"; }\n\n.fa-car-crash::before {\n content: \"\\f5e1\"; }\n\n.fa-y::before {\n content: \"\\59\"; }\n\n.fa-person-snowboarding::before {\n content: \"\\f7ce\"; }\n\n.fa-snowboarding::before {\n content: \"\\f7ce\"; }\n\n.fa-truck-fast::before {\n content: \"\\f48b\"; }\n\n.fa-shipping-fast::before {\n content: \"\\f48b\"; }\n\n.fa-fish::before {\n content: \"\\f578\"; }\n\n.fa-user-graduate::before {\n content: \"\\f501\"; }\n\n.fa-circle-half-stroke::before {\n content: \"\\f042\"; }\n\n.fa-adjust::before {\n content: \"\\f042\"; }\n\n.fa-clapperboard::before {\n content: \"\\e131\"; }\n\n.fa-circle-radiation::before {\n content: \"\\f7ba\"; }\n\n.fa-radiation-alt::before {\n content: \"\\f7ba\"; }\n\n.fa-baseball::before {\n content: \"\\f433\"; }\n\n.fa-baseball-ball::before {\n content: \"\\f433\"; }\n\n.fa-jet-fighter-up::before {\n content: \"\\e518\"; }\n\n.fa-diagram-project::before {\n content: \"\\f542\"; }\n\n.fa-project-diagram::before {\n content: \"\\f542\"; }\n\n.fa-copy::before {\n content: \"\\f0c5\"; }\n\n.fa-volume-xmark::before {\n content: \"\\f6a9\"; }\n\n.fa-volume-mute::before {\n content: \"\\f6a9\"; }\n\n.fa-volume-times::before {\n content: \"\\f6a9\"; }\n\n.fa-hand-sparkles::before {\n content: \"\\e05d\"; }\n\n.fa-grip::before {\n content: \"\\f58d\"; }\n\n.fa-grip-horizontal::before {\n content: \"\\f58d\"; }\n\n.fa-share-from-square::before {\n content: \"\\f14d\"; }\n\n.fa-share-square::before {\n content: \"\\f14d\"; }\n\n.fa-child-combatant::before {\n content: \"\\e4e0\"; }\n\n.fa-child-rifle::before {\n content: \"\\e4e0\"; }\n\n.fa-gun::before {\n content: \"\\e19b\"; }\n\n.fa-square-phone::before {\n content: \"\\f098\"; }\n\n.fa-phone-square::before {\n content: \"\\f098\"; }\n\n.fa-plus::before {\n content: \"\\2b\"; }\n\n.fa-add::before {\n content: \"\\2b\"; }\n\n.fa-expand::before {\n content: \"\\f065\"; }\n\n.fa-computer::before {\n content: \"\\e4e5\"; }\n\n.fa-xmark::before {\n content: \"\\f00d\"; }\n\n.fa-close::before {\n content: \"\\f00d\"; }\n\n.fa-multiply::before {\n content: \"\\f00d\"; }\n\n.fa-remove::before {\n content: \"\\f00d\"; }\n\n.fa-times::before {\n content: \"\\f00d\"; }\n\n.fa-arrows-up-down-left-right::before {\n content: \"\\f047\"; }\n\n.fa-arrows::before {\n content: \"\\f047\"; }\n\n.fa-chalkboard-user::before {\n content: \"\\f51c\"; }\n\n.fa-chalkboard-teacher::before {\n content: \"\\f51c\"; }\n\n.fa-peso-sign::before {\n content: \"\\e222\"; }\n\n.fa-building-shield::before {\n content: \"\\e4d8\"; }\n\n.fa-baby::before {\n content: \"\\f77c\"; }\n\n.fa-users-line::before {\n content: \"\\e592\"; }\n\n.fa-quote-left::before {\n content: \"\\f10d\"; }\n\n.fa-quote-left-alt::before {\n content: \"\\f10d\"; }\n\n.fa-tractor::before {\n content: \"\\f722\"; }\n\n.fa-trash-arrow-up::before {\n content: \"\\f829\"; }\n\n.fa-trash-restore::before {\n content: \"\\f829\"; }\n\n.fa-arrow-down-up-lock::before {\n content: \"\\e4b0\"; }\n\n.fa-lines-leaning::before {\n content: \"\\e51e\"; }\n\n.fa-ruler-combined::before {\n content: \"\\f546\"; }\n\n.fa-copyright::before {\n content: \"\\f1f9\"; }\n\n.fa-equals::before {\n content: \"\\3d\"; }\n\n.fa-blender::before {\n content: \"\\f517\"; }\n\n.fa-teeth::before {\n content: \"\\f62e\"; }\n\n.fa-shekel-sign::before {\n content: \"\\f20b\"; }\n\n.fa-ils::before {\n content: \"\\f20b\"; }\n\n.fa-shekel::before {\n content: \"\\f20b\"; }\n\n.fa-sheqel::before {\n content: \"\\f20b\"; }\n\n.fa-sheqel-sign::before {\n content: \"\\f20b\"; }\n\n.fa-map::before {\n content: \"\\f279\"; }\n\n.fa-rocket::before {\n content: \"\\f135\"; }\n\n.fa-photo-film::before {\n content: \"\\f87c\"; }\n\n.fa-photo-video::before {\n content: \"\\f87c\"; }\n\n.fa-folder-minus::before {\n content: \"\\f65d\"; }\n\n.fa-store::before {\n content: \"\\f54e\"; }\n\n.fa-arrow-trend-up::before {\n content: \"\\e098\"; }\n\n.fa-plug-circle-minus::before {\n content: \"\\e55e\"; }\n\n.fa-sign-hanging::before {\n content: \"\\f4d9\"; }\n\n.fa-sign::before {\n content: \"\\f4d9\"; }\n\n.fa-bezier-curve::before {\n content: \"\\f55b\"; }\n\n.fa-bell-slash::before {\n content: \"\\f1f6\"; }\n\n.fa-tablet::before {\n content: \"\\f3fb\"; }\n\n.fa-tablet-android::before {\n content: \"\\f3fb\"; }\n\n.fa-school-flag::before {\n content: \"\\e56e\"; }\n\n.fa-fill::before {\n content: \"\\f575\"; }\n\n.fa-angle-up::before {\n content: \"\\f106\"; }\n\n.fa-drumstick-bite::before {\n content: \"\\f6d7\"; }\n\n.fa-holly-berry::before {\n content: \"\\f7aa\"; }\n\n.fa-chevron-left::before {\n content: \"\\f053\"; }\n\n.fa-bacteria::before {\n content: \"\\e059\"; }\n\n.fa-hand-lizard::before {\n content: \"\\f258\"; }\n\n.fa-notdef::before {\n content: \"\\e1fe\"; }\n\n.fa-disease::before {\n content: \"\\f7fa\"; }\n\n.fa-briefcase-medical::before {\n content: \"\\f469\"; }\n\n.fa-genderless::before {\n content: \"\\f22d\"; }\n\n.fa-chevron-right::before {\n content: \"\\f054\"; }\n\n.fa-retweet::before {\n content: \"\\f079\"; }\n\n.fa-car-rear::before {\n content: \"\\f5de\"; }\n\n.fa-car-alt::before {\n content: \"\\f5de\"; }\n\n.fa-pump-soap::before {\n content: \"\\e06b\"; }\n\n.fa-video-slash::before {\n content: \"\\f4e2\"; }\n\n.fa-battery-quarter::before {\n content: \"\\f243\"; }\n\n.fa-battery-2::before {\n content: \"\\f243\"; }\n\n.fa-radio::before {\n content: \"\\f8d7\"; }\n\n.fa-baby-carriage::before {\n content: \"\\f77d\"; }\n\n.fa-carriage-baby::before {\n content: \"\\f77d\"; }\n\n.fa-traffic-light::before {\n content: \"\\f637\"; }\n\n.fa-thermometer::before {\n content: \"\\f491\"; }\n\n.fa-vr-cardboard::before {\n content: \"\\f729\"; }\n\n.fa-hand-middle-finger::before {\n content: \"\\f806\"; }\n\n.fa-percent::before {\n content: \"\\25\"; }\n\n.fa-percentage::before {\n content: \"\\25\"; }\n\n.fa-truck-moving::before {\n content: \"\\f4df\"; }\n\n.fa-glass-water-droplet::before {\n content: \"\\e4f5\"; }\n\n.fa-display::before {\n content: \"\\e163\"; }\n\n.fa-face-smile::before {\n content: \"\\f118\"; }\n\n.fa-smile::before {\n content: \"\\f118\"; }\n\n.fa-thumbtack::before {\n content: \"\\f08d\"; }\n\n.fa-thumb-tack::before {\n content: \"\\f08d\"; }\n\n.fa-trophy::before {\n content: \"\\f091\"; }\n\n.fa-person-praying::before {\n content: \"\\f683\"; }\n\n.fa-pray::before {\n content: \"\\f683\"; }\n\n.fa-hammer::before {\n content: \"\\f6e3\"; }\n\n.fa-hand-peace::before {\n content: \"\\f25b\"; }\n\n.fa-rotate::before {\n content: \"\\f2f1\"; }\n\n.fa-sync-alt::before {\n content: \"\\f2f1\"; }\n\n.fa-spinner::before {\n content: \"\\f110\"; }\n\n.fa-robot::before {\n content: \"\\f544\"; }\n\n.fa-peace::before {\n content: \"\\f67c\"; }\n\n.fa-gears::before {\n content: \"\\f085\"; }\n\n.fa-cogs::before {\n content: \"\\f085\"; }\n\n.fa-warehouse::before {\n content: \"\\f494\"; }\n\n.fa-arrow-up-right-dots::before {\n content: \"\\e4b7\"; }\n\n.fa-splotch::before {\n content: \"\\f5bc\"; }\n\n.fa-face-grin-hearts::before {\n content: \"\\f584\"; }\n\n.fa-grin-hearts::before {\n content: \"\\f584\"; }\n\n.fa-dice-four::before {\n content: \"\\f524\"; }\n\n.fa-sim-card::before {\n content: \"\\f7c4\"; }\n\n.fa-transgender::before {\n content: \"\\f225\"; }\n\n.fa-transgender-alt::before {\n content: \"\\f225\"; }\n\n.fa-mercury::before {\n content: \"\\f223\"; }\n\n.fa-arrow-turn-down::before {\n content: \"\\f149\"; }\n\n.fa-level-down::before {\n content: \"\\f149\"; }\n\n.fa-person-falling-burst::before {\n content: \"\\e547\"; }\n\n.fa-award::before {\n content: \"\\f559\"; }\n\n.fa-ticket-simple::before {\n content: \"\\f3ff\"; }\n\n.fa-ticket-alt::before {\n content: \"\\f3ff\"; }\n\n.fa-building::before {\n content: \"\\f1ad\"; }\n\n.fa-angles-left::before {\n content: \"\\f100\"; }\n\n.fa-angle-double-left::before {\n content: \"\\f100\"; }\n\n.fa-qrcode::before {\n content: \"\\f029\"; }\n\n.fa-clock-rotate-left::before {\n content: \"\\f1da\"; }\n\n.fa-history::before {\n content: \"\\f1da\"; }\n\n.fa-face-grin-beam-sweat::before {\n content: \"\\f583\"; }\n\n.fa-grin-beam-sweat::before {\n content: \"\\f583\"; }\n\n.fa-file-export::before {\n content: \"\\f56e\"; }\n\n.fa-arrow-right-from-file::before {\n content: \"\\f56e\"; }\n\n.fa-shield::before {\n content: \"\\f132\"; }\n\n.fa-shield-blank::before {\n content: \"\\f132\"; }\n\n.fa-arrow-up-short-wide::before {\n content: \"\\f885\"; }\n\n.fa-sort-amount-up-alt::before {\n content: \"\\f885\"; }\n\n.fa-house-medical::before {\n content: \"\\e3b2\"; }\n\n.fa-golf-ball-tee::before {\n content: \"\\f450\"; }\n\n.fa-golf-ball::before {\n content: \"\\f450\"; }\n\n.fa-circle-chevron-left::before {\n content: \"\\f137\"; }\n\n.fa-chevron-circle-left::before {\n content: \"\\f137\"; }\n\n.fa-house-chimney-window::before {\n content: \"\\e00d\"; }\n\n.fa-pen-nib::before {\n content: \"\\f5ad\"; }\n\n.fa-tent-arrow-turn-left::before {\n content: \"\\e580\"; }\n\n.fa-tents::before {\n content: \"\\e582\"; }\n\n.fa-wand-magic::before {\n content: \"\\f0d0\"; }\n\n.fa-magic::before {\n content: \"\\f0d0\"; }\n\n.fa-dog::before {\n content: \"\\f6d3\"; }\n\n.fa-carrot::before {\n content: \"\\f787\"; }\n\n.fa-moon::before {\n content: \"\\f186\"; }\n\n.fa-wine-glass-empty::before {\n content: \"\\f5ce\"; }\n\n.fa-wine-glass-alt::before {\n content: \"\\f5ce\"; }\n\n.fa-cheese::before {\n content: \"\\f7ef\"; }\n\n.fa-yin-yang::before {\n content: \"\\f6ad\"; }\n\n.fa-music::before {\n content: \"\\f001\"; }\n\n.fa-code-commit::before {\n content: \"\\f386\"; }\n\n.fa-temperature-low::before {\n content: \"\\f76b\"; }\n\n.fa-person-biking::before {\n content: \"\\f84a\"; }\n\n.fa-biking::before {\n content: \"\\f84a\"; }\n\n.fa-broom::before {\n content: \"\\f51a\"; }\n\n.fa-shield-heart::before {\n content: \"\\e574\"; }\n\n.fa-gopuram::before {\n content: \"\\f664\"; }\n\n.fa-earth-oceania::before {\n content: \"\\e47b\"; }\n\n.fa-globe-oceania::before {\n content: \"\\e47b\"; }\n\n.fa-square-xmark::before {\n content: \"\\f2d3\"; }\n\n.fa-times-square::before {\n content: \"\\f2d3\"; }\n\n.fa-xmark-square::before {\n content: \"\\f2d3\"; }\n\n.fa-hashtag::before {\n content: \"\\23\"; }\n\n.fa-up-right-and-down-left-from-center::before {\n content: \"\\f424\"; }\n\n.fa-expand-alt::before {\n content: \"\\f424\"; }\n\n.fa-oil-can::before {\n content: \"\\f613\"; }\n\n.fa-t::before {\n content: \"\\54\"; }\n\n.fa-hippo::before {\n content: \"\\f6ed\"; }\n\n.fa-chart-column::before {\n content: \"\\e0e3\"; }\n\n.fa-infinity::before {\n content: \"\\f534\"; }\n\n.fa-vial-circle-check::before {\n content: \"\\e596\"; }\n\n.fa-person-arrow-down-to-line::before {\n content: \"\\e538\"; }\n\n.fa-voicemail::before {\n content: \"\\f897\"; }\n\n.fa-fan::before {\n content: \"\\f863\"; }\n\n.fa-person-walking-luggage::before {\n content: \"\\e554\"; }\n\n.fa-up-down::before {\n content: \"\\f338\"; }\n\n.fa-arrows-alt-v::before {\n content: \"\\f338\"; }\n\n.fa-cloud-moon-rain::before {\n content: \"\\f73c\"; }\n\n.fa-calendar::before {\n content: \"\\f133\"; }\n\n.fa-trailer::before {\n content: \"\\e041\"; }\n\n.fa-bahai::before {\n content: \"\\f666\"; }\n\n.fa-haykal::before {\n content: \"\\f666\"; }\n\n.fa-sd-card::before {\n content: \"\\f7c2\"; }\n\n.fa-dragon::before {\n content: \"\\f6d5\"; }\n\n.fa-shoe-prints::before {\n content: \"\\f54b\"; }\n\n.fa-circle-plus::before {\n content: \"\\f055\"; }\n\n.fa-plus-circle::before {\n content: \"\\f055\"; }\n\n.fa-face-grin-tongue-wink::before {\n content: \"\\f58b\"; }\n\n.fa-grin-tongue-wink::before {\n content: \"\\f58b\"; }\n\n.fa-hand-holding::before {\n content: \"\\f4bd\"; }\n\n.fa-plug-circle-exclamation::before {\n content: \"\\e55d\"; }\n\n.fa-link-slash::before {\n content: \"\\f127\"; }\n\n.fa-chain-broken::before {\n content: \"\\f127\"; }\n\n.fa-chain-slash::before {\n content: \"\\f127\"; }\n\n.fa-unlink::before {\n content: \"\\f127\"; }\n\n.fa-clone::before {\n content: \"\\f24d\"; }\n\n.fa-person-walking-arrow-loop-left::before {\n content: \"\\e551\"; }\n\n.fa-arrow-up-z-a::before {\n content: \"\\f882\"; }\n\n.fa-sort-alpha-up-alt::before {\n content: \"\\f882\"; }\n\n.fa-fire-flame-curved::before {\n content: \"\\f7e4\"; }\n\n.fa-fire-alt::before {\n content: \"\\f7e4\"; }\n\n.fa-tornado::before {\n content: \"\\f76f\"; }\n\n.fa-file-circle-plus::before {\n content: \"\\e494\"; }\n\n.fa-book-quran::before {\n content: \"\\f687\"; }\n\n.fa-quran::before {\n content: \"\\f687\"; }\n\n.fa-anchor::before {\n content: \"\\f13d\"; }\n\n.fa-border-all::before {\n content: \"\\f84c\"; }\n\n.fa-face-angry::before {\n content: \"\\f556\"; }\n\n.fa-angry::before {\n content: \"\\f556\"; }\n\n.fa-cookie-bite::before {\n content: \"\\f564\"; }\n\n.fa-arrow-trend-down::before {\n content: \"\\e097\"; }\n\n.fa-rss::before {\n content: \"\\f09e\"; }\n\n.fa-feed::before {\n content: \"\\f09e\"; }\n\n.fa-draw-polygon::before {\n content: \"\\f5ee\"; }\n\n.fa-scale-balanced::before {\n content: \"\\f24e\"; }\n\n.fa-balance-scale::before {\n content: \"\\f24e\"; }\n\n.fa-gauge-simple-high::before {\n content: \"\\f62a\"; }\n\n.fa-tachometer::before {\n content: \"\\f62a\"; }\n\n.fa-tachometer-fast::before {\n content: \"\\f62a\"; }\n\n.fa-shower::before {\n content: \"\\f2cc\"; }\n\n.fa-desktop::before {\n content: \"\\f390\"; }\n\n.fa-desktop-alt::before {\n content: \"\\f390\"; }\n\n.fa-m::before {\n content: \"\\4d\"; }\n\n.fa-table-list::before {\n content: \"\\f00b\"; }\n\n.fa-th-list::before {\n content: \"\\f00b\"; }\n\n.fa-comment-sms::before {\n content: \"\\f7cd\"; }\n\n.fa-sms::before {\n content: \"\\f7cd\"; }\n\n.fa-book::before {\n content: \"\\f02d\"; }\n\n.fa-user-plus::before {\n content: \"\\f234\"; }\n\n.fa-check::before {\n content: \"\\f00c\"; }\n\n.fa-battery-three-quarters::before {\n content: \"\\f241\"; }\n\n.fa-battery-4::before {\n content: \"\\f241\"; }\n\n.fa-house-circle-check::before {\n content: \"\\e509\"; }\n\n.fa-angle-left::before {\n content: \"\\f104\"; }\n\n.fa-diagram-successor::before {\n content: \"\\e47a\"; }\n\n.fa-truck-arrow-right::before {\n content: \"\\e58b\"; }\n\n.fa-arrows-split-up-and-left::before {\n content: \"\\e4bc\"; }\n\n.fa-hand-fist::before {\n content: \"\\f6de\"; }\n\n.fa-fist-raised::before {\n content: \"\\f6de\"; }\n\n.fa-cloud-moon::before {\n content: \"\\f6c3\"; }\n\n.fa-briefcase::before {\n content: \"\\f0b1\"; }\n\n.fa-person-falling::before {\n content: \"\\e546\"; }\n\n.fa-image-portrait::before {\n content: \"\\f3e0\"; }\n\n.fa-portrait::before {\n content: \"\\f3e0\"; }\n\n.fa-user-tag::before {\n content: \"\\f507\"; }\n\n.fa-rug::before {\n content: \"\\e569\"; }\n\n.fa-earth-europe::before {\n content: \"\\f7a2\"; }\n\n.fa-globe-europe::before {\n content: \"\\f7a2\"; }\n\n.fa-cart-flatbed-suitcase::before {\n content: \"\\f59d\"; }\n\n.fa-luggage-cart::before {\n content: \"\\f59d\"; }\n\n.fa-rectangle-xmark::before {\n content: \"\\f410\"; }\n\n.fa-rectangle-times::before {\n content: \"\\f410\"; }\n\n.fa-times-rectangle::before {\n content: \"\\f410\"; }\n\n.fa-window-close::before {\n content: \"\\f410\"; }\n\n.fa-baht-sign::before {\n content: \"\\e0ac\"; }\n\n.fa-book-open::before {\n content: \"\\f518\"; }\n\n.fa-book-journal-whills::before {\n content: \"\\f66a\"; }\n\n.fa-journal-whills::before {\n content: \"\\f66a\"; }\n\n.fa-handcuffs::before {\n content: \"\\e4f8\"; }\n\n.fa-triangle-exclamation::before {\n content: \"\\f071\"; }\n\n.fa-exclamation-triangle::before {\n content: \"\\f071\"; }\n\n.fa-warning::before {\n content: \"\\f071\"; }\n\n.fa-database::before {\n content: \"\\f1c0\"; }\n\n.fa-share::before {\n content: \"\\f064\"; }\n\n.fa-arrow-turn-right::before {\n content: \"\\f064\"; }\n\n.fa-mail-forward::before {\n content: \"\\f064\"; }\n\n.fa-bottle-droplet::before {\n content: \"\\e4c4\"; }\n\n.fa-mask-face::before {\n content: \"\\e1d7\"; }\n\n.fa-hill-rockslide::before {\n content: \"\\e508\"; }\n\n.fa-right-left::before {\n content: \"\\f362\"; }\n\n.fa-exchange-alt::before {\n content: \"\\f362\"; }\n\n.fa-paper-plane::before {\n content: \"\\f1d8\"; }\n\n.fa-road-circle-exclamation::before {\n content: \"\\e565\"; }\n\n.fa-dungeon::before {\n content: \"\\f6d9\"; }\n\n.fa-align-right::before {\n content: \"\\f038\"; }\n\n.fa-money-bill-1-wave::before {\n content: \"\\f53b\"; }\n\n.fa-money-bill-wave-alt::before {\n content: \"\\f53b\"; }\n\n.fa-life-ring::before {\n content: \"\\f1cd\"; }\n\n.fa-hands::before {\n content: \"\\f2a7\"; }\n\n.fa-sign-language::before {\n content: \"\\f2a7\"; }\n\n.fa-signing::before {\n content: \"\\f2a7\"; }\n\n.fa-calendar-day::before {\n content: \"\\f783\"; }\n\n.fa-water-ladder::before {\n content: \"\\f5c5\"; }\n\n.fa-ladder-water::before {\n content: \"\\f5c5\"; }\n\n.fa-swimming-pool::before {\n content: \"\\f5c5\"; }\n\n.fa-arrows-up-down::before {\n content: \"\\f07d\"; }\n\n.fa-arrows-v::before {\n content: \"\\f07d\"; }\n\n.fa-face-grimace::before {\n content: \"\\f57f\"; }\n\n.fa-grimace::before {\n content: \"\\f57f\"; }\n\n.fa-wheelchair-move::before {\n content: \"\\e2ce\"; }\n\n.fa-wheelchair-alt::before {\n content: \"\\e2ce\"; }\n\n.fa-turn-down::before {\n content: \"\\f3be\"; }\n\n.fa-level-down-alt::before {\n content: \"\\f3be\"; }\n\n.fa-person-walking-arrow-right::before {\n content: \"\\e552\"; }\n\n.fa-square-envelope::before {\n content: \"\\f199\"; }\n\n.fa-envelope-square::before {\n content: \"\\f199\"; }\n\n.fa-dice::before {\n content: \"\\f522\"; }\n\n.fa-bowling-ball::before {\n content: \"\\f436\"; }\n\n.fa-brain::before {\n content: \"\\f5dc\"; }\n\n.fa-bandage::before {\n content: \"\\f462\"; }\n\n.fa-band-aid::before {\n content: \"\\f462\"; }\n\n.fa-calendar-minus::before {\n content: \"\\f272\"; }\n\n.fa-circle-xmark::before {\n content: \"\\f057\"; }\n\n.fa-times-circle::before {\n content: \"\\f057\"; }\n\n.fa-xmark-circle::before {\n content: \"\\f057\"; }\n\n.fa-gifts::before {\n content: \"\\f79c\"; }\n\n.fa-hotel::before {\n content: \"\\f594\"; }\n\n.fa-earth-asia::before {\n content: \"\\f57e\"; }\n\n.fa-globe-asia::before {\n content: \"\\f57e\"; }\n\n.fa-id-card-clip::before {\n content: \"\\f47f\"; }\n\n.fa-id-card-alt::before {\n content: \"\\f47f\"; }\n\n.fa-magnifying-glass-plus::before {\n content: \"\\f00e\"; }\n\n.fa-search-plus::before {\n content: \"\\f00e\"; }\n\n.fa-thumbs-up::before {\n content: \"\\f164\"; }\n\n.fa-user-clock::before {\n content: \"\\f4fd\"; }\n\n.fa-hand-dots::before {\n content: \"\\f461\"; }\n\n.fa-allergies::before {\n content: \"\\f461\"; }\n\n.fa-file-invoice::before {\n content: \"\\f570\"; }\n\n.fa-window-minimize::before {\n content: \"\\f2d1\"; }\n\n.fa-mug-saucer::before {\n content: \"\\f0f4\"; }\n\n.fa-coffee::before {\n content: \"\\f0f4\"; }\n\n.fa-brush::before {\n content: \"\\f55d\"; }\n\n.fa-mask::before {\n content: \"\\f6fa\"; }\n\n.fa-magnifying-glass-minus::before {\n content: \"\\f010\"; }\n\n.fa-search-minus::before {\n content: \"\\f010\"; }\n\n.fa-ruler-vertical::before {\n content: \"\\f548\"; }\n\n.fa-user-large::before {\n content: \"\\f406\"; }\n\n.fa-user-alt::before {\n content: \"\\f406\"; }\n\n.fa-train-tram::before {\n content: \"\\e5b4\"; }\n\n.fa-user-nurse::before {\n content: \"\\f82f\"; }\n\n.fa-syringe::before {\n content: \"\\f48e\"; }\n\n.fa-cloud-sun::before {\n content: \"\\f6c4\"; }\n\n.fa-stopwatch-20::before {\n content: \"\\e06f\"; }\n\n.fa-square-full::before {\n content: \"\\f45c\"; }\n\n.fa-magnet::before {\n content: \"\\f076\"; }\n\n.fa-jar::before {\n content: \"\\e516\"; }\n\n.fa-note-sticky::before {\n content: \"\\f249\"; }\n\n.fa-sticky-note::before {\n content: \"\\f249\"; }\n\n.fa-bug-slash::before {\n content: \"\\e490\"; }\n\n.fa-arrow-up-from-water-pump::before {\n content: \"\\e4b6\"; }\n\n.fa-bone::before {\n content: \"\\f5d7\"; }\n\n.fa-user-injured::before {\n content: \"\\f728\"; }\n\n.fa-face-sad-tear::before {\n content: \"\\f5b4\"; }\n\n.fa-sad-tear::before {\n content: \"\\f5b4\"; }\n\n.fa-plane::before {\n content: \"\\f072\"; }\n\n.fa-tent-arrows-down::before {\n content: \"\\e581\"; }\n\n.fa-exclamation::before {\n content: \"\\21\"; }\n\n.fa-arrows-spin::before {\n content: \"\\e4bb\"; }\n\n.fa-print::before {\n content: \"\\f02f\"; }\n\n.fa-turkish-lira-sign::before {\n content: \"\\e2bb\"; }\n\n.fa-try::before {\n content: \"\\e2bb\"; }\n\n.fa-turkish-lira::before {\n content: \"\\e2bb\"; }\n\n.fa-dollar-sign::before {\n content: \"\\24\"; }\n\n.fa-dollar::before {\n content: \"\\24\"; }\n\n.fa-usd::before {\n content: \"\\24\"; }\n\n.fa-x::before {\n content: \"\\58\"; }\n\n.fa-magnifying-glass-dollar::before {\n content: \"\\f688\"; }\n\n.fa-search-dollar::before {\n content: \"\\f688\"; }\n\n.fa-users-gear::before {\n content: \"\\f509\"; }\n\n.fa-users-cog::before {\n content: \"\\f509\"; }\n\n.fa-person-military-pointing::before {\n content: \"\\e54a\"; }\n\n.fa-building-columns::before {\n content: \"\\f19c\"; }\n\n.fa-bank::before {\n content: \"\\f19c\"; }\n\n.fa-institution::before {\n content: \"\\f19c\"; }\n\n.fa-museum::before {\n content: \"\\f19c\"; }\n\n.fa-university::before {\n content: \"\\f19c\"; }\n\n.fa-umbrella::before {\n content: \"\\f0e9\"; }\n\n.fa-trowel::before {\n content: \"\\e589\"; }\n\n.fa-d::before {\n content: \"\\44\"; }\n\n.fa-stapler::before {\n content: \"\\e5af\"; }\n\n.fa-masks-theater::before {\n content: \"\\f630\"; }\n\n.fa-theater-masks::before {\n content: \"\\f630\"; }\n\n.fa-kip-sign::before {\n content: \"\\e1c4\"; }\n\n.fa-hand-point-left::before {\n content: \"\\f0a5\"; }\n\n.fa-handshake-simple::before {\n content: \"\\f4c6\"; }\n\n.fa-handshake-alt::before {\n content: \"\\f4c6\"; }\n\n.fa-jet-fighter::before {\n content: \"\\f0fb\"; }\n\n.fa-fighter-jet::before {\n content: \"\\f0fb\"; }\n\n.fa-square-share-nodes::before {\n content: \"\\f1e1\"; }\n\n.fa-share-alt-square::before {\n content: \"\\f1e1\"; }\n\n.fa-barcode::before {\n content: \"\\f02a\"; }\n\n.fa-plus-minus::before {\n content: \"\\e43c\"; }\n\n.fa-video::before {\n content: \"\\f03d\"; }\n\n.fa-video-camera::before {\n content: \"\\f03d\"; }\n\n.fa-graduation-cap::before {\n content: \"\\f19d\"; }\n\n.fa-mortar-board::before {\n content: \"\\f19d\"; }\n\n.fa-hand-holding-medical::before {\n content: \"\\e05c\"; }\n\n.fa-person-circle-check::before {\n content: \"\\e53e\"; }\n\n.fa-turn-up::before {\n content: \"\\f3bf\"; }\n\n.fa-level-up-alt::before {\n content: \"\\f3bf\"; }\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0; }\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0; }\n:root, :host {\n --fa-style-family-brands: 'Font Awesome 6 Brands';\n --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; }\n\n@font-face {\n font-family: 'Font Awesome 6 Brands';\n font-style: normal;\n font-weight: 400;\n font-display: block;\n src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"); }\n\n.fab,\n.fa-brands {\n font-weight: 400; }\n\n.fa-monero:before {\n content: \"\\f3d0\"; }\n\n.fa-hooli:before {\n content: \"\\f427\"; }\n\n.fa-yelp:before {\n content: \"\\f1e9\"; }\n\n.fa-cc-visa:before {\n content: \"\\f1f0\"; }\n\n.fa-lastfm:before {\n content: \"\\f202\"; }\n\n.fa-shopware:before {\n content: \"\\f5b5\"; }\n\n.fa-creative-commons-nc:before {\n content: \"\\f4e8\"; }\n\n.fa-aws:before {\n content: \"\\f375\"; }\n\n.fa-redhat:before {\n content: \"\\f7bc\"; }\n\n.fa-yoast:before {\n content: \"\\f2b1\"; }\n\n.fa-cloudflare:before {\n content: \"\\e07d\"; }\n\n.fa-ups:before {\n content: \"\\f7e0\"; }\n\n.fa-wpexplorer:before {\n content: \"\\f2de\"; }\n\n.fa-dyalog:before {\n content: \"\\f399\"; }\n\n.fa-bity:before {\n content: \"\\f37a\"; }\n\n.fa-stackpath:before {\n content: \"\\f842\"; }\n\n.fa-buysellads:before {\n content: \"\\f20d\"; }\n\n.fa-first-order:before {\n content: \"\\f2b0\"; }\n\n.fa-modx:before {\n content: \"\\f285\"; }\n\n.fa-guilded:before {\n content: \"\\e07e\"; }\n\n.fa-vnv:before {\n content: \"\\f40b\"; }\n\n.fa-square-js:before {\n content: \"\\f3b9\"; }\n\n.fa-js-square:before {\n content: \"\\f3b9\"; }\n\n.fa-microsoft:before {\n content: \"\\f3ca\"; }\n\n.fa-qq:before {\n content: \"\\f1d6\"; }\n\n.fa-orcid:before {\n content: \"\\f8d2\"; }\n\n.fa-java:before {\n content: \"\\f4e4\"; }\n\n.fa-invision:before {\n content: \"\\f7b0\"; }\n\n.fa-creative-commons-pd-alt:before {\n content: \"\\f4ed\"; }\n\n.fa-centercode:before {\n content: \"\\f380\"; }\n\n.fa-glide-g:before {\n content: \"\\f2a6\"; }\n\n.fa-drupal:before {\n content: \"\\f1a9\"; }\n\n.fa-hire-a-helper:before {\n content: \"\\f3b0\"; }\n\n.fa-creative-commons-by:before {\n content: \"\\f4e7\"; }\n\n.fa-unity:before {\n content: \"\\e049\"; }\n\n.fa-whmcs:before {\n content: \"\\f40d\"; }\n\n.fa-rocketchat:before {\n content: \"\\f3e8\"; }\n\n.fa-vk:before {\n content: \"\\f189\"; }\n\n.fa-untappd:before {\n content: \"\\f405\"; }\n\n.fa-mailchimp:before {\n content: \"\\f59e\"; }\n\n.fa-css3-alt:before {\n content: \"\\f38b\"; }\n\n.fa-square-reddit:before {\n content: \"\\f1a2\"; }\n\n.fa-reddit-square:before {\n content: \"\\f1a2\"; }\n\n.fa-vimeo-v:before {\n content: \"\\f27d\"; }\n\n.fa-contao:before {\n content: \"\\f26d\"; }\n\n.fa-square-font-awesome:before {\n content: \"\\e5ad\"; }\n\n.fa-deskpro:before {\n content: \"\\f38f\"; }\n\n.fa-sistrix:before {\n content: \"\\f3ee\"; }\n\n.fa-square-instagram:before {\n content: \"\\e055\"; }\n\n.fa-instagram-square:before {\n content: \"\\e055\"; }\n\n.fa-battle-net:before {\n content: \"\\f835\"; }\n\n.fa-the-red-yeti:before {\n content: \"\\f69d\"; }\n\n.fa-square-hacker-news:before {\n content: \"\\f3af\"; }\n\n.fa-hacker-news-square:before {\n content: \"\\f3af\"; }\n\n.fa-edge:before {\n content: \"\\f282\"; }\n\n.fa-threads:before {\n content: \"\\e618\"; }\n\n.fa-napster:before {\n content: \"\\f3d2\"; }\n\n.fa-square-snapchat:before {\n content: \"\\f2ad\"; }\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\"; }\n\n.fa-google-plus-g:before {\n content: \"\\f0d5\"; }\n\n.fa-artstation:before {\n content: \"\\f77a\"; }\n\n.fa-markdown:before {\n content: \"\\f60f\"; }\n\n.fa-sourcetree:before {\n content: \"\\f7d3\"; }\n\n.fa-google-plus:before {\n content: \"\\f2b3\"; }\n\n.fa-diaspora:before {\n content: \"\\f791\"; }\n\n.fa-foursquare:before {\n content: \"\\f180\"; }\n\n.fa-stack-overflow:before {\n content: \"\\f16c\"; }\n\n.fa-github-alt:before {\n content: \"\\f113\"; }\n\n.fa-phoenix-squadron:before {\n content: \"\\f511\"; }\n\n.fa-pagelines:before {\n content: \"\\f18c\"; }\n\n.fa-algolia:before {\n content: \"\\f36c\"; }\n\n.fa-red-river:before {\n content: \"\\f3e3\"; }\n\n.fa-creative-commons-sa:before {\n content: \"\\f4ef\"; }\n\n.fa-safari:before {\n content: \"\\f267\"; }\n\n.fa-google:before {\n content: \"\\f1a0\"; }\n\n.fa-square-font-awesome-stroke:before {\n content: \"\\f35c\"; }\n\n.fa-font-awesome-alt:before {\n content: \"\\f35c\"; }\n\n.fa-atlassian:before {\n content: \"\\f77b\"; }\n\n.fa-linkedin-in:before {\n content: \"\\f0e1\"; }\n\n.fa-digital-ocean:before {\n content: \"\\f391\"; }\n\n.fa-nimblr:before {\n content: \"\\f5a8\"; }\n\n.fa-chromecast:before {\n content: \"\\f838\"; }\n\n.fa-evernote:before {\n content: \"\\f839\"; }\n\n.fa-hacker-news:before {\n content: \"\\f1d4\"; }\n\n.fa-creative-commons-sampling:before {\n content: \"\\f4f0\"; }\n\n.fa-adversal:before {\n content: \"\\f36a\"; }\n\n.fa-creative-commons:before {\n content: \"\\f25e\"; }\n\n.fa-watchman-monitoring:before {\n content: \"\\e087\"; }\n\n.fa-fonticons:before {\n content: \"\\f280\"; }\n\n.fa-weixin:before {\n content: \"\\f1d7\"; }\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\"; }\n\n.fa-codepen:before {\n content: \"\\f1cb\"; }\n\n.fa-git-alt:before {\n content: \"\\f841\"; }\n\n.fa-lyft:before {\n content: \"\\f3c3\"; }\n\n.fa-rev:before {\n content: \"\\f5b2\"; }\n\n.fa-windows:before {\n content: \"\\f17a\"; }\n\n.fa-wizards-of-the-coast:before {\n content: \"\\f730\"; }\n\n.fa-square-viadeo:before {\n content: \"\\f2aa\"; }\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\"; }\n\n.fa-meetup:before {\n content: \"\\f2e0\"; }\n\n.fa-centos:before {\n content: \"\\f789\"; }\n\n.fa-adn:before {\n content: \"\\f170\"; }\n\n.fa-cloudsmith:before {\n content: \"\\f384\"; }\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\"; }\n\n.fa-square-dribbble:before {\n content: \"\\f397\"; }\n\n.fa-dribbble-square:before {\n content: \"\\f397\"; }\n\n.fa-codiepie:before {\n content: \"\\f284\"; }\n\n.fa-node:before {\n content: \"\\f419\"; }\n\n.fa-mix:before {\n content: \"\\f3cb\"; }\n\n.fa-steam:before {\n content: \"\\f1b6\"; }\n\n.fa-cc-apple-pay:before {\n content: \"\\f416\"; }\n\n.fa-scribd:before {\n content: \"\\f28a\"; }\n\n.fa-debian:before {\n content: \"\\e60b\"; }\n\n.fa-openid:before {\n content: \"\\f19b\"; }\n\n.fa-instalod:before {\n content: \"\\e081\"; }\n\n.fa-expeditedssl:before {\n content: \"\\f23e\"; }\n\n.fa-sellcast:before {\n content: \"\\f2da\"; }\n\n.fa-square-twitter:before {\n content: \"\\f081\"; }\n\n.fa-twitter-square:before {\n content: \"\\f081\"; }\n\n.fa-r-project:before {\n content: \"\\f4f7\"; }\n\n.fa-delicious:before {\n content: \"\\f1a5\"; }\n\n.fa-freebsd:before {\n content: \"\\f3a4\"; }\n\n.fa-vuejs:before {\n content: \"\\f41f\"; }\n\n.fa-accusoft:before {\n content: \"\\f369\"; }\n\n.fa-ioxhost:before {\n content: \"\\f208\"; }\n\n.fa-fonticons-fi:before {\n content: \"\\f3a2\"; }\n\n.fa-app-store:before {\n content: \"\\f36f\"; }\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\"; }\n\n.fa-itunes-note:before {\n content: \"\\f3b5\"; }\n\n.fa-golang:before {\n content: \"\\e40f\"; }\n\n.fa-kickstarter:before {\n content: \"\\f3bb\"; }\n\n.fa-grav:before {\n content: \"\\f2d6\"; }\n\n.fa-weibo:before {\n content: \"\\f18a\"; }\n\n.fa-uncharted:before {\n content: \"\\e084\"; }\n\n.fa-firstdraft:before {\n content: \"\\f3a1\"; }\n\n.fa-square-youtube:before {\n content: \"\\f431\"; }\n\n.fa-youtube-square:before {\n content: \"\\f431\"; }\n\n.fa-wikipedia-w:before {\n content: \"\\f266\"; }\n\n.fa-wpressr:before {\n content: \"\\f3e4\"; }\n\n.fa-rendact:before {\n content: \"\\f3e4\"; }\n\n.fa-angellist:before {\n content: \"\\f209\"; }\n\n.fa-galactic-republic:before {\n content: \"\\f50c\"; }\n\n.fa-nfc-directional:before {\n content: \"\\e530\"; }\n\n.fa-skype:before {\n content: \"\\f17e\"; }\n\n.fa-joget:before {\n content: \"\\f3b7\"; }\n\n.fa-fedora:before {\n content: \"\\f798\"; }\n\n.fa-stripe-s:before {\n content: \"\\f42a\"; }\n\n.fa-meta:before {\n content: \"\\e49b\"; }\n\n.fa-laravel:before {\n content: \"\\f3bd\"; }\n\n.fa-hotjar:before {\n content: \"\\f3b1\"; }\n\n.fa-bluetooth-b:before {\n content: \"\\f294\"; }\n\n.fa-sticker-mule:before {\n content: \"\\f3f7\"; }\n\n.fa-creative-commons-zero:before {\n content: \"\\f4f3\"; }\n\n.fa-hips:before {\n content: \"\\f452\"; }\n\n.fa-behance:before {\n content: \"\\f1b4\"; }\n\n.fa-reddit:before {\n content: \"\\f1a1\"; }\n\n.fa-discord:before {\n content: \"\\f392\"; }\n\n.fa-chrome:before {\n content: \"\\f268\"; }\n\n.fa-app-store-ios:before {\n content: \"\\f370\"; }\n\n.fa-cc-discover:before {\n content: \"\\f1f2\"; }\n\n.fa-wpbeginner:before {\n content: \"\\f297\"; }\n\n.fa-confluence:before {\n content: \"\\f78d\"; }\n\n.fa-mdb:before {\n content: \"\\f8ca\"; }\n\n.fa-dochub:before {\n content: \"\\f394\"; }\n\n.fa-accessible-icon:before {\n content: \"\\f368\"; }\n\n.fa-ebay:before {\n content: \"\\f4f4\"; }\n\n.fa-amazon:before {\n content: \"\\f270\"; }\n\n.fa-unsplash:before {\n content: \"\\e07c\"; }\n\n.fa-yarn:before {\n content: \"\\f7e3\"; }\n\n.fa-square-steam:before {\n content: \"\\f1b7\"; }\n\n.fa-steam-square:before {\n content: \"\\f1b7\"; }\n\n.fa-500px:before {\n content: \"\\f26e\"; }\n\n.fa-square-vimeo:before {\n content: \"\\f194\"; }\n\n.fa-vimeo-square:before {\n content: \"\\f194\"; }\n\n.fa-asymmetrik:before {\n content: \"\\f372\"; }\n\n.fa-font-awesome:before {\n content: \"\\f2b4\"; }\n\n.fa-font-awesome-flag:before {\n content: \"\\f2b4\"; }\n\n.fa-font-awesome-logo-full:before {\n content: \"\\f2b4\"; }\n\n.fa-gratipay:before {\n content: \"\\f184\"; }\n\n.fa-apple:before {\n content: \"\\f179\"; }\n\n.fa-hive:before {\n content: \"\\e07f\"; }\n\n.fa-gitkraken:before {\n content: \"\\f3a6\"; }\n\n.fa-keybase:before {\n content: \"\\f4f5\"; }\n\n.fa-apple-pay:before {\n content: \"\\f415\"; }\n\n.fa-padlet:before {\n content: \"\\e4a0\"; }\n\n.fa-amazon-pay:before {\n content: \"\\f42c\"; }\n\n.fa-square-github:before {\n content: \"\\f092\"; }\n\n.fa-github-square:before {\n content: \"\\f092\"; }\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\"; }\n\n.fa-fedex:before {\n content: \"\\f797\"; }\n\n.fa-phoenix-framework:before {\n content: \"\\f3dc\"; }\n\n.fa-shopify:before {\n content: \"\\e057\"; }\n\n.fa-neos:before {\n content: \"\\f612\"; }\n\n.fa-square-threads:before {\n content: \"\\e619\"; }\n\n.fa-hackerrank:before {\n content: \"\\f5f7\"; }\n\n.fa-researchgate:before {\n content: \"\\f4f8\"; }\n\n.fa-swift:before {\n content: \"\\f8e1\"; }\n\n.fa-angular:before {\n content: \"\\f420\"; }\n\n.fa-speakap:before {\n content: \"\\f3f3\"; }\n\n.fa-angrycreative:before {\n content: \"\\f36e\"; }\n\n.fa-y-combinator:before {\n content: \"\\f23b\"; }\n\n.fa-empire:before {\n content: \"\\f1d1\"; }\n\n.fa-envira:before {\n content: \"\\f299\"; }\n\n.fa-square-gitlab:before {\n content: \"\\e5ae\"; }\n\n.fa-gitlab-square:before {\n content: \"\\e5ae\"; }\n\n.fa-studiovinari:before {\n content: \"\\f3f8\"; }\n\n.fa-pied-piper:before {\n content: \"\\f2ae\"; }\n\n.fa-wordpress:before {\n content: \"\\f19a\"; }\n\n.fa-product-hunt:before {\n content: \"\\f288\"; }\n\n.fa-firefox:before {\n content: \"\\f269\"; }\n\n.fa-linode:before {\n content: \"\\f2b8\"; }\n\n.fa-goodreads:before {\n content: \"\\f3a8\"; }\n\n.fa-square-odnoklassniki:before {\n content: \"\\f264\"; }\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\"; }\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\"; }\n\n.fa-sith:before {\n content: \"\\f512\"; }\n\n.fa-themeisle:before {\n content: \"\\f2b2\"; }\n\n.fa-page4:before {\n content: \"\\f3d7\"; }\n\n.fa-hashnode:before {\n content: \"\\e499\"; }\n\n.fa-react:before {\n content: \"\\f41b\"; }\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\"; }\n\n.fa-squarespace:before {\n content: \"\\f5be\"; }\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\"; }\n\n.fa-creative-commons-share:before {\n content: \"\\f4f2\"; }\n\n.fa-bitcoin:before {\n content: \"\\f379\"; }\n\n.fa-keycdn:before {\n content: \"\\f3ba\"; }\n\n.fa-opera:before {\n content: \"\\f26a\"; }\n\n.fa-itch-io:before {\n content: \"\\f83a\"; }\n\n.fa-umbraco:before {\n content: \"\\f8e8\"; }\n\n.fa-galactic-senate:before {\n content: \"\\f50d\"; }\n\n.fa-ubuntu:before {\n content: \"\\f7df\"; }\n\n.fa-draft2digital:before {\n content: \"\\f396\"; }\n\n.fa-stripe:before {\n content: \"\\f429\"; }\n\n.fa-houzz:before {\n content: \"\\f27c\"; }\n\n.fa-gg:before {\n content: \"\\f260\"; }\n\n.fa-dhl:before {\n content: \"\\f790\"; }\n\n.fa-square-pinterest:before {\n content: \"\\f0d3\"; }\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\"; }\n\n.fa-xing:before {\n content: \"\\f168\"; }\n\n.fa-blackberry:before {\n content: \"\\f37b\"; }\n\n.fa-creative-commons-pd:before {\n content: \"\\f4ec\"; }\n\n.fa-playstation:before {\n content: \"\\f3df\"; }\n\n.fa-quinscape:before {\n content: \"\\f459\"; }\n\n.fa-less:before {\n content: \"\\f41d\"; }\n\n.fa-blogger-b:before {\n content: \"\\f37d\"; }\n\n.fa-opencart:before {\n content: \"\\f23d\"; }\n\n.fa-vine:before {\n content: \"\\f1ca\"; }\n\n.fa-paypal:before {\n content: \"\\f1ed\"; }\n\n.fa-gitlab:before {\n content: \"\\f296\"; }\n\n.fa-typo3:before {\n content: \"\\f42b\"; }\n\n.fa-reddit-alien:before {\n content: \"\\f281\"; }\n\n.fa-yahoo:before {\n content: \"\\f19e\"; }\n\n.fa-dailymotion:before {\n content: \"\\e052\"; }\n\n.fa-affiliatetheme:before {\n content: \"\\f36b\"; }\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\"; }\n\n.fa-bootstrap:before {\n content: \"\\f836\"; }\n\n.fa-odnoklassniki:before {\n content: \"\\f263\"; }\n\n.fa-nfc-symbol:before {\n content: \"\\e531\"; }\n\n.fa-ethereum:before {\n content: \"\\f42e\"; }\n\n.fa-speaker-deck:before {\n content: \"\\f83c\"; }\n\n.fa-creative-commons-nc-eu:before {\n content: \"\\f4e9\"; }\n\n.fa-patreon:before {\n content: \"\\f3d9\"; }\n\n.fa-avianex:before {\n content: \"\\f374\"; }\n\n.fa-ello:before {\n content: \"\\f5f1\"; }\n\n.fa-gofore:before {\n content: \"\\f3a7\"; }\n\n.fa-bimobject:before {\n content: \"\\f378\"; }\n\n.fa-facebook-f:before {\n content: \"\\f39e\"; }\n\n.fa-square-google-plus:before {\n content: \"\\f0d4\"; }\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\"; }\n\n.fa-mandalorian:before {\n content: \"\\f50f\"; }\n\n.fa-first-order-alt:before {\n content: \"\\f50a\"; }\n\n.fa-osi:before {\n content: \"\\f41a\"; }\n\n.fa-google-wallet:before {\n content: \"\\f1ee\"; }\n\n.fa-d-and-d-beyond:before {\n content: \"\\f6ca\"; }\n\n.fa-periscope:before {\n content: \"\\f3da\"; }\n\n.fa-fulcrum:before {\n content: \"\\f50b\"; }\n\n.fa-cloudscale:before {\n content: \"\\f383\"; }\n\n.fa-forumbee:before {\n content: \"\\f211\"; }\n\n.fa-mizuni:before {\n content: \"\\f3cc\"; }\n\n.fa-schlix:before {\n content: \"\\f3ea\"; }\n\n.fa-square-xing:before {\n content: \"\\f169\"; }\n\n.fa-xing-square:before {\n content: \"\\f169\"; }\n\n.fa-bandcamp:before {\n content: \"\\f2d5\"; }\n\n.fa-wpforms:before {\n content: \"\\f298\"; }\n\n.fa-cloudversify:before {\n content: \"\\f385\"; }\n\n.fa-usps:before {\n content: \"\\f7e1\"; }\n\n.fa-megaport:before {\n content: \"\\f5a3\"; }\n\n.fa-magento:before {\n content: \"\\f3c4\"; }\n\n.fa-spotify:before {\n content: \"\\f1bc\"; }\n\n.fa-optin-monster:before {\n content: \"\\f23c\"; }\n\n.fa-fly:before {\n content: \"\\f417\"; }\n\n.fa-aviato:before {\n content: \"\\f421\"; }\n\n.fa-itunes:before {\n content: \"\\f3b4\"; }\n\n.fa-cuttlefish:before {\n content: \"\\f38c\"; }\n\n.fa-blogger:before {\n content: \"\\f37c\"; }\n\n.fa-flickr:before {\n content: \"\\f16e\"; }\n\n.fa-viber:before {\n content: \"\\f409\"; }\n\n.fa-soundcloud:before {\n content: \"\\f1be\"; }\n\n.fa-digg:before {\n content: \"\\f1a6\"; }\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\"; }\n\n.fa-symfony:before {\n content: \"\\f83d\"; }\n\n.fa-maxcdn:before {\n content: \"\\f136\"; }\n\n.fa-etsy:before {\n content: \"\\f2d7\"; }\n\n.fa-facebook-messenger:before {\n content: \"\\f39f\"; }\n\n.fa-audible:before {\n content: \"\\f373\"; }\n\n.fa-think-peaks:before {\n content: \"\\f731\"; }\n\n.fa-bilibili:before {\n content: \"\\e3d9\"; }\n\n.fa-erlang:before {\n content: \"\\f39d\"; }\n\n.fa-x-twitter:before {\n content: \"\\e61b\"; }\n\n.fa-cotton-bureau:before {\n content: \"\\f89e\"; }\n\n.fa-dashcube:before {\n content: \"\\f210\"; }\n\n.fa-42-group:before {\n content: \"\\e080\"; }\n\n.fa-innosoft:before {\n content: \"\\e080\"; }\n\n.fa-stack-exchange:before {\n content: \"\\f18d\"; }\n\n.fa-elementor:before {\n content: \"\\f430\"; }\n\n.fa-square-pied-piper:before {\n content: \"\\e01e\"; }\n\n.fa-pied-piper-square:before {\n content: \"\\e01e\"; }\n\n.fa-creative-commons-nd:before {\n content: \"\\f4eb\"; }\n\n.fa-palfed:before {\n content: \"\\f3d8\"; }\n\n.fa-superpowers:before {\n content: \"\\f2dd\"; }\n\n.fa-resolving:before {\n content: \"\\f3e7\"; }\n\n.fa-xbox:before {\n content: \"\\f412\"; }\n\n.fa-searchengin:before {\n content: \"\\f3eb\"; }\n\n.fa-tiktok:before {\n content: \"\\e07b\"; }\n\n.fa-square-facebook:before {\n content: \"\\f082\"; }\n\n.fa-facebook-square:before {\n content: \"\\f082\"; }\n\n.fa-renren:before {\n content: \"\\f18b\"; }\n\n.fa-linux:before {\n content: \"\\f17c\"; }\n\n.fa-glide:before {\n content: \"\\f2a5\"; }\n\n.fa-linkedin:before {\n content: \"\\f08c\"; }\n\n.fa-hubspot:before {\n content: \"\\f3b2\"; }\n\n.fa-deploydog:before {\n content: \"\\f38e\"; }\n\n.fa-twitch:before {\n content: \"\\f1e8\"; }\n\n.fa-ravelry:before {\n content: \"\\f2d9\"; }\n\n.fa-mixer:before {\n content: \"\\e056\"; }\n\n.fa-square-lastfm:before {\n content: \"\\f203\"; }\n\n.fa-lastfm-square:before {\n content: \"\\f203\"; }\n\n.fa-vimeo:before {\n content: \"\\f40a\"; }\n\n.fa-mendeley:before {\n content: \"\\f7b3\"; }\n\n.fa-uniregistry:before {\n content: \"\\f404\"; }\n\n.fa-figma:before {\n content: \"\\f799\"; }\n\n.fa-creative-commons-remix:before {\n content: \"\\f4ee\"; }\n\n.fa-cc-amazon-pay:before {\n content: \"\\f42d\"; }\n\n.fa-dropbox:before {\n content: \"\\f16b\"; }\n\n.fa-instagram:before {\n content: \"\\f16d\"; }\n\n.fa-cmplid:before {\n content: \"\\e360\"; }\n\n.fa-facebook:before {\n content: \"\\f09a\"; }\n\n.fa-gripfire:before {\n content: \"\\f3ac\"; }\n\n.fa-jedi-order:before {\n content: \"\\f50e\"; }\n\n.fa-uikit:before {\n content: \"\\f403\"; }\n\n.fa-fort-awesome-alt:before {\n content: \"\\f3a3\"; }\n\n.fa-phabricator:before {\n content: \"\\f3db\"; }\n\n.fa-ussunnah:before {\n content: \"\\f407\"; }\n\n.fa-earlybirds:before {\n content: \"\\f39a\"; }\n\n.fa-trade-federation:before {\n content: \"\\f513\"; }\n\n.fa-autoprefixer:before {\n content: \"\\f41c\"; }\n\n.fa-whatsapp:before {\n content: \"\\f232\"; }\n\n.fa-slideshare:before {\n content: \"\\f1e7\"; }\n\n.fa-google-play:before {\n content: \"\\f3ab\"; }\n\n.fa-viadeo:before {\n content: \"\\f2a9\"; }\n\n.fa-line:before {\n content: \"\\f3c0\"; }\n\n.fa-google-drive:before {\n content: \"\\f3aa\"; }\n\n.fa-servicestack:before {\n content: \"\\f3ec\"; }\n\n.fa-simplybuilt:before {\n content: \"\\f215\"; }\n\n.fa-bitbucket:before {\n content: \"\\f171\"; }\n\n.fa-imdb:before {\n content: \"\\f2d8\"; }\n\n.fa-deezer:before {\n content: \"\\e077\"; }\n\n.fa-raspberry-pi:before {\n content: \"\\f7bb\"; }\n\n.fa-jira:before {\n content: \"\\f7b1\"; }\n\n.fa-docker:before {\n content: \"\\f395\"; }\n\n.fa-screenpal:before {\n content: \"\\e570\"; }\n\n.fa-bluetooth:before {\n content: \"\\f293\"; }\n\n.fa-gitter:before {\n content: \"\\f426\"; }\n\n.fa-d-and-d:before {\n content: \"\\f38d\"; }\n\n.fa-microblog:before {\n content: \"\\e01a\"; }\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\"; }\n\n.fa-gg-circle:before {\n content: \"\\f261\"; }\n\n.fa-pied-piper-hat:before {\n content: \"\\f4e5\"; }\n\n.fa-kickstarter-k:before {\n content: \"\\f3bc\"; }\n\n.fa-yandex:before {\n content: \"\\f413\"; }\n\n.fa-readme:before {\n content: \"\\f4d5\"; }\n\n.fa-html5:before {\n content: \"\\f13b\"; }\n\n.fa-sellsy:before {\n content: \"\\f213\"; }\n\n.fa-sass:before {\n content: \"\\f41e\"; }\n\n.fa-wirsindhandwerk:before {\n content: \"\\e2d0\"; }\n\n.fa-wsh:before {\n content: \"\\e2d0\"; }\n\n.fa-buromobelexperte:before {\n content: \"\\f37f\"; }\n\n.fa-salesforce:before {\n content: \"\\f83b\"; }\n\n.fa-octopus-deploy:before {\n content: \"\\e082\"; }\n\n.fa-medapps:before {\n content: \"\\f3c6\"; }\n\n.fa-ns8:before {\n content: \"\\f3d5\"; }\n\n.fa-pinterest-p:before {\n content: \"\\f231\"; }\n\n.fa-apper:before {\n content: \"\\f371\"; }\n\n.fa-fort-awesome:before {\n content: \"\\f286\"; }\n\n.fa-waze:before {\n content: \"\\f83f\"; }\n\n.fa-cc-jcb:before {\n content: \"\\f24b\"; }\n\n.fa-snapchat:before {\n content: \"\\f2ab\"; }\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ab\"; }\n\n.fa-fantasy-flight-games:before {\n content: \"\\f6dc\"; }\n\n.fa-rust:before {\n content: \"\\e07a\"; }\n\n.fa-wix:before {\n content: \"\\f5cf\"; }\n\n.fa-square-behance:before {\n content: \"\\f1b5\"; }\n\n.fa-behance-square:before {\n content: \"\\f1b5\"; }\n\n.fa-supple:before {\n content: \"\\f3f9\"; }\n\n.fa-rebel:before {\n content: \"\\f1d0\"; }\n\n.fa-css3:before {\n content: \"\\f13c\"; }\n\n.fa-staylinked:before {\n content: \"\\f3f5\"; }\n\n.fa-kaggle:before {\n content: \"\\f5fa\"; }\n\n.fa-space-awesome:before {\n content: \"\\e5ac\"; }\n\n.fa-deviantart:before {\n content: \"\\f1bd\"; }\n\n.fa-cpanel:before {\n content: \"\\f388\"; }\n\n.fa-goodreads-g:before {\n content: \"\\f3a9\"; }\n\n.fa-square-git:before {\n content: \"\\f1d2\"; }\n\n.fa-git-square:before {\n content: \"\\f1d2\"; }\n\n.fa-square-tumblr:before {\n content: \"\\f174\"; }\n\n.fa-tumblr-square:before {\n content: \"\\f174\"; }\n\n.fa-trello:before {\n content: \"\\f181\"; }\n\n.fa-creative-commons-nc-jp:before {\n content: \"\\f4ea\"; }\n\n.fa-get-pocket:before {\n content: \"\\f265\"; }\n\n.fa-perbyte:before {\n content: \"\\e083\"; }\n\n.fa-grunt:before {\n content: \"\\f3ad\"; }\n\n.fa-weebly:before {\n content: \"\\f5cc\"; }\n\n.fa-connectdevelop:before {\n content: \"\\f20e\"; }\n\n.fa-leanpub:before {\n content: \"\\f212\"; }\n\n.fa-black-tie:before {\n content: \"\\f27e\"; }\n\n.fa-themeco:before {\n content: \"\\f5c6\"; }\n\n.fa-python:before {\n content: \"\\f3e2\"; }\n\n.fa-android:before {\n content: \"\\f17b\"; }\n\n.fa-bots:before {\n content: \"\\e340\"; }\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\"; }\n\n.fa-hornbill:before {\n content: \"\\f592\"; }\n\n.fa-js:before {\n content: \"\\f3b8\"; }\n\n.fa-ideal:before {\n content: \"\\e013\"; }\n\n.fa-git:before {\n content: \"\\f1d3\"; }\n\n.fa-dev:before {\n content: \"\\f6cc\"; }\n\n.fa-sketch:before {\n content: \"\\f7c6\"; }\n\n.fa-yandex-international:before {\n content: \"\\f414\"; }\n\n.fa-cc-amex:before {\n content: \"\\f1f3\"; }\n\n.fa-uber:before {\n content: \"\\f402\"; }\n\n.fa-github:before {\n content: \"\\f09b\"; }\n\n.fa-php:before {\n content: \"\\f457\"; }\n\n.fa-alipay:before {\n content: \"\\f642\"; }\n\n.fa-youtube:before {\n content: \"\\f167\"; }\n\n.fa-skyatlas:before {\n content: \"\\f216\"; }\n\n.fa-firefox-browser:before {\n content: \"\\e007\"; }\n\n.fa-replyd:before {\n content: \"\\f3e6\"; }\n\n.fa-suse:before {\n content: \"\\f7d6\"; }\n\n.fa-jenkins:before {\n content: \"\\f3b6\"; }\n\n.fa-twitter:before {\n content: \"\\f099\"; }\n\n.fa-rockrms:before {\n content: \"\\f3e9\"; }\n\n.fa-pinterest:before {\n content: \"\\f0d2\"; }\n\n.fa-buffer:before {\n content: \"\\f837\"; }\n\n.fa-npm:before {\n content: \"\\f3d4\"; }\n\n.fa-yammer:before {\n content: \"\\f840\"; }\n\n.fa-btc:before {\n content: \"\\f15a\"; }\n\n.fa-dribbble:before {\n content: \"\\f17d\"; }\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\"; }\n\n.fa-internet-explorer:before {\n content: \"\\f26b\"; }\n\n.fa-stubber:before {\n content: \"\\e5c7\"; }\n\n.fa-telegram:before {\n content: \"\\f2c6\"; }\n\n.fa-telegram-plane:before {\n content: \"\\f2c6\"; }\n\n.fa-old-republic:before {\n content: \"\\f510\"; }\n\n.fa-odysee:before {\n content: \"\\e5c6\"; }\n\n.fa-square-whatsapp:before {\n content: \"\\f40c\"; }\n\n.fa-whatsapp-square:before {\n content: \"\\f40c\"; }\n\n.fa-node-js:before {\n content: \"\\f3d3\"; }\n\n.fa-edge-legacy:before {\n content: \"\\e078\"; }\n\n.fa-slack:before {\n content: \"\\f198\"; }\n\n.fa-slack-hash:before {\n content: \"\\f198\"; }\n\n.fa-medrt:before {\n content: \"\\f3c8\"; }\n\n.fa-usb:before {\n content: \"\\f287\"; }\n\n.fa-tumblr:before {\n content: \"\\f173\"; }\n\n.fa-vaadin:before {\n content: \"\\f408\"; }\n\n.fa-quora:before {\n content: \"\\f2c4\"; }\n\n.fa-square-x-twitter:before {\n content: \"\\e61a\"; }\n\n.fa-reacteurope:before {\n content: \"\\f75d\"; }\n\n.fa-medium:before {\n content: \"\\f23a\"; }\n\n.fa-medium-m:before {\n content: \"\\f23a\"; }\n\n.fa-amilia:before {\n content: \"\\f36d\"; }\n\n.fa-mixcloud:before {\n content: \"\\f289\"; }\n\n.fa-flipboard:before {\n content: \"\\f44d\"; }\n\n.fa-viacoin:before {\n content: \"\\f237\"; }\n\n.fa-critical-role:before {\n content: \"\\f6c9\"; }\n\n.fa-sitrox:before {\n content: \"\\e44a\"; }\n\n.fa-discourse:before {\n content: \"\\f393\"; }\n\n.fa-joomla:before {\n content: \"\\f1aa\"; }\n\n.fa-mastodon:before {\n content: \"\\f4f6\"; }\n\n.fa-airbnb:before {\n content: \"\\f834\"; }\n\n.fa-wolf-pack-battalion:before {\n content: \"\\f514\"; }\n\n.fa-buy-n-large:before {\n content: \"\\f8a6\"; }\n\n.fa-gulp:before {\n content: \"\\f3ae\"; }\n\n.fa-creative-commons-sampling-plus:before {\n content: \"\\f4f1\"; }\n\n.fa-strava:before {\n content: \"\\f428\"; }\n\n.fa-ember:before {\n content: \"\\f423\"; }\n\n.fa-canadian-maple-leaf:before {\n content: \"\\f785\"; }\n\n.fa-teamspeak:before {\n content: \"\\f4f9\"; }\n\n.fa-pushed:before {\n content: \"\\f3e1\"; }\n\n.fa-wordpress-simple:before {\n content: \"\\f411\"; }\n\n.fa-nutritionix:before {\n content: \"\\f3d6\"; }\n\n.fa-wodu:before {\n content: \"\\e088\"; }\n\n.fa-google-pay:before {\n content: \"\\e079\"; }\n\n.fa-intercom:before {\n content: \"\\f7af\"; }\n\n.fa-zhihu:before {\n content: \"\\f63f\"; }\n\n.fa-korvue:before {\n content: \"\\f42f\"; }\n\n.fa-pix:before {\n content: \"\\e43a\"; }\n\n.fa-steam-symbol:before {\n content: \"\\f3f6\"; }\n:root, :host {\n --fa-style-family-classic: 'Font Awesome 6 Free';\n --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; }\n\n@font-face {\n font-family: 'Font Awesome 6 Free';\n font-style: normal;\n font-weight: 400;\n font-display: block;\n src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\"); }\n\n.far,\n.fa-regular {\n font-weight: 400; }\n:root, :host {\n --fa-style-family-classic: 'Font Awesome 6 Free';\n --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }\n\n@font-face {\n font-family: 'Font Awesome 6 Free';\n font-style: normal;\n font-weight: 900;\n font-display: block;\n src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"); }\n\n.fas,\n.fa-solid {\n font-weight: 900; }\n@font-face {\n font-family: 'Font Awesome 5 Brands';\n font-display: block;\n font-weight: 400;\n src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"); }\n\n@font-face {\n font-family: 'Font Awesome 5 Free';\n font-display: block;\n font-weight: 900;\n src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"); }\n\n@font-face {\n font-family: 'Font Awesome 5 Free';\n font-display: block;\n font-weight: 400;\n src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\"); }\n@font-face {\n font-family: 'FontAwesome';\n font-display: block;\n src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"); }\n\n@font-face {\n font-family: 'FontAwesome';\n font-display: block;\n src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"); }\n\n@font-face {\n font-family: 'FontAwesome';\n font-display: block;\n src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\");\n unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; }\n\n@font-face {\n font-family: 'FontAwesome';\n font-display: block;\n src: url(\"../fonts/fa-v4compatibility.woff2\") format(\"woff2\"), url(\"../fonts/fa-v4compatibility.ttf\") format(\"truetype\");\n unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A; }\n","/*\nTemplate Name: TailFox - Responsive Tailwind Admin Dashboard\nVersion: 1.0\nAuthor: MyraStudio\nEmail: myrathemes@gmail.com\nFile: Icons Css File\n*/\n/*!\n * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2023 Fonticons, Inc.\n */\n.fa {\n font-family: var(--fa-style-family, \"Font Awesome 6 Free\");\n font-weight: var(--fa-style, 900);\n}\n\n.fa,\n.fa-classic,\n.fa-sharp,\n.fas,\n.fa-solid,\n.far,\n.fa-regular,\n.fab,\n.fa-brands {\n -moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n display: var(--fa-display, inline-block);\n font-style: normal;\n font-variant: normal;\n line-height: 1;\n text-rendering: auto;\n}\n\n.fas,\n.fa-classic,\n.fa-solid,\n.far,\n.fa-regular {\n font-family: \"Font Awesome 6 Free\";\n}\n\n.fab,\n.fa-brands {\n font-family: \"Font Awesome 6 Brands\";\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.08333em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.07143em;\n vertical-align: 0.05357em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.04167em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n .fa-bounce,\n .fa-fade,\n .fa-beat-fade,\n .fa-flip,\n .fa-pulse,\n .fa-shake,\n .fa-spin,\n .fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, none));\n transform: rotate(var(--fa-rotate-angle, none));\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n line-height: 2em;\n position: relative;\n vertical-align: middle;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n left: 0;\n position: absolute;\n text-align: center;\n width: 100%;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.fa-stack-1x {\n line-height: inherit;\n}\n\n.fa-stack-2x {\n font-size: 2em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\nreaders do not read off random characters that represent icons */\n.fa-0::before {\n content: \"0\";\n}\n\n.fa-1::before {\n content: \"1\";\n}\n\n.fa-2::before {\n content: \"2\";\n}\n\n.fa-3::before {\n content: \"3\";\n}\n\n.fa-4::before {\n content: \"4\";\n}\n\n.fa-5::before {\n content: \"5\";\n}\n\n.fa-6::before {\n content: \"6\";\n}\n\n.fa-7::before {\n content: \"7\";\n}\n\n.fa-8::before {\n content: \"8\";\n}\n\n.fa-9::before {\n content: \"9\";\n}\n\n.fa-fill-drip::before {\n content: \"\\f576\";\n}\n\n.fa-arrows-to-circle::before {\n content: \"\\e4bd\";\n}\n\n.fa-circle-chevron-right::before {\n content: \"\\f138\";\n}\n\n.fa-chevron-circle-right::before {\n content: \"\\f138\";\n}\n\n.fa-at::before {\n content: \"@\";\n}\n\n.fa-trash-can::before {\n content: \"\\f2ed\";\n}\n\n.fa-trash-alt::before {\n content: \"\\f2ed\";\n}\n\n.fa-text-height::before {\n content: \"\\f034\";\n}\n\n.fa-user-xmark::before {\n content: \"\\f235\";\n}\n\n.fa-user-times::before {\n content: \"\\f235\";\n}\n\n.fa-stethoscope::before {\n content: \"\\f0f1\";\n}\n\n.fa-message::before {\n content: \"\\f27a\";\n}\n\n.fa-comment-alt::before {\n content: \"\\f27a\";\n}\n\n.fa-info::before {\n content: \"\\f129\";\n}\n\n.fa-down-left-and-up-right-to-center::before {\n content: \"\\f422\";\n}\n\n.fa-compress-alt::before {\n content: \"\\f422\";\n}\n\n.fa-explosion::before {\n content: \"\\e4e9\";\n}\n\n.fa-file-lines::before {\n content: \"\\f15c\";\n}\n\n.fa-file-alt::before {\n content: \"\\f15c\";\n}\n\n.fa-file-text::before {\n content: \"\\f15c\";\n}\n\n.fa-wave-square::before {\n content: \"\\f83e\";\n}\n\n.fa-ring::before {\n content: \"\\f70b\";\n}\n\n.fa-building-un::before {\n content: \"\\e4d9\";\n}\n\n.fa-dice-three::before {\n content: \"\\f527\";\n}\n\n.fa-calendar-days::before {\n content: \"\\f073\";\n}\n\n.fa-calendar-alt::before {\n content: \"\\f073\";\n}\n\n.fa-anchor-circle-check::before {\n content: \"\\e4aa\";\n}\n\n.fa-building-circle-arrow-right::before {\n content: \"\\e4d1\";\n}\n\n.fa-volleyball::before {\n content: \"\\f45f\";\n}\n\n.fa-volleyball-ball::before {\n content: \"\\f45f\";\n}\n\n.fa-arrows-up-to-line::before {\n content: \"\\e4c2\";\n}\n\n.fa-sort-down::before {\n content: \"\\f0dd\";\n}\n\n.fa-sort-desc::before {\n content: \"\\f0dd\";\n}\n\n.fa-circle-minus::before {\n content: \"\\f056\";\n}\n\n.fa-minus-circle::before {\n content: \"\\f056\";\n}\n\n.fa-door-open::before {\n content: \"\\f52b\";\n}\n\n.fa-right-from-bracket::before {\n content: \"\\f2f5\";\n}\n\n.fa-sign-out-alt::before {\n content: \"\\f2f5\";\n}\n\n.fa-atom::before {\n content: \"\\f5d2\";\n}\n\n.fa-soap::before {\n content: \"\\e06e\";\n}\n\n.fa-icons::before {\n content: \"\\f86d\";\n}\n\n.fa-heart-music-camera-bolt::before {\n content: \"\\f86d\";\n}\n\n.fa-microphone-lines-slash::before {\n content: \"\\f539\";\n}\n\n.fa-microphone-alt-slash::before {\n content: \"\\f539\";\n}\n\n.fa-bridge-circle-check::before {\n content: \"\\e4c9\";\n}\n\n.fa-pump-medical::before {\n content: \"\\e06a\";\n}\n\n.fa-fingerprint::before {\n content: \"\\f577\";\n}\n\n.fa-hand-point-right::before {\n content: \"\\f0a4\";\n}\n\n.fa-magnifying-glass-location::before {\n content: \"\\f689\";\n}\n\n.fa-search-location::before {\n content: \"\\f689\";\n}\n\n.fa-forward-step::before {\n content: \"\\f051\";\n}\n\n.fa-step-forward::before {\n content: \"\\f051\";\n}\n\n.fa-face-smile-beam::before {\n content: \"\\f5b8\";\n}\n\n.fa-smile-beam::before {\n content: \"\\f5b8\";\n}\n\n.fa-flag-checkered::before {\n content: \"\\f11e\";\n}\n\n.fa-football::before {\n content: \"\\f44e\";\n}\n\n.fa-football-ball::before {\n content: \"\\f44e\";\n}\n\n.fa-school-circle-exclamation::before {\n content: \"\\e56c\";\n}\n\n.fa-crop::before {\n content: \"\\f125\";\n}\n\n.fa-angles-down::before {\n content: \"\\f103\";\n}\n\n.fa-angle-double-down::before {\n content: \"\\f103\";\n}\n\n.fa-users-rectangle::before {\n content: \"\\e594\";\n}\n\n.fa-people-roof::before {\n content: \"\\e537\";\n}\n\n.fa-people-line::before {\n content: \"\\e534\";\n}\n\n.fa-beer-mug-empty::before {\n content: \"\\f0fc\";\n}\n\n.fa-beer::before {\n content: \"\\f0fc\";\n}\n\n.fa-diagram-predecessor::before {\n content: \"\\e477\";\n}\n\n.fa-arrow-up-long::before {\n content: \"\\f176\";\n}\n\n.fa-long-arrow-up::before {\n content: \"\\f176\";\n}\n\n.fa-fire-flame-simple::before {\n content: \"\\f46a\";\n}\n\n.fa-burn::before {\n content: \"\\f46a\";\n}\n\n.fa-person::before {\n content: \"\\f183\";\n}\n\n.fa-male::before {\n content: \"\\f183\";\n}\n\n.fa-laptop::before {\n content: \"\\f109\";\n}\n\n.fa-file-csv::before {\n content: \"\\f6dd\";\n}\n\n.fa-menorah::before {\n content: \"\\f676\";\n}\n\n.fa-truck-plane::before {\n content: \"\\e58f\";\n}\n\n.fa-record-vinyl::before {\n content: \"\\f8d9\";\n}\n\n.fa-face-grin-stars::before {\n content: \"\\f587\";\n}\n\n.fa-grin-stars::before {\n content: \"\\f587\";\n}\n\n.fa-bong::before {\n content: \"\\f55c\";\n}\n\n.fa-spaghetti-monster-flying::before {\n content: \"\\f67b\";\n}\n\n.fa-pastafarianism::before {\n content: \"\\f67b\";\n}\n\n.fa-arrow-down-up-across-line::before {\n content: \"\\e4af\";\n}\n\n.fa-spoon::before {\n content: \"\\f2e5\";\n}\n\n.fa-utensil-spoon::before {\n content: \"\\f2e5\";\n}\n\n.fa-jar-wheat::before {\n content: \"\\e517\";\n}\n\n.fa-envelopes-bulk::before {\n content: \"\\f674\";\n}\n\n.fa-mail-bulk::before {\n content: \"\\f674\";\n}\n\n.fa-file-circle-exclamation::before {\n content: \"\\e4eb\";\n}\n\n.fa-circle-h::before {\n content: \"\\f47e\";\n}\n\n.fa-hospital-symbol::before {\n content: \"\\f47e\";\n}\n\n.fa-pager::before {\n content: \"\\f815\";\n}\n\n.fa-address-book::before {\n content: \"\\f2b9\";\n}\n\n.fa-contact-book::before {\n content: \"\\f2b9\";\n}\n\n.fa-strikethrough::before {\n content: \"\\f0cc\";\n}\n\n.fa-k::before {\n content: \"K\";\n}\n\n.fa-landmark-flag::before {\n content: \"\\e51c\";\n}\n\n.fa-pencil::before {\n content: \"\\f303\";\n}\n\n.fa-pencil-alt::before {\n content: \"\\f303\";\n}\n\n.fa-backward::before {\n content: \"\\f04a\";\n}\n\n.fa-caret-right::before {\n content: \"\\f0da\";\n}\n\n.fa-comments::before {\n content: \"\\f086\";\n}\n\n.fa-paste::before {\n content: \"\\f0ea\";\n}\n\n.fa-file-clipboard::before {\n content: \"\\f0ea\";\n}\n\n.fa-code-pull-request::before {\n content: \"\\e13c\";\n}\n\n.fa-clipboard-list::before {\n content: \"\\f46d\";\n}\n\n.fa-truck-ramp-box::before {\n content: \"\\f4de\";\n}\n\n.fa-truck-loading::before {\n content: \"\\f4de\";\n}\n\n.fa-user-check::before {\n content: \"\\f4fc\";\n}\n\n.fa-vial-virus::before {\n content: \"\\e597\";\n}\n\n.fa-sheet-plastic::before {\n content: \"\\e571\";\n}\n\n.fa-blog::before {\n content: \"\\f781\";\n}\n\n.fa-user-ninja::before {\n content: \"\\f504\";\n}\n\n.fa-person-arrow-up-from-line::before {\n content: \"\\e539\";\n}\n\n.fa-scroll-torah::before {\n content: \"\\f6a0\";\n}\n\n.fa-torah::before {\n content: \"\\f6a0\";\n}\n\n.fa-broom-ball::before {\n content: \"\\f458\";\n}\n\n.fa-quidditch::before {\n content: \"\\f458\";\n}\n\n.fa-quidditch-broom-ball::before {\n content: \"\\f458\";\n}\n\n.fa-toggle-off::before {\n content: \"\\f204\";\n}\n\n.fa-box-archive::before {\n content: \"\\f187\";\n}\n\n.fa-archive::before {\n content: \"\\f187\";\n}\n\n.fa-person-drowning::before {\n content: \"\\e545\";\n}\n\n.fa-arrow-down-9-1::before {\n content: \"\\f886\";\n}\n\n.fa-sort-numeric-desc::before {\n content: \"\\f886\";\n}\n\n.fa-sort-numeric-down-alt::before {\n content: \"\\f886\";\n}\n\n.fa-face-grin-tongue-squint::before {\n content: \"\\f58a\";\n}\n\n.fa-grin-tongue-squint::before {\n content: \"\\f58a\";\n}\n\n.fa-spray-can::before {\n content: \"\\f5bd\";\n}\n\n.fa-truck-monster::before {\n content: \"\\f63b\";\n}\n\n.fa-w::before {\n content: \"W\";\n}\n\n.fa-earth-africa::before {\n content: \"\\f57c\";\n}\n\n.fa-globe-africa::before {\n content: \"\\f57c\";\n}\n\n.fa-rainbow::before {\n content: \"\\f75b\";\n}\n\n.fa-circle-notch::before {\n content: \"\\f1ce\";\n}\n\n.fa-tablet-screen-button::before {\n content: \"\\f3fa\";\n}\n\n.fa-tablet-alt::before {\n content: \"\\f3fa\";\n}\n\n.fa-paw::before {\n content: \"\\f1b0\";\n}\n\n.fa-cloud::before {\n content: \"\\f0c2\";\n}\n\n.fa-trowel-bricks::before {\n content: \"\\e58a\";\n}\n\n.fa-face-flushed::before {\n content: \"\\f579\";\n}\n\n.fa-flushed::before {\n content: \"\\f579\";\n}\n\n.fa-hospital-user::before {\n content: \"\\f80d\";\n}\n\n.fa-tent-arrow-left-right::before {\n content: \"\\e57f\";\n}\n\n.fa-gavel::before {\n content: \"\\f0e3\";\n}\n\n.fa-legal::before {\n content: \"\\f0e3\";\n}\n\n.fa-binoculars::before {\n content: \"\\f1e5\";\n}\n\n.fa-microphone-slash::before {\n content: \"\\f131\";\n}\n\n.fa-box-tissue::before {\n content: \"\\e05b\";\n}\n\n.fa-motorcycle::before {\n content: \"\\f21c\";\n}\n\n.fa-bell-concierge::before {\n content: \"\\f562\";\n}\n\n.fa-concierge-bell::before {\n content: \"\\f562\";\n}\n\n.fa-pen-ruler::before {\n content: \"\\f5ae\";\n}\n\n.fa-pencil-ruler::before {\n content: \"\\f5ae\";\n}\n\n.fa-people-arrows::before {\n content: \"\\e068\";\n}\n\n.fa-people-arrows-left-right::before {\n content: \"\\e068\";\n}\n\n.fa-mars-and-venus-burst::before {\n content: \"\\e523\";\n}\n\n.fa-square-caret-right::before {\n content: \"\\f152\";\n}\n\n.fa-caret-square-right::before {\n content: \"\\f152\";\n}\n\n.fa-scissors::before {\n content: \"\\f0c4\";\n}\n\n.fa-cut::before {\n content: \"\\f0c4\";\n}\n\n.fa-sun-plant-wilt::before {\n content: \"\\e57a\";\n}\n\n.fa-toilets-portable::before {\n content: \"\\e584\";\n}\n\n.fa-hockey-puck::before {\n content: \"\\f453\";\n}\n\n.fa-table::before {\n content: \"\\f0ce\";\n}\n\n.fa-magnifying-glass-arrow-right::before {\n content: \"\\e521\";\n}\n\n.fa-tachograph-digital::before {\n content: \"\\f566\";\n}\n\n.fa-digital-tachograph::before {\n content: \"\\f566\";\n}\n\n.fa-users-slash::before {\n content: \"\\e073\";\n}\n\n.fa-clover::before {\n content: \"\\e139\";\n}\n\n.fa-reply::before {\n content: \"\\f3e5\";\n}\n\n.fa-mail-reply::before {\n content: \"\\f3e5\";\n}\n\n.fa-star-and-crescent::before {\n content: \"\\f699\";\n}\n\n.fa-house-fire::before {\n content: \"\\e50c\";\n}\n\n.fa-square-minus::before {\n content: \"\\f146\";\n}\n\n.fa-minus-square::before {\n content: \"\\f146\";\n}\n\n.fa-helicopter::before {\n content: \"\\f533\";\n}\n\n.fa-compass::before {\n content: \"\\f14e\";\n}\n\n.fa-square-caret-down::before {\n content: \"\\f150\";\n}\n\n.fa-caret-square-down::before {\n content: \"\\f150\";\n}\n\n.fa-file-circle-question::before {\n content: \"\\e4ef\";\n}\n\n.fa-laptop-code::before {\n content: \"\\f5fc\";\n}\n\n.fa-swatchbook::before {\n content: \"\\f5c3\";\n}\n\n.fa-prescription-bottle::before {\n content: \"\\f485\";\n}\n\n.fa-bars::before {\n content: \"\\f0c9\";\n}\n\n.fa-navicon::before {\n content: \"\\f0c9\";\n}\n\n.fa-people-group::before {\n content: \"\\e533\";\n}\n\n.fa-hourglass-end::before {\n content: \"\\f253\";\n}\n\n.fa-hourglass-3::before {\n content: \"\\f253\";\n}\n\n.fa-heart-crack::before {\n content: \"\\f7a9\";\n}\n\n.fa-heart-broken::before {\n content: \"\\f7a9\";\n}\n\n.fa-square-up-right::before {\n content: \"\\f360\";\n}\n\n.fa-external-link-square-alt::before {\n content: \"\\f360\";\n}\n\n.fa-face-kiss-beam::before {\n content: \"\\f597\";\n}\n\n.fa-kiss-beam::before {\n content: \"\\f597\";\n}\n\n.fa-film::before {\n content: \"\\f008\";\n}\n\n.fa-ruler-horizontal::before {\n content: \"\\f547\";\n}\n\n.fa-people-robbery::before {\n content: \"\\e536\";\n}\n\n.fa-lightbulb::before {\n content: \"\\f0eb\";\n}\n\n.fa-caret-left::before {\n content: \"\\f0d9\";\n}\n\n.fa-circle-exclamation::before {\n content: \"\\f06a\";\n}\n\n.fa-exclamation-circle::before {\n content: \"\\f06a\";\n}\n\n.fa-school-circle-xmark::before {\n content: \"\\e56d\";\n}\n\n.fa-arrow-right-from-bracket::before {\n content: \"\\f08b\";\n}\n\n.fa-sign-out::before {\n content: \"\\f08b\";\n}\n\n.fa-circle-chevron-down::before {\n content: \"\\f13a\";\n}\n\n.fa-chevron-circle-down::before {\n content: \"\\f13a\";\n}\n\n.fa-unlock-keyhole::before {\n content: \"\\f13e\";\n}\n\n.fa-unlock-alt::before {\n content: \"\\f13e\";\n}\n\n.fa-cloud-showers-heavy::before {\n content: \"\\f740\";\n}\n\n.fa-headphones-simple::before {\n content: \"\\f58f\";\n}\n\n.fa-headphones-alt::before {\n content: \"\\f58f\";\n}\n\n.fa-sitemap::before {\n content: \"\\f0e8\";\n}\n\n.fa-circle-dollar-to-slot::before {\n content: \"\\f4b9\";\n}\n\n.fa-donate::before {\n content: \"\\f4b9\";\n}\n\n.fa-memory::before {\n content: \"\\f538\";\n}\n\n.fa-road-spikes::before {\n content: \"\\e568\";\n}\n\n.fa-fire-burner::before {\n content: \"\\e4f1\";\n}\n\n.fa-flag::before {\n content: \"\\f024\";\n}\n\n.fa-hanukiah::before {\n content: \"\\f6e6\";\n}\n\n.fa-feather::before {\n content: \"\\f52d\";\n}\n\n.fa-volume-low::before {\n content: \"\\f027\";\n}\n\n.fa-volume-down::before {\n content: \"\\f027\";\n}\n\n.fa-comment-slash::before {\n content: \"\\f4b3\";\n}\n\n.fa-cloud-sun-rain::before {\n content: \"\\f743\";\n}\n\n.fa-compress::before {\n content: \"\\f066\";\n}\n\n.fa-wheat-awn::before {\n content: \"\\e2cd\";\n}\n\n.fa-wheat-alt::before {\n content: \"\\e2cd\";\n}\n\n.fa-ankh::before {\n content: \"\\f644\";\n}\n\n.fa-hands-holding-child::before {\n content: \"\\e4fa\";\n}\n\n.fa-asterisk::before {\n content: \"*\";\n}\n\n.fa-square-check::before {\n content: \"\\f14a\";\n}\n\n.fa-check-square::before {\n content: \"\\f14a\";\n}\n\n.fa-peseta-sign::before {\n content: \"\\e221\";\n}\n\n.fa-heading::before {\n content: \"\\f1dc\";\n}\n\n.fa-header::before {\n content: \"\\f1dc\";\n}\n\n.fa-ghost::before {\n content: \"\\f6e2\";\n}\n\n.fa-list::before {\n content: \"\\f03a\";\n}\n\n.fa-list-squares::before {\n content: \"\\f03a\";\n}\n\n.fa-square-phone-flip::before {\n content: \"\\f87b\";\n}\n\n.fa-phone-square-alt::before {\n content: \"\\f87b\";\n}\n\n.fa-cart-plus::before {\n content: \"\\f217\";\n}\n\n.fa-gamepad::before {\n content: \"\\f11b\";\n}\n\n.fa-circle-dot::before {\n content: \"\\f192\";\n}\n\n.fa-dot-circle::before {\n content: \"\\f192\";\n}\n\n.fa-face-dizzy::before {\n content: \"\\f567\";\n}\n\n.fa-dizzy::before {\n content: \"\\f567\";\n}\n\n.fa-egg::before {\n content: \"\\f7fb\";\n}\n\n.fa-house-medical-circle-xmark::before {\n content: \"\\e513\";\n}\n\n.fa-campground::before {\n content: \"\\f6bb\";\n}\n\n.fa-folder-plus::before {\n content: \"\\f65e\";\n}\n\n.fa-futbol::before {\n content: \"\\f1e3\";\n}\n\n.fa-futbol-ball::before {\n content: \"\\f1e3\";\n}\n\n.fa-soccer-ball::before {\n content: \"\\f1e3\";\n}\n\n.fa-paintbrush::before {\n content: \"\\f1fc\";\n}\n\n.fa-paint-brush::before {\n content: \"\\f1fc\";\n}\n\n.fa-lock::before {\n content: \"\\f023\";\n}\n\n.fa-gas-pump::before {\n content: \"\\f52f\";\n}\n\n.fa-hot-tub-person::before {\n content: \"\\f593\";\n}\n\n.fa-hot-tub::before {\n content: \"\\f593\";\n}\n\n.fa-map-location::before {\n content: \"\\f59f\";\n}\n\n.fa-map-marked::before {\n content: \"\\f59f\";\n}\n\n.fa-house-flood-water::before {\n content: \"\\e50e\";\n}\n\n.fa-tree::before {\n content: \"\\f1bb\";\n}\n\n.fa-bridge-lock::before {\n content: \"\\e4cc\";\n}\n\n.fa-sack-dollar::before {\n content: \"\\f81d\";\n}\n\n.fa-pen-to-square::before {\n content: \"\\f044\";\n}\n\n.fa-edit::before {\n content: \"\\f044\";\n}\n\n.fa-car-side::before {\n content: \"\\f5e4\";\n}\n\n.fa-share-nodes::before {\n content: \"\\f1e0\";\n}\n\n.fa-share-alt::before {\n content: \"\\f1e0\";\n}\n\n.fa-heart-circle-minus::before {\n content: \"\\e4ff\";\n}\n\n.fa-hourglass-half::before {\n content: \"\\f252\";\n}\n\n.fa-hourglass-2::before {\n content: \"\\f252\";\n}\n\n.fa-microscope::before {\n content: \"\\f610\";\n}\n\n.fa-sink::before {\n content: \"\\e06d\";\n}\n\n.fa-bag-shopping::before {\n content: \"\\f290\";\n}\n\n.fa-shopping-bag::before {\n content: \"\\f290\";\n}\n\n.fa-arrow-down-z-a::before {\n content: \"\\f881\";\n}\n\n.fa-sort-alpha-desc::before {\n content: \"\\f881\";\n}\n\n.fa-sort-alpha-down-alt::before {\n content: \"\\f881\";\n}\n\n.fa-mitten::before {\n content: \"\\f7b5\";\n}\n\n.fa-person-rays::before {\n content: \"\\e54d\";\n}\n\n.fa-users::before {\n content: \"\\f0c0\";\n}\n\n.fa-eye-slash::before {\n content: \"\\f070\";\n}\n\n.fa-flask-vial::before {\n content: \"\\e4f3\";\n}\n\n.fa-hand::before {\n content: \"\\f256\";\n}\n\n.fa-hand-paper::before {\n content: \"\\f256\";\n}\n\n.fa-om::before {\n content: \"\\f679\";\n}\n\n.fa-worm::before {\n content: \"\\e599\";\n}\n\n.fa-house-circle-xmark::before {\n content: \"\\e50b\";\n}\n\n.fa-plug::before {\n content: \"\\f1e6\";\n}\n\n.fa-chevron-up::before {\n content: \"\\f077\";\n}\n\n.fa-hand-spock::before {\n content: \"\\f259\";\n}\n\n.fa-stopwatch::before {\n content: \"\\f2f2\";\n}\n\n.fa-face-kiss::before {\n content: \"\\f596\";\n}\n\n.fa-kiss::before {\n content: \"\\f596\";\n}\n\n.fa-bridge-circle-xmark::before {\n content: \"\\e4cb\";\n}\n\n.fa-face-grin-tongue::before {\n content: \"\\f589\";\n}\n\n.fa-grin-tongue::before {\n content: \"\\f589\";\n}\n\n.fa-chess-bishop::before {\n content: \"\\f43a\";\n}\n\n.fa-face-grin-wink::before {\n content: \"\\f58c\";\n}\n\n.fa-grin-wink::before {\n content: \"\\f58c\";\n}\n\n.fa-ear-deaf::before {\n content: \"\\f2a4\";\n}\n\n.fa-deaf::before {\n content: \"\\f2a4\";\n}\n\n.fa-deafness::before {\n content: \"\\f2a4\";\n}\n\n.fa-hard-of-hearing::before {\n content: \"\\f2a4\";\n}\n\n.fa-road-circle-check::before {\n content: \"\\e564\";\n}\n\n.fa-dice-five::before {\n content: \"\\f523\";\n}\n\n.fa-square-rss::before {\n content: \"\\f143\";\n}\n\n.fa-rss-square::before {\n content: \"\\f143\";\n}\n\n.fa-land-mine-on::before {\n content: \"\\e51b\";\n}\n\n.fa-i-cursor::before {\n content: \"\\f246\";\n}\n\n.fa-stamp::before {\n content: \"\\f5bf\";\n}\n\n.fa-stairs::before {\n content: \"\\e289\";\n}\n\n.fa-i::before {\n content: \"I\";\n}\n\n.fa-hryvnia-sign::before {\n content: \"\\f6f2\";\n}\n\n.fa-hryvnia::before {\n content: \"\\f6f2\";\n}\n\n.fa-pills::before {\n content: \"\\f484\";\n}\n\n.fa-face-grin-wide::before {\n content: \"\\f581\";\n}\n\n.fa-grin-alt::before {\n content: \"\\f581\";\n}\n\n.fa-tooth::before {\n content: \"\\f5c9\";\n}\n\n.fa-v::before {\n content: \"V\";\n}\n\n.fa-bangladeshi-taka-sign::before {\n content: \"\\e2e6\";\n}\n\n.fa-bicycle::before {\n content: \"\\f206\";\n}\n\n.fa-staff-snake::before {\n content: \"\\e579\";\n}\n\n.fa-rod-asclepius::before {\n content: \"\\e579\";\n}\n\n.fa-rod-snake::before {\n content: \"\\e579\";\n}\n\n.fa-staff-aesculapius::before {\n content: \"\\e579\";\n}\n\n.fa-head-side-cough-slash::before {\n content: \"\\e062\";\n}\n\n.fa-truck-medical::before {\n content: \"\\f0f9\";\n}\n\n.fa-ambulance::before {\n content: \"\\f0f9\";\n}\n\n.fa-wheat-awn-circle-exclamation::before {\n content: \"\\e598\";\n}\n\n.fa-snowman::before {\n content: \"\\f7d0\";\n}\n\n.fa-mortar-pestle::before {\n content: \"\\f5a7\";\n}\n\n.fa-road-barrier::before {\n content: \"\\e562\";\n}\n\n.fa-school::before {\n content: \"\\f549\";\n}\n\n.fa-igloo::before {\n content: \"\\f7ae\";\n}\n\n.fa-joint::before {\n content: \"\\f595\";\n}\n\n.fa-angle-right::before {\n content: \"\\f105\";\n}\n\n.fa-horse::before {\n content: \"\\f6f0\";\n}\n\n.fa-q::before {\n content: \"Q\";\n}\n\n.fa-g::before {\n content: \"G\";\n}\n\n.fa-notes-medical::before {\n content: \"\\f481\";\n}\n\n.fa-temperature-half::before {\n content: \"\\f2c9\";\n}\n\n.fa-temperature-2::before {\n content: \"\\f2c9\";\n}\n\n.fa-thermometer-2::before {\n content: \"\\f2c9\";\n}\n\n.fa-thermometer-half::before {\n content: \"\\f2c9\";\n}\n\n.fa-dong-sign::before {\n content: \"\\e169\";\n}\n\n.fa-capsules::before {\n content: \"\\f46b\";\n}\n\n.fa-poo-storm::before {\n content: \"\\f75a\";\n}\n\n.fa-poo-bolt::before {\n content: \"\\f75a\";\n}\n\n.fa-face-frown-open::before {\n content: \"\\f57a\";\n}\n\n.fa-frown-open::before {\n content: \"\\f57a\";\n}\n\n.fa-hand-point-up::before {\n content: \"\\f0a6\";\n}\n\n.fa-money-bill::before {\n content: \"\\f0d6\";\n}\n\n.fa-bookmark::before {\n content: \"\\f02e\";\n}\n\n.fa-align-justify::before {\n content: \"\\f039\";\n}\n\n.fa-umbrella-beach::before {\n content: \"\\f5ca\";\n}\n\n.fa-helmet-un::before {\n content: \"\\e503\";\n}\n\n.fa-bullseye::before {\n content: \"\\f140\";\n}\n\n.fa-bacon::before {\n content: \"\\f7e5\";\n}\n\n.fa-hand-point-down::before {\n content: \"\\f0a7\";\n}\n\n.fa-arrow-up-from-bracket::before {\n content: \"\\e09a\";\n}\n\n.fa-folder::before {\n content: \"\\f07b\";\n}\n\n.fa-folder-blank::before {\n content: \"\\f07b\";\n}\n\n.fa-file-waveform::before {\n content: \"\\f478\";\n}\n\n.fa-file-medical-alt::before {\n content: \"\\f478\";\n}\n\n.fa-radiation::before {\n content: \"\\f7b9\";\n}\n\n.fa-chart-simple::before {\n content: \"\\e473\";\n}\n\n.fa-mars-stroke::before {\n content: \"\\f229\";\n}\n\n.fa-vial::before {\n content: \"\\f492\";\n}\n\n.fa-gauge::before {\n content: \"\\f624\";\n}\n\n.fa-dashboard::before {\n content: \"\\f624\";\n}\n\n.fa-gauge-med::before {\n content: \"\\f624\";\n}\n\n.fa-tachometer-alt-average::before {\n content: \"\\f624\";\n}\n\n.fa-wand-magic-sparkles::before {\n content: \"\\e2ca\";\n}\n\n.fa-magic-wand-sparkles::before {\n content: \"\\e2ca\";\n}\n\n.fa-e::before {\n content: \"E\";\n}\n\n.fa-pen-clip::before {\n content: \"\\f305\";\n}\n\n.fa-pen-alt::before {\n content: \"\\f305\";\n}\n\n.fa-bridge-circle-exclamation::before {\n content: \"\\e4ca\";\n}\n\n.fa-user::before {\n content: \"\\f007\";\n}\n\n.fa-school-circle-check::before {\n content: \"\\e56b\";\n}\n\n.fa-dumpster::before {\n content: \"\\f793\";\n}\n\n.fa-van-shuttle::before {\n content: \"\\f5b6\";\n}\n\n.fa-shuttle-van::before {\n content: \"\\f5b6\";\n}\n\n.fa-building-user::before {\n content: \"\\e4da\";\n}\n\n.fa-square-caret-left::before {\n content: \"\\f191\";\n}\n\n.fa-caret-square-left::before {\n content: \"\\f191\";\n}\n\n.fa-highlighter::before {\n content: \"\\f591\";\n}\n\n.fa-key::before {\n content: \"\\f084\";\n}\n\n.fa-bullhorn::before {\n content: \"\\f0a1\";\n}\n\n.fa-globe::before {\n content: \"\\f0ac\";\n}\n\n.fa-synagogue::before {\n content: \"\\f69b\";\n}\n\n.fa-person-half-dress::before {\n content: \"\\e548\";\n}\n\n.fa-road-bridge::before {\n content: \"\\e563\";\n}\n\n.fa-location-arrow::before {\n content: \"\\f124\";\n}\n\n.fa-c::before {\n content: \"C\";\n}\n\n.fa-tablet-button::before {\n content: \"\\f10a\";\n}\n\n.fa-building-lock::before {\n content: \"\\e4d6\";\n}\n\n.fa-pizza-slice::before {\n content: \"\\f818\";\n}\n\n.fa-money-bill-wave::before {\n content: \"\\f53a\";\n}\n\n.fa-chart-area::before {\n content: \"\\f1fe\";\n}\n\n.fa-area-chart::before {\n content: \"\\f1fe\";\n}\n\n.fa-house-flag::before {\n content: \"\\e50d\";\n}\n\n.fa-person-circle-minus::before {\n content: \"\\e540\";\n}\n\n.fa-ban::before {\n content: \"\\f05e\";\n}\n\n.fa-cancel::before {\n content: \"\\f05e\";\n}\n\n.fa-camera-rotate::before {\n content: \"\\e0d8\";\n}\n\n.fa-spray-can-sparkles::before {\n content: \"\\f5d0\";\n}\n\n.fa-air-freshener::before {\n content: \"\\f5d0\";\n}\n\n.fa-star::before {\n content: \"\\f005\";\n}\n\n.fa-repeat::before {\n content: \"\\f363\";\n}\n\n.fa-cross::before {\n content: \"\\f654\";\n}\n\n.fa-box::before {\n content: \"\\f466\";\n}\n\n.fa-venus-mars::before {\n content: \"\\f228\";\n}\n\n.fa-arrow-pointer::before {\n content: \"\\f245\";\n}\n\n.fa-mouse-pointer::before {\n content: \"\\f245\";\n}\n\n.fa-maximize::before {\n content: \"\\f31e\";\n}\n\n.fa-expand-arrows-alt::before {\n content: \"\\f31e\";\n}\n\n.fa-charging-station::before {\n content: \"\\f5e7\";\n}\n\n.fa-shapes::before {\n content: \"\\f61f\";\n}\n\n.fa-triangle-circle-square::before {\n content: \"\\f61f\";\n}\n\n.fa-shuffle::before {\n content: \"\\f074\";\n}\n\n.fa-random::before {\n content: \"\\f074\";\n}\n\n.fa-person-running::before {\n content: \"\\f70c\";\n}\n\n.fa-running::before {\n content: \"\\f70c\";\n}\n\n.fa-mobile-retro::before {\n content: \"\\e527\";\n}\n\n.fa-grip-lines-vertical::before {\n content: \"\\f7a5\";\n}\n\n.fa-spider::before {\n content: \"\\f717\";\n}\n\n.fa-hands-bound::before {\n content: \"\\e4f9\";\n}\n\n.fa-file-invoice-dollar::before {\n content: \"\\f571\";\n}\n\n.fa-plane-circle-exclamation::before {\n content: \"\\e556\";\n}\n\n.fa-x-ray::before {\n content: \"\\f497\";\n}\n\n.fa-spell-check::before {\n content: \"\\f891\";\n}\n\n.fa-slash::before {\n content: \"\\f715\";\n}\n\n.fa-computer-mouse::before {\n content: \"\\f8cc\";\n}\n\n.fa-mouse::before {\n content: \"\\f8cc\";\n}\n\n.fa-arrow-right-to-bracket::before {\n content: \"\\f090\";\n}\n\n.fa-sign-in::before {\n content: \"\\f090\";\n}\n\n.fa-shop-slash::before {\n content: \"\\e070\";\n}\n\n.fa-store-alt-slash::before {\n content: \"\\e070\";\n}\n\n.fa-server::before {\n content: \"\\f233\";\n}\n\n.fa-virus-covid-slash::before {\n content: \"\\e4a9\";\n}\n\n.fa-shop-lock::before {\n content: \"\\e4a5\";\n}\n\n.fa-hourglass-start::before {\n content: \"\\f251\";\n}\n\n.fa-hourglass-1::before {\n content: \"\\f251\";\n}\n\n.fa-blender-phone::before {\n content: \"\\f6b6\";\n}\n\n.fa-building-wheat::before {\n content: \"\\e4db\";\n}\n\n.fa-person-breastfeeding::before {\n content: \"\\e53a\";\n}\n\n.fa-right-to-bracket::before {\n content: \"\\f2f6\";\n}\n\n.fa-sign-in-alt::before {\n content: \"\\f2f6\";\n}\n\n.fa-venus::before {\n content: \"\\f221\";\n}\n\n.fa-passport::before {\n content: \"\\f5ab\";\n}\n\n.fa-heart-pulse::before {\n content: \"\\f21e\";\n}\n\n.fa-heartbeat::before {\n content: \"\\f21e\";\n}\n\n.fa-people-carry-box::before {\n content: \"\\f4ce\";\n}\n\n.fa-people-carry::before {\n content: \"\\f4ce\";\n}\n\n.fa-temperature-high::before {\n content: \"\\f769\";\n}\n\n.fa-microchip::before {\n content: \"\\f2db\";\n}\n\n.fa-crown::before {\n content: \"\\f521\";\n}\n\n.fa-weight-hanging::before {\n content: \"\\f5cd\";\n}\n\n.fa-xmarks-lines::before {\n content: \"\\e59a\";\n}\n\n.fa-file-prescription::before {\n content: \"\\f572\";\n}\n\n.fa-weight-scale::before {\n content: \"\\f496\";\n}\n\n.fa-weight::before {\n content: \"\\f496\";\n}\n\n.fa-user-group::before {\n content: \"\\f500\";\n}\n\n.fa-user-friends::before {\n content: \"\\f500\";\n}\n\n.fa-arrow-up-a-z::before {\n content: \"\\f15e\";\n}\n\n.fa-sort-alpha-up::before {\n content: \"\\f15e\";\n}\n\n.fa-chess-knight::before {\n content: \"\\f441\";\n}\n\n.fa-face-laugh-squint::before {\n content: \"\\f59b\";\n}\n\n.fa-laugh-squint::before {\n content: \"\\f59b\";\n}\n\n.fa-wheelchair::before {\n content: \"\\f193\";\n}\n\n.fa-circle-arrow-up::before {\n content: \"\\f0aa\";\n}\n\n.fa-arrow-circle-up::before {\n content: \"\\f0aa\";\n}\n\n.fa-toggle-on::before {\n content: \"\\f205\";\n}\n\n.fa-person-walking::before {\n content: \"\\f554\";\n}\n\n.fa-walking::before {\n content: \"\\f554\";\n}\n\n.fa-l::before {\n content: \"L\";\n}\n\n.fa-fire::before {\n content: \"\\f06d\";\n}\n\n.fa-bed-pulse::before {\n content: \"\\f487\";\n}\n\n.fa-procedures::before {\n content: \"\\f487\";\n}\n\n.fa-shuttle-space::before {\n content: \"\\f197\";\n}\n\n.fa-space-shuttle::before {\n content: \"\\f197\";\n}\n\n.fa-face-laugh::before {\n content: \"\\f599\";\n}\n\n.fa-laugh::before {\n content: \"\\f599\";\n}\n\n.fa-folder-open::before {\n content: \"\\f07c\";\n}\n\n.fa-heart-circle-plus::before {\n content: \"\\e500\";\n}\n\n.fa-code-fork::before {\n content: \"\\e13b\";\n}\n\n.fa-city::before {\n content: \"\\f64f\";\n}\n\n.fa-microphone-lines::before {\n content: \"\\f3c9\";\n}\n\n.fa-microphone-alt::before {\n content: \"\\f3c9\";\n}\n\n.fa-pepper-hot::before {\n content: \"\\f816\";\n}\n\n.fa-unlock::before {\n content: \"\\f09c\";\n}\n\n.fa-colon-sign::before {\n content: \"\\e140\";\n}\n\n.fa-headset::before {\n content: \"\\f590\";\n}\n\n.fa-store-slash::before {\n content: \"\\e071\";\n}\n\n.fa-road-circle-xmark::before {\n content: \"\\e566\";\n}\n\n.fa-user-minus::before {\n content: \"\\f503\";\n}\n\n.fa-mars-stroke-up::before {\n content: \"\\f22a\";\n}\n\n.fa-mars-stroke-v::before {\n content: \"\\f22a\";\n}\n\n.fa-champagne-glasses::before {\n content: \"\\f79f\";\n}\n\n.fa-glass-cheers::before {\n content: \"\\f79f\";\n}\n\n.fa-clipboard::before {\n content: \"\\f328\";\n}\n\n.fa-house-circle-exclamation::before {\n content: \"\\e50a\";\n}\n\n.fa-file-arrow-up::before {\n content: \"\\f574\";\n}\n\n.fa-file-upload::before {\n content: \"\\f574\";\n}\n\n.fa-wifi::before {\n content: \"\\f1eb\";\n}\n\n.fa-wifi-3::before {\n content: \"\\f1eb\";\n}\n\n.fa-wifi-strong::before {\n content: \"\\f1eb\";\n}\n\n.fa-bath::before {\n content: \"\\f2cd\";\n}\n\n.fa-bathtub::before {\n content: \"\\f2cd\";\n}\n\n.fa-underline::before {\n content: \"\\f0cd\";\n}\n\n.fa-user-pen::before {\n content: \"\\f4ff\";\n}\n\n.fa-user-edit::before {\n content: \"\\f4ff\";\n}\n\n.fa-signature::before {\n content: \"\\f5b7\";\n}\n\n.fa-stroopwafel::before {\n content: \"\\f551\";\n}\n\n.fa-bold::before {\n content: \"\\f032\";\n}\n\n.fa-anchor-lock::before {\n content: \"\\e4ad\";\n}\n\n.fa-building-ngo::before {\n content: \"\\e4d7\";\n}\n\n.fa-manat-sign::before {\n content: \"\\e1d5\";\n}\n\n.fa-not-equal::before {\n content: \"\\f53e\";\n}\n\n.fa-border-top-left::before {\n content: \"\\f853\";\n}\n\n.fa-border-style::before {\n content: \"\\f853\";\n}\n\n.fa-map-location-dot::before {\n content: \"\\f5a0\";\n}\n\n.fa-map-marked-alt::before {\n content: \"\\f5a0\";\n}\n\n.fa-jedi::before {\n content: \"\\f669\";\n}\n\n.fa-square-poll-vertical::before {\n content: \"\\f681\";\n}\n\n.fa-poll::before {\n content: \"\\f681\";\n}\n\n.fa-mug-hot::before {\n content: \"\\f7b6\";\n}\n\n.fa-car-battery::before {\n content: \"\\f5df\";\n}\n\n.fa-battery-car::before {\n content: \"\\f5df\";\n}\n\n.fa-gift::before {\n content: \"\\f06b\";\n}\n\n.fa-dice-two::before {\n content: \"\\f528\";\n}\n\n.fa-chess-queen::before {\n content: \"\\f445\";\n}\n\n.fa-glasses::before {\n content: \"\\f530\";\n}\n\n.fa-chess-board::before {\n content: \"\\f43c\";\n}\n\n.fa-building-circle-check::before {\n content: \"\\e4d2\";\n}\n\n.fa-person-chalkboard::before {\n content: \"\\e53d\";\n}\n\n.fa-mars-stroke-right::before {\n content: \"\\f22b\";\n}\n\n.fa-mars-stroke-h::before {\n content: \"\\f22b\";\n}\n\n.fa-hand-back-fist::before {\n content: \"\\f255\";\n}\n\n.fa-hand-rock::before {\n content: \"\\f255\";\n}\n\n.fa-square-caret-up::before {\n content: \"\\f151\";\n}\n\n.fa-caret-square-up::before {\n content: \"\\f151\";\n}\n\n.fa-cloud-showers-water::before {\n content: \"\\e4e4\";\n}\n\n.fa-chart-bar::before {\n content: \"\\f080\";\n}\n\n.fa-bar-chart::before {\n content: \"\\f080\";\n}\n\n.fa-hands-bubbles::before {\n content: \"\\e05e\";\n}\n\n.fa-hands-wash::before {\n content: \"\\e05e\";\n}\n\n.fa-less-than-equal::before {\n content: \"\\f537\";\n}\n\n.fa-train::before {\n content: \"\\f238\";\n}\n\n.fa-eye-low-vision::before {\n content: \"\\f2a8\";\n}\n\n.fa-low-vision::before {\n content: \"\\f2a8\";\n}\n\n.fa-crow::before {\n content: \"\\f520\";\n}\n\n.fa-sailboat::before {\n content: \"\\e445\";\n}\n\n.fa-window-restore::before {\n content: \"\\f2d2\";\n}\n\n.fa-square-plus::before {\n content: \"\\f0fe\";\n}\n\n.fa-plus-square::before {\n content: \"\\f0fe\";\n}\n\n.fa-torii-gate::before {\n content: \"\\f6a1\";\n}\n\n.fa-frog::before {\n content: \"\\f52e\";\n}\n\n.fa-bucket::before {\n content: \"\\e4cf\";\n}\n\n.fa-image::before {\n content: \"\\f03e\";\n}\n\n.fa-microphone::before {\n content: \"\\f130\";\n}\n\n.fa-cow::before {\n content: \"\\f6c8\";\n}\n\n.fa-caret-up::before {\n content: \"\\f0d8\";\n}\n\n.fa-screwdriver::before {\n content: \"\\f54a\";\n}\n\n.fa-folder-closed::before {\n content: \"\\e185\";\n}\n\n.fa-house-tsunami::before {\n content: \"\\e515\";\n}\n\n.fa-square-nfi::before {\n content: \"\\e576\";\n}\n\n.fa-arrow-up-from-ground-water::before {\n content: \"\\e4b5\";\n}\n\n.fa-martini-glass::before {\n content: \"\\f57b\";\n}\n\n.fa-glass-martini-alt::before {\n content: \"\\f57b\";\n}\n\n.fa-rotate-left::before {\n content: \"\\f2ea\";\n}\n\n.fa-rotate-back::before {\n content: \"\\f2ea\";\n}\n\n.fa-rotate-backward::before {\n content: \"\\f2ea\";\n}\n\n.fa-undo-alt::before {\n content: \"\\f2ea\";\n}\n\n.fa-table-columns::before {\n content: \"\\f0db\";\n}\n\n.fa-columns::before {\n content: \"\\f0db\";\n}\n\n.fa-lemon::before {\n content: \"\\f094\";\n}\n\n.fa-head-side-mask::before {\n content: \"\\e063\";\n}\n\n.fa-handshake::before {\n content: \"\\f2b5\";\n}\n\n.fa-gem::before {\n content: \"\\f3a5\";\n}\n\n.fa-dolly::before {\n content: \"\\f472\";\n}\n\n.fa-dolly-box::before {\n content: \"\\f472\";\n}\n\n.fa-smoking::before {\n content: \"\\f48d\";\n}\n\n.fa-minimize::before {\n content: \"\\f78c\";\n}\n\n.fa-compress-arrows-alt::before {\n content: \"\\f78c\";\n}\n\n.fa-monument::before {\n content: \"\\f5a6\";\n}\n\n.fa-snowplow::before {\n content: \"\\f7d2\";\n}\n\n.fa-angles-right::before {\n content: \"\\f101\";\n}\n\n.fa-angle-double-right::before {\n content: \"\\f101\";\n}\n\n.fa-cannabis::before {\n content: \"\\f55f\";\n}\n\n.fa-circle-play::before {\n content: \"\\f144\";\n}\n\n.fa-play-circle::before {\n content: \"\\f144\";\n}\n\n.fa-tablets::before {\n content: \"\\f490\";\n}\n\n.fa-ethernet::before {\n content: \"\\f796\";\n}\n\n.fa-euro-sign::before {\n content: \"\\f153\";\n}\n\n.fa-eur::before {\n content: \"\\f153\";\n}\n\n.fa-euro::before {\n content: \"\\f153\";\n}\n\n.fa-chair::before {\n content: \"\\f6c0\";\n}\n\n.fa-circle-check::before {\n content: \"\\f058\";\n}\n\n.fa-check-circle::before {\n content: \"\\f058\";\n}\n\n.fa-circle-stop::before {\n content: \"\\f28d\";\n}\n\n.fa-stop-circle::before {\n content: \"\\f28d\";\n}\n\n.fa-compass-drafting::before {\n content: \"\\f568\";\n}\n\n.fa-drafting-compass::before {\n content: \"\\f568\";\n}\n\n.fa-plate-wheat::before {\n content: \"\\e55a\";\n}\n\n.fa-icicles::before {\n content: \"\\f7ad\";\n}\n\n.fa-person-shelter::before {\n content: \"\\e54f\";\n}\n\n.fa-neuter::before {\n content: \"\\f22c\";\n}\n\n.fa-id-badge::before {\n content: \"\\f2c1\";\n}\n\n.fa-marker::before {\n content: \"\\f5a1\";\n}\n\n.fa-face-laugh-beam::before {\n content: \"\\f59a\";\n}\n\n.fa-laugh-beam::before {\n content: \"\\f59a\";\n}\n\n.fa-helicopter-symbol::before {\n content: \"\\e502\";\n}\n\n.fa-universal-access::before {\n content: \"\\f29a\";\n}\n\n.fa-circle-chevron-up::before {\n content: \"\\f139\";\n}\n\n.fa-chevron-circle-up::before {\n content: \"\\f139\";\n}\n\n.fa-lari-sign::before {\n content: \"\\e1c8\";\n}\n\n.fa-volcano::before {\n content: \"\\f770\";\n}\n\n.fa-person-walking-dashed-line-arrow-right::before {\n content: \"\\e553\";\n}\n\n.fa-sterling-sign::before {\n content: \"\\f154\";\n}\n\n.fa-gbp::before {\n content: \"\\f154\";\n}\n\n.fa-pound-sign::before {\n content: \"\\f154\";\n}\n\n.fa-viruses::before {\n content: \"\\e076\";\n}\n\n.fa-square-person-confined::before {\n content: \"\\e577\";\n}\n\n.fa-user-tie::before {\n content: \"\\f508\";\n}\n\n.fa-arrow-down-long::before {\n content: \"\\f175\";\n}\n\n.fa-long-arrow-down::before {\n content: \"\\f175\";\n}\n\n.fa-tent-arrow-down-to-line::before {\n content: \"\\e57e\";\n}\n\n.fa-certificate::before {\n content: \"\\f0a3\";\n}\n\n.fa-reply-all::before {\n content: \"\\f122\";\n}\n\n.fa-mail-reply-all::before {\n content: \"\\f122\";\n}\n\n.fa-suitcase::before {\n content: \"\\f0f2\";\n}\n\n.fa-person-skating::before {\n content: \"\\f7c5\";\n}\n\n.fa-skating::before {\n content: \"\\f7c5\";\n}\n\n.fa-filter-circle-dollar::before {\n content: \"\\f662\";\n}\n\n.fa-funnel-dollar::before {\n content: \"\\f662\";\n}\n\n.fa-camera-retro::before {\n content: \"\\f083\";\n}\n\n.fa-circle-arrow-down::before {\n content: \"\\f0ab\";\n}\n\n.fa-arrow-circle-down::before {\n content: \"\\f0ab\";\n}\n\n.fa-file-import::before {\n content: \"\\f56f\";\n}\n\n.fa-arrow-right-to-file::before {\n content: \"\\f56f\";\n}\n\n.fa-square-arrow-up-right::before {\n content: \"\\f14c\";\n}\n\n.fa-external-link-square::before {\n content: \"\\f14c\";\n}\n\n.fa-box-open::before {\n content: \"\\f49e\";\n}\n\n.fa-scroll::before {\n content: \"\\f70e\";\n}\n\n.fa-spa::before {\n content: \"\\f5bb\";\n}\n\n.fa-location-pin-lock::before {\n content: \"\\e51f\";\n}\n\n.fa-pause::before {\n content: \"\\f04c\";\n}\n\n.fa-hill-avalanche::before {\n content: \"\\e507\";\n}\n\n.fa-temperature-empty::before {\n content: \"\\f2cb\";\n}\n\n.fa-temperature-0::before {\n content: \"\\f2cb\";\n}\n\n.fa-thermometer-0::before {\n content: \"\\f2cb\";\n}\n\n.fa-thermometer-empty::before {\n content: \"\\f2cb\";\n}\n\n.fa-bomb::before {\n content: \"\\f1e2\";\n}\n\n.fa-registered::before {\n content: \"\\f25d\";\n}\n\n.fa-address-card::before {\n content: \"\\f2bb\";\n}\n\n.fa-contact-card::before {\n content: \"\\f2bb\";\n}\n\n.fa-vcard::before {\n content: \"\\f2bb\";\n}\n\n.fa-scale-unbalanced-flip::before {\n content: \"\\f516\";\n}\n\n.fa-balance-scale-right::before {\n content: \"\\f516\";\n}\n\n.fa-subscript::before {\n content: \"\\f12c\";\n}\n\n.fa-diamond-turn-right::before {\n content: \"\\f5eb\";\n}\n\n.fa-directions::before {\n content: \"\\f5eb\";\n}\n\n.fa-burst::before {\n content: \"\\e4dc\";\n}\n\n.fa-house-laptop::before {\n content: \"\\e066\";\n}\n\n.fa-laptop-house::before {\n content: \"\\e066\";\n}\n\n.fa-face-tired::before {\n content: \"\\f5c8\";\n}\n\n.fa-tired::before {\n content: \"\\f5c8\";\n}\n\n.fa-money-bills::before {\n content: \"\\e1f3\";\n}\n\n.fa-smog::before {\n content: \"\\f75f\";\n}\n\n.fa-crutch::before {\n content: \"\\f7f7\";\n}\n\n.fa-cloud-arrow-up::before {\n content: \"\\f0ee\";\n}\n\n.fa-cloud-upload::before {\n content: \"\\f0ee\";\n}\n\n.fa-cloud-upload-alt::before {\n content: \"\\f0ee\";\n}\n\n.fa-palette::before {\n content: \"\\f53f\";\n}\n\n.fa-arrows-turn-right::before {\n content: \"\\e4c0\";\n}\n\n.fa-vest::before {\n content: \"\\e085\";\n}\n\n.fa-ferry::before {\n content: \"\\e4ea\";\n}\n\n.fa-arrows-down-to-people::before {\n content: \"\\e4b9\";\n}\n\n.fa-seedling::before {\n content: \"\\f4d8\";\n}\n\n.fa-sprout::before {\n content: \"\\f4d8\";\n}\n\n.fa-left-right::before {\n content: \"\\f337\";\n}\n\n.fa-arrows-alt-h::before {\n content: \"\\f337\";\n}\n\n.fa-boxes-packing::before {\n content: \"\\e4c7\";\n}\n\n.fa-circle-arrow-left::before {\n content: \"\\f0a8\";\n}\n\n.fa-arrow-circle-left::before {\n content: \"\\f0a8\";\n}\n\n.fa-group-arrows-rotate::before {\n content: \"\\e4f6\";\n}\n\n.fa-bowl-food::before {\n content: \"\\e4c6\";\n}\n\n.fa-candy-cane::before {\n content: \"\\f786\";\n}\n\n.fa-arrow-down-wide-short::before {\n content: \"\\f160\";\n}\n\n.fa-sort-amount-asc::before {\n content: \"\\f160\";\n}\n\n.fa-sort-amount-down::before {\n content: \"\\f160\";\n}\n\n.fa-cloud-bolt::before {\n content: \"\\f76c\";\n}\n\n.fa-thunderstorm::before {\n content: \"\\f76c\";\n}\n\n.fa-text-slash::before {\n content: \"\\f87d\";\n}\n\n.fa-remove-format::before {\n content: \"\\f87d\";\n}\n\n.fa-face-smile-wink::before {\n content: \"\\f4da\";\n}\n\n.fa-smile-wink::before {\n content: \"\\f4da\";\n}\n\n.fa-file-word::before {\n content: \"\\f1c2\";\n}\n\n.fa-file-powerpoint::before {\n content: \"\\f1c4\";\n}\n\n.fa-arrows-left-right::before {\n content: \"\\f07e\";\n}\n\n.fa-arrows-h::before {\n content: \"\\f07e\";\n}\n\n.fa-house-lock::before {\n content: \"\\e510\";\n}\n\n.fa-cloud-arrow-down::before {\n content: \"\\f0ed\";\n}\n\n.fa-cloud-download::before {\n content: \"\\f0ed\";\n}\n\n.fa-cloud-download-alt::before {\n content: \"\\f0ed\";\n}\n\n.fa-children::before {\n content: \"\\e4e1\";\n}\n\n.fa-chalkboard::before {\n content: \"\\f51b\";\n}\n\n.fa-blackboard::before {\n content: \"\\f51b\";\n}\n\n.fa-user-large-slash::before {\n content: \"\\f4fa\";\n}\n\n.fa-user-alt-slash::before {\n content: \"\\f4fa\";\n}\n\n.fa-envelope-open::before {\n content: \"\\f2b6\";\n}\n\n.fa-handshake-simple-slash::before {\n content: \"\\e05f\";\n}\n\n.fa-handshake-alt-slash::before {\n content: \"\\e05f\";\n}\n\n.fa-mattress-pillow::before {\n content: \"\\e525\";\n}\n\n.fa-guarani-sign::before {\n content: \"\\e19a\";\n}\n\n.fa-arrows-rotate::before {\n content: \"\\f021\";\n}\n\n.fa-refresh::before {\n content: \"\\f021\";\n}\n\n.fa-sync::before {\n content: \"\\f021\";\n}\n\n.fa-fire-extinguisher::before {\n content: \"\\f134\";\n}\n\n.fa-cruzeiro-sign::before {\n content: \"\\e152\";\n}\n\n.fa-greater-than-equal::before {\n content: \"\\f532\";\n}\n\n.fa-shield-halved::before {\n content: \"\\f3ed\";\n}\n\n.fa-shield-alt::before {\n content: \"\\f3ed\";\n}\n\n.fa-book-atlas::before {\n content: \"\\f558\";\n}\n\n.fa-atlas::before {\n content: \"\\f558\";\n}\n\n.fa-virus::before {\n content: \"\\e074\";\n}\n\n.fa-envelope-circle-check::before {\n content: \"\\e4e8\";\n}\n\n.fa-layer-group::before {\n content: \"\\f5fd\";\n}\n\n.fa-arrows-to-dot::before {\n content: \"\\e4be\";\n}\n\n.fa-archway::before {\n content: \"\\f557\";\n}\n\n.fa-heart-circle-check::before {\n content: \"\\e4fd\";\n}\n\n.fa-house-chimney-crack::before {\n content: \"\\f6f1\";\n}\n\n.fa-house-damage::before {\n content: \"\\f6f1\";\n}\n\n.fa-file-zipper::before {\n content: \"\\f1c6\";\n}\n\n.fa-file-archive::before {\n content: \"\\f1c6\";\n}\n\n.fa-square::before {\n content: \"\\f0c8\";\n}\n\n.fa-martini-glass-empty::before {\n content: \"\\f000\";\n}\n\n.fa-glass-martini::before {\n content: \"\\f000\";\n}\n\n.fa-couch::before {\n content: \"\\f4b8\";\n}\n\n.fa-cedi-sign::before {\n content: \"\\e0df\";\n}\n\n.fa-italic::before {\n content: \"\\f033\";\n}\n\n.fa-church::before {\n content: \"\\f51d\";\n}\n\n.fa-comments-dollar::before {\n content: \"\\f653\";\n}\n\n.fa-democrat::before {\n content: \"\\f747\";\n}\n\n.fa-z::before {\n content: \"Z\";\n}\n\n.fa-person-skiing::before {\n content: \"\\f7c9\";\n}\n\n.fa-skiing::before {\n content: \"\\f7c9\";\n}\n\n.fa-road-lock::before {\n content: \"\\e567\";\n}\n\n.fa-a::before {\n content: \"A\";\n}\n\n.fa-temperature-arrow-down::before {\n content: \"\\e03f\";\n}\n\n.fa-temperature-down::before {\n content: \"\\e03f\";\n}\n\n.fa-feather-pointed::before {\n content: \"\\f56b\";\n}\n\n.fa-feather-alt::before {\n content: \"\\f56b\";\n}\n\n.fa-p::before {\n content: \"P\";\n}\n\n.fa-snowflake::before {\n content: \"\\f2dc\";\n}\n\n.fa-newspaper::before {\n content: \"\\f1ea\";\n}\n\n.fa-rectangle-ad::before {\n content: \"\\f641\";\n}\n\n.fa-ad::before {\n content: \"\\f641\";\n}\n\n.fa-circle-arrow-right::before {\n content: \"\\f0a9\";\n}\n\n.fa-arrow-circle-right::before {\n content: \"\\f0a9\";\n}\n\n.fa-filter-circle-xmark::before {\n content: \"\\e17b\";\n}\n\n.fa-locust::before {\n content: \"\\e520\";\n}\n\n.fa-sort::before {\n content: \"\\f0dc\";\n}\n\n.fa-unsorted::before {\n content: \"\\f0dc\";\n}\n\n.fa-list-ol::before {\n content: \"\\f0cb\";\n}\n\n.fa-list-1-2::before {\n content: \"\\f0cb\";\n}\n\n.fa-list-numeric::before {\n content: \"\\f0cb\";\n}\n\n.fa-person-dress-burst::before {\n content: \"\\e544\";\n}\n\n.fa-money-check-dollar::before {\n content: \"\\f53d\";\n}\n\n.fa-money-check-alt::before {\n content: \"\\f53d\";\n}\n\n.fa-vector-square::before {\n content: \"\\f5cb\";\n}\n\n.fa-bread-slice::before {\n content: \"\\f7ec\";\n}\n\n.fa-language::before {\n content: \"\\f1ab\";\n}\n\n.fa-face-kiss-wink-heart::before {\n content: \"\\f598\";\n}\n\n.fa-kiss-wink-heart::before {\n content: \"\\f598\";\n}\n\n.fa-filter::before {\n content: \"\\f0b0\";\n}\n\n.fa-question::before {\n content: \"?\";\n}\n\n.fa-file-signature::before {\n content: \"\\f573\";\n}\n\n.fa-up-down-left-right::before {\n content: \"\\f0b2\";\n}\n\n.fa-arrows-alt::before {\n content: \"\\f0b2\";\n}\n\n.fa-house-chimney-user::before {\n content: \"\\e065\";\n}\n\n.fa-hand-holding-heart::before {\n content: \"\\f4be\";\n}\n\n.fa-puzzle-piece::before {\n content: \"\\f12e\";\n}\n\n.fa-money-check::before {\n content: \"\\f53c\";\n}\n\n.fa-star-half-stroke::before {\n content: \"\\f5c0\";\n}\n\n.fa-star-half-alt::before {\n content: \"\\f5c0\";\n}\n\n.fa-code::before {\n content: \"\\f121\";\n}\n\n.fa-whiskey-glass::before {\n content: \"\\f7a0\";\n}\n\n.fa-glass-whiskey::before {\n content: \"\\f7a0\";\n}\n\n.fa-building-circle-exclamation::before {\n content: \"\\e4d3\";\n}\n\n.fa-magnifying-glass-chart::before {\n content: \"\\e522\";\n}\n\n.fa-arrow-up-right-from-square::before {\n content: \"\\f08e\";\n}\n\n.fa-external-link::before {\n content: \"\\f08e\";\n}\n\n.fa-cubes-stacked::before {\n content: \"\\e4e6\";\n}\n\n.fa-won-sign::before {\n content: \"\\f159\";\n}\n\n.fa-krw::before {\n content: \"\\f159\";\n}\n\n.fa-won::before {\n content: \"\\f159\";\n}\n\n.fa-virus-covid::before {\n content: \"\\e4a8\";\n}\n\n.fa-austral-sign::before {\n content: \"\\e0a9\";\n}\n\n.fa-f::before {\n content: \"F\";\n}\n\n.fa-leaf::before {\n content: \"\\f06c\";\n}\n\n.fa-road::before {\n content: \"\\f018\";\n}\n\n.fa-taxi::before {\n content: \"\\f1ba\";\n}\n\n.fa-cab::before {\n content: \"\\f1ba\";\n}\n\n.fa-person-circle-plus::before {\n content: \"\\e541\";\n}\n\n.fa-chart-pie::before {\n content: \"\\f200\";\n}\n\n.fa-pie-chart::before {\n content: \"\\f200\";\n}\n\n.fa-bolt-lightning::before {\n content: \"\\e0b7\";\n}\n\n.fa-sack-xmark::before {\n content: \"\\e56a\";\n}\n\n.fa-file-excel::before {\n content: \"\\f1c3\";\n}\n\n.fa-file-contract::before {\n content: \"\\f56c\";\n}\n\n.fa-fish-fins::before {\n content: \"\\e4f2\";\n}\n\n.fa-building-flag::before {\n content: \"\\e4d5\";\n}\n\n.fa-face-grin-beam::before {\n content: \"\\f582\";\n}\n\n.fa-grin-beam::before {\n content: \"\\f582\";\n}\n\n.fa-object-ungroup::before {\n content: \"\\f248\";\n}\n\n.fa-poop::before {\n content: \"\\f619\";\n}\n\n.fa-location-pin::before {\n content: \"\\f041\";\n}\n\n.fa-map-marker::before {\n content: \"\\f041\";\n}\n\n.fa-kaaba::before {\n content: \"\\f66b\";\n}\n\n.fa-toilet-paper::before {\n content: \"\\f71e\";\n}\n\n.fa-helmet-safety::before {\n content: \"\\f807\";\n}\n\n.fa-hard-hat::before {\n content: \"\\f807\";\n}\n\n.fa-hat-hard::before {\n content: \"\\f807\";\n}\n\n.fa-eject::before {\n content: \"\\f052\";\n}\n\n.fa-circle-right::before {\n content: \"\\f35a\";\n}\n\n.fa-arrow-alt-circle-right::before {\n content: \"\\f35a\";\n}\n\n.fa-plane-circle-check::before {\n content: \"\\e555\";\n}\n\n.fa-face-rolling-eyes::before {\n content: \"\\f5a5\";\n}\n\n.fa-meh-rolling-eyes::before {\n content: \"\\f5a5\";\n}\n\n.fa-object-group::before {\n content: \"\\f247\";\n}\n\n.fa-chart-line::before {\n content: \"\\f201\";\n}\n\n.fa-line-chart::before {\n content: \"\\f201\";\n}\n\n.fa-mask-ventilator::before {\n content: \"\\e524\";\n}\n\n.fa-arrow-right::before {\n content: \"\\f061\";\n}\n\n.fa-signs-post::before {\n content: \"\\f277\";\n}\n\n.fa-map-signs::before {\n content: \"\\f277\";\n}\n\n.fa-cash-register::before {\n content: \"\\f788\";\n}\n\n.fa-person-circle-question::before {\n content: \"\\e542\";\n}\n\n.fa-h::before {\n content: \"H\";\n}\n\n.fa-tarp::before {\n content: \"\\e57b\";\n}\n\n.fa-screwdriver-wrench::before {\n content: \"\\f7d9\";\n}\n\n.fa-tools::before {\n content: \"\\f7d9\";\n}\n\n.fa-arrows-to-eye::before {\n content: \"\\e4bf\";\n}\n\n.fa-plug-circle-bolt::before {\n content: \"\\e55b\";\n}\n\n.fa-heart::before {\n content: \"\\f004\";\n}\n\n.fa-mars-and-venus::before {\n content: \"\\f224\";\n}\n\n.fa-house-user::before {\n content: \"\\e1b0\";\n}\n\n.fa-home-user::before {\n content: \"\\e1b0\";\n}\n\n.fa-dumpster-fire::before {\n content: \"\\f794\";\n}\n\n.fa-house-crack::before {\n content: \"\\e3b1\";\n}\n\n.fa-martini-glass-citrus::before {\n content: \"\\f561\";\n}\n\n.fa-cocktail::before {\n content: \"\\f561\";\n}\n\n.fa-face-surprise::before {\n content: \"\\f5c2\";\n}\n\n.fa-surprise::before {\n content: \"\\f5c2\";\n}\n\n.fa-bottle-water::before {\n content: \"\\e4c5\";\n}\n\n.fa-circle-pause::before {\n content: \"\\f28b\";\n}\n\n.fa-pause-circle::before {\n content: \"\\f28b\";\n}\n\n.fa-toilet-paper-slash::before {\n content: \"\\e072\";\n}\n\n.fa-apple-whole::before {\n content: \"\\f5d1\";\n}\n\n.fa-apple-alt::before {\n content: \"\\f5d1\";\n}\n\n.fa-kitchen-set::before {\n content: \"\\e51a\";\n}\n\n.fa-r::before {\n content: \"R\";\n}\n\n.fa-temperature-quarter::before {\n content: \"\\f2ca\";\n}\n\n.fa-temperature-1::before {\n content: \"\\f2ca\";\n}\n\n.fa-thermometer-1::before {\n content: \"\\f2ca\";\n}\n\n.fa-thermometer-quarter::before {\n content: \"\\f2ca\";\n}\n\n.fa-cube::before {\n content: \"\\f1b2\";\n}\n\n.fa-bitcoin-sign::before {\n content: \"\\e0b4\";\n}\n\n.fa-shield-dog::before {\n content: \"\\e573\";\n}\n\n.fa-solar-panel::before {\n content: \"\\f5ba\";\n}\n\n.fa-lock-open::before {\n content: \"\\f3c1\";\n}\n\n.fa-elevator::before {\n content: \"\\e16d\";\n}\n\n.fa-money-bill-transfer::before {\n content: \"\\e528\";\n}\n\n.fa-money-bill-trend-up::before {\n content: \"\\e529\";\n}\n\n.fa-house-flood-water-circle-arrow-right::before {\n content: \"\\e50f\";\n}\n\n.fa-square-poll-horizontal::before {\n content: \"\\f682\";\n}\n\n.fa-poll-h::before {\n content: \"\\f682\";\n}\n\n.fa-circle::before {\n content: \"\\f111\";\n}\n\n.fa-backward-fast::before {\n content: \"\\f049\";\n}\n\n.fa-fast-backward::before {\n content: \"\\f049\";\n}\n\n.fa-recycle::before {\n content: \"\\f1b8\";\n}\n\n.fa-user-astronaut::before {\n content: \"\\f4fb\";\n}\n\n.fa-plane-slash::before {\n content: \"\\e069\";\n}\n\n.fa-trademark::before {\n content: \"\\f25c\";\n}\n\n.fa-basketball::before {\n content: \"\\f434\";\n}\n\n.fa-basketball-ball::before {\n content: \"\\f434\";\n}\n\n.fa-satellite-dish::before {\n content: \"\\f7c0\";\n}\n\n.fa-circle-up::before {\n content: \"\\f35b\";\n}\n\n.fa-arrow-alt-circle-up::before {\n content: \"\\f35b\";\n}\n\n.fa-mobile-screen-button::before {\n content: \"\\f3cd\";\n}\n\n.fa-mobile-alt::before {\n content: \"\\f3cd\";\n}\n\n.fa-volume-high::before {\n content: \"\\f028\";\n}\n\n.fa-volume-up::before {\n content: \"\\f028\";\n}\n\n.fa-users-rays::before {\n content: \"\\e593\";\n}\n\n.fa-wallet::before {\n content: \"\\f555\";\n}\n\n.fa-clipboard-check::before {\n content: \"\\f46c\";\n}\n\n.fa-file-audio::before {\n content: \"\\f1c7\";\n}\n\n.fa-burger::before {\n content: \"\\f805\";\n}\n\n.fa-hamburger::before {\n content: \"\\f805\";\n}\n\n.fa-wrench::before {\n content: \"\\f0ad\";\n}\n\n.fa-bugs::before {\n content: \"\\e4d0\";\n}\n\n.fa-rupee-sign::before {\n content: \"\\f156\";\n}\n\n.fa-rupee::before {\n content: \"\\f156\";\n}\n\n.fa-file-image::before {\n content: \"\\f1c5\";\n}\n\n.fa-circle-question::before {\n content: \"\\f059\";\n}\n\n.fa-question-circle::before {\n content: \"\\f059\";\n}\n\n.fa-plane-departure::before {\n content: \"\\f5b0\";\n}\n\n.fa-handshake-slash::before {\n content: \"\\e060\";\n}\n\n.fa-book-bookmark::before {\n content: \"\\e0bb\";\n}\n\n.fa-code-branch::before {\n content: \"\\f126\";\n}\n\n.fa-hat-cowboy::before {\n content: \"\\f8c0\";\n}\n\n.fa-bridge::before {\n content: \"\\e4c8\";\n}\n\n.fa-phone-flip::before {\n content: \"\\f879\";\n}\n\n.fa-phone-alt::before {\n content: \"\\f879\";\n}\n\n.fa-truck-front::before {\n content: \"\\e2b7\";\n}\n\n.fa-cat::before {\n content: \"\\f6be\";\n}\n\n.fa-anchor-circle-exclamation::before {\n content: \"\\e4ab\";\n}\n\n.fa-truck-field::before {\n content: \"\\e58d\";\n}\n\n.fa-route::before {\n content: \"\\f4d7\";\n}\n\n.fa-clipboard-question::before {\n content: \"\\e4e3\";\n}\n\n.fa-panorama::before {\n content: \"\\e209\";\n}\n\n.fa-comment-medical::before {\n content: \"\\f7f5\";\n}\n\n.fa-teeth-open::before {\n content: \"\\f62f\";\n}\n\n.fa-file-circle-minus::before {\n content: \"\\e4ed\";\n}\n\n.fa-tags::before {\n content: \"\\f02c\";\n}\n\n.fa-wine-glass::before {\n content: \"\\f4e3\";\n}\n\n.fa-forward-fast::before {\n content: \"\\f050\";\n}\n\n.fa-fast-forward::before {\n content: \"\\f050\";\n}\n\n.fa-face-meh-blank::before {\n content: \"\\f5a4\";\n}\n\n.fa-meh-blank::before {\n content: \"\\f5a4\";\n}\n\n.fa-square-parking::before {\n content: \"\\f540\";\n}\n\n.fa-parking::before {\n content: \"\\f540\";\n}\n\n.fa-house-signal::before {\n content: \"\\e012\";\n}\n\n.fa-bars-progress::before {\n content: \"\\f828\";\n}\n\n.fa-tasks-alt::before {\n content: \"\\f828\";\n}\n\n.fa-faucet-drip::before {\n content: \"\\e006\";\n}\n\n.fa-cart-flatbed::before {\n content: \"\\f474\";\n}\n\n.fa-dolly-flatbed::before {\n content: \"\\f474\";\n}\n\n.fa-ban-smoking::before {\n content: \"\\f54d\";\n}\n\n.fa-smoking-ban::before {\n content: \"\\f54d\";\n}\n\n.fa-terminal::before {\n content: \"\\f120\";\n}\n\n.fa-mobile-button::before {\n content: \"\\f10b\";\n}\n\n.fa-house-medical-flag::before {\n content: \"\\e514\";\n}\n\n.fa-basket-shopping::before {\n content: \"\\f291\";\n}\n\n.fa-shopping-basket::before {\n content: \"\\f291\";\n}\n\n.fa-tape::before {\n content: \"\\f4db\";\n}\n\n.fa-bus-simple::before {\n content: \"\\f55e\";\n}\n\n.fa-bus-alt::before {\n content: \"\\f55e\";\n}\n\n.fa-eye::before {\n content: \"\\f06e\";\n}\n\n.fa-face-sad-cry::before {\n content: \"\\f5b3\";\n}\n\n.fa-sad-cry::before {\n content: \"\\f5b3\";\n}\n\n.fa-audio-description::before {\n content: \"\\f29e\";\n}\n\n.fa-person-military-to-person::before {\n content: \"\\e54c\";\n}\n\n.fa-file-shield::before {\n content: \"\\e4f0\";\n}\n\n.fa-user-slash::before {\n content: \"\\f506\";\n}\n\n.fa-pen::before {\n content: \"\\f304\";\n}\n\n.fa-tower-observation::before {\n content: \"\\e586\";\n}\n\n.fa-file-code::before {\n content: \"\\f1c9\";\n}\n\n.fa-signal::before {\n content: \"\\f012\";\n}\n\n.fa-signal-5::before {\n content: \"\\f012\";\n}\n\n.fa-signal-perfect::before {\n content: \"\\f012\";\n}\n\n.fa-bus::before {\n content: \"\\f207\";\n}\n\n.fa-heart-circle-xmark::before {\n content: \"\\e501\";\n}\n\n.fa-house-chimney::before {\n content: \"\\e3af\";\n}\n\n.fa-home-lg::before {\n content: \"\\e3af\";\n}\n\n.fa-window-maximize::before {\n content: \"\\f2d0\";\n}\n\n.fa-face-frown::before {\n content: \"\\f119\";\n}\n\n.fa-frown::before {\n content: \"\\f119\";\n}\n\n.fa-prescription::before {\n content: \"\\f5b1\";\n}\n\n.fa-shop::before {\n content: \"\\f54f\";\n}\n\n.fa-store-alt::before {\n content: \"\\f54f\";\n}\n\n.fa-floppy-disk::before {\n content: \"\\f0c7\";\n}\n\n.fa-save::before {\n content: \"\\f0c7\";\n}\n\n.fa-vihara::before {\n content: \"\\f6a7\";\n}\n\n.fa-scale-unbalanced::before {\n content: \"\\f515\";\n}\n\n.fa-balance-scale-left::before {\n content: \"\\f515\";\n}\n\n.fa-sort-up::before {\n content: \"\\f0de\";\n}\n\n.fa-sort-asc::before {\n content: \"\\f0de\";\n}\n\n.fa-comment-dots::before {\n content: \"\\f4ad\";\n}\n\n.fa-commenting::before {\n content: \"\\f4ad\";\n}\n\n.fa-plant-wilt::before {\n content: \"\\e5aa\";\n}\n\n.fa-diamond::before {\n content: \"\\f219\";\n}\n\n.fa-face-grin-squint::before {\n content: \"\\f585\";\n}\n\n.fa-grin-squint::before {\n content: \"\\f585\";\n}\n\n.fa-hand-holding-dollar::before {\n content: \"\\f4c0\";\n}\n\n.fa-hand-holding-usd::before {\n content: \"\\f4c0\";\n}\n\n.fa-bacterium::before {\n content: \"\\e05a\";\n}\n\n.fa-hand-pointer::before {\n content: \"\\f25a\";\n}\n\n.fa-drum-steelpan::before {\n content: \"\\f56a\";\n}\n\n.fa-hand-scissors::before {\n content: \"\\f257\";\n}\n\n.fa-hands-praying::before {\n content: \"\\f684\";\n}\n\n.fa-praying-hands::before {\n content: \"\\f684\";\n}\n\n.fa-arrow-rotate-right::before {\n content: \"\\f01e\";\n}\n\n.fa-arrow-right-rotate::before {\n content: \"\\f01e\";\n}\n\n.fa-arrow-rotate-forward::before {\n content: \"\\f01e\";\n}\n\n.fa-redo::before {\n content: \"\\f01e\";\n}\n\n.fa-biohazard::before {\n content: \"\\f780\";\n}\n\n.fa-location-crosshairs::before {\n content: \"\\f601\";\n}\n\n.fa-location::before {\n content: \"\\f601\";\n}\n\n.fa-mars-double::before {\n content: \"\\f227\";\n}\n\n.fa-child-dress::before {\n content: \"\\e59c\";\n}\n\n.fa-users-between-lines::before {\n content: \"\\e591\";\n}\n\n.fa-lungs-virus::before {\n content: \"\\e067\";\n}\n\n.fa-face-grin-tears::before {\n content: \"\\f588\";\n}\n\n.fa-grin-tears::before {\n content: \"\\f588\";\n}\n\n.fa-phone::before {\n content: \"\\f095\";\n}\n\n.fa-calendar-xmark::before {\n content: \"\\f273\";\n}\n\n.fa-calendar-times::before {\n content: \"\\f273\";\n}\n\n.fa-child-reaching::before {\n content: \"\\e59d\";\n}\n\n.fa-head-side-virus::before {\n content: \"\\e064\";\n}\n\n.fa-user-gear::before {\n content: \"\\f4fe\";\n}\n\n.fa-user-cog::before {\n content: \"\\f4fe\";\n}\n\n.fa-arrow-up-1-9::before {\n content: \"\\f163\";\n}\n\n.fa-sort-numeric-up::before {\n content: \"\\f163\";\n}\n\n.fa-door-closed::before {\n content: \"\\f52a\";\n}\n\n.fa-shield-virus::before {\n content: \"\\e06c\";\n}\n\n.fa-dice-six::before {\n content: \"\\f526\";\n}\n\n.fa-mosquito-net::before {\n content: \"\\e52c\";\n}\n\n.fa-bridge-water::before {\n content: \"\\e4ce\";\n}\n\n.fa-person-booth::before {\n content: \"\\f756\";\n}\n\n.fa-text-width::before {\n content: \"\\f035\";\n}\n\n.fa-hat-wizard::before {\n content: \"\\f6e8\";\n}\n\n.fa-pen-fancy::before {\n content: \"\\f5ac\";\n}\n\n.fa-person-digging::before {\n content: \"\\f85e\";\n}\n\n.fa-digging::before {\n content: \"\\f85e\";\n}\n\n.fa-trash::before {\n content: \"\\f1f8\";\n}\n\n.fa-gauge-simple::before {\n content: \"\\f629\";\n}\n\n.fa-gauge-simple-med::before {\n content: \"\\f629\";\n}\n\n.fa-tachometer-average::before {\n content: \"\\f629\";\n}\n\n.fa-book-medical::before {\n content: \"\\f7e6\";\n}\n\n.fa-poo::before {\n content: \"\\f2fe\";\n}\n\n.fa-quote-right::before {\n content: \"\\f10e\";\n}\n\n.fa-quote-right-alt::before {\n content: \"\\f10e\";\n}\n\n.fa-shirt::before {\n content: \"\\f553\";\n}\n\n.fa-t-shirt::before {\n content: \"\\f553\";\n}\n\n.fa-tshirt::before {\n content: \"\\f553\";\n}\n\n.fa-cubes::before {\n content: \"\\f1b3\";\n}\n\n.fa-divide::before {\n content: \"\\f529\";\n}\n\n.fa-tenge-sign::before {\n content: \"\\f7d7\";\n}\n\n.fa-tenge::before {\n content: \"\\f7d7\";\n}\n\n.fa-headphones::before {\n content: \"\\f025\";\n}\n\n.fa-hands-holding::before {\n content: \"\\f4c2\";\n}\n\n.fa-hands-clapping::before {\n content: \"\\e1a8\";\n}\n\n.fa-republican::before {\n content: \"\\f75e\";\n}\n\n.fa-arrow-left::before {\n content: \"\\f060\";\n}\n\n.fa-person-circle-xmark::before {\n content: \"\\e543\";\n}\n\n.fa-ruler::before {\n content: \"\\f545\";\n}\n\n.fa-align-left::before {\n content: \"\\f036\";\n}\n\n.fa-dice-d6::before {\n content: \"\\f6d1\";\n}\n\n.fa-restroom::before {\n content: \"\\f7bd\";\n}\n\n.fa-j::before {\n content: \"J\";\n}\n\n.fa-users-viewfinder::before {\n content: \"\\e595\";\n}\n\n.fa-file-video::before {\n content: \"\\f1c8\";\n}\n\n.fa-up-right-from-square::before {\n content: \"\\f35d\";\n}\n\n.fa-external-link-alt::before {\n content: \"\\f35d\";\n}\n\n.fa-table-cells::before {\n content: \"\\f00a\";\n}\n\n.fa-th::before {\n content: \"\\f00a\";\n}\n\n.fa-file-pdf::before {\n content: \"\\f1c1\";\n}\n\n.fa-book-bible::before {\n content: \"\\f647\";\n}\n\n.fa-bible::before {\n content: \"\\f647\";\n}\n\n.fa-o::before {\n content: \"O\";\n}\n\n.fa-suitcase-medical::before {\n content: \"\\f0fa\";\n}\n\n.fa-medkit::before {\n content: \"\\f0fa\";\n}\n\n.fa-user-secret::before {\n content: \"\\f21b\";\n}\n\n.fa-otter::before {\n content: \"\\f700\";\n}\n\n.fa-person-dress::before {\n content: \"\\f182\";\n}\n\n.fa-female::before {\n content: \"\\f182\";\n}\n\n.fa-comment-dollar::before {\n content: \"\\f651\";\n}\n\n.fa-business-time::before {\n content: \"\\f64a\";\n}\n\n.fa-briefcase-clock::before {\n content: \"\\f64a\";\n}\n\n.fa-table-cells-large::before {\n content: \"\\f009\";\n}\n\n.fa-th-large::before {\n content: \"\\f009\";\n}\n\n.fa-book-tanakh::before {\n content: \"\\f827\";\n}\n\n.fa-tanakh::before {\n content: \"\\f827\";\n}\n\n.fa-phone-volume::before {\n content: \"\\f2a0\";\n}\n\n.fa-volume-control-phone::before {\n content: \"\\f2a0\";\n}\n\n.fa-hat-cowboy-side::before {\n content: \"\\f8c1\";\n}\n\n.fa-clipboard-user::before {\n content: \"\\f7f3\";\n}\n\n.fa-child::before {\n content: \"\\f1ae\";\n}\n\n.fa-lira-sign::before {\n content: \"\\f195\";\n}\n\n.fa-satellite::before {\n content: \"\\f7bf\";\n}\n\n.fa-plane-lock::before {\n content: \"\\e558\";\n}\n\n.fa-tag::before {\n content: \"\\f02b\";\n}\n\n.fa-comment::before {\n content: \"\\f075\";\n}\n\n.fa-cake-candles::before {\n content: \"\\f1fd\";\n}\n\n.fa-birthday-cake::before {\n content: \"\\f1fd\";\n}\n\n.fa-cake::before {\n content: \"\\f1fd\";\n}\n\n.fa-envelope::before {\n content: \"\\f0e0\";\n}\n\n.fa-angles-up::before {\n content: \"\\f102\";\n}\n\n.fa-angle-double-up::before {\n content: \"\\f102\";\n}\n\n.fa-paperclip::before {\n content: \"\\f0c6\";\n}\n\n.fa-arrow-right-to-city::before {\n content: \"\\e4b3\";\n}\n\n.fa-ribbon::before {\n content: \"\\f4d6\";\n}\n\n.fa-lungs::before {\n content: \"\\f604\";\n}\n\n.fa-arrow-up-9-1::before {\n content: \"\\f887\";\n}\n\n.fa-sort-numeric-up-alt::before {\n content: \"\\f887\";\n}\n\n.fa-litecoin-sign::before {\n content: \"\\e1d3\";\n}\n\n.fa-border-none::before {\n content: \"\\f850\";\n}\n\n.fa-circle-nodes::before {\n content: \"\\e4e2\";\n}\n\n.fa-parachute-box::before {\n content: \"\\f4cd\";\n}\n\n.fa-indent::before {\n content: \"\\f03c\";\n}\n\n.fa-truck-field-un::before {\n content: \"\\e58e\";\n}\n\n.fa-hourglass::before {\n content: \"\\f254\";\n}\n\n.fa-hourglass-empty::before {\n content: \"\\f254\";\n}\n\n.fa-mountain::before {\n content: \"\\f6fc\";\n}\n\n.fa-user-doctor::before {\n content: \"\\f0f0\";\n}\n\n.fa-user-md::before {\n content: \"\\f0f0\";\n}\n\n.fa-circle-info::before {\n content: \"\\f05a\";\n}\n\n.fa-info-circle::before {\n content: \"\\f05a\";\n}\n\n.fa-cloud-meatball::before {\n content: \"\\f73b\";\n}\n\n.fa-camera::before {\n content: \"\\f030\";\n}\n\n.fa-camera-alt::before {\n content: \"\\f030\";\n}\n\n.fa-square-virus::before {\n content: \"\\e578\";\n}\n\n.fa-meteor::before {\n content: \"\\f753\";\n}\n\n.fa-car-on::before {\n content: \"\\e4dd\";\n}\n\n.fa-sleigh::before {\n content: \"\\f7cc\";\n}\n\n.fa-arrow-down-1-9::before {\n content: \"\\f162\";\n}\n\n.fa-sort-numeric-asc::before {\n content: \"\\f162\";\n}\n\n.fa-sort-numeric-down::before {\n content: \"\\f162\";\n}\n\n.fa-hand-holding-droplet::before {\n content: \"\\f4c1\";\n}\n\n.fa-hand-holding-water::before {\n content: \"\\f4c1\";\n}\n\n.fa-water::before {\n content: \"\\f773\";\n}\n\n.fa-calendar-check::before {\n content: \"\\f274\";\n}\n\n.fa-braille::before {\n content: \"\\f2a1\";\n}\n\n.fa-prescription-bottle-medical::before {\n content: \"\\f486\";\n}\n\n.fa-prescription-bottle-alt::before {\n content: \"\\f486\";\n}\n\n.fa-landmark::before {\n content: \"\\f66f\";\n}\n\n.fa-truck::before {\n content: \"\\f0d1\";\n}\n\n.fa-crosshairs::before {\n content: \"\\f05b\";\n}\n\n.fa-person-cane::before {\n content: \"\\e53c\";\n}\n\n.fa-tent::before {\n content: \"\\e57d\";\n}\n\n.fa-vest-patches::before {\n content: \"\\e086\";\n}\n\n.fa-check-double::before {\n content: \"\\f560\";\n}\n\n.fa-arrow-down-a-z::before {\n content: \"\\f15d\";\n}\n\n.fa-sort-alpha-asc::before {\n content: \"\\f15d\";\n}\n\n.fa-sort-alpha-down::before {\n content: \"\\f15d\";\n}\n\n.fa-money-bill-wheat::before {\n content: \"\\e52a\";\n}\n\n.fa-cookie::before {\n content: \"\\f563\";\n}\n\n.fa-arrow-rotate-left::before {\n content: \"\\f0e2\";\n}\n\n.fa-arrow-left-rotate::before {\n content: \"\\f0e2\";\n}\n\n.fa-arrow-rotate-back::before {\n content: \"\\f0e2\";\n}\n\n.fa-arrow-rotate-backward::before {\n content: \"\\f0e2\";\n}\n\n.fa-undo::before {\n content: \"\\f0e2\";\n}\n\n.fa-hard-drive::before {\n content: \"\\f0a0\";\n}\n\n.fa-hdd::before {\n content: \"\\f0a0\";\n}\n\n.fa-face-grin-squint-tears::before {\n content: \"\\f586\";\n}\n\n.fa-grin-squint-tears::before {\n content: \"\\f586\";\n}\n\n.fa-dumbbell::before {\n content: \"\\f44b\";\n}\n\n.fa-rectangle-list::before {\n content: \"\\f022\";\n}\n\n.fa-list-alt::before {\n content: \"\\f022\";\n}\n\n.fa-tarp-droplet::before {\n content: \"\\e57c\";\n}\n\n.fa-house-medical-circle-check::before {\n content: \"\\e511\";\n}\n\n.fa-person-skiing-nordic::before {\n content: \"\\f7ca\";\n}\n\n.fa-skiing-nordic::before {\n content: \"\\f7ca\";\n}\n\n.fa-calendar-plus::before {\n content: \"\\f271\";\n}\n\n.fa-plane-arrival::before {\n content: \"\\f5af\";\n}\n\n.fa-circle-left::before {\n content: \"\\f359\";\n}\n\n.fa-arrow-alt-circle-left::before {\n content: \"\\f359\";\n}\n\n.fa-train-subway::before {\n content: \"\\f239\";\n}\n\n.fa-subway::before {\n content: \"\\f239\";\n}\n\n.fa-chart-gantt::before {\n content: \"\\e0e4\";\n}\n\n.fa-indian-rupee-sign::before {\n content: \"\\e1bc\";\n}\n\n.fa-indian-rupee::before {\n content: \"\\e1bc\";\n}\n\n.fa-inr::before {\n content: \"\\e1bc\";\n}\n\n.fa-crop-simple::before {\n content: \"\\f565\";\n}\n\n.fa-crop-alt::before {\n content: \"\\f565\";\n}\n\n.fa-money-bill-1::before {\n content: \"\\f3d1\";\n}\n\n.fa-money-bill-alt::before {\n content: \"\\f3d1\";\n}\n\n.fa-left-long::before {\n content: \"\\f30a\";\n}\n\n.fa-long-arrow-alt-left::before {\n content: \"\\f30a\";\n}\n\n.fa-dna::before {\n content: \"\\f471\";\n}\n\n.fa-virus-slash::before {\n content: \"\\e075\";\n}\n\n.fa-minus::before {\n content: \"\\f068\";\n}\n\n.fa-subtract::before {\n content: \"\\f068\";\n}\n\n.fa-chess::before {\n content: \"\\f439\";\n}\n\n.fa-arrow-left-long::before {\n content: \"\\f177\";\n}\n\n.fa-long-arrow-left::before {\n content: \"\\f177\";\n}\n\n.fa-plug-circle-check::before {\n content: \"\\e55c\";\n}\n\n.fa-street-view::before {\n content: \"\\f21d\";\n}\n\n.fa-franc-sign::before {\n content: \"\\e18f\";\n}\n\n.fa-volume-off::before {\n content: \"\\f026\";\n}\n\n.fa-hands-asl-interpreting::before {\n content: \"\\f2a3\";\n}\n\n.fa-american-sign-language-interpreting::before {\n content: \"\\f2a3\";\n}\n\n.fa-asl-interpreting::before {\n content: \"\\f2a3\";\n}\n\n.fa-hands-american-sign-language-interpreting::before {\n content: \"\\f2a3\";\n}\n\n.fa-gear::before {\n content: \"\\f013\";\n}\n\n.fa-cog::before {\n content: \"\\f013\";\n}\n\n.fa-droplet-slash::before {\n content: \"\\f5c7\";\n}\n\n.fa-tint-slash::before {\n content: \"\\f5c7\";\n}\n\n.fa-mosque::before {\n content: \"\\f678\";\n}\n\n.fa-mosquito::before {\n content: \"\\e52b\";\n}\n\n.fa-star-of-david::before {\n content: \"\\f69a\";\n}\n\n.fa-person-military-rifle::before {\n content: \"\\e54b\";\n}\n\n.fa-cart-shopping::before {\n content: \"\\f07a\";\n}\n\n.fa-shopping-cart::before {\n content: \"\\f07a\";\n}\n\n.fa-vials::before {\n content: \"\\f493\";\n}\n\n.fa-plug-circle-plus::before {\n content: \"\\e55f\";\n}\n\n.fa-place-of-worship::before {\n content: \"\\f67f\";\n}\n\n.fa-grip-vertical::before {\n content: \"\\f58e\";\n}\n\n.fa-arrow-turn-up::before {\n content: \"\\f148\";\n}\n\n.fa-level-up::before {\n content: \"\\f148\";\n}\n\n.fa-u::before {\n content: \"U\";\n}\n\n.fa-square-root-variable::before {\n content: \"\\f698\";\n}\n\n.fa-square-root-alt::before {\n content: \"\\f698\";\n}\n\n.fa-clock::before {\n content: \"\\f017\";\n}\n\n.fa-clock-four::before {\n content: \"\\f017\";\n}\n\n.fa-backward-step::before {\n content: \"\\f048\";\n}\n\n.fa-step-backward::before {\n content: \"\\f048\";\n}\n\n.fa-pallet::before {\n content: \"\\f482\";\n}\n\n.fa-faucet::before {\n content: \"\\e005\";\n}\n\n.fa-baseball-bat-ball::before {\n content: \"\\f432\";\n}\n\n.fa-s::before {\n content: \"S\";\n}\n\n.fa-timeline::before {\n content: \"\\e29c\";\n}\n\n.fa-keyboard::before {\n content: \"\\f11c\";\n}\n\n.fa-caret-down::before {\n content: \"\\f0d7\";\n}\n\n.fa-house-chimney-medical::before {\n content: \"\\f7f2\";\n}\n\n.fa-clinic-medical::before {\n content: \"\\f7f2\";\n}\n\n.fa-temperature-three-quarters::before {\n content: \"\\f2c8\";\n}\n\n.fa-temperature-3::before {\n content: \"\\f2c8\";\n}\n\n.fa-thermometer-3::before {\n content: \"\\f2c8\";\n}\n\n.fa-thermometer-three-quarters::before {\n content: \"\\f2c8\";\n}\n\n.fa-mobile-screen::before {\n content: \"\\f3cf\";\n}\n\n.fa-mobile-android-alt::before {\n content: \"\\f3cf\";\n}\n\n.fa-plane-up::before {\n content: \"\\e22d\";\n}\n\n.fa-piggy-bank::before {\n content: \"\\f4d3\";\n}\n\n.fa-battery-half::before {\n content: \"\\f242\";\n}\n\n.fa-battery-3::before {\n content: \"\\f242\";\n}\n\n.fa-mountain-city::before {\n content: \"\\e52e\";\n}\n\n.fa-coins::before {\n content: \"\\f51e\";\n}\n\n.fa-khanda::before {\n content: \"\\f66d\";\n}\n\n.fa-sliders::before {\n content: \"\\f1de\";\n}\n\n.fa-sliders-h::before {\n content: \"\\f1de\";\n}\n\n.fa-folder-tree::before {\n content: \"\\f802\";\n}\n\n.fa-network-wired::before {\n content: \"\\f6ff\";\n}\n\n.fa-map-pin::before {\n content: \"\\f276\";\n}\n\n.fa-hamsa::before {\n content: \"\\f665\";\n}\n\n.fa-cent-sign::before {\n content: \"\\e3f5\";\n}\n\n.fa-flask::before {\n content: \"\\f0c3\";\n}\n\n.fa-person-pregnant::before {\n content: \"\\e31e\";\n}\n\n.fa-wand-sparkles::before {\n content: \"\\f72b\";\n}\n\n.fa-ellipsis-vertical::before {\n content: \"\\f142\";\n}\n\n.fa-ellipsis-v::before {\n content: \"\\f142\";\n}\n\n.fa-ticket::before {\n content: \"\\f145\";\n}\n\n.fa-power-off::before {\n content: \"\\f011\";\n}\n\n.fa-right-long::before {\n content: \"\\f30b\";\n}\n\n.fa-long-arrow-alt-right::before {\n content: \"\\f30b\";\n}\n\n.fa-flag-usa::before {\n content: \"\\f74d\";\n}\n\n.fa-laptop-file::before {\n content: \"\\e51d\";\n}\n\n.fa-tty::before {\n content: \"\\f1e4\";\n}\n\n.fa-teletype::before {\n content: \"\\f1e4\";\n}\n\n.fa-diagram-next::before {\n content: \"\\e476\";\n}\n\n.fa-person-rifle::before {\n content: \"\\e54e\";\n}\n\n.fa-house-medical-circle-exclamation::before {\n content: \"\\e512\";\n}\n\n.fa-closed-captioning::before {\n content: \"\\f20a\";\n}\n\n.fa-person-hiking::before {\n content: \"\\f6ec\";\n}\n\n.fa-hiking::before {\n content: \"\\f6ec\";\n}\n\n.fa-venus-double::before {\n content: \"\\f226\";\n}\n\n.fa-images::before {\n content: \"\\f302\";\n}\n\n.fa-calculator::before {\n content: \"\\f1ec\";\n}\n\n.fa-people-pulling::before {\n content: \"\\e535\";\n}\n\n.fa-n::before {\n content: \"N\";\n}\n\n.fa-cable-car::before {\n content: \"\\f7da\";\n}\n\n.fa-tram::before {\n content: \"\\f7da\";\n}\n\n.fa-cloud-rain::before {\n content: \"\\f73d\";\n}\n\n.fa-building-circle-xmark::before {\n content: \"\\e4d4\";\n}\n\n.fa-ship::before {\n content: \"\\f21a\";\n}\n\n.fa-arrows-down-to-line::before {\n content: \"\\e4b8\";\n}\n\n.fa-download::before {\n content: \"\\f019\";\n}\n\n.fa-face-grin::before {\n content: \"\\f580\";\n}\n\n.fa-grin::before {\n content: \"\\f580\";\n}\n\n.fa-delete-left::before {\n content: \"\\f55a\";\n}\n\n.fa-backspace::before {\n content: \"\\f55a\";\n}\n\n.fa-eye-dropper::before {\n content: \"\\f1fb\";\n}\n\n.fa-eye-dropper-empty::before {\n content: \"\\f1fb\";\n}\n\n.fa-eyedropper::before {\n content: \"\\f1fb\";\n}\n\n.fa-file-circle-check::before {\n content: \"\\e5a0\";\n}\n\n.fa-forward::before {\n content: \"\\f04e\";\n}\n\n.fa-mobile::before {\n content: \"\\f3ce\";\n}\n\n.fa-mobile-android::before {\n content: \"\\f3ce\";\n}\n\n.fa-mobile-phone::before {\n content: \"\\f3ce\";\n}\n\n.fa-face-meh::before {\n content: \"\\f11a\";\n}\n\n.fa-meh::before {\n content: \"\\f11a\";\n}\n\n.fa-align-center::before {\n content: \"\\f037\";\n}\n\n.fa-book-skull::before {\n content: \"\\f6b7\";\n}\n\n.fa-book-dead::before {\n content: \"\\f6b7\";\n}\n\n.fa-id-card::before {\n content: \"\\f2c2\";\n}\n\n.fa-drivers-license::before {\n content: \"\\f2c2\";\n}\n\n.fa-outdent::before {\n content: \"\\f03b\";\n}\n\n.fa-dedent::before {\n content: \"\\f03b\";\n}\n\n.fa-heart-circle-exclamation::before {\n content: \"\\e4fe\";\n}\n\n.fa-house::before {\n content: \"\\f015\";\n}\n\n.fa-home::before {\n content: \"\\f015\";\n}\n\n.fa-home-alt::before {\n content: \"\\f015\";\n}\n\n.fa-home-lg-alt::before {\n content: \"\\f015\";\n}\n\n.fa-calendar-week::before {\n content: \"\\f784\";\n}\n\n.fa-laptop-medical::before {\n content: \"\\f812\";\n}\n\n.fa-b::before {\n content: \"B\";\n}\n\n.fa-file-medical::before {\n content: \"\\f477\";\n}\n\n.fa-dice-one::before {\n content: \"\\f525\";\n}\n\n.fa-kiwi-bird::before {\n content: \"\\f535\";\n}\n\n.fa-arrow-right-arrow-left::before {\n content: \"\\f0ec\";\n}\n\n.fa-exchange::before {\n content: \"\\f0ec\";\n}\n\n.fa-rotate-right::before {\n content: \"\\f2f9\";\n}\n\n.fa-redo-alt::before {\n content: \"\\f2f9\";\n}\n\n.fa-rotate-forward::before {\n content: \"\\f2f9\";\n}\n\n.fa-utensils::before {\n content: \"\\f2e7\";\n}\n\n.fa-cutlery::before {\n content: \"\\f2e7\";\n}\n\n.fa-arrow-up-wide-short::before {\n content: \"\\f161\";\n}\n\n.fa-sort-amount-up::before {\n content: \"\\f161\";\n}\n\n.fa-mill-sign::before {\n content: \"\\e1ed\";\n}\n\n.fa-bowl-rice::before {\n content: \"\\e2eb\";\n}\n\n.fa-skull::before {\n content: \"\\f54c\";\n}\n\n.fa-tower-broadcast::before {\n content: \"\\f519\";\n}\n\n.fa-broadcast-tower::before {\n content: \"\\f519\";\n}\n\n.fa-truck-pickup::before {\n content: \"\\f63c\";\n}\n\n.fa-up-long::before {\n content: \"\\f30c\";\n}\n\n.fa-long-arrow-alt-up::before {\n content: \"\\f30c\";\n}\n\n.fa-stop::before {\n content: \"\\f04d\";\n}\n\n.fa-code-merge::before {\n content: \"\\f387\";\n}\n\n.fa-upload::before {\n content: \"\\f093\";\n}\n\n.fa-hurricane::before {\n content: \"\\f751\";\n}\n\n.fa-mound::before {\n content: \"\\e52d\";\n}\n\n.fa-toilet-portable::before {\n content: \"\\e583\";\n}\n\n.fa-compact-disc::before {\n content: \"\\f51f\";\n}\n\n.fa-file-arrow-down::before {\n content: \"\\f56d\";\n}\n\n.fa-file-download::before {\n content: \"\\f56d\";\n}\n\n.fa-caravan::before {\n content: \"\\f8ff\";\n}\n\n.fa-shield-cat::before {\n content: \"\\e572\";\n}\n\n.fa-bolt::before {\n content: \"\\f0e7\";\n}\n\n.fa-zap::before {\n content: \"\\f0e7\";\n}\n\n.fa-glass-water::before {\n content: \"\\e4f4\";\n}\n\n.fa-oil-well::before {\n content: \"\\e532\";\n}\n\n.fa-vault::before {\n content: \"\\e2c5\";\n}\n\n.fa-mars::before {\n content: \"\\f222\";\n}\n\n.fa-toilet::before {\n content: \"\\f7d8\";\n}\n\n.fa-plane-circle-xmark::before {\n content: \"\\e557\";\n}\n\n.fa-yen-sign::before {\n content: \"\\f157\";\n}\n\n.fa-cny::before {\n content: \"\\f157\";\n}\n\n.fa-jpy::before {\n content: \"\\f157\";\n}\n\n.fa-rmb::before {\n content: \"\\f157\";\n}\n\n.fa-yen::before {\n content: \"\\f157\";\n}\n\n.fa-ruble-sign::before {\n content: \"\\f158\";\n}\n\n.fa-rouble::before {\n content: \"\\f158\";\n}\n\n.fa-rub::before {\n content: \"\\f158\";\n}\n\n.fa-ruble::before {\n content: \"\\f158\";\n}\n\n.fa-sun::before {\n content: \"\\f185\";\n}\n\n.fa-guitar::before {\n content: \"\\f7a6\";\n}\n\n.fa-face-laugh-wink::before {\n content: \"\\f59c\";\n}\n\n.fa-laugh-wink::before {\n content: \"\\f59c\";\n}\n\n.fa-horse-head::before {\n content: \"\\f7ab\";\n}\n\n.fa-bore-hole::before {\n content: \"\\e4c3\";\n}\n\n.fa-industry::before {\n content: \"\\f275\";\n}\n\n.fa-circle-down::before {\n content: \"\\f358\";\n}\n\n.fa-arrow-alt-circle-down::before {\n content: \"\\f358\";\n}\n\n.fa-arrows-turn-to-dots::before {\n content: \"\\e4c1\";\n}\n\n.fa-florin-sign::before {\n content: \"\\e184\";\n}\n\n.fa-arrow-down-short-wide::before {\n content: \"\\f884\";\n}\n\n.fa-sort-amount-desc::before {\n content: \"\\f884\";\n}\n\n.fa-sort-amount-down-alt::before {\n content: \"\\f884\";\n}\n\n.fa-less-than::before {\n content: \"<\";\n}\n\n.fa-angle-down::before {\n content: \"\\f107\";\n}\n\n.fa-car-tunnel::before {\n content: \"\\e4de\";\n}\n\n.fa-head-side-cough::before {\n content: \"\\e061\";\n}\n\n.fa-grip-lines::before {\n content: \"\\f7a4\";\n}\n\n.fa-thumbs-down::before {\n content: \"\\f165\";\n}\n\n.fa-user-lock::before {\n content: \"\\f502\";\n}\n\n.fa-arrow-right-long::before {\n content: \"\\f178\";\n}\n\n.fa-long-arrow-right::before {\n content: \"\\f178\";\n}\n\n.fa-anchor-circle-xmark::before {\n content: \"\\e4ac\";\n}\n\n.fa-ellipsis::before {\n content: \"\\f141\";\n}\n\n.fa-ellipsis-h::before {\n content: \"\\f141\";\n}\n\n.fa-chess-pawn::before {\n content: \"\\f443\";\n}\n\n.fa-kit-medical::before {\n content: \"\\f479\";\n}\n\n.fa-first-aid::before {\n content: \"\\f479\";\n}\n\n.fa-person-through-window::before {\n content: \"\\e5a9\";\n}\n\n.fa-toolbox::before {\n content: \"\\f552\";\n}\n\n.fa-hands-holding-circle::before {\n content: \"\\e4fb\";\n}\n\n.fa-bug::before {\n content: \"\\f188\";\n}\n\n.fa-credit-card::before {\n content: \"\\f09d\";\n}\n\n.fa-credit-card-alt::before {\n content: \"\\f09d\";\n}\n\n.fa-car::before {\n content: \"\\f1b9\";\n}\n\n.fa-automobile::before {\n content: \"\\f1b9\";\n}\n\n.fa-hand-holding-hand::before {\n content: \"\\e4f7\";\n}\n\n.fa-book-open-reader::before {\n content: \"\\f5da\";\n}\n\n.fa-book-reader::before {\n content: \"\\f5da\";\n}\n\n.fa-mountain-sun::before {\n content: \"\\e52f\";\n}\n\n.fa-arrows-left-right-to-line::before {\n content: \"\\e4ba\";\n}\n\n.fa-dice-d20::before {\n content: \"\\f6cf\";\n}\n\n.fa-truck-droplet::before {\n content: \"\\e58c\";\n}\n\n.fa-file-circle-xmark::before {\n content: \"\\e5a1\";\n}\n\n.fa-temperature-arrow-up::before {\n content: \"\\e040\";\n}\n\n.fa-temperature-up::before {\n content: \"\\e040\";\n}\n\n.fa-medal::before {\n content: \"\\f5a2\";\n}\n\n.fa-bed::before {\n content: \"\\f236\";\n}\n\n.fa-square-h::before {\n content: \"\\f0fd\";\n}\n\n.fa-h-square::before {\n content: \"\\f0fd\";\n}\n\n.fa-podcast::before {\n content: \"\\f2ce\";\n}\n\n.fa-temperature-full::before {\n content: \"\\f2c7\";\n}\n\n.fa-temperature-4::before {\n content: \"\\f2c7\";\n}\n\n.fa-thermometer-4::before {\n content: \"\\f2c7\";\n}\n\n.fa-thermometer-full::before {\n content: \"\\f2c7\";\n}\n\n.fa-bell::before {\n content: \"\\f0f3\";\n}\n\n.fa-superscript::before {\n content: \"\\f12b\";\n}\n\n.fa-plug-circle-xmark::before {\n content: \"\\e560\";\n}\n\n.fa-star-of-life::before {\n content: \"\\f621\";\n}\n\n.fa-phone-slash::before {\n content: \"\\f3dd\";\n}\n\n.fa-paint-roller::before {\n content: \"\\f5aa\";\n}\n\n.fa-handshake-angle::before {\n content: \"\\f4c4\";\n}\n\n.fa-hands-helping::before {\n content: \"\\f4c4\";\n}\n\n.fa-location-dot::before {\n content: \"\\f3c5\";\n}\n\n.fa-map-marker-alt::before {\n content: \"\\f3c5\";\n}\n\n.fa-file::before {\n content: \"\\f15b\";\n}\n\n.fa-greater-than::before {\n content: \">\";\n}\n\n.fa-person-swimming::before {\n content: \"\\f5c4\";\n}\n\n.fa-swimmer::before {\n content: \"\\f5c4\";\n}\n\n.fa-arrow-down::before {\n content: \"\\f063\";\n}\n\n.fa-droplet::before {\n content: \"\\f043\";\n}\n\n.fa-tint::before {\n content: \"\\f043\";\n}\n\n.fa-eraser::before {\n content: \"\\f12d\";\n}\n\n.fa-earth-americas::before {\n content: \"\\f57d\";\n}\n\n.fa-earth::before {\n content: \"\\f57d\";\n}\n\n.fa-earth-america::before {\n content: \"\\f57d\";\n}\n\n.fa-globe-americas::before {\n content: \"\\f57d\";\n}\n\n.fa-person-burst::before {\n content: \"\\e53b\";\n}\n\n.fa-dove::before {\n content: \"\\f4ba\";\n}\n\n.fa-battery-empty::before {\n content: \"\\f244\";\n}\n\n.fa-battery-0::before {\n content: \"\\f244\";\n}\n\n.fa-socks::before {\n content: \"\\f696\";\n}\n\n.fa-inbox::before {\n content: \"\\f01c\";\n}\n\n.fa-section::before {\n content: \"\\e447\";\n}\n\n.fa-gauge-high::before {\n content: \"\\f625\";\n}\n\n.fa-tachometer-alt::before {\n content: \"\\f625\";\n}\n\n.fa-tachometer-alt-fast::before {\n content: \"\\f625\";\n}\n\n.fa-envelope-open-text::before {\n content: \"\\f658\";\n}\n\n.fa-hospital::before {\n content: \"\\f0f8\";\n}\n\n.fa-hospital-alt::before {\n content: \"\\f0f8\";\n}\n\n.fa-hospital-wide::before {\n content: \"\\f0f8\";\n}\n\n.fa-wine-bottle::before {\n content: \"\\f72f\";\n}\n\n.fa-chess-rook::before {\n content: \"\\f447\";\n}\n\n.fa-bars-staggered::before {\n content: \"\\f550\";\n}\n\n.fa-reorder::before {\n content: \"\\f550\";\n}\n\n.fa-stream::before {\n content: \"\\f550\";\n}\n\n.fa-dharmachakra::before {\n content: \"\\f655\";\n}\n\n.fa-hotdog::before {\n content: \"\\f80f\";\n}\n\n.fa-person-walking-with-cane::before {\n content: \"\\f29d\";\n}\n\n.fa-blind::before {\n content: \"\\f29d\";\n}\n\n.fa-drum::before {\n content: \"\\f569\";\n}\n\n.fa-ice-cream::before {\n content: \"\\f810\";\n}\n\n.fa-heart-circle-bolt::before {\n content: \"\\e4fc\";\n}\n\n.fa-fax::before {\n content: \"\\f1ac\";\n}\n\n.fa-paragraph::before {\n content: \"\\f1dd\";\n}\n\n.fa-check-to-slot::before {\n content: \"\\f772\";\n}\n\n.fa-vote-yea::before {\n content: \"\\f772\";\n}\n\n.fa-star-half::before {\n content: \"\\f089\";\n}\n\n.fa-boxes-stacked::before {\n content: \"\\f468\";\n}\n\n.fa-boxes::before {\n content: \"\\f468\";\n}\n\n.fa-boxes-alt::before {\n content: \"\\f468\";\n}\n\n.fa-link::before {\n content: \"\\f0c1\";\n}\n\n.fa-chain::before {\n content: \"\\f0c1\";\n}\n\n.fa-ear-listen::before {\n content: \"\\f2a2\";\n}\n\n.fa-assistive-listening-systems::before {\n content: \"\\f2a2\";\n}\n\n.fa-tree-city::before {\n content: \"\\e587\";\n}\n\n.fa-play::before {\n content: \"\\f04b\";\n}\n\n.fa-font::before {\n content: \"\\f031\";\n}\n\n.fa-rupiah-sign::before {\n content: \"\\e23d\";\n}\n\n.fa-magnifying-glass::before {\n content: \"\\f002\";\n}\n\n.fa-search::before {\n content: \"\\f002\";\n}\n\n.fa-table-tennis-paddle-ball::before {\n content: \"\\f45d\";\n}\n\n.fa-ping-pong-paddle-ball::before {\n content: \"\\f45d\";\n}\n\n.fa-table-tennis::before {\n content: \"\\f45d\";\n}\n\n.fa-person-dots-from-line::before {\n content: \"\\f470\";\n}\n\n.fa-diagnoses::before {\n content: \"\\f470\";\n}\n\n.fa-trash-can-arrow-up::before {\n content: \"\\f82a\";\n}\n\n.fa-trash-restore-alt::before {\n content: \"\\f82a\";\n}\n\n.fa-naira-sign::before {\n content: \"\\e1f6\";\n}\n\n.fa-cart-arrow-down::before {\n content: \"\\f218\";\n}\n\n.fa-walkie-talkie::before {\n content: \"\\f8ef\";\n}\n\n.fa-file-pen::before {\n content: \"\\f31c\";\n}\n\n.fa-file-edit::before {\n content: \"\\f31c\";\n}\n\n.fa-receipt::before {\n content: \"\\f543\";\n}\n\n.fa-square-pen::before {\n content: \"\\f14b\";\n}\n\n.fa-pen-square::before {\n content: \"\\f14b\";\n}\n\n.fa-pencil-square::before {\n content: \"\\f14b\";\n}\n\n.fa-suitcase-rolling::before {\n content: \"\\f5c1\";\n}\n\n.fa-person-circle-exclamation::before {\n content: \"\\e53f\";\n}\n\n.fa-chevron-down::before {\n content: \"\\f078\";\n}\n\n.fa-battery-full::before {\n content: \"\\f240\";\n}\n\n.fa-battery::before {\n content: \"\\f240\";\n}\n\n.fa-battery-5::before {\n content: \"\\f240\";\n}\n\n.fa-skull-crossbones::before {\n content: \"\\f714\";\n}\n\n.fa-code-compare::before {\n content: \"\\e13a\";\n}\n\n.fa-list-ul::before {\n content: \"\\f0ca\";\n}\n\n.fa-list-dots::before {\n content: \"\\f0ca\";\n}\n\n.fa-school-lock::before {\n content: \"\\e56f\";\n}\n\n.fa-tower-cell::before {\n content: \"\\e585\";\n}\n\n.fa-down-long::before {\n content: \"\\f309\";\n}\n\n.fa-long-arrow-alt-down::before {\n content: \"\\f309\";\n}\n\n.fa-ranking-star::before {\n content: \"\\e561\";\n}\n\n.fa-chess-king::before {\n content: \"\\f43f\";\n}\n\n.fa-person-harassing::before {\n content: \"\\e549\";\n}\n\n.fa-brazilian-real-sign::before {\n content: \"\\e46c\";\n}\n\n.fa-landmark-dome::before {\n content: \"\\f752\";\n}\n\n.fa-landmark-alt::before {\n content: \"\\f752\";\n}\n\n.fa-arrow-up::before {\n content: \"\\f062\";\n}\n\n.fa-tv::before {\n content: \"\\f26c\";\n}\n\n.fa-television::before {\n content: \"\\f26c\";\n}\n\n.fa-tv-alt::before {\n content: \"\\f26c\";\n}\n\n.fa-shrimp::before {\n content: \"\\e448\";\n}\n\n.fa-list-check::before {\n content: \"\\f0ae\";\n}\n\n.fa-tasks::before {\n content: \"\\f0ae\";\n}\n\n.fa-jug-detergent::before {\n content: \"\\e519\";\n}\n\n.fa-circle-user::before {\n content: \"\\f2bd\";\n}\n\n.fa-user-circle::before {\n content: \"\\f2bd\";\n}\n\n.fa-user-shield::before {\n content: \"\\f505\";\n}\n\n.fa-wind::before {\n content: \"\\f72e\";\n}\n\n.fa-car-burst::before {\n content: \"\\f5e1\";\n}\n\n.fa-car-crash::before {\n content: \"\\f5e1\";\n}\n\n.fa-y::before {\n content: \"Y\";\n}\n\n.fa-person-snowboarding::before {\n content: \"\\f7ce\";\n}\n\n.fa-snowboarding::before {\n content: \"\\f7ce\";\n}\n\n.fa-truck-fast::before {\n content: \"\\f48b\";\n}\n\n.fa-shipping-fast::before {\n content: \"\\f48b\";\n}\n\n.fa-fish::before {\n content: \"\\f578\";\n}\n\n.fa-user-graduate::before {\n content: \"\\f501\";\n}\n\n.fa-circle-half-stroke::before {\n content: \"\\f042\";\n}\n\n.fa-adjust::before {\n content: \"\\f042\";\n}\n\n.fa-clapperboard::before {\n content: \"\\e131\";\n}\n\n.fa-circle-radiation::before {\n content: \"\\f7ba\";\n}\n\n.fa-radiation-alt::before {\n content: \"\\f7ba\";\n}\n\n.fa-baseball::before {\n content: \"\\f433\";\n}\n\n.fa-baseball-ball::before {\n content: \"\\f433\";\n}\n\n.fa-jet-fighter-up::before {\n content: \"\\e518\";\n}\n\n.fa-diagram-project::before {\n content: \"\\f542\";\n}\n\n.fa-project-diagram::before {\n content: \"\\f542\";\n}\n\n.fa-copy::before {\n content: \"\\f0c5\";\n}\n\n.fa-volume-xmark::before {\n content: \"\\f6a9\";\n}\n\n.fa-volume-mute::before {\n content: \"\\f6a9\";\n}\n\n.fa-volume-times::before {\n content: \"\\f6a9\";\n}\n\n.fa-hand-sparkles::before {\n content: \"\\e05d\";\n}\n\n.fa-grip::before {\n content: \"\\f58d\";\n}\n\n.fa-grip-horizontal::before {\n content: \"\\f58d\";\n}\n\n.fa-share-from-square::before {\n content: \"\\f14d\";\n}\n\n.fa-share-square::before {\n content: \"\\f14d\";\n}\n\n.fa-child-combatant::before {\n content: \"\\e4e0\";\n}\n\n.fa-child-rifle::before {\n content: \"\\e4e0\";\n}\n\n.fa-gun::before {\n content: \"\\e19b\";\n}\n\n.fa-square-phone::before {\n content: \"\\f098\";\n}\n\n.fa-phone-square::before {\n content: \"\\f098\";\n}\n\n.fa-plus::before {\n content: \"+\";\n}\n\n.fa-add::before {\n content: \"+\";\n}\n\n.fa-expand::before {\n content: \"\\f065\";\n}\n\n.fa-computer::before {\n content: \"\\e4e5\";\n}\n\n.fa-xmark::before {\n content: \"\\f00d\";\n}\n\n.fa-close::before {\n content: \"\\f00d\";\n}\n\n.fa-multiply::before {\n content: \"\\f00d\";\n}\n\n.fa-remove::before {\n content: \"\\f00d\";\n}\n\n.fa-times::before {\n content: \"\\f00d\";\n}\n\n.fa-arrows-up-down-left-right::before {\n content: \"\\f047\";\n}\n\n.fa-arrows::before {\n content: \"\\f047\";\n}\n\n.fa-chalkboard-user::before {\n content: \"\\f51c\";\n}\n\n.fa-chalkboard-teacher::before {\n content: \"\\f51c\";\n}\n\n.fa-peso-sign::before {\n content: \"\\e222\";\n}\n\n.fa-building-shield::before {\n content: \"\\e4d8\";\n}\n\n.fa-baby::before {\n content: \"\\f77c\";\n}\n\n.fa-users-line::before {\n content: \"\\e592\";\n}\n\n.fa-quote-left::before {\n content: \"\\f10d\";\n}\n\n.fa-quote-left-alt::before {\n content: \"\\f10d\";\n}\n\n.fa-tractor::before {\n content: \"\\f722\";\n}\n\n.fa-trash-arrow-up::before {\n content: \"\\f829\";\n}\n\n.fa-trash-restore::before {\n content: \"\\f829\";\n}\n\n.fa-arrow-down-up-lock::before {\n content: \"\\e4b0\";\n}\n\n.fa-lines-leaning::before {\n content: \"\\e51e\";\n}\n\n.fa-ruler-combined::before {\n content: \"\\f546\";\n}\n\n.fa-copyright::before {\n content: \"\\f1f9\";\n}\n\n.fa-equals::before {\n content: \"=\";\n}\n\n.fa-blender::before {\n content: \"\\f517\";\n}\n\n.fa-teeth::before {\n content: \"\\f62e\";\n}\n\n.fa-shekel-sign::before {\n content: \"\\f20b\";\n}\n\n.fa-ils::before {\n content: \"\\f20b\";\n}\n\n.fa-shekel::before {\n content: \"\\f20b\";\n}\n\n.fa-sheqel::before {\n content: \"\\f20b\";\n}\n\n.fa-sheqel-sign::before {\n content: \"\\f20b\";\n}\n\n.fa-map::before {\n content: \"\\f279\";\n}\n\n.fa-rocket::before {\n content: \"\\f135\";\n}\n\n.fa-photo-film::before {\n content: \"\\f87c\";\n}\n\n.fa-photo-video::before {\n content: \"\\f87c\";\n}\n\n.fa-folder-minus::before {\n content: \"\\f65d\";\n}\n\n.fa-store::before {\n content: \"\\f54e\";\n}\n\n.fa-arrow-trend-up::before {\n content: \"\\e098\";\n}\n\n.fa-plug-circle-minus::before {\n content: \"\\e55e\";\n}\n\n.fa-sign-hanging::before {\n content: \"\\f4d9\";\n}\n\n.fa-sign::before {\n content: \"\\f4d9\";\n}\n\n.fa-bezier-curve::before {\n content: \"\\f55b\";\n}\n\n.fa-bell-slash::before {\n content: \"\\f1f6\";\n}\n\n.fa-tablet::before {\n content: \"\\f3fb\";\n}\n\n.fa-tablet-android::before {\n content: \"\\f3fb\";\n}\n\n.fa-school-flag::before {\n content: \"\\e56e\";\n}\n\n.fa-fill::before {\n content: \"\\f575\";\n}\n\n.fa-angle-up::before {\n content: \"\\f106\";\n}\n\n.fa-drumstick-bite::before {\n content: \"\\f6d7\";\n}\n\n.fa-holly-berry::before {\n content: \"\\f7aa\";\n}\n\n.fa-chevron-left::before {\n content: \"\\f053\";\n}\n\n.fa-bacteria::before {\n content: \"\\e059\";\n}\n\n.fa-hand-lizard::before {\n content: \"\\f258\";\n}\n\n.fa-notdef::before {\n content: \"\\e1fe\";\n}\n\n.fa-disease::before {\n content: \"\\f7fa\";\n}\n\n.fa-briefcase-medical::before {\n content: \"\\f469\";\n}\n\n.fa-genderless::before {\n content: \"\\f22d\";\n}\n\n.fa-chevron-right::before {\n content: \"\\f054\";\n}\n\n.fa-retweet::before {\n content: \"\\f079\";\n}\n\n.fa-car-rear::before {\n content: \"\\f5de\";\n}\n\n.fa-car-alt::before {\n content: \"\\f5de\";\n}\n\n.fa-pump-soap::before {\n content: \"\\e06b\";\n}\n\n.fa-video-slash::before {\n content: \"\\f4e2\";\n}\n\n.fa-battery-quarter::before {\n content: \"\\f243\";\n}\n\n.fa-battery-2::before {\n content: \"\\f243\";\n}\n\n.fa-radio::before {\n content: \"\\f8d7\";\n}\n\n.fa-baby-carriage::before {\n content: \"\\f77d\";\n}\n\n.fa-carriage-baby::before {\n content: \"\\f77d\";\n}\n\n.fa-traffic-light::before {\n content: \"\\f637\";\n}\n\n.fa-thermometer::before {\n content: \"\\f491\";\n}\n\n.fa-vr-cardboard::before {\n content: \"\\f729\";\n}\n\n.fa-hand-middle-finger::before {\n content: \"\\f806\";\n}\n\n.fa-percent::before {\n content: \"%\";\n}\n\n.fa-percentage::before {\n content: \"%\";\n}\n\n.fa-truck-moving::before {\n content: \"\\f4df\";\n}\n\n.fa-glass-water-droplet::before {\n content: \"\\e4f5\";\n}\n\n.fa-display::before {\n content: \"\\e163\";\n}\n\n.fa-face-smile::before {\n content: \"\\f118\";\n}\n\n.fa-smile::before {\n content: \"\\f118\";\n}\n\n.fa-thumbtack::before {\n content: \"\\f08d\";\n}\n\n.fa-thumb-tack::before {\n content: \"\\f08d\";\n}\n\n.fa-trophy::before {\n content: \"\\f091\";\n}\n\n.fa-person-praying::before {\n content: \"\\f683\";\n}\n\n.fa-pray::before {\n content: \"\\f683\";\n}\n\n.fa-hammer::before {\n content: \"\\f6e3\";\n}\n\n.fa-hand-peace::before {\n content: \"\\f25b\";\n}\n\n.fa-rotate::before {\n content: \"\\f2f1\";\n}\n\n.fa-sync-alt::before {\n content: \"\\f2f1\";\n}\n\n.fa-spinner::before {\n content: \"\\f110\";\n}\n\n.fa-robot::before {\n content: \"\\f544\";\n}\n\n.fa-peace::before {\n content: \"\\f67c\";\n}\n\n.fa-gears::before {\n content: \"\\f085\";\n}\n\n.fa-cogs::before {\n content: \"\\f085\";\n}\n\n.fa-warehouse::before {\n content: \"\\f494\";\n}\n\n.fa-arrow-up-right-dots::before {\n content: \"\\e4b7\";\n}\n\n.fa-splotch::before {\n content: \"\\f5bc\";\n}\n\n.fa-face-grin-hearts::before {\n content: \"\\f584\";\n}\n\n.fa-grin-hearts::before {\n content: \"\\f584\";\n}\n\n.fa-dice-four::before {\n content: \"\\f524\";\n}\n\n.fa-sim-card::before {\n content: \"\\f7c4\";\n}\n\n.fa-transgender::before {\n content: \"\\f225\";\n}\n\n.fa-transgender-alt::before {\n content: \"\\f225\";\n}\n\n.fa-mercury::before {\n content: \"\\f223\";\n}\n\n.fa-arrow-turn-down::before {\n content: \"\\f149\";\n}\n\n.fa-level-down::before {\n content: \"\\f149\";\n}\n\n.fa-person-falling-burst::before {\n content: \"\\e547\";\n}\n\n.fa-award::before {\n content: \"\\f559\";\n}\n\n.fa-ticket-simple::before {\n content: \"\\f3ff\";\n}\n\n.fa-ticket-alt::before {\n content: \"\\f3ff\";\n}\n\n.fa-building::before {\n content: \"\\f1ad\";\n}\n\n.fa-angles-left::before {\n content: \"\\f100\";\n}\n\n.fa-angle-double-left::before {\n content: \"\\f100\";\n}\n\n.fa-qrcode::before {\n content: \"\\f029\";\n}\n\n.fa-clock-rotate-left::before {\n content: \"\\f1da\";\n}\n\n.fa-history::before {\n content: \"\\f1da\";\n}\n\n.fa-face-grin-beam-sweat::before {\n content: \"\\f583\";\n}\n\n.fa-grin-beam-sweat::before {\n content: \"\\f583\";\n}\n\n.fa-file-export::before {\n content: \"\\f56e\";\n}\n\n.fa-arrow-right-from-file::before {\n content: \"\\f56e\";\n}\n\n.fa-shield::before {\n content: \"\\f132\";\n}\n\n.fa-shield-blank::before {\n content: \"\\f132\";\n}\n\n.fa-arrow-up-short-wide::before {\n content: \"\\f885\";\n}\n\n.fa-sort-amount-up-alt::before {\n content: \"\\f885\";\n}\n\n.fa-house-medical::before {\n content: \"\\e3b2\";\n}\n\n.fa-golf-ball-tee::before {\n content: \"\\f450\";\n}\n\n.fa-golf-ball::before {\n content: \"\\f450\";\n}\n\n.fa-circle-chevron-left::before {\n content: \"\\f137\";\n}\n\n.fa-chevron-circle-left::before {\n content: \"\\f137\";\n}\n\n.fa-house-chimney-window::before {\n content: \"\\e00d\";\n}\n\n.fa-pen-nib::before {\n content: \"\\f5ad\";\n}\n\n.fa-tent-arrow-turn-left::before {\n content: \"\\e580\";\n}\n\n.fa-tents::before {\n content: \"\\e582\";\n}\n\n.fa-wand-magic::before {\n content: \"\\f0d0\";\n}\n\n.fa-magic::before {\n content: \"\\f0d0\";\n}\n\n.fa-dog::before {\n content: \"\\f6d3\";\n}\n\n.fa-carrot::before {\n content: \"\\f787\";\n}\n\n.fa-moon::before {\n content: \"\\f186\";\n}\n\n.fa-wine-glass-empty::before {\n content: \"\\f5ce\";\n}\n\n.fa-wine-glass-alt::before {\n content: \"\\f5ce\";\n}\n\n.fa-cheese::before {\n content: \"\\f7ef\";\n}\n\n.fa-yin-yang::before {\n content: \"\\f6ad\";\n}\n\n.fa-music::before {\n content: \"\\f001\";\n}\n\n.fa-code-commit::before {\n content: \"\\f386\";\n}\n\n.fa-temperature-low::before {\n content: \"\\f76b\";\n}\n\n.fa-person-biking::before {\n content: \"\\f84a\";\n}\n\n.fa-biking::before {\n content: \"\\f84a\";\n}\n\n.fa-broom::before {\n content: \"\\f51a\";\n}\n\n.fa-shield-heart::before {\n content: \"\\e574\";\n}\n\n.fa-gopuram::before {\n content: \"\\f664\";\n}\n\n.fa-earth-oceania::before {\n content: \"\\e47b\";\n}\n\n.fa-globe-oceania::before {\n content: \"\\e47b\";\n}\n\n.fa-square-xmark::before {\n content: \"\\f2d3\";\n}\n\n.fa-times-square::before {\n content: \"\\f2d3\";\n}\n\n.fa-xmark-square::before {\n content: \"\\f2d3\";\n}\n\n.fa-hashtag::before {\n content: \"#\";\n}\n\n.fa-up-right-and-down-left-from-center::before {\n content: \"\\f424\";\n}\n\n.fa-expand-alt::before {\n content: \"\\f424\";\n}\n\n.fa-oil-can::before {\n content: \"\\f613\";\n}\n\n.fa-t::before {\n content: \"T\";\n}\n\n.fa-hippo::before {\n content: \"\\f6ed\";\n}\n\n.fa-chart-column::before {\n content: \"\\e0e3\";\n}\n\n.fa-infinity::before {\n content: \"\\f534\";\n}\n\n.fa-vial-circle-check::before {\n content: \"\\e596\";\n}\n\n.fa-person-arrow-down-to-line::before {\n content: \"\\e538\";\n}\n\n.fa-voicemail::before {\n content: \"\\f897\";\n}\n\n.fa-fan::before {\n content: \"\\f863\";\n}\n\n.fa-person-walking-luggage::before {\n content: \"\\e554\";\n}\n\n.fa-up-down::before {\n content: \"\\f338\";\n}\n\n.fa-arrows-alt-v::before {\n content: \"\\f338\";\n}\n\n.fa-cloud-moon-rain::before {\n content: \"\\f73c\";\n}\n\n.fa-calendar::before {\n content: \"\\f133\";\n}\n\n.fa-trailer::before {\n content: \"\\e041\";\n}\n\n.fa-bahai::before {\n content: \"\\f666\";\n}\n\n.fa-haykal::before {\n content: \"\\f666\";\n}\n\n.fa-sd-card::before {\n content: \"\\f7c2\";\n}\n\n.fa-dragon::before {\n content: \"\\f6d5\";\n}\n\n.fa-shoe-prints::before {\n content: \"\\f54b\";\n}\n\n.fa-circle-plus::before {\n content: \"\\f055\";\n}\n\n.fa-plus-circle::before {\n content: \"\\f055\";\n}\n\n.fa-face-grin-tongue-wink::before {\n content: \"\\f58b\";\n}\n\n.fa-grin-tongue-wink::before {\n content: \"\\f58b\";\n}\n\n.fa-hand-holding::before {\n content: \"\\f4bd\";\n}\n\n.fa-plug-circle-exclamation::before {\n content: \"\\e55d\";\n}\n\n.fa-link-slash::before {\n content: \"\\f127\";\n}\n\n.fa-chain-broken::before {\n content: \"\\f127\";\n}\n\n.fa-chain-slash::before {\n content: \"\\f127\";\n}\n\n.fa-unlink::before {\n content: \"\\f127\";\n}\n\n.fa-clone::before {\n content: \"\\f24d\";\n}\n\n.fa-person-walking-arrow-loop-left::before {\n content: \"\\e551\";\n}\n\n.fa-arrow-up-z-a::before {\n content: \"\\f882\";\n}\n\n.fa-sort-alpha-up-alt::before {\n content: \"\\f882\";\n}\n\n.fa-fire-flame-curved::before {\n content: \"\\f7e4\";\n}\n\n.fa-fire-alt::before {\n content: \"\\f7e4\";\n}\n\n.fa-tornado::before {\n content: \"\\f76f\";\n}\n\n.fa-file-circle-plus::before {\n content: \"\\e494\";\n}\n\n.fa-book-quran::before {\n content: \"\\f687\";\n}\n\n.fa-quran::before {\n content: \"\\f687\";\n}\n\n.fa-anchor::before {\n content: \"\\f13d\";\n}\n\n.fa-border-all::before {\n content: \"\\f84c\";\n}\n\n.fa-face-angry::before {\n content: \"\\f556\";\n}\n\n.fa-angry::before {\n content: \"\\f556\";\n}\n\n.fa-cookie-bite::before {\n content: \"\\f564\";\n}\n\n.fa-arrow-trend-down::before {\n content: \"\\e097\";\n}\n\n.fa-rss::before {\n content: \"\\f09e\";\n}\n\n.fa-feed::before {\n content: \"\\f09e\";\n}\n\n.fa-draw-polygon::before {\n content: \"\\f5ee\";\n}\n\n.fa-scale-balanced::before {\n content: \"\\f24e\";\n}\n\n.fa-balance-scale::before {\n content: \"\\f24e\";\n}\n\n.fa-gauge-simple-high::before {\n content: \"\\f62a\";\n}\n\n.fa-tachometer::before {\n content: \"\\f62a\";\n}\n\n.fa-tachometer-fast::before {\n content: \"\\f62a\";\n}\n\n.fa-shower::before {\n content: \"\\f2cc\";\n}\n\n.fa-desktop::before {\n content: \"\\f390\";\n}\n\n.fa-desktop-alt::before {\n content: \"\\f390\";\n}\n\n.fa-m::before {\n content: \"M\";\n}\n\n.fa-table-list::before {\n content: \"\\f00b\";\n}\n\n.fa-th-list::before {\n content: \"\\f00b\";\n}\n\n.fa-comment-sms::before {\n content: \"\\f7cd\";\n}\n\n.fa-sms::before {\n content: \"\\f7cd\";\n}\n\n.fa-book::before {\n content: \"\\f02d\";\n}\n\n.fa-user-plus::before {\n content: \"\\f234\";\n}\n\n.fa-check::before {\n content: \"\\f00c\";\n}\n\n.fa-battery-three-quarters::before {\n content: \"\\f241\";\n}\n\n.fa-battery-4::before {\n content: \"\\f241\";\n}\n\n.fa-house-circle-check::before {\n content: \"\\e509\";\n}\n\n.fa-angle-left::before {\n content: \"\\f104\";\n}\n\n.fa-diagram-successor::before {\n content: \"\\e47a\";\n}\n\n.fa-truck-arrow-right::before {\n content: \"\\e58b\";\n}\n\n.fa-arrows-split-up-and-left::before {\n content: \"\\e4bc\";\n}\n\n.fa-hand-fist::before {\n content: \"\\f6de\";\n}\n\n.fa-fist-raised::before {\n content: \"\\f6de\";\n}\n\n.fa-cloud-moon::before {\n content: \"\\f6c3\";\n}\n\n.fa-briefcase::before {\n content: \"\\f0b1\";\n}\n\n.fa-person-falling::before {\n content: \"\\e546\";\n}\n\n.fa-image-portrait::before {\n content: \"\\f3e0\";\n}\n\n.fa-portrait::before {\n content: \"\\f3e0\";\n}\n\n.fa-user-tag::before {\n content: \"\\f507\";\n}\n\n.fa-rug::before {\n content: \"\\e569\";\n}\n\n.fa-earth-europe::before {\n content: \"\\f7a2\";\n}\n\n.fa-globe-europe::before {\n content: \"\\f7a2\";\n}\n\n.fa-cart-flatbed-suitcase::before {\n content: \"\\f59d\";\n}\n\n.fa-luggage-cart::before {\n content: \"\\f59d\";\n}\n\n.fa-rectangle-xmark::before {\n content: \"\\f410\";\n}\n\n.fa-rectangle-times::before {\n content: \"\\f410\";\n}\n\n.fa-times-rectangle::before {\n content: \"\\f410\";\n}\n\n.fa-window-close::before {\n content: \"\\f410\";\n}\n\n.fa-baht-sign::before {\n content: \"\\e0ac\";\n}\n\n.fa-book-open::before {\n content: \"\\f518\";\n}\n\n.fa-book-journal-whills::before {\n content: \"\\f66a\";\n}\n\n.fa-journal-whills::before {\n content: \"\\f66a\";\n}\n\n.fa-handcuffs::before {\n content: \"\\e4f8\";\n}\n\n.fa-triangle-exclamation::before {\n content: \"\\f071\";\n}\n\n.fa-exclamation-triangle::before {\n content: \"\\f071\";\n}\n\n.fa-warning::before {\n content: \"\\f071\";\n}\n\n.fa-database::before {\n content: \"\\f1c0\";\n}\n\n.fa-share::before {\n content: \"\\f064\";\n}\n\n.fa-arrow-turn-right::before {\n content: \"\\f064\";\n}\n\n.fa-mail-forward::before {\n content: \"\\f064\";\n}\n\n.fa-bottle-droplet::before {\n content: \"\\e4c4\";\n}\n\n.fa-mask-face::before {\n content: \"\\e1d7\";\n}\n\n.fa-hill-rockslide::before {\n content: \"\\e508\";\n}\n\n.fa-right-left::before {\n content: \"\\f362\";\n}\n\n.fa-exchange-alt::before {\n content: \"\\f362\";\n}\n\n.fa-paper-plane::before {\n content: \"\\f1d8\";\n}\n\n.fa-road-circle-exclamation::before {\n content: \"\\e565\";\n}\n\n.fa-dungeon::before {\n content: \"\\f6d9\";\n}\n\n.fa-align-right::before {\n content: \"\\f038\";\n}\n\n.fa-money-bill-1-wave::before {\n content: \"\\f53b\";\n}\n\n.fa-money-bill-wave-alt::before {\n content: \"\\f53b\";\n}\n\n.fa-life-ring::before {\n content: \"\\f1cd\";\n}\n\n.fa-hands::before {\n content: \"\\f2a7\";\n}\n\n.fa-sign-language::before {\n content: \"\\f2a7\";\n}\n\n.fa-signing::before {\n content: \"\\f2a7\";\n}\n\n.fa-calendar-day::before {\n content: \"\\f783\";\n}\n\n.fa-water-ladder::before {\n content: \"\\f5c5\";\n}\n\n.fa-ladder-water::before {\n content: \"\\f5c5\";\n}\n\n.fa-swimming-pool::before {\n content: \"\\f5c5\";\n}\n\n.fa-arrows-up-down::before {\n content: \"\\f07d\";\n}\n\n.fa-arrows-v::before {\n content: \"\\f07d\";\n}\n\n.fa-face-grimace::before {\n content: \"\\f57f\";\n}\n\n.fa-grimace::before {\n content: \"\\f57f\";\n}\n\n.fa-wheelchair-move::before {\n content: \"\\e2ce\";\n}\n\n.fa-wheelchair-alt::before {\n content: \"\\e2ce\";\n}\n\n.fa-turn-down::before {\n content: \"\\f3be\";\n}\n\n.fa-level-down-alt::before {\n content: \"\\f3be\";\n}\n\n.fa-person-walking-arrow-right::before {\n content: \"\\e552\";\n}\n\n.fa-square-envelope::before {\n content: \"\\f199\";\n}\n\n.fa-envelope-square::before {\n content: \"\\f199\";\n}\n\n.fa-dice::before {\n content: \"\\f522\";\n}\n\n.fa-bowling-ball::before {\n content: \"\\f436\";\n}\n\n.fa-brain::before {\n content: \"\\f5dc\";\n}\n\n.fa-bandage::before {\n content: \"\\f462\";\n}\n\n.fa-band-aid::before {\n content: \"\\f462\";\n}\n\n.fa-calendar-minus::before {\n content: \"\\f272\";\n}\n\n.fa-circle-xmark::before {\n content: \"\\f057\";\n}\n\n.fa-times-circle::before {\n content: \"\\f057\";\n}\n\n.fa-xmark-circle::before {\n content: \"\\f057\";\n}\n\n.fa-gifts::before {\n content: \"\\f79c\";\n}\n\n.fa-hotel::before {\n content: \"\\f594\";\n}\n\n.fa-earth-asia::before {\n content: \"\\f57e\";\n}\n\n.fa-globe-asia::before {\n content: \"\\f57e\";\n}\n\n.fa-id-card-clip::before {\n content: \"\\f47f\";\n}\n\n.fa-id-card-alt::before {\n content: \"\\f47f\";\n}\n\n.fa-magnifying-glass-plus::before {\n content: \"\\f00e\";\n}\n\n.fa-search-plus::before {\n content: \"\\f00e\";\n}\n\n.fa-thumbs-up::before {\n content: \"\\f164\";\n}\n\n.fa-user-clock::before {\n content: \"\\f4fd\";\n}\n\n.fa-hand-dots::before {\n content: \"\\f461\";\n}\n\n.fa-allergies::before {\n content: \"\\f461\";\n}\n\n.fa-file-invoice::before {\n content: \"\\f570\";\n}\n\n.fa-window-minimize::before {\n content: \"\\f2d1\";\n}\n\n.fa-mug-saucer::before {\n content: \"\\f0f4\";\n}\n\n.fa-coffee::before {\n content: \"\\f0f4\";\n}\n\n.fa-brush::before {\n content: \"\\f55d\";\n}\n\n.fa-mask::before {\n content: \"\\f6fa\";\n}\n\n.fa-magnifying-glass-minus::before {\n content: \"\\f010\";\n}\n\n.fa-search-minus::before {\n content: \"\\f010\";\n}\n\n.fa-ruler-vertical::before {\n content: \"\\f548\";\n}\n\n.fa-user-large::before {\n content: \"\\f406\";\n}\n\n.fa-user-alt::before {\n content: \"\\f406\";\n}\n\n.fa-train-tram::before {\n content: \"\\e5b4\";\n}\n\n.fa-user-nurse::before {\n content: \"\\f82f\";\n}\n\n.fa-syringe::before {\n content: \"\\f48e\";\n}\n\n.fa-cloud-sun::before {\n content: \"\\f6c4\";\n}\n\n.fa-stopwatch-20::before {\n content: \"\\e06f\";\n}\n\n.fa-square-full::before {\n content: \"\\f45c\";\n}\n\n.fa-magnet::before {\n content: \"\\f076\";\n}\n\n.fa-jar::before {\n content: \"\\e516\";\n}\n\n.fa-note-sticky::before {\n content: \"\\f249\";\n}\n\n.fa-sticky-note::before {\n content: \"\\f249\";\n}\n\n.fa-bug-slash::before {\n content: \"\\e490\";\n}\n\n.fa-arrow-up-from-water-pump::before {\n content: \"\\e4b6\";\n}\n\n.fa-bone::before {\n content: \"\\f5d7\";\n}\n\n.fa-user-injured::before {\n content: \"\\f728\";\n}\n\n.fa-face-sad-tear::before {\n content: \"\\f5b4\";\n}\n\n.fa-sad-tear::before {\n content: \"\\f5b4\";\n}\n\n.fa-plane::before {\n content: \"\\f072\";\n}\n\n.fa-tent-arrows-down::before {\n content: \"\\e581\";\n}\n\n.fa-exclamation::before {\n content: \"!\";\n}\n\n.fa-arrows-spin::before {\n content: \"\\e4bb\";\n}\n\n.fa-print::before {\n content: \"\\f02f\";\n}\n\n.fa-turkish-lira-sign::before {\n content: \"\\e2bb\";\n}\n\n.fa-try::before {\n content: \"\\e2bb\";\n}\n\n.fa-turkish-lira::before {\n content: \"\\e2bb\";\n}\n\n.fa-dollar-sign::before {\n content: \"$\";\n}\n\n.fa-dollar::before {\n content: \"$\";\n}\n\n.fa-usd::before {\n content: \"$\";\n}\n\n.fa-x::before {\n content: \"X\";\n}\n\n.fa-magnifying-glass-dollar::before {\n content: \"\\f688\";\n}\n\n.fa-search-dollar::before {\n content: \"\\f688\";\n}\n\n.fa-users-gear::before {\n content: \"\\f509\";\n}\n\n.fa-users-cog::before {\n content: \"\\f509\";\n}\n\n.fa-person-military-pointing::before {\n content: \"\\e54a\";\n}\n\n.fa-building-columns::before {\n content: \"\\f19c\";\n}\n\n.fa-bank::before {\n content: \"\\f19c\";\n}\n\n.fa-institution::before {\n content: \"\\f19c\";\n}\n\n.fa-museum::before {\n content: \"\\f19c\";\n}\n\n.fa-university::before {\n content: \"\\f19c\";\n}\n\n.fa-umbrella::before {\n content: \"\\f0e9\";\n}\n\n.fa-trowel::before {\n content: \"\\e589\";\n}\n\n.fa-d::before {\n content: \"D\";\n}\n\n.fa-stapler::before {\n content: \"\\e5af\";\n}\n\n.fa-masks-theater::before {\n content: \"\\f630\";\n}\n\n.fa-theater-masks::before {\n content: \"\\f630\";\n}\n\n.fa-kip-sign::before {\n content: \"\\e1c4\";\n}\n\n.fa-hand-point-left::before {\n content: \"\\f0a5\";\n}\n\n.fa-handshake-simple::before {\n content: \"\\f4c6\";\n}\n\n.fa-handshake-alt::before {\n content: \"\\f4c6\";\n}\n\n.fa-jet-fighter::before {\n content: \"\\f0fb\";\n}\n\n.fa-fighter-jet::before {\n content: \"\\f0fb\";\n}\n\n.fa-square-share-nodes::before {\n content: \"\\f1e1\";\n}\n\n.fa-share-alt-square::before {\n content: \"\\f1e1\";\n}\n\n.fa-barcode::before {\n content: \"\\f02a\";\n}\n\n.fa-plus-minus::before {\n content: \"\\e43c\";\n}\n\n.fa-video::before {\n content: \"\\f03d\";\n}\n\n.fa-video-camera::before {\n content: \"\\f03d\";\n}\n\n.fa-graduation-cap::before {\n content: \"\\f19d\";\n}\n\n.fa-mortar-board::before {\n content: \"\\f19d\";\n}\n\n.fa-hand-holding-medical::before {\n content: \"\\e05c\";\n}\n\n.fa-person-circle-check::before {\n content: \"\\e53e\";\n}\n\n.fa-turn-up::before {\n content: \"\\f3bf\";\n}\n\n.fa-level-up-alt::before {\n content: \"\\f3bf\";\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n:root, :host {\n --fa-style-family-brands: \"Font Awesome 6 Brands\";\n --fa-font-brands: normal 400 1em/1 \"Font Awesome 6 Brands\";\n}\n\n@font-face {\n font-family: \"Font Awesome 6 Brands\";\n font-style: normal;\n font-weight: 400;\n font-display: block;\n src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\");\n}\n.fab,\n.fa-brands {\n font-weight: 400;\n}\n\n.fa-monero:before {\n content: \"\\f3d0\";\n}\n\n.fa-hooli:before {\n content: \"\\f427\";\n}\n\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n\n.fa-shopware:before {\n content: \"\\f5b5\";\n}\n\n.fa-creative-commons-nc:before {\n content: \"\\f4e8\";\n}\n\n.fa-aws:before {\n content: \"\\f375\";\n}\n\n.fa-redhat:before {\n content: \"\\f7bc\";\n}\n\n.fa-yoast:before {\n content: \"\\f2b1\";\n}\n\n.fa-cloudflare:before {\n content: \"\\e07d\";\n}\n\n.fa-ups:before {\n content: \"\\f7e0\";\n}\n\n.fa-wpexplorer:before {\n content: \"\\f2de\";\n}\n\n.fa-dyalog:before {\n content: \"\\f399\";\n}\n\n.fa-bity:before {\n content: \"\\f37a\";\n}\n\n.fa-stackpath:before {\n content: \"\\f842\";\n}\n\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n\n.fa-first-order:before {\n content: \"\\f2b0\";\n}\n\n.fa-modx:before {\n content: \"\\f285\";\n}\n\n.fa-guilded:before {\n content: \"\\e07e\";\n}\n\n.fa-vnv:before {\n content: \"\\f40b\";\n}\n\n.fa-square-js:before {\n content: \"\\f3b9\";\n}\n\n.fa-js-square:before {\n content: \"\\f3b9\";\n}\n\n.fa-microsoft:before {\n content: \"\\f3ca\";\n}\n\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n\n.fa-orcid:before {\n content: \"\\f8d2\";\n}\n\n.fa-java:before {\n content: \"\\f4e4\";\n}\n\n.fa-invision:before {\n content: \"\\f7b0\";\n}\n\n.fa-creative-commons-pd-alt:before {\n content: \"\\f4ed\";\n}\n\n.fa-centercode:before {\n content: \"\\f380\";\n}\n\n.fa-glide-g:before {\n content: \"\\f2a6\";\n}\n\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n\n.fa-hire-a-helper:before {\n content: \"\\f3b0\";\n}\n\n.fa-creative-commons-by:before {\n content: \"\\f4e7\";\n}\n\n.fa-unity:before {\n content: \"\\e049\";\n}\n\n.fa-whmcs:before {\n content: \"\\f40d\";\n}\n\n.fa-rocketchat:before {\n content: \"\\f3e8\";\n}\n\n.fa-vk:before {\n content: \"\\f189\";\n}\n\n.fa-untappd:before {\n content: \"\\f405\";\n}\n\n.fa-mailchimp:before {\n content: \"\\f59e\";\n}\n\n.fa-css3-alt:before {\n content: \"\\f38b\";\n}\n\n.fa-square-reddit:before {\n content: \"\\f1a2\";\n}\n\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n\n.fa-vimeo-v:before {\n content: \"\\f27d\";\n}\n\n.fa-contao:before {\n content: \"\\f26d\";\n}\n\n.fa-square-font-awesome:before {\n content: \"\\e5ad\";\n}\n\n.fa-deskpro:before {\n content: \"\\f38f\";\n}\n\n.fa-sistrix:before {\n content: \"\\f3ee\";\n}\n\n.fa-square-instagram:before {\n content: \"\\e055\";\n}\n\n.fa-instagram-square:before {\n content: \"\\e055\";\n}\n\n.fa-battle-net:before {\n content: \"\\f835\";\n}\n\n.fa-the-red-yeti:before {\n content: \"\\f69d\";\n}\n\n.fa-square-hacker-news:before {\n content: \"\\f3af\";\n}\n\n.fa-hacker-news-square:before {\n content: \"\\f3af\";\n}\n\n.fa-edge:before {\n content: \"\\f282\";\n}\n\n.fa-threads:before {\n content: \"\\e618\";\n}\n\n.fa-napster:before {\n content: \"\\f3d2\";\n}\n\n.fa-square-snapchat:before {\n content: \"\\f2ad\";\n}\n\n.fa-snapchat-square:before {\n content: \"\\f2ad\";\n}\n\n.fa-google-plus-g:before {\n content: \"\\f0d5\";\n}\n\n.fa-artstation:before {\n content: \"\\f77a\";\n}\n\n.fa-markdown:before {\n content: \"\\f60f\";\n}\n\n.fa-sourcetree:before {\n content: \"\\f7d3\";\n}\n\n.fa-google-plus:before {\n content: \"\\f2b3\";\n}\n\n.fa-diaspora:before {\n content: \"\\f791\";\n}\n\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n\n.fa-phoenix-squadron:before {\n content: \"\\f511\";\n}\n\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n\n.fa-algolia:before {\n content: \"\\f36c\";\n}\n\n.fa-red-river:before {\n content: \"\\f3e3\";\n}\n\n.fa-creative-commons-sa:before {\n content: \"\\f4ef\";\n}\n\n.fa-safari:before {\n content: \"\\f267\";\n}\n\n.fa-google:before {\n content: \"\\f1a0\";\n}\n\n.fa-square-font-awesome-stroke:before {\n content: \"\\f35c\";\n}\n\n.fa-font-awesome-alt:before {\n content: \"\\f35c\";\n}\n\n.fa-atlassian:before {\n content: \"\\f77b\";\n}\n\n.fa-linkedin-in:before {\n content: \"\\f0e1\";\n}\n\n.fa-digital-ocean:before {\n content: \"\\f391\";\n}\n\n.fa-nimblr:before {\n content: \"\\f5a8\";\n}\n\n.fa-chromecast:before {\n content: \"\\f838\";\n}\n\n.fa-evernote:before {\n content: \"\\f839\";\n}\n\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n\n.fa-creative-commons-sampling:before {\n content: \"\\f4f0\";\n}\n\n.fa-adversal:before {\n content: \"\\f36a\";\n}\n\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n\n.fa-watchman-monitoring:before {\n content: \"\\e087\";\n}\n\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n\n.fa-git-alt:before {\n content: \"\\f841\";\n}\n\n.fa-lyft:before {\n content: \"\\f3c3\";\n}\n\n.fa-rev:before {\n content: \"\\f5b2\";\n}\n\n.fa-windows:before {\n content: \"\\f17a\";\n}\n\n.fa-wizards-of-the-coast:before {\n content: \"\\f730\";\n}\n\n.fa-square-viadeo:before {\n content: \"\\f2aa\";\n}\n\n.fa-viadeo-square:before {\n content: \"\\f2aa\";\n}\n\n.fa-meetup:before {\n content: \"\\f2e0\";\n}\n\n.fa-centos:before {\n content: \"\\f789\";\n}\n\n.fa-adn:before {\n content: \"\\f170\";\n}\n\n.fa-cloudsmith:before {\n content: \"\\f384\";\n}\n\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n\n.fa-square-dribbble:before {\n content: \"\\f397\";\n}\n\n.fa-dribbble-square:before {\n content: \"\\f397\";\n}\n\n.fa-codiepie:before {\n content: \"\\f284\";\n}\n\n.fa-node:before {\n content: \"\\f419\";\n}\n\n.fa-mix:before {\n content: \"\\f3cb\";\n}\n\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n\n.fa-cc-apple-pay:before {\n content: \"\\f416\";\n}\n\n.fa-scribd:before {\n content: \"\\f28a\";\n}\n\n.fa-debian:before {\n content: \"\\e60b\";\n}\n\n.fa-openid:before {\n content: \"\\f19b\";\n}\n\n.fa-instalod:before {\n content: \"\\e081\";\n}\n\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n\n.fa-sellcast:before {\n content: \"\\f2da\";\n}\n\n.fa-square-twitter:before {\n content: \"\\f081\";\n}\n\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n\n.fa-r-project:before {\n content: \"\\f4f7\";\n}\n\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n\n.fa-freebsd:before {\n content: \"\\f3a4\";\n}\n\n.fa-vuejs:before {\n content: \"\\f41f\";\n}\n\n.fa-accusoft:before {\n content: \"\\f369\";\n}\n\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n\n.fa-fonticons-fi:before {\n content: \"\\f3a2\";\n}\n\n.fa-app-store:before {\n content: \"\\f36f\";\n}\n\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n\n.fa-itunes-note:before {\n content: \"\\f3b5\";\n}\n\n.fa-golang:before {\n content: \"\\e40f\";\n}\n\n.fa-kickstarter:before {\n content: \"\\f3bb\";\n}\n\n.fa-grav:before {\n content: \"\\f2d6\";\n}\n\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n\n.fa-uncharted:before {\n content: \"\\e084\";\n}\n\n.fa-firstdraft:before {\n content: \"\\f3a1\";\n}\n\n.fa-square-youtube:before {\n content: \"\\f431\";\n}\n\n.fa-youtube-square:before {\n content: \"\\f431\";\n}\n\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n\n.fa-wpressr:before {\n content: \"\\f3e4\";\n}\n\n.fa-rendact:before {\n content: \"\\f3e4\";\n}\n\n.fa-angellist:before {\n content: \"\\f209\";\n}\n\n.fa-galactic-republic:before {\n content: \"\\f50c\";\n}\n\n.fa-nfc-directional:before {\n content: \"\\e530\";\n}\n\n.fa-skype:before {\n content: \"\\f17e\";\n}\n\n.fa-joget:before {\n content: \"\\f3b7\";\n}\n\n.fa-fedora:before {\n content: \"\\f798\";\n}\n\n.fa-stripe-s:before {\n content: \"\\f42a\";\n}\n\n.fa-meta:before {\n content: \"\\e49b\";\n}\n\n.fa-laravel:before {\n content: \"\\f3bd\";\n}\n\n.fa-hotjar:before {\n content: \"\\f3b1\";\n}\n\n.fa-bluetooth-b:before {\n content: \"\\f294\";\n}\n\n.fa-sticker-mule:before {\n content: \"\\f3f7\";\n}\n\n.fa-creative-commons-zero:before {\n content: \"\\f4f3\";\n}\n\n.fa-hips:before {\n content: \"\\f452\";\n}\n\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n\n.fa-discord:before {\n content: \"\\f392\";\n}\n\n.fa-chrome:before {\n content: \"\\f268\";\n}\n\n.fa-app-store-ios:before {\n content: \"\\f370\";\n}\n\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n\n.fa-wpbeginner:before {\n content: \"\\f297\";\n}\n\n.fa-confluence:before {\n content: \"\\f78d\";\n}\n\n.fa-mdb:before {\n content: \"\\f8ca\";\n}\n\n.fa-dochub:before {\n content: \"\\f394\";\n}\n\n.fa-accessible-icon:before {\n content: \"\\f368\";\n}\n\n.fa-ebay:before {\n content: \"\\f4f4\";\n}\n\n.fa-amazon:before {\n content: \"\\f270\";\n}\n\n.fa-unsplash:before {\n content: \"\\e07c\";\n}\n\n.fa-yarn:before {\n content: \"\\f7e3\";\n}\n\n.fa-square-steam:before {\n content: \"\\f1b7\";\n}\n\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n\n.fa-500px:before {\n content: \"\\f26e\";\n}\n\n.fa-square-vimeo:before {\n content: \"\\f194\";\n}\n\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n\n.fa-asymmetrik:before {\n content: \"\\f372\";\n}\n\n.fa-font-awesome:before {\n content: \"\\f2b4\";\n}\n\n.fa-font-awesome-flag:before {\n content: \"\\f2b4\";\n}\n\n.fa-font-awesome-logo-full:before {\n content: \"\\f2b4\";\n}\n\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n\n.fa-apple:before {\n content: \"\\f179\";\n}\n\n.fa-hive:before {\n content: \"\\e07f\";\n}\n\n.fa-gitkraken:before {\n content: \"\\f3a6\";\n}\n\n.fa-keybase:before {\n content: \"\\f4f5\";\n}\n\n.fa-apple-pay:before {\n content: \"\\f415\";\n}\n\n.fa-padlet:before {\n content: \"\\e4a0\";\n}\n\n.fa-amazon-pay:before {\n content: \"\\f42c\";\n}\n\n.fa-square-github:before {\n content: \"\\f092\";\n}\n\n.fa-github-square:before {\n content: \"\\f092\";\n}\n\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n\n.fa-fedex:before {\n content: \"\\f797\";\n}\n\n.fa-phoenix-framework:before {\n content: \"\\f3dc\";\n}\n\n.fa-shopify:before {\n content: \"\\e057\";\n}\n\n.fa-neos:before {\n content: \"\\f612\";\n}\n\n.fa-square-threads:before {\n content: \"\\e619\";\n}\n\n.fa-hackerrank:before {\n content: \"\\f5f7\";\n}\n\n.fa-researchgate:before {\n content: \"\\f4f8\";\n}\n\n.fa-swift:before {\n content: \"\\f8e1\";\n}\n\n.fa-angular:before {\n content: \"\\f420\";\n}\n\n.fa-speakap:before {\n content: \"\\f3f3\";\n}\n\n.fa-angrycreative:before {\n content: \"\\f36e\";\n}\n\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n\n.fa-envira:before {\n content: \"\\f299\";\n}\n\n.fa-square-gitlab:before {\n content: \"\\e5ae\";\n}\n\n.fa-gitlab-square:before {\n content: \"\\e5ae\";\n}\n\n.fa-studiovinari:before {\n content: \"\\f3f8\";\n}\n\n.fa-pied-piper:before {\n content: \"\\f2ae\";\n}\n\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n\n.fa-product-hunt:before {\n content: \"\\f288\";\n}\n\n.fa-firefox:before {\n content: \"\\f269\";\n}\n\n.fa-linode:before {\n content: \"\\f2b8\";\n}\n\n.fa-goodreads:before {\n content: \"\\f3a8\";\n}\n\n.fa-square-odnoklassniki:before {\n content: \"\\f264\";\n}\n\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n\n.fa-sith:before {\n content: \"\\f512\";\n}\n\n.fa-themeisle:before {\n content: \"\\f2b2\";\n}\n\n.fa-page4:before {\n content: \"\\f3d7\";\n}\n\n.fa-hashnode:before {\n content: \"\\e499\";\n}\n\n.fa-react:before {\n content: \"\\f41b\";\n}\n\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n\n.fa-squarespace:before {\n content: \"\\f5be\";\n}\n\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n\n.fa-creative-commons-share:before {\n content: \"\\f4f2\";\n}\n\n.fa-bitcoin:before {\n content: \"\\f379\";\n}\n\n.fa-keycdn:before {\n content: \"\\f3ba\";\n}\n\n.fa-opera:before {\n content: \"\\f26a\";\n}\n\n.fa-itch-io:before {\n content: \"\\f83a\";\n}\n\n.fa-umbraco:before {\n content: \"\\f8e8\";\n}\n\n.fa-galactic-senate:before {\n content: \"\\f50d\";\n}\n\n.fa-ubuntu:before {\n content: \"\\f7df\";\n}\n\n.fa-draft2digital:before {\n content: \"\\f396\";\n}\n\n.fa-stripe:before {\n content: \"\\f429\";\n}\n\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n\n.fa-gg:before {\n content: \"\\f260\";\n}\n\n.fa-dhl:before {\n content: \"\\f790\";\n}\n\n.fa-square-pinterest:before {\n content: \"\\f0d3\";\n}\n\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n\n.fa-xing:before {\n content: \"\\f168\";\n}\n\n.fa-blackberry:before {\n content: \"\\f37b\";\n}\n\n.fa-creative-commons-pd:before {\n content: \"\\f4ec\";\n}\n\n.fa-playstation:before {\n content: \"\\f3df\";\n}\n\n.fa-quinscape:before {\n content: \"\\f459\";\n}\n\n.fa-less:before {\n content: \"\\f41d\";\n}\n\n.fa-blogger-b:before {\n content: \"\\f37d\";\n}\n\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n\n.fa-gitlab:before {\n content: \"\\f296\";\n}\n\n.fa-typo3:before {\n content: \"\\f42b\";\n}\n\n.fa-reddit-alien:before {\n content: \"\\f281\";\n}\n\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n\n.fa-dailymotion:before {\n content: \"\\e052\";\n}\n\n.fa-affiliatetheme:before {\n content: \"\\f36b\";\n}\n\n.fa-pied-piper-pp:before {\n content: \"\\f1a7\";\n}\n\n.fa-bootstrap:before {\n content: \"\\f836\";\n}\n\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n\n.fa-nfc-symbol:before {\n content: \"\\e531\";\n}\n\n.fa-ethereum:before {\n content: \"\\f42e\";\n}\n\n.fa-speaker-deck:before {\n content: \"\\f83c\";\n}\n\n.fa-creative-commons-nc-eu:before {\n content: \"\\f4e9\";\n}\n\n.fa-patreon:before {\n content: \"\\f3d9\";\n}\n\n.fa-avianex:before {\n content: \"\\f374\";\n}\n\n.fa-ello:before {\n content: \"\\f5f1\";\n}\n\n.fa-gofore:before {\n content: \"\\f3a7\";\n}\n\n.fa-bimobject:before {\n content: \"\\f378\";\n}\n\n.fa-facebook-f:before {\n content: \"\\f39e\";\n}\n\n.fa-square-google-plus:before {\n content: \"\\f0d4\";\n}\n\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n\n.fa-mandalorian:before {\n content: \"\\f50f\";\n}\n\n.fa-first-order-alt:before {\n content: \"\\f50a\";\n}\n\n.fa-osi:before {\n content: \"\\f41a\";\n}\n\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n\n.fa-d-and-d-beyond:before {\n content: \"\\f6ca\";\n}\n\n.fa-periscope:before {\n content: \"\\f3da\";\n}\n\n.fa-fulcrum:before {\n content: \"\\f50b\";\n}\n\n.fa-cloudscale:before {\n content: \"\\f383\";\n}\n\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n\n.fa-mizuni:before {\n content: \"\\f3cc\";\n}\n\n.fa-schlix:before {\n content: \"\\f3ea\";\n}\n\n.fa-square-xing:before {\n content: \"\\f169\";\n}\n\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n\n.fa-bandcamp:before {\n content: \"\\f2d5\";\n}\n\n.fa-wpforms:before {\n content: \"\\f298\";\n}\n\n.fa-cloudversify:before {\n content: \"\\f385\";\n}\n\n.fa-usps:before {\n content: \"\\f7e1\";\n}\n\n.fa-megaport:before {\n content: \"\\f5a3\";\n}\n\n.fa-magento:before {\n content: \"\\f3c4\";\n}\n\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n\n.fa-fly:before {\n content: \"\\f417\";\n}\n\n.fa-aviato:before {\n content: \"\\f421\";\n}\n\n.fa-itunes:before {\n content: \"\\f3b4\";\n}\n\n.fa-cuttlefish:before {\n content: \"\\f38c\";\n}\n\n.fa-blogger:before {\n content: \"\\f37c\";\n}\n\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n\n.fa-viber:before {\n content: \"\\f409\";\n}\n\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n\n.fa-symfony:before {\n content: \"\\f83d\";\n}\n\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n\n.fa-etsy:before {\n content: \"\\f2d7\";\n}\n\n.fa-facebook-messenger:before {\n content: \"\\f39f\";\n}\n\n.fa-audible:before {\n content: \"\\f373\";\n}\n\n.fa-think-peaks:before {\n content: \"\\f731\";\n}\n\n.fa-bilibili:before {\n content: \"\\e3d9\";\n}\n\n.fa-erlang:before {\n content: \"\\f39d\";\n}\n\n.fa-x-twitter:before {\n content: \"\\e61b\";\n}\n\n.fa-cotton-bureau:before {\n content: \"\\f89e\";\n}\n\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n\n.fa-42-group:before {\n content: \"\\e080\";\n}\n\n.fa-innosoft:before {\n content: \"\\e080\";\n}\n\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n\n.fa-elementor:before {\n content: \"\\f430\";\n}\n\n.fa-square-pied-piper:before {\n content: \"\\e01e\";\n}\n\n.fa-pied-piper-square:before {\n content: \"\\e01e\";\n}\n\n.fa-creative-commons-nd:before {\n content: \"\\f4eb\";\n}\n\n.fa-palfed:before {\n content: \"\\f3d8\";\n}\n\n.fa-superpowers:before {\n content: \"\\f2dd\";\n}\n\n.fa-resolving:before {\n content: \"\\f3e7\";\n}\n\n.fa-xbox:before {\n content: \"\\f412\";\n}\n\n.fa-searchengin:before {\n content: \"\\f3eb\";\n}\n\n.fa-tiktok:before {\n content: \"\\e07b\";\n}\n\n.fa-square-facebook:before {\n content: \"\\f082\";\n}\n\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n\n.fa-renren:before {\n content: \"\\f18b\";\n}\n\n.fa-linux:before {\n content: \"\\f17c\";\n}\n\n.fa-glide:before {\n content: \"\\f2a5\";\n}\n\n.fa-linkedin:before {\n content: \"\\f08c\";\n}\n\n.fa-hubspot:before {\n content: \"\\f3b2\";\n}\n\n.fa-deploydog:before {\n content: \"\\f38e\";\n}\n\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n\n.fa-ravelry:before {\n content: \"\\f2d9\";\n}\n\n.fa-mixer:before {\n content: \"\\e056\";\n}\n\n.fa-square-lastfm:before {\n content: \"\\f203\";\n}\n\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n\n.fa-vimeo:before {\n content: \"\\f40a\";\n}\n\n.fa-mendeley:before {\n content: \"\\f7b3\";\n}\n\n.fa-uniregistry:before {\n content: \"\\f404\";\n}\n\n.fa-figma:before {\n content: \"\\f799\";\n}\n\n.fa-creative-commons-remix:before {\n content: \"\\f4ee\";\n}\n\n.fa-cc-amazon-pay:before {\n content: \"\\f42d\";\n}\n\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n\n.fa-cmplid:before {\n content: \"\\e360\";\n}\n\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n\n.fa-gripfire:before {\n content: \"\\f3ac\";\n}\n\n.fa-jedi-order:before {\n content: \"\\f50e\";\n}\n\n.fa-uikit:before {\n content: \"\\f403\";\n}\n\n.fa-fort-awesome-alt:before {\n content: \"\\f3a3\";\n}\n\n.fa-phabricator:before {\n content: \"\\f3db\";\n}\n\n.fa-ussunnah:before {\n content: \"\\f407\";\n}\n\n.fa-earlybirds:before {\n content: \"\\f39a\";\n}\n\n.fa-trade-federation:before {\n content: \"\\f513\";\n}\n\n.fa-autoprefixer:before {\n content: \"\\f41c\";\n}\n\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n\n.fa-google-play:before {\n content: \"\\f3ab\";\n}\n\n.fa-viadeo:before {\n content: \"\\f2a9\";\n}\n\n.fa-line:before {\n content: \"\\f3c0\";\n}\n\n.fa-google-drive:before {\n content: \"\\f3aa\";\n}\n\n.fa-servicestack:before {\n content: \"\\f3ec\";\n}\n\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n\n.fa-imdb:before {\n content: \"\\f2d8\";\n}\n\n.fa-deezer:before {\n content: \"\\e077\";\n}\n\n.fa-raspberry-pi:before {\n content: \"\\f7bb\";\n}\n\n.fa-jira:before {\n content: \"\\f7b1\";\n}\n\n.fa-docker:before {\n content: \"\\f395\";\n}\n\n.fa-screenpal:before {\n content: \"\\e570\";\n}\n\n.fa-bluetooth:before {\n content: \"\\f293\";\n}\n\n.fa-gitter:before {\n content: \"\\f426\";\n}\n\n.fa-d-and-d:before {\n content: \"\\f38d\";\n}\n\n.fa-microblog:before {\n content: \"\\e01a\";\n}\n\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n\n.fa-pied-piper-hat:before {\n content: \"\\f4e5\";\n}\n\n.fa-kickstarter-k:before {\n content: \"\\f3bc\";\n}\n\n.fa-yandex:before {\n content: \"\\f413\";\n}\n\n.fa-readme:before {\n content: \"\\f4d5\";\n}\n\n.fa-html5:before {\n content: \"\\f13b\";\n}\n\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n\n.fa-sass:before {\n content: \"\\f41e\";\n}\n\n.fa-wirsindhandwerk:before {\n content: \"\\e2d0\";\n}\n\n.fa-wsh:before {\n content: \"\\e2d0\";\n}\n\n.fa-buromobelexperte:before {\n content: \"\\f37f\";\n}\n\n.fa-salesforce:before {\n content: \"\\f83b\";\n}\n\n.fa-octopus-deploy:before {\n content: \"\\e082\";\n}\n\n.fa-medapps:before {\n content: \"\\f3c6\";\n}\n\n.fa-ns8:before {\n content: \"\\f3d5\";\n}\n\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n\n.fa-apper:before {\n content: \"\\f371\";\n}\n\n.fa-fort-awesome:before {\n content: \"\\f286\";\n}\n\n.fa-waze:before {\n content: \"\\f83f\";\n}\n\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n\n.fa-snapchat:before {\n content: \"\\f2ab\";\n}\n\n.fa-snapchat-ghost:before {\n content: \"\\f2ab\";\n}\n\n.fa-fantasy-flight-games:before {\n content: \"\\f6dc\";\n}\n\n.fa-rust:before {\n content: \"\\e07a\";\n}\n\n.fa-wix:before {\n content: \"\\f5cf\";\n}\n\n.fa-square-behance:before {\n content: \"\\f1b5\";\n}\n\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n\n.fa-supple:before {\n content: \"\\f3f9\";\n}\n\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n\n.fa-css3:before {\n content: \"\\f13c\";\n}\n\n.fa-staylinked:before {\n content: \"\\f3f5\";\n}\n\n.fa-kaggle:before {\n content: \"\\f5fa\";\n}\n\n.fa-space-awesome:before {\n content: \"\\e5ac\";\n}\n\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n\n.fa-cpanel:before {\n content: \"\\f388\";\n}\n\n.fa-goodreads-g:before {\n content: \"\\f3a9\";\n}\n\n.fa-square-git:before {\n content: \"\\f1d2\";\n}\n\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n\n.fa-square-tumblr:before {\n content: \"\\f174\";\n}\n\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n\n.fa-trello:before {\n content: \"\\f181\";\n}\n\n.fa-creative-commons-nc-jp:before {\n content: \"\\f4ea\";\n}\n\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n\n.fa-perbyte:before {\n content: \"\\e083\";\n}\n\n.fa-grunt:before {\n content: \"\\f3ad\";\n}\n\n.fa-weebly:before {\n content: \"\\f5cc\";\n}\n\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n\n.fa-themeco:before {\n content: \"\\f5c6\";\n}\n\n.fa-python:before {\n content: \"\\f3e2\";\n}\n\n.fa-android:before {\n content: \"\\f17b\";\n}\n\n.fa-bots:before {\n content: \"\\e340\";\n}\n\n.fa-free-code-camp:before {\n content: \"\\f2c5\";\n}\n\n.fa-hornbill:before {\n content: \"\\f592\";\n}\n\n.fa-js:before {\n content: \"\\f3b8\";\n}\n\n.fa-ideal:before {\n content: \"\\e013\";\n}\n\n.fa-git:before {\n content: \"\\f1d3\";\n}\n\n.fa-dev:before {\n content: \"\\f6cc\";\n}\n\n.fa-sketch:before {\n content: \"\\f7c6\";\n}\n\n.fa-yandex-international:before {\n content: \"\\f414\";\n}\n\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n\n.fa-uber:before {\n content: \"\\f402\";\n}\n\n.fa-github:before {\n content: \"\\f09b\";\n}\n\n.fa-php:before {\n content: \"\\f457\";\n}\n\n.fa-alipay:before {\n content: \"\\f642\";\n}\n\n.fa-youtube:before {\n content: \"\\f167\";\n}\n\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n\n.fa-firefox-browser:before {\n content: \"\\e007\";\n}\n\n.fa-replyd:before {\n content: \"\\f3e6\";\n}\n\n.fa-suse:before {\n content: \"\\f7d6\";\n}\n\n.fa-jenkins:before {\n content: \"\\f3b6\";\n}\n\n.fa-twitter:before {\n content: \"\\f099\";\n}\n\n.fa-rockrms:before {\n content: \"\\f3e9\";\n}\n\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n\n.fa-buffer:before {\n content: \"\\f837\";\n}\n\n.fa-npm:before {\n content: \"\\f3d4\";\n}\n\n.fa-yammer:before {\n content: \"\\f840\";\n}\n\n.fa-btc:before {\n content: \"\\f15a\";\n}\n\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n\n.fa-stubber:before {\n content: \"\\e5c7\";\n}\n\n.fa-telegram:before {\n content: \"\\f2c6\";\n}\n\n.fa-telegram-plane:before {\n content: \"\\f2c6\";\n}\n\n.fa-old-republic:before {\n content: \"\\f510\";\n}\n\n.fa-odysee:before {\n content: \"\\e5c6\";\n}\n\n.fa-square-whatsapp:before {\n content: \"\\f40c\";\n}\n\n.fa-whatsapp-square:before {\n content: \"\\f40c\";\n}\n\n.fa-node-js:before {\n content: \"\\f3d3\";\n}\n\n.fa-edge-legacy:before {\n content: \"\\e078\";\n}\n\n.fa-slack:before {\n content: \"\\f198\";\n}\n\n.fa-slack-hash:before {\n content: \"\\f198\";\n}\n\n.fa-medrt:before {\n content: \"\\f3c8\";\n}\n\n.fa-usb:before {\n content: \"\\f287\";\n}\n\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n\n.fa-vaadin:before {\n content: \"\\f408\";\n}\n\n.fa-quora:before {\n content: \"\\f2c4\";\n}\n\n.fa-square-x-twitter:before {\n content: \"\\e61a\";\n}\n\n.fa-reacteurope:before {\n content: \"\\f75d\";\n}\n\n.fa-medium:before {\n content: \"\\f23a\";\n}\n\n.fa-medium-m:before {\n content: \"\\f23a\";\n}\n\n.fa-amilia:before {\n content: \"\\f36d\";\n}\n\n.fa-mixcloud:before {\n content: \"\\f289\";\n}\n\n.fa-flipboard:before {\n content: \"\\f44d\";\n}\n\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n\n.fa-critical-role:before {\n content: \"\\f6c9\";\n}\n\n.fa-sitrox:before {\n content: \"\\e44a\";\n}\n\n.fa-discourse:before {\n content: \"\\f393\";\n}\n\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n\n.fa-mastodon:before {\n content: \"\\f4f6\";\n}\n\n.fa-airbnb:before {\n content: \"\\f834\";\n}\n\n.fa-wolf-pack-battalion:before {\n content: \"\\f514\";\n}\n\n.fa-buy-n-large:before {\n content: \"\\f8a6\";\n}\n\n.fa-gulp:before {\n content: \"\\f3ae\";\n}\n\n.fa-creative-commons-sampling-plus:before {\n content: \"\\f4f1\";\n}\n\n.fa-strava:before {\n content: \"\\f428\";\n}\n\n.fa-ember:before {\n content: \"\\f423\";\n}\n\n.fa-canadian-maple-leaf:before {\n content: \"\\f785\";\n}\n\n.fa-teamspeak:before {\n content: \"\\f4f9\";\n}\n\n.fa-pushed:before {\n content: \"\\f3e1\";\n}\n\n.fa-wordpress-simple:before {\n content: \"\\f411\";\n}\n\n.fa-nutritionix:before {\n content: \"\\f3d6\";\n}\n\n.fa-wodu:before {\n content: \"\\e088\";\n}\n\n.fa-google-pay:before {\n content: \"\\e079\";\n}\n\n.fa-intercom:before {\n content: \"\\f7af\";\n}\n\n.fa-zhihu:before {\n content: \"\\f63f\";\n}\n\n.fa-korvue:before {\n content: \"\\f42f\";\n}\n\n.fa-pix:before {\n content: \"\\e43a\";\n}\n\n.fa-steam-symbol:before {\n content: \"\\f3f6\";\n}\n\n:root, :host {\n --fa-style-family-classic: \"Font Awesome 6 Free\";\n --fa-font-regular: normal 400 1em/1 \"Font Awesome 6 Free\";\n}\n\n@font-face {\n font-family: \"Font Awesome 6 Free\";\n font-style: normal;\n font-weight: 400;\n font-display: block;\n src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\");\n}\n.far,\n.fa-regular {\n font-weight: 400;\n}\n\n:root, :host {\n --fa-style-family-classic: \"Font Awesome 6 Free\";\n --fa-font-solid: normal 900 1em/1 \"Font Awesome 6 Free\";\n}\n\n@font-face {\n font-family: \"Font Awesome 6 Free\";\n font-style: normal;\n font-weight: 900;\n font-display: block;\n src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\");\n}\n.fas,\n.fa-solid {\n font-weight: 900;\n}\n\n@font-face {\n font-family: \"Font Awesome 5 Brands\";\n font-display: block;\n font-weight: 400;\n src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\");\n}\n@font-face {\n font-family: \"Font Awesome 5 Free\";\n font-display: block;\n font-weight: 900;\n src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\");\n}\n@font-face {\n font-family: \"Font Awesome 5 Free\";\n font-display: block;\n font-weight: 400;\n src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\");\n}\n@font-face {\n font-family: \"FontAwesome\";\n font-display: block;\n src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\");\n}\n@font-face {\n font-family: \"FontAwesome\";\n font-display: block;\n src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\");\n}\n@font-face {\n font-family: \"FontAwesome\";\n font-display: block;\n src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\");\n unicode-range: U+F003, U+F006, U+F014, U+F016-F017, U+F01A-F01B, U+F01D, U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088, U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5, U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A, U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E, U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7, U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D, U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA, U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC;\n}\n@font-face {\n font-family: \"FontAwesome\";\n font-display: block;\n src: url(\"../fonts/fa-v4compatibility.woff2\") format(\"woff2\"), url(\"../fonts/fa-v4compatibility.ttf\") format(\"truetype\");\n unicode-range: U+F041, U+F047, U+F065-F066, U+F07D-F07E, U+F080, U+F08B, U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4, U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E, U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F27A;\n}"]} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/css/theme.css b/dj_backend_server/web/static/assets/css/theme.css new file mode 100644 index 00000000..37bc29cf --- /dev/null +++ b/dj_backend_server/web/static/assets/css/theme.css @@ -0,0 +1,4783 @@ +/* +Template Name: TailFox - Responsive Tailwind Admin Dashboard +Version: 1.0 +Author: Myra Studio +Email: myrathemes@gmail.com +File: Main Css File +*/ +@import url("https://fonts.googleapis.com/css2?family=REM:wght@100;200;300;400;500;600;700;800;900&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap"); +@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap"); +:root { + --tw-body-font-family: "Jost", sans-serif; +} + +[data-sidebar-color=light] { + --tw-sidebar-bg: #FBF7F3; + --tw-sidebar-item-color: #6b7280; + --tw-sidebar-item-hover-color: #000; + --tw-sidebar-item-hover-bg: rgb(0 0 0 / 5%); + --tw-sidebar-item-active-color: #000; + --tw-sidebar-item-active-bg: rgb(0 0 0 / 7%); +} + +[data-sidebar-color=dark] { + --tw-sidebar-bg: #262626; + --tw-sidebar-item-color: #a3a3a3; + --tw-sidebar-item-hover-color: #fff; + --tw-sidebar-item-hover-bg: rgb(255 255 255 / 5%); + --tw-sidebar-item-active-color: #fff; + --tw-sidebar-item-active-bg: rgb(63 63 70 / 50%); +} + +[data-topbar-color=light] { + --tw-topbar-bg: #FBF7F3; + --tw-topbar-item-color: #6b7280; + --tw-topbar-item-hover-color: #3b82f6; + --tw-topbar-item-hover-bg: rgb(59 130 246 / 10%); + --tw-topbar-item-active-color: #3b82f6; + --tw-topbar-item-active-bg: rgb(59 130 246 / 12%); +} + +/* +! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com +*/ + +/* +1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) +2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) +*/ + +*, +::before, +::after { + -webkit-box-sizing: border-box; + box-sizing: border-box; /* 1 */ + border-width: 0; /* 2 */ + border-style: solid; /* 2 */ + border-color: #e5e7eb; /* 2 */ +} + +::before, +::after { + --tw-content: ''; +} + +/* +1. Use a consistent sensible line-height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +3. Use a more readable tab size. +4. Use the user's configured `sans` font-family by default. +5. Use the user's configured `sans` font-feature-settings by default. +6. Use the user's configured `sans` font-variation-settings by default. +*/ + +html { + line-height: 1.5; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ + -moz-tab-size: 4; /* 3 */ + -o-tab-size: 4; + tab-size: 4; /* 3 */ + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */ + -webkit-font-feature-settings: normal; + font-feature-settings: normal; /* 5 */ + font-variation-settings: normal; /* 6 */ +} + +/* +1. Remove the margin in all browsers. +2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. +*/ + +body { + margin: 0; /* 1 */ + line-height: inherit; /* 2 */ +} + +/* +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +3. Ensure horizontal rules are visible by default. +*/ + +hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ + border-top-width: 1px; /* 3 */ +} + +/* +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/* +Remove the default font size and weight for headings. +*/ + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/* +Reset links to optimize for opt-in styling instead of opt-out. +*/ + +a { + color: inherit; + text-decoration: inherit; +} + +/* +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/* +1. Use the user's configured `mono` font family by default. +2. Correct the odd `em` font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* +Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/* +Prevent `sub` and `sup` elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +3. Remove gaps between table borders by default. +*/ + +table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ + border-collapse: collapse; /* 3 */ +} + +/* +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +3. Remove default padding in all browsers. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + -webkit-font-feature-settings: inherit; + font-feature-settings: inherit; /* 1 */ + font-variation-settings: inherit; /* 1 */ + font-size: 100%; /* 1 */ + font-weight: inherit; /* 1 */ + line-height: inherit; /* 1 */ + color: inherit; /* 1 */ + margin: 0; /* 2 */ + padding: 0; /* 3 */ +} + +/* +Remove the inheritance of text transform in Edge and Firefox. +*/ + +button, +select { + text-transform: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Remove default button styles. +*/ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; /* 1 */ + background-color: transparent; /* 2 */ + background-image: none; /* 2 */ +} + +/* +Use the modern Firefox focus style for all focusable elements. +*/ + +:-moz-focusring { + outline: auto; +} + +/* +Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/* +Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/* +Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/* +1. Correct the odd appearance in Chrome and Safari. +2. Correct the outline style in Safari. +*/ + +[type='search'] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/* +Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Change font properties to `inherit` in Safari. +*/ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/* +Removes the default spacing and border for appropriate elements. +*/ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +fieldset { + margin: 0; + padding: 0; +} + +legend { + padding: 0; +} + +ol, +ul, +menu { + list-style: none; + margin: 0; + padding: 0; +} + +/* +Reset default styling for dialogs. +*/ + +dialog { + padding: 0; +} + +/* +Prevent resizing textareas horizontally by default. +*/ + +textarea { + resize: vertical; +} + +/* +1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) +2. Set the default placeholder color to the user's configured gray 400 color. +*/ + +input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +input::-moz-placeholder, textarea::-moz-placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +input::-ms-input-placeholder, textarea::-ms-input-placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +input::placeholder, +textarea::placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +/* +Set the default cursor for buttons. +*/ + +button, +[role="button"] { + cursor: pointer; +} + +/* +Make sure disabled buttons don't get the pointer cursor. +*/ + +:disabled { + cursor: default; +} + +/* +1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) +2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) + This can trigger a poorly considered lint error in some tools but is included by design. +*/ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; /* 1 */ + vertical-align: middle; /* 2 */ +} + +/* +Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) +*/ + +img, +video { + max-width: 100%; + height: auto; +} + +/* Make elements with the HTML hidden attribute stay hidden by default */ + +[hidden] { + display: none; +} + +[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #6b7280; + border-width: 1px; + border-radius: 0px; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5rem; + --tw-shadow: 0 0 #0000; +} + +[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{ + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + border-color: #2563eb; +} + +input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{ + color: #6b7280; + opacity: 1; +} + +input::-moz-placeholder, textarea::-moz-placeholder{ + color: #6b7280; + opacity: 1; +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder{ + color: #6b7280; + opacity: 1; +} + +input::-ms-input-placeholder, textarea::-ms-input-placeholder{ + color: #6b7280; + opacity: 1; +} + +input::placeholder,textarea::placeholder{ + color: #6b7280; + opacity: 1; +} + +::-webkit-datetime-edit-fields-wrapper{ + padding: 0; +} + +::-webkit-date-and-time-value{ + min-height: 1.5em; +} + +::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{ + padding-top: 0; + padding-bottom: 0; +} + +select{ + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); + background-position: right 0.5rem center; + background-repeat: no-repeat; + background-size: 1.5em 1.5em; + padding-right: 2.5rem; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; +} + +[multiple],[size]:where(select:not([size="1"])){ + background-image: initial; + background-position: initial; + background-repeat: unset; + background-size: initial; + padding-right: 0.75rem; + -webkit-print-color-adjust: unset; + print-color-adjust: unset; +} + +[type='checkbox'],[type='radio']{ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + padding: 0; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -ms-flex-negative: 0; + flex-shrink: 0; + height: 1rem; + width: 1rem; + color: #2563eb; + background-color: #fff; + border-color: #6b7280; + border-width: 1px; + --tw-shadow: 0 0 #0000; +} + +[type='checkbox']{ + border-radius: 0px; +} + +[type='radio']{ + border-radius: 100%; +} + +[type='checkbox']:focus,[type='radio']:focus{ + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 2px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); +} + +[type='checkbox']:checked,[type='radio']:checked{ + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +[type='checkbox']:checked{ + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e"); +} + +[type='radio']:checked{ + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); +} + +[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{ + border-color: transparent; + background-color: currentColor; +} + +[type='checkbox']:indeterminate{ + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{ + border-color: transparent; + background-color: currentColor; +} + +[type='file']{ + background: unset; + border-color: inherit; + border-width: 0; + border-radius: 0; + padding: 0; + font-size: unset; + line-height: inherit; +} + +[type='file']:focus{ + outline: 1px solid ButtonText; + outline: 1px auto -webkit-focus-ring-color; +} + +*, ::before, ::after{ + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} + +::-webkit-backdrop{ + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} + +::backdrop{ + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} +.form-input,.form-textarea,.form-select,.form-multiselect{ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #6b7280; + border-width: 1px; + border-radius: 0px; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5rem; + --tw-shadow: 0 0 #0000; +} +.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus{ + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + border-color: #2563eb; +} +.form-input::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder{ + color: #6b7280; + opacity: 1; +} +.form-input::-moz-placeholder, .form-textarea::-moz-placeholder{ + color: #6b7280; + opacity: 1; +} +.form-input:-ms-input-placeholder, .form-textarea:-ms-input-placeholder{ + color: #6b7280; + opacity: 1; +} +.form-input::-ms-input-placeholder, .form-textarea::-ms-input-placeholder{ + color: #6b7280; + opacity: 1; +} +.form-input::placeholder,.form-textarea::placeholder{ + color: #6b7280; + opacity: 1; +} +.form-input::-webkit-datetime-edit-fields-wrapper{ + padding: 0; +} +.form-input::-webkit-date-and-time-value{ + min-height: 1.5em; +} +.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field{ + padding-top: 0; + padding-bottom: 0; +} +.form-select{ + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); + background-position: right 0.5rem center; + background-repeat: no-repeat; + background-size: 1.5em 1.5em; + padding-right: 2.5rem; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; +} +.form-select:where([size]:not([size="1"])){ + background-image: initial; + background-position: initial; + background-repeat: unset; + background-size: initial; + padding-right: 0.75rem; + -webkit-print-color-adjust: unset; + print-color-adjust: unset; +} +.form-checkbox,.form-radio{ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + padding: 0; + -webkit-print-color-adjust: exact; + print-color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -ms-flex-negative: 0; + flex-shrink: 0; + height: 1rem; + width: 1rem; + color: #2563eb; + background-color: #fff; + border-color: #6b7280; + border-width: 1px; + --tw-shadow: 0 0 #0000; +} +.form-checkbox{ + border-radius: 0px; +} +.form-radio{ + border-radius: 100%; +} +.form-checkbox:focus,.form-radio:focus{ + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 2px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); +} +.form-checkbox:checked,.form-radio:checked{ + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} +.form-checkbox:checked{ + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e"); +} +.form-radio:checked{ + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); +} +.form-checkbox:checked:hover,.form-checkbox:checked:focus,.form-radio:checked:hover,.form-radio:checked:focus{ + border-color: transparent; + background-color: currentColor; +} +.form-checkbox:indeterminate{ + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} +.form-checkbox:indeterminate:hover,.form-checkbox:indeterminate:focus{ + border-color: transparent; + background-color: currentColor; +} +.btn{ + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + border-width: 1px; + border-color: transparent; + padding-left: 0.75rem; + padding-right: 0.75rem; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + text-align: center; + font-size: 0.875rem; + line-height: 1.25rem; + letter-spacing: 0.05em; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.btn.btn-lg{ + padding-left: 1.25rem; + padding-right: 1.25rem; + padding-top: 0.75rem; + padding-bottom: 0.75rem; + font-size: 1rem; + line-height: 1.5rem; +} +.btn.btn-sm{ + padding-left: 0.875rem; + padding-right: 0.875rem; + padding-top: 0.375rem; + padding-bottom: 0.375rem; + font-size: 0.75rem; + line-height: 1rem; +} +.card{ + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: -webkit-fit-content; + height: -moz-fit-content; + height: fit-content; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + overflow-wrap: break-word; + border-width: 1px; + border-color: rgb(229 231 235 / 0.8); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} +.card .card-header{ + border-bottom-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); + padding-top: 0.75rem; + padding-bottom: 0.75rem; + padding-left: 1.5rem; + padding-right: 1.5rem; +} +.card-title{ + font-size: 1rem; + line-height: 1.5rem; + font-weight: 600; + --tw-text-opacity: 1; + color: rgb(31 41 55 / var(--tw-text-opacity)); +} +label{ + display: inline-block; + cursor: pointer; + font-size: 0.875rem; + line-height: 1.25rem; + font-weight: 600; + --tw-text-opacity: 1; + color: rgb(75 85 99 / var(--tw-text-opacity)); +} +.form-input, + .form-textarea, + .form-select{ + display: block; + width: 100%; + border-radius: 0.25rem; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); + font-size: 0.875rem; + line-height: 1.25rem; + font-weight: 400; +} +.form-input:focus, + .form-textarea:focus, + .form-select:focus{ + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity)); + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} +.form-checkbox, + .form-radio{ + cursor: pointer; + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity)); + background-color: inherit; +} +.form-checkbox:focus, + .form-radio:focus{ + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + --tw-ring-offset-width: 0px; +} +.form-switch{ + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: 1.25rem; + width: 2.25rem; + cursor: pointer; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + border-radius: 9999px; + border-width: 2px; + border-color: transparent; + --tw-bg-opacity: 1; + background-color: rgb(229 231 235 / var(--tw-bg-opacity)); + -webkit-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; + -webkit-transition-duration: 200ms; + transition-duration: 200ms; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} +.form-switch:checked{ + background-image: none; +} +.form-switch:focus{ + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + --tw-ring-offset-width: 0px; +} +.form-switch::before{ + display: inline-block; + height: 1rem; + width: 1rem; + --tw-translate-x: 0px; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + border-radius: 9999px; + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); + -webkit-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter; + -webkit-transition-duration: 200ms; + transition-duration: 200ms; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + --tw-content: ""; + content: var(--tw-content); +} +.form-switch:checked::before{ + --tw-translate-x: 100%; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.sr-only{ + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} +.pointer-events-none{ + pointer-events: none; +} +.pointer-events-auto{ + pointer-events: auto; +} +.collapse{ + visibility: collapse; +} +.static{ + position: static; +} +.fixed{ + position: fixed; +} +.absolute{ + position: absolute; +} +.relative{ + position: relative; +} +.sticky{ + position: sticky; +} +.inset-0{ + inset: 0px; +} +.inset-x-0{ + left: 0px; + right: 0px; +} +.inset-x-px{ + left: 1px; + right: 1px; +} +.inset-y-0{ + top: 0px; + bottom: 0px; +} +.-bottom-1{ + bottom: -0.25rem; +} +.-end-1{ + inset-inline-end: -0.25rem; +} +.-start-1{ + inset-inline-start: -0.25rem; +} +.-top-1{ + top: -0.25rem; +} +.bottom-0{ + bottom: 0px; +} +.bottom-px{ + bottom: 1px; +} +.end-3{ + inset-inline-end: 0.75rem; +} +.end-4{ + inset-inline-end: 1rem; +} +.left-0{ + left: 0px; +} +.right-0{ + right: 0px; +} +.start-0{ + inset-inline-start: 0px; +} +.start-1\/2{ + inset-inline-start: 50%; +} +.start-3{ + inset-inline-start: 0.75rem; +} +.start-4{ + inset-inline-start: 1rem; +} +.top-0{ + top: 0px; +} +.top-1{ + top: 0.25rem; +} +.top-1\.5{ + top: 0.375rem; +} +.top-1\/2{ + top: 50%; +} +.top-1\/3{ + top: 33.333333%; +} +.-z-10{ + z-index: -10; +} +.z-10{ + z-index: 10; +} +.z-20{ + z-index: 20; +} +.z-40{ + z-index: 40; +} +.z-50{ + z-index: 50; +} +.z-\[60\]{ + z-index: 60; +} +.col-span-3{ + grid-column: span 3 / span 3; +} +.col-start-3{ + grid-column-start: 3; +} +.m-0{ + margin: 0px; +} +.m-3{ + margin: 0.75rem; +} +.mx-4{ + margin-left: 1rem; + margin-right: 1rem; +} +.mx-auto{ + margin-left: auto; + margin-right: auto; +} +.my-2{ + margin-top: 0.5rem; + margin-bottom: 0.5rem; +} +.my-3{ + margin-top: 0.75rem; + margin-bottom: 0.75rem; +} +.my-5{ + margin-top: 1.25rem; + margin-bottom: 1.25rem; +} +.my-6{ + margin-top: 1.5rem; + margin-bottom: 1.5rem; +} +.my-8{ + margin-top: 2rem; + margin-bottom: 2rem; +} +.-mb-px{ + margin-bottom: -1px; +} +.-ms-px{ + -webkit-margin-start: -1px; + margin-inline-start: -1px; +} +.-mt-px{ + margin-top: -1px; +} +.mb-0{ + margin-bottom: 0px; +} +.mb-1{ + margin-bottom: 0.25rem; +} +.mb-1\.5{ + margin-bottom: 0.375rem; +} +.mb-2{ + margin-bottom: 0.5rem; +} +.mb-2\.5{ + margin-bottom: 0.625rem; +} +.mb-20{ + margin-bottom: 5rem; +} +.mb-3{ + margin-bottom: 0.75rem; +} +.mb-4{ + margin-bottom: 1rem; +} +.mb-5{ + margin-bottom: 1.25rem; +} +.mb-6{ + margin-bottom: 1.5rem; +} +.mb-8{ + margin-bottom: 2rem; +} +.me-1{ + -webkit-margin-end: 0.25rem; + margin-inline-end: 0.25rem; +} +.me-2{ + -webkit-margin-end: 0.5rem; + margin-inline-end: 0.5rem; +} +.me-3{ + -webkit-margin-end: 0.75rem; + margin-inline-end: 0.75rem; +} +.ml-1{ + margin-left: 0.25rem; +} +.ml-1\.5{ + margin-left: 0.375rem; +} +.mr-1{ + margin-right: 0.25rem; +} +.mr-1\.5{ + margin-right: 0.375rem; +} +.mr-2{ + margin-right: 0.5rem; +} +.mr-3{ + margin-right: 0.75rem; +} +.ms-1{ + -webkit-margin-start: 0.25rem; + margin-inline-start: 0.25rem; +} +.ms-1\.5{ + -webkit-margin-start: 0.375rem; + margin-inline-start: 0.375rem; +} +.ms-2{ + -webkit-margin-start: 0.5rem; + margin-inline-start: 0.5rem; +} +.ms-auto{ + -webkit-margin-start: auto; + margin-inline-start: auto; +} +.mt-0{ + margin-top: 0px; +} +.mt-1{ + margin-top: 0.25rem; +} +.mt-10{ + margin-top: 2.5rem; +} +.mt-14{ + margin-top: 3.5rem; +} +.mt-16{ + margin-top: 4rem; +} +.mt-2{ + margin-top: 0.5rem; +} +.mt-3{ + margin-top: 0.75rem; +} +.mt-4{ + margin-top: 1rem; +} +.mt-5{ + margin-top: 1.25rem; +} +.mt-6{ + margin-top: 1.5rem; +} +.mt-8{ + margin-top: 2rem; +} +.mt-auto{ + margin-top: auto; +} +.mt-px{ + margin-top: 1px; +} +.line-clamp-2{ + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} +.block{ + display: block; +} +.inline-block{ + display: inline-block; +} +.flex{ + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} +.inline-flex{ + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; +} +.table{ + display: table; +} +.grid{ + display: grid; +} +.hidden{ + display: none; +} +.h-1{ + height: 0.25rem; +} +.h-1\.5{ + height: 0.375rem; +} +.h-10{ + height: 2.5rem; +} +.h-14{ + height: 3.5rem; +} +.h-16{ + height: 4rem; +} +.h-2{ + height: 0.5rem; +} +.h-2\.5{ + height: 0.625rem; +} +.h-20{ + height: 5rem; +} +.h-3{ + height: 0.75rem; +} +.h-3\.5{ + height: 0.875rem; +} +.h-4{ + height: 1rem; +} +.h-5{ + height: 1.25rem; +} +.h-6{ + height: 1.5rem; +} +.h-8{ + height: 2rem; +} +.h-9{ + height: 2.25rem; +} +.h-\[2\.375rem\]{ + height: 2.375rem; +} +.h-\[calc\(100\%-3\.5rem\)\]{ + height: calc(100% - 3.5rem); +} +.h-\[calc\(100vh-252px\)\]{ + height: calc(100vh - 252px); +} +.h-full{ + height: 100%; +} +.h-px{ + height: 1px; +} +.h-screen{ + height: 100vh; +} +.max-h-60{ + max-height: 15rem; +} +.max-h-80{ + max-height: 20rem; +} +.max-h-full{ + max-height: 100%; +} +.w-0{ + width: 0px; +} +.w-1\/2{ + width: 50%; +} +.w-14{ + width: 3.5rem; +} +.w-2{ + width: 0.5rem; +} +.w-2\.5{ + width: 0.625rem; +} +.w-3{ + width: 0.75rem; +} +.w-3\.5{ + width: 0.875rem; +} +.w-3\/12{ + width: 25%; +} +.w-3\/4{ + width: 75%; +} +.w-4{ + width: 1rem; +} +.w-4\/12{ + width: 33.333333%; +} +.w-44{ + width: 11rem; +} +.w-5{ + width: 1.25rem; +} +.w-5\/12{ + width: 41.666667%; +} +.w-6{ + width: 1.5rem; +} +.w-6\/12{ + width: 50%; +} +.w-60{ + width: 15rem; +} +.w-7\/12{ + width: 58.333333%; +} +.w-72{ + width: 18rem; +} +.w-8{ + width: 2rem; +} +.w-9{ + width: 2.25rem; +} +.w-\[2\.375rem\]{ + width: 2.375rem; +} +.w-full{ + width: 100%; +} +.w-screen{ + width: 100vw; +} +.min-w-fit{ + min-width: -webkit-fit-content; + min-width: -moz-fit-content; + min-width: fit-content; +} +.min-w-full{ + min-width: 100%; +} +.max-w-2xl{ + max-width: 42rem; +} +.max-w-4xl{ + max-width: 56rem; +} +.max-w-\[90\%\]{ + max-width: 90%; +} +.max-w-xs{ + max-width: 20rem; +} +.flex-1{ + -webkit-box-flex: 1; + -ms-flex: 1 1 0%; + flex: 1 1 0%; +} +.flex-auto{ + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; +} +.flex-shrink-0{ + -ms-flex-negative: 0; + flex-shrink: 0; +} +.flex-grow{ + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; +} +.grow{ + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; +} +.border-collapse{ + border-collapse: collapse; +} +.origin-center{ + -webkit-transform-origin: center; + transform-origin: center; +} +.-translate-x-full{ + --tw-translate-x: -100%; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.-translate-y-full{ + --tw-translate-y: -100%; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.translate-x-full{ + --tw-translate-x: 100%; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.translate-y-3{ + --tw-translate-y: 0.75rem; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.translate-y-full{ + --tw-translate-y: 100%; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.rotate-45{ + --tw-rotate: 45deg; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.scale-95{ + --tw-scale-x: .95; + --tw-scale-y: .95; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.transform{ + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +@-webkit-keyframes ping{ + 75%, 100%{ + -webkit-transform: scale(2); + transform: scale(2); + opacity: 0; + } +} +@keyframes ping{ + 75%, 100%{ + -webkit-transform: scale(2); + transform: scale(2); + opacity: 0; + } +} +.animate-ping{ + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +} +@-webkit-keyframes spin{ + to{ + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} +@keyframes spin{ + to{ + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} +.animate-spin{ + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; +} +.resize{ + resize: both; +} +.list-outside{ + list-style-position: outside; +} +.list-disc{ + list-style-type: disc; +} +.grid-cols-1{ + grid-template-columns: repeat(1, minmax(0, 1fr)); +} +.grid-cols-3{ + grid-template-columns: repeat(3, minmax(0, 1fr)); +} +.grid-cols-4{ + grid-template-columns: repeat(4, minmax(0, 1fr)); +} +.flex-col{ + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; +} +.flex-wrap{ + -ms-flex-wrap: wrap; + flex-wrap: wrap; +} +.items-end{ + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; +} +.items-center{ + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; +} +.justify-end{ + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; +} +.justify-center{ + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; +} +.justify-between{ + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} +.justify-around{ + -ms-flex-pack: distribute; + justify-content: space-around; +} +.gap-1{ + gap: 0.25rem; +} +.gap-1\.5{ + gap: 0.375rem; +} +.gap-10{ + gap: 2.5rem; +} +.gap-14{ + gap: 3.5rem; +} +.gap-2{ + gap: 0.5rem; +} +.gap-3{ + gap: 0.75rem; +} +.gap-4{ + gap: 1rem; +} +.gap-5{ + gap: 1.25rem; +} +.gap-6{ + gap: 1.5rem; +} +.gap-x-1{ + -webkit-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; +} +.gap-x-2{ + -webkit-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; +} +.gap-x-3{ + -webkit-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; +} +.gap-x-3\.5{ + -webkit-column-gap: 0.875rem; + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; +} +.-space-x-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); +} +.-space-y-px > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); +} +.space-x-3 > :not([hidden]) ~ :not([hidden]){ + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); +} +.space-y-1 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); +} +.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); +} +.space-y-2 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); +} +.space-y-3 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); +} +.space-y-4 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); +} +.space-y-5 > :not([hidden]) ~ :not([hidden]){ + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); +} +.divide-x > :not([hidden]) ~ :not([hidden]){ + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); +} +.divide-y > :not([hidden]) ~ :not([hidden]){ + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); +} +.divide-gray-200 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-divide-opacity)); +} +.overflow-hidden{ + overflow: hidden; +} +.overflow-x-auto{ + overflow-x: auto; +} +.overflow-y-auto{ + overflow-y: auto; +} +.overflow-x-hidden{ + overflow-x: hidden; +} +.truncate{ + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.whitespace-nowrap{ + white-space: nowrap; +} +.rounded{ + border-radius: 0.25rem; +} +.rounded-\[1px\]{ + border-radius: 1px; +} +.rounded-full{ + border-radius: 9999px; +} +.rounded-lg{ + border-radius: 0.5rem; +} +.rounded-md{ + border-radius: 0.375rem; +} +.rounded-none{ + border-radius: 0px; +} +.rounded-sm{ + border-radius: 0.125rem; +} +.rounded-xl{ + border-radius: 0.75rem; +} +.rounded-b-md{ + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} +.rounded-e-full{ + border-start-end-radius: 9999px; + border-end-end-radius: 9999px; +} +.rounded-e-none{ + border-start-end-radius: 0px; + border-end-end-radius: 0px; +} +.rounded-l{ + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} +.rounded-l-md{ + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} +.rounded-l-none{ + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; +} +.rounded-s{ + border-start-start-radius: 0.25rem; + border-end-start-radius: 0.25rem; +} +.rounded-s-full{ + border-start-start-radius: 9999px; + border-end-start-radius: 9999px; +} +.rounded-s-none{ + border-start-start-radius: 0px; + border-end-start-radius: 0px; +} +.border{ + border-width: 1px; +} +.border-\[3px\]{ + border-width: 3px; +} +.border-b{ + border-bottom-width: 1px; +} +.border-b-2{ + border-bottom-width: 2px; +} +.border-l{ + border-left-width: 1px; +} +.border-r{ + border-right-width: 1px; +} +.border-r-0{ + border-right-width: 0px; +} +.border-t{ + border-top-width: 1px; +} +.border-dashed{ + border-style: dashed; +} +.border-none{ + border-style: none; +} +.border-\[\#e0e6ed\]{ + --tw-border-opacity: 1; + border-color: rgb(224 230 237 / var(--tw-border-opacity)); +} +.border-blue-600{ + --tw-border-opacity: 1; + border-color: rgb(37 99 235 / var(--tw-border-opacity)); +} +.border-current{ + border-color: currentColor; +} +.border-danger{ + --tw-border-opacity: 1; + border-color: rgb(250 89 68 / var(--tw-border-opacity)); +} +.border-danger\/20{ + border-color: rgb(250 89 68 / 0.2); +} +.border-dark{ + --tw-border-opacity: 1; + border-color: rgb(34 42 62 / var(--tw-border-opacity)); +} +.border-dark\/20{ + border-color: rgb(34 42 62 / 0.2); +} +.border-gray-200{ + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); +} +.border-info{ + --tw-border-opacity: 1; + border-color: rgb(60 186 222 / var(--tw-border-opacity)); +} +.border-info\/20{ + border-color: rgb(60 186 222 / 0.2); +} +.border-primary{ + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} +.border-primary\/20{ + border-color: rgb(59 130 246 / 0.2); +} +.border-secondary{ + --tw-border-opacity: 1; + border-color: rgb(116 122 128 / var(--tw-border-opacity)); +} +.border-secondary\/20{ + border-color: rgb(116 122 128 / 0.2); +} +.border-success{ + --tw-border-opacity: 1; + border-color: rgb(32 183 153 / var(--tw-border-opacity)); +} +.border-success\/20{ + border-color: rgb(32 183 153 / 0.2); +} +.border-teal-200{ + --tw-border-opacity: 1; + border-color: rgb(153 246 228 / var(--tw-border-opacity)); +} +.border-transparent{ + border-color: transparent; +} +.border-warning{ + --tw-border-opacity: 1; + border-color: rgb(239 181 64 / var(--tw-border-opacity)); +} +.border-warning\/20{ + border-color: rgb(239 181 64 / 0.2); +} +.border-t-transparent{ + border-top-color: transparent; +} +.bg-\[\#eee\]{ + --tw-bg-opacity: 1; + background-color: rgb(238 238 238 / var(--tw-bg-opacity)); +} +.bg-black{ + --tw-bg-opacity: 1; + background-color: rgb(0 0 0 / var(--tw-bg-opacity)); +} +.bg-black\/10{ + background-color: rgb(0 0 0 / 0.1); +} +.bg-blue-500{ + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} +.bg-blue-600{ + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} +.bg-blue-600\/5{ + background-color: rgb(37 99 235 / 0.05); +} +.bg-danger{ + --tw-bg-opacity: 1; + background-color: rgb(250 89 68 / var(--tw-bg-opacity)); +} +.bg-danger\/10{ + background-color: rgb(250 89 68 / 0.1); +} +.bg-danger\/20{ + background-color: rgb(250 89 68 / 0.2); +} +.bg-danger\/25{ + background-color: rgb(250 89 68 / 0.25); +} +.bg-danger\/75{ + background-color: rgb(250 89 68 / 0.75); +} +.bg-danger\/90{ + background-color: rgb(250 89 68 / 0.9); +} +.bg-dark{ + --tw-bg-opacity: 1; + background-color: rgb(34 42 62 / var(--tw-bg-opacity)); +} +.bg-dark\/10{ + background-color: rgb(34 42 62 / 0.1); +} +.bg-dark\/20{ + background-color: rgb(34 42 62 / 0.2); +} +.bg-dark\/25{ + background-color: rgb(34 42 62 / 0.25); +} +.bg-dark\/75{ + background-color: rgb(34 42 62 / 0.75); +} +.bg-emerald-100\/60{ + background-color: rgb(209 250 229 / 0.6); +} +.bg-gray-100{ + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} +.bg-gray-200{ + --tw-bg-opacity: 1; + background-color: rgb(229 231 235 / var(--tw-bg-opacity)); +} +.bg-gray-50{ + --tw-bg-opacity: 1; + background-color: rgb(249 250 251 / var(--tw-bg-opacity)); +} +.bg-gray-600{ + --tw-bg-opacity: 1; + background-color: rgb(75 85 99 / var(--tw-bg-opacity)); +} +.bg-gray-900{ + --tw-bg-opacity: 1; + background-color: rgb(17 24 39 / var(--tw-bg-opacity)); +} +.bg-info{ + --tw-bg-opacity: 1; + background-color: rgb(60 186 222 / var(--tw-bg-opacity)); +} +.bg-info\/10{ + background-color: rgb(60 186 222 / 0.1); +} +.bg-info\/20{ + background-color: rgb(60 186 222 / 0.2); +} +.bg-info\/25{ + background-color: rgb(60 186 222 / 0.25); +} +.bg-info\/75{ + background-color: rgb(60 186 222 / 0.75); +} +.bg-info\/90{ + background-color: rgb(60 186 222 / 0.9); +} +.bg-light{ + --tw-bg-opacity: 1; + background-color: rgb(233 237 243 / var(--tw-bg-opacity)); +} +.bg-light\/40{ + background-color: rgb(233 237 243 / 0.4); +} +.bg-light\/75{ + background-color: rgb(233 237 243 / 0.75); +} +.bg-orange-100{ + --tw-bg-opacity: 1; + background-color: rgb(255 237 213 / var(--tw-bg-opacity)); +} +.bg-primary{ + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} +.bg-primary\/10{ + background-color: rgb(59 130 246 / 0.1); +} +.bg-primary\/20{ + background-color: rgb(59 130 246 / 0.2); +} +.bg-primary\/25{ + background-color: rgb(59 130 246 / 0.25); +} +.bg-primary\/75{ + background-color: rgb(59 130 246 / 0.75); +} +.bg-red-100{ + --tw-bg-opacity: 1; + background-color: rgb(254 226 226 / var(--tw-bg-opacity)); +} +.bg-red-100\/60{ + background-color: rgb(254 226 226 / 0.6); +} +.bg-secondary{ + --tw-bg-opacity: 1; + background-color: rgb(116 122 128 / var(--tw-bg-opacity)); +} +.bg-secondary\/10{ + background-color: rgb(116 122 128 / 0.1); +} +.bg-secondary\/20{ + background-color: rgb(116 122 128 / 0.2); +} +.bg-secondary\/25{ + background-color: rgb(116 122 128 / 0.25); +} +.bg-secondary\/75{ + background-color: rgb(116 122 128 / 0.75); +} +.bg-slate-50{ + --tw-bg-opacity: 1; + background-color: rgb(248 250 252 / var(--tw-bg-opacity)); +} +.bg-success{ + --tw-bg-opacity: 1; + background-color: rgb(32 183 153 / var(--tw-bg-opacity)); +} +.bg-success\/10{ + background-color: rgb(32 183 153 / 0.1); +} +.bg-success\/20{ + background-color: rgb(32 183 153 / 0.2); +} +.bg-success\/25{ + background-color: rgb(32 183 153 / 0.25); +} +.bg-success\/75{ + background-color: rgb(32 183 153 / 0.75); +} +.bg-teal-50{ + --tw-bg-opacity: 1; + background-color: rgb(240 253 250 / var(--tw-bg-opacity)); +} +.bg-transparent{ + background-color: transparent; +} +.bg-warning{ + --tw-bg-opacity: 1; + background-color: rgb(239 181 64 / var(--tw-bg-opacity)); +} +.bg-warning\/10{ + background-color: rgb(239 181 64 / 0.1); +} +.bg-warning\/20{ + background-color: rgb(239 181 64 / 0.2); +} +.bg-warning\/25{ + background-color: rgb(239 181 64 / 0.25); +} +.bg-warning\/75{ + background-color: rgb(239 181 64 / 0.75); +} +.bg-warning\/90{ + background-color: rgb(239 181 64 / 0.9); +} +.bg-white{ + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} +.bg-opacity-50{ + --tw-bg-opacity: 0.5; +} +.p-2{ + padding: 0.5rem; +} +.p-3{ + padding: 0.75rem; +} +.p-4{ + padding: 1rem; +} +.p-5{ + padding: 1.25rem; +} +.p-6{ + padding: 1.5rem; +} +.p-8{ + padding: 2rem; +} +.p-9{ + padding: 2.25rem; +} +.px-1{ + padding-left: 0.25rem; + padding-right: 0.25rem; +} +.px-1\.5{ + padding-left: 0.375rem; + padding-right: 0.375rem; +} +.px-2{ + padding-left: 0.5rem; + padding-right: 0.5rem; +} +.px-3{ + padding-left: 0.75rem; + padding-right: 0.75rem; +} +.px-3\.5{ + padding-left: 0.875rem; + padding-right: 0.875rem; +} +.px-4{ + padding-left: 1rem; + padding-right: 1rem; +} +.px-5{ + padding-left: 1.25rem; + padding-right: 1.25rem; +} +.px-6{ + padding-left: 1.5rem; + padding-right: 1.5rem; +} +.px-8{ + padding-left: 2rem; + padding-right: 2rem; +} +.py-0{ + padding-top: 0px; + padding-bottom: 0px; +} +.py-0\.5{ + padding-top: 0.125rem; + padding-bottom: 0.125rem; +} +.py-1{ + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} +.py-1\.5{ + padding-top: 0.375rem; + padding-bottom: 0.375rem; +} +.py-10{ + padding-top: 2.5rem; + padding-bottom: 2.5rem; +} +.py-14{ + padding-top: 3.5rem; + padding-bottom: 3.5rem; +} +.py-2{ + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} +.py-2\.5{ + padding-top: 0.625rem; + padding-bottom: 0.625rem; +} +.py-3{ + padding-top: 0.75rem; + padding-bottom: 0.75rem; +} +.py-3\.5{ + padding-top: 0.875rem; + padding-bottom: 0.875rem; +} +.py-4{ + padding-top: 1rem; + padding-bottom: 1rem; +} +.py-8{ + padding-top: 2rem; + padding-bottom: 2rem; +} +.pb-12{ + padding-bottom: 3rem; +} +.pb-20{ + padding-bottom: 5rem; +} +.pl-3{ + padding-left: 0.75rem; +} +.pl-3\.5{ + padding-left: 0.875rem; +} +.ps-10{ + -webkit-padding-start: 2.5rem; + padding-inline-start: 2.5rem; +} +.ps-11{ + -webkit-padding-start: 2.75rem; + padding-inline-start: 2.75rem; +} +.ps-3{ + -webkit-padding-start: 0.75rem; + padding-inline-start: 0.75rem; +} +.ps-4{ + -webkit-padding-start: 1rem; + padding-inline-start: 1rem; +} +.ps-8{ + -webkit-padding-start: 2rem; + padding-inline-start: 2rem; +} +.pt-0{ + padding-top: 0px; +} +.pt-5{ + padding-top: 1.25rem; +} +.text-left{ + text-align: left; +} +.text-center{ + text-align: center; +} +.text-start{ + text-align: start; +} +.text-end{ + text-align: end; +} +.align-middle{ + vertical-align: middle; +} +.\!text-sm{ + font-size: 0.875rem !important; + line-height: 1.25rem !important; +} +.text-2xl{ + font-size: 1.5rem; + line-height: 2rem; +} +.text-3xl{ + font-size: 1.875rem; + line-height: 2.25rem; +} +.text-5xl{ + font-size: 3rem; + line-height: 1; +} +.text-base{ + font-size: 1rem; + line-height: 1.5rem; +} +.text-lg{ + font-size: 1.125rem; + line-height: 1.75rem; +} +.text-sm{ + font-size: 0.875rem; + line-height: 1.25rem; +} +.text-xl{ + font-size: 1.25rem; + line-height: 1.75rem; +} +.text-xs{ + font-size: 0.75rem; + line-height: 1rem; +} +.font-bold{ + font-weight: 700; +} +.font-medium{ + font-weight: 500; +} +.font-normal{ + font-weight: 400; +} +.font-semibold{ + font-weight: 600; +} +.italic{ + font-style: italic; +} +.not-italic{ + font-style: normal; +} +.leading-none{ + line-height: 1; +} +.tracking-wide{ + letter-spacing: 0.025em; +} +.text-blue-600{ + --tw-text-opacity: 1; + color: rgb(37 99 235 / var(--tw-text-opacity)); +} +.text-danger{ + --tw-text-opacity: 1; + color: rgb(250 89 68 / var(--tw-text-opacity)); +} +.text-dark{ + --tw-text-opacity: 1; + color: rgb(34 42 62 / var(--tw-text-opacity)); +} +.text-dark\/75{ + color: rgb(34 42 62 / 0.75); +} +.text-emerald-500{ + --tw-text-opacity: 1; + color: rgb(16 185 129 / var(--tw-text-opacity)); +} +.text-gray-400{ + --tw-text-opacity: 1; + color: rgb(156 163 175 / var(--tw-text-opacity)); +} +.text-gray-500{ + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity)); +} +.text-gray-600{ + --tw-text-opacity: 1; + color: rgb(75 85 99 / var(--tw-text-opacity)); +} +.text-gray-700{ + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity)); +} +.text-gray-800{ + --tw-text-opacity: 1; + color: rgb(31 41 55 / var(--tw-text-opacity)); +} +.text-info{ + --tw-text-opacity: 1; + color: rgb(60 186 222 / var(--tw-text-opacity)); +} +.text-light{ + --tw-text-opacity: 1; + color: rgb(233 237 243 / var(--tw-text-opacity)); +} +.text-pink-500{ + --tw-text-opacity: 1; + color: rgb(236 72 153 / var(--tw-text-opacity)); +} +.text-primary{ + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} +.text-red-500{ + --tw-text-opacity: 1; + color: rgb(239 68 68 / var(--tw-text-opacity)); +} +.text-secondary{ + --tw-text-opacity: 1; + color: rgb(116 122 128 / var(--tw-text-opacity)); +} +.text-slate-400{ + --tw-text-opacity: 1; + color: rgb(148 163 184 / var(--tw-text-opacity)); +} +.text-slate-700{ + --tw-text-opacity: 1; + color: rgb(51 65 85 / var(--tw-text-opacity)); +} +.text-slate-900{ + --tw-text-opacity: 1; + color: rgb(15 23 42 / var(--tw-text-opacity)); +} +.text-success{ + --tw-text-opacity: 1; + color: rgb(32 183 153 / var(--tw-text-opacity)); +} +.text-teal-800{ + --tw-text-opacity: 1; + color: rgb(17 94 89 / var(--tw-text-opacity)); +} +.text-warning{ + --tw-text-opacity: 1; + color: rgb(239 181 64 / var(--tw-text-opacity)); +} +.text-white{ + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} +.underline{ + text-decoration-line: underline; +} +.decoration-2{ + text-decoration-thickness: 2px; +} +.opacity-0{ + opacity: 0; +} +.opacity-60{ + opacity: 0.6; +} +.opacity-75{ + opacity: 0.75; +} +.shadow{ + --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-lg{ + --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-md{ + --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-sm{ + --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.shadow-blue-600\/5{ + --tw-shadow-color: rgb(37 99 235 / 0.05); + --tw-shadow: var(--tw-shadow-colored); +} +.blur{ + --tw-blur: blur(8px); + -webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} +.filter{ + -webkit-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} +.transition{ + -webkit-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; + transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.transition-\[height\]{ + -webkit-transition-property: height; + transition-property: height; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.transition-\[opacity\2c margin\]{ + -webkit-transition-property: opacity,margin; + transition-property: opacity,margin; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.transition-all{ + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.transition-opacity{ + -webkit-transition-property: opacity; + transition-property: opacity; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.duration-200{ + -webkit-transition-duration: 200ms; + transition-duration: 200ms; +} +.duration-300{ + -webkit-transition-duration: 300ms; + transition-duration: 300ms; +} +.ease-out{ + -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} +.\[--placement\:bottom\]{ + --placement: bottom; +} +.\[--placement\:left-top\]{ + --placement: left-top; +} +.\[--placement\:left\]{ + --placement: left; +} +.\[--placement\:right-top\]{ + --placement: right-top; +} +.\[--placement\:right\]{ + --placement: right; +} +.\[--placement\:top\]{ + --placement: top; +} +.\[--trigger\:click\]{ + --trigger: click; +} +.\[--trigger\:hover\]{ + --trigger: hover; +} +.app-wrapper { + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} + +.app-content { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + min-block-size: 100vh; +} + +.logo-box { + height: 70px; + color: var(--tw-sidebar-item-color); + position: sticky; + top: 0px; + z-index: 50; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 300ms; + transition-duration: 300ms; +} +.logo-box .logo-light { + display: none; +} +.logo-box .logo-dark { + display: block; +} + +html[data-sidebar-color=dark] .app-menu .logo-box .logo-light { + display: block; +} +html[data-sidebar-color=dark] .app-menu .logo-box .logo-dark { + display: none; +} + +.app-menu { + width: 260px; + min-width: 260px; + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: -webkit-fit-content; + height: -moz-fit-content; + height: fit-content; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + overflow-wrap: break-word; + border-width: 1px; + border-color: rgb(229 231 235 / 0.8); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +.app-menu .card-header{ + border-bottom-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); + padding-top: 0.75rem; + padding-bottom: 0.75rem; + padding-left: 1.5rem; + padding-right: 1.5rem; +} + +.app-menu{ + position: sticky; + top: 0px; + z-index: 40; + height: 100vh; + border-radius: 0px; + border-inline-end-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 300ms; + transition-duration: 300ms; +} + +@media print { + .app-menu { + -webkit-box-shadow: none; + box-shadow: none; + } +} +.app-menu [data-simplebar] { + height: calc(100% - 70px); +} + +.menu { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + gap: 6px; + padding: 6px 0; +} +.menu .menu-title { + color: var(--tw-sidebar-item-color); + font-size: 0.8rem; + padding: 0.5rem 2.25rem; + cursor: default; + white-space: nowrap; + font-weight: 500; + letter-spacing: 0.1em; + opacity: 0.75; +} +.menu > .menu-item { + padding: 0 1.25rem; +} +.menu .menu-item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + gap: 6px; +} +.menu .menu-item .menu-link { + color: var(--tw-sidebar-item-color); + gap: 0.625rem; + padding: 0.5rem 1rem; + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + white-space: nowrap; + background-color: transparent; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.menu .menu-item .menu-link > .menu-icon { + width: 1.25rem; + height: 1.25rem; + font-size: 1.25rem; + line-height: 1.25rem; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.menu .menu-item .menu-link > .menu-icon svg { + width: 1.25rem; + height: 1.25rem; + stroke: inherit; +} +.menu .menu-item .menu-link > .menu-text { + font-size: 1rem; + line-height: 1rem; + white-space: nowrap; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.menu .menu-item .menu-link > .menu-arrow { + font-size: 1rem; + line-height: 1rem; + -webkit-margin-start: auto; + margin-inline-start: auto; + font-weight: 900; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +:is([dir="rtl"] .menu .menu-item .menu-link > .menu-arrow){ + --tw-rotate: 180deg; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} +.menu .menu-item .menu-link > .menu-arrow::before { + content: "\eb6d"; + font-family: "unicons-line"; +} +.menu .menu-item .menu-link > .menu-dot { + width: 1.25rem; + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.menu .menu-item .menu-link > .menu-dot::before { + content: ""; + background-color: var(--tw-sidebar-item-color); + height: 1.5px; + position: absolute; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + width: 0.375rem; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} +.menu .menu-item .menu-link:is(.open) > .menu-arrow { + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} +.menu .menu-item .menu-link:is(:hover, .open, :focus) { + color: var(--tw-sidebar-item-hover-color); +} +.menu .menu-item .menu-link:is(.active, :active) { + color: var(--tw-sidebar-item-active-color); +} +.menu > .menu-item > .menu-link:is(:hover, .open, :focus) { + background-color: var(--tw-sidebar-item-hover-bg); +} +.menu > .menu-item > .menu-link:is(.active, :active) { + background-color: var(--tw-sidebar-item-active-bg); +} +.menu .sub-menu{ + width: 100%; + overflow: hidden; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 300ms; + transition-duration: 300ms; +} +.menu .sub-menu > :not([hidden]) ~ :not([hidden]) { + margin-top: 6px; +} + +.fullscreen-enable [data-toggle=fullscreen] .ph-arrows-out::before { + content: "\e961"; +} + +html[data-sidebar-view=hidden] .app-menu { + -webkit-margin-start: -260px; + margin-inline-start: -260px; +} + +html[data-sidebar-view=mobile] .app-menu { + -webkit-margin-start: -260px; + margin-inline-start: -260px; + position: fixed; + border-style: none; + opacity: 0; +} +html[data-sidebar-view=mobile].sidebar-open .app-menu { + -webkit-margin-start: 0; + margin-inline-start: 0; + z-index: 50; + opacity: 1; +} + +.fullscreen-enable .uil-focus::before { + content: "\eb8d"; +} + +.profile-menu{ + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: -webkit-fit-content; + height: -moz-fit-content; + height: fit-content; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + overflow-wrap: break-word; + border-width: 1px; + border-color: rgb(229 231 235 / 0.8); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +.profile-menu .card-header{ + border-bottom-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); + padding-top: 0.75rem; + padding-bottom: 0.75rem; + padding-left: 1.5rem; + padding-right: 1.5rem; +} + +.profile-menu{ + position: sticky; + top: 0px; + z-index: 40; + height: 100vh; + width: 8rem; + min-width: 8rem; + border-radius: 0px; + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 300ms; + transition-duration: 300ms; +} + +@media print { + .profile-menu { + -webkit-box-shadow: none; + box-shadow: none; + } +} + +html[data-profile-view=hidden] .profile-menu{ + -webkit-margin-end: -8rem; + margin-inline-end: -8rem; +} + +html[data-profile-view=mobile] .profile-menu{ + position: fixed; + inset-inline-end: 0px; + -webkit-margin-end: -8rem; + margin-inline-end: -8rem; + border-style: none; + opacity: 0; +} +html[data-profile-view=mobile].profile-open .profile-menu{ + z-index: 50; + -webkit-margin-end: 0px; + margin-inline-end: 0px; + opacity: 1; +} + +.app-header{ + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: -webkit-fit-content; + height: -moz-fit-content; + height: fit-content; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + overflow-wrap: break-word; + border-width: 1px; + border-color: rgb(229 231 235 / 0.8); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +.app-header .card-header{ + border-bottom-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); + padding-top: 0.75rem; + padding-bottom: 0.75rem; + padding-left: 1.5rem; + padding-right: 1.5rem; +} + +.app-header{ + position: sticky; + top: 0px; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + border-radius: 0px; + border-bottom-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); +} + +@media print { + .app-header { + -webkit-box-shadow: none; + box-shadow: none; + } +} + +.app-header { + z-index: 35; + height: 70px; +} +.app-header .nav-link { + color: var(--tw-topbar-item-color); + border-radius: 9999px; + border-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-duration: 150ms; + transition-duration: 150ms; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} +.app-header .nav-link:hover { + color: var(--tw-topbar-item-hover-color); +} +.app-header .nav-link:is(.open, .show, .active, :active, :focus) { + color: var(--tw-topbar-item-active-color); +} +@media (min-width: 1024px){ + .app-header .logo-box{ + display: none; + } +} + +html[data-sidebar-view=mobile] .app-header .logo-box{ + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} + +html { + position: relative; + scroll-behavior: smooth; +} + +body { + overflow-x: hidden; + background-color: #FBF7F3; + font-family: var(--tw-body-font-family); + font-size: 0.875rem; + line-height: 1.25rem; + font-weight: 400; + line-height: 1.5; + --tw-text-opacity: 1; + color: rgb(120 113 108 / var(--tw-text-opacity)); +} + +h1, +h2, +h3, +h4, +h5, +h6{ + font-weight: 500; + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity)); +} + +code{ + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +.text-muted{ + --tw-text-opacity: 1; + color: rgb(156 163 175 / var(--tw-text-opacity)); +} + +::-webkit-scrollbar { + height: 5px; + width: 0px; + background-color: #f1f5f9; +} + +::-webkit-scrollbar-thumb { + height: 2px; + width: 0px; + background-color: #cbd5e1; +} + +canvas { + display: inherit; +} + +.custom-scroll::-webkit-scrollbar { + -webkit-appearance: none; +} +.custom-scroll::-webkit-scrollbar:vertical { + width: 4px; +} +.custom-scroll::-webkit-scrollbar:horizontal { + height: 4px; +} +.custom-scroll::-webkit-scrollbar-thumb{ + border-radius: 0.5rem; + background-color: rgb(203 213 225 / 0.5); +} +.custom-scroll::-webkit-scrollbar-track{ + border-radius: 0.5rem; + background-color: transparent; +} +.custom-scroll::-webkit-scrollbar-corner{ + background-color: transparent; +} +.badge{ + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + white-space: nowrap; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 600; + line-height: 1; + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} +@media print { + .app-menu, + .app-header, + .footer{ + display: none; + } + .app-content, + body { + padding: 0; + margin: 0; + } + .card { + -webkit-box-shadow: none; + box-shadow: none; + } +} +.swiper-button-next, +.swiper-button-prev { + height: 32px; + width: 32px; + -webkit-backdrop-filter: blur(2px); + backdrop-filter: blur(2px); + font-family: "boxicons"; + font-size: 28px; + background-color: rgb(59 130 246 / 0.2); + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +.swiper-button-next::after, +.swiper-button-prev::after { + display: none; +} + +.swiper-button-prev::before { + content: "\ea4d"; +} + +.swiper-button-next::before { + content: "\ea50"; +} + +.swiper-pagination-bullet { + width: 22px; + height: 5px; + background-color: #fff; + border-radius: 50px; + --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.swiper-pagination-bullet .swiper-pagination-bullet-active { + opacity: 1; +} + +.dynamic-pagination .swiper-pagination-bullet { + width: 8px; + height: 8px; + background-color: #fff; + opacity: 0.5; + -webkit-transition: all 0.5s ease; + transition: all 0.5s ease; +} +.dynamic-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active { + opacity: 1; + width: 20px; +} + +.swiper-pagination-fraction { + color: #fff; + font-size: 16px; + background-color: rgb(24 24 27 / 0.25); + -webkit-backdrop-filter: blur(2px); + backdrop-filter: blur(2px); +} + +.pagination-custom .swiper-pagination-bullet { + height: 25px; + width: 25px; + line-height: 25px; + border-radius: 8px; + background-color: #fff; + opacity: 0.5; + -webkit-transition: all 0.5s ease; + transition: all 0.5s ease; +} +.pagination-custom .swiper-pagination-bullet.swiper-pagination-bullet-active{ + --tw-text-opacity: 1; + color: rgb(116 122 128 / var(--tw-text-opacity)); + opacity: 1; +} + +.swiper-pagination-progressbar { + height: 6px !important; + background-color: rgb(32 183 153 / 0.25); +} +.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{ + --tw-bg-opacity: 1; + background-color: rgb(32 183 153 / var(--tw-bg-opacity)); +} + +.swiper-scrollbar { + background-color: rgba(255, 255, 255, 0.35); + -webkit-backdrop-filter: blur(2px); + backdrop-filter: blur(2px); + padding: 1.2px; + height: 6px !important; +} +.swiper-scrollbar .swiper-scrollbar-drag { + background-color: #fff; +} + +.swiper-pagination-dark .swiper-pagination-bullet{ + --tw-bg-opacity: 1; + background-color: rgb(116 122 128 / var(--tw-bg-opacity)); +} +.swiper-pagination-dark .dynamic-pagination .swiper-pagination-bullet{ + --tw-bg-opacity: 1; + background-color: rgb(116 122 128 / var(--tw-bg-opacity)); +} +.swiper-pagination-dark.pagination-custom .swiper-pagination-bullet { + color: #fff; +} +.swiper-pagination-dark.pagination-custom .swiper-pagination-bullet.swiper-pagination-bullet-active { + opacity: 1; +} +.swiper-pagination-dark.swiper-scrollbar{ + background-color: rgb(24 24 27 / 0.25); +} + +[data-simplebar] { + position: relative; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + -ms-flex-line-pack: start; + align-content: flex-start; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; +} + +.simplebar-wrapper { + overflow: hidden; + width: inherit; + height: inherit; + max-width: inherit; + max-height: inherit; +} + +.simplebar-mask { + direction: inherit; + position: absolute; + overflow: hidden; + padding: 0; + margin: 0; + inset-inline-start: 0; + top: 0; + bottom: 0; + inset-inline-end: 0; + width: auto !important; + height: auto !important; + z-index: 0; +} + +.simplebar-offset { + direction: inherit !important; + -webkit-box-sizing: inherit !important; + box-sizing: inherit !important; + resize: none !important; + position: absolute; + top: 0; + inset-inline-start: 0 !important; + bottom: 0; + inset-inline-end: 0 !important; + padding: 0; + margin: 0; + -webkit-overflow-scrolling: touch; +} + +.simplebar-content-wrapper { + direction: inherit; + -webkit-box-sizing: border-box !important; + box-sizing: border-box !important; + position: relative; + display: block; + height: 100%; + /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */ + width: auto; + visibility: visible; + overflow: auto; + /* Scroll on this element otherwise element can't have a padding applied properly */ + max-width: 100%; + /* Not required for horizontal scroll to trigger */ + max-height: 100%; + /* Needed for vertical scroll to trigger */ + scrollbar-width: none; + padding: 0px !important; +} + +.simplebar-content-wrapper::-webkit-scrollbar, +.simplebar-hide-scrollbar::-webkit-scrollbar { + display: none; +} + +.simplebar-content:before, +.simplebar-content:after { + content: " "; + display: table; +} + +.simplebar-placeholder { + max-height: 100%; + max-width: 100%; + width: 100%; + pointer-events: none; +} + +.simplebar-height-auto-observer-wrapper { + -webkit-box-sizing: inherit !important; + box-sizing: inherit !important; + height: 100%; + width: 100%; + max-width: 1px; + position: relative; + float: inset-inline-start; + max-height: 1px; + overflow: hidden; + z-index: -1; + padding: 0; + margin: 0; + pointer-events: none; + -webkit-box-flex: inherit; + -ms-flex-positive: inherit; + flex-grow: inherit; + -ms-flex-negative: 0; + flex-shrink: 0; + -ms-flex-preferred-size: 0; + flex-basis: 0; +} + +.simplebar-height-auto-observer { + -webkit-box-sizing: inherit; + box-sizing: inherit; + display: block; + opacity: 0; + position: absolute; + top: 0; + inset-inline-start: 0; + height: 1000%; + width: 1000%; + min-height: 1px; + min-width: 1px; + overflow: hidden; + pointer-events: none; + z-index: -1; +} + +.simplebar-track { + z-index: 1; + position: absolute; + inset-inline-end: 0; + bottom: 0; + pointer-events: none; + overflow: hidden; +} + +[data-simplebar].simplebar-dragging .simplebar-content { + pointer-events: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-user-select: none; +} + +[data-simplebar].simplebar-dragging .simplebar-track { + pointer-events: all; +} + +.simplebar-scrollbar { + position: absolute; + inset-inline-end: 2px; + width: 4px; + min-height: 10px; +} + +.simplebar-scrollbar:before { + content: ""; + position: absolute; + border-radius: 7px; + inset-inline-start: 0; + inset-inline-end: 0; + opacity: 0; + -webkit-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; + --tw-bg-opacity: 1; + background-color: rgb(203 213 225 / var(--tw-bg-opacity)); +} + +.simplebar-scrollbar.simplebar-visible:before { + /* When hovered, remove all transitions from drag handle */ + opacity: 0.5; + -webkit-transition: opacity 0s linear; + transition: opacity 0s linear; +} + +.simplebar-track.simplebar-vertical { + top: 0; + width: 11px; +} + +.simplebar-track.simplebar-vertical .simplebar-scrollbar:before { + top: 2px; + bottom: 2px; +} + +.simplebar-track.simplebar-horizontal { + inset-inline-start: 0; + height: 11px; +} + +.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before { + height: 100%; + inset-inline-start: 2px; + inset-inline-end: 2px; +} + +.simplebar-track.simplebar-horizontal .simplebar-scrollbar { + inset-inline-end: auto; + inset-inline-start: 0; + top: 2px; + height: 7px; + min-height: 0; + min-width: 10px; + width: auto; +} + +/* Rtl support */ +[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical { + inset-inline-end: auto; + inset-inline-start: 0; +} + +.simplebar-dummy-scrollbar-size { + direction: rtl; + position: fixed; + opacity: 0; + visibility: hidden; + height: 500px; + width: 500px; + overflow-y: hidden; + overflow-x: scroll; +} + +.simplebar-hide-scrollbar { + position: fixed; + inset-inline-start: 0; + visibility: hidden; + overflow-y: scroll; + scrollbar-width: none; +} + +[data-simplebar-lg] .simplebar-scrollbar { + inset-inline-end: 1px; + width: 10px; +} + +[data-simplebar-primary] .simplebar-scrollbar:before{ + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +.apex-charts { + min-height: 10px !important; +} + +.apexcharts-canvas { + margin: 0 auto; +} +.apexcharts-canvas .apexcharts-text, +.apexcharts-canvas .apexcharts-text.apexcharts-xaxis-label, +.apexcharts-canvas .apexcharts-text.apexcharts-yaxis-label, +.apexcharts-canvas .apexcharts-title-text{ + fill: #9ca3af; +} +.apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-light, +.apexcharts-canvas .apexcharts-xaxistooltip.apexcharts-theme-light{ + border-width: 1px; + border-color: rgb(2 6 23 / 0.75); + background-color: rgb(2 6 23 / 0.75); + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} +.apexcharts-canvas .apexcharts-xaxistooltip-bottom:after, +.apexcharts-canvas .apexcharts-xaxistooltip-bottom:before{ + border-bottom-color: rgb(2 6 23 / 0.75); +} +.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active{ + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} +.apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title{ + --tw-border-opacity: 1; + border-color: rgb(2 6 23 / var(--tw-border-opacity)); + --tw-bg-opacity: 1; + background-color: rgb(2 6 23 / var(--tw-bg-opacity)); +} + +.apexcharts-legend-series{ + font-weight: 600; +} + +.apexcharts-legend-text{ + --tw-text-opacity: 1; + color: rgb(209 213 219 / var(--tw-text-opacity)); + font-size: 13px !important; + vertical-align: middle; +} + +.apexcharts-legend-marker { + vertical-align: middle; + margin-right: 5px !important; +} + +.apexcharts-pie-label{ + fill: #fff; +} + +.apex-charts text, +.apexcharts-tooltip-title, +.apexcharts-tooltip-text, +.apexcharts-xaxistooltip-text, +.apexcharts-yaxis .text, +.apexcharts-xaxis .text, +.apexcharts-datalabels text, +.apexcharts-title-text, +.apexcharts-legend-text, +.apexcharts-subtitle-text, +.apexcharts-tooltip { + font-family: var(--tw-body-font-family) !important; +} + +.morris-chart text { + font-family: var(--tw-body-font-family) !important; +} + +.morris-hover { + position: absolute; + z-index: 10; +} +.morris-hover.morris-default-style { + font-size: 12px; + text-align: center; + border-radius: 5px; + padding: 10px 12px; + font-family: var(--tw-body-font-family); + --tw-bg-opacity: 1; + background-color: rgb(34 42 62 / var(--tw-bg-opacity)); + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} +.morris-hover.morris-default-style .morris-hover-row-label { + font-weight: bold; + margin: 0.25em 0; + font-family: var(--tw-body-font-family); +} +.morris-hover.morris-default-style .morris-hover-point { + white-space: nowrap; + margin: 0.1em 0; + color: white; +} + +.dropzone{ + min-height: 230px; + border-radius: 0.375rem; + border-width: 2px; + border-style: dashed; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +.ql-editor { + text-align: left; +} +.ql-editor ol, +.ql-editor ul { + padding-left: 1.5em; + padding-right: 0; +} +.ql-editor li:not(.ql-direction-rtl)::before { + margin-left: -1.5em; + margin-right: 0.3em; + text-align: right; +} + +.ql-toolbar.ql-snow{ + border-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); +} + +.ql-container.ql-snow{ + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + border-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); +} + +.ql-bubble{ + border-radius: 0.25rem; + border-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); +} + +.ql-toolbar span { + outline: none !important; + --tw-text-opacity: 1; + color: rgb(31 41 55 / var(--tw-text-opacity)); +} +.ql-toolbar span:hover{ + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} +.ql-toolbar.ql-snow{ + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + border-width: 1px; +} +.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label { + border-color: transparent; +} +.ql-toolbar.ql-snow .ql-picker-options{ + border-radius: 0.25rem; + --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.ql-snow .ql-stroke, +.ql-snow .ql-script, +.ql-snow .ql-strike svg{ + stroke: #6b7280; +} +.ql-snow .ql-fill{ + --tw-text-opacity: 1; + color: rgb(15 23 42 / var(--tw-text-opacity)); +} +.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg { + right: 0; + left: auto; +} +.ql-snow .ql-picker.ql-expanded .ql-picker-label{ + --tw-text-opacity: 1; + color: rgb(15 23 42 / var(--tw-text-opacity)); +} + +.ql-snow .ql-picker-options{ + border-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{ + border-width: 1px; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); +} + +.gmaps, +.gmaps-panaroma { + height: 300px; + border-radius: 3px; + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} + +.gmaps-overlay { + display: block; + text-align: center; + color: #fff; + font-size: 16px; + line-height: 40px; + border-radius: 4px; + padding: 10px 20px; + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +.gmaps-overlay_arrow { + left: 50%; + margin-left: -16px; + width: 0; + height: 0; + position: absolute; +} +.gmaps-overlay_arrow.above { + bottom: -15px; + border-left: 16px solid transparent; + border-right: 16px solid transparent; + border-width: 16px; + --tw-border-opacity: 1; + border-top-color: rgb(59 130 246 / var(--tw-border-opacity)); +} +.gmaps-overlay_arrow.below { + top: -15px; + border-left: 16px solid transparent; + border-right: 16px solid transparent; + border-width: 16px; + --tw-border-opacity: 1; + border-bottom-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +.fc-view { + margin-top: 30px; +} + +.fc-toolbar { + margin: 6px 0 5px 0 !important; +} +.fc-toolbar h2 { + font-size: 1.25rem !important; + line-height: 1.875rem; + text-transform: uppercase; +} + +.fc-day-grid-event .fc-time{ + font-weight: 600; +} + +th.fc-day-header { + padding: 0.5rem 0; +} + +.fc-day { + background: transparent; +} + +.fc th.fc-widget-header{ + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); + font-weight: 600; + font-size: 13px; + line-height: 20px; + padding: 10px 0; + text-transform: uppercase; +} +.fc .fc-daygrid-body, +.fc .fc-scrollgrid-section-body table, +.fc .fc-scrollgrid-section-footer table { + width: 100% !important; +} + +.fc-state-down, +.fc-state-active, +.fc-state-disabled{ + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); + text-shadow: none; +} + +.fc .fc-toolbar { + -ms-flex-wrap: wrap; + flex-wrap: wrap; + gap: 12px; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} + +.fc-event { + border-radius: 2px; + border: none; + cursor: move; + font-size: 0.8125rem; + margin: 5px 7px; + padding: 5px 5px; + text-align: center; + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +@media (min-width: 768px) { + .fc-toolbar .fc-toolbar-chunk { + margin: 6px 0; + } + .fc-toolbar .fc-left, + .fc-toolbar .fc-right, + .fc-toolbar .fc-center { + float: none; + display: block; + clear: both; + margin: 10px 0; + } +} +.fc-list-item-title, +.fc-list-item-time{ + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +.fc-theme-standard .fc-scrollgrid, +.fc-theme-standard td, +.fc-theme-standard th{ + border-width: 1px; + border-style: solid; + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); +} + +/*! + * Waves v0.7.6 + * http://fian.my.id/Waves + * + * Copyright 2014-2018 Alfiana E. Sibuea and other contributors + * Released under the MIT license + * https://github.com/fians/Waves/blob/master/LICENSE */ +.waves-effect { + position: relative; + cursor: pointer; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + overflow: hidden; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-tap-highlight-color: transparent; +} + +.waves-effect .waves-ripple { + position: absolute; + border-radius: 50%; + width: 100px; + height: 100px; + margin-top: -50px; + margin-left: -50px; + opacity: 0; + background: rgba(0, 0, 0, 0.2); + background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%); + -webkit-transition: all 0.5s ease-out; + transition: all 0.5s ease-out; + -webkit-transition-property: opacity, -webkit-transform; + transition-property: opacity, -webkit-transform; + transition-property: transform, opacity; + transition-property: transform, opacity, -webkit-transform; + -webkit-transform: scale(0) translate(0, 0); + transform: scale(0) translate(0, 0); + pointer-events: none; +} + +.waves-effect.waves-light .waves-ripple { + background: rgba(255, 255, 255, 0.4); + background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%); +} + +.waves-effect.waves-classic .waves-ripple { + background: rgba(0, 0, 0, 0.2); +} + +.waves-effect.waves-classic.waves-light .waves-ripple { + background: rgba(255, 255, 255, 0.4); +} + +.waves-notransition { + -webkit-transition: none !important; + transition: none !important; +} + +.waves-button, +.waves-circle { + -webkit-transform: translateZ(0); + transform: translateZ(0); + -webkit-mask-image: radial-gradient(circle, white 100%, black 100%); + mask-image: radial-gradient(circle, white 100%, black 100%); +} + +.waves-button, +.waves-button:hover, +.waves-button:visited, +.waves-button-input { + white-space: nowrap; + vertical-align: middle; + cursor: pointer; + border: none; + outline: none; + color: inherit; + background-color: rgba(0, 0, 0, 0); + font-size: 1em; + line-height: 1em; + text-align: center; + text-decoration: none; + z-index: 1; +} + +.waves-button { + padding: 0.85em 1.1em; + border-radius: 0.2em; +} + +.waves-button-input { + margin: 0; + padding: 0.85em 1.1em; +} + +.waves-input-wrapper { + border-radius: 0.2em; + vertical-align: bottom; +} + +.waves-input-wrapper.waves-button { + padding: 0; +} + +.waves-input-wrapper .waves-button-input { + position: relative; + top: 0; + left: 0; + z-index: 1; +} + +.waves-circle { + text-align: center; + width: 2.5em; + height: 2.5em; + line-height: 2.5em; + border-radius: 50%; +} + +.waves-float { + -webkit-mask-image: none; + mask-image: none; + -webkit-box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12); + box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12); + -webkit-transition: all 300ms; + transition: all 300ms; +} + +.waves-float:active { + -webkit-box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3); + box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3); +} + +.waves-block { + display: block; +} + +.after\:absolute::after{ + content: var(--tw-content); + position: absolute; +} + +.after\:bottom-0::after{ + content: var(--tw-content); + bottom: 0px; +} + +.after\:end-0::after{ + content: var(--tw-content); + inset-inline-end: 0px; +} + +.after\:start-0::after{ + content: var(--tw-content); + inset-inline-start: 0px; +} + +.after\:h-px::after{ + content: var(--tw-content); + height: 1px; +} + +.after\:w-0::after{ + content: var(--tw-content); + width: 0px; +} + +.after\:bg-blue-600::after{ + content: var(--tw-content); + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +.after\:transition-all::after{ + content: var(--tw-content); + -webkit-transition-property: all; + transition-property: all; + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + -webkit-transition-duration: 150ms; + transition-duration: 150ms; +} + +.after\:duration-500::after{ + content: var(--tw-content); + -webkit-transition-duration: 500ms; + transition-duration: 500ms; +} + +.after\:content-\[\'\'\]::after{ + --tw-content: ''; + content: var(--tw-content); +} + +.first\:mt-0:first-child{ + margin-top: 0px; +} + +.first\:rounded-t-lg:first-child{ + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; +} + +.last\:rounded-b-lg:last-child{ + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.odd\:bg-white:nth-child(odd){ + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +.even\:bg-gray-100:nth-child(even){ + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} + +.hover\:bg-blue-50:hover{ + --tw-bg-opacity: 1; + background-color: rgb(239 246 255 / var(--tw-bg-opacity)); +} + +.hover\:bg-blue-500:hover{ + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +.hover\:bg-blue-600:hover{ + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +.hover\:bg-danger:hover{ + --tw-bg-opacity: 1; + background-color: rgb(250 89 68 / var(--tw-bg-opacity)); +} + +.hover\:bg-dark:hover{ + --tw-bg-opacity: 1; + background-color: rgb(34 42 62 / var(--tw-bg-opacity)); +} + +.hover\:bg-gray-100:hover{ + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} + +.hover\:bg-gray-50:hover{ + --tw-bg-opacity: 1; + background-color: rgb(249 250 251 / var(--tw-bg-opacity)); +} + +.hover\:bg-info:hover{ + --tw-bg-opacity: 1; + background-color: rgb(60 186 222 / var(--tw-bg-opacity)); +} + +.hover\:bg-primary:hover{ + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +.hover\:bg-secondary:hover{ + --tw-bg-opacity: 1; + background-color: rgb(116 122 128 / var(--tw-bg-opacity)); +} + +.hover\:bg-stone-100:hover{ + --tw-bg-opacity: 1; + background-color: rgb(245 245 244 / var(--tw-bg-opacity)); +} + +.hover\:bg-success:hover{ + --tw-bg-opacity: 1; + background-color: rgb(32 183 153 / var(--tw-bg-opacity)); +} + +.hover\:bg-warning:hover{ + --tw-bg-opacity: 1; + background-color: rgb(239 181 64 / var(--tw-bg-opacity)); +} + +.hover\:text-blue-500:hover{ + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +.hover\:text-blue-600:hover{ + --tw-text-opacity: 1; + color: rgb(37 99 235 / var(--tw-text-opacity)); +} + +.hover\:text-gray-400:hover{ + --tw-text-opacity: 1; + color: rgb(156 163 175 / var(--tw-text-opacity)); +} + +.hover\:text-gray-500:hover{ + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity)); +} + +.hover\:text-gray-700:hover{ + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity)); +} + +.hover\:text-gray-800:hover{ + --tw-text-opacity: 1; + color: rgb(31 41 55 / var(--tw-text-opacity)); +} + +.hover\:text-primary:hover{ + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +.hover\:text-sky-700:hover{ + --tw-text-opacity: 1; + color: rgb(3 105 161 / var(--tw-text-opacity)); +} + +.hover\:text-white:hover{ + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +.hover\:underline:hover{ + text-decoration-line: underline; +} + +.hover\:after\:end-auto:hover::after{ + content: var(--tw-content); + inset-inline-end: auto; +} + +.hover\:after\:w-full:hover::after{ + content: var(--tw-content); + width: 100%; +} + +.focus\:z-10:focus{ + z-index: 10; +} + +.focus\:border-blue-500:focus{ + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +.focus\:outline-none:focus{ + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus\:ring-2:focus{ + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + -webkit-box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-blue-500:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +.focus\:ring-blue-600:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity)); +} + +.focus\:ring-gray-400:focus{ + --tw-ring-opacity: 1; + --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity)); +} + +.focus\:ring-offset-2:focus{ + --tw-ring-offset-width: 2px; +} + +.focus\:ring-offset-white:focus{ + --tw-ring-offset-color: #fff; +} + +.hs-dropdown.open > .hs-dropdown-open\:translate-y-0{ + --tw-translate-y: 0px; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.hs-dropdown.open > .hs-dropdown-open\:opacity-100{ + opacity: 1; +} + +.hs-dropdown.open > .hs-dropdown-menu > .hs-dropdown-open\:translate-y-0{ + --tw-translate-y: 0px; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.hs-dropdown.open > .hs-dropdown-menu > .hs-dropdown-open\:opacity-100{ + opacity: 1; +} + +.hs-tooltip.show .hs-tooltip-shown\:visible{ + visibility: visible; +} + +.hs-tooltip.show .hs-tooltip-shown\:opacity-100{ + opacity: 1; +} + +[data-hs-tab].active.hs-tab-active\:border-primary{ + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +[data-hs-tab].active.hs-tab-active\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +[data-hs-tab].active.hs-tab-active\:font-semibold{ + font-weight: 600; +} + +[data-hs-tab].active.hs-tab-active\:text-primary{ + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +[data-hs-tab].active .hs-tab-active\:border-primary{ + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +[data-hs-tab].active .hs-tab-active\:bg-white{ + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +[data-hs-tab].active .hs-tab-active\:font-semibold{ + font-weight: 600; +} + +[data-hs-tab].active .hs-tab-active\:text-primary{ + --tw-text-opacity: 1; + color: rgb(59 130 246 / var(--tw-text-opacity)); +} + +.open.hs-overlay-open\:mt-7{ + margin-top: 1.75rem; +} + +.open.hs-overlay-open\:translate-x-0{ + --tw-translate-x: 0px; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.open.hs-overlay-open\:translate-y-0{ + --tw-translate-y: 0px; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.open.hs-overlay-open\:scale-100{ + --tw-scale-x: 1; + --tw-scale-y: 1; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.open.hs-overlay-open\:opacity-100{ + opacity: 1; +} + +.open.hs-overlay-open\:duration-200{ + -webkit-transition-duration: 200ms; + transition-duration: 200ms; +} + +.open.hs-overlay-open\:duration-500{ + -webkit-transition-duration: 500ms; + transition-duration: 500ms; +} + +.open.hs-overlay-open\:ease-in{ + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} + +.open .hs-overlay-open\:mt-7{ + margin-top: 1.75rem; +} + +.open .hs-overlay-open\:translate-x-0{ + --tw-translate-x: 0px; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.open .hs-overlay-open\:translate-y-0{ + --tw-translate-y: 0px; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.open .hs-overlay-open\:scale-100{ + --tw-scale-x: 1; + --tw-scale-y: 1; + -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.open .hs-overlay-open\:opacity-100{ + opacity: 1; +} + +.open .hs-overlay-open\:duration-200{ + -webkit-transition-duration: 200ms; + transition-duration: 200ms; +} + +.open .hs-overlay-open\:duration-500{ + -webkit-transition-duration: 500ms; + transition-duration: 500ms; +} + +.open .hs-overlay-open\:ease-in{ + -webkit-transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} + +:is([dir="ltr"] .ltr\:rounded-l-md){ + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} + +:is([dir="ltr"] .ltr\:rounded-l-none){ + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; +} + +:is([dir="ltr"] .ltr\:rounded-r-md){ + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; +} + +:is([dir="ltr"] .ltr\:rounded-r-none){ + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + +:is([dir="ltr"] .ltr\:border-l-0){ + border-left-width: 0px; +} + +:is([dir="ltr"] .ltr\:border-r-0){ + border-right-width: 0px; +} + +:is([dir="rtl"] .rtl\:-end-1){ + inset-inline-end: -0.25rem; +} + +:is([dir="rtl"] .rtl\:-start-1){ + inset-inline-start: -0.25rem; +} + +:is([dir="rtl"] .rtl\:rounded-l-md){ + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} + +:is([dir="rtl"] .rtl\:rounded-l-none){ + border-top-left-radius: 0px; + border-bottom-left-radius: 0px; +} + +:is([dir="rtl"] .rtl\:rounded-r-md){ + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; +} + +:is([dir="rtl"] .rtl\:rounded-r-none){ + border-top-right-radius: 0px; + border-bottom-right-radius: 0px; +} + +:is([dir="rtl"] .rtl\:text-right){ + text-align: right; +} + +:is([data-mode="dark"] .dark\:bg-opacity-80){ + --tw-bg-opacity: 0.8; +} + +@media print{ + .print\:hidden{ + display: none; + } +} + +@media (min-width: 640px){ + .sm\:mx-auto{ + margin-left: auto; + margin-right: auto; + } + .sm\:mt-0{ + margin-top: 0px; + } + .sm\:block{ + display: block; + } + .sm\:flex{ + display: -webkit-box; + display: -ms-flexbox; + display: flex; + } + .sm\:hidden{ + display: none; + } + .sm\:w-auto{ + width: auto; + } + .sm\:w-full{ + width: 100%; + } + .sm\:max-w-3xl{ + max-width: 48rem; + } + .sm\:max-w-7xl{ + max-width: 80rem; + } + .sm\:max-w-lg{ + max-width: 32rem; + } + .sm\:max-w-sm{ + max-width: 24rem; + } + .sm\:gap-x-4{ + -webkit-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; + } + .sm\:rounded-md{ + border-radius: 0.375rem; + } + .sm\:px-6{ + padding-left: 1.5rem; + padding-right: 1.5rem; + } + .sm\:py-4{ + padding-top: 1rem; + padding-bottom: 1rem; + } + .sm\:text-end{ + text-align: end; + } + .sm\:text-4xl{ + font-size: 2.25rem; + line-height: 2.5rem; + } + .sm\:text-sm{ + font-size: 0.875rem; + line-height: 1.25rem; + } + .sm\:first\:ms-0:first-child{ + -webkit-margin-start: 0px; + margin-inline-start: 0px; + } + .sm\:first\:rounded-l-lg:first-child{ + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + .sm\:first\:rounded-tr-none:first-child{ + border-top-right-radius: 0px; + } + .sm\:last\:rounded-r-lg:last-child{ + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + .sm\:last\:rounded-bl-none:last-child{ + border-bottom-left-radius: 0px; + } +} + +@media (min-width: 768px){ + .md\:col-span-3{ + grid-column: span 3 / span 3; + } + .md\:col-start-2{ + grid-column-start: 2; + } + .md\:flex{ + display: -webkit-box; + display: -ms-flexbox; + display: flex; + } + .md\:w-1\/2{ + width: 50%; + } + .md\:max-w-2xl{ + max-width: 42rem; + } + .md\:grid-cols-2{ + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + .md\:justify-end{ + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + } + .md\:justify-between{ + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + } + .md\:text-3xl{ + font-size: 1.875rem; + line-height: 2.25rem; + } + .md\:text-xl{ + font-size: 1.25rem; + line-height: 1.75rem; + } +} + +@media (min-width: 1024px){ + .lg\:col-span-2{ + grid-column: span 2 / span 2; + } + .lg\:col-span-3{ + grid-column: span 3 / span 3; + } + .lg\:w-1\/3{ + width: 33.333333%; + } + .lg\:w-3\/4{ + width: 75%; + } + .lg\:grid-cols-2{ + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + .lg\:grid-cols-3{ + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + .lg\:grid-cols-4{ + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + .lg\:grid-cols-5{ + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + .lg\:px-8{ + padding-left: 2rem; + padding-right: 2rem; + } +} + +@media (min-width: 1280px){ + .xl\:grid-cols-2{ + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + .xl\:grid-cols-4{ + grid-template-columns: repeat(4, minmax(0, 1fr)); + } +} + +@media (min-width: 1536px){ + .\32xl\:w-1\/4{ + width: 25%; + } + .\32xl\:grid-cols-2{ + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + .\32xl\:grid-cols-3{ + grid-template-columns: repeat(3, minmax(0, 1fr)); + } +} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/css/theme.min.css b/dj_backend_server/web/static/assets/css/theme.min.css new file mode 100644 index 00000000..40643950 --- /dev/null +++ b/dj_backend_server/web/static/assets/css/theme.min.css @@ -0,0 +1,8 @@ +@import url(https://fonts.googleapis.com/css2?family=REM:wght@100;200;300;400;500;600;700;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap);@import url(https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap);:root{--tw-body-font-family:"Jost",sans-serif}[data-sidebar-color=light]{--tw-sidebar-bg:#FBF7F3;--tw-sidebar-item-color:#6b7280;--tw-sidebar-item-hover-color:#000;--tw-sidebar-item-hover-bg:rgb(0 0 0 / 5%);--tw-sidebar-item-active-color:#000;--tw-sidebar-item-active-bg:rgb(0 0 0 / 7%)}[data-sidebar-color=dark]{--tw-sidebar-bg:#262626;--tw-sidebar-item-color:#a3a3a3;--tw-sidebar-item-hover-color:#fff;--tw-sidebar-item-hover-bg:rgb(255 255 255 / 5%);--tw-sidebar-item-active-color:#fff;--tw-sidebar-item-active-bg:rgb(63 63 70 / 50%)}[data-topbar-color=light]{--tw-topbar-bg:#FBF7F3;--tw-topbar-item-color:#6b7280;--tw-topbar-item-hover-color:#3b82f6;--tw-topbar-item-hover-bg:rgb(59 130 246 / 10%);--tw-topbar-item-active-color:#3b82f6;--tw-topbar-item-active-bg:rgb(59 130 246 / 12%)}*,::after,::before{-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid #e5e7eb;--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::after,::before{--tw-content:''}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";-webkit-font-feature-settings:normal;font-feature-settings:normal;font-variation-settings:normal;position:relative;scroll-behavior:smooth}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;-webkit-font-feature-settings:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}dialog,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}[multiple],[type=date],[type=datetime-local],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],input:where(:not([type])),select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow:0 0 #0000}[multiple]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,input:where(:not([type])):focus,select:focus,textarea:focus{outline:transparent solid 2px;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);-webkit-box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#6b7280;opacity:1}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#6b7280;opacity:1}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple],[size]:where(select:not([size="1"])){background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow:0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:transparent solid 2px;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);-webkit-box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}[type=checkbox]:checked:focus,[type=checkbox]:checked:hover,[type=radio]:checked:focus,[type=radio]:checked:hover{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:indeterminate:focus,[type=checkbox]:indeterminate:hover{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:ButtonText solid 1px;outline:-webkit-focus-ring-color auto 1px}::-webkit-backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.form-input,.form-multiselect,.form-select,.form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow:0 0 #0000}.form-input:focus,.form-multiselect:focus,.form-select:focus,.form-textarea:focus{outline:transparent solid 2px;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);-webkit-box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}.form-input::-webkit-input-placeholder,.form-textarea::-webkit-input-placeholder{color:#6b7280;opacity:1}.form-input::-moz-placeholder,.form-textarea::-moz-placeholder{color:#6b7280;opacity:1}.form-input:-ms-input-placeholder,.form-textarea:-ms-input-placeholder{color:#6b7280;opacity:1}.form-input::-ms-input-placeholder,.form-textarea::-ms-input-placeholder{color:#6b7280;opacity:1}.form-input::placeholder,.form-textarea::placeholder{color:#6b7280;opacity:1}.form-input::-webkit-datetime-edit-fields-wrapper{padding:0}.form-input::-webkit-date-and-time-value{min-height:1.5em}.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-meridiem-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-year-field{padding-top:0;padding-bottom:0}.form-select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}.form-select:where([size]:not([size="1"])){background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}.form-checkbox,.form-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow:0 0 #0000}.form-checkbox{border-radius:0}.form-radio{border-radius:100%}.form-checkbox:focus,.form-radio:focus{outline:transparent solid 2px;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);-webkit-box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.form-checkbox:checked,.form-radio:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}.form-checkbox:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}.form-radio:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}.form-checkbox:checked:focus,.form-checkbox:checked:hover,.form-radio:checked:focus,.form-radio:checked:hover{border-color:transparent;background-color:currentColor}.form-checkbox:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}.form-checkbox:indeterminate:focus,.form-checkbox:indeterminate:hover{border-color:transparent;background-color:currentColor}.btn{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-width:1px;border-color:transparent;padding:.375rem .75rem;text-align:center;font-size:.875rem;line-height:1.25rem;letter-spacing:.05em;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.btn.btn-lg{padding:.75rem 1.25rem;font-size:1rem;line-height:1.5rem}.btn.btn-sm{padding:.375rem .875rem;font-size:.75rem;line-height:1rem}.card{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-wrap:break-word;border-width:1px;border-color:rgb(229 231 235 / .8);--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.card .card-header{border-bottom-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));padding:.75rem 1.5rem}.card-title{font-size:1rem;line-height:1.5rem;font-weight:600;--tw-text-opacity:1;color:rgb(31 41 55 / var(--tw-text-opacity))}label{display:inline-block;cursor:pointer;font-size:.875rem;line-height:1.25rem;font-weight:600;--tw-text-opacity:1;color:rgb(75 85 99 / var(--tw-text-opacity))}.form-input,.form-select,.form-textarea{display:block;width:100%;border-radius:.25rem;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));font-size:.875rem;line-height:1.25rem;font-weight:400}.form-input:focus,.form-select:focus,.form-textarea:focus{--tw-border-opacity:1;border-color:rgb(209 213 219 / var(--tw-border-opacity));--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);-webkit-box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.form-checkbox,.form-radio{cursor:pointer;--tw-border-opacity:1;border-color:rgb(209 213 219 / var(--tw-border-opacity));background-color:inherit}.form-checkbox:focus,.form-radio:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);-webkit-box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.form-switch{display:-webkit-box;display:-ms-flexbox;display:flex;height:1.25rem;width:2.25rem;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:9999px;border-width:2px;border-color:transparent;--tw-bg-opacity:1;background-color:rgb(229 231 235 / var(--tw-bg-opacity));-webkit-transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1)}.form-switch:checked{background-image:none}.form-switch:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);-webkit-box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);--tw-ring-offset-width:0px}.form-switch::before{display:inline-block;height:1rem;width:1rem;--tw-translate-x:0px;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-radius:9999px;--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));-webkit-transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform,-webkit-filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-box-shadow,-webkit-transform,-webkit-filter,-webkit-backdrop-filter;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);--tw-content:"";content:var(--tw-content)}.form-switch:checked::before{--tw-translate-x:100%;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{inset:0px}.inset-x-0{left:0;right:0}.inset-x-px{left:1px;right:1px}.inset-y-0{top:0;bottom:0}.-bottom-1{bottom:-.25rem}.-end-1{inset-inline-end:-0.25rem}.-start-1{inset-inline-start:-0.25rem}.-top-1{top:-.25rem}.bottom-0{bottom:0}.bottom-px{bottom:1px}.end-3{inset-inline-end:0.75rem}.end-4{inset-inline-end:1rem}.left-0{left:0}.right-0{right:0}.start-0{inset-inline-start:0px}.start-1\/2{inset-inline-start:50%}.start-3{inset-inline-start:0.75rem}.start-4{inset-inline-start:1rem}.top-0{top:0}.top-1{top:.25rem}.top-1\.5{top:.375rem}.top-1\/2{top:50%}.top-1\/3{top:33.333333%}.-z-10{z-index:-10}.z-10{z-index:10}.z-20{z-index:20}.z-40{z-index:40}.z-50{z-index:50}.z-\[60\]{z-index:60}.col-span-3{grid-column:span 3/span 3}.col-start-3{grid-column-start:3}.m-0{margin:0}.m-3{margin:.75rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-top:.5rem;margin-bottom:.5rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-5{margin-top:1.25rem;margin-bottom:1.25rem}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.my-8{margin-top:2rem;margin-bottom:2rem}.-mb-px{margin-bottom:-1px}.-ms-px{-webkit-margin-start:-1px;margin-inline-start:-1px}.-mt-px{margin-top:-1px}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-1\.5{margin-bottom:.375rem}.mb-2{margin-bottom:.5rem}.mb-2\.5{margin-bottom:.625rem}.mb-20{margin-bottom:5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.me-1{-webkit-margin-end:.25rem;margin-inline-end:.25rem}.me-2{-webkit-margin-end:.5rem;margin-inline-end:.5rem}.me-3{-webkit-margin-end:.75rem;margin-inline-end:.75rem}.ml-1{margin-left:.25rem}.ml-1\.5{margin-left:.375rem}.mr-1{margin-right:.25rem}.mr-1\.5{margin-right:.375rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.ms-1{-webkit-margin-start:0.25rem;margin-inline-start:.25rem}.ms-1\.5{-webkit-margin-start:0.375rem;margin-inline-start:.375rem}.ms-2{-webkit-margin-start:0.5rem;margin-inline-start:.5rem}.ms-auto{-webkit-margin-start:auto;margin-inline-start:auto}.mt-0{margin-top:0}.mt-1{margin-top:.25rem}.mt-10{margin-top:2.5rem}.mt-14{margin-top:3.5rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mt-auto{margin-top:auto}.mt-px{margin-top:1px}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.block{display:block}.inline-block{display:inline-block}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-1{height:.25rem}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-2{height:.5rem}.h-2\.5{height:.625rem}.h-20{height:5rem}.h-3{height:.75rem}.h-3\.5{height:.875rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[2\.375rem\]{height:2.375rem}.h-\[calc\(100\%-3\.5rem\)\]{height:calc(100% - 3.5rem)}.h-\[calc\(100vh-252px\)\]{height:calc(100vh - 252px)}.h-full{height:100%}.h-px{height:1px}.h-screen{height:100vh}.max-h-60{max-height:15rem}.max-h-80{max-height:20rem}.max-h-full{max-height:100%}.w-0{width:0}.w-1\/2{width:50%}.w-14{width:3.5rem}.w-2{width:.5rem}.w-2\.5{width:.625rem}.w-3{width:.75rem}.w-3\.5{width:.875rem}.w-3\/12{width:25%}.w-3\/4{width:75%}.w-4{width:1rem}.w-4\/12{width:33.333333%}.w-44{width:11rem}.w-5{width:1.25rem}.w-5\/12{width:41.666667%}.w-6{width:1.5rem}.w-6\/12{width:50%}.w-60{width:15rem}.w-7\/12{width:58.333333%}.w-72{width:18rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-\[2\.375rem\]{width:2.375rem}.w-full{width:100%}.w-screen{width:100vw}.min-w-fit{min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content}.min-w-full{min-width:100%}.max-w-2xl{max-width:42rem}.max-w-4xl{max-width:56rem}.max-w-\[90\%\]{max-width:90%}.max-w-xs{max-width:20rem}.flex-1{-webkit-box-flex:1;-ms-flex:1 1 0%;flex:1 1 0%}.flex-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-shrink-0{-ms-flex-negative:0;flex-shrink:0}.flex-grow,.grow{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.border-collapse{border-collapse:collapse}.origin-center{-webkit-transform-origin:center;transform-origin:center}.-translate-x-full{--tw-translate-x:-100%;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-full{--tw-translate-y:-100%;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-full{--tw-translate-x:100%;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-3{--tw-translate-y:0.75rem;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-full{--tw-translate-y:100%;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-45{--tw-rotate:45deg;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-95{--tw-scale-x:.95;--tw-scale-y:.95;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@-webkit-keyframes ping{100%,75%{-webkit-transform:scale(2);transform:scale(2);opacity:0}}@keyframes ping{100%,75%{-webkit-transform:scale(2);transform:scale(2);opacity:0}}.animate-ping{-webkit-animation:1s cubic-bezier(0,0,.2,1) infinite ping;animation:1s cubic-bezier(0,0,.2,1) infinite ping}@-webkit-keyframes spin{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.animate-spin{-webkit-animation:1s linear infinite spin;animation:1s linear infinite spin}.resize{resize:both}.list-outside{list-style-position:outside}.list-disc{list-style-type:disc}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.flex-col{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.items-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.justify-around{-ms-flex-pack:distribute;justify-content:space-around}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-10{gap:2.5rem}.gap-14{gap:3.5rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-x-1{-webkit-column-gap:0.25rem;-moz-column-gap:0.25rem;column-gap:.25rem}.gap-x-2{-webkit-column-gap:0.5rem;-moz-column-gap:0.5rem;column-gap:.5rem}.gap-x-3{-webkit-column-gap:0.75rem;-moz-column-gap:0.75rem;column-gap:.75rem}.gap-x-3\.5{-webkit-column-gap:0.875rem;-moz-column-gap:0.875rem;column-gap:.875rem}.-space-x-px>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(-1px * var(--tw-space-x-reverse));margin-left:calc(-1px * calc(1 - var(--tw-space-x-reverse)))}.-space-y-px>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(-1px * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(-1px * var(--tw-space-y-reverse))}.space-x-3>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.75rem * var(--tw-space-x-reverse));margin-left:calc(.75rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-y-1\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.375rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.375rem * var(--tw-space-y-reverse))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem * var(--tw-space-y-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.75rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem * var(--tw-space-y-reverse))}.divide-x>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px * var(--tw-divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--tw-divide-x-reverse)))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(229 231 235 / var(--tw-divide-opacity))}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.rounded-\[1px\]{border-radius:1px}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-none{border-radius:0}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-b-md{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-e-full{border-start-end-radius:9999px;border-end-end-radius:9999px}.rounded-e-none{border-start-end-radius:0px;border-end-end-radius:0px}.rounded-l{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-l-none{border-top-left-radius:0;border-bottom-left-radius:0}.rounded-s{border-start-start-radius:0.25rem;border-end-start-radius:0.25rem}.rounded-s-full{border-start-start-radius:9999px;border-end-start-radius:9999px}.rounded-s-none{border-start-start-radius:0px;border-end-start-radius:0px}.border{border-width:1px}.border-\[3px\]{border-width:3px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l{border-left-width:1px}.border-r{border-right-width:1px}.border-r-0{border-right-width:0}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-\[\#e0e6ed\]{--tw-border-opacity:1;border-color:rgb(224 230 237 / var(--tw-border-opacity))}.border-blue-600{--tw-border-opacity:1;border-color:rgb(37 99 235 / var(--tw-border-opacity))}.border-current{border-color:currentColor}.border-danger{--tw-border-opacity:1;border-color:rgb(250 89 68 / var(--tw-border-opacity))}.border-danger\/20{border-color:rgb(250 89 68 / .2)}.border-dark{--tw-border-opacity:1;border-color:rgb(34 42 62 / var(--tw-border-opacity))}.border-dark\/20{border-color:rgb(34 42 62 / .2)}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.border-info{--tw-border-opacity:1;border-color:rgb(60 186 222 / var(--tw-border-opacity))}.border-info\/20{border-color:rgb(60 186 222 / .2)}.border-primary{--tw-border-opacity:1;border-color:rgb(59 130 246 / var(--tw-border-opacity))}.border-primary\/20{border-color:rgb(59 130 246 / .2)}.border-secondary{--tw-border-opacity:1;border-color:rgb(116 122 128 / var(--tw-border-opacity))}.border-secondary\/20{border-color:rgb(116 122 128 / .2)}.border-success{--tw-border-opacity:1;border-color:rgb(32 183 153 / var(--tw-border-opacity))}.border-success\/20{border-color:rgb(32 183 153 / .2)}.border-teal-200{--tw-border-opacity:1;border-color:rgb(153 246 228 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.border-warning{--tw-border-opacity:1;border-color:rgb(239 181 64 / var(--tw-border-opacity))}.border-warning\/20{border-color:rgb(239 181 64 / .2)}.border-t-transparent{border-top-color:transparent}.bg-\[\#eee\]{--tw-bg-opacity:1;background-color:rgb(238 238 238 / var(--tw-bg-opacity))}.bg-black{--tw-bg-opacity:1;background-color:rgb(0 0 0 / var(--tw-bg-opacity))}.bg-black\/10{background-color:rgb(0 0 0 / .1)}.bg-blue-500{--tw-bg-opacity:1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.bg-blue-600{--tw-bg-opacity:1;background-color:rgb(37 99 235 / var(--tw-bg-opacity))}.bg-blue-600\/5{background-color:rgb(37 99 235 / .05)}.bg-danger{--tw-bg-opacity:1;background-color:rgb(250 89 68 / var(--tw-bg-opacity))}.bg-danger\/10{background-color:rgb(250 89 68 / .1)}.bg-danger\/20{background-color:rgb(250 89 68 / .2)}.bg-danger\/25{background-color:rgb(250 89 68 / .25)}.bg-danger\/75{background-color:rgb(250 89 68 / .75)}.bg-danger\/90{background-color:rgb(250 89 68 / .9)}.bg-dark{--tw-bg-opacity:1;background-color:rgb(34 42 62 / var(--tw-bg-opacity))}.bg-dark\/10{background-color:rgb(34 42 62 / .1)}.bg-dark\/20{background-color:rgb(34 42 62 / .2)}.bg-dark\/25{background-color:rgb(34 42 62 / .25)}.bg-dark\/75{background-color:rgb(34 42 62 / .75)}.bg-emerald-100\/60{background-color:rgb(209 250 229 / .6)}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99 / var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.bg-info{--tw-bg-opacity:1;background-color:rgb(60 186 222 / var(--tw-bg-opacity))}.bg-info\/10{background-color:rgb(60 186 222 / .1)}.bg-info\/20{background-color:rgb(60 186 222 / .2)}.bg-info\/25{background-color:rgb(60 186 222 / .25)}.bg-info\/75{background-color:rgb(60 186 222 / .75)}.bg-info\/90{background-color:rgb(60 186 222 / .9)}.bg-light{--tw-bg-opacity:1;background-color:rgb(233 237 243 / var(--tw-bg-opacity))}.bg-light\/40{background-color:rgb(233 237 243 / .4)}.bg-light\/75{background-color:rgb(233 237 243 / .75)}.bg-orange-100{--tw-bg-opacity:1;background-color:rgb(255 237 213 / var(--tw-bg-opacity))}.bg-primary{--tw-bg-opacity:1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.bg-primary\/10{background-color:rgb(59 130 246 / .1)}.bg-primary\/20{background-color:rgb(59 130 246 / .2)}.bg-primary\/25{background-color:rgb(59 130 246 / .25)}.bg-primary\/75{background-color:rgb(59 130 246 / .75)}.bg-red-100{--tw-bg-opacity:1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.bg-red-100\/60{background-color:rgb(254 226 226 / .6)}.bg-secondary{--tw-bg-opacity:1;background-color:rgb(116 122 128 / var(--tw-bg-opacity))}.bg-secondary\/10{background-color:rgb(116 122 128 / .1)}.bg-secondary\/20{background-color:rgb(116 122 128 / .2)}.bg-secondary\/25{background-color:rgb(116 122 128 / .25)}.bg-secondary\/75{background-color:rgb(116 122 128 / .75)}.bg-slate-50{--tw-bg-opacity:1;background-color:rgb(248 250 252 / var(--tw-bg-opacity))}.bg-success{--tw-bg-opacity:1;background-color:rgb(32 183 153 / var(--tw-bg-opacity))}.bg-success\/10{background-color:rgb(32 183 153 / .1)}.bg-success\/20{background-color:rgb(32 183 153 / .2)}.bg-success\/25{background-color:rgb(32 183 153 / .25)}.bg-success\/75{background-color:rgb(32 183 153 / .75)}.bg-teal-50{--tw-bg-opacity:1;background-color:rgb(240 253 250 / var(--tw-bg-opacity))}.bg-transparent{background-color:transparent}.bg-warning{--tw-bg-opacity:1;background-color:rgb(239 181 64 / var(--tw-bg-opacity))}.bg-warning\/10{background-color:rgb(239 181 64 / .1)}.bg-warning\/20{background-color:rgb(239 181 64 / .2)}.bg-warning\/25{background-color:rgb(239 181 64 / .25)}.bg-warning\/75{background-color:rgb(239 181 64 / .75)}.bg-warning\/90{background-color:rgb(239 181 64 / .9)}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-opacity-50{--tw-bg-opacity:0.5}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.p-9{padding:2.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-0{padding-top:0;padding-bottom:0}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-14{padding-top:3.5rem;padding-bottom:3.5rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-12{padding-bottom:3rem}.pb-20{padding-bottom:5rem}.pl-3{padding-left:.75rem}.pl-3\.5{padding-left:.875rem}.ps-10{-webkit-padding-start:2.5rem;padding-inline-start:2.5rem}.ps-11{-webkit-padding-start:2.75rem;padding-inline-start:2.75rem}.ps-3{-webkit-padding-start:0.75rem;padding-inline-start:0.75rem}.ps-4{-webkit-padding-start:1rem;padding-inline-start:1rem}.ps-8{-webkit-padding-start:2rem;padding-inline-start:2rem}.pt-0{padding-top:0}.pt-5{padding-top:1.25rem}.text-left{text-align:left}.text-center{text-align:center}.text-start{text-align:start}.text-end{text-align:end}.align-middle{vertical-align:middle}.\!text-sm{font-size:.875rem!important;line-height:1.25rem!important}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-5xl{font-size:3rem;line-height:1}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.italic{font-style:italic}.not-italic{font-style:normal}.leading-none{line-height:1}.tracking-wide{letter-spacing:.025em}.text-blue-600{--tw-text-opacity:1;color:rgb(37 99 235 / var(--tw-text-opacity))}.text-danger{--tw-text-opacity:1;color:rgb(250 89 68 / var(--tw-text-opacity))}.text-dark{--tw-text-opacity:1;color:rgb(34 42 62 / var(--tw-text-opacity))}.text-dark\/75{color:rgb(34 42 62 / .75)}.text-emerald-500{--tw-text-opacity:1;color:rgb(16 185 129 / var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175 / var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81 / var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55 / var(--tw-text-opacity))}.text-info{--tw-text-opacity:1;color:rgb(60 186 222 / var(--tw-text-opacity))}.text-light{--tw-text-opacity:1;color:rgb(233 237 243 / var(--tw-text-opacity))}.text-pink-500{--tw-text-opacity:1;color:rgb(236 72 153 / var(--tw-text-opacity))}.text-primary{--tw-text-opacity:1;color:rgb(59 130 246 / var(--tw-text-opacity))}.text-red-500{--tw-text-opacity:1;color:rgb(239 68 68 / var(--tw-text-opacity))}.text-secondary{--tw-text-opacity:1;color:rgb(116 122 128 / var(--tw-text-opacity))}.text-slate-400{--tw-text-opacity:1;color:rgb(148 163 184 / var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity:1;color:rgb(51 65 85 / var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity:1;color:rgb(15 23 42 / var(--tw-text-opacity))}.text-success{--tw-text-opacity:1;color:rgb(32 183 153 / var(--tw-text-opacity))}.text-teal-800{--tw-text-opacity:1;color:rgb(17 94 89 / var(--tw-text-opacity))}.text-warning{--tw-text-opacity:1;color:rgb(239 181 64 / var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.decoration-2{text-decoration-thickness:2px}.opacity-0{opacity:0}.opacity-60{opacity:.6}.opacity-75{opacity:.75}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1),0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgb(0 0 0 / 0.1),0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px rgb(0 0 0 / 0.1),0 2px 4px -2px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-blue-600\/5{--tw-shadow-color:rgb(37 99 235 / 0.05);--tw-shadow:var(--tw-shadow-colored)}.blur{--tw-blur:blur(8px);-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.filter{-webkit-filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{-webkit-transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform,-webkit-filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-box-shadow,-webkit-transform,-webkit-filter,-webkit-backdrop-filter;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.transition-\[height\]{-webkit-transition-property:height;transition-property:height;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.transition-\[opacity\2c margin\]{-webkit-transition-property:opacity,margin;transition-property:opacity,margin;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.transition-all{-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.transition-opacity{-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.duration-200{-webkit-transition-duration:.2s;transition-duration:.2s}.duration-300{-webkit-transition-duration:.3s;transition-duration:.3s}.ease-out{-webkit-transition-timing-function:cubic-bezier(0,0,0.2,1);transition-timing-function:cubic-bezier(0,0,0.2,1)}.\[--placement\:bottom\]{--placement:bottom}.\[--placement\:left-top\]{--placement:left-top}.\[--placement\:left\]{--placement:left}.\[--placement\:right-top\]{--placement:right-top}.\[--placement\:right\]{--placement:right}.\[--placement\:top\]{--placement:top}.\[--trigger\:click\]{--trigger:click}.\[--trigger\:hover\]{--trigger:hover}.app-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.app-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;min-block-size:100vh}.logo-box{height:70px;color:var(--tw-sidebar-item-color);position:sticky;top:0;z-index:50;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:.3s;transition-duration:.3s}.logo-box .logo-light{display:none}.logo-box .logo-dark,html[data-sidebar-color=dark] .app-menu .logo-box .logo-light{display:block}html[data-sidebar-color=dark] .app-menu .logo-box .logo-dark{display:none}.app-menu{width:260px;min-width:260px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-wrap:break-word;border-width:1px;border-color:rgb(229 231 235 / .8);--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));position:sticky;top:0;z-index:40;height:100vh;border-radius:0;border-inline-end-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:.3s;transition-duration:.3s}.app-menu .card-header{border-bottom-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));padding:.75rem 1.5rem}.app-menu [data-simplebar]{height:calc(100% - 70px)}.menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:6px;padding:6px 0}.menu .menu-title{color:var(--tw-sidebar-item-color);font-size:.8rem;padding:.5rem 2.25rem;cursor:default;white-space:nowrap;font-weight:500;letter-spacing:.1em;opacity:.75}.menu>.menu-item{padding:0 1.25rem}.menu .menu-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:6px}.menu .menu-item .menu-link{color:var(--tw-sidebar-item-color);gap:.625rem;padding:.5rem 1rem;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;white-space:nowrap;background-color:transparent;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.menu .menu-item .menu-link>.menu-icon{width:1.25rem;height:1.25rem;font-size:1.25rem;line-height:1.25rem;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.menu .menu-item .menu-link>.menu-icon svg{width:1.25rem;height:1.25rem;stroke:inherit}.menu .menu-item .menu-link>.menu-text{font-size:1rem;line-height:1rem;white-space:nowrap;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.menu .menu-item .menu-link>.menu-arrow{font-size:1rem;line-height:1rem;-webkit-margin-start:auto;margin-inline-start:auto;font-weight:900;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}:is([dir=rtl] .menu .menu-item .menu-link > .menu-arrow){--tw-rotate:180deg;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.menu .menu-item .menu-link>.menu-arrow::before{content:"\eb6d";font-family:unicons-line}.menu .menu-item .menu-link>.menu-dot{width:1.25rem;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.menu .menu-item .menu-link>.menu-dot::before{content:"";background-color:var(--tw-sidebar-item-color);height:1.5px;position:absolute;display:-webkit-box;display:-ms-flexbox;display:flex;width:.375rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.menu .menu-item .menu-link:is(.open)>.menu-arrow{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.menu .menu-item .menu-link:is(:hover,.open,:focus){color:var(--tw-sidebar-item-hover-color)}.menu .menu-item .menu-link:is(.active,:active){color:var(--tw-sidebar-item-active-color)}.menu>.menu-item>.menu-link:is(:hover,.open,:focus){background-color:var(--tw-sidebar-item-hover-bg)}.menu>.menu-item>.menu-link:is(.active,:active){background-color:var(--tw-sidebar-item-active-bg)}.menu .sub-menu{width:100%;overflow:hidden;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:.3s;transition-duration:.3s}.menu .sub-menu>:not([hidden])~:not([hidden]){margin-top:6px}.fullscreen-enable [data-toggle=fullscreen] .ph-arrows-out::before{content:"\e961"}html[data-sidebar-view=hidden] .app-menu{-webkit-margin-start:-260px;margin-inline-start:-260px}html[data-sidebar-view=mobile] .app-menu{-webkit-margin-start:-260px;margin-inline-start:-260px;position:fixed;border-style:none;opacity:0}html[data-sidebar-view=mobile].sidebar-open .app-menu{-webkit-margin-start:0;margin-inline-start:0;z-index:50;opacity:1}.fullscreen-enable .uil-focus::before{content:"\eb8d"}.profile-menu{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-wrap:break-word;border-width:1px;border-color:rgb(229 231 235 / .8);--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));position:sticky;top:0;z-index:40;height:100vh;width:8rem;min-width:8rem;border-radius:0;-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:.3s;transition-duration:.3s}.profile-menu .card-header{border-bottom-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));padding:.75rem 1.5rem}html[data-profile-view=hidden] .profile-menu{-webkit-margin-end:-8rem;margin-inline-end:-8rem}html[data-profile-view=mobile] .profile-menu{position:fixed;inset-inline-end:0px;-webkit-margin-end:-8rem;margin-inline-end:-8rem;border-style:none;opacity:0}html[data-profile-view=mobile].profile-open .profile-menu{z-index:50;-webkit-margin-end:0;margin-inline-end:0;opacity:1}.app-header{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-wrap:break-word;border-width:1px;border-color:rgb(229 231 235 / .8);--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));position:sticky;top:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;border-radius:0;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));z-index:35;height:70px}.app-header .card-header{border-bottom-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));padding:.75rem 1.5rem}.app-header .nav-link{color:var(--tw-topbar-item-color);border-radius:9999px;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity));-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:150ms;transition-duration:150ms;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1)}.app-header .nav-link:hover{color:var(--tw-topbar-item-hover-color)}.app-header .nav-link:is(.open,.show,.active,:active,:focus){color:var(--tw-topbar-item-active-color)}@media (min-width:1024px){.app-header .logo-box{display:none}}html[data-sidebar-view=mobile] .app-header .logo-box{display:-webkit-box;display:-ms-flexbox;display:flex}body{margin:0;overflow-x:hidden;background-color:#fbf7f3;font-family:var(--tw-body-font-family);font-size:.875rem;font-weight:400;line-height:1.5;--tw-text-opacity:1;color:rgb(120 113 108 / var(--tw-text-opacity))}h1,h2,h3,h4,h5,h6{font-weight:500;--tw-text-opacity:1;color:rgb(55 65 81 / var(--tw-text-opacity))}code{--tw-text-opacity:1;color:rgb(59 130 246 / var(--tw-text-opacity))}.text-muted{--tw-text-opacity:1;color:rgb(156 163 175 / var(--tw-text-opacity))}::-webkit-scrollbar{height:5px;width:0;background-color:#f1f5f9}::-webkit-scrollbar-thumb{height:2px;width:0;background-color:#cbd5e1}canvas{display:inherit}.custom-scroll::-webkit-scrollbar{-webkit-appearance:none}.custom-scroll::-webkit-scrollbar:vertical{width:4px}.custom-scroll::-webkit-scrollbar:horizontal{height:4px}.custom-scroll::-webkit-scrollbar-thumb{border-radius:.5rem;background-color:rgb(203 213 225 / .5)}.custom-scroll::-webkit-scrollbar-track{border-radius:.5rem;background-color:transparent}.custom-scroll::-webkit-scrollbar-corner{background-color:transparent}.badge{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;white-space:nowrap;padding:.25em .4em;font-size:75%;font-weight:600;line-height:1;--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}@media print{.app-header,.app-menu,.profile-menu{-webkit-box-shadow:none;box-shadow:none}.app-header,.app-menu,.footer{display:none}.app-content,body{padding:0;margin:0}.card{-webkit-box-shadow:none;box-shadow:none}}.swiper-button-next,.swiper-button-prev{height:32px;width:32px;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);font-family:boxicons;font-size:28px;background-color:rgb(59 130 246 / .2);--tw-text-opacity:1;color:rgb(59 130 246 / var(--tw-text-opacity));-webkit-transition:.3s;transition:.3s}.swiper-button-next::after,.swiper-button-prev::after{display:none}.swiper-button-prev::before{content:"\ea4d"}.swiper-button-next::before{content:"\ea50"}.swiper-pagination-bullet{width:22px;height:5px;background-color:#fff;border-radius:50px;--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1),0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.swiper-pagination-bullet .swiper-pagination-bullet-active{opacity:1}.dynamic-pagination .swiper-pagination-bullet{width:8px;height:8px;background-color:#fff;opacity:.5;-webkit-transition:.5s;transition:.5s}.dynamic-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{opacity:1;width:20px}.swiper-pagination-fraction{color:#fff;font-size:16px;background-color:rgb(24 24 27 / .25);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.pagination-custom .swiper-pagination-bullet{height:25px;width:25px;line-height:25px;border-radius:8px;background-color:#fff;opacity:.5;-webkit-transition:.5s;transition:.5s}.pagination-custom .swiper-pagination-bullet.swiper-pagination-bullet-active{--tw-text-opacity:1;color:rgb(116 122 128 / var(--tw-text-opacity));opacity:1}.swiper-pagination-progressbar{height:6px!important;background-color:rgb(32 183 153 / .25)}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{--tw-bg-opacity:1;background-color:rgb(32 183 153 / var(--tw-bg-opacity))}.swiper-scrollbar{background-color:rgba(255,255,255,.35);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);padding:1.2px;height:6px!important}.swiper-scrollbar .swiper-scrollbar-drag{background-color:#fff}.swiper-pagination-dark .dynamic-pagination .swiper-pagination-bullet,.swiper-pagination-dark .swiper-pagination-bullet{--tw-bg-opacity:1;background-color:rgb(116 122 128 / var(--tw-bg-opacity))}.swiper-pagination-dark.pagination-custom .swiper-pagination-bullet{color:#fff}.swiper-pagination-dark.pagination-custom .swiper-pagination-bullet.swiper-pagination-bullet-active{opacity:1}.swiper-pagination-dark.swiper-scrollbar{background-color:rgb(24 24 27 / .25)}[data-simplebar]{position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;inset-inline-start:0;top:0;bottom:0;inset-inline-end:0;width:auto!important;height:auto!important;z-index:0}.simplebar-offset{direction:inherit!important;-webkit-box-sizing:inherit!important;box-sizing:inherit!important;resize:none!important;position:absolute;top:0;inset-inline-start:0!important;bottom:0;inset-inline-end:0!important;padding:0;margin:0;-webkit-overflow-scrolling:touch}.simplebar-content-wrapper{direction:inherit;-webkit-box-sizing:border-box!important;box-sizing:border-box!important;position:relative;display:block;height:100%;width:auto;visibility:visible;overflow:auto;max-width:100%;max-height:100%;scrollbar-width:none;padding:0!important}.simplebar-content-wrapper::-webkit-scrollbar,.simplebar-hide-scrollbar::-webkit-scrollbar{display:none}.simplebar-content:after,.simplebar-content:before{content:" ";display:table}.simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.simplebar-height-auto-observer-wrapper{-webkit-box-sizing:inherit!important;box-sizing:inherit!important;height:100%;width:100%;max-width:1px;position:relative;float:inset-inline-start;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;-webkit-box-flex:inherit;-ms-flex-positive:inherit;flex-grow:inherit;-ms-flex-negative:0;flex-shrink:0;-ms-flex-preferred-size:0;flex-basis:0}.simplebar-height-auto-observer{-webkit-box-sizing:inherit;box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;inset-inline-start:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.simplebar-track{z-index:1;position:absolute;inset-inline-end:0;bottom:0;pointer-events:none;overflow:hidden}[data-simplebar].simplebar-dragging .simplebar-content{pointer-events:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}[data-simplebar].simplebar-dragging .simplebar-track{pointer-events:all}.simplebar-scrollbar{position:absolute;inset-inline-end:2px;width:4px;min-height:10px}.simplebar-scrollbar:before{content:"";position:absolute;border-radius:7px;inset-inline-start:0;inset-inline-end:0;opacity:0;-webkit-transition:opacity .2s linear;transition:opacity .2s linear;--tw-bg-opacity:1;background-color:rgb(203 213 225 / var(--tw-bg-opacity))}.simplebar-scrollbar.simplebar-visible:before{opacity:.5;-webkit-transition:opacity linear;transition:opacity linear}.simplebar-track.simplebar-vertical{top:0;width:11px}.simplebar-track.simplebar-vertical .simplebar-scrollbar:before{top:2px;bottom:2px}.simplebar-track.simplebar-horizontal{inset-inline-start:0;height:11px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before{height:100%;inset-inline-start:2px;inset-inline-end:2px}.simplebar-track.simplebar-horizontal .simplebar-scrollbar{inset-inline-end:auto;inset-inline-start:0;top:2px;height:7px;min-height:0;min-width:10px;width:auto}[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical{inset-inline-end:auto;inset-inline-start:0}.simplebar-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll}.simplebar-hide-scrollbar{position:fixed;inset-inline-start:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none}[data-simplebar-lg] .simplebar-scrollbar{inset-inline-end:1px;width:10px}[data-simplebar-primary] .simplebar-scrollbar:before{--tw-bg-opacity:1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.apex-charts{min-height:10px!important}.apexcharts-canvas{margin:0 auto}.apexcharts-canvas .apexcharts-text,.apexcharts-canvas .apexcharts-text.apexcharts-xaxis-label,.apexcharts-canvas .apexcharts-text.apexcharts-yaxis-label,.apexcharts-canvas .apexcharts-title-text{fill:#9ca3af}.apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-light,.apexcharts-canvas .apexcharts-xaxistooltip.apexcharts-theme-light{border-width:1px;border-color:rgb(2 6 23 / .75);background-color:rgb(2 6 23 / .75);--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity));--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.apexcharts-canvas .apexcharts-xaxistooltip-bottom:after,.apexcharts-canvas .apexcharts-xaxistooltip-bottom:before{border-bottom-color:rgb(2 6 23 / .75)}.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title{--tw-border-opacity:1;border-color:rgb(2 6 23 / var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(2 6 23 / var(--tw-bg-opacity))}.apexcharts-legend-series{font-weight:600}.apexcharts-legend-text{--tw-text-opacity:1;color:rgb(209 213 219 / var(--tw-text-opacity));font-size:13px!important;vertical-align:middle}.apexcharts-legend-marker{vertical-align:middle;margin-right:5px!important}.apexcharts-pie-label{fill:#fff}.apex-charts text,.apexcharts-datalabels text,.apexcharts-legend-text,.apexcharts-subtitle-text,.apexcharts-title-text,.apexcharts-tooltip,.apexcharts-tooltip-text,.apexcharts-tooltip-title,.apexcharts-xaxis .text,.apexcharts-xaxistooltip-text,.apexcharts-yaxis .text,.morris-chart text{font-family:var(--tw-body-font-family)!important}.morris-hover{position:absolute;z-index:10}.morris-hover.morris-default-style{font-size:12px;text-align:center;border-radius:5px;padding:10px 12px;font-family:var(--tw-body-font-family);--tw-bg-opacity:1;background-color:rgb(34 42 62 / var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:700;margin:.25em 0;font-family:var(--tw-body-font-family)}.morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:.1em 0;color:#fff}.dropzone{min-height:230px;border-radius:.375rem;border-width:2px;border-style:dashed;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.ql-editor{text-align:left}.ql-editor ol,.ql-editor ul{padding-left:1.5em;padding-right:0}.ql-editor li:not(.ql-direction-rtl)::before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-toolbar.ql-snow{--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));border-top-left-radius:.25rem;border-top-right-radius:.25rem;border-width:1px}.ql-container.ql-snow{border-top-left-radius:.25rem;border-top-right-radius:.25rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.ql-bubble{border-radius:.25rem;border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.ql-toolbar span{outline:0!important;--tw-text-opacity:1;color:rgb(31 41 55 / var(--tw-text-opacity))}.ql-toolbar span:hover{--tw-text-opacity:1;color:rgb(59 130 246 / var(--tw-text-opacity))}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label{border-color:transparent}.ql-toolbar.ql-snow .ql-picker-options{border-radius:.25rem;--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1),0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ql-snow .ql-script,.ql-snow .ql-strike svg,.ql-snow .ql-stroke{stroke:#6b7280}.ql-snow .ql-fill{--tw-text-opacity:1;color:rgb(15 23 42 / var(--tw-text-opacity))}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{right:0;left:auto}.ql-snow .ql-picker.ql-expanded .ql-picker-label{--tw-text-opacity:1;color:rgb(15 23 42 / var(--tw-text-opacity))}.ql-snow .ql-picker-options{border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity));--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-width:1px;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.gmaps,.gmaps-panaroma{height:300px;border-radius:3px;--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.gmaps-overlay{display:block;text-align:center;color:#fff;font-size:16px;line-height:40px;border-radius:4px;padding:10px 20px;--tw-bg-opacity:1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.gmaps-overlay_arrow{left:50%;margin-left:-16px;width:0;height:0;position:absolute}.gmaps-overlay_arrow.above{bottom:-15px;border-left:16px solid transparent;border-right:16px solid transparent;border-width:16px;--tw-border-opacity:1;border-top-color:rgb(59 130 246 / var(--tw-border-opacity))}.gmaps-overlay_arrow.below{top:-15px;border-left:16px solid transparent;border-right:16px solid transparent;border-width:16px;--tw-border-opacity:1;border-bottom-color:rgb(59 130 246 / var(--tw-border-opacity))}.fc-view{margin-top:30px}.fc-toolbar{margin:6px 0 5px!important}.fc-toolbar h2{font-size:1.25rem!important;line-height:1.875rem;text-transform:uppercase}.fc-day-grid-event .fc-time{font-weight:600}th.fc-day-header{padding:.5rem 0}.fc-day{background:0 0}.fc th.fc-widget-header{--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity));font-weight:600;font-size:13px;line-height:20px;padding:10px 0;text-transform:uppercase}.fc .fc-daygrid-body,.fc .fc-scrollgrid-section-body table,.fc .fc-scrollgrid-section-footer table{width:100%!important}.fc-state-active,.fc-state-disabled,.fc-state-down{--tw-bg-opacity:1;background-color:rgb(59 130 246 / var(--tw-bg-opacity));--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity));text-shadow:none}.fc .fc-toolbar{-ms-flex-wrap:wrap;flex-wrap:wrap;gap:12px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.fc-event{border-radius:2px;border:none;cursor:move;font-size:.8125rem;margin:5px 7px;padding:5px;text-align:center;--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}@media (min-width:768px){.fc-toolbar .fc-toolbar-chunk{margin:6px 0}.fc-toolbar .fc-center,.fc-toolbar .fc-left,.fc-toolbar .fc-right{float:none;display:block;clear:both;margin:10px 0}}.fc-list-item-time,.fc-list-item-title{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.fc-theme-standard .fc-scrollgrid,.fc-theme-standard td,.fc-theme-standard th{border-width:1px;border-style:solid;--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}/*! + * Waves v0.7.6 + * http://fian.my.id/Waves + * + * Copyright 2014-2018 Alfiana E. Sibuea and other contributors + * Released under the MIT license + * https://github.com/fians/Waves/blob/master/LICENSE */.waves-effect{position:relative;cursor:pointer;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.waves-effect .waves-ripple{position:absolute;border-radius:50%;width:100px;height:100px;margin-top:-50px;margin-left:-50px;opacity:0;background:rgba(0,0,0,.2);background:radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);-webkit-transition:opacity .5s ease-out,-webkit-transform .5s ease-out;transition:.5s ease-out;transition-property:transform,opacity,-webkit-transform;-webkit-transform:scale(0) translate(0,0);transform:scale(0) translate(0,0);pointer-events:none}.waves-effect.waves-light .waves-ripple{background:rgba(255,255,255,.4);background:radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%)}.waves-effect.waves-classic .waves-ripple{background:rgba(0,0,0,.2)}.waves-effect.waves-classic.waves-light .waves-ripple{background:rgba(255,255,255,.4)}.waves-notransition{-webkit-transition:none!important;transition:none!important}.waves-button,.waves-circle{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-mask-image:radial-gradient(circle,white 100%,black 100%);mask-image:radial-gradient(circle,white 100%,black 100%)}.waves-button,.waves-button-input,.waves-button:hover,.waves-button:visited{white-space:nowrap;vertical-align:middle;cursor:pointer;border:none;outline:0;color:inherit;background-color:rgba(0,0,0,0);font-size:1em;line-height:1em;text-align:center;text-decoration:none;z-index:1}.waves-button{padding:.85em 1.1em;border-radius:.2em}.waves-button-input{margin:0;padding:.85em 1.1em}.waves-input-wrapper{border-radius:.2em;vertical-align:bottom}.waves-input-wrapper.waves-button{padding:0}.waves-input-wrapper .waves-button-input{position:relative;top:0;left:0;z-index:1}.waves-circle{text-align:center;width:2.5em;height:2.5em;line-height:2.5em;border-radius:50%}.waves-float{-webkit-mask-image:none;mask-image:none;-webkit-box-shadow:0 1px 1.5px 1px rgba(0,0,0,.12);box-shadow:0 1px 1.5px 1px rgba(0,0,0,.12);-webkit-transition:.3s;transition:.3s}.waves-float:active{-webkit-box-shadow:0 8px 20px 1px rgba(0,0,0,.3);box-shadow:0 8px 20px 1px rgba(0,0,0,.3)}.waves-block{display:block}.after\:absolute::after{content:var(--tw-content);position:absolute}.after\:bottom-0::after{content:var(--tw-content);bottom:0}.after\:end-0::after{content:var(--tw-content);inset-inline-end:0px}.after\:start-0::after{content:var(--tw-content);inset-inline-start:0px}.after\:h-px::after{content:var(--tw-content);height:1px}.after\:w-0::after{content:var(--tw-content);width:0}.after\:bg-blue-600::after{content:var(--tw-content);--tw-bg-opacity:1;background-color:rgb(37 99 235 / var(--tw-bg-opacity))}.after\:transition-all::after{content:var(--tw-content);-webkit-transition-property:all;transition-property:all;-webkit-transition-timing-function:cubic-bezier(0.4,0,0.2,1);transition-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-transition-duration:150ms;transition-duration:150ms}.after\:duration-500::after{content:var(--tw-content);-webkit-transition-duration:.5s;transition-duration:.5s}.after\:content-\[\'\'\]::after{--tw-content:'';content:var(--tw-content)}.first\:mt-0:first-child{margin-top:0}.first\:rounded-t-lg:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.last\:rounded-b-lg:last-child{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.odd\:bg-white:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.even\:bg-gray-100:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:bg-blue-50:hover{--tw-bg-opacity:1;background-color:rgb(239 246 255 / var(--tw-bg-opacity))}.hover\:bg-blue-500:hover{--tw-bg-opacity:1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.hover\:bg-blue-600:hover{--tw-bg-opacity:1;background-color:rgb(37 99 235 / var(--tw-bg-opacity))}.hover\:bg-danger:hover{--tw-bg-opacity:1;background-color:rgb(250 89 68 / var(--tw-bg-opacity))}.hover\:bg-dark:hover{--tw-bg-opacity:1;background-color:rgb(34 42 62 / var(--tw-bg-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.hover\:bg-info:hover{--tw-bg-opacity:1;background-color:rgb(60 186 222 / var(--tw-bg-opacity))}.hover\:bg-primary:hover{--tw-bg-opacity:1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.hover\:bg-secondary:hover{--tw-bg-opacity:1;background-color:rgb(116 122 128 / var(--tw-bg-opacity))}.hover\:bg-stone-100:hover{--tw-bg-opacity:1;background-color:rgb(245 245 244 / var(--tw-bg-opacity))}.hover\:bg-success:hover{--tw-bg-opacity:1;background-color:rgb(32 183 153 / var(--tw-bg-opacity))}.hover\:bg-warning:hover{--tw-bg-opacity:1;background-color:rgb(239 181 64 / var(--tw-bg-opacity))}.hover\:text-blue-500:hover{--tw-text-opacity:1;color:rgb(59 130 246 / var(--tw-text-opacity))}.hover\:text-blue-600:hover{--tw-text-opacity:1;color:rgb(37 99 235 / var(--tw-text-opacity))}.hover\:text-gray-400:hover{--tw-text-opacity:1;color:rgb(156 163 175 / var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity:1;color:rgb(107 114 128 / var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(55 65 81 / var(--tw-text-opacity))}.hover\:text-gray-800:hover{--tw-text-opacity:1;color:rgb(31 41 55 / var(--tw-text-opacity))}.hover\:text-primary:hover{--tw-text-opacity:1;color:rgb(59 130 246 / var(--tw-text-opacity))}.hover\:text-sky-700:hover{--tw-text-opacity:1;color:rgb(3 105 161 / var(--tw-text-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}.hover\:after\:end-auto:hover::after{content:var(--tw-content);inset-inline-end:auto}.hover\:after\:w-full:hover::after{content:var(--tw-content);width:100%}.focus\:z-10:focus{z-index:10}.focus\:border-blue-500:focus{--tw-border-opacity:1;border-color:rgb(59 130 246 / var(--tw-border-opacity))}.focus\:outline-none:focus{outline:transparent solid 2px;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);-webkit-box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-blue-500:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(59 130 246 / var(--tw-ring-opacity))}.focus\:ring-blue-600:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(37 99 235 / var(--tw-ring-opacity))}.focus\:ring-gray-400:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(156 163 175 / var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:ring-offset-white:focus{--tw-ring-offset-color:#fff}.hs-dropdown.open>.hs-dropdown-open\:translate-y-0{--tw-translate-y:0px;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hs-dropdown.open>.hs-dropdown-open\:opacity-100{opacity:1}.hs-dropdown.open>.hs-dropdown-menu>.hs-dropdown-open\:translate-y-0{--tw-translate-y:0px;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hs-dropdown.open>.hs-dropdown-menu>.hs-dropdown-open\:opacity-100{opacity:1}.hs-tooltip.show .hs-tooltip-shown\:visible{visibility:visible}.hs-tooltip.show .hs-tooltip-shown\:opacity-100{opacity:1}[data-hs-tab].active.hs-tab-active\:border-primary{--tw-border-opacity:1;border-color:rgb(59 130 246 / var(--tw-border-opacity))}[data-hs-tab].active.hs-tab-active\:bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}[data-hs-tab].active.hs-tab-active\:font-semibold{font-weight:600}[data-hs-tab].active.hs-tab-active\:text-primary{--tw-text-opacity:1;color:rgb(59 130 246 / var(--tw-text-opacity))}[data-hs-tab].active .hs-tab-active\:border-primary{--tw-border-opacity:1;border-color:rgb(59 130 246 / var(--tw-border-opacity))}[data-hs-tab].active .hs-tab-active\:bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}[data-hs-tab].active .hs-tab-active\:font-semibold{font-weight:600}[data-hs-tab].active .hs-tab-active\:text-primary{--tw-text-opacity:1;color:rgb(59 130 246 / var(--tw-text-opacity))}.open.hs-overlay-open\:mt-7{margin-top:1.75rem}.open.hs-overlay-open\:translate-x-0{--tw-translate-x:0px;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.open.hs-overlay-open\:translate-y-0{--tw-translate-y:0px;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.open.hs-overlay-open\:scale-100{--tw-scale-x:1;--tw-scale-y:1;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.open.hs-overlay-open\:opacity-100{opacity:1}.open.hs-overlay-open\:duration-200{-webkit-transition-duration:.2s;transition-duration:.2s}.open.hs-overlay-open\:duration-500{-webkit-transition-duration:.5s;transition-duration:.5s}.open.hs-overlay-open\:ease-in{-webkit-transition-timing-function:cubic-bezier(0.4,0,1,1);transition-timing-function:cubic-bezier(0.4,0,1,1)}.open .hs-overlay-open\:mt-7{margin-top:1.75rem}.open .hs-overlay-open\:translate-x-0{--tw-translate-x:0px;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.open .hs-overlay-open\:translate-y-0{--tw-translate-y:0px;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.open .hs-overlay-open\:scale-100{--tw-scale-x:1;--tw-scale-y:1;-webkit-transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.open .hs-overlay-open\:opacity-100{opacity:1}.open .hs-overlay-open\:duration-200{-webkit-transition-duration:.2s;transition-duration:.2s}.open .hs-overlay-open\:duration-500{-webkit-transition-duration:.5s;transition-duration:.5s}.open .hs-overlay-open\:ease-in{-webkit-transition-timing-function:cubic-bezier(0.4,0,1,1);transition-timing-function:cubic-bezier(0.4,0,1,1)}:is([dir=ltr] .ltr\:rounded-l-md){border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}:is([dir=ltr] .ltr\:rounded-l-none){border-top-left-radius:0;border-bottom-left-radius:0}:is([dir=ltr] .ltr\:rounded-r-md){border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}:is([dir=ltr] .ltr\:rounded-r-none){border-top-right-radius:0;border-bottom-right-radius:0}:is([dir=ltr] .ltr\:border-l-0){border-left-width:0}:is([dir=ltr] .ltr\:border-r-0){border-right-width:0}:is([dir=rtl] .rtl\:-end-1){inset-inline-end:-0.25rem}:is([dir=rtl] .rtl\:-start-1){inset-inline-start:-0.25rem}:is([dir=rtl] .rtl\:rounded-l-md){border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}:is([dir=rtl] .rtl\:rounded-l-none){border-top-left-radius:0;border-bottom-left-radius:0}:is([dir=rtl] .rtl\:rounded-r-md){border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}:is([dir=rtl] .rtl\:rounded-r-none){border-top-right-radius:0;border-bottom-right-radius:0}:is([dir=rtl] .rtl\:text-right){text-align:right}:is([data-mode=dark] .dark\:bg-opacity-80){--tw-bg-opacity:0.8}@media print{.print\:hidden{display:none}}@media (min-width:640px){.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:mt-0{margin-top:0}.sm\:block{display:block}.sm\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.sm\:hidden{display:none}.sm\:w-auto{width:auto}.sm\:w-full{width:100%}.sm\:max-w-3xl{max-width:48rem}.sm\:max-w-7xl{max-width:80rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-sm{max-width:24rem}.sm\:gap-x-4{-webkit-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}.sm\:rounded-md{border-radius:.375rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-4{padding-top:1rem;padding-bottom:1rem}.sm\:text-end{text-align:end}.sm\:text-4xl{font-size:2.25rem;line-height:2.5rem}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:first\:ms-0:first-child{-webkit-margin-start:0px;margin-inline-start:0}.sm\:first\:rounded-l-lg:first-child{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.sm\:first\:rounded-tr-none:first-child{border-top-right-radius:0}.sm\:last\:rounded-r-lg:last-child{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.sm\:last\:rounded-bl-none:last-child{border-bottom-left-radius:0}}@media (min-width:768px){.md\:col-span-3{grid-column:span 3/span 3}.md\:col-start-2{grid-column-start:2}.md\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.md\:w-1\/2{width:50%}.md\:max-w-2xl{max-width:42rem}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.md\:justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.md\:text-3xl{font-size:1.875rem;line-height:2.25rem}.md\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media (min-width:1024px){.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:w-1\/3{width:33.333333%}.lg\:w-3\/4{width:75%}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.lg\:px-8{padding-left:2rem;padding-right:2rem}}@media (min-width:1280px){.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}@media (min-width:1536px){.\32xl\:w-1\/4{width:25%}.\32xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.\32xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}} +/*# sourceMappingURL=theme.min.css.map */ diff --git a/dj_backend_server/web/static/assets/css/theme.min.css.map b/dj_backend_server/web/static/assets/css/theme.min.css.map new file mode 100644 index 00000000..e1ff6ef2 --- /dev/null +++ b/dj_backend_server/web/static/assets/css/theme.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["theme.scss","config/_config.scss","theme.css","custom/_buttons.scss","custom/_card.scss","custom/_forms.scss","structure/_general.scss","config/_variables.scss","structure/_sidebar.scss","structure/_profilebar.scss","structure/_topbar.scss","custom/_reboot.scss","custom/_badge.scss","custom/_print.scss","plugins/_swiper.scss","plugins/_simplebar.scss","plugins/_apexcharts.scss","plugins/_dropzone.scss","plugins/_quilljs.scss","plugins/_google-map.scss","plugins/_fullcalendar.scss","plugins/_wave.scss",""],"names":[],"mappings":"AAAA;;;;;;CAAA;ACKQ,iHAAA;AACA,wHAAA;AAEA,kHAAA;AAIR;EACI,yCAAA;ACDJ;;ADKA;EACI,wBAAA;EACA,gCAAA;EACA,mCAAA;EACA,2CAAA;EACA,oCAAA;EACA,4CAAA;ACFJ;;ADMA;EACI,wBAAA;EACA,gCAAA;EACA,mCAAA;EACA,iDAAA;EACA,oCAAA;EACA,gDAAA;ACHJ;;ADOA;EACI,uBAAA;EACA,+BAAA;EACA,qCAAA;EACA,gDAAA;EACA,sCAAA;EACA,iDAAA;ACJJ;;AF5BA;;CAAA;;AAAA;;;CAAA;;AAAA;;;EAAA,8BAAA;UAAA,sBAAA,EAAA,MAAA;EAAA,eAAA,EAAA,MAAA;EAAA,mBAAA,EAAA,MAAA;EAAA,qBAAA,EAAA,MAAA;AAAA;;AAAA;;EAAA,gBAAA;AAAA;;AAAA;;;;;;;CAAA;;AAAA;EAAA,gBAAA,EAAA,MAAA;EAAA,8BAAA,EAAA,MAAA;EAAA,gBAAA,EAAA,MAAA;EAAA,cAAA;KAAA,WAAA,EAAA,MAAA;EAAA,4NAAA,EAAA,MAAA;EAAA,qCAAA;UAAA,6BAAA,EAAA,MAAA;EAAA,+BAAA,EAAA,MAAA;AAAA;;AAAA;;;CAAA;;AAAA;EAAA,SAAA,EAAA,MAAA;EAAA,oBAAA,EAAA,MAAA;AAAA;;AAAA;;;;CAAA;;AAAA;EAAA,SAAA,EAAA,MAAA;EAAA,cAAA,EAAA,MAAA;EAAA,qBAAA,EAAA,MAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,yCAAA;UAAA,iCAAA;AAAA;;AAAA;;CAAA;;AAAA;;;;;;EAAA,kBAAA;EAAA,oBAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,cAAA;EAAA,wBAAA;AAAA;;AAAA;;CAAA;;AAAA;;EAAA,mBAAA;AAAA;;AAAA;;;CAAA;;AAAA;;;;EAAA,+GAAA,EAAA,MAAA;EAAA,cAAA,EAAA,MAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,cAAA;AAAA;;AAAA;;CAAA;;AAAA;;EAAA,cAAA;EAAA,cAAA;EAAA,kBAAA;EAAA,wBAAA;AAAA;;AAAA;EAAA,eAAA;AAAA;;AAAA;EAAA,WAAA;AAAA;;AAAA;;;;CAAA;;AAAA;EAAA,cAAA,EAAA,MAAA;EAAA,qBAAA,EAAA,MAAA;EAAA,yBAAA,EAAA,MAAA;AAAA;;AAAA;;;;CAAA;;AAAA;;;;;EAAA,oBAAA,EAAA,MAAA;EAAA,sCAAA;UAAA,8BAAA,EAAA,MAAA;EAAA,gCAAA,EAAA,MAAA;EAAA,eAAA,EAAA,MAAA;EAAA,oBAAA,EAAA,MAAA;EAAA,oBAAA,EAAA,MAAA;EAAA,cAAA,EAAA,MAAA;EAAA,SAAA,EAAA,MAAA;EAAA,UAAA,EAAA,MAAA;AAAA;;AAAA;;CAAA;;AAAA;;EAAA,oBAAA;AAAA;;AAAA;;;CAAA;;AAAA;;;;EAAA,0BAAA,EAAA,MAAA;EAAA,6BAAA,EAAA,MAAA;EAAA,sBAAA,EAAA,MAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,aAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,gBAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,wBAAA;AAAA;;AAAA;;CAAA;;AAAA;;EAAA,YAAA;AAAA;;AAAA;;;CAAA;;AAAA;EAAA,6BAAA,EAAA,MAAA;EAAA,oBAAA,EAAA,MAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,wBAAA;AAAA;;AAAA;;;CAAA;;AAAA;EAAA,0BAAA,EAAA,MAAA;EAAA,aAAA,EAAA,MAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,kBAAA;AAAA;;AAAA;;CAAA;;AAAA;;;;;;;;;;;;;EAAA,SAAA;AAAA;;AAAA;EAAA,SAAA;EAAA,UAAA;AAAA;;AAAA;EAAA,UAAA;AAAA;;AAAA;;;EAAA,gBAAA;EAAA,SAAA;EAAA,UAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,UAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,gBAAA;AAAA;;AAAA;;;CAAA;;AAAA;EAAA,UAAA,EAAA,MAAA;EAAA,cAAA,EAAA,MAAA;AAAA;;AAAA;EAAA,UAAA,EAAA,MAAA;EAAA,cAAA,EAAA,MAAA;AAAA;;AAAA;EAAA,UAAA,EAAA,MAAA;EAAA,cAAA,EAAA,MAAA;AAAA;;AAAA;EAAA,UAAA,EAAA,MAAA;EAAA,cAAA,EAAA,MAAA;AAAA;;AAAA;;EAAA,UAAA,EAAA,MAAA;EAAA,cAAA,EAAA,MAAA;AAAA;;AAAA;;CAAA;;AAAA;;EAAA,eAAA;AAAA;;AAAA;;CAAA;;AAAA;EAAA,eAAA;AAAA;;AAAA;;;;CAAA;;AAAA;;;;;;;;EAAA,cAAA,EAAA,MAAA;EAAA,sBAAA,EAAA,MAAA;AAAA;;AAAA;;CAAA;;AAAA;;EAAA,eAAA;EAAA,YAAA;AAAA;;AAAA,wEAAA;;AAAA;EAAA,aAAA;AAAA;;AAAA;EAAA,wBAAA;KAAA,qBAAA;UAAA,gBAAA;EAAA,sBAAA;EAAA,qBAAA;EAAA,iBAAA;EAAA,kBAAA;EAAA,mBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,qBAAA;EAAA,eAAA;EAAA,mBAAA;EAAA,sBAAA;AAAA;;AAAA;EAAA,8BAAA;EAAA,mBAAA;EAAA,4CAAA;EAAA,2BAAA;EAAA,4BAAA;EAAA,wBAAA;EAAA,2GAAA;EAAA,yGAAA;EAAA,yFAAA;UAAA,iFAAA;EAAA;AAAA;;AAAA;EAAA,cAAA;EAAA;AAAA;;AAAA;EAAA,cAAA;EAAA;AAAA;;AAAA;EAAA,cAAA;EAAA;AAAA;;AAAA;EAAA,cAAA;EAAA;AAAA;;AAAA;EAAA,cAAA;EAAA;AAAA;;AAAA;EAAA;AAAA;;AAAA;EAAA;AAAA;;AAAA;EAAA,cAAA;EAAA;AAAA;;AAAA;EAAA,mPAAA;EAAA,wCAAA;EAAA,4BAAA;EAAA,4BAAA;EAAA,qBAAA;EAAA,iCAAA;UAAA;AAAA;;AAAA;EAAA,yBAAA;EAAA,4BAAA;EAAA,wBAAA;EAAA,wBAAA;EAAA,sBAAA;EAAA,iCAAA;UAAA;AAAA;;AAAA;EAAA,wBAAA;KAAA,qBAAA;UAAA,gBAAA;EAAA,UAAA;EAAA,iCAAA;UAAA,yBAAA;EAAA,qBAAA;EAAA,sBAAA;EAAA,6BAAA;EAAA,yBAAA;KAAA,sBAAA;MAAA,qBAAA;UAAA,iBAAA;EAAA,oBAAA;MAAA,cAAA;EAAA,YAAA;EAAA,WAAA;EAAA,cAAA;EAAA,sBAAA;EAAA,qBAAA;EAAA,iBAAA;EAAA;AAAA;;AAAA;EAAA;AAAA;;AAAA;EAAA;AAAA;;AAAA;EAAA,8BAAA;EAAA,mBAAA;EAAA,4CAAA;EAAA,2BAAA;EAAA,4BAAA;EAAA,wBAAA;EAAA,2GAAA;EAAA,yGAAA;EAAA,yFAAA;UAAA;AAAA;;AAAA;EAAA,yBAAA;EAAA,8BAAA;EAAA,0BAAA;EAAA,2BAAA;EAAA;AAAA;;AAAA;EAAA;AAAA;;AAAA;EAAA;AAAA;;AAAA;EAAA,yBAAA;EAAA;AAAA;;AAAA;EAAA,uOAAA;EAAA,yBAAA;EAAA,8BAAA;EAAA,0BAAA;EAAA,2BAAA;EAAA;AAAA;;AAAA;EAAA,yBAAA;EAAA;AAAA;;AAAA;EAAA,iBAAA;EAAA,qBAAA;EAAA,eAAA;EAAA,gBAAA;EAAA,UAAA;EAAA,gBAAA;EAAA;AAAA;;AAAA;EAAA,6BAAA;EAAA;AAAA;;AAAA;EAAA,wBAAA;EAAA,wBAAA;EAAA,mBAAA;EAAA,mBAAA;EAAA,cAAA;EAAA,cAAA;EAAA,cAAA;EAAA,eAAA;EAAA,eAAA;EAAA,aAAA;EAAA,aAAA;EAAA,kBAAA;EAAA,sCAAA;EAAA,8BAAA;EAAA,6BAAA;EAAA,4BAAA;EAAA,eAAA;EAAA,oBAAA;EAAA,sBAAA;EAAA,uBAAA;EAAA,wBAAA;EAAA,kBAAA;EAAA,2BAAA;EAAA,4BAAA;EAAA,sCAAA;EAAA,kCAAA;EAAA,2BAAA;EAAA,sBAAA;EAAA,8BAAA;EAAA,YAAA;EAAA,kBAAA;EAAA,gBAAA;EAAA,iBAAA;EAAA,kBAAA;EAAA,cAAA;EAAA,gBAAA;EAAA,aAAA;EAAA,mBAAA;EAAA,qBAAA;EAAA,2BAAA;EAAA,yBAAA;EAAA,0BAAA;EAAA,2BAAA;EAAA,uBAAA;EAAA,wBAAA;EAAA,yBAAA;EAAA;AAAA;;AAAA;EAAA,wBAAA;EAAA,wBAAA;EAAA,mBAAA;EAAA,mBAAA;EAAA,cAAA;EAAA,cAAA;EAAA,cAAA;EAAA,eAAA;EAAA,eAAA;EAAA,aAAA;EAAA,aAAA;EAAA,kBAAA;EAAA,sCAAA;EAAA,8BAAA;EAAA,6BAAA;EAAA,4BAAA;EAAA,eAAA;EAAA,oBAAA;EAAA,sBAAA;EAAA,uBAAA;EAAA,wBAAA;EAAA,kBAAA;EAAA,2BAAA;EAAA,4BAAA;EAAA,sCAAA;EAAA,kCAAA;EAAA,2BAAA;EAAA,sBAAA;EAAA,8BAAA;EAAA,YAAA;EAAA,kBAAA;EAAA,gBAAA;EAAA,iBAAA;EAAA,kBAAA;EAAA,cAAA;EAAA,gBAAA;EAAA,aAAA;EAAA,mBAAA;EAAA,qBAAA;EAAA,2BAAA;EAAA,yBAAA;EAAA,0BAAA;EAAA,2BAAA;EAAA,uBAAA;EAAA,wBAAA;EAAA,yBAAA;EAAA;AAAA;;AAAA;EAAA,wBAAA;EAAA,wBAAA;EAAA,mBAAA;EAAA,mBAAA;EAAA,cAAA;EAAA,cAAA;EAAA,cAAA;EAAA,eAAA;EAAA,eAAA;EAAA,aAAA;EAAA,aAAA;EAAA,kBAAA;EAAA,sCAAA;EAAA,8BAAA;EAAA,6BAAA;EAAA,4BAAA;EAAA,eAAA;EAAA,oBAAA;EAAA,sBAAA;EAAA,uBAAA;EAAA,wBAAA;EAAA,kBAAA;EAAA,2BAAA;EAAA,4BAAA;EAAA,sCAAA;EAAA,kCAAA;EAAA,2BAAA;EAAA,sBAAA;EAAA,8BAAA;EAAA,YAAA;EAAA,kBAAA;EAAA,gBAAA;EAAA,iBAAA;EAAA,kBAAA;EAAA,cAAA;EAAA,gBAAA;EAAA,aAAA;EAAA,mBAAA;EAAA,qBAAA;EAAA,2BAAA;EAAA,yBAAA;EAAA,0BAAA;EAAA,2BAAA;EAAA,uBAAA;EAAA,wBAAA;EAAA,yBAAA;EAAA;AAAA;AACA;EAAA,wBAAA;KAAA,qBAAA;UAAA,gBAAA;EAAA,sBAAA;EAAA,qBAAA;EAAA,iBAAA;EAAA,kBAAA;EAAA,mBAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,qBAAA;EAAA,eAAA;EAAA,mBAAA;EAAA,sBAAA;AAAA;AAAA;EAAA,8BAAA;EAAA,mBAAA;EAAA,4CAAA;EAAA,2BAAA;EAAA,4BAAA;EAAA,wBAAA;EAAA,2GAAA;EAAA,yGAAA;EAAA,yFAAA;UAAA,iFAAA;EAAA;AAAA;AAAA;EAAA,cAAA;EAAA;AAAA;AAAA;EAAA,cAAA;EAAA;AAAA;AAAA;EAAA,cAAA;EAAA;AAAA;AAAA;EAAA,cAAA;EAAA;AAAA;AAAA;EAAA,cAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,cAAA;EAAA;AAAA;AAAA;EAAA,mPAAA;EAAA,wCAAA;EAAA,4BAAA;EAAA,4BAAA;EAAA,qBAAA;EAAA,iCAAA;UAAA;AAAA;AAAA;EAAA,yBAAA;EAAA,4BAAA;EAAA,wBAAA;EAAA,wBAAA;EAAA,sBAAA;EAAA,iCAAA;UAAA;AAAA;AAAA;EAAA,wBAAA;KAAA,qBAAA;UAAA,gBAAA;EAAA,UAAA;EAAA,iCAAA;UAAA,yBAAA;EAAA,qBAAA;EAAA,sBAAA;EAAA,6BAAA;EAAA,yBAAA;KAAA,sBAAA;MAAA,qBAAA;UAAA,iBAAA;EAAA,oBAAA;MAAA,cAAA;EAAA,YAAA;EAAA,WAAA;EAAA,cAAA;EAAA,sBAAA;EAAA,qBAAA;EAAA,iBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,8BAAA;EAAA,mBAAA;EAAA,4CAAA;EAAA,2BAAA;EAAA,4BAAA;EAAA,wBAAA;EAAA,2GAAA;EAAA,yGAAA;EAAA,yFAAA;UAAA;AAAA;AAAA;EAAA,yBAAA;EAAA,8BAAA;EAAA,0BAAA;EAAA,2BAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,yBAAA;EAAA;AAAA;AAAA;EAAA,uOAAA;EAAA,yBAAA;EAAA,8BAAA;EAAA,0BAAA;EAAA,2BAAA;EAAA;AAAA;AAAA;EAAA,yBAAA;EAAA;AAAA;AGNQ;EAAA,2BAAA;EAAA,2BAAA;EAAA,oBAAA;EAAA,yBAAA;MAAA,sBAAA;UAAA,mBAAA;EAAA,wBAAA;MAAA,qBAAA;UAAA,uBAAA;EAAA,iBAAA;EAAA,yBAAA;EAAA,qBAAA;EAAA,sBAAA;EAAA,qBAAA;EAAA,wBAAA;EAAA,kBAAA;EAAA,mBAAA;EAAA,oBAAA;EAAA,sBAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA;AAAA;AAGI;EAAA,qBAAA;EAAA,sBAAA;EAAA,oBAAA;EAAA,uBAAA;EAAA,eAAA;EAAA;AAAA;AAIA;EAAA,sBAAA;EAAA,uBAAA;EAAA,qBAAA;EAAA,wBAAA;EAAA,kBAAA;EAAA;AAAA;ACNJ;EAAA,kBAAA;EAAA,8BAAA;UAAA,sBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAAA,2BAAA;EAAA,wBAAA;EAAA,mBAAA;EAAA,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA,sBAAA;EAAA,yBAAA;EAAA,iBAAA;EAAA,oCAAA;EAAA,kBAAA;EAAA;AAAA;AAGI;EAAA,wBAAA;EAAA,sBAAA;EAAA,yDAAA;EAAA,oBAAA;EAAA,uBAAA;EAAA,oBAAA;EAAA;AAAA;AAKJ;EAAA,eAAA;EAAA,mBAAA;EAAA,gBAAA;EAAA,oBAAA;EAAA;AAAA;ACRA;EAAA,qBAAA;EAAA,eAAA;EAAA,mBAAA;EAAA,oBAAA;EAAA,gBAAA;EAAA,oBAAA;EAAA;AAAA;AAMA;;;EAAA,cAAA;EAAA,WAAA;EAAA,sBAAA;EAAA,sBAAA;EAAA,yDAAA;EAAA,kBAAA;EAAA,yDAAA;EAAA,mBAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;;;EAAA,sBAAA;EAAA,yDAAA;EAAA,2GAAA;EAAA,yGAAA;EAAA,oGAAA;UAAA;AAAA;AAMA;;EAAA,eAAA;EAAA,sBAAA;EAAA,yDAAA;EAAA;AAAA;AAAA;;EAAA,2GAAA;EAAA,yGAAA;EAAA,oGAAA;UAAA,4FAAA;EAAA;AAAA;AAIA;EAAA,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAAA,eAAA;EAAA,cAAA;EAAA,eAAA;EAAA,wBAAA;KAAA,qBAAA;UAAA,gBAAA;EAAA,yBAAA;MAAA,sBAAA;UAAA,mBAAA;EAAA,qBAAA;EAAA,iBAAA;EAAA,yBAAA;EAAA,kBAAA;EAAA,yDAAA;EAAA,uGAAA;EAAA,+FAAA;EAAA,kCAAA;UAAA,0BAAA;EAAA,gEAAA;UAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,2GAAA;EAAA,yGAAA;EAAA,oGAAA;UAAA,4FAAA;EAAA;AAAA;AAII;EAAA,qBAAA;EAAA,YAAA;EAAA,WAAA;EAAA,qBAAA;EAAA,uMAAA;UAAA,+LAAA;EAAA,qBAAA;EAAA,kBAAA;EAAA,yDAAA;EAAA,gMAAA;EAAA,wLAAA;EAAA,wJAAA;EAAA,wOAAA;EAAA,kCAAA;UAAA,0BAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,gBAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA,uMAAA;UAAA;AAAA;ALdZ;EAAA,kBAAA;EAAA,UAAA;EAAA,WAAA;EAAA,UAAA;EAAA,YAAA;EAAA,gBAAA;EAAA,sBAAA;EAAA,mBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,SAAA;EAAA;AAAA;AAAA;EAAA,SAAA;EAAA;AAAA;AAAA;EAAA,QAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,iBAAA;EAAA;AAAA;AAAA;EAAA,iBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,mBAAA;EAAA;AAAA;AAAA;EAAA,mBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,gBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,0BAAA;UAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,2BAAA;UAAA;AAAA;AAAA;EAAA,0BAAA;UAAA;AAAA;AAAA;EAAA,2BAAA;UAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,6BAAA;UAAA;AAAA;AAAA;EAAA,8BAAA;UAAA;AAAA;AAAA;EAAA,4BAAA;UAAA;AAAA;AAAA;EAAA,0BAAA;UAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,gBAAA;EAAA,oBAAA;EAAA,4BAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,2BAAA;EAAA,2BAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,8BAAA;EAAA,2BAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,mBAAA;MAAA,gBAAA;UAAA;AAAA;AAAA;EAAA,mBAAA;MAAA,kBAAA;UAAA;AAAA;AAAA;EAAA,oBAAA;MAAA;AAAA;AAAA;EAAA,mBAAA;MAAA,oBAAA;UAAA;AAAA;AAAA;EAAA,mBAAA;MAAA,oBAAA;UAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,gCAAA;UAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,uMAAA;UAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,uMAAA;UAAA;AAAA;AAAA;EAAA,sBAAA;EAAA,uMAAA;UAAA;AAAA;AAAA;EAAA,yBAAA;EAAA,uMAAA;UAAA;AAAA;AAAA;EAAA,sBAAA;EAAA,uMAAA;UAAA;AAAA;AAAA;EAAA,kBAAA;EAAA,uMAAA;UAAA;AAAA;AAAA;EAAA,iBAAA;EAAA,iBAAA;EAAA,uMAAA;UAAA;AAAA;AAAA;EAAA,uMAAA;UAAA;AAAA;AAAA;EAAA;IAAA,2BAAA;YAAA,mBAAA;IAAA;EAAA;AAAA;AAAA;EAAA;IAAA,2BAAA;YAAA,mBAAA;IAAA;EAAA;AAAA;AAAA;EAAA,8DAAA;UAAA;AAAA;AAAA;EAAA;IAAA,iCAAA;YAAA;EAAA;AAAA;AAAA;EAAA;IAAA,iCAAA;YAAA;EAAA;AAAA;AAAA;EAAA,0CAAA;UAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA;AAAA;AAAA;EAAA,mBAAA;MAAA;AAAA;AAAA;EAAA,sBAAA;MAAA,mBAAA;UAAA;AAAA;AAAA;EAAA,yBAAA;MAAA,sBAAA;UAAA;AAAA;AAAA;EAAA,qBAAA;MAAA,kBAAA;UAAA;AAAA;AAAA;EAAA,wBAAA;MAAA,qBAAA;UAAA;AAAA;AAAA;EAAA,yBAAA;MAAA,sBAAA;UAAA;AAAA;AAAA;EAAA,yBAAA;MAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,2BAAA;KAAA,wBAAA;UAAA;AAAA;AAAA;EAAA,0BAAA;KAAA,uBAAA;UAAA;AAAA;AAAA;EAAA,2BAAA;KAAA,wBAAA;UAAA;AAAA;AAAA;EAAA,4BAAA;KAAA,yBAAA;UAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,oDAAA;EAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,4DAAA;EAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,uDAAA;EAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,+DAAA;EAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,gEAAA;EAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,8DAAA;EAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,+DAAA;EAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,4DAAA;EAAA;AAAA;AAAA;EAAA,uBAAA;EAAA,+DAAA;EAAA;AAAA;AAAA;EAAA,wBAAA;EAAA,0DAAA;EAAA;AAAA;AAAA;EAAA,wBAAA;EAAA,kEAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,gBAAA;EAAA,uBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,oCAAA;EAAA;AAAA;AAAA;EAAA,+BAAA;EAAA;AAAA;AAAA;EAAA,4BAAA;EAAA;AAAA;AAAA;EAAA,+BAAA;EAAA;AAAA;AAAA;EAAA,gCAAA;EAAA;AAAA;AAAA;EAAA,2BAAA;EAAA;AAAA;AAAA;EAAA,kCAAA;EAAA;AAAA;AAAA;EAAA,iCAAA;EAAA;AAAA;AAAA;EAAA,8BAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,qBAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,qBAAA;EAAA;AAAA;AAAA;EAAA,sBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,qBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,gBAAA;EAAA;AAAA;AAAA;EAAA,qBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,qBAAA;EAAA;AAAA;AAAA;EAAA,mBAAA;EAAA;AAAA;AAAA;EAAA,mBAAA;EAAA;AAAA;AAAA;EAAA,mBAAA;EAAA;AAAA;AAAA;EAAA,qBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,qBAAA;EAAA;AAAA;AAAA;EAAA,iBAAA;EAAA;AAAA;AAAA;EAAA,iBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,6BAAA;UAAA;AAAA;AAAA;EAAA,8BAAA;UAAA;AAAA;AAAA;EAAA,8BAAA;UAAA;AAAA;AAAA;EAAA,2BAAA;UAAA;AAAA;AAAA;EAAA,2BAAA;UAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,8BAAA;EAAA;AAAA;AAAA;EAAA,iBAAA;EAAA;AAAA;AAAA;EAAA,mBAAA;EAAA;AAAA;AAAA;EAAA,eAAA;EAAA;AAAA;AAAA;EAAA,eAAA;EAAA;AAAA;AAAA;EAAA,mBAAA;EAAA;AAAA;AAAA;EAAA,mBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA,kBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA,0EAAA;EAAA,8FAAA;EAAA,+GAAA;UAAA;AAAA;AAAA;EAAA,+EAAA;EAAA,mGAAA;EAAA,+GAAA;UAAA;AAAA;AAAA;EAAA,6EAAA;EAAA,iGAAA;EAAA,+GAAA;UAAA;AAAA;AAAA;EAAA,0CAAA;EAAA,uDAAA;EAAA,+GAAA;UAAA;AAAA;AAAA;EAAA,wCAAA;EAAA;AAAA;AAAA;EAAA,oBAAA;EAAA,yLAAA;UAAA;AAAA;AAAA;EAAA,yLAAA;UAAA;AAAA;AAAA;EAAA,gMAAA;EAAA,wLAAA;EAAA,wJAAA;EAAA,wOAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA;AAAA;AAAA;EAAA,mCAAA;EAAA,2BAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA;AAAA;AAAA;EAAA,2CAAA;EAAA,mCAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA;AAAA;AAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA;AAAA;AAAA;EAAA,oCAAA;EAAA,4BAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA;AAAA;AAAA;EAAA,kCAAA;UAAA;AAAA;AAAA;EAAA,kCAAA;UAAA;AAAA;AAAA;EAAA,8DAAA;UAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AAAA;EAAA;AAAA;AMRA;EACI,oBAAA;EAAA,oBAAA;EAAA,aAAA;AJwCJ;;AIpCA;EACI,oBAAA;EAAA,oBAAA;EAAA,aAAA;EACA,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA,sBAAA;EACA,WAAA;EACA,qBAAA;AJuCJ;;AInCA;EACI,YAAA;EACA,mCCZ2B;EDa3B,gBAAA;EAAA,QAAA;EAAA,WAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAAA,yBAAA;MAAA,sBAAA;UAAA,mBAAA;EAAA,wBAAA;MAAA,qBAAA;UAAA,uBAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA,0BAAA;AJsCJ;AInCI;EACI,aAAA;AJqCR;AIlCI;EACI,cAAA;AJoCR;;AI7BY;EACI,cAAA;AJgChB;AI7BY;EACI,aAAA;AJ+BhB;;AMpEA;EACI,YAAA;EACA,gBAAA;EACA,kBAAA;EAAA,8BAAA;UAAA,sBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAAA,2BAAA;EAAA,wBAAA;EAAA,mBAAA;EAAA,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA,sBAAA;EAAA,yBAAA;EAAA,iBAAA;EAAA,oCAAA;EAAA,kBAAA;EAAA,yDAAA;ANuEJ;;AMvEI;EAAA,wBAAA;EAAA,sBAAA;EAAA,yDAAA;EAAA,oBAAA;EAAA,uBAAA;EAAA,oBAAA;EAAA;AAAA;;AAAA;EAAA,gBAAA;EAAA,QAAA;EAAA,WAAA;EAAA,aAAA;EAAA,kBAAA;EAAA,4BAAA;EAAA,sBAAA;EAAA,yDAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA;AAAA;;AAAA;EAAA;IAAA,wBAAA;YAAA,gBAAA;EAAA;AAAA;AAEA;EACI,yBAAA;ANuER;;AMnEA;EACI,oBAAA;EAAA,oBAAA;EAAA,aAAA;EACA,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA,sBAAA;EACA,QAAA;EACA,cAAA;ANsEJ;AMpEI;EACI,mCDbuB;ECcvB,iBAAA;EACA,uBAAA;EACA,eAAA;EAAA,mBAAA;EAAA,gBAAA;EAAA,qBAAA;EAAA,aAAA;ANsER;AMnEI;EACI,kBAAA;ANqER;AMlEI;EACI,oBAAA;EAAA,oBAAA;EAAA,aAAA;EACA,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA,sBAAA;EACA,QAAA;ANoER;AMlEQ;EACI,mCD7BmB;EC8BnB,aAAA;EACA,oBAAA;EACA,kBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAAA,yBAAA;MAAA,sBAAA;UAAA,mBAAA;EAAA,mBAAA;EAAA,6BAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA,0BAAA;ANoEZ;AMlEY;EACI,cAAA;EACA,eAAA;EACA,kBAAA;EACA,oBAAA;EACA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA,0BAAA;ANoEhB;AMlEgB;EACI,cAAA;EACA,eAAA;EACA,eAAA;ANoEpB;AMhEY;EACI,eAAA;EACA,iBAAA;EACA,mBAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA,0BAAA;ANkEhB;AM/DY;EACI,eAAA;EACA,iBAAA;EACA,0BAAA;UAAA,yBAAA;EAAA,gBAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA,0BAAA;ANiEhB;AMjEgB;EAAA,mBAAA;EAAA,uMAAA;UAAA;AAAA;AAEA;EACI,gBAAA;EACA,2BAAA;ANiEpB;AM7DY;EACI,cAAA;EACA,kBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAAA,wBAAA;MAAA,qBAAA;UAAA,uBAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA,0BAAA;AN+DhB;AM5DgB;EACI,WAAA;EACA,8CDxEW;ECyEX,aAAA;EACA,kBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAAA,eAAA;EAAA,wBAAA;MAAA,qBAAA;UAAA,uBAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA,0BAAA;AN8DpB;AMzDgB;EACI,gCAAA;UAAA,wBAAA;AN2DpB;AMvDY;EACI,yCDnFe;AL4I/B;AMtDY;EACI,0CDtFe;AL8I/B;AMjDY;EACI,iDDhGe;ALmJ/B;AMhDY;EACI,kDDjGe;ALmJ/B;AM5CQ;EAAA,WAAA;EAAA,gBAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA;AAAA;AAEA;EACI,eAAA;AN+CZ;;AMxCQ;EACI,gBAAA;AN2CZ;;AMpCI;EACI,4BAAA;UAAA,2BAAA;ANuCR;;AMjCI;EACI,4BAAA;UAAA,2BAAA;EACA,eAAA;EAAA,kBAAA;EAAA,UAAA;ANoCR;AMhCQ;EACI,uBAAA;UAAA,sBAAA;EACA,WAAA;EAAA,UAAA;ANkCZ;;AO/KI;EACI,gBAAA;APkLR;;AO7KI;EAAA,kBAAA;EAAA,8BAAA;UAAA,sBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAAA,2BAAA;EAAA,wBAAA;EAAA,mBAAA;EAAA,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA,sBAAA;EAAA,yBAAA;EAAA,iBAAA;EAAA,oCAAA;EAAA,kBAAA;EAAA;AAAA;;AAAA;EAAA,wBAAA;EAAA,sBAAA;EAAA,yDAAA;EAAA,oBAAA;EAAA,uBAAA;EAAA,oBAAA;EAAA;AAAA;;AAAA;EAAA,gBAAA;EAAA,QAAA;EAAA,WAAA;EAAA,aAAA;EAAA,WAAA;EAAA,eAAA;EAAA,kBAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,gEAAA;UAAA,wDAAA;EAAA,kCAAA;UAAA;AAAA;;AAAA;EAAA;IAAA,wBAAA;YAAA,gBAAA;EAAA;AAAA;;AAMI;EAAA,yBAAA;UAAA;AAAA;;AAOA;EAAA,eAAA;EAAA,qBAAA;EAAA,yBAAA;UAAA,wBAAA;EAAA,kBAAA;EAAA;AAAA;AAKI;EAAA,WAAA;EAAA,uBAAA;UAAA,sBAAA;EAAA;AAAA;;AC1BR;EAAA,kBAAA;EAAA,8BAAA;UAAA,sBAAA;EAAA,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAAA,2BAAA;EAAA,wBAAA;EAAA,mBAAA;EAAA,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA,sBAAA;EAAA,yBAAA;EAAA,iBAAA;EAAA,oCAAA;EAAA,kBAAA;EAAA;AAAA;;AAAA;EAAA,wBAAA;EAAA,sBAAA;EAAA,yDAAA;EAAA,oBAAA;EAAA,uBAAA;EAAA,oBAAA;EAAA;AAAA;;AAAA;EAAA,gBAAA;EAAA,QAAA;EAAA,8BAAA;EAAA,6BAAA;MAAA,uBAAA;UAAA,mBAAA;EAAA,kBAAA;EAAA,wBAAA;EAAA,sBAAA;EAAA;AAAA;;AAAA;EAAA;IAAA,wBAAA;YAAA,gBAAA;EAAA;AAAA;;AADJ;EAEI,WAAA;EACA,YAAA;ARwMJ;AQtMI;EACI,kCHKuB;EGJvB,qBAAA;EAAA,iBAAA;EAAA,sBAAA;EAAA,yDAAA;EAAA,kBAAA;EAAA,yDAAA;EAAA,gCAAA;EAAA,wBAAA;EAAA,kCAAA;UAAA,0BAAA;EAAA,gEAAA;UAAA,wDAAA;ARwMR;AQtMQ;EACI,wCHImB;ALoM/B;AQpMQ;EACI,yCHCmB;ALqM/B;AQhMQ;EAAA;IAAA;EAAA;AAAA;;AASI;EAAA,oBAAA;EAAA,oBAAA;EAAA;AAAA;;AC9BZ;EACI,kBAAA;EACA,uBAAA;AT+NJ;;AS5NA;EACI,kBAAA;EACA,yBAAA;EACA,uCJP2B;EIQ3B,mBAAA;EAAA,oBAAA;EAAA,gBAAA;EAAA,gBAAA;EAAA,oBAAA;EAAA,gDAAA;AT+NJ;;AStNI;;;;;;EAAA,gBAAA;EAAA,oBAAA;EAAA;AAAA;;AAIA;EAAA,oBAAA;EAAA;AAAA;;AAIA;EAAA,oBAAA;EAAA;AAAA;;AAGJ;EACI,WAAA;EACA,UAAA;EACA,yBAAA;AT+NJ;;AS5NA;EACI,WAAA;EACA,UAAA;EACA,yBAAA;AT+NJ;;AS3NA;EACI,gBAAA;AT8NJ;;ASxNI;EACI,wBAAA;AT2NR;ASxNI;EACI,UAAA;AT0NR;ASvNI;EACI,WAAA;ATyNR;ASrNQ;EAAA,qBAAA;EAAA;AAAA;AAIA;EAAA,qBAAA;EAAA;AAAA;AAIA;EAAA;AAAA;ACrEJ;EAAA,oBAAA;EAAA,oBAAA;EAAA,aAAA;EAAA,yBAAA;MAAA,sBAAA;UAAA,mBAAA;EAAA,wBAAA;MAAA,qBAAA;UAAA,uBAAA;EAAA,mBAAA;EAAA,qBAAA;EAAA,cAAA;EAAA,gBAAA;EAAA,cAAA;EAAA,oBAAA;EAAA;AAAA;ACDJ;EAKQ;;;IAAA;EAAA;EAGJ;;IAEI,UAAA;IACA,SAAA;EX8UN;EW3UE;IACI,wBAAA;YAAA,gBAAA;EX6UN;AACF;AY7VA;;EAEI,YAAA;EACA,WAAA;EACA,kCAAA;UAAA,0BAAA;EACA,uBAAA;EACA,eAAA;EACA,uCAAA;EAAA,oBAAA;EAAA,+CAAA;EACA,iCAAA;EAAA,yBAAA;AZ+VJ;AY7VI;;EACI,aAAA;AZgWR;;AY3VI;EACI,gBAAA;AZ8VR;;AYzVI;EACI,gBAAA;AZ4VR;;AYxVA;EACI,WAAA;EACA,WAAA;EACA,sBAAA;EACA,mBAAA;EACA,0EAAA;EAAA,8FAAA;EAAA,+GAAA;UAAA,uGAAA;AZ2VJ;AYzVI;EACI,UAAA;AZ2VR;;AYtVI;EACI,UAAA;EACA,WAAA;EACA,sBAAA;EACA,YAAA;EACA,iCAAA;EAAA,yBAAA;AZyVR;AYvVQ;EACI,UAAA;EACA,WAAA;AZyVZ;;AYpVA;EACI,WAAA;EACA,eAAA;EACA,sCAAA;EACA,kCAAA;UAAA,0BAAA;AZuVJ;;AYlVI;EACI,YAAA;EACA,WAAA;EACA,iBAAA;EACA,kBAAA;EACA,sBAAA;EACA,YAAA;EACA,iCAAA;EAAA,yBAAA;AZqVR;AYlVY;EAAA,oBAAA;EAAA,gDAAA;EACA;AADA;;AAMZ;EACI,sBAAA;EACA,wCAAA;AZmVJ;AYhVQ;EAAA,kBAAA;EAAA;AAAA;;AAKR;EACI,2CAAA;EACA,kCAAA;UAAA,0BAAA;EACA,cAAA;EACA,sBAAA;AZiVJ;AY/UI;EACI,sBAAA;AZiVR;;AY3UQ;EAAA,kBAAA;EAAA;AAAA;AAKI;EAAA,kBAAA;EAAA;AAAA;AAKJ;EACI,WAAA;AZ0UZ;AYxUY;EACI,UAAA;AZ0UhB;AYpUQ;EAAA;AAAA;;AC1HR;EACI,kBAAA;EACA,4BAAA;EAAA,6BAAA;MAAA,0BAAA;UAAA,sBAAA;EACA,mBAAA;MAAA,eAAA;EACA,uBAAA;MAAA,oBAAA;UAAA,2BAAA;EACA,yBAAA;MAAA,yBAAA;EACA,wBAAA;MAAA,qBAAA;UAAA,uBAAA;AbocJ;;AajcA;EACI,gBAAA;EACA,cAAA;EACA,eAAA;EACA,kBAAA;EACA,mBAAA;AbocJ;;AajcA;EACI,kBAAA;EACA,kBAAA;EACA,gBAAA;EACA,UAAA;EACA,SAAA;EACA,qBAAA;EACA,MAAA;EACA,SAAA;EACA,mBAAA;EACA,sBAAA;EACA,uBAAA;EACA,UAAA;AbocJ;;AajcA;EACI,6BAAA;EACA,sCAAA;UAAA,8BAAA;EACA,uBAAA;EACA,kBAAA;EACA,MAAA;EACA,gCAAA;EACA,SAAA;EACA,8BAAA;EACA,UAAA;EACA,SAAA;EACA,iCAAA;AbocJ;;AajcA;EACI,kBAAA;EACA,yCAAA;UAAA,iCAAA;EACA,kBAAA;EACA,cAAA;EACA,YAAA;EACA,mGAAA;EACA,WAAA;EACA,mBAAA;EACA,cAAA;EACA,mFAAA;EACA,eAAA;EACA,kDAAA;EACA,gBAAA;EACA,0CAAA;EACA,qBAAA;EACA,uBAAA;AbocJ;;AajcA;;EAEI,aAAA;AbocJ;;AajcA;;EAEI,YAAA;EACA,cAAA;AbocJ;;AajcA;EACI,gBAAA;EACA,eAAA;EACA,WAAA;EACA,oBAAA;AbocJ;;AajcA;EACI,sCAAA;UAAA,8BAAA;EACA,YAAA;EACA,WAAA;EACA,cAAA;EACA,kBAAA;EACA,yBAAA;EACA,eAAA;EACA,gBAAA;EACA,WAAA;EACA,UAAA;EACA,SAAA;EACA,oBAAA;EACA,yBAAA;MAAA,0BAAA;UAAA,kBAAA;EACA,oBAAA;MAAA,cAAA;EACA,0BAAA;MAAA,aAAA;AbocJ;;AajcA;EACI,2BAAA;UAAA,mBAAA;EACA,cAAA;EACA,UAAA;EACA,kBAAA;EACA,MAAA;EACA,qBAAA;EACA,aAAA;EACA,YAAA;EACA,eAAA;EACA,cAAA;EACA,gBAAA;EACA,oBAAA;EACA,WAAA;AbocJ;;AajcA;EACI,UAAA;EACA,kBAAA;EACA,mBAAA;EACA,SAAA;EACA,oBAAA;EACA,gBAAA;AbocJ;;AajcA;EACI,oBAAA;EACA,sBAAA;GAAA,qBAAA;OAAA,iBAAA;EACA,yBAAA;AbocJ;;AajcA;EACI,mBAAA;AbocJ;;AajcA;EACI,kBAAA;EACA,qBAAA;EACA,UAAA;EACA,gBAAA;AbocJ;;AajcA;EACI,WAAA;EACA,kBAAA;EACA,kBAAA;EACA,qBAAA;EACA,mBAAA;EACA,UAAA;EACA,uCAAA;EAAA,+BAAA;EACA,kBAAA;EAAA,yDAAA;AbocJ;;AajcA;EACI,0DAAA;EACA,YAAA;EACA,qCAAA;EAAA,6BAAA;AbocJ;;AajcA;EACI,MAAA;EACA,WAAA;AbocJ;;AajcA;EACI,QAAA;EACA,WAAA;AbocJ;;AajcA;EACI,qBAAA;EACA,YAAA;AbocJ;;AajcA;EACI,YAAA;EACA,uBAAA;EACA,qBAAA;AbocJ;;AajcA;EACI,sBAAA;EACA,qBAAA;EACA,QAAA;EACA,WAAA;EACA,aAAA;EACA,eAAA;EACA,WAAA;AbocJ;;AajcA,gBAAA;AACA;EACI,sBAAA;EACA,qBAAA;AbocJ;;AajcA;EACI,cAAA;EACA,eAAA;EACA,UAAA;EACA,kBAAA;EACA,aAAA;EACA,YAAA;EACA,kBAAA;EACA,kBAAA;AbocJ;;AajcA;EACI,eAAA;EACA,qBAAA;EACA,kBAAA;EACA,kBAAA;EACA,qBAAA;AbocJ;;Aa9bI;EACI,qBAAA;EACA,WAAA;AbicR;;Aa1bY;EAAA,kBAAA;EAAA;AAAA;;ACpOZ;EACI,2BAAA;AdqqBJ;;AclqBA;EACI,cAAA;AdqqBJ;Ac/pBQ;;;;EAAA;AAAA;AAKA;;EAAA,iBAAA;EAAA,gCAAA;EAAA,oCAAA;EAAA,oBAAA;EAAA,gDAAA;EAAA,sBAAA;EAAA,8BAAA;EAAA,+GAAA;UAAA;AAAA;AAKA;;EAAA;AAAA;AAIA;EAAA,oBAAA;EAAA;AAAA;AAIA;EAAA,sBAAA;EAAA,oDAAA;EAAA,kBAAA;EAAA;AAAA;;AAKJ;EAAA;AAAA;;AAIA;EAAA,oBAAA;EAAA,gDAAA;EACA,0BAAA;EACA;AAFA;;AAKJ;EACI,sBAAA;EACA,4BAAA;AdgqBJ;;Ac5pBI;EAAA;AAAA;;AAGJ;;;;;;;;;;;EAWI,kDAAA;AdgqBJ;;ActpBI;EACI,kDAAA;AdypBR;;ActpBA;EACI,kBAAA;EACA,WAAA;AdypBJ;AcvpBI;EACI,eAAA;EACA,kBAAA;EACA,kBAAA;EACA,kBAAA;EACA,uCTrFuB;ESsFvB,kBAAA;EAAA,sDAAA;EAAA,oBAAA;EAAA,gDAAA;AdypBR;AcvpBQ;EACI,iBAAA;EACA,gBAAA;EACA,uCT3FmB;ALovB/B;ActpBQ;EACI,mBAAA;EACA,eAAA;EACA,YAAA;AdwpBZ;;AezvBI;EAAA,iBAAA;EAAA,uBAAA;EAAA,iBAAA;EAAA,oBAAA;EAAA,sBAAA;EAAA,yDAAA;EAAA,kBAAA;EAAA;AAAA;;ACDJ;EACI,gBAAA;AhBiwBJ;AgB/vBI;;EAEI,mBAAA;EACA,gBAAA;AhBiwBR;AgB9vBI;EACI,mBAAA;EACA,mBAAA;EACA,iBAAA;AhBgwBR;;AgB1vBQ;EAAA,iBAAA;EAAA,sBAAA;EAAA;AAAA;;AAMA;EAAA,+BAAA;EAAA,gCAAA;EAAA,iBAAA;EAAA,sBAAA;EAAA;AAAA;;AAKJ;EAAA,sBAAA;EAAA,iBAAA;EAAA,sBAAA;EAAA;AAAA;;AAIA;EACI,wBAAA;EACA,oBAAA;EAAA,6CAAA;AhB0vBR;AgBvvBY;EAAA,oBAAA;EAAA;AAAA;AAKJ;EAAA,+BAAA;EAAA,gCAAA;EAAA;AAAA;AAGI;EACI,yBAAA;AhBuvBhB;AgBlvBY;EAAA,sBAAA;EAAA,0EAAA;EAAA,8FAAA;EAAA,+GAAA;UAAA;AAAA;;AASJ;;;EAAA;AAAA;AAIA;EAAA,oBAAA;EAAA;AAAA;AAIA;EACI,QAAA;EACA,UAAA;AhB+uBZ;AgBzuBY;EAAA,oBAAA;EAAA;AAAA;;AAOJ;EAAA,iBAAA;EAAA,sBAAA;EAAA,yDAAA;EAAA,kBAAA;EAAA;AAAA;;AAKJ;EAAA,iBAAA;EAAA,sBAAA;EAAA;AAAA;;ACzFJ;;EAEI,aAAA;EACA,kBAAA;EACA,kBAAA;EAAA,yDAAA;AjBo0BJ;;AiBj0BA;EACI,cAAA;EACA,kBAAA;EACA,WAAA;EACA,eAAA;EACA,iBAAA;EACA,kBAAA;EACA,kBAAA;EACA,kBAAA;EAAA,wDAAA;AjBo0BJ;;AiBj0BA;EACI,SAAA;EACA,kBAAA;EACA,QAAA;EACA,SAAA;EACA,kBAAA;AjBo0BJ;AiBl0BI;EACI,aAAA;EACA,mCAAA;EACA,oCAAA;EACA,kBAAA;EAAA,sBAAA;EAAA,4DAAA;AjBo0BR;AiBj0BI;EACI,UAAA;EACA,mCAAA;EACA,oCAAA;EACA,kBAAA;EAAA,sBAAA;EAAA,+DAAA;AjBm0BR;;AkBv2BA;EACI,gBAAA;AlB02BJ;;AkBv2BA;EACI,8BAAA;AlB02BJ;AkBx2BI;EACI,6BAAA;EACA,qBAAA;EACA,yBAAA;AlB02BR;;AkBp2BQ;EAAA;AAAA;;AAIR;EACI,iBAAA;AlBu2BJ;;AkBp2BA;EACI,uBAAA;AlBu2BJ;;AkBj2BQ;EAAA,kBAAA;EAAA,yDAAA;EAAA,gBAAA;EACA,eAAA;EACA,iBAAA;EACA,eAAA;EACA;AAJA;AAOJ;;;EAGI,sBAAA;AlBo2BR;;AkB11BI;;;EAAA,kBAAA;EAAA,wDAAA;EAAA,oBAAA;EAAA,gDAAA;EACA;AADA;;AAIJ;EACI,mBAAA;MAAA,eAAA;EACA,SAAA;EACA,yBAAA;MAAA,sBAAA;UAAA,8BAAA;AlBg2BJ;;AkB71BA;EACI,kBAAA;EACA,YAAA;EACA,YAAA;EACA,oBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;EACA,oBAAA;EAAA,gDAAA;AlBg2BJ;;AkB71BA;EAGQ;IACI,aAAA;ElB81BV;EkB31BM;;;IAGI,WAAA;IACA,cAAA;IACA,WAAA;IACA,cAAA;ElB61BV;AACF;AkBv1BI;;EAAA,oBAAA;EAAA;AAAA;;AAMA;;;EAAA,iBAAA;EAAA,mBAAA;EAAA,sBAAA;EAAA;AAAA;;ACtGJ;;;;;;uDAAA;AAQA;EACI,kBAAA;EACA,eAAA;EACA,2BAAA;EAAA,2BAAA;EAAA,oBAAA;EACA,gBAAA;EACA,yBAAA;KAAA,sBAAA;MAAA,qBAAA;UAAA,iBAAA;EACA,wCAAA;AnBm8BJ;;AmBh8BA;EACI,kBAAA;EACA,kBAAA;EACA,YAAA;EACA,aAAA;EACA,iBAAA;EACA,kBAAA;EACA,UAAA;EACA,8BAAA;EACA,qJAAA;EACA,qCAAA;EAAA,6BAAA;EACA,uDAAA;EAAA,+CAAA;EAAA,uCAAA;EAAA,0DAAA;EACA,2CAAA;UAAA,mCAAA;EACA,oBAAA;AnBm8BJ;;AmBh8BA;EACI,oCAAA;EACA,6KAAA;AnBm8BJ;;AmBh8BA;EACI,8BAAA;AnBm8BJ;;AmBh8BA;EACI,oCAAA;AnBm8BJ;;AmBh8BA;EACI,mCAAA;EAAA,2BAAA;AnBm8BJ;;AmBh8BA;;EAEI,gCAAA;UAAA,wBAAA;EACA,mEAAA;UAAA,2DAAA;AnBm8BJ;;AmBh8BA;;;;EAII,mBAAA;EACA,sBAAA;EACA,eAAA;EACA,YAAA;EACA,aAAA;EACA,cAAA;EACA,kCAAA;EACA,cAAA;EACA,gBAAA;EACA,kBAAA;EACA,qBAAA;EACA,UAAA;AnBm8BJ;;AmBh8BA;EACI,qBAAA;EACA,oBAAA;AnBm8BJ;;AmBh8BA;EACI,SAAA;EACA,qBAAA;AnBm8BJ;;AmBh8BA;EACI,oBAAA;EACA,sBAAA;AnBm8BJ;;AmBh8BA;EACI,UAAA;AnBm8BJ;;AmBh8BA;EACI,kBAAA;EACA,MAAA;EACA,OAAA;EACA,UAAA;AnBm8BJ;;AmBh8BA;EACI,kBAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;EACA,kBAAA;AnBm8BJ;;AmBh8BA;EACI,wBAAA;UAAA,gBAAA;EACA,yDAAA;UAAA,iDAAA;EACA,6BAAA;EAAA,qBAAA;AnBm8BJ;;AmBh8BA;EACI,uDAAA;UAAA,+CAAA;AnBm8BJ;;AmBh8BA;EACI,cAAA;AnBm8BJ;;AF1jCA;EAAA,2BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,2BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,2BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,2BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,2BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,2BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,2BsBAA;EtBAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,2BsBAA;EtBAA,iCsBAA;EtBAA,yBsBAA;EtBAA,iEsBAA;UtBAA,yDsBAA;EtBAA,mCsBAA;UtBAA;CsBAA;;AtBAA;EAAA,2BsBAA;EtBAA,mCsBAA;UtBAA;CsBAA;;AtBAA;EAAA,iBsBAA;EtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,+BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mCsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,2BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,2BsBAA;EtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,uBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,+BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,4GsBAA;EtBAA,0GsBAA;EtBAA,qGsBAA;UtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,sBsBAA;EtBAA,wMsBAA;UtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,sBsBAA;EtBAA,wMsBAA;UtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,uBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,uBsBAA;EtBAA;CsBAA;;AtBAA;EAAA,mBsBAA;EtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,qBsBAA;EtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,sBsBAA;EtBAA,wMsBAA;UtBAA;CsBAA;;AtBAA;EAAA,sBsBAA;EtBAA,wMsBAA;UtBAA;CsBAA;;AtBAA;EAAA,gBsBAA;EtBAA,gBsBAA;EtBAA,wMsBAA;UtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,mCsBAA;UtBAA;CsBAA;;AtBAA;EAAA,mCsBAA;UtBAA;CsBAA;;AtBAA;EAAA,+DsBAA;UtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,sBsBAA;EtBAA,wMsBAA;UtBAA;CsBAA;;AtBAA;EAAA,sBsBAA;EtBAA,wMsBAA;UtBAA;CsBAA;;AtBAA;EAAA,gBsBAA;EtBAA,gBsBAA;EtBAA,wMsBAA;UtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,mCsBAA;UtBAA;CsBAA;;AtBAA;EAAA,mCsBAA;UtBAA;CsBAA;;AtBAA;EAAA,+DsBAA;UtBAA;CsBAA;;AtBAA;EAAA,iCsBAA;EtBAA;CsBAA;;AtBAA;EAAA,4BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,kCsBAA;EtBAA;CsBAA;;AtBAA;EAAA,6BsBAA;EtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA,iCsBAA;EtBAA;CsBAA;;AtBAA;EAAA,4BsBAA;EtBAA;CsBAA;;AtBAA;EAAA,kCsBAA;EtBAA;CsBAA;;AtBAA;EAAA,6BsBAA;EtBAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA;CsBAA;;AtBAA;EAAA;IAAA;GsBAA;CAAA;;AtBAA;EAAA;IAAA,kBsBAA;ItBAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA,qBsBAA;ItBAA,qBsBAA;ItBAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA,yBsBAA;OtBAA,sBsBAA;YtBAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA,qBsBAA;ItBAA;GsBAA;EtBAA;IAAA,kBsBAA;ItBAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA,mBsBAA;ItBAA;GsBAA;EtBAA;IAAA,oBsBAA;ItBAA;GsBAA;EtBAA;IAAA,0BsBAA;YtBAA;GsBAA;EtBAA;IAAA,+BsBAA;ItBAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA,gCsBAA;ItBAA;GsBAA;EtBAA;IAAA;GsBAA;CAAA;;AtBAA;EAAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA,qBsBAA;ItBAA,qBsBAA;ItBAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA,sBsBAA;QtBAA,mBsBAA;YtBAA;GsBAA;EtBAA;IAAA,0BsBAA;QtBAA,uBsBAA;YtBAA;GsBAA;EtBAA;IAAA,oBsBAA;ItBAA;GsBAA;EtBAA;IAAA,mBsBAA;ItBAA;GsBAA;CAAA;;AtBAA;EAAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA,mBsBAA;ItBAA;GsBAA;CAAA;;AtBAA;EAAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;CAAA;;AtBAA;EAAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;EtBAA;IAAA;GsBAA;CAAA","file":"theme.min.css","sourcesContent":["/*\r\nTemplate Name: TailFox - Responsive Tailwind Admin Dashboard\r\nVersion: 1.0\r\nAuthor: Myra Studio\r\nEmail: myrathemes@gmail.com\r\nFile: Main Css File\r\n*/\r\n\r\n@import \"config/variables\";\r\n@import \"config/config\";\r\n\r\n@tailwind base;\r\n@tailwind components;\r\n@tailwind utilities;\r\n\r\n// Structure\r\n@import \"structure/general\";\r\n@import \"structure/sidebar\";\r\n@import \"structure/profilebar\";\r\n@import \"structure/topbar\";\r\n\r\n// Components\r\n@import \"custom/reboot\";\r\n@import \"custom/buttons\";\r\n@import \"custom/badge\";\r\n@import \"custom/card\";\r\n@import \"custom/forms\";\r\n@import \"custom/print\";\r\n@import \"custom/helper\";\r\n\r\n// Plugins\r\n@import \"plugins/swiper\";\r\n@import \"plugins/simplebar\";\r\n@import \"plugins/apexcharts\";\r\n@import \"plugins/dropzone\";\r\n@import \"plugins/quilljs\";\r\n@import \"plugins/google-map\";\r\n@import \"plugins/fullcalendar\";\r\n@import \"plugins/wave\";","// \r\n// _theme-config.scss (:root variable)\r\n// \r\n\r\n// Font Family (Google Font)\r\n@import url('https://fonts.googleapis.com/css2?family=REM:wght@100;200;300;400;500;600;700;800;900&display=swap');\r\n@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');\r\n\r\n@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap');\r\n\r\n\r\n// Root Variable\r\n:root {\r\n --tw-body-font-family: theme(fontFamily.base);\r\n}\r\n\r\n// Light Sidebar\r\n[data-sidebar-color=\"light\"] {\r\n --tw-sidebar-bg: #FBF7F3;\r\n --tw-sidebar-item-color: theme(colors.gray.500);\r\n --tw-sidebar-item-hover-color: theme(colors.black);\r\n --tw-sidebar-item-hover-bg: theme(backgroundColor.black/5%);\r\n --tw-sidebar-item-active-color: theme(colors.black);\r\n --tw-sidebar-item-active-bg: theme(backgroundColor.black/7%);\r\n}\r\n\r\n// Dark Sidebar\r\n[data-sidebar-color=\"dark\"] {\r\n --tw-sidebar-bg: theme(backgroundColor.neutral.800);\r\n --tw-sidebar-item-color: theme(colors.neutral.400);\r\n --tw-sidebar-item-hover-color: theme(colors.white);\r\n --tw-sidebar-item-hover-bg: theme(backgroundColor.white/5%);\r\n --tw-sidebar-item-active-color: theme(colors.white);\r\n --tw-sidebar-item-active-bg: theme(backgroundColor.zinc.700/50%);\r\n}\r\n\r\n// Light Topbar\r\n[data-topbar-color=\"light\"] {\r\n --tw-topbar-bg: #FBF7F3;\r\n --tw-topbar-item-color: theme(colors.gray.500);\r\n --tw-topbar-item-hover-color: theme(colors.primary);\r\n --tw-topbar-item-hover-bg: theme(backgroundColor.primary/10%);\r\n --tw-topbar-item-active-color: theme(colors.primary);\r\n --tw-topbar-item-active-bg: theme(backgroundColor.primary/12%);\r\n}","/*\nTemplate Name: TailFox - Responsive Tailwind Admin Dashboard\nVersion: 1.0\nAuthor: Myra Studio\nEmail: myrathemes@gmail.com\nFile: Main Css File\n*/\n@import url(\"https://fonts.googleapis.com/css2?family=REM:wght@100;200;300;400;500;600;700;800;900&display=swap\");\n@import url(\"https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap\");\n@import url(\"https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap\");\n:root {\n --tw-body-font-family: theme(fontFamily.base);\n}\n\n[data-sidebar-color=light] {\n --tw-sidebar-bg: #FBF7F3;\n --tw-sidebar-item-color: theme(colors.gray.500);\n --tw-sidebar-item-hover-color: theme(colors.black);\n --tw-sidebar-item-hover-bg: theme(backgroundColor.black/5%);\n --tw-sidebar-item-active-color: theme(colors.black);\n --tw-sidebar-item-active-bg: theme(backgroundColor.black/7%);\n}\n\n[data-sidebar-color=dark] {\n --tw-sidebar-bg: theme(backgroundColor.neutral.800);\n --tw-sidebar-item-color: theme(colors.neutral.400);\n --tw-sidebar-item-hover-color: theme(colors.white);\n --tw-sidebar-item-hover-bg: theme(backgroundColor.white/5%);\n --tw-sidebar-item-active-color: theme(colors.white);\n --tw-sidebar-item-active-bg: theme(backgroundColor.zinc.700/50%);\n}\n\n[data-topbar-color=light] {\n --tw-topbar-bg: #FBF7F3;\n --tw-topbar-item-color: theme(colors.gray.500);\n --tw-topbar-item-hover-color: theme(colors.primary);\n --tw-topbar-item-hover-bg: theme(backgroundColor.primary/10%);\n --tw-topbar-item-active-color: theme(colors.primary);\n --tw-topbar-item-active-bg: theme(backgroundColor.primary/12%);\n}\n\n@tailwind base;\n@tailwind components;\n@tailwind utilities;\n.app-wrapper {\n display: flex;\n}\n\n.app-content {\n display: flex;\n flex-direction: column;\n width: 100%;\n min-block-size: 100vh;\n}\n\n.logo-box {\n height: 70px;\n color: var(--tw-sidebar-item-color);\n @apply sticky top-0 z-50 flex items-center justify-center transition-all duration-300;\n}\n.logo-box .logo-light {\n display: none;\n}\n.logo-box .logo-dark {\n display: block;\n}\n\nhtml[data-sidebar-color=dark] .app-menu .logo-box .logo-light {\n display: block;\n}\nhtml[data-sidebar-color=dark] .app-menu .logo-box .logo-dark {\n display: none;\n}\n\n.app-menu {\n width: 260px;\n min-width: 260px;\n @apply sticky card rounded-none border-e border-gray-200 top-0 h-screen z-40 transition-all duration-300;\n}\n.app-menu [data-simplebar] {\n height: calc(100% - 70px);\n}\n\n.menu {\n display: flex;\n flex-direction: column;\n gap: 6px;\n padding: 6px 0;\n}\n.menu .menu-title {\n color: var(--tw-sidebar-item-color);\n font-size: 0.8rem;\n padding: 0.5rem 2.25rem;\n @apply font-medium opacity-75 cursor-default tracking-widest whitespace-nowrap;\n}\n.menu > .menu-item {\n padding: 0 1.25rem;\n}\n.menu .menu-item {\n display: flex;\n flex-direction: column;\n gap: 6px;\n}\n.menu .menu-item .menu-link {\n color: var(--tw-sidebar-item-color);\n gap: 0.625rem;\n padding: 0.5rem 1rem;\n @apply relative flex items-center transition-all whitespace-nowrap bg-transparent;\n}\n.menu .menu-item .menu-link > .menu-icon {\n width: 1.25rem;\n height: 1.25rem;\n font-size: 1.25rem;\n line-height: 1.25rem;\n @apply transition-all;\n}\n.menu .menu-item .menu-link > .menu-icon svg {\n width: 1.25rem;\n height: 1.25rem;\n stroke: inherit;\n}\n.menu .menu-item .menu-link > .menu-text {\n font-size: 1rem;\n line-height: 1rem;\n @apply whitespace-nowrap transition-all;\n}\n.menu .menu-item .menu-link > .menu-arrow {\n font-size: 1rem;\n line-height: 1rem;\n @apply font-black transition-all ms-auto rtl:rotate-180;\n}\n.menu .menu-item .menu-link > .menu-arrow::before {\n content: \"\\eb6d\";\n font-family: \"unicons-line\";\n}\n.menu .menu-item .menu-link > .menu-dot {\n width: 1.25rem;\n @apply flex justify-center relative transition-all;\n}\n.menu .menu-item .menu-link > .menu-dot::before {\n content: \"\";\n background-color: var(--tw-sidebar-item-color);\n height: 1.5px;\n @apply flex w-1.5 justify-center absolute transition-all;\n}\n.menu .menu-item .menu-link:is(.open) > .menu-arrow {\n transform: rotate(90deg);\n}\n.menu .menu-item .menu-link:is(:hover, .open, :focus) {\n color: var(--tw-sidebar-item-hover-color);\n}\n.menu .menu-item .menu-link:is(.active, :active) {\n color: var(--tw-sidebar-item-active-color);\n}\n.menu > .menu-item > .menu-link:is(:hover, .open, :focus) {\n background-color: var(--tw-sidebar-item-hover-bg);\n}\n.menu > .menu-item > .menu-link:is(.active, :active) {\n background-color: var(--tw-sidebar-item-active-bg);\n}\n.menu .sub-menu {\n @apply w-full overflow-hidden transition-all duration-300;\n}\n.menu .sub-menu > :not([hidden]) ~ :not([hidden]) {\n margin-top: 6px;\n}\n\n.fullscreen-enable [data-toggle=fullscreen] .ph-arrows-out::before {\n content: \"\\e961\";\n}\n\nhtml[data-sidebar-view=hidden] .app-menu {\n margin-inline-start: -260px;\n}\n\nhtml[data-sidebar-view=mobile] .app-menu {\n margin-inline-start: -260px;\n @apply fixed opacity-0 border-none;\n}\nhtml[data-sidebar-view=mobile].sidebar-open .app-menu {\n margin-inline-start: 0;\n @apply opacity-100 z-50;\n}\n\n.fullscreen-enable .uil-focus::before {\n content: \"\\eb8d\";\n}\n\n.profile-menu {\n @apply card rounded-none sticky top-0 h-screen z-40 transition-all duration-300 w-32 min-w-[8rem];\n}\n\nhtml[data-profile-view=hidden] .profile-menu {\n @apply -me-32;\n}\n\nhtml[data-profile-view=mobile] .profile-menu {\n @apply -me-32 fixed opacity-0 end-0 border-none;\n}\nhtml[data-profile-view=mobile].profile-open .profile-menu {\n @apply opacity-100 z-50 me-0;\n}\n\n.app-header {\n @apply sticky card flex-row rounded-none top-0 border-b border-gray-200;\n z-index: 35;\n height: 70px;\n}\n.app-header .nav-link {\n color: var(--tw-topbar-item-color);\n @apply rounded-full bg-white border border-gray-200 transition-all ease-in-out;\n}\n.app-header .nav-link:hover {\n color: var(--tw-topbar-item-hover-color);\n}\n.app-header .nav-link:is(.open, .show, .active, :active, :focus) {\n color: var(--tw-topbar-item-active-color);\n}\n.app-header .logo-box {\n @apply lg:hidden;\n}\n\nhtml[data-sidebar-view=mobile] .app-header .logo-box {\n @apply flex;\n}\n\nhtml {\n position: relative;\n scroll-behavior: smooth;\n}\n\nbody {\n overflow-x: hidden;\n background-color: #FBF7F3;\n font-family: var(--tw-body-font-family);\n @apply text-stone-500 font-normal text-sm leading-normal;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n @apply font-medium text-gray-700;\n}\n\ncode {\n @apply text-blue-500;\n}\n\n.text-muted {\n @apply text-gray-400;\n}\n\n::-webkit-scrollbar {\n height: 5px;\n width: 0px;\n background-color: #f1f5f9;\n}\n\n::-webkit-scrollbar-thumb {\n height: 2px;\n width: 0px;\n background-color: #cbd5e1;\n}\n\ncanvas {\n display: inherit;\n}\n\n.custom-scroll::-webkit-scrollbar {\n -webkit-appearance: none;\n}\n.custom-scroll::-webkit-scrollbar:vertical {\n width: 4px;\n}\n.custom-scroll::-webkit-scrollbar:horizontal {\n height: 4px;\n}\n.custom-scroll::-webkit-scrollbar-thumb {\n @apply rounded-lg bg-slate-300/50;\n}\n.custom-scroll::-webkit-scrollbar-track {\n @apply bg-transparent rounded-lg;\n}\n.custom-scroll::-webkit-scrollbar-corner {\n @apply bg-transparent;\n}\n\n@layer components {\n .btn {\n @apply inline-flex items-center justify-center text-center border border-transparent px-3 py-1.5 text-sm transition-all tracking-wider;\n }\n .btn.btn-lg {\n @apply px-5 py-3 text-base;\n }\n .btn.btn-sm {\n @apply px-3.5 py-1.5 text-xs;\n }\n}\n.badge {\n @apply p-[0.25em_0.4em] text-[75%] leading-none text-white flex items-center justify-center whitespace-nowrap font-semibold;\n}\n\n@layer components {\n .card {\n @apply relative bg-white border border-gray-200/80 flex flex-col break-words box-border h-fit;\n }\n .card .card-header {\n @apply py-3 px-6 border-b border-gray-200;\n }\n .card-title {\n @apply text-base font-semibold text-gray-800;\n }\n}\n@layer components {\n label {\n @apply inline-block text-sm font-semibold cursor-pointer text-gray-600;\n }\n .form-input,\n .form-textarea,\n .form-select {\n @apply font-normal rounded block w-full border-gray-200 text-sm focus:border-gray-300 \r\n focus:ring-0 bg-white;\n }\n .form-checkbox,\n .form-radio {\n @apply bg-inherit cursor-pointer border-gray-300 focus:ring-0 focus:ring-offset-0;\n }\n .form-switch {\n @apply w-9 h-5 flex items-center appearance-none bg-gray-200 border-2 border-transparent\r\n rounded-full focus:ring-0 focus:ring-offset-0 cursor-pointer transition-colors ease-in-out duration-200 checked:bg-none;\n }\n .form-switch::before {\n @apply content-[\"\"] inline-block w-4 h-4 bg-white rounded-full translate-x-0 transform transition\r\n ease-in-out checked:translate-x-full duration-200;\n }\n}\n@media print {\n .app-menu,\n .app-header,\n .footer {\n @apply hidden;\n }\n .app-content,\n body {\n padding: 0;\n margin: 0;\n }\n .card {\n box-shadow: none;\n }\n}\n.swiper-button-next,\n.swiper-button-prev {\n height: 32px;\n width: 32px;\n backdrop-filter: blur(2px);\n font-family: \"boxicons\";\n font-size: 28px;\n @apply bg-primary/20 text-primary;\n transition: all 0.3s ease;\n}\n.swiper-button-next::after,\n.swiper-button-prev::after {\n display: none;\n}\n\n.swiper-button-prev::before {\n content: \"\\ea4d\";\n}\n\n.swiper-button-next::before {\n content: \"\\ea50\";\n}\n\n.swiper-pagination-bullet {\n width: 22px;\n height: 5px;\n background-color: #fff;\n border-radius: 50px;\n @apply shadow;\n}\n.swiper-pagination-bullet .swiper-pagination-bullet-active {\n opacity: 1;\n}\n\n.dynamic-pagination .swiper-pagination-bullet {\n width: 8px;\n height: 8px;\n background-color: #fff;\n opacity: 0.5;\n transition: all 0.5s ease;\n}\n.dynamic-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {\n opacity: 1;\n width: 20px;\n}\n\n.swiper-pagination-fraction {\n color: #fff;\n font-size: 16px;\n @apply bg-zinc-900/25;\n backdrop-filter: blur(2px);\n}\n\n.pagination-custom .swiper-pagination-bullet {\n height: 25px;\n width: 25px;\n line-height: 25px;\n border-radius: 8px;\n background-color: #fff;\n opacity: 0.5;\n transition: all 0.5s ease;\n}\n.pagination-custom .swiper-pagination-bullet.swiper-pagination-bullet-active {\n @apply text-secondary;\n opacity: 1;\n}\n\n.swiper-pagination-progressbar {\n height: 6px !important;\n @apply bg-success/25;\n}\n.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n @apply bg-success;\n}\n\n.swiper-scrollbar {\n background-color: rgba(255, 255, 255, 0.35);\n backdrop-filter: blur(2px);\n padding: 1.2px;\n height: 6px !important;\n}\n.swiper-scrollbar .swiper-scrollbar-drag {\n background-color: #fff;\n}\n\n.swiper-pagination-dark .swiper-pagination-bullet {\n @apply bg-secondary;\n}\n.swiper-pagination-dark .dynamic-pagination .swiper-pagination-bullet {\n @apply bg-secondary;\n}\n.swiper-pagination-dark.pagination-custom .swiper-pagination-bullet {\n color: #fff;\n}\n.swiper-pagination-dark.pagination-custom .swiper-pagination-bullet.swiper-pagination-bullet-active {\n opacity: 1;\n}\n.swiper-pagination-dark.swiper-scrollbar {\n @apply bg-zinc-900/25;\n}\n\n[data-simplebar] {\n position: relative;\n flex-direction: column;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-content: flex-start;\n align-items: flex-start;\n}\n\n.simplebar-wrapper {\n overflow: hidden;\n width: inherit;\n height: inherit;\n max-width: inherit;\n max-height: inherit;\n}\n\n.simplebar-mask {\n direction: inherit;\n position: absolute;\n overflow: hidden;\n padding: 0;\n margin: 0;\n inset-inline-start: 0;\n top: 0;\n bottom: 0;\n inset-inline-end: 0;\n width: auto !important;\n height: auto !important;\n z-index: 0;\n}\n\n.simplebar-offset {\n direction: inherit !important;\n box-sizing: inherit !important;\n resize: none !important;\n position: absolute;\n top: 0;\n inset-inline-start: 0 !important;\n bottom: 0;\n inset-inline-end: 0 !important;\n padding: 0;\n margin: 0;\n -webkit-overflow-scrolling: touch;\n}\n\n.simplebar-content-wrapper {\n direction: inherit;\n box-sizing: border-box !important;\n position: relative;\n display: block;\n height: 100%;\n /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */\n width: auto;\n visibility: visible;\n overflow: auto;\n /* Scroll on this element otherwise element can't have a padding applied properly */\n max-width: 100%;\n /* Not required for horizontal scroll to trigger */\n max-height: 100%;\n /* Needed for vertical scroll to trigger */\n scrollbar-width: none;\n padding: 0px !important;\n}\n\n.simplebar-content-wrapper::-webkit-scrollbar,\n.simplebar-hide-scrollbar::-webkit-scrollbar {\n display: none;\n}\n\n.simplebar-content:before,\n.simplebar-content:after {\n content: \" \";\n display: table;\n}\n\n.simplebar-placeholder {\n max-height: 100%;\n max-width: 100%;\n width: 100%;\n pointer-events: none;\n}\n\n.simplebar-height-auto-observer-wrapper {\n box-sizing: inherit !important;\n height: 100%;\n width: 100%;\n max-width: 1px;\n position: relative;\n float: inset-inline-start;\n max-height: 1px;\n overflow: hidden;\n z-index: -1;\n padding: 0;\n margin: 0;\n pointer-events: none;\n flex-grow: inherit;\n flex-shrink: 0;\n flex-basis: 0;\n}\n\n.simplebar-height-auto-observer {\n box-sizing: inherit;\n display: block;\n opacity: 0;\n position: absolute;\n top: 0;\n inset-inline-start: 0;\n height: 1000%;\n width: 1000%;\n min-height: 1px;\n min-width: 1px;\n overflow: hidden;\n pointer-events: none;\n z-index: -1;\n}\n\n.simplebar-track {\n z-index: 1;\n position: absolute;\n inset-inline-end: 0;\n bottom: 0;\n pointer-events: none;\n overflow: hidden;\n}\n\n[data-simplebar].simplebar-dragging .simplebar-content {\n pointer-events: none;\n user-select: none;\n -webkit-user-select: none;\n}\n\n[data-simplebar].simplebar-dragging .simplebar-track {\n pointer-events: all;\n}\n\n.simplebar-scrollbar {\n position: absolute;\n inset-inline-end: 2px;\n width: 4px;\n min-height: 10px;\n}\n\n.simplebar-scrollbar:before {\n content: \"\";\n position: absolute;\n border-radius: 7px;\n inset-inline-start: 0;\n inset-inline-end: 0;\n opacity: 0;\n transition: opacity 0.2s linear;\n @apply bg-slate-300;\n}\n\n.simplebar-scrollbar.simplebar-visible:before {\n /* When hovered, remove all transitions from drag handle */\n opacity: 0.5;\n transition: opacity 0s linear;\n}\n\n.simplebar-track.simplebar-vertical {\n top: 0;\n width: 11px;\n}\n\n.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {\n top: 2px;\n bottom: 2px;\n}\n\n.simplebar-track.simplebar-horizontal {\n inset-inline-start: 0;\n height: 11px;\n}\n\n.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {\n height: 100%;\n inset-inline-start: 2px;\n inset-inline-end: 2px;\n}\n\n.simplebar-track.simplebar-horizontal .simplebar-scrollbar {\n inset-inline-end: auto;\n inset-inline-start: 0;\n top: 2px;\n height: 7px;\n min-height: 0;\n min-width: 10px;\n width: auto;\n}\n\n/* Rtl support */\n[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {\n inset-inline-end: auto;\n inset-inline-start: 0;\n}\n\n.simplebar-dummy-scrollbar-size {\n direction: rtl;\n position: fixed;\n opacity: 0;\n visibility: hidden;\n height: 500px;\n width: 500px;\n overflow-y: hidden;\n overflow-x: scroll;\n}\n\n.simplebar-hide-scrollbar {\n position: fixed;\n inset-inline-start: 0;\n visibility: hidden;\n overflow-y: scroll;\n scrollbar-width: none;\n}\n\n[data-simplebar-lg] .simplebar-scrollbar {\n inset-inline-end: 1px;\n width: 10px;\n}\n\n[data-simplebar-primary] .simplebar-scrollbar:before {\n @apply bg-primary;\n}\n\n.apex-charts {\n min-height: 10px !important;\n}\n\n.apexcharts-canvas {\n margin: 0 auto;\n}\n.apexcharts-canvas .apexcharts-text,\n.apexcharts-canvas .apexcharts-text.apexcharts-xaxis-label,\n.apexcharts-canvas .apexcharts-text.apexcharts-yaxis-label,\n.apexcharts-canvas .apexcharts-title-text {\n @apply fill-gray-400;\n}\n.apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-light,\n.apexcharts-canvas .apexcharts-xaxistooltip.apexcharts-theme-light {\n @apply shadow-none border border-slate-950/75 bg-slate-950/75 text-white;\n}\n.apexcharts-canvas .apexcharts-xaxistooltip-bottom:after,\n.apexcharts-canvas .apexcharts-xaxistooltip-bottom:before {\n @apply border-b-slate-950/75;\n}\n.apexcharts-canvas .apexcharts-tooltip-series-group.apexcharts-active {\n @apply text-white;\n}\n.apexcharts-canvas .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {\n @apply border-slate-950 bg-slate-950;\n}\n\n.apexcharts-legend-series {\n @apply font-semibold;\n}\n\n.apexcharts-legend-text {\n @apply text-gray-300;\n font-size: 13px !important;\n vertical-align: middle;\n}\n\n.apexcharts-legend-marker {\n vertical-align: middle;\n margin-right: 5px !important;\n}\n\n.apexcharts-pie-label {\n @apply fill-white;\n}\n\n.apex-charts text,\n.apexcharts-tooltip-title,\n.apexcharts-tooltip-text,\n.apexcharts-xaxistooltip-text,\n.apexcharts-yaxis .text,\n.apexcharts-xaxis .text,\n.apexcharts-datalabels text,\n.apexcharts-title-text,\n.apexcharts-legend-text,\n.apexcharts-subtitle-text,\n.apexcharts-tooltip {\n font-family: var(--tw-body-font-family) !important;\n}\n\n.morris-chart text {\n font-family: var(--tw-body-font-family) !important;\n}\n\n.morris-hover {\n position: absolute;\n z-index: 10;\n}\n.morris-hover.morris-default-style {\n font-size: 12px;\n text-align: center;\n border-radius: 5px;\n padding: 10px 12px;\n font-family: var(--tw-body-font-family);\n @apply bg-dark text-white;\n}\n.morris-hover.morris-default-style .morris-hover-row-label {\n font-weight: bold;\n margin: 0.25em 0;\n font-family: var(--tw-body-font-family);\n}\n.morris-hover.morris-default-style .morris-hover-point {\n white-space: nowrap;\n margin: 0.1em 0;\n color: white;\n}\n\n.dropzone {\n @apply min-h-[230px] bg-white rounded-md border-2 border-dashed border-gray-200;\n}\n\n.ql-editor {\n text-align: left;\n}\n.ql-editor ol,\n.ql-editor ul {\n padding-left: 1.5em;\n padding-right: 0;\n}\n.ql-editor li:not(.ql-direction-rtl)::before {\n margin-left: -1.5em;\n margin-right: 0.3em;\n text-align: right;\n}\n\n.ql-toolbar.ql-snow {\n @apply border border-gray-200;\n}\n\n.ql-container.ql-snow {\n @apply rounded-t border border-gray-200;\n}\n\n.ql-bubble {\n @apply border border-gray-200 rounded;\n}\n\n.ql-toolbar span {\n outline: none !important;\n @apply text-gray-800;\n}\n.ql-toolbar span:hover {\n @apply text-primary;\n}\n.ql-toolbar.ql-snow {\n @apply border rounded-t;\n}\n.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {\n border-color: transparent;\n}\n.ql-toolbar.ql-snow .ql-picker-options {\n @apply shadow rounded;\n}\n\n.ql-snow .ql-stroke,\n.ql-snow .ql-script,\n.ql-snow .ql-strike svg {\n @apply stroke-gray-500;\n}\n.ql-snow .ql-fill {\n @apply text-slate-900;\n}\n.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {\n right: 0;\n left: auto;\n}\n.ql-snow .ql-picker.ql-expanded .ql-picker-label {\n @apply text-slate-900;\n}\n\n.ql-snow .ql-picker-options {\n @apply bg-white border border-gray-200;\n}\n\n.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {\n @apply border border-gray-200;\n}\n\n.gmaps,\n.gmaps-panaroma {\n height: 300px;\n border-radius: 3px;\n @apply bg-gray-100;\n}\n\n.gmaps-overlay {\n display: block;\n text-align: center;\n color: #fff;\n font-size: 16px;\n line-height: 40px;\n border-radius: 4px;\n padding: 10px 20px;\n @apply bg-primary;\n}\n\n.gmaps-overlay_arrow {\n left: 50%;\n margin-left: -16px;\n width: 0;\n height: 0;\n position: absolute;\n}\n.gmaps-overlay_arrow.above {\n bottom: -15px;\n border-left: 16px solid transparent;\n border-right: 16px solid transparent;\n @apply border-t-primary border-[16px];\n}\n.gmaps-overlay_arrow.below {\n top: -15px;\n border-left: 16px solid transparent;\n border-right: 16px solid transparent;\n @apply border-b-primary border-[16px];\n}\n\n.fc-view {\n margin-top: 30px;\n}\n\n.fc-toolbar {\n margin: 6px 0 5px 0 !important;\n}\n.fc-toolbar h2 {\n font-size: 1.25rem !important;\n line-height: 1.875rem;\n text-transform: uppercase;\n}\n\n.fc-day-grid-event .fc-time {\n @apply font-semibold;\n}\n\nth.fc-day-header {\n padding: 0.5rem 0;\n}\n\n.fc-day {\n background: transparent;\n}\n\n.fc th.fc-widget-header {\n @apply bg-gray-100 font-semibold;\n font-size: 13px;\n line-height: 20px;\n padding: 10px 0;\n text-transform: uppercase;\n}\n.fc .fc-daygrid-body,\n.fc .fc-scrollgrid-section-body table,\n.fc .fc-scrollgrid-section-footer table {\n width: 100% !important;\n}\n\n.fc-state-down,\n.fc-state-active,\n.fc-state-disabled {\n @apply bg-primary text-white;\n text-shadow: none;\n}\n\n.fc .fc-toolbar {\n flex-wrap: wrap;\n gap: 12px;\n justify-content: space-between;\n}\n\n.fc-event {\n border-radius: 2px;\n border: none;\n cursor: move;\n font-size: 0.8125rem;\n margin: 5px 7px;\n padding: 5px 5px;\n text-align: center;\n @apply text-white;\n}\n\n@screen md {\n .fc-toolbar .fc-toolbar-chunk {\n margin: 6px 0;\n }\n .fc-toolbar .fc-left,\n .fc-toolbar .fc-right,\n .fc-toolbar .fc-center {\n float: none;\n display: block;\n clear: both;\n margin: 10px 0;\n }\n}\n.fc-list-item-title,\n.fc-list-item-time {\n @apply text-white;\n}\n\n.fc-theme-standard .fc-scrollgrid,\n.fc-theme-standard td,\n.fc-theme-standard th {\n @apply border border-solid border-gray-200;\n}\n\n/*!\n * Waves v0.7.6\n * http://fian.my.id/Waves \n * \n * Copyright 2014-2018 Alfiana E. Sibuea and other contributors \n * Released under the MIT license \n * https://github.com/fians/Waves/blob/master/LICENSE */\n.waves-effect {\n position: relative;\n cursor: pointer;\n display: inline-flex;\n overflow: hidden;\n user-select: none;\n -webkit-tap-highlight-color: transparent;\n}\n\n.waves-effect .waves-ripple {\n position: absolute;\n border-radius: 50%;\n width: 100px;\n height: 100px;\n margin-top: -50px;\n margin-left: -50px;\n opacity: 0;\n background: rgba(0, 0, 0, 0.2);\n background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);\n transition: all 0.5s ease-out;\n transition-property: transform, opacity;\n transform: scale(0) translate(0, 0);\n pointer-events: none;\n}\n\n.waves-effect.waves-light .waves-ripple {\n background: rgba(255, 255, 255, 0.4);\n background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);\n}\n\n.waves-effect.waves-classic .waves-ripple {\n background: rgba(0, 0, 0, 0.2);\n}\n\n.waves-effect.waves-classic.waves-light .waves-ripple {\n background: rgba(255, 255, 255, 0.4);\n}\n\n.waves-notransition {\n transition: none !important;\n}\n\n.waves-button,\n.waves-circle {\n transform: translateZ(0);\n mask-image: radial-gradient(circle, white 100%, black 100%);\n}\n\n.waves-button,\n.waves-button:hover,\n.waves-button:visited,\n.waves-button-input {\n white-space: nowrap;\n vertical-align: middle;\n cursor: pointer;\n border: none;\n outline: none;\n color: inherit;\n background-color: rgba(0, 0, 0, 0);\n font-size: 1em;\n line-height: 1em;\n text-align: center;\n text-decoration: none;\n z-index: 1;\n}\n\n.waves-button {\n padding: 0.85em 1.1em;\n border-radius: 0.2em;\n}\n\n.waves-button-input {\n margin: 0;\n padding: 0.85em 1.1em;\n}\n\n.waves-input-wrapper {\n border-radius: 0.2em;\n vertical-align: bottom;\n}\n\n.waves-input-wrapper.waves-button {\n padding: 0;\n}\n\n.waves-input-wrapper .waves-button-input {\n position: relative;\n top: 0;\n left: 0;\n z-index: 1;\n}\n\n.waves-circle {\n text-align: center;\n width: 2.5em;\n height: 2.5em;\n line-height: 2.5em;\n border-radius: 50%;\n}\n\n.waves-float {\n mask-image: none;\n box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);\n transition: all 300ms;\n}\n\n.waves-float:active {\n box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);\n}\n\n.waves-block {\n display: block;\n}","//\r\n// buttons.scss\r\n//\r\n\r\n@layer components {\r\n .btn {\r\n @apply inline-flex items-center justify-center text-center border border-transparent px-3 py-1.5 text-sm transition-all tracking-wider;\r\n\r\n &.btn-lg {\r\n @apply px-5 py-3 text-base;\r\n }\r\n\r\n &.btn-sm {\r\n @apply px-3.5 py-1.5 text-xs;\r\n }\r\n }\r\n}","//\r\n// _card.scss\r\n//\r\n\r\n@layer components {\r\n\r\n .card {\r\n @apply relative bg-white border border-gray-200/80 flex flex-col break-words box-border h-fit;\r\n\r\n .card-header {\r\n @apply py-3 px-6 border-b border-gray-200;\r\n }\r\n }\r\n\r\n .card-title {\r\n @apply text-base font-semibold text-gray-800;\r\n }\r\n}","//\r\n// forms.scss\r\n//\r\n\r\n\r\n@layer components {\r\n label {\r\n @apply inline-block text-sm font-semibold cursor-pointer text-gray-600;\r\n }\r\n\r\n .form-input,\r\n .form-textarea,\r\n .form-select {\r\n @apply font-normal rounded block w-full border-gray-200 text-sm focus:border-gray-300 \r\n focus:ring-0 bg-white;\r\n }\r\n\r\n .form-checkbox,\r\n .form-radio {\r\n @apply bg-inherit cursor-pointer border-gray-300 focus:ring-0 focus:ring-offset-0;\r\n }\r\n\r\n .form-switch {\r\n @apply w-9 h-5 flex items-center appearance-none bg-gray-200 border-2 border-transparent\r\n rounded-full focus:ring-0 focus:ring-offset-0 cursor-pointer transition-colors ease-in-out duration-200 checked:bg-none;\r\n\r\n &::before{\r\n @apply content-[''] inline-block w-4 h-4 bg-white rounded-full translate-x-0 transform transition\r\n ease-in-out checked:translate-x-full duration-200;\r\n }\r\n }\r\n}\r\n","//\r\n// _topbar.scss\r\n//\r\n\r\n\r\n.app-wrapper {\r\n display: flex;\r\n}\r\n\r\n// Page Content\r\n.app-content {\r\n display: flex;\r\n flex-direction: column;\r\n width: 100%;\r\n min-block-size: 100vh;\r\n}\r\n\r\n// Logo Box\r\n.logo-box {\r\n height: 70px;\r\n color: $sidebar-item-color;\r\n @apply sticky top-0 z-50 flex items-center justify-center transition-all duration-300;\r\n\r\n\r\n .logo-light {\r\n display: none;\r\n }\r\n\r\n .logo-dark {\r\n display: block;\r\n }\r\n}\r\n\r\nhtml[data-sidebar-color=\"dark\"] {\r\n .app-menu {\r\n .logo-box {\r\n .logo-light {\r\n display: block;\r\n }\r\n\r\n .logo-dark {\r\n display: none;\r\n }\r\n }\r\n }\r\n}","//\n// _variables.scss\n//\n\n$body-color: var(--tw-body-color);\n$body-font-family: var(--tw-body-font-family);\n\n$sidebar-bg: var(--tw-sidebar-bg);\n$sidebar-item-color: var(--tw-sidebar-item-color);\n$sidebar-item-hover-bg: var(--tw-sidebar-item-hover-bg);\n$sidebar-item-hover-color: var(--tw-sidebar-item-hover-color);\n$sidebar-item-active-color: var(--tw-sidebar-item-active-color);\n$sidebar-item-active-bg: var(--tw-sidebar-item-active-bg);\n\n$topbar-bg: var(--tw-topbar-bg);\n$topbar-item-color: var(--tw-topbar-item-color);\n$topbar-item-active-color: var(--tw-topbar-item-active-color);\n$topbar-item-hover-bg: var(--tw-topbar-item-hover-bg);\n$topbar-item-hover-color: var(--tw-topbar-item-hover-color);\n$topbar-item-active-bg: var(--tw-topbar-item-active-bg);\n$topbar-item-active-color: var(--tw-topbar-item-active-color);","//\n// _sidebar.scss\n//\n\n.app-menu {\n width: 260px;\n min-width: 260px;\n @apply sticky card rounded-none border-e border-gray-200 top-0 h-screen z-40 transition-all duration-300;\n\n [data-simplebar] {\n height: calc(100% - 70px);\n }\n}\n\n.menu {\n display: flex;\n flex-direction: column;\n gap: 6px;\n padding: 6px 0;\n\n .menu-title {\n color: $sidebar-item-color;\n font-size: calc(1rem * 0.8);\n padding: 0.5rem calc(1rem + 1.25rem);\n @apply font-medium opacity-75 cursor-default tracking-widest whitespace-nowrap;\n }\n\n >.menu-item {\n padding: 0 1.25rem;\n }\n\n .menu-item {\n display: flex;\n flex-direction: column;\n gap: 6px; \n\n .menu-link {\n color: $sidebar-item-color;\n gap: 0.625rem;\n padding: 0.5rem 1rem;\n @apply relative flex items-center transition-all whitespace-nowrap bg-transparent;\n\n >.menu-icon {\n width: 1.25rem;\n height: 1.25rem;\n font-size: 1.25rem;\n line-height: 1.25rem;\n @apply transition-all;\n\n svg {\n width: 1.25rem;\n height: 1.25rem;\n stroke: inherit;\n }\n }\n\n >.menu-text {\n font-size: 1rem;\n line-height: 1rem;\n @apply whitespace-nowrap transition-all;\n }\n\n >.menu-arrow {\n font-size: 1rem;\n line-height: 1rem;\n @apply font-black transition-all ms-auto rtl:rotate-180;\n \n &::before {\n content: \"\\eb6d\";\n font-family: \"unicons-line\";\n }\n }\n\n >.menu-dot {\n width: 1.25rem;\n @apply flex justify-center relative transition-all;\n \n\n &::before {\n content: \"\";\n background-color: $sidebar-item-color;\n height: 1.5px;\n @apply flex w-1.5 justify-center absolute transition-all;\n }\n } \n\n &:is(.open) {\n >.menu-arrow {\n transform: rotate(90deg);\n } \n } \n\n &:is(:hover, .open, :focus) {\n color: $sidebar-item-hover-color;\n }\n\n &:is(.active, :active) {\n color: $sidebar-item-active-color;\n }\n } \n }\n\n >.menu-item {\n >.menu-link {\n &:is(:hover, .open, :focus) {\n background-color: $sidebar-item-hover-bg;\n }\n\n &:is(.active, :active) {\n background-color: $sidebar-item-active-bg;\n }\n }\n }\n\n .sub-menu {\n @apply w-full overflow-hidden transition-all duration-300;\n \n >:not([hidden])~:not([hidden]) {\n margin-top: 6px;\n }\n }\n}\n\n.fullscreen-enable {\n [data-toggle=\"fullscreen\"]{\n .ph-arrows-out::before {\n content: \"\\e961\";\n }\n }\n}\n\n// Hidden Sidebar View\nhtml[data-sidebar-view=\"hidden\"] {\n .app-menu {\n margin-inline-start: calc(260px * -1);\n }\n}\n\n// Mobile View Sidebar\nhtml[data-sidebar-view=\"mobile\"] {\n .app-menu {\n margin-inline-start: calc(260px * -1);\n @apply fixed opacity-0 border-none;\n }\n\n &.sidebar-open {\n .app-menu {\n margin-inline-start: 0;\n @apply opacity-100 z-50;\n }\n }\n}","//\n// _profilebar.scss\n//\n\n\n// Fullscreen exit icon\n.fullscreen-enable {\n .uil-focus::before {\n content: \"\\eb8d\";\n }\n}\n\n.profile-menu {\n @apply card rounded-none sticky top-0 h-screen z-40 transition-all duration-300 w-32 min-w-[8rem];\n}\n\n// Hidden View\nhtml[data-profile-view=\"hidden\"] {\n .profile-menu {\n @apply -me-32;\n }\n}\n\n// Mobile View\nhtml[data-profile-view=\"mobile\"] {\n .profile-menu {\n @apply -me-32 fixed opacity-0 end-0 border-none;\n }\n\n &.profile-open {\n .profile-menu {\n @apply opacity-100 z-50 me-0;\n }\n }\n}","//\r\n// _topbar.scss\r\n//\r\n\r\n.app-header {\r\n @apply sticky card flex-row rounded-none top-0 border-b border-gray-200;\r\n z-index: 35;\r\n height: 70px;\r\n\r\n .nav-link {\r\n color: $topbar-item-color;\r\n @apply rounded-full bg-white border border-gray-200 transition-all ease-in-out;\r\n\r\n &:hover {\r\n color: $topbar-item-hover-color;\r\n // background-color: $topbar-item-hover-bg;\r\n }\r\n\r\n &:is(.open, .show, .active, :active, :focus) {\r\n color: $topbar-item-active-color;\r\n // background-color: $topbar-item-active-bg;\r\n }\r\n }\r\n\r\n .logo-box {\r\n @apply lg:hidden;\r\n }\r\n}\r\n\r\n\r\n// Full Size Sidebar\r\nhtml[data-sidebar-view=\"mobile\"] {\r\n .app-header {\r\n .logo-box {\r\n @apply flex;\r\n }\r\n }\r\n}","//\n// reboot.scss\n//\n\nhtml {\n position: relative;\n scroll-behavior: smooth;\n}\n\nbody {\n overflow-x: hidden;\n background-color: #FBF7F3;\n font-family: $body-font-family;\n @apply text-stone-500 font-normal text-sm leading-normal;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n @apply font-medium text-gray-700;\n}\n\ncode {\n @apply text-blue-500;\n}\n\n.text-muted {\n @apply text-gray-400;\n}\n\n::-webkit-scrollbar {\n height: 5px;\n width: 0px;\n background-color: #f1f5f9;\n}\n\n::-webkit-scrollbar-thumb {\n height: 2px;\n width: 0px;\n background-color: #cbd5e1;\n}\n \n\ncanvas {\n display: inherit;\n}\n\n\n// custom scroll\n.custom-scroll {\n &::-webkit-scrollbar {\n -webkit-appearance: none;\n }\n\n &::-webkit-scrollbar:vertical {\n width: 4px;\n }\n\n &::-webkit-scrollbar:horizontal {\n height: 4px;\n }\n\n &::-webkit-scrollbar-thumb {\n @apply rounded-lg bg-slate-300/50;\n }\n\n &::-webkit-scrollbar-track {\n @apply bg-transparent rounded-lg;\n }\n\n &::-webkit-scrollbar-corner {\n @apply bg-transparent;\n }\n}","// \n// _badge.scss\n// \n\n.badge {\n @apply p-[0.25em_0.4em] text-[75%] leading-none text-white flex items-center justify-center whitespace-nowrap font-semibold;\n}","//\r\n// print.scss\r\n//\r\n\r\n@media print {\r\n\r\n .app-menu,\r\n .app-header,\r\n .footer {\r\n @apply hidden;\r\n }\r\n\r\n .app-content,\r\n body {\r\n padding: 0;\r\n margin: 0;\r\n }\r\n\r\n .card {\r\n box-shadow: none;\r\n }\r\n}","//\r\n// _swiper.scss\r\n//\r\n\r\n.swiper-button-next,\r\n.swiper-button-prev {\r\n height: 32px;\r\n width: 32px;\r\n backdrop-filter: blur(2px);\r\n font-family: \"boxicons\";\r\n font-size: 28px;\r\n @apply bg-primary/20 text-primary;\r\n transition: all 0.3s ease;\r\n\r\n &::after {\r\n display: none;\r\n }\r\n}\r\n\r\n.swiper-button-prev {\r\n &::before {\r\n content: \"\\ea4d\";\r\n }\r\n}\r\n\r\n.swiper-button-next {\r\n &::before {\r\n content: \"\\ea50\";\r\n }\r\n}\r\n\r\n.swiper-pagination-bullet {\r\n width: 22px;\r\n height: 5px;\r\n background-color: #fff;\r\n border-radius: 50px;\r\n @apply shadow;\r\n\r\n .swiper-pagination-bullet-active {\r\n opacity: 1;\r\n }\r\n}\r\n\r\n.dynamic-pagination {\r\n .swiper-pagination-bullet {\r\n width: 8px;\r\n height: 8px;\r\n background-color: #fff;\r\n opacity: 0.5;\r\n transition: all 0.5s ease;\r\n\r\n &.swiper-pagination-bullet-active {\r\n opacity: 1;\r\n width: 20px;\r\n }\r\n }\r\n}\r\n\r\n.swiper-pagination-fraction {\r\n color: #fff;\r\n font-size: 16px;\r\n @apply bg-zinc-900/25;\r\n backdrop-filter: blur(2px);\r\n}\r\n\r\n\r\n.pagination-custom {\r\n .swiper-pagination-bullet {\r\n height: 25px;\r\n width: 25px;\r\n line-height: 25px;\r\n border-radius: 8px;\r\n background-color: #fff;\r\n opacity: 0.5;\r\n transition: all 0.5s ease;\r\n\r\n &.swiper-pagination-bullet-active {\r\n @apply text-secondary;\r\n opacity: 1;\r\n }\r\n }\r\n}\r\n\r\n.swiper-pagination-progressbar {\r\n height: 6px !important;\r\n @apply bg-success/25;\r\n\r\n .swiper-pagination-progressbar-fill {\r\n @apply bg-success;\r\n }\r\n}\r\n\r\n\r\n.swiper-scrollbar {\r\n background-color: rgba(#fff, 0.35);\r\n backdrop-filter: blur(2px);\r\n padding: 1.2px;\r\n height: 6px !important;\r\n\r\n .swiper-scrollbar-drag {\r\n background-color: #fff;\r\n }\r\n}\r\n\r\n.swiper-pagination-dark {\r\n .swiper-pagination-bullet {\r\n @apply bg-secondary;\r\n }\r\n\r\n .dynamic-pagination {\r\n .swiper-pagination-bullet {\r\n @apply bg-secondary;\r\n }\r\n }\r\n\r\n &.pagination-custom {\r\n .swiper-pagination-bullet {\r\n color: #fff;\r\n\r\n &.swiper-pagination-bullet-active {\r\n opacity: 1;\r\n }\r\n }\r\n }\r\n\r\n &.swiper-scrollbar {\r\n @apply bg-zinc-900/25;\r\n }\r\n}","//\r\n// _custom-scrollbar.scss\r\n//\r\n\r\n[data-simplebar] {\r\n position: relative;\r\n flex-direction: column;\r\n flex-wrap: wrap;\r\n justify-content: flex-start;\r\n align-content: flex-start;\r\n align-items: flex-start;\r\n}\r\n\r\n.simplebar-wrapper {\r\n overflow: hidden;\r\n width: inherit;\r\n height: inherit;\r\n max-width: inherit;\r\n max-height: inherit;\r\n}\r\n\r\n.simplebar-mask {\r\n direction: inherit;\r\n position: absolute;\r\n overflow: hidden;\r\n padding: 0;\r\n margin: 0;\r\n inset-inline-start: 0;\r\n top: 0;\r\n bottom: 0;\r\n inset-inline-end: 0;\r\n width: auto !important;\r\n height: auto !important;\r\n z-index: 0;\r\n}\r\n\r\n.simplebar-offset {\r\n direction: inherit !important;\r\n box-sizing: inherit !important;\r\n resize: none !important;\r\n position: absolute;\r\n top: 0;\r\n inset-inline-start: 0 !important;\r\n bottom: 0;\r\n inset-inline-end: 0 !important;\r\n padding: 0;\r\n margin: 0;\r\n -webkit-overflow-scrolling: touch;\r\n}\r\n\r\n.simplebar-content-wrapper {\r\n direction: inherit;\r\n box-sizing: border-box !important;\r\n position: relative;\r\n display: block;\r\n height: 100%;\r\n /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */\r\n width: auto;\r\n visibility: visible;\r\n overflow: auto;\r\n /* Scroll on this element otherwise element can't have a padding applied properly */\r\n max-width: 100%;\r\n /* Not required for horizontal scroll to trigger */\r\n max-height: 100%;\r\n /* Needed for vertical scroll to trigger */\r\n scrollbar-width: none;\r\n padding: 0px !important;\r\n}\r\n\r\n.simplebar-content-wrapper::-webkit-scrollbar,\r\n.simplebar-hide-scrollbar::-webkit-scrollbar {\r\n display: none;\r\n}\r\n\r\n.simplebar-content:before,\r\n.simplebar-content:after {\r\n content: ' ';\r\n display: table;\r\n}\r\n\r\n.simplebar-placeholder {\r\n max-height: 100%;\r\n max-width: 100%;\r\n width: 100%;\r\n pointer-events: none;\r\n}\r\n\r\n.simplebar-height-auto-observer-wrapper {\r\n box-sizing: inherit !important;\r\n height: 100%;\r\n width: 100%;\r\n max-width: 1px;\r\n position: relative;\r\n float: inset-inline-start;\r\n max-height: 1px;\r\n overflow: hidden;\r\n z-index: -1;\r\n padding: 0;\r\n margin: 0;\r\n pointer-events: none;\r\n flex-grow: inherit;\r\n flex-shrink: 0;\r\n flex-basis: 0;\r\n}\r\n\r\n.simplebar-height-auto-observer {\r\n box-sizing: inherit;\r\n display: block;\r\n opacity: 0;\r\n position: absolute;\r\n top: 0;\r\n inset-inline-start: 0;\r\n height: 1000%;\r\n width: 1000%;\r\n min-height: 1px;\r\n min-width: 1px;\r\n overflow: hidden;\r\n pointer-events: none;\r\n z-index: -1;\r\n}\r\n\r\n.simplebar-track {\r\n z-index: 1;\r\n position: absolute;\r\n inset-inline-end: 0;\r\n bottom: 0;\r\n pointer-events: none;\r\n overflow: hidden;\r\n}\r\n\r\n[data-simplebar].simplebar-dragging .simplebar-content {\r\n pointer-events: none;\r\n user-select: none;\r\n -webkit-user-select: none;\r\n}\r\n\r\n[data-simplebar].simplebar-dragging .simplebar-track {\r\n pointer-events: all;\r\n}\r\n\r\n.simplebar-scrollbar {\r\n position: absolute;\r\n inset-inline-end: 2px;\r\n width: 4px;\r\n min-height: 10px;\r\n}\r\n\r\n.simplebar-scrollbar:before {\r\n content: '';\r\n position: absolute;\r\n border-radius: 7px;\r\n inset-inline-start: 0;\r\n inset-inline-end: 0;\r\n opacity: 0;\r\n transition: opacity 0.2s linear;\r\n @apply bg-slate-300;\r\n}\r\n\r\n.simplebar-scrollbar.simplebar-visible:before {\r\n /* When hovered, remove all transitions from drag handle */\r\n opacity: 0.5;\r\n transition: opacity 0s linear;\r\n}\r\n\r\n.simplebar-track.simplebar-vertical {\r\n top: 0;\r\n width: 11px;\r\n}\r\n\r\n.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {\r\n top: 2px;\r\n bottom: 2px;\r\n}\r\n\r\n.simplebar-track.simplebar-horizontal {\r\n inset-inline-start: 0;\r\n height: 11px;\r\n}\r\n\r\n.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {\r\n height: 100%;\r\n inset-inline-start: 2px;\r\n inset-inline-end: 2px;\r\n}\r\n\r\n.simplebar-track.simplebar-horizontal .simplebar-scrollbar {\r\n inset-inline-end: auto;\r\n inset-inline-start: 0;\r\n top: 2px;\r\n height: 7px;\r\n min-height: 0;\r\n min-width: 10px;\r\n width: auto;\r\n}\r\n\r\n/* Rtl support */\r\n[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {\r\n inset-inline-end: auto;\r\n inset-inline-start: 0;\r\n}\r\n\r\n.simplebar-dummy-scrollbar-size {\r\n direction: rtl;\r\n position: fixed;\r\n opacity: 0;\r\n visibility: hidden;\r\n height: 500px;\r\n width: 500px;\r\n overflow-y: hidden;\r\n overflow-x: scroll;\r\n}\r\n\r\n.simplebar-hide-scrollbar {\r\n position: fixed;\r\n inset-inline-start: 0;\r\n visibility: hidden;\r\n overflow-y: scroll;\r\n scrollbar-width: none;\r\n}\r\n\r\n\r\n// Scroll Size\r\n[data-simplebar-lg] {\r\n .simplebar-scrollbar {\r\n inset-inline-end: 1px;\r\n width: 10px;\r\n }\r\n}\r\n\r\n[data-simplebar-primary] {\r\n .simplebar-scrollbar {\r\n &:before {\r\n @apply bg-primary;\r\n }\r\n }\r\n}\r\n\r\n","//\r\n// _apexcharts.scss\r\n//\r\n\r\n.apex-charts {\r\n min-height: 10px !important;\r\n}\r\n\r\n.apexcharts-canvas {\r\n margin: 0 auto;\r\n\r\n .apexcharts-text,\r\n .apexcharts-text.apexcharts-xaxis-label,\r\n .apexcharts-text.apexcharts-yaxis-label,\r\n .apexcharts-title-text {\r\n @apply fill-gray-400;\r\n }\r\n\r\n .apexcharts-tooltip.apexcharts-theme-light,\r\n .apexcharts-xaxistooltip.apexcharts-theme-light {\r\n @apply shadow-none border border-slate-950/75 bg-slate-950/75 text-white;\r\n }\r\n\r\n .apexcharts-xaxistooltip-bottom:after,\r\n .apexcharts-xaxistooltip-bottom:before {\r\n @apply border-b-slate-950/75;\r\n }\r\n\r\n .apexcharts-tooltip-series-group.apexcharts-active {\r\n @apply text-white;\r\n }\r\n\r\n .apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {\r\n @apply border-slate-950 bg-slate-950;\r\n }\r\n}\r\n\r\n.apexcharts-legend-series {\r\n @apply font-semibold;\r\n}\r\n\r\n.apexcharts-legend-text {\r\n @apply text-gray-300;\r\n font-size: 13px !important;\r\n vertical-align: middle;\r\n}\r\n\r\n.apexcharts-legend-marker {\r\n vertical-align: middle;\r\n margin-right: 5px !important;\r\n}\r\n\r\n.apexcharts-pie-label {\r\n @apply fill-white;\r\n}\r\n\r\n.apex-charts text,\r\n.apexcharts-tooltip-title,\r\n.apexcharts-tooltip-text,\r\n.apexcharts-xaxistooltip-text,\r\n.apexcharts-yaxis .text,\r\n.apexcharts-xaxis .text,\r\n.apexcharts-datalabels text,\r\n.apexcharts-title-text,\r\n.apexcharts-legend-text,\r\n.apexcharts-subtitle-text,\r\n.apexcharts-tooltip {\r\n font-family: $body-font-family !important;\r\n}\r\n\r\n//\r\n\r\n//\r\n// morris.scss\r\n//\r\n\r\n.morris-chart {\r\n text {\r\n font-family: $body-font-family !important;\r\n }\r\n}\r\n.morris-hover {\r\n position: absolute;\r\n z-index: 10;\r\n\r\n &.morris-default-style {\r\n font-size: 12px;\r\n text-align: center;\r\n border-radius: 5px;\r\n padding: 10px 12px;\r\n font-family: $body-font-family;\r\n @apply bg-dark text-white;\r\n\r\n .morris-hover-row-label {\r\n font-weight: bold;\r\n margin: 0.25em 0;\r\n font-family: $body-font-family;\r\n }\r\n\r\n .morris-hover-point {\r\n white-space: nowrap;\r\n margin: 0.1em 0;\r\n color: white;\r\n }\r\n }\r\n}\r\n","//\r\n// Dropzone\r\n//\r\n\r\n.dropzone {\r\n @apply min-h-[230px] bg-white rounded-md border-2 border-dashed border-gray-200;\r\n}","//\r\n// _quilljs.scss\r\n//\r\n\r\n.ql-editor {\r\n text-align: left;\r\n\r\n ol,\r\n ul {\r\n padding-left: 1.5em;\r\n padding-right: 0;\r\n }\r\n\r\n li:not(.ql-direction-rtl)::before {\r\n margin-left: -1.5em;\r\n margin-right: 0.3em;\r\n text-align: right;\r\n }\r\n}\r\n\r\n.ql-toolbar {\r\n &.ql-snow {\r\n @apply border border-gray-200;\r\n }\r\n}\r\n\r\n.ql-container {\r\n &.ql-snow {\r\n @apply rounded-t border border-gray-200;\r\n }\r\n}\r\n\r\n.ql-bubble {\r\n @apply border border-gray-200 rounded;\r\n}\r\n\r\n.ql-toolbar {\r\n span {\r\n outline: none !important;\r\n @apply text-gray-800;\r\n\r\n &:hover {\r\n @apply text-primary;\r\n }\r\n }\r\n\r\n &.ql-snow {\r\n @apply border rounded-t;\r\n\r\n .ql-picker.ql-expanded {\r\n .ql-picker-label {\r\n border-color: transparent;\r\n }\r\n }\r\n\r\n .ql-picker-options {\r\n @apply shadow rounded;\r\n }\r\n }\r\n}\r\n\r\n.ql-snow {\r\n .ql-stroke,\r\n .ql-script,\r\n .ql-strike svg {\r\n @apply stroke-gray-500;\r\n }\r\n\r\n .ql-fill {\r\n @apply text-slate-900;\r\n }\r\n\r\n .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) {\r\n svg {\r\n right: 0;\r\n left: auto;\r\n }\r\n }\r\n\r\n .ql-picker {\r\n &.ql-expanded .ql-picker-label {\r\n @apply text-slate-900;\r\n }\r\n }\r\n}\r\n\r\n.ql-snow {\r\n .ql-picker-options {\r\n @apply bg-white border border-gray-200;\r\n }\r\n}\r\n\r\n.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {\r\n @apply border border-gray-200;\r\n}\r\n","//\r\n// _google-map.scss\r\n//\r\n\r\n.gmaps,\r\n.gmaps-panaroma {\r\n height: 300px;\r\n border-radius: 3px;\r\n @apply bg-gray-100;\r\n}\r\n\r\n.gmaps-overlay {\r\n display: block;\r\n text-align: center;\r\n color: #fff;\r\n font-size: 16px;\r\n line-height: 40px;\r\n border-radius: 4px;\r\n padding: 10px 20px;\r\n @apply bg-primary;\r\n}\r\n\r\n.gmaps-overlay_arrow {\r\n left: 50%;\r\n margin-left: -16px;\r\n width: 0;\r\n height: 0;\r\n position: absolute;\r\n\r\n &.above {\r\n bottom: -15px;\r\n border-left: 16px solid transparent;\r\n border-right: 16px solid transparent;\r\n @apply border-t-primary border-[16px];\r\n }\r\n\r\n &.below {\r\n top: -15px;\r\n border-left: 16px solid transparent;\r\n border-right: 16px solid transparent;\r\n @apply border-b-primary border-[16px];\r\n }\r\n\r\n}","//\r\n// calendar.scss\r\n//\r\n\r\n.fc-view {\r\n margin-top: 30px;\r\n}\r\n\r\n.fc-toolbar {\r\n margin: 6px 0 5px 0 !important;\r\n\r\n h2 {\r\n font-size: 1.25rem !important;\r\n line-height: 1.875rem;\r\n text-transform: uppercase;\r\n }\r\n}\r\n\r\n.fc-day-grid-event {\r\n .fc-time {\r\n @apply font-semibold;\r\n }\r\n}\r\n\r\nth.fc-day-header {\r\n padding: 0.5rem 0;\r\n}\r\n\r\n.fc-day {\r\n background: transparent;\r\n}\r\n\r\n\r\n.fc {\r\n th.fc-widget-header {\r\n @apply bg-gray-100 font-semibold;\r\n font-size: 13px;\r\n line-height: 20px;\r\n padding: 10px 0;\r\n text-transform: uppercase;\r\n }\r\n\r\n .fc-daygrid-body,\r\n .fc-scrollgrid-section-body table,\r\n .fc-scrollgrid-section-footer table {\r\n width: 100% !important;\r\n }\r\n}\r\n\r\n\r\n\r\n\r\n.fc-state-down,\r\n.fc-state-active,\r\n.fc-state-disabled {\r\n @apply bg-primary text-white;\r\n text-shadow: none;\r\n}\r\n\r\n.fc .fc-toolbar {\r\n flex-wrap: wrap;\r\n gap: 12px;\r\n justify-content: space-between;\r\n}\r\n\r\n.fc-event {\r\n border-radius: 2px;\r\n border: none;\r\n cursor: move;\r\n font-size: 0.8125rem;\r\n margin: 5px 7px;\r\n padding: 5px 5px;\r\n text-align: center;\r\n @apply text-white;\r\n}\r\n\r\n@screen md {\r\n .fc-toolbar {\r\n\r\n .fc-toolbar-chunk {\r\n margin: 6px 0;\r\n }\r\n\r\n .fc-left,\r\n .fc-right,\r\n .fc-center {\r\n float: none;\r\n display: block;\r\n clear: both;\r\n margin: 10px 0;\r\n }\r\n }\r\n}\r\n\r\n.fc-list-item-title,\r\n.fc-list-item-time {\r\n @apply text-white;\r\n}\r\n\r\n.fc-theme-standard .fc-scrollgrid,\r\n.fc-theme-standard td,\r\n.fc-theme-standard th {\r\n @apply border border-solid border-gray-200;\r\n}","/*!\r\n * Waves v0.7.6\r\n * http://fian.my.id/Waves \r\n * \r\n * Copyright 2014-2018 Alfiana E. Sibuea and other contributors \r\n * Released under the MIT license \r\n * https://github.com/fians/Waves/blob/master/LICENSE */\r\n \r\n.waves-effect {\r\n position: relative;\r\n cursor: pointer;\r\n display: inline-flex;\r\n overflow: hidden;\r\n user-select: none;\r\n -webkit-tap-highlight-color: transparent;\r\n}\r\n\r\n.waves-effect .waves-ripple {\r\n position: absolute;\r\n border-radius: 50%;\r\n width: 100px;\r\n height: 100px;\r\n margin-top: -50px;\r\n margin-left: -50px;\r\n opacity: 0;\r\n background: rgba(black, 0.2);\r\n background: radial-gradient(rgba(black, 0.2) 0, rgba(black, 0.3) 40%, rgba(black, 0.4) 50%, rgba(black, 0.5) 60%, rgba(white, 0) 70%);\r\n transition: all 0.5s ease-out;\r\n transition-property: transform, opacity;\r\n transform: scale(0) translate(0, 0);\r\n pointer-events: none;\r\n}\r\n\r\n.waves-effect.waves-light .waves-ripple {\r\n background: rgba(white, 0.4);\r\n background: radial-gradient(rgba(white, 0.2) 0, rgba(white, 0.3) 40%, rgba(white, 0.4) 50%, rgba(white, 0.5) 60%, rgba(white, 0) 70%);\r\n}\r\n\r\n.waves-effect.waves-classic .waves-ripple {\r\n background: rgba(black, 0.2);\r\n}\r\n\r\n.waves-effect.waves-classic.waves-light .waves-ripple {\r\n background: rgba(white, 0.4);\r\n}\r\n\r\n.waves-notransition {\r\n transition: none !important;\r\n}\r\n\r\n.waves-button,\r\n.waves-circle {\r\n transform: translateZ(0);\r\n mask-image: radial-gradient(circle, white 100%, black 100%);\r\n}\r\n\r\n.waves-button,\r\n.waves-button:hover,\r\n.waves-button:visited,\r\n.waves-button-input {\r\n white-space: nowrap;\r\n vertical-align: middle;\r\n cursor: pointer;\r\n border: none;\r\n outline: none;\r\n color: inherit;\r\n background-color: rgba(black, 0);\r\n font-size: 1em;\r\n line-height: 1em;\r\n text-align: center;\r\n text-decoration: none;\r\n z-index: 1;\r\n}\r\n\r\n.waves-button {\r\n padding: 0.85em 1.1em;\r\n border-radius: 0.2em;\r\n}\r\n\r\n.waves-button-input {\r\n margin: 0;\r\n padding: 0.85em 1.1em;\r\n}\r\n\r\n.waves-input-wrapper {\r\n border-radius: 0.2em;\r\n vertical-align: bottom;\r\n}\r\n\r\n.waves-input-wrapper.waves-button {\r\n padding: 0;\r\n}\r\n\r\n.waves-input-wrapper .waves-button-input {\r\n position: relative;\r\n top: 0;\r\n left: 0;\r\n z-index: 1;\r\n}\r\n\r\n.waves-circle {\r\n text-align: center;\r\n width: 2.5em;\r\n height: 2.5em;\r\n line-height: 2.5em;\r\n border-radius: 50%;\r\n}\r\n\r\n.waves-float {\r\n mask-image: none;\r\n box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);\r\n transition: all 300ms;\r\n}\r\n\r\n.waves-float:active {\r\n box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);\r\n}\r\n\r\n.waves-block {\r\n display: block;\r\n}",null]} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/fonts/fa-brands-400.ttf b/dj_backend_server/web/static/assets/fonts/fa-brands-400.ttf new file mode 100644 index 00000000..30f55b74 Binary files /dev/null and b/dj_backend_server/web/static/assets/fonts/fa-brands-400.ttf differ diff --git a/dj_backend_server/web/static/assets/fonts/fa-brands-400.woff2 b/dj_backend_server/web/static/assets/fonts/fa-brands-400.woff2 new file mode 100644 index 00000000..8a480d9b Binary files /dev/null and b/dj_backend_server/web/static/assets/fonts/fa-brands-400.woff2 differ diff --git a/dj_backend_server/web/static/assets/fonts/fa-regular-400.ttf b/dj_backend_server/web/static/assets/fonts/fa-regular-400.ttf new file mode 100644 index 00000000..c79589d8 Binary files /dev/null and b/dj_backend_server/web/static/assets/fonts/fa-regular-400.ttf differ diff --git a/dj_backend_server/web/static/assets/fonts/fa-regular-400.woff2 b/dj_backend_server/web/static/assets/fonts/fa-regular-400.woff2 new file mode 100644 index 00000000..059a94e2 Binary files /dev/null and b/dj_backend_server/web/static/assets/fonts/fa-regular-400.woff2 differ diff --git a/dj_backend_server/web/static/assets/fonts/fa-solid-900.ttf b/dj_backend_server/web/static/assets/fonts/fa-solid-900.ttf new file mode 100644 index 00000000..e479fb29 Binary files /dev/null and b/dj_backend_server/web/static/assets/fonts/fa-solid-900.ttf differ diff --git a/dj_backend_server/web/static/assets/fonts/fa-solid-900.woff2 b/dj_backend_server/web/static/assets/fonts/fa-solid-900.woff2 new file mode 100644 index 00000000..88b0367a Binary files /dev/null and b/dj_backend_server/web/static/assets/fonts/fa-solid-900.woff2 differ diff --git a/dj_backend_server/web/static/assets/fonts/fa-v4compatibility.ttf b/dj_backend_server/web/static/assets/fonts/fa-v4compatibility.ttf new file mode 100644 index 00000000..ba6cb258 Binary files /dev/null and b/dj_backend_server/web/static/assets/fonts/fa-v4compatibility.ttf differ diff --git a/dj_backend_server/web/static/assets/fonts/fa-v4compatibility.woff2 b/dj_backend_server/web/static/assets/fonts/fa-v4compatibility.woff2 new file mode 100644 index 00000000..23b1c47b Binary files /dev/null and b/dj_backend_server/web/static/assets/fonts/fa-v4compatibility.woff2 differ diff --git a/dj_backend_server/web/static/assets/images/404-error.svg b/dj_backend_server/web/static/assets/images/404-error.svg new file mode 100644 index 00000000..63168757 --- /dev/null +++ b/dj_backend_server/web/static/assets/images/404-error.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/images/500-error.svg b/dj_backend_server/web/static/assets/images/500-error.svg new file mode 100644 index 00000000..ffb8a134 --- /dev/null +++ b/dj_backend_server/web/static/assets/images/500-error.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/images/brands/bitbucket.png b/dj_backend_server/web/static/assets/images/brands/bitbucket.png new file mode 100644 index 00000000..e917c3d2 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/brands/bitbucket.png differ diff --git a/dj_backend_server/web/static/assets/images/brands/dribbble.png b/dj_backend_server/web/static/assets/images/brands/dribbble.png new file mode 100644 index 00000000..0a5f68a1 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/brands/dribbble.png differ diff --git a/dj_backend_server/web/static/assets/images/brands/dropbox.png b/dj_backend_server/web/static/assets/images/brands/dropbox.png new file mode 100644 index 00000000..f0e43396 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/brands/dropbox.png differ diff --git a/dj_backend_server/web/static/assets/images/brands/g-suite.png b/dj_backend_server/web/static/assets/images/brands/g-suite.png new file mode 100644 index 00000000..5d45d1d7 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/brands/g-suite.png differ diff --git a/dj_backend_server/web/static/assets/images/brands/github.png b/dj_backend_server/web/static/assets/images/brands/github.png new file mode 100644 index 00000000..4265f923 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/brands/github.png differ diff --git a/dj_backend_server/web/static/assets/images/brands/instagram.png b/dj_backend_server/web/static/assets/images/brands/instagram.png new file mode 100644 index 00000000..609c1efb Binary files /dev/null and b/dj_backend_server/web/static/assets/images/brands/instagram.png differ diff --git a/dj_backend_server/web/static/assets/images/brands/messenger.png b/dj_backend_server/web/static/assets/images/brands/messenger.png new file mode 100644 index 00000000..6c539024 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/brands/messenger.png differ diff --git a/dj_backend_server/web/static/assets/images/brands/slack.png b/dj_backend_server/web/static/assets/images/brands/slack.png new file mode 100644 index 00000000..2a71eb28 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/brands/slack.png differ diff --git a/dj_backend_server/web/static/assets/images/favicon.ico b/dj_backend_server/web/static/assets/images/favicon.ico new file mode 100644 index 00000000..599198fa Binary files /dev/null and b/dj_backend_server/web/static/assets/images/favicon.ico differ diff --git a/dj_backend_server/web/static/assets/images/flags/french.jpg b/dj_backend_server/web/static/assets/images/flags/french.jpg new file mode 100644 index 00000000..bbf15b52 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/flags/french.jpg differ diff --git a/dj_backend_server/web/static/assets/images/flags/germany.jpg b/dj_backend_server/web/static/assets/images/flags/germany.jpg new file mode 100644 index 00000000..11714d8c Binary files /dev/null and b/dj_backend_server/web/static/assets/images/flags/germany.jpg differ diff --git a/dj_backend_server/web/static/assets/images/flags/italy.jpg b/dj_backend_server/web/static/assets/images/flags/italy.jpg new file mode 100644 index 00000000..ebbea89f Binary files /dev/null and b/dj_backend_server/web/static/assets/images/flags/italy.jpg differ diff --git a/dj_backend_server/web/static/assets/images/flags/russia.jpg b/dj_backend_server/web/static/assets/images/flags/russia.jpg new file mode 100644 index 00000000..c129593a Binary files /dev/null and b/dj_backend_server/web/static/assets/images/flags/russia.jpg differ diff --git a/dj_backend_server/web/static/assets/images/flags/spain.jpg b/dj_backend_server/web/static/assets/images/flags/spain.jpg new file mode 100644 index 00000000..1a8dca7c Binary files /dev/null and b/dj_backend_server/web/static/assets/images/flags/spain.jpg differ diff --git a/dj_backend_server/web/static/assets/images/flags/us.jpg b/dj_backend_server/web/static/assets/images/flags/us.jpg new file mode 100644 index 00000000..48ea6507 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/flags/us.jpg differ diff --git a/dj_backend_server/web/static/assets/images/logo-dark.png b/dj_backend_server/web/static/assets/images/logo-dark.png new file mode 100644 index 00000000..f7edd914 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/logo-dark.png differ diff --git a/dj_backend_server/web/static/assets/images/logo-light.png b/dj_backend_server/web/static/assets/images/logo-light.png new file mode 100644 index 00000000..ba5fa39b Binary files /dev/null and b/dj_backend_server/web/static/assets/images/logo-light.png differ diff --git a/dj_backend_server/web/static/assets/images/logo-sm.png b/dj_backend_server/web/static/assets/images/logo-sm.png new file mode 100644 index 00000000..7a836c05 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/logo-sm.png differ diff --git a/dj_backend_server/web/static/assets/images/maintenance.svg b/dj_backend_server/web/static/assets/images/maintenance.svg new file mode 100644 index 00000000..21e9f09e --- /dev/null +++ b/dj_backend_server/web/static/assets/images/maintenance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/images/users/avatar-1.jpg b/dj_backend_server/web/static/assets/images/users/avatar-1.jpg new file mode 100644 index 00000000..89b191b1 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/users/avatar-1.jpg differ diff --git a/dj_backend_server/web/static/assets/images/users/avatar-10.jpg b/dj_backend_server/web/static/assets/images/users/avatar-10.jpg new file mode 100644 index 00000000..42714f96 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/users/avatar-10.jpg differ diff --git a/dj_backend_server/web/static/assets/images/users/avatar-2.jpg b/dj_backend_server/web/static/assets/images/users/avatar-2.jpg new file mode 100644 index 00000000..7deb5ff9 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/users/avatar-2.jpg differ diff --git a/dj_backend_server/web/static/assets/images/users/avatar-3.jpg b/dj_backend_server/web/static/assets/images/users/avatar-3.jpg new file mode 100644 index 00000000..c47c3fc1 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/users/avatar-3.jpg differ diff --git a/dj_backend_server/web/static/assets/images/users/avatar-4.jpg b/dj_backend_server/web/static/assets/images/users/avatar-4.jpg new file mode 100644 index 00000000..28841fc5 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/users/avatar-4.jpg differ diff --git a/dj_backend_server/web/static/assets/images/users/avatar-5.jpg b/dj_backend_server/web/static/assets/images/users/avatar-5.jpg new file mode 100644 index 00000000..13287069 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/users/avatar-5.jpg differ diff --git a/dj_backend_server/web/static/assets/images/users/avatar-6.jpg b/dj_backend_server/web/static/assets/images/users/avatar-6.jpg new file mode 100644 index 00000000..45924858 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/users/avatar-6.jpg differ diff --git a/dj_backend_server/web/static/assets/images/users/avatar-7.jpg b/dj_backend_server/web/static/assets/images/users/avatar-7.jpg new file mode 100644 index 00000000..85e429f4 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/users/avatar-7.jpg differ diff --git a/dj_backend_server/web/static/assets/images/users/avatar-8.jpg b/dj_backend_server/web/static/assets/images/users/avatar-8.jpg new file mode 100644 index 00000000..8116e283 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/users/avatar-8.jpg differ diff --git a/dj_backend_server/web/static/assets/images/users/avatar-9.jpg b/dj_backend_server/web/static/assets/images/users/avatar-9.jpg new file mode 100644 index 00000000..234525d1 Binary files /dev/null and b/dj_backend_server/web/static/assets/images/users/avatar-9.jpg differ diff --git a/dj_backend_server/web/static/assets/js/app.js b/dj_backend_server/web/static/assets/js/app.js new file mode 100644 index 00000000..fb9db564 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/app.js @@ -0,0 +1,198 @@ +/** +* Theme: Lunoz - Responsive Tailwind Admin Dashboard +* Author: Myra Studio +* Module/App: App js +*/ + +class App { + + constructor() { + this.html = document.getElementsByTagName('html')[0] + this.config = {}; + this.defaultConfig = window.config; + } + + initComponents() { + Waves.init() + + $(function () { + $('[data-plugin="knob"]').knob(); + }); + } + + initSidenav() { + var self = this; + var pageUrl = window.location.href.split(/[?#]/)[0]; + document.querySelectorAll('ul.menu a.menu-link').forEach((element) => { + if (element.href === pageUrl) { + element.classList.add('active'); + let parentMenu = element.parentElement.parentElement.parentElement; + if (parentMenu && parentMenu.classList.contains('menu-item')) { + const collapseElement = parentMenu.querySelector('[data-fc-type="collapse"]'); + if (collapseElement && frost != null) { + const collapse = frost.Collapse.getInstanceOrCreate(collapseElement); + collapse.show(); + } + } + } + }) + + setTimeout(function () { + var activatedItem = document.querySelector('ul.menu .active'); + if (activatedItem != null) { + var simplebarContent = document.querySelector('.app-menu .simplebar-content-wrapper'); + var offset = activatedItem.offsetTop - 300; + if (simplebarContent && offset > 100) { + scrollTo(simplebarContent, offset, 600); + } + } + }, 200); + + // scrollTo (Sidenav Active Menu) + function easeInOutQuad(t, b, c, d) { + t /= d / 2; + if (t < 1) return c / 2 * t * t + b; + t--; + return -c / 2 * (t * (t - 2) - 1) + b; + } + + function scrollTo(element, to, duration) { + var start = element.scrollTop, change = to - start, currentTime = 0, increment = 20; + var animateScroll = function () { + currentTime += increment; + var val = easeInOutQuad(currentTime, start, change, duration); + element.scrollTop = val; + if (currentTime < duration) { + setTimeout(animateScroll, increment); + } + }; + animateScroll(); + } + } + + reverseQuery(element, query) { + while (element) { + if (element.parentElement) { + if (element.parentElement.querySelector(query) === element) return element + } + element = element.parentElement; + } + return null; + } + + + initSwitchListener() { + var self = this; + // Menu Toggle Button ( Placed in Topbar) + var html = document.getElementsByTagName("html")[0]; + var menuToggleBtn = document.querySelector('#button-toggle-menu'); + if (menuToggleBtn) { + menuToggleBtn.addEventListener('click', function () { + var view = self.html.getAttribute('data-sidebar-view'); + + if (view === 'mobile') { + self.showBackdrop(); + self.html.classList.toggle('sidebar-open'); + } else { + if (view === 'hidden') { + html.setAttribute("data-sidebar-view", "default"); + } else { + html.setAttribute("data-sidebar-view", "hidden"); + } + } + }); + } + + + // Menu Toggle Button ( Placed in Topbar) + var html = document.getElementsByTagName("html")[0]; + var profileToggleBtn = document.querySelector('#button-toggle-profile'); + if (profileToggleBtn) { + profileToggleBtn.addEventListener('click', function () { + var view = self.html.getAttribute('data-profile-view'); + + if (view === 'mobile') { + self.showBackdrop(); + self.html.classList.toggle('profile-open'); + } else { + if (view === 'hidden') { + html.setAttribute("data-profile-view", "default"); + } else { + html.setAttribute("data-profile-view", "hidden"); + } + } + }); + } + } + + + + showBackdrop() { + const backdrop = document.createElement('div'); + backdrop.id = 'backdrop'; + backdrop.classList = 'transition-all fixed inset-0 z-40 bg-gray-900 bg-opacity-50'; + document.body.appendChild(backdrop); + + if (document.getElementsByTagName('html')[0]) { + document.body.style.overflow = "hidden"; + if (window.innerWidth > 1140) { + document.body.style.paddingRight = "17px"; + } + } + + const self = this + backdrop.addEventListener('click', function (e) { + self.html.classList.remove('sidebar-open'); + self.html.classList.remove('profile-open'); + self.hideBackdrop(); + }) + } + + hideBackdrop() { + var backdrop = document.getElementById('backdrop'); + if (backdrop) { + document.body.removeChild(backdrop); + document.body.style.overflow = null; + document.body.style.paddingRight = null; + } + } + + // Topbar Fullscreen Button + initfullScreenListener() { + var self = this; + var fullScreenBtn = document.querySelector('[data-toggle="fullscreen"]'); + + if (fullScreenBtn) { + fullScreenBtn.addEventListener('click', function (e) { + e.preventDefault(); + document.body.classList.toggle('fullscreen-enable') + if (!document.fullscreenElement && !document.mozFullScreenElement && !document.webkitFullscreenElement) { + if (document.documentElement.requestFullscreen) { + document.documentElement.requestFullscreen(); + } else if (document.documentElement.mozRequestFullScreen) { + document.documentElement.mozRequestFullScreen(); + } else if (document.documentElement.webkitRequestFullscreen) { + document.documentElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT); + } + } else { + if (document.cancelFullScreen) { + document.cancelFullScreen(); + } else if (document.mozCancelFullScreen) { + document.mozCancelFullScreen(); + } else if (document.webkitCancelFullScreen) { + document.webkitCancelFullScreen(); + } + } + }); + } + } + + init() { + this.initComponents(); + this.initSidenav(); + this.initSwitchListener(); + this.initfullScreenListener(); + } +} + +new App().init(); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/app.min.js b/dj_backend_server/web/static/assets/js/app.min.js new file mode 100644 index 00000000..25d5d870 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/app.min.js @@ -0,0 +1 @@ +class App{constructor(){this.html=document.getElementsByTagName("html")[0],this.config={},this.defaultConfig=window.config}initComponents(){Waves.init(),$(function(){$('[data-plugin="knob"]').knob()})}initSidenav(){var t=window.location.href.split(/[?#]/)[0];document.querySelectorAll("ul.menu a.menu-link").forEach(e=>{e.href===t&&(e.classList.add("active"),e=e.parentElement.parentElement.parentElement)&&e.classList.contains("menu-item")&&(e=e.querySelector('[data-fc-type="collapse"]'))&&null!=frost&&frost.Collapse.getInstanceOrCreate(e).show()}),setTimeout(function(){var e,l,o,i,c,r,t=document.querySelector("ul.menu .active");function u(){e=r+=20,t=i,n=c;var e,t,n=(e/=o/2)<1?n/2*e*e+t:-n/2*(--e*(e-2)-1)+t;l.scrollTop=n,r this.adjustLayout()); + } + + init() { + this.adjustLayout(); + this.initWindowSize(); + } +} + +new Config().init(); diff --git a/dj_backend_server/web/static/assets/js/head.min.js b/dj_backend_server/web/static/assets/js/head.min.js new file mode 100644 index 00000000..591d329a --- /dev/null +++ b/dj_backend_server/web/static/assets/js/head.min.js @@ -0,0 +1 @@ +class Config{adjustLayout(){var i=document.getElementsByTagName("html")[0];i.setAttribute("data-sidebar-view",window.innerWidth<=1024?"mobile":"default"),i.setAttribute("data-profile-view",window.innerWidth<=1024?"mobile":"default")}initWindowSize(){window.addEventListener("resize",()=>this.adjustLayout())}init(){this.adjustLayout(),this.initWindowSize()}}(new Config).init(); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/calendar.js b/dj_backend_server/web/static/assets/js/pages/calendar.js new file mode 100644 index 00000000..68a48e43 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/calendar.js @@ -0,0 +1,200 @@ +/* +Theme: TailFox - Responsive Tailwind Admin Dashboard +Author: Myra Studio +Website: https://myrathemes.com/ +Contact: myrathemes@gmail.com +File: Calendar js +*/ + +class Calendar { + + constructor() { + this.body = document.body; + this.modal = frost.Modal.getInstanceOrCreate(document.getElementById('event-modal'), { backdrop: 'static' }); + this.calendar = document.getElementById('calendar'); + this.formEvent = document.getElementById('forms-event'); + this.btnNewEvent = document.getElementById('btn-new-event'); + this.btnDeleteEvent = document.getElementById('btn-delete-event'); + this.btnSaveEvent = document.getElementById('btn-save-event'); + this.modalTitle = document.getElementById('modal-title'); + this.calendarObj = null; + this.selectedEvent = null; + this.newEventData = null; + } + + onEventClick(info) { + this.formEvent?.reset(); + this.formEvent.classList.remove('was-validated'); + this.newEventData = null; + this.btnDeleteEvent.style.display = "block"; + this.modalTitle.text = ('Edit Event'); + this.modal.show(); + this.selectedEvent = info.event; + document.getElementById('event-title').value = this.selectedEvent.title; + document.getElementById('event-category').value = (this.selectedEvent.classNames[0]); + } + + onSelect(info) { + this.formEvent?.reset(); + this.formEvent?.classList.remove('was-validated'); + this.selectedEvent = null; + this.newEventData = info; + this.btnDeleteEvent.style.display = "none"; + this.modalTitle.text = ('Add New Event'); + this.modal.show(); + this.calendarObj.unselect(); + } + + init() { + /* Initialize the calendar */ + const today = new Date(); + const self = this; + const externalEventContainerEl = document.getElementById('external-events'); + + new FullCalendar.Draggable(externalEventContainerEl, { + itemSelector: '.external-event', + eventData: function (eventEl) { + return { + title: eventEl.innerText, + classNames: eventEl.getAttribute('data-class') + }; + } + }); + + const defaultEvents = [{ + title: 'Interview - Backend Engineer', + start: today, + end: today, + className: 'bg-primary' + }, + { + title: 'Meeting with CT Team', + start: new Date(Date.now() + 13000000), + end: today, + className: 'bg-warning' + }, + { + title: 'Meeting with Mr. Shield', + start: new Date(Date.now() + 308000000), + end: new Date(Date.now() + 338000000), + className: 'bg-info' + }, + { + title: 'Interview - Frontend Engineer', + start: new Date(Date.now() + 60570000), + end: new Date(Date.now() + 153000000), + className: 'bg-secondary' + }, + { + title: 'Phone Screen - Frontend Engineer', + start: new Date(Date.now() + 168000000), + className: 'bg-success' + }, + { + title: 'Buy Design Assets', + start: new Date(Date.now() + 330000000), + end: new Date(Date.now() + 330800000), + className: 'bg-primary', + }, + { + title: 'Setup Github Repository', + start: new Date(Date.now() + 1008000000), + end: new Date(Date.now() + 1108000000), + className: 'bg-danger' + }, + { + title: 'Meeting with Mr. Shreyu', + start: new Date(Date.now() + 2508000000), + end: new Date(Date.now() + 2508000000), + className: 'bg-dark' + }]; + + // cal - init + self.calendarObj = new FullCalendar.Calendar(self.calendar, { + + plugins: [], + slotDuration: '00:30:00', /* If we want to split day time each 15minutes */ + slotMinTime: '07:00:00', + slotMaxTime: '19:00:00', + themeSystem: 'default', + buttonText: { + today: 'Today', + month: 'Month', + week: 'Week', + day: 'Day', + list: 'List', + prev: 'Prev', + next: 'Next' + }, + initialView: 'dayGridMonth', + handleWindowResize: true, + height: window.innerHeight - 300, + headerToolbar: { + left: 'prev,next today', + center: 'title', + right: 'dayGridMonth,timeGridWeek,timeGridDay,listMonth' + }, + initialEvents: defaultEvents, + editable: true, + droppable: true, // this allows things to be dropped onto the calendar !!! + // dayMaxEventRows: false, // allow "more" link when too many events + selectable: true, + dateClick: function (info) { + self.onSelect(info); + }, + eventClick: function (info) { + self.onEventClick(info); + } + }); + + self.calendarObj.render(); + + // on new event button click + self.btnNewEvent.addEventListener('click', function (e) { + self.onSelect({ + date: new Date(), + allDay: true + }); + }); + + // save event + self.formEvent?.addEventListener('submit', function (e) { + e.preventDefault(); + const form = self.formEvent; + + // validation + if (form.checkValidity()) { + if (self.selectedEvent) { + self.selectedEvent.setProp('title', document.getElementById('event-title').value); + self.selectedEvent.setProp('classNames', document.getElementById('event-category').value) + + } else { + const eventData = { + title: document.getElementById('event-title').value, + start: self.newEventData.date, + allDay: self.newEventData.allDay, + className: document.getElementById('event-category').value + }; + self.calendarObj.addEvent(eventData); + } + self.modal.hide(); + } else { + e.stopPropagation(); + form.classList.add('was-validated'); + } + }); + + // delete event + self.btnDeleteEvent.addEventListener('click', function (e) { + if (self.selectedEvent) { + self.selectedEvent.remove(); + self.selectedEvent = null; + self.modal.hide(); + } + }); + } + +} +document.addEventListener('DOMContentLoaded', function (e) { + new Calendar().init(); +}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/calendar.min.js b/dj_backend_server/web/static/assets/js/pages/calendar.min.js new file mode 100644 index 00000000..c58fc73e --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/calendar.min.js @@ -0,0 +1 @@ +class Calendar{constructor(){this.body=document.body,this.modal=frost.Modal.getInstanceOrCreate(document.getElementById("event-modal"),{backdrop:"static"}),this.calendar=document.getElementById("calendar"),this.formEvent=document.getElementById("forms-event"),this.btnNewEvent=document.getElementById("btn-new-event"),this.btnDeleteEvent=document.getElementById("btn-delete-event"),this.btnSaveEvent=document.getElementById("btn-save-event"),this.modalTitle=document.getElementById("modal-title"),this.calendarObj=null,this.selectedEvent=null,this.newEventData=null}onEventClick(e){this.formEvent?.reset(),this.formEvent.classList.remove("was-validated"),this.newEventData=null,this.btnDeleteEvent.style.display="block",this.modalTitle.text="Edit Event",this.modal.show(),this.selectedEvent=e.event,document.getElementById("event-title").value=this.selectedEvent.title,document.getElementById("event-category").value=this.selectedEvent.classNames[0]}onSelect(e){this.formEvent?.reset(),this.formEvent?.classList.remove("was-validated"),this.selectedEvent=null,this.newEventData=e,this.btnDeleteEvent.style.display="none",this.modalTitle.text="Add New Event",this.modal.show(),this.calendarObj.unselect()}init(){var e=new Date;const a=this;var t=document.getElementById("external-events"),t=(new FullCalendar.Draggable(t,{itemSelector:".external-event",eventData:function(e){return{title:e.innerText,classNames:e.getAttribute("data-class")}}}),[{title:"Interview - Backend Engineer",start:e,end:e,className:"bg-primary"},{title:"Meeting with CT Team",start:new Date(Date.now()+13e6),end:e,className:"bg-warning"},{title:"Meeting with Mr. Shield",start:new Date(Date.now()+308e6),end:new Date(Date.now()+338e6),className:"bg-info"},{title:"Interview - Frontend Engineer",start:new Date(Date.now()+6057e4),end:new Date(Date.now()+153e6),className:"bg-secondary"},{title:"Phone Screen - Frontend Engineer",start:new Date(Date.now()+168e6),className:"bg-success"},{title:"Buy Design Assets",start:new Date(Date.now()+33e7),end:new Date(Date.now()+3308e5),className:"bg-primary"},{title:"Setup Github Repository",start:new Date(Date.now()+1008e6),end:new Date(Date.now()+1108e6),className:"bg-danger"},{title:"Meeting with Mr. Shreyu",start:new Date(Date.now()+2508e6),end:new Date(Date.now()+2508e6),className:"bg-dark"}]);a.calendarObj=new FullCalendar.Calendar(a.calendar,{plugins:[],slotDuration:"00:30:00",slotMinTime:"07:00:00",slotMaxTime:"19:00:00",themeSystem:"default",buttonText:{today:"Today",month:"Month",week:"Week",day:"Day",list:"List",prev:"Prev",next:"Next"},initialView:"dayGridMonth",handleWindowResize:!0,height:window.innerHeight-300,headerToolbar:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay,listMonth"},initialEvents:t,editable:!0,droppable:!0,selectable:!0,dateClick:function(e){a.onSelect(e)},eventClick:function(e){a.onEventClick(e)}}),a.calendarObj.render(),a.btnNewEvent.addEventListener("click",function(e){a.onSelect({date:new Date,allDay:!0})}),a.formEvent?.addEventListener("submit",function(e){e.preventDefault();var t,n=a.formEvent;n.checkValidity()?(a.selectedEvent?(a.selectedEvent.setProp("title",document.getElementById("event-title").value),a.selectedEvent.setProp("classNames",document.getElementById("event-category").value)):(t={title:document.getElementById("event-title").value,start:a.newEventData.date,allDay:a.newEventData.allDay,className:document.getElementById("event-category").value},a.calendarObj.addEvent(t)),a.modal.hide()):(e.stopPropagation(),n.classList.add("was-validated"))}),a.btnDeleteEvent.addEventListener("click",function(e){a.selectedEvent&&(a.selectedEvent.remove(),a.selectedEvent=null,a.modal.hide())})}}document.addEventListener("DOMContentLoaded",function(e){(new Calendar).init()}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/charts-apex.js b/dj_backend_server/web/static/assets/js/pages/charts-apex.js new file mode 100644 index 00000000..85325393 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/charts-apex.js @@ -0,0 +1,658 @@ +/* +Template Name: TailFox - Responsive Tailwind Admin Dashboard +Author: Myra Studio +Website: https://myrathemes.com/ +Contact: myrathemes@gmail.com +File: Apex Chart +*/ + +var options = { + chart: { + height: 380, + type: 'line', + zoom: { + enabled: false + }, + toolbar: { + show: false + } + }, + colors: ['#556ee6', '#34c38f'], + dataLabels: { + enabled: false, + }, + stroke: { + width: [3, 3], + curve: 'straight' + }, + series: [{ + name: "High - 2018", + data: [26, 24, 32, 36, 33, 31, 33] + }, + { + name: "Low - 2018", + data: [14, 11, 16, 12, 17, 13, 12] + } + ], + title: { + text: 'Average High & Low Temperature', + align: 'left', + style: { + fontWeight: '500', + }, + }, + grid: { + row: { + colors: ['transparent', 'transparent'], // takes an array which will be repeated on columns + opacity: 0.2 + }, + borderColor: '#f1f1f1' + }, + markers: { + style: 'inverted', + size: 6 + }, + xaxis: { + categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'], + title: { + text: 'Month' + } + }, + yaxis: { + title: { + text: 'Temperature' + }, + min: 5, + max: 40 + }, + legend: { + position: 'top', + horizontalAlign: 'right', + floating: true, + offsetY: -25, + offsetX: -5 + }, + responsive: [{ + breakpoint: 600, + options: { + chart: { + toolbar: { + show: false + } + }, + legend: { + show: false + }, + } + }] +} + +var chart = new ApexCharts( + document.querySelector("#line_chart_datalabel"), + options +); + +chart.render(); + + +// line chart datalabel + +var options = { + chart: { + height: 380, + type: 'line', + zoom: { + enabled: false + }, + toolbar: { + show: false, + } + }, + colors: ['#556ee6', '#f46a6a', '#34c38f'], + dataLabels: { + enabled: false + }, + stroke: { + width: [3, 4, 3], + curve: 'straight', + dashArray: [0, 8, 5] + }, + series: [{ + name: "Session Duration", + data: [45, 52, 38, 24, 33, 26, 21, 20, 6, 8, 15, 10] + }, + { + name: "Page Views", + data: [36, 42, 60, 42, 13, 18, 29, 37, 36, 51, 32, 35] + }, + { + name: 'Total Visits', + data: [89, 56, 74, 98, 72, 38, 64, 46, 84, 58, 46, 49] + } + ], + title: { + text: 'Page Statistics', + align: 'left', + style: { + fontWeight: '500', + }, + }, + markers: { + size: 0, + + hover: { + sizeOffset: 6 + } + }, + xaxis: { + categories: ['01 Jan', '02 Jan', '03 Jan', '04 Jan', '05 Jan', '06 Jan', '07 Jan', '08 Jan', '09 Jan', + '10 Jan', '11 Jan', '12 Jan' + ], + }, + tooltip: { + y: [{ + title: { + formatter: function (val) { + return val + " (mins)" + } + } + }, { + title: { + formatter: function (val) { + return val + " per session" + } + } + }, { + title: { + formatter: function (val) { + return val; + } + } + }] + }, + grid: { + borderColor: '#f1f1f1', + } +} + +var chart = new ApexCharts( + document.querySelector("#line_chart_dashed"), + options +); + +chart.render(); + +// spline_area + +var options = { + chart: { + height: 350, + type: 'area', + toolbar: { + show: false, + } + }, + dataLabels: { + enabled: false + }, + stroke: { + curve: 'smooth', + width: 3, + }, + series: [{ + name: 'series1', + data: [34, 40, 28, 52, 42, 109, 100] + }, { + name: 'series2', + data: [32, 60, 34, 46, 34, 52, 41] + }], + colors: ['#556ee6', '#34c38f'], + xaxis: { + type: 'datetime', + categories: ["2018-09-19T00:00:00", "2018-09-19T01:30:00", "2018-09-19T02:30:00", "2018-09-19T03:30:00", "2018-09-19T04:30:00", "2018-09-19T05:30:00", "2018-09-19T06:30:00"], + }, + grid: { + borderColor: '#f1f1f1', + }, + tooltip: { + x: { + format: 'dd/MM/yy HH:mm' + }, + } +} + +var chart = new ApexCharts( + document.querySelector("#spline_area"), + options +); + +chart.render(); + +// column chart + +var options = { + chart: { + height: 350, + type: 'bar', + toolbar: { + show: false, + } + }, + plotOptions: { + bar: { + horizontal: false, + columnWidth: '45%', + endingShape: 'rounded' + }, + }, + dataLabels: { + enabled: false + }, + stroke: { + show: true, + width: 2, + colors: ['transparent'] + }, + series: [{ + name: 'Net Profit', + data: [46, 57, 59, 54, 62, 58, 64, 60, 66] + }, { + name: 'Revenue', + data: [74, 83, 102, 97, 86, 106, 93, 114, 94] + }, { + name: 'Free Cash Flow', + data: [37, 42, 38, 26, 47, 50, 54, 55, 43] + }], + colors: ['#34c38f', '#556ee6', '#f46a6a'], + xaxis: { + categories: ['Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct'], + }, + yaxis: { + title: { + text: '$ (thousands)', + style: { + fontWeight: '500', + }, + } + }, + grid: { + borderColor: '#f1f1f1', + }, + fill: { + opacity: 1 + + }, + tooltip: { + y: { + formatter: function (val) { + return "$ " + val + " thousands" + } + } + } +} + +var chart = new ApexCharts( + document.querySelector("#column_chart"), + options +); + +chart.render(); + + +// column chart with datalabels + +var options = { + chart: { + height: 350, + type: 'bar', + toolbar: { + show: false, + } + }, + plotOptions: { + bar: { + dataLabels: { + position: 'top', // top, center, bottom + }, + } + }, + dataLabels: { + enabled: true, + formatter: function (val) { + return val + "%"; + }, + offsetY: -22, + style: { + fontSize: '12px', + colors: ["#304758"] + } + }, + series: [{ + name: 'Inflation', + data: [2.5, 3.2, 5.0, 10.1, 4.2, 3.8, 3, 2.4, 4.0, 1.2, 3.5, 0.8] + }], + colors: ['#556ee6'], + grid: { + borderColor: '#f1f1f1', + }, + xaxis: { + categories: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], + position: 'top', + labels: { + offsetY: -18, + + }, + axisBorder: { + show: false + }, + axisTicks: { + show: false + }, + crosshairs: { + fill: { + type: 'gradient', + gradient: { + colorFrom: '#D8E3F0', + colorTo: '#BED1E6', + stops: [0, 100], + opacityFrom: 0.4, + opacityTo: 0.5, + } + } + }, + tooltip: { + enabled: true, + offsetY: -35, + + } + }, + fill: { + gradient: { + shade: 'light', + type: "horizontal", + shadeIntensity: 0.25, + gradientToColors: undefined, + inverseColors: true, + opacityFrom: 1, + opacityTo: 1, + stops: [50, 0, 100, 100] + }, + }, + yaxis: { + axisBorder: { + show: false + }, + axisTicks: { + show: false, + }, + labels: { + show: false, + formatter: function (val) { + return val + "%"; + } + } + + }, + title: { + text: 'Monthly Inflation in Argentina, 2002', + floating: true, + offsetY: 330, + align: 'center', + style: { + color: '#444', + fontWeight: '500', + } + }, +} + +var chart = new ApexCharts( + document.querySelector("#column_chart_datalabel"), + options +); + +chart.render(); + + + +// Bar chart + +var options = { + chart: { + height: 350, + type: 'bar', + toolbar: { + show: false, + } + }, + plotOptions: { + bar: { + horizontal: true, + } + }, + dataLabels: { + enabled: false + }, + series: [{ + data: [380, 430, 450, 475, 550, 584, 780, 1100, 1220, 1365] + }], + colors: ['#34c38f'], + grid: { + borderColor: '#f1f1f1', + }, + xaxis: { + categories: ['South Korea', 'Canada', 'United Kingdom', 'Netherlands', 'Italy', 'France', 'Japan', 'United States', 'China', 'Germany'], + } +} + +var chart = new ApexCharts( + document.querySelector("#bar_chart"), + options +); + +chart.render(); + + +// Mixed chart + +var options = { + chart: { + height: 350, + type: 'line', + stacked: false, + toolbar: { + show: false + } + }, + stroke: { + width: [0, 2, 4], + curve: 'smooth' + }, + plotOptions: { + bar: { + columnWidth: '50%' + } + }, + colors: ['#f46a6a', '#556ee6', '#34c38f'], + series: [{ + name: 'Team A', + type: 'column', + data: [23, 11, 22, 27, 13, 22, 37, 21, 44, 22, 30] + }, { + name: 'Team B', + type: 'area', + data: [44, 55, 41, 67, 22, 43, 21, 41, 56, 27, 43] + }, { + name: 'Team C', + type: 'line', + data: [30, 25, 36, 30, 45, 35, 64, 52, 59, 36, 39] + }], + fill: { + opacity: [0.85, 0.25, 1], + gradient: { + inverseColors: false, + shade: 'light', + type: "vertical", + opacityFrom: 0.85, + opacityTo: 0.55, + stops: [0, 100, 100, 100] + } + }, + labels: ['01/01/2003', '02/01/2003', '03/01/2003', '04/01/2003', '05/01/2003', '06/01/2003', '07/01/2003', '08/01/2003', '09/01/2003', '10/01/2003', '11/01/2003'], + markers: { + size: 0 + }, + xaxis: { + type: 'datetime' + }, + yaxis: { + title: { + text: 'Points', + }, + }, + tooltip: { + shared: true, + intersect: false, + y: { + formatter: function (y) { + if (typeof y !== "undefined") { + return y.toFixed(0) + " points"; + } + return y; + + } + } + }, + grid: { + borderColor: '#f1f1f1' + } +} + +var chart = new ApexCharts( + document.querySelector("#mixed_chart"), + options +); + +chart.render(); + + +// Radial chart + +var options = { + chart: { + height: 370, + type: 'radialBar', + }, + plotOptions: { + radialBar: { + dataLabels: { + name: { + fontSize: '22px', + }, + value: { + fontSize: '16px', + }, + total: { + show: true, + label: 'Total', + formatter: function (w) { + // By default this function returns the average of all series. The below is just an example to show the use of custom formatter function + return 249 + } + } + } + } + }, + series: [44, 55, 67, 83], + labels: ['Computer', 'Tablet', 'Laptop', 'Mobile'], + colors: ['#556ee6', '#34c38f', '#f46a6a', '#f1b44c'], + +} + +var chart = new ApexCharts( + document.querySelector("#radial_chart"), + options +); + +chart.render(); + + +// pie chart + +var options = { + chart: { + height: 320, + type: 'pie', + }, + series: [44, 55, 41, 17, 15], + labels: ["Series 1", "Series 2", "Series 3", "Series 4", "Series 5"], + colors: ["#34c38f", "#556ee6", "#f46a6a", "#50a5f1", "#f1b44c"], + legend: { + show: true, + position: 'bottom', + horizontalAlign: 'center', + verticalAlign: 'middle', + floating: false, + fontSize: '14px', + offsetX: 0, + }, + responsive: [{ + breakpoint: 600, + options: { + chart: { + height: 240 + }, + legend: { + show: false + }, + } + }] + +} + +var chart = new ApexCharts( + document.querySelector("#pie_chart"), + options +); + +chart.render(); + + +// Donut chart + +var options = { + chart: { + height: 320, + type: 'donut', + }, + series: [44, 55, 41, 17, 15], + labels: ["Series 1", "Series 2", "Series 3", "Series 4", "Series 5"], + colors: ["#34c38f", "#556ee6", "#f46a6a", "#50a5f1", "#f1b44c"], + legend: { + show: true, + position: 'bottom', + horizontalAlign: 'center', + verticalAlign: 'middle', + floating: false, + fontSize: '14px', + offsetX: 0, + }, + responsive: [{ + breakpoint: 600, + options: { + chart: { + height: 240 + }, + legend: { + show: false + }, + } + }] + +} + +var chart = new ApexCharts( + document.querySelector("#donut_chart"), + options +); + +chart.render(); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/charts-apex.min.js b/dj_backend_server/web/static/assets/js/pages/charts-apex.min.js new file mode 100644 index 00000000..10ef507b --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/charts-apex.min.js @@ -0,0 +1 @@ +var options={chart:{height:380,type:"line",zoom:{enabled:!1},toolbar:{show:!1}},colors:["#556ee6","#34c38f"],dataLabels:{enabled:!1},stroke:{width:[3,3],curve:"straight"},series:[{name:"High - 2018",data:[26,24,32,36,33,31,33]},{name:"Low - 2018",data:[14,11,16,12,17,13,12]}],title:{text:"Average High & Low Temperature",align:"left",style:{fontWeight:"500"}},grid:{row:{colors:["transparent","transparent"],opacity:.2},borderColor:"#f1f1f1"},markers:{style:"inverted",size:6},xaxis:{categories:["Jan","Feb","Mar","Apr","May","Jun","Jul"],title:{text:"Month"}},yaxis:{title:{text:"Temperature"},min:5,max:40},legend:{position:"top",horizontalAlign:"right",floating:!0,offsetY:-25,offsetX:-5},responsive:[{breakpoint:600,options:{chart:{toolbar:{show:!1}},legend:{show:!1}}}]},chart=new ApexCharts(document.querySelector("#line_chart_datalabel"),options),options=(chart.render(),{chart:{height:380,type:"line",zoom:{enabled:!1},toolbar:{show:!1}},colors:["#556ee6","#f46a6a","#34c38f"],dataLabels:{enabled:!1},stroke:{width:[3,4,3],curve:"straight",dashArray:[0,8,5]},series:[{name:"Session Duration",data:[45,52,38,24,33,26,21,20,6,8,15,10]},{name:"Page Views",data:[36,42,60,42,13,18,29,37,36,51,32,35]},{name:"Total Visits",data:[89,56,74,98,72,38,64,46,84,58,46,49]}],title:{text:"Page Statistics",align:"left",style:{fontWeight:"500"}},markers:{size:0,hover:{sizeOffset:6}},xaxis:{categories:["01 Jan","02 Jan","03 Jan","04 Jan","05 Jan","06 Jan","07 Jan","08 Jan","09 Jan","10 Jan","11 Jan","12 Jan"]},tooltip:{y:[{title:{formatter:function(e){return e+" (mins)"}}},{title:{formatter:function(e){return e+" per session"}}},{title:{formatter:function(e){return e}}}]},grid:{borderColor:"#f1f1f1"}}),options=((chart=new ApexCharts(document.querySelector("#line_chart_dashed"),options)).render(),{chart:{height:350,type:"area",toolbar:{show:!1}},dataLabels:{enabled:!1},stroke:{curve:"smooth",width:3},series:[{name:"series1",data:[34,40,28,52,42,109,100]},{name:"series2",data:[32,60,34,46,34,52,41]}],colors:["#556ee6","#34c38f"],xaxis:{type:"datetime",categories:["2018-09-19T00:00:00","2018-09-19T01:30:00","2018-09-19T02:30:00","2018-09-19T03:30:00","2018-09-19T04:30:00","2018-09-19T05:30:00","2018-09-19T06:30:00"]},grid:{borderColor:"#f1f1f1"},tooltip:{x:{format:"dd/MM/yy HH:mm"}}}),options=((chart=new ApexCharts(document.querySelector("#spline_area"),options)).render(),{chart:{height:350,type:"bar",toolbar:{show:!1}},plotOptions:{bar:{horizontal:!1,columnWidth:"45%",endingShape:"rounded"}},dataLabels:{enabled:!1},stroke:{show:!0,width:2,colors:["transparent"]},series:[{name:"Net Profit",data:[46,57,59,54,62,58,64,60,66]},{name:"Revenue",data:[74,83,102,97,86,106,93,114,94]},{name:"Free Cash Flow",data:[37,42,38,26,47,50,54,55,43]}],colors:["#34c38f","#556ee6","#f46a6a"],xaxis:{categories:["Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct"]},yaxis:{title:{text:"$ (thousands)",style:{fontWeight:"500"}}},grid:{borderColor:"#f1f1f1"},fill:{opacity:1},tooltip:{y:{formatter:function(e){return"$ "+e+" thousands"}}}}),options=((chart=new ApexCharts(document.querySelector("#column_chart"),options)).render(),{chart:{height:350,type:"bar",toolbar:{show:!1}},plotOptions:{bar:{dataLabels:{position:"top"}}},dataLabels:{enabled:!0,formatter:function(e){return e+"%"},offsetY:-22,style:{fontSize:"12px",colors:["#304758"]}},series:[{name:"Inflation",data:[2.5,3.2,5,10.1,4.2,3.8,3,2.4,4,1.2,3.5,.8]}],colors:["#556ee6"],grid:{borderColor:"#f1f1f1"},xaxis:{categories:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],position:"top",labels:{offsetY:-18},axisBorder:{show:!1},axisTicks:{show:!1},crosshairs:{fill:{type:"gradient",gradient:{colorFrom:"#D8E3F0",colorTo:"#BED1E6",stops:[0,100],opacityFrom:.4,opacityTo:.5}}},tooltip:{enabled:!0,offsetY:-35}},fill:{gradient:{shade:"light",type:"horizontal",shadeIntensity:.25,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[50,0,100,100]}},yaxis:{axisBorder:{show:!1},axisTicks:{show:!1},labels:{show:!1,formatter:function(e){return e+"%"}}},title:{text:"Monthly Inflation in Argentina, 2002",floating:!0,offsetY:330,align:"center",style:{color:"#444",fontWeight:"500"}}}),options=((chart=new ApexCharts(document.querySelector("#column_chart_datalabel"),options)).render(),{chart:{height:350,type:"bar",toolbar:{show:!1}},plotOptions:{bar:{horizontal:!0}},dataLabels:{enabled:!1},series:[{data:[380,430,450,475,550,584,780,1100,1220,1365]}],colors:["#34c38f"],grid:{borderColor:"#f1f1f1"},xaxis:{categories:["South Korea","Canada","United Kingdom","Netherlands","Italy","France","Japan","United States","China","Germany"]}}),options=((chart=new ApexCharts(document.querySelector("#bar_chart"),options)).render(),{chart:{height:350,type:"line",stacked:!1,toolbar:{show:!1}},stroke:{width:[0,2,4],curve:"smooth"},plotOptions:{bar:{columnWidth:"50%"}},colors:["#f46a6a","#556ee6","#34c38f"],series:[{name:"Team A",type:"column",data:[23,11,22,27,13,22,37,21,44,22,30]},{name:"Team B",type:"area",data:[44,55,41,67,22,43,21,41,56,27,43]},{name:"Team C",type:"line",data:[30,25,36,30,45,35,64,52,59,36,39]}],fill:{opacity:[.85,.25,1],gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.85,opacityTo:.55,stops:[0,100,100,100]}},labels:["01/01/2003","02/01/2003","03/01/2003","04/01/2003","05/01/2003","06/01/2003","07/01/2003","08/01/2003","09/01/2003","10/01/2003","11/01/2003"],markers:{size:0},xaxis:{type:"datetime"},yaxis:{title:{text:"Points"}},tooltip:{shared:!0,intersect:!1,y:{formatter:function(e){return void 0!==e?e.toFixed(0)+" points":e}}},grid:{borderColor:"#f1f1f1"}}),options=((chart=new ApexCharts(document.querySelector("#mixed_chart"),options)).render(),{chart:{height:370,type:"radialBar"},plotOptions:{radialBar:{dataLabels:{name:{fontSize:"22px"},value:{fontSize:"16px"},total:{show:!0,label:"Total",formatter:function(e){return 249}}}}},series:[44,55,67,83],labels:["Computer","Tablet","Laptop","Mobile"],colors:["#556ee6","#34c38f","#f46a6a","#f1b44c"]}),options=((chart=new ApexCharts(document.querySelector("#radial_chart"),options)).render(),{chart:{height:320,type:"pie"},series:[44,55,41,17,15],labels:["Series 1","Series 2","Series 3","Series 4","Series 5"],colors:["#34c38f","#556ee6","#f46a6a","#50a5f1","#f1b44c"],legend:{show:!0,position:"bottom",horizontalAlign:"center",verticalAlign:"middle",floating:!1,fontSize:"14px",offsetX:0},responsive:[{breakpoint:600,options:{chart:{height:240},legend:{show:!1}}}]}),options=((chart=new ApexCharts(document.querySelector("#pie_chart"),options)).render(),{chart:{height:320,type:"donut"},series:[44,55,41,17,15],labels:["Series 1","Series 2","Series 3","Series 4","Series 5"],colors:["#34c38f","#556ee6","#f46a6a","#50a5f1","#f1b44c"],legend:{show:!0,position:"bottom",horizontalAlign:"center",verticalAlign:"middle",floating:!1,fontSize:"14px",offsetX:0},responsive:[{breakpoint:600,options:{chart:{height:240},legend:{show:!1}}}]});(chart=new ApexCharts(document.querySelector("#donut_chart"),options)).render(); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/dashboard.js b/dj_backend_server/web/static/assets/js/pages/dashboard.js new file mode 100644 index 00000000..e817caf6 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/dashboard.js @@ -0,0 +1,149 @@ +/* +Template Name: TailFox - Responsive Tailwind Admin Dashboard +Author: Myra Studio +Website: https://myrathemes.com/ +Contact: myrathemes@gmail.com +File: Dashboard +*/ + +$(function () { + 'use strict'; + if ($("#morris_discussion_counts").length) { + Morris.Bar({ + element: 'morris_discussion_counts', + barColors: ['#ebeef1', '#20b799'], + data: [ + { + y: '2010', + a: 80, + b: 100 + }, + { + y: '2011', + a: 110, + b: 130 + }, + { + y: '2012', + a: 90, + b: 110 + }, + { + y: '2013', + a: 80, + b: 100 + }, + { + y: '2014', + a: 110, + b: 130 + }, + { + y: '2015', + a: 90, + b: 110 + }, + { + y: '2016', + a: 120, + b: 140 + }, + { + y: '2017', + a: 110, + b: 125 + }, + { + y: '2018', + a: 170, + b: 190 + }, + { + y: '2019', + a: 120, + b: 140 + } + ], + xkey: 'y', + ykeys: ['a', 'b'], + hideHover: 'auto', + gridLineColor: '#eef0f2', + resize: true, + barSizeRatio: 0.4, + labels: ['iPhone 8', 'Samsung Gallexy'] + }); + } + + + + if ($("#morris-donut-example").length) { + Morris.Donut({ + element: 'morris-donut-example', + resize: true, + backgroundColor: 'transparent', + colors: ['#20b799', '#346ee0', '#e9ecef'], + data: [{ + label: "Samsung Company", + value: 12 + }, + { + label: "Apple Company", + value: 30 + }, + { + label: "Vivo Mobiles", + value: 20 + } + ] + }); + } + + if ($('#morris-line-example').length) { + Morris.Line({ + element: 'morris-line-example', + gridLineColor: '#eef0f2', + lineColors: ['#f15050', '#e9ecef'], + data: [{ + y: '2013', + a: 80, + b: 100 + }, + { + y: '2014', + a: 110, + b: 130 + }, + { + y: '2015', + a: 90, + b: 110 + }, + { + y: '2016', + a: 120, + b: 140 + }, + { + y: '2017', + a: 110, + b: 125 + }, + { + y: '2018', + a: 170, + b: 190 + }, + { + y: '2019', + a: 120, + b: 140 + } + ], + xkey: 'y', + ykeys: ['a', 'b'], + hideHover: 'auto', + resize: true, + labels: ['Series A', 'Series B'] + }); + } +}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/dashboard.min.js b/dj_backend_server/web/static/assets/js/pages/dashboard.min.js new file mode 100644 index 00000000..b8bb9979 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/dashboard.min.js @@ -0,0 +1 @@ +$(function(){"use strict";$("#morris-bar-example").length&&Morris.Bar({element:"morris-bar-example",barColors:["#ebeef1","#20b799"],data:[{y:"2010",a:80,b:100},{y:"2011",a:110,b:130},{y:"2012",a:90,b:110},{y:"2013",a:80,b:100},{y:"2014",a:110,b:130},{y:"2015",a:90,b:110},{y:"2016",a:120,b:140},{y:"2017",a:110,b:125},{y:"2018",a:170,b:190},{y:"2019",a:120,b:140}],xkey:"y",ykeys:["a","b"],hideHover:"auto",gridLineColor:"#eef0f2",resize:!0,barSizeRatio:.4,labels:["iPhone 8","Samsung Gallexy"]}),$("#morris-donut-example").length&&Morris.Donut({element:"morris-donut-example",resize:!0,backgroundColor:"transparent",colors:["#20b799","#346ee0","#e9ecef"],data:[{label:"Samsung Company",value:12},{label:"Apple Company",value:30},{label:"Vivo Mobiles",value:20}]}),$("#morris-line-example").length&&Morris.Line({element:"morris-line-example",gridLineColor:"#eef0f2",lineColors:["#f15050","#e9ecef"],data:[{y:"2013",a:80,b:100},{y:"2014",a:110,b:130},{y:"2015",a:90,b:110},{y:"2016",a:120,b:140},{y:"2017",a:110,b:125},{y:"2018",a:170,b:190},{y:"2019",a:120,b:140}],xkey:"y",ykeys:["a","b"],hideHover:"auto",resize:!0,labels:["Series A","Series B"]})}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/form-editor.js b/dj_backend_server/web/static/assets/js/pages/form-editor.js new file mode 100644 index 00000000..f7c7217e --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/form-editor.js @@ -0,0 +1,20 @@ +/* +Template Name: TailFox - Responsive Tailwind Admin Dashboard +Author: Myra Studio +Website: https://myrathemes.com/ +Contact: myrathemes@gmail.com +File: Quilljs js +*/ + +// Snow theme +var quill = new Quill('#snow-editor', { + theme: 'snow', + modules: { + 'toolbar': [[{ 'font': [] }, { 'size': [] }], ['bold', 'italic', 'underline', 'strike'], [{ 'color': [] }, { 'background': [] }], [{ 'script': 'super' }, { 'script': 'sub' }], [{ 'header': [false, 1, 2, 3, 4, 5, 6] }, 'blockquote', 'code-block'], [{ 'list': 'ordered' }, { 'list': 'bullet' }, { 'indent': '-1' }, { 'indent': '+1' }], ['direction', { 'align': [] }], ['link', 'image', 'video'], ['clean']] + }, +}); + +// Bubble theme +var quill = new Quill('#bubble-editor', { + theme: 'bubble' +}); diff --git a/dj_backend_server/web/static/assets/js/pages/form-editor.min.js b/dj_backend_server/web/static/assets/js/pages/form-editor.min.js new file mode 100644 index 00000000..70eda059 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/form-editor.min.js @@ -0,0 +1 @@ +var quill=new Quill("#snow-editor",{theme:"snow",modules:{toolbar:[[{font:[]},{size:[]}],["bold","italic","underline","strike"],[{color:[]},{background:[]}],[{script:"super"},{script:"sub"}],[{header:[!1,1,2,3,4,5,6]},"blockquote","code-block"],[{list:"ordered"},{list:"bullet"},{indent:"-1"},{indent:"+1"}],["direction",{align:[]}],["link","image","video"],["clean"]]}}),quill=new Quill("#bubble-editor",{theme:"bubble"}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/form-inputmask.js b/dj_backend_server/web/static/assets/js/pages/form-inputmask.js new file mode 100644 index 00000000..7f2607a1 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/form-inputmask.js @@ -0,0 +1,14 @@ +/* +Template Name: TailFox - Responsive Tailwind Admin Dashboard +Author: Myra Studio +Website: https://myrathemes.com/ +Contact: myrathemes@gmail.com +File: Input Mask +*/ + +document.querySelectorAll('[data-toggle="input-mask"]').forEach(e => { + const maskFormat = e.getAttribute('data-mask-format').toString().replaceAll('0', '9'); + e.setAttribute("data-mask-format", maskFormat); + const im = new Inputmask(maskFormat); + im.mask(e); +}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/form-inputmask.min.js b/dj_backend_server/web/static/assets/js/pages/form-inputmask.min.js new file mode 100644 index 00000000..990bf81e --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/form-inputmask.min.js @@ -0,0 +1 @@ +document.querySelectorAll('[data-toggle="input-mask"]').forEach(t=>{var a=t.getAttribute("data-mask-format").toString().replaceAll("0","9");t.setAttribute("data-mask-format",a),new Inputmask(a).mask(t)}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/maps-google.js b/dj_backend_server/web/static/assets/js/pages/maps-google.js new file mode 100644 index 00000000..5eb11dc3 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/maps-google.js @@ -0,0 +1,291 @@ +/* +Template Name: TailFox - Responsive Tailwind Admin Dashboard +Author: Myra Studio +Website: https://myrathemes.com/ +Contact: myrathemes@gmail.com +File: Google Map +*/ + + +class GoogleMap { + + initBasicGoogleMap() { + var map = new GMaps({ + div: '#gmaps-basic', lat: -12.043333, lng: -77.028333 + }); + } + + initMarkerGoogleMap() { + var map = new GMaps({ + div: '#gmaps-markers', lat: -12.043333, lng: -77.028333 + }); + } + + initStreetViewGoogleMap() { + var panorama = GMaps.createPanorama({ + el: '#panorama', lat: 42.3455, lng: -71.0983 + }); + } + + initMapTypes() { + var map = new GMaps({ + el: '#gmaps-types', lat: 42.3455, lng: -71.0983, mapTypeControlOptions: { + mapTypeIds: ["hybrid", "roadmap", "satellite", "terrain", "osm", "cloudmade"] + } + }); + map.addMapType("osm", { + getTileUrl: function (coord, zoom) { + return "http://tile.openstreetmap.org/" + zoom + "/" + coord.x + "/" + coord.y + ".png"; + }, tileSize: new google.maps.Size(256, 256), name: "OpenStreetMap", maxZoom: 18 + }); + map.addMapType("cloudmade", { + getTileUrl: function (coord, zoom) { + return "http://b.tile.cloudmade.com/8ee2a50541944fb9bcedded5165f09d9/1/256/" + zoom + "/" + coord.x + "/" + coord.y + ".png"; + }, tileSize: new google.maps.Size(256, 256), name: "CloudMade", maxZoom: 18 + }); + map.setMapTypeId("osm"); + return map; + } + + initUltraLightMap() { + var map = new GMaps({ + div: '#ultra-light', lat: 42.3455, lng: -71.0983, styles: [{ + "featureType": "water", "elementType": "geometry", "stylers": [{ + "color": "#e9e9e9" + }, { + "lightness": 17 + }] + }, { + "featureType": "landscape", "elementType": "geometry", "stylers": [{ + "color": "#f5f5f5" + }, { + "lightness": 20 + }] + }, { + "featureType": "road.highway", "elementType": "geometry.fill", "stylers": [{ + "color": "#ffffff" + }, { + "lightness": 17 + }] + }, { + "featureType": "road.highway", "elementType": "geometry.stroke", "stylers": [{ + "color": "#ffffff" + }, { + "lightness": 29 + }, { + "weight": 0.2 + }] + }, { + "featureType": "road.arterial", "elementType": "geometry", "stylers": [{ + "color": "#ffffff" + }, { + "lightness": 18 + }] + }, { + "featureType": "road.local", "elementType": "geometry", "stylers": [{ + "color": "#ffffff" + }, { + "lightness": 16 + }] + }, { + "featureType": "poi", "elementType": "geometry", "stylers": [{ + "color": "#f5f5f5" + }, { + "lightness": 21 + }] + }, { + "featureType": "poi.park", "elementType": "geometry", "stylers": [{ + "color": "#dedede" + }, { + "lightness": 21 + }] + }, { + "elementType": "labels.text.stroke", "stylers": [{ + "visibility": "on" + }, { + "color": "#ffffff" + }, { + "lightness": 16 + }] + }, { + "elementType": "labels.text.fill", "stylers": [{ + "saturation": 36 + }, { + "color": "#333333" + }, { + "lightness": 40 + }] + }, { + "elementType": "labels.icon", "stylers": [{ + "visibility": "off" + }] + }, { + "featureType": "transit", "elementType": "geometry", "stylers": [{ + "color": "#f2f2f2" + }, { + "lightness": 19 + }] + }, { + "featureType": "administrative", "elementType": "geometry.fill", "stylers": [{ + "color": "#fefefe" + }, { + "lightness": 20 + }] + }, { + "featureType": "administrative", "elementType": "geometry.stroke", "stylers": [{ + "color": "#fefefe" + }, { + "lightness": 17 + }, { + "weight": 1.2 + }] + }] + }); + } + + initDarkMap() { + var map = new GMaps({ + div: '#dark', lat: 42.3455, lng: -71.0983, styles: [{ + "featureType": "all", "elementType": "labels", "stylers": [{ + "visibility": "on" + }] + }, { + "featureType": "all", "elementType": "labels.text.fill", "stylers": [{ + "saturation": 36 + }, { + "color": "#000000" + }, { + "lightness": 40 + }] + }, { + "featureType": "all", "elementType": "labels.text.stroke", "stylers": [{ + "visibility": "on" + }, { + "color": "#000000" + }, { + "lightness": 16 + }] + }, { + "featureType": "all", "elementType": "labels.icon", "stylers": [{ + "visibility": "off" + }] + }, { + "featureType": "administrative", "elementType": "geometry.fill", "stylers": [{ + "color": "#000000" + }, { + "lightness": 20 + }] + }, { + "featureType": "administrative", "elementType": "geometry.stroke", "stylers": [{ + "color": "#000000" + }, { + "lightness": 17 + }, { + "weight": 1.2 + }] + }, { + "featureType": "administrative.country", "elementType": "labels.text.fill", "stylers": [{ + "color": "#e5c163" + }] + }, { + "featureType": "administrative.locality", "elementType": "labels.text.fill", "stylers": [{ + "color": "#c4c4c4" + }] + }, { + "featureType": "administrative.neighborhood", "elementType": "labels.text.fill", "stylers": [{ + "color": "#e5c163" + }] + }, { + "featureType": "landscape", "elementType": "geometry", "stylers": [{ + "color": "#000000" + }, { + "lightness": 20 + }] + }, { + "featureType": "poi", "elementType": "geometry", "stylers": [{ + "color": "#000000" + }, { + "lightness": 21 + }, { + "visibility": "on" + }] + }, { + "featureType": "poi.business", "elementType": "geometry", "stylers": [{ + "visibility": "on" + }] + }, { + "featureType": "road.highway", "elementType": "geometry.fill", "stylers": [{ + "color": "#e5c163" + }, { + "lightness": "0" + }] + }, { + "featureType": "road.highway", "elementType": "geometry.stroke", "stylers": [{ + "visibility": "off" + }] + }, { + "featureType": "road.highway", "elementType": "labels.text.fill", "stylers": [{ + "color": "#ffffff" + }] + }, { + "featureType": "road.highway", "elementType": "labels.text.stroke", "stylers": [{ + "color": "#e5c163" + }] + }, { + "featureType": "road.arterial", "elementType": "geometry", "stylers": [{ + "color": "#000000" + }, { + "lightness": 18 + }] + }, { + "featureType": "road.arterial", "elementType": "geometry.fill", "stylers": [{ + "color": "#575757" + }] + }, { + "featureType": "road.arterial", "elementType": "labels.text.fill", "stylers": [{ + "color": "#ffffff" + }] + }, { + "featureType": "road.arterial", "elementType": "labels.text.stroke", "stylers": [{ + "color": "#2c2c2c" + }] + }, { + "featureType": "road.local", "elementType": "geometry", "stylers": [{ + "color": "#000000" + }, { + "lightness": 16 + }] + }, { + "featureType": "road.local", "elementType": "labels.text.fill", "stylers": [{ + "color": "#999999" + }] + }, { + "featureType": "transit", "elementType": "geometry", "stylers": [{ + "color": "#000000" + }, { + "lightness": 19 + }] + }, { + "featureType": "water", "elementType": "geometry", "stylers": [{ + "color": "#000000" + }, { + "lightness": 17 + }] + }] + }); + } + + init() { + this.initBasicGoogleMap(); + this.initMarkerGoogleMap(); + this.initStreetViewGoogleMap(); + this.initMapTypes(); + this.initUltraLightMap(); + this.initDarkMap(); + } + +} + +document.addEventListener('DOMContentLoaded', function (e) { + new GoogleMap().init(); +}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/maps-google.min.js b/dj_backend_server/web/static/assets/js/pages/maps-google.min.js new file mode 100644 index 00000000..c0708556 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/maps-google.min.js @@ -0,0 +1 @@ +class GoogleMap{initBasicGoogleMap(){new GMaps({div:"#gmaps-basic",lat:-12.043333,lng:-77.028333})}initMarkerGoogleMap(){new GMaps({div:"#gmaps-markers",lat:-12.043333,lng:-77.028333})}initStreetViewGoogleMap(){GMaps.createPanorama({el:"#panorama",lat:42.3455,lng:-71.0983})}initMapTypes(){var e=new GMaps({el:"#gmaps-types",lat:42.3455,lng:-71.0983,mapTypeControlOptions:{mapTypeIds:["hybrid","roadmap","satellite","terrain","osm","cloudmade"]}});return e.addMapType("osm",{getTileUrl:function(e,t){return"http://tile.openstreetmap.org/"+t+"/"+e.x+"/"+e.y+".png"},tileSize:new google.maps.Size(256,256),name:"OpenStreetMap",maxZoom:18}),e.addMapType("cloudmade",{getTileUrl:function(e,t){return"http://b.tile.cloudmade.com/8ee2a50541944fb9bcedded5165f09d9/1/256/"+t+"/"+e.x+"/"+e.y+".png"},tileSize:new google.maps.Size(256,256),name:"CloudMade",maxZoom:18}),e.setMapTypeId("osm"),e}initUltraLightMap(){new GMaps({div:"#ultra-light",lat:42.3455,lng:-71.0983,styles:[{featureType:"water",elementType:"geometry",stylers:[{color:"#e9e9e9"},{lightness:17}]},{featureType:"landscape",elementType:"geometry",stylers:[{color:"#f5f5f5"},{lightness:20}]},{featureType:"road.highway",elementType:"geometry.fill",stylers:[{color:"#ffffff"},{lightness:17}]},{featureType:"road.highway",elementType:"geometry.stroke",stylers:[{color:"#ffffff"},{lightness:29},{weight:.2}]},{featureType:"road.arterial",elementType:"geometry",stylers:[{color:"#ffffff"},{lightness:18}]},{featureType:"road.local",elementType:"geometry",stylers:[{color:"#ffffff"},{lightness:16}]},{featureType:"poi",elementType:"geometry",stylers:[{color:"#f5f5f5"},{lightness:21}]},{featureType:"poi.park",elementType:"geometry",stylers:[{color:"#dedede"},{lightness:21}]},{elementType:"labels.text.stroke",stylers:[{visibility:"on"},{color:"#ffffff"},{lightness:16}]},{elementType:"labels.text.fill",stylers:[{saturation:36},{color:"#333333"},{lightness:40}]},{elementType:"labels.icon",stylers:[{visibility:"off"}]},{featureType:"transit",elementType:"geometry",stylers:[{color:"#f2f2f2"},{lightness:19}]},{featureType:"administrative",elementType:"geometry.fill",stylers:[{color:"#fefefe"},{lightness:20}]},{featureType:"administrative",elementType:"geometry.stroke",stylers:[{color:"#fefefe"},{lightness:17},{weight:1.2}]}]})}initDarkMap(){new GMaps({div:"#dark",lat:42.3455,lng:-71.0983,styles:[{featureType:"all",elementType:"labels",stylers:[{visibility:"on"}]},{featureType:"all",elementType:"labels.text.fill",stylers:[{saturation:36},{color:"#000000"},{lightness:40}]},{featureType:"all",elementType:"labels.text.stroke",stylers:[{visibility:"on"},{color:"#000000"},{lightness:16}]},{featureType:"all",elementType:"labels.icon",stylers:[{visibility:"off"}]},{featureType:"administrative",elementType:"geometry.fill",stylers:[{color:"#000000"},{lightness:20}]},{featureType:"administrative",elementType:"geometry.stroke",stylers:[{color:"#000000"},{lightness:17},{weight:1.2}]},{featureType:"administrative.country",elementType:"labels.text.fill",stylers:[{color:"#e5c163"}]},{featureType:"administrative.locality",elementType:"labels.text.fill",stylers:[{color:"#c4c4c4"}]},{featureType:"administrative.neighborhood",elementType:"labels.text.fill",stylers:[{color:"#e5c163"}]},{featureType:"landscape",elementType:"geometry",stylers:[{color:"#000000"},{lightness:20}]},{featureType:"poi",elementType:"geometry",stylers:[{color:"#000000"},{lightness:21},{visibility:"on"}]},{featureType:"poi.business",elementType:"geometry",stylers:[{visibility:"on"}]},{featureType:"road.highway",elementType:"geometry.fill",stylers:[{color:"#e5c163"},{lightness:"0"}]},{featureType:"road.highway",elementType:"geometry.stroke",stylers:[{visibility:"off"}]},{featureType:"road.highway",elementType:"labels.text.fill",stylers:[{color:"#ffffff"}]},{featureType:"road.highway",elementType:"labels.text.stroke",stylers:[{color:"#e5c163"}]},{featureType:"road.arterial",elementType:"geometry",stylers:[{color:"#000000"},{lightness:18}]},{featureType:"road.arterial",elementType:"geometry.fill",stylers:[{color:"#575757"}]},{featureType:"road.arterial",elementType:"labels.text.fill",stylers:[{color:"#ffffff"}]},{featureType:"road.arterial",elementType:"labels.text.stroke",stylers:[{color:"#2c2c2c"}]},{featureType:"road.local",elementType:"geometry",stylers:[{color:"#000000"},{lightness:16}]},{featureType:"road.local",elementType:"labels.text.fill",stylers:[{color:"#999999"}]},{featureType:"transit",elementType:"geometry",stylers:[{color:"#000000"},{lightness:19}]},{featureType:"water",elementType:"geometry",stylers:[{color:"#000000"},{lightness:17}]}]})}init(){this.initBasicGoogleMap(),this.initMarkerGoogleMap(),this.initStreetViewGoogleMap(),this.initMapTypes(),this.initUltraLightMap(),this.initDarkMap()}}document.addEventListener("DOMContentLoaded",function(e){(new GoogleMap).init()}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/maps-vector.js b/dj_backend_server/web/static/assets/js/pages/maps-vector.js new file mode 100644 index 00000000..b015b2f0 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/maps-vector.js @@ -0,0 +1,132 @@ +/* +Template Name: TailFox - Responsive Tailwind Admin Dashboard +Author: Myra Studio +Website: https://myrathemes.com/ +Contact: myrathemes@gmail.com +File: Vector Map +*/ + +class VectorMap { + + initWorldMapMarker() { + const map = new jsVectorMap({ + map: 'world', + selector: '#world-map-markers', + zoomOnScroll: false, + zoomButtons: true, + markersSelectable: true, + markers: [ + { name: "Greenland", coords: [72, -42] }, + { name: "Canada", coords: [56.1304, -106.3468] }, + { name: "Brazil", coords: [-14.2350, -51.9253] }, + { name: "Egypt", coords: [26.8206, 30.8025] }, + { name: "Russia", coords: [61, 105] }, + { name: "China", coords: [35.8617, 104.1954] }, + { name: "United States", coords: [37.0902, -95.7129] }, + { name: "Norway", coords: [60.472024, 8.468946] }, + { name: "Ukraine", coords: [48.379433, 31.16558] }, + ], + markerStyle: { + initial: { fill: "#5B8DEC" }, + selected: { fill: "#ef5f5f" } + }, + labels: { + markers: { + render: marker => marker.name + } + } + }); + } + + initCanadaVectorMap() { + const map = new jsVectorMap({ + map: 'canada', + selector: '#canada-vector-map', + zoomOnScroll: false, + regionStyle: { + initial: { + fill: '#5B8DEC' + } + } + }); + } + + initRussiaVectorMap() { + const map = new jsVectorMap({ + map: 'russia', + selector: '#russia-vector-map', + zoomOnScroll: false, + regionStyle: { + initial: { + fill: '#5d7186' + } + } + }); + } + + initItalyVectorMap() { + const map = new jsVectorMap({ + map: 'italy', + selector: '#italy-vector-map', + zoomOnScroll: false, + regionStyle: { + initial: { + fill: '#37a593' + } + } + }); + } + + initIraqVectorMap() { + const map = new jsVectorMap({ + map: 'iraq', + selector: '#iraq-vector-map', + zoomOnScroll: false, + regionStyle: { + initial: { + fill: '#20c8e9' + } + } + }); + } + + initSpainVectorMap() { + const map = new jsVectorMap({ + map: 'spain', + selector: '#spain-vector-map', + zoomOnScroll: false, + regionStyle: { + initial: { + fill: '#ffe381' + } + } + }); + } + + initUsaVectorMap() { + const map = new jsVectorMap({ + map: 'us_merc_en', + selector: '#usa-vector-map', + regionStyle: { + initial: { + fill: '#ffe381' + } + } + }); + } + + init() { + this.initWorldMapMarker(); + this.initCanadaVectorMap(); + this.initRussiaVectorMap(); + this.initItalyVectorMap(); + this.initIraqVectorMap(); + this.initSpainVectorMap(); + this.initUsaVectorMap(); + } + +} + +document.addEventListener('DOMContentLoaded', function (e) { + new VectorMap().init(); +}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/maps-vector.min.js b/dj_backend_server/web/static/assets/js/pages/maps-vector.min.js new file mode 100644 index 00000000..fb644381 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/maps-vector.min.js @@ -0,0 +1 @@ +class VectorMap{initWorldMapMarker(){new jsVectorMap({map:"world",selector:"#world-map-markers",zoomOnScroll:!1,zoomButtons:!0,markersSelectable:!0,markers:[{name:"Greenland",coords:[72,-42]},{name:"Canada",coords:[56.1304,-106.3468]},{name:"Brazil",coords:[-14.235,-51.9253]},{name:"Egypt",coords:[26.8206,30.8025]},{name:"Russia",coords:[61,105]},{name:"China",coords:[35.8617,104.1954]},{name:"United States",coords:[37.0902,-95.7129]},{name:"Norway",coords:[60.472024,8.468946]},{name:"Ukraine",coords:[48.379433,31.16558]}],markerStyle:{initial:{fill:"#5B8DEC"},selected:{fill:"#ef5f5f"}},labels:{markers:{render:a=>a.name}}})}initCanadaVectorMap(){new jsVectorMap({map:"canada",selector:"#canada-vector-map",zoomOnScroll:!1,regionStyle:{initial:{fill:"#5B8DEC"}}})}initRussiaVectorMap(){new jsVectorMap({map:"russia",selector:"#russia-vector-map",zoomOnScroll:!1,regionStyle:{initial:{fill:"#5d7186"}}})}initItalyVectorMap(){new jsVectorMap({map:"italy",selector:"#italy-vector-map",zoomOnScroll:!1,regionStyle:{initial:{fill:"#37a593"}}})}initIraqVectorMap(){new jsVectorMap({map:"iraq",selector:"#iraq-vector-map",zoomOnScroll:!1,regionStyle:{initial:{fill:"#20c8e9"}}})}initSpainVectorMap(){new jsVectorMap({map:"spain",selector:"#spain-vector-map",zoomOnScroll:!1,regionStyle:{initial:{fill:"#ffe381"}}})}initUsaVectorMap(){new jsVectorMap({map:"us_merc_en",selector:"#usa-vector-map",regionStyle:{initial:{fill:"#ffe381"}}})}init(){this.initWorldMapMarker(),this.initCanadaVectorMap(),this.initRussiaVectorMap(),this.initItalyVectorMap(),this.initIraqVectorMap(),this.initSpainVectorMap(),this.initUsaVectorMap()}}document.addEventListener("DOMContentLoaded",function(a){(new VectorMap).init()}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/ratings.js b/dj_backend_server/web/static/assets/js/pages/ratings.js new file mode 100644 index 00000000..93b34344 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/ratings.js @@ -0,0 +1,104 @@ +/* +Template Name: TailFox - Responsive Tailwind Admin Dashboard +Author: Myra Studio +Website: https://myrathemes.com/ +Contact: myrathemes@gmail.com +File: Ratings +*/ + + +// basic-rater +if (document.querySelector('#basic-rater')) + var basicRating = raterJs({ + starSize: 22, + rating: 3, + element: document.querySelector("#basic-rater"), + rateCallback: function rateCallback(rating, done) { + this.setRating(rating); + done(); + } + }); + +// rater-step +if (document.querySelector('#rater-step')) + var starRatingStep = raterJs({ + starSize: 22, + rating: 1.5, + element: document.querySelector("#rater-step"), + rateCallback: function rateCallback(rating, done) { + this.setRating(rating); + done(); + } + }); + +// rater-message +var messageDataService = { + rate: function (rating) { + return { + then: function (callback) { + setTimeout(function () { + callback((Math.random() * 5)); + }, 1000); + } + } + } +} + +if (document.querySelector('#rater-message')) + var starRatingmessage = raterJs({ + isBusyText: "Rating in progress. Please wait...", + starSize: 22, + element: document.querySelector("#rater-message"), + rateCallback: function rateCallback(rating, done) { + starRatingmessage.setRating(rating); + messageDataService.rate().then(function (avgRating) { + starRatingmessage.setRating(avgRating); + done(); + }); + } + }); + +// rater-unlimitedstar +if (document.querySelector('#rater-unlimitedstar')) + var starRatingunlimited = raterJs({ + starSize: 22, + max: 5, + readOnly: true, + rating: 3.5, + element: document.querySelector("#rater-unlimitedstar") + }); + +// rater-onhover +if (document.querySelector('#rater-onhover')) + var starRatinghover = raterJs({ + starSize: 22, + rating: 1, + element: document.querySelector("#rater-onhover"), + rateCallback: function rateCallback(rating, done) { + this.setRating(rating); + done(); + }, + onHover: function (currentIndex, currentRating) { + document.querySelector('.ratingnum').textContent = currentIndex; + }, + onLeave: function (currentIndex, currentRating) { + document.querySelector('.ratingnum').textContent = currentRating; + } + }); + +// rater-reset +if (document.querySelector('#raterreset')) + var starRatingreset = raterJs({ + starSize: 22, + rating: 2, + element: document.querySelector("#raterreset"), + rateCallback: function rateCallback(rating, done) { + this.setRating(rating); + done(); + } + }); + +if (document.querySelector('#raterreset-button')) + document.querySelector('#raterreset-button').addEventListener("click", function () { + starRatingreset.clear(); + }, false); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/ratings.min.js b/dj_backend_server/web/static/assets/js/pages/ratings.min.js new file mode 100644 index 00000000..a3b97669 --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/ratings.min.js @@ -0,0 +1 @@ +document.querySelector("#basic-rater")&&(basicRating=raterJs({starSize:22,rating:3,element:document.querySelector("#basic-rater"),rateCallback:function(e,t){this.setRating(e),t()}})),document.querySelector("#rater-step")&&(starRatingStep=raterJs({starSize:22,rating:1.5,element:document.querySelector("#rater-step"),rateCallback:function(e,t){this.setRating(e),t()}}));var basicRating,starRatingStep,starRatingmessage,starRatingunlimited,starRatinghover,starRatingreset,messageDataService={rate:function(e){return{then:function(e){setTimeout(function(){e(5*Math.random())},1e3)}}}};document.querySelector("#rater-message")&&(starRatingmessage=raterJs({isBusyText:"Rating in progress. Please wait...",starSize:22,element:document.querySelector("#rater-message"),rateCallback:function(e,t){starRatingmessage.setRating(e),messageDataService.rate().then(function(e){starRatingmessage.setRating(e),t()})}})),document.querySelector("#rater-unlimitedstar")&&(starRatingunlimited=raterJs({starSize:22,max:5,readOnly:!0,rating:3.5,element:document.querySelector("#rater-unlimitedstar")})),document.querySelector("#rater-onhover")&&(starRatinghover=raterJs({starSize:22,rating:1,element:document.querySelector("#rater-onhover"),rateCallback:function(e,t){this.setRating(e),t()},onHover:function(e,t){document.querySelector(".ratingnum").textContent=e},onLeave:function(e,t){document.querySelector(".ratingnum").textContent=t}})),document.querySelector("#raterreset")&&(starRatingreset=raterJs({starSize:22,rating:2,element:document.querySelector("#raterreset"),rateCallback:function(e,t){this.setRating(e),t()}})),document.querySelector("#raterreset-button")&&document.querySelector("#raterreset-button").addEventListener("click",function(){starRatingreset.clear()},!1); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/swiper.js b/dj_backend_server/web/static/assets/js/pages/swiper.js new file mode 100644 index 00000000..1929d2ec --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/swiper.js @@ -0,0 +1,47 @@ +/* +Template Name: TailFox - Responsive Tailwind Admin Dashboard +Author: Myra Studio +Website: https://myrathemes.com/ +Contact: myrathemes@gmail.com +File: Swiper +*/ + +var swiper = new Swiper(".default-swiper", { loop: !0, autoplay: { delay: 2500, disableOnInteraction: !1 } }), + + swiper = new Swiper(".navigation-swiper", { + loop: !0, autoplay: { delay: 2500, disableOnInteraction: !1 }, + navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev" }, pagination: { clickable: !0, el: ".swiper-pagination" } + }), + + swiper = new Swiper(".pagination-dynamic-swiper", { + loop: !0, autoplay: { delay: 2500, disableOnInteraction: !1 }, + pagination: { clickable: !0, el: ".swiper-pagination", dynamicBullets: !0 } + }), + swiper = new Swiper(".pagination-fraction-swiper", + { + loop: !0, autoplay: { delay: 2500, disableOnInteraction: !1 }, pagination: { clickable: !0, el: ".swiper-pagination", type: "fraction" }, + navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev" } + }), + swiper = new Swiper(".pagination-custom-swiper", { + loop: !0, autoplay: { delay: 2500, disableOnInteraction: !1 }, pagination: { + clickable: !0, el: ".swiper-pagination", + renderBullet: function (e, i) { return '' + (e + 1) + "" } + } + }), + swiper = new Swiper(".pagination-progress-swiper", { + loop: !0, autoplay: { delay: 2500, disableOnInteraction: !1 }, + pagination: { el: ".swiper-pagination", type: "progressbar" }, navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev" } + }), + + swiper = new Swiper(".pagination-scrollbar-swiper", { + loop: !0, autoplay: { delay: 2500, disableOnInteraction: !1 }, + scrollbar: { el: ".swiper-scrollbar", hide: !0 }, navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev" } + }), + swiper = new Swiper(".vertical-swiper", { loop: !0, direction: "vertical", autoplay: { delay: 2500, disableOnInteraction: !1 }, pagination: { el: ".swiper-pagination", clickable: !0 } }), + + swiper = new Swiper(".mousewheel-control-swiper", { loop: !0, direction: "vertical", mousewheel: !0, autoplay: { delay: 2500, disableOnInteraction: !1 }, pagination: { el: ".swiper-pagination", clickable: !0 } }), + swiper = new Swiper(".effect-fade-swiper", { loop: !0, effect: "fade", autoplay: { delay: 2500, disableOnInteraction: !1 }, pagination: { el: ".swiper-pagination", clickable: !0 } }), + swiper = new Swiper(".effect-coverflow-swiper", { loop: !0, effect: "coverflow", grabCursor: !0, centeredSlides: !0, slidesPerView: "4", coverflowEffect: { rotate: 50, stretch: 0, depth: 100, modifier: 1, slideShadows: !0 }, autoplay: { delay: 2500, disableOnInteraction: !1 }, pagination: { el: ".swiper-pagination", clickable: !0, dynamicBullets: !0 } }), + swiper = new Swiper(".effect-flip-swiper", { loop: !0, effect: "flip", grabCursor: !0, autoplay: { delay: 2500, disableOnInteraction: !1 }, pagination: { el: ".swiper-pagination", clickable: !0 } }), + swiper = new Swiper(".effect-creative-swiper", { loop: !0, grabCursor: !0, effect: "creative", creativeEffect: { prev: { shadow: !0, translate: [0, 0, -400] }, next: { translate: ["100%", 0, 0] } }, autoplay: { delay: 2500, disableOnInteraction: !1 }, pagination: { el: ".swiper-pagination", clickable: !0 } }), + swiper = new Swiper(".responsive-swiper", { loop: !0, slidesPerView: 1, spaceBetween: 10, pagination: { el: ".swiper-pagination", clickable: !0 }, breakpoints: { 640: { slidesPerView: 2, spaceBetween: 20 }, 768: { slidesPerView: 3, spaceBetween: 40 }, 1200: { slidesPerView: 4, spaceBetween: 50 } } }); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/js/pages/swiper.min.js b/dj_backend_server/web/static/assets/js/pages/swiper.min.js new file mode 100644 index 00000000..7382241c --- /dev/null +++ b/dj_backend_server/web/static/assets/js/pages/swiper.min.js @@ -0,0 +1 @@ +var swiper=new Swiper(".default-swiper",{loop:!0,autoplay:{delay:2500,disableOnInteraction:!1}}),swiper=new Swiper(".navigation-swiper",{loop:!0,autoplay:{delay:2500,disableOnInteraction:!1},navigation:{nextEl:".swiper-button-next",prevEl:".swiper-button-prev"},pagination:{clickable:!0,el:".swiper-pagination"}}),swiper=new Swiper(".pagination-dynamic-swiper",{loop:!0,autoplay:{delay:2500,disableOnInteraction:!1},pagination:{clickable:!0,el:".swiper-pagination",dynamicBullets:!0}}),swiper=new Swiper(".pagination-fraction-swiper",{loop:!0,autoplay:{delay:2500,disableOnInteraction:!1},pagination:{clickable:!0,el:".swiper-pagination",type:"fraction"},navigation:{nextEl:".swiper-button-next",prevEl:".swiper-button-prev"}}),swiper=new Swiper(".pagination-custom-swiper",{loop:!0,autoplay:{delay:2500,disableOnInteraction:!1},pagination:{clickable:!0,el:".swiper-pagination",renderBullet:function(e,i){return''+(e+1)+""}}}),swiper=new Swiper(".pagination-progress-swiper",{loop:!0,autoplay:{delay:2500,disableOnInteraction:!1},pagination:{el:".swiper-pagination",type:"progressbar"},navigation:{nextEl:".swiper-button-next",prevEl:".swiper-button-prev"}}),swiper=new Swiper(".pagination-scrollbar-swiper",{loop:!0,autoplay:{delay:2500,disableOnInteraction:!1},scrollbar:{el:".swiper-scrollbar",hide:!0},navigation:{nextEl:".swiper-button-next",prevEl:".swiper-button-prev"}}),swiper=new Swiper(".vertical-swiper",{loop:!0,direction:"vertical",autoplay:{delay:2500,disableOnInteraction:!1},pagination:{el:".swiper-pagination",clickable:!0}}),swiper=new Swiper(".mousewheel-control-swiper",{loop:!0,direction:"vertical",mousewheel:!0,autoplay:{delay:2500,disableOnInteraction:!1},pagination:{el:".swiper-pagination",clickable:!0}}),swiper=new Swiper(".effect-fade-swiper",{loop:!0,effect:"fade",autoplay:{delay:2500,disableOnInteraction:!1},pagination:{el:".swiper-pagination",clickable:!0}}),swiper=new Swiper(".effect-coverflow-swiper",{loop:!0,effect:"coverflow",grabCursor:!0,centeredSlides:!0,slidesPerView:"4",coverflowEffect:{rotate:50,stretch:0,depth:100,modifier:1,slideShadows:!0},autoplay:{delay:2500,disableOnInteraction:!1},pagination:{el:".swiper-pagination",clickable:!0,dynamicBullets:!0}}),swiper=new Swiper(".effect-flip-swiper",{loop:!0,effect:"flip",grabCursor:!0,autoplay:{delay:2500,disableOnInteraction:!1},pagination:{el:".swiper-pagination",clickable:!0}}),swiper=new Swiper(".effect-creative-swiper",{loop:!0,grabCursor:!0,effect:"creative",creativeEffect:{prev:{shadow:!0,translate:[0,0,-400]},next:{translate:["100%",0,0]}},autoplay:{delay:2500,disableOnInteraction:!1},pagination:{el:".swiper-pagination",clickable:!0}}),swiper=new Swiper(".responsive-swiper",{loop:!0,slidesPerView:1,spaceBetween:10,pagination:{el:".swiper-pagination",clickable:!0},breakpoints:{640:{slidesPerView:2,spaceBetween:20},768:{slidesPerView:3,spaceBetween:40},1200:{slidesPerView:4,spaceBetween:50}}}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/LICENSE.txt b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/LICENSE.txt new file mode 100644 index 00000000..39e18e3d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/LICENSE.txt @@ -0,0 +1,165 @@ +Fonticons, Inc. (https://fontawesome.com) + +-------------------------------------------------------------------------------- + +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/free. + +-------------------------------------------------------------------------------- + +# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) + +The Font Awesome Free download is licensed under a Creative Commons +Attribution 4.0 International License and applies to all icons packaged +as SVG and JS file types. + +-------------------------------------------------------------------------------- + +# Fonts: SIL OFL 1.1 License + +In the Font Awesome Free download, the SIL OFL license applies to all icons +packaged as web and desktop font files. + +Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com) +with Reserved Font Name: "Font Awesome". + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + +SIL OPEN FONT LICENSE +Version 1.1 - 26 February 2007 + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting — in part or in whole — any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. + +-------------------------------------------------------------------------------- + +# 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. + +Copyright 2023 Fonticons, Inc. + +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. + +-------------------------------------------------------------------------------- + +# Attribution + +Attribution is required by MIT, SIL OFL, 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/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/attribution.js b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/attribution.js new file mode 100644 index 00000000..1e58cb52 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/attribution.js @@ -0,0 +1,4 @@ +console.log(`Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com +License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) +Copyright 2023 Fonticons, Inc. +`) \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/all.min.css b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/all.min.css new file mode 100644 index 00000000..d949e4f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/all.min.css @@ -0,0 +1,9 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.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-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)} + +.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"} +.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400}:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/brands.min.css b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/brands.min.css new file mode 100644 index 00000000..3c911a9f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/brands.min.css @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/fontawesome.min.css b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/fontawesome.min.css new file mode 100644 index 00000000..9a90619c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/fontawesome.min.css @@ -0,0 +1,9 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.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-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)} + +.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-arrow-turn-right:before,.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"} +.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/regular.min.css b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/regular.min.css new file mode 100644 index 00000000..1feae61e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/regular.min.css @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/solid.min.css b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/solid.min.css new file mode 100644 index 00000000..770d98f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/solid.min.css @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/svg-with-js.min.css b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/svg-with-js.min.css new file mode 100644 index 00000000..9d5a9b9b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/svg-with-js.min.css @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +:host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Solid";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Regular";--fa-font-light:normal 300 1em/1 "Font Awesome 6 Light";--fa-font-thin:normal 100 1em/1 "Font Awesome 6 Thin";--fa-font-duotone:normal 900 1em/1 "Font Awesome 6 Duotone";--fa-font-sharp-solid:normal 900 1em/1 "Font Awesome 6 Sharp";--fa-font-sharp-regular:normal 400 1em/1 "Font Awesome 6 Sharp";--fa-font-sharp-light:normal 300 1em/1 "Font Awesome 6 Sharp";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}svg:not(:host).svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible;box-sizing:content-box}.svg-inline--fa{display:var(--fa-display,inline-block);height:1em;overflow:visible;vertical-align:-.125em}.svg-inline--fa.fa-2xs{vertical-align:.1em}.svg-inline--fa.fa-xs{vertical-align:0}.svg-inline--fa.fa-sm{vertical-align:-.07143em}.svg-inline--fa.fa-lg{vertical-align:-.2em}.svg-inline--fa.fa-xl{vertical-align:-.25em}.svg-inline--fa.fa-2xl{vertical-align:-.3125em}.svg-inline--fa.fa-pull-left{margin-right:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-pull-right{margin-left:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-li{width:var(--fa-li-width,2em);top:.25em}.svg-inline--fa.fa-fw{width:var(--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-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.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{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:var(--fa-counter-background-color,#ff253a);border-radius:var(--fa-counter-border-radius,1em);box-sizing:border-box;color:var(--fa-inverse,#fff);line-height:var(--fa-counter-line-height,1);max-width:var(--fa-counter-max-width,5em);min-width:var(--fa-counter-min-width,1.5em);overflow:hidden;padding:var(--fa-counter-padding,.25em .5em);right:var(--fa-right,0);text-overflow:ellipsis;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-counter-scale,.25));transform:scale(var(--fa-counter-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-bottom-right{bottom:var(--fa-bottom,0);right:var(--fa-right,0);top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom right;transform-origin:bottom right}.fa-layers-bottom-left{bottom:var(--fa-bottom,0);left:var(--fa-left,0);right:auto;top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom left;transform-origin:bottom left}.fa-layers-top-right{top:var(--fa-top,0);right:var(--fa-right,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-top-left{left:var(--fa-left,0);right:auto;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top left;transform-origin:top left}.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-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;vertical-align:middle;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;z-index:var(--fa-stack-z-index,auto)}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor)}.svg-inline--fa .fa-secondary,.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fa-duotone.fa-inverse,.fad.fa-inverse{color:var(--fa-inverse,#fff)} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/v4-font-face.min.css b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/v4-font-face.min.css new file mode 100644 index 00000000..71e6ee65 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/v4-font-face.min.css @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/v4-shims.min.css b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/v4-shims.min.css new file mode 100644 index 00000000..64e4e8d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/v4-shims.min.css @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +.fa.fa-glass:before{content:"\f000"}.fa.fa-envelope-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-star-o{font-family:"Font Awesome 6 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 6 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-home:before{content:"\f015"}.fa.fa-file-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 6 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 6 Free";font-weight:400}.fa.fa-list-alt:before{content:"\f022"}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-edit{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-edit:before{content:"\f044"}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 6 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 6 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 6 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-o:before,.fa.fa-bar-chart:before{content:"\e0e3"}.fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-twitter-square:before{content:"\f081"}.fa.fa-facebook-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-square:before{content:"\f082"}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 6 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 6 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 6 Brands";font-weight:400}.fa.fa-github-square:before{content:"\f092"}.fa.fa-lemon-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-globe:before{content:"\f57d"}.fa.fa-tasks:before{content:"\f828"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-cut:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-save{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-save:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-magic:before{content:"\e2ca"}.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-pinterest-square:before{content:"\f0d3"}.fa.fa-google-plus-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-square:before{content:"\f0d4"}.fa.fa-google-plus{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.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 6 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:"\f625"}.fa.fa-comment-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard:before{content:"\f0ea"}.fa.fa-lightbulb-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f0ed"}.fa.fa-cloud-upload:before{content:"\f0ee"}.fa.fa-bell-o{font-family:"Font Awesome 6 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 6 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 6 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 6 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 6 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 6 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 6 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f5c0"}.fa.fa-star-half-empty{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f5c0"}.fa.fa-star-half-full{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f5c0"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before,.fa.fa-unlink:before{content:"\f127"}.fa.fa-calendar-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-unlock-alt:before{content:"\f09c"}.fa.fa-minus-square-o{font-family:"Font Awesome 6 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 6 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 6 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:"\24"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\e1bc"}.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 6 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:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f884"}.fa.fa-sort-amount-desc:before{content:"\f160"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-youtube-square:before{content:"\f431"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-xing-square:before{content:"\f169"}.fa.fa-youtube-play{font-family:"Font Awesome 6 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 6 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-tumblr-square:before{content:"\f174"}.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 6 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 6 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 6 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-vimeo-square:before{content:"\f194"}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\e2bb"}.fa.fa-plus-square-o{font-family:"Font Awesome 6 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 6 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-google,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-reddit-square:before{content:"\f1a2"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-behance-square:before{content:"\f1b5"}.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-steam-square:before{content:"\f1b7"}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 6 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 6 Brands";font-weight:400}.fa.fa-life-bouy:before,.fa.fa-life-buoy:before,.fa.fa-life-saver:before,.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-git-square:before{content:"\f1d2"}.fa.fa-git,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 6 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 6 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 6 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-futbol-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 6 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 6 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 6 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 6 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 6 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 6 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,.fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-lastfm-square:before{content:"\f203"}.fa.fa-angellist,.fa.fa-ioxhost{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 6 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-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 6 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before,.fa.fa-transgender:before{content:"\f224"}.fa.fa-transgender-alt:before{content:"\f225"}.fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 6 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 6 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 6 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 6 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 6 Brands";font-weight:400}.fa.fa-clone{font-family:"Font Awesome 6 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 6 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-creative-commons,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-odnoklassniki-square:before{content:"\f264"}.fa.fa-chrome,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-internet-explorer,.fa.fa-opera,.fa.fa-safari,.fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 6 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 6 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 6 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 6 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 6 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 6 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 6 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-viadeo,.fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-viadeo-square:before{content:"\f2aa"}.fa.fa-snapchat,.fa.fa-snapchat-ghost{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-ghost:before{content:"\f2ab"}.fa.fa-snapchat-square{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-snapchat-square:before{content:"\f2ad"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-themeisle,.fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 6 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 6 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 6 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 6 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 6 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 6 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 6 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 6 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-meetup,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/v5-font-face.min.css b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/v5-font-face.min.css new file mode 100644 index 00000000..ca2f91a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/css/v5-font-face.min.css @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/js/all.min.js b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/js/all.min.js new file mode 100644 index 00000000..5492c195 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/js/all.min.js @@ -0,0 +1,6 @@ +/*! + * Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +!function(){"use strict";var c={},l={};try{"undefined"!=typeof window&&(c=window),"undefined"!=typeof document&&(l=document)}catch(c){}var s=(c.navigator||{}).userAgent,a=void 0===s?"":s,z=c,e=l;z.document,e.documentElement&&e.head&&"function"==typeof e.addEventListener&&e.createElement,~a.indexOf("MSIE")||a.indexOf("Trident/");function H(l,c){var s,a=Object.keys(l);return Object.getOwnPropertySymbols&&(s=Object.getOwnPropertySymbols(l),c&&(s=s.filter(function(c){return Object.getOwnPropertyDescriptor(l,c).enumerable})),a.push.apply(a,s)),a}function t(l){for(var c=1;cc.length)&&(l=c.length);for(var s=0,a=new Array(l);sc.length)&&(l=c.length);for(var s=0,a=new Array(l);sc.length)&&(l=c.length);for(var s=0,a=new Array(l);sc.length)&&(l=c.length);for(var s=0,a=new Array(l);s>>0;s--;)l[s]=c[s];return l}function a1(c){return c.classList?s1(c.classList):(c.getAttribute("class")||"").split(" ").filter(function(c){return c})}function z1(c){return"".concat(c).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function e1(s){return Object.keys(s||{}).reduce(function(c,l){return c+"".concat(l,": ").concat(s[l].trim(),";")},"")}function H1(c){return c.size!==J.size||c.x!==J.x||c.y!==J.y||c.rotate!==J.rotate||c.flipX||c.flipY}function t1(){var c,l,s=b,a=Q.cssPrefix,z=Q.replacementClass,e=':host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Solid";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Regular";--fa-font-light:normal 300 1em/1 "Font Awesome 6 Light";--fa-font-thin:normal 100 1em/1 "Font Awesome 6 Thin";--fa-font-duotone:normal 900 1em/1 "Font Awesome 6 Duotone";--fa-font-sharp-solid:normal 900 1em/1 "Font Awesome 6 Sharp";--fa-font-sharp-regular:normal 400 1em/1 "Font Awesome 6 Sharp";--fa-font-sharp-light:normal 300 1em/1 "Font Awesome 6 Sharp";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}svg:not(:host).svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible;box-sizing:content-box}.svg-inline--fa{display:var(--fa-display,inline-block);height:1em;overflow:visible;vertical-align:-.125em}.svg-inline--fa.fa-2xs{vertical-align:.1em}.svg-inline--fa.fa-xs{vertical-align:0}.svg-inline--fa.fa-sm{vertical-align:-.0714285705em}.svg-inline--fa.fa-lg{vertical-align:-.2em}.svg-inline--fa.fa-xl{vertical-align:-.25em}.svg-inline--fa.fa-2xl{vertical-align:-.3125em}.svg-inline--fa.fa-pull-left{margin-right:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-pull-right{margin-left:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-li{width:var(--fa-li-width,2em);top:.25em}.svg-inline--fa.fa-fw{width:var(--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-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.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{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:var(--fa-counter-background-color,#ff253a);border-radius:var(--fa-counter-border-radius,1em);box-sizing:border-box;color:var(--fa-inverse,#fff);line-height:var(--fa-counter-line-height,1);max-width:var(--fa-counter-max-width,5em);min-width:var(--fa-counter-min-width,1.5em);overflow:hidden;padding:var(--fa-counter-padding,.25em .5em);right:var(--fa-right,0);text-overflow:ellipsis;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-counter-scale,.25));transform:scale(var(--fa-counter-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-bottom-right{bottom:var(--fa-bottom,0);right:var(--fa-right,0);top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom right;transform-origin:bottom right}.fa-layers-bottom-left{bottom:var(--fa-bottom,0);left:var(--fa-left,0);right:auto;top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom left;transform-origin:bottom left}.fa-layers-top-right{top:var(--fa-top,0);right:var(--fa-right,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-top-left{left:var(--fa-left,0);right:auto;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top left;transform-origin:top left}.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-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.0833333337em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.0714285718em;vertical-align:.0535714295em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.0416666682em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width,2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}100%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}100%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}24%,8%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}100%,40%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}24%,8%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}100%,40%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;vertical-align:middle;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;z-index:var(--fa-stack-z-index,auto)}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-sr-only,.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.fa-sr-only-focusable:not(:focus),.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor);opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fa-duotone.fa-inverse,.fad.fa-inverse{color:var(--fa-inverse,#fff)}';return"fa"===a&&z===s||(c=new RegExp("\\.".concat("fa","\\-"),"g"),l=new RegExp("\\--".concat("fa","\\-"),"g"),s=new RegExp("\\.".concat(s),"g"),e=e.replace(c,".".concat(a,"-")).replace(l,"--".concat(a,"-")).replace(s,".".concat(z))),e}var V1=!1;function r1(){Q.autoAddCss&&!V1&&(function(c){if(c&&L){var l=C.createElement("style");l.setAttribute("type","text/css"),l.innerHTML=c;for(var s=C.head.childNodes,a=null,z=s.length-1;-1").concat(a.map(o1).join(""),"")}function f1(c,l,s){if(c&&c[l]&&c[l][s])return{prefix:l,iconName:s,icon:c[l][s]}}L&&((i1=(C.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(C.readyState))||C.addEventListener("DOMContentLoaded",M1));function v1(c,l,s,a){for(var z,e,H=Object.keys(c),t=H.length,V=void 0!==a?C1(l,a):l,r=void 0===s?(z=1,c[H[0]]):(z=0,s);zc.length)&&(l=c.length);for(var z=0,h=new Array(l);zt.length)&&(e=t.length);for(var n=0,o=new Array(e);n>16)+(e>>16)+(n>>16)<<16|65535&n}function c(t,e,n,o,r,i){return u((i=u(u(e,t),u(o,i)))<>>32-r,n)}function d(t,e,n,o,r,i,a){return c(e&n|~e&o,t,e,r,i,a)}function m(t,e,n,o,r,i,a){return c(e&o|n&~o,t,e,r,i,a)}function g(t,e,n,o,r,i,a){return c(e^n^o,t,e,r,i,a)}function p(t,e,n,o,r,i,a){return c(n^(e|~o),t,e,r,i,a)}function a(t,e){var n,o,r,i;t[e>>5]|=128<>>9<<4)]=e;for(var a=1732584193,c=-271733879,f=-1732584194,s=271733878,l=0;l>5]>>>o%32&255);return e}function s(t){var e=[];for(e[(t.length>>2)-1]=void 0,o=0;o>5]|=(255&t.charCodeAt(o/8))<>>4&15)+n.charAt(15&e);return o}function n(t){return unescape(encodeURIComponent(t))}function r(t){return f(a(s(t=n(t)),8*t.length))}function i(t,e){return function(t,e){var n,o=s(t),r=[],i=[];for(r[15]=i[15]=void 0,16 element that loads this detection:"),console.info("\t%c".concat(O,"%c: milliseconds to wait for each test before deciding whether it's a conflict."),"font-weight: bold;","font-size: normal;"),console.info("\t%c".concat(D,"%c: milliseconds to wait for the browser to accumulate test results before giving up."),"font-weight: bold;","font-size: normal;"),C({maxDuration:t,showProgress:!0,progressIndicator:"waiting...",fn:function(){return Object.keys(n.conflict).length+Object.keys(n.noConflict).length>=i}}).then(function(){console.info("DONE!"),k({nodesTested:n,nodesFound:r}),e({nodesTested:n,nodesFound:r}),console.groupEnd()}).catch(function(t){"timeout"===t?console.info("TIME OUT! We waited until we got tired. Here's what we found:"):(console.info("Whoops! We hit an error:",t),console.info("Here's what we'd found up until that error:")),k({nodesTested:n,nodesFound:r}),e({nodesTested:n,nodesFound:r}),console.groupEnd()}))}var S=l.FontAwesomeDetection||{},N=a(a(a({},{report:function(t){var e,n=t.nodesTested,o=t.nodesFound,r={};for(e in o)n.conflict[e]||n.noConflict[e]||(r[e]=o[e]);if(0<(t=Object.keys(n.conflict).length)){console.info("%cConflict".concat(1t.length)&&(a=t.length);for(var e=0,n=new Array(a);e>>0;e--;)a[e]=t[e];return a}function nt(t){return t.classList?et(t.classList):(t.getAttribute("class")||"").split(" ").filter(function(t){return t})}function it(t){return"".concat(t).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function rt(e){return Object.keys(e||{}).reduce(function(t,a){return t+"".concat(a,": ").concat(e[a].trim(),";")},"")}function ot(t){return t.size!==$.size||t.x!==$.x||t.y!==$.y||t.rotate!==$.rotate||t.flipX||t.flipY}function st(){var t,a,e=A,n=J.cssPrefix,i=J.replacementClass,r=':host,:root{--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Solid";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Regular";--fa-font-light:normal 300 1em/1 "Font Awesome 6 Light";--fa-font-thin:normal 100 1em/1 "Font Awesome 6 Thin";--fa-font-duotone:normal 900 1em/1 "Font Awesome 6 Duotone";--fa-font-sharp-solid:normal 900 1em/1 "Font Awesome 6 Sharp";--fa-font-sharp-regular:normal 400 1em/1 "Font Awesome 6 Sharp";--fa-font-sharp-light:normal 300 1em/1 "Font Awesome 6 Sharp";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}svg:not(:host).svg-inline--fa,svg:not(:root).svg-inline--fa{overflow:visible;box-sizing:content-box}.svg-inline--fa{display:var(--fa-display,inline-block);height:1em;overflow:visible;vertical-align:-.125em}.svg-inline--fa.fa-2xs{vertical-align:.1em}.svg-inline--fa.fa-xs{vertical-align:0}.svg-inline--fa.fa-sm{vertical-align:-.0714285705em}.svg-inline--fa.fa-lg{vertical-align:-.2em}.svg-inline--fa.fa-xl{vertical-align:-.25em}.svg-inline--fa.fa-2xl{vertical-align:-.3125em}.svg-inline--fa.fa-pull-left{margin-right:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-pull-right{margin-left:var(--fa-pull-margin,.3em);width:auto}.svg-inline--fa.fa-li{width:var(--fa-li-width,2em);top:.25em}.svg-inline--fa.fa-fw{width:var(--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-counter,.fa-layers-text{display:inline-block;position:absolute;text-align:center}.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{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:var(--fa-counter-background-color,#ff253a);border-radius:var(--fa-counter-border-radius,1em);box-sizing:border-box;color:var(--fa-inverse,#fff);line-height:var(--fa-counter-line-height,1);max-width:var(--fa-counter-max-width,5em);min-width:var(--fa-counter-min-width,1.5em);overflow:hidden;padding:var(--fa-counter-padding,.25em .5em);right:var(--fa-right,0);text-overflow:ellipsis;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-counter-scale,.25));transform:scale(var(--fa-counter-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-bottom-right{bottom:var(--fa-bottom,0);right:var(--fa-right,0);top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom right;transform-origin:bottom right}.fa-layers-bottom-left{bottom:var(--fa-bottom,0);left:var(--fa-left,0);right:auto;top:auto;-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:bottom left;transform-origin:bottom left}.fa-layers-top-right{top:var(--fa-top,0);right:var(--fa-right,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top right;transform-origin:top right}.fa-layers-top-left{left:var(--fa-left,0);right:auto;top:var(--fa-top,0);-webkit-transform:scale(var(--fa-layers-scale,.25));transform:scale(var(--fa-layers-scale,.25));-webkit-transform-origin:top left;transform-origin:top left}.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-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.0833333337em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.0714285718em;vertical-align:.0535714295em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.0416666682em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width,2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{-webkit-animation-name:fa-beat;animation-name:fa-beat;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{-webkit-animation-name:fa-bounce;animation-name:fa-bounce;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{-webkit-animation-name:fa-fade;animation-name:fa-fade;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade{-webkit-animation-name:fa-beat-fade;animation-name:fa-beat-fade;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1));animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{-webkit-animation-name:fa-flip;animation-name:fa-flip;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{-webkit-animation-name:fa-shake;animation-name:fa-shake;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-delay:var(--fa-animation-delay,0s);animation-delay:var(--fa-animation-delay,0s);-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,2s);animation-duration:var(--fa-animation-duration,2s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,linear);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{-webkit-animation-name:fa-spin;animation-name:fa-spin;-webkit-animation-direction:var(--fa-animation-direction,normal);animation-direction:var(--fa-animation-direction,normal);-webkit-animation-duration:var(--fa-animation-duration,1s);animation-duration:var(--fa-animation-duration,1s);-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-iteration-count:var(--fa-animation-iteration-count,infinite);-webkit-animation-timing-function:var(--fa-animation-timing,steps(8));animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{-webkit-animation-delay:-1ms;animation-delay:-1ms;-webkit-animation-duration:1ms;animation-duration:1ms;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:0s;transition-duration:0s}}@-webkit-keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-beat{0%,90%{-webkit-transform:scale(1);transform:scale(1)}45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}}@-webkit-keyframes fa-bounce{0%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}100%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}}@keyframes fa-bounce{0%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{-webkit-transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}100%{-webkit-transform:scale(1,1) translateY(0);transform:scale(1,1) translateY(0)}}@-webkit-keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@-webkit-keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}}@-webkit-keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-flip{50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@-webkit-keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}24%,8%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}100%,40%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes fa-shake{0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}24%,8%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}100%,40%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}.fa-rotate-by{-webkit-transform:rotate(var(--fa-rotate-angle,none));transform:rotate(var(--fa-rotate-angle,none))}.fa-stack{display:inline-block;vertical-align:middle;height:2em;position:relative;width:2.5em}.fa-stack-1x,.fa-stack-2x{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;z-index:var(--fa-stack-z-index,auto)}.svg-inline--fa.fa-stack-1x{height:1em;width:1.25em}.svg-inline--fa.fa-stack-2x{height:2em;width:2.5em}.fa-inverse{color:var(--fa-inverse,#fff)}.fa-sr-only,.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.fa-sr-only-focusable:not(:focus),.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.svg-inline--fa .fa-primary{fill:var(--fa-primary-color,currentColor);opacity:var(--fa-primary-opacity,1)}.svg-inline--fa .fa-secondary{fill:var(--fa-secondary-color,currentColor);opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-primary{opacity:var(--fa-secondary-opacity,.4)}.svg-inline--fa.fa-swap-opacity .fa-secondary{opacity:var(--fa-primary-opacity,1)}.svg-inline--fa mask .fa-primary,.svg-inline--fa mask .fa-secondary{fill:#000}.fa-duotone.fa-inverse,.fad.fa-inverse{color:var(--fa-inverse,#fff)}';return"fa"===n&&i===e||(t=new RegExp("\\.".concat("fa","\\-"),"g"),a=new RegExp("\\--".concat("fa","\\-"),"g"),e=new RegExp("\\.".concat(e),"g"),r=r.replace(t,".".concat(n,"-")).replace(a,"--".concat(n,"-")).replace(e,".".concat(i))),r}var ct=!1;function ft(){J.autoAddCss&&!ct&&(function(t){if(t&&y){var a=h.createElement("style");a.setAttribute("type","text/css"),a.innerHTML=t;for(var e=h.head.childNodes,n=null,i=e.length-1;-1").concat(n.map(pt).join(""),"")}function vt(t,a,e){if(t&&t[a]&&t[a][e])return{prefix:a,iconName:e,icon:t[a][e]}}y&&((dt=(h.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(h.readyState))||h.addEventListener("DOMContentLoaded",lt));function gt(t,a,e,n){for(var i,r,o=Object.keys(t),s=o.length,c=void 0!==n?ht(a,n):a,f=void 0===e?(i=1,t[o[0]]):(i=0,e);ic.length)&&(s=c.length);for(var l=0,z=new Array(s);lc.length)&&(s=c.length);for(var l=0,z=new Array(s);la.length)&&(e=a.length);for(var l=0,r=new Array(e);l", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 192C0 103.6 71.6 32 160 32s160 71.6 160 160V320c0 88.4-71.6 160-160 160S0 408.4 0 320V192zM160 96c-53 0-96 43-96 96V320c0 53 43 96 96 96s96-43 96-96V192c0-53-43-96-96-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "1": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit One", + "one" + ] + }, + "unicode": "31", + "label": "1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M160 64c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.8 1.6l-96 64C-.5 111.2-4.4 131 5.4 145.8s29.7 18.7 44.4 8.9L96 123.8V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "2": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Two", + "two" + ] + }, + "unicode": "32", + "label": "2", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M142.9 96c-21.5 0-42.2 8.5-57.4 23.8L54.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L40.2 74.5C67.5 47.3 104.4 32 142.9 32C223 32 288 97 288 177.1c0 38.5-15.3 75.4-42.5 102.6L109.3 416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L200.2 234.5c15.2-15.2 23.8-35.9 23.8-57.4c0-44.8-36.3-81.1-81.1-81.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "3": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Three", + "three" + ] + }, + "unicode": "33", + "label": "3", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H272c13.2 0 25 8.1 29.8 20.4s1.5 26.3-8.2 35.2L162.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136H105.4C63 480 24.2 456 5.3 418.1l-1.9-3.8c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l1.9 3.8c8.1 16.3 24.8 26.5 42.9 26.5H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H80c-13.2 0-25-8.1-29.8-20.4s-1.5-26.3 8.2-35.2L189.7 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "4": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Four", + "four" + ] + }, + "unicode": "34", + "label": "4", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M189 77.6c7.5-16 .7-35.1-15.3-42.6s-35.1-.7-42.6 15.3L3 322.4c-4.7 9.9-3.9 21.5 1.9 30.8S21 368 32 368H256v80c0 17.7 14.3 32 32 32s32-14.3 32-32V368h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320V160c0-17.7-14.3-32-32-32s-32 14.3-32 32V304H82.4L189 77.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "5": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Five", + "five" + ] + }, + "unicode": "35", + "label": "5", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32.5 58.3C35.3 43.1 48.5 32 64 32H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H90.7L70.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136H100.5c-39.4 0-75.4-22.3-93-57.5l-4.1-8.2c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l4.1 8.2c6.8 13.6 20.6 22.1 35.8 22.1H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H32c-9.5 0-18.5-4.2-24.6-11.5s-8.6-16.9-6.9-26.2l32-176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "6": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Six", + "six" + ] + }, + "unicode": "36", + "label": "6", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M232.4 84.7c11.4-13.5 9.7-33.7-3.8-45.1s-33.7-9.7-45.1 3.8L38.6 214.7C14.7 242.9 1.1 278.4 .1 315.2c0 1.4-.1 2.9-.1 4.3c0 .2 0 .3 0 .5c0 88.4 71.6 160 160 160s160-71.6 160-160c0-85.5-67.1-155.4-151.5-159.8l63.9-75.6zM256 320A96 96 0 1 1 64 320a96 96 0 1 1 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "7": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Seven", + "seven" + ] + }, + "unicode": "37", + "label": "7", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H288c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-224 384c-8.9 15.3-28.5 20.4-43.8 11.5s-20.4-28.5-11.5-43.8L232.3 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "8": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Eight", + "eight" + ] + }, + "unicode": "38", + "label": "8", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M304 160c0-70.7-57.3-128-128-128H144C73.3 32 16 89.3 16 160c0 34.6 13.7 66 36 89C20.5 272.3 0 309.8 0 352c0 70.7 57.3 128 128 128h64c70.7 0 128-57.3 128-128c0-42.2-20.5-79.7-52-103c22.3-23 36-54.4 36-89zM176.1 288H192c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64h15.9c0 0 .1 0 .1 0h32c0 0 .1 0 .1 0zm0-64c0 0 0 0 0 0H144c0 0 0 0 0 0c-35.3 0-64-28.7-64-64c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64c0 35.3-28.6 64-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "9": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Nine", + "nine" + ] + }, + "unicode": "39", + "label": "9", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 192a96 96 0 1 0 192 0A96 96 0 1 0 64 192zm87.5 159.8C67.1 347.4 0 277.5 0 192C0 103.6 71.6 32 160 32s160 71.6 160 160c0 2.6-.1 5.3-.2 7.9c-1.7 35.7-15.2 70-38.4 97.4l-145 171.4c-11.4 13.5-31.6 15.2-45.1 3.8s-15.2-31.6-3.8-45.1l63.9-75.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "42-group": { + "aliases": { + "names": [ + "innosoft" + ] + }, + "changes": [ + "5.15.0", + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e080", + "label": "42.group", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96V416C341.011 416 361.818 411.861 381.23 403.821C400.641 395.78 418.28 383.995 433.138 369.138C447.995 354.28 459.78 336.641 467.821 317.23C475.861 297.818 480 277.011 480 256C480 234.989 475.861 214.182 467.821 194.771C459.78 175.359 447.995 157.72 433.138 142.863C418.28 128.005 400.641 116.22 381.23 108.179C361.818 100.139 341.011 96 320 96ZM0 256L160.002 416L320.003 256L160.002 96L0 256ZM480 256C480 277.011 484.138 297.818 492.179 317.23C500.219 336.643 512.005 354.28 526.862 369.138C541.72 383.995 559.357 395.781 578.77 403.821C598.182 411.862 618.989 416 640 416V96C597.565 96 556.869 112.858 526.862 142.863C496.857 172.869 480 213.565 480 256Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "500px": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f26e", + "label": "500px", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "a": { + "aliases": { + "unicodes": { + "composite": [ + "61" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter A", + "Latin Small Letter A", + "letter" + ] + }, + "unicode": "41", + "label": "A", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M221.5 51.7C216.6 39.8 204.9 32 192 32s-24.6 7.8-29.5 19.7l-120 288-40 96c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L93.3 384H290.7l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-40-96-120-288zM264 320H120l72-172.8L264 320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "accessible-icon": { + "aliases": { + "unicodes": { + "composite": [ + "f29b" + ] + } + }, + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "handicap", + "person", + "wheelchair", + "wheelchair-alt" + ] + }, + "unicode": "f368", + "label": "Accessible Icon", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "accusoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f369", + "label": "Accusoft", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M322.1 252v-1l-51.2-65.8s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3zm160.1 120.1c13.3 16.1 20.7 13.3 30.8 9.3 3.2-1.2 115.4-47.6 117.8-48.9 8-4.3-1.7-16.7-7.2-23.4-2.1-2.5-205.1-245.6-207.2-248.3-9.7-12.2-14.3-12.9-38.4-12.8-10.2 0-106.8.5-116.5.6-19.2.1-32.9-.3-19.2 16.9C250 75 476.5 365.2 482.2 372.1zm152.7 1.6c-2.3-.3-24.6-4.7-38-7.2 0 0-115 50.4-117.5 51.6-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "address-book": { + "aliases": { + "names": [ + "contact-book" + ], + "unicodes": { + "composite": [ + "f2ba" + ], + "secondary": [ + "10f2b9" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "directory", + "index", + "little black book", + "rolodex" + ] + }, + "unicode": "f2b9", + "label": "Address Book", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 0C60.7 0 32 28.7 32 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H96zM208 288h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80zM496 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V336z" + }, + "regular": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M384 48c8.8 0 16 7.2 16 16V448c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H384zM96 0C60.7 0 32 28.7 32 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H96zM240 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H208zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80zM496 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "address-card": { + "aliases": { + "names": [ + "contact-card", + "vcard" + ], + "unicodes": { + "composite": [ + "f2bc" + ], + "secondary": [ + "10f2bb" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "about", + "contact", + "id", + "identification", + "postcard", + "profile", + "registration" + ] + }, + "unicode": "f2bb", + "label": "Address Card", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm80 256h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zm256-32H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H512zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM208 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H304c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H176zM376 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "adn": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f170", + "label": "App.net", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "adversal": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36a", + "label": "Adversal", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "affiliatetheme": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36b", + "label": "affiliatetheme", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "airbnb": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f834", + "label": "Airbnb", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 373.12c-25.24-31.67-40.08-59.43-45-83.18-22.55-88 112.61-88 90.06 0-5.45 24.25-20.29 52-45 83.18zm138.15 73.23c-42.06 18.31-83.67-10.88-119.3-50.47 103.9-130.07 46.11-200-18.85-200-54.92 0-85.16 46.51-73.28 100.5 6.93 29.19 25.23 62.39 54.43 99.5-32.53 36.05-60.55 52.69-85.15 54.92-50 7.43-89.11-41.06-71.3-91.09 15.1-39.16 111.72-231.18 115.87-241.56 15.75-30.07 25.56-57.4 59.38-57.4 32.34 0 43.4 25.94 60.37 59.87 36 70.62 89.35 177.48 114.84 239.09 13.17 33.07-1.37 71.29-37.01 86.64zm47-136.12C280.27 35.93 273.13 32 224 32c-45.52 0-64.87 31.67-84.66 72.79C33.18 317.1 22.89 347.19 22 349.81-3.22 419.14 48.74 480 111.63 480c21.71 0 60.61-6.06 112.37-62.4 58.68 63.78 101.26 62.4 112.37 62.4 62.89.05 114.85-60.86 89.61-130.19.02-3.89-16.82-38.9-16.82-39.58z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "algolia": { + "changes": [ + "5.0.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36c", + "label": "Algolia", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1675090779, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C116.1 0 2 112.7 0 252.1C-2 393.6 112.9 510.8 254.5 511.6c43.7 .3 85.9-10.4 123.3-30.7c3.6-2 4.2-7 1.1-9.7l-24-21.2c-4.9-4.3-11.8-5.5-17.8-3c-26.1 11.1-54.5 16.8-83.7 16.4C139 461.9 46.5 366.8 48.3 252.4C50.1 139.5 142.6 48.2 256 48.2H463.7V417.2L345.9 312.5c-3.8-3.4-9.7-2.7-12.7 1.3c-18.9 25-49.7 40.6-83.9 38.2c-47.5-3.3-85.9-41.5-89.5-88.9c-4.2-56.6 40.6-103.9 96.3-103.9c50.4 0 91.9 38.8 96.2 88c.4 4.4 2.4 8.5 5.7 11.4l30.7 27.2c3.5 3.1 9 1.2 9.9-3.4c2.2-11.8 3-24.2 2.1-36.8c-4.9-72-63.3-130-135.4-134.4c-82.7-5.1-151.8 59.5-154 140.6c-2.1 78.9 62.6 147 141.6 148.7c33 .7 63.6-9.6 88.3-27.6L495 509.4c6.6 5.8 17 1.2 17-7.7V9.7c0-5.4-4.4-9.7-9.7-9.7H256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "align-center": { + "aliases": { + "unicodes": { + "secondary": [ + "10f037" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "middle", + "paragraph", + "text" + ] + }, + "unicode": "f037", + "label": "Align Center", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 64c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32zm96 128c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32zM0 448c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM352 320c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "align-justify": { + "aliases": { + "unicodes": { + "secondary": [ + "10f039" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "unicode": "f039", + "label": "Align Justify", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32zm0 256c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32zM0 192c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM448 448c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "align-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f036" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "unicode": "f036", + "label": "Align Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M288 64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32H256c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "align-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f038" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "unicode": "f038", + "label": "Align Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 64c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "alipay": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f642", + "label": "Alipay", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M377.74 32H70.26C31.41 32 0 63.41 0 102.26v307.48C0 448.59 31.41 480 70.26 480h307.48c38.52 0 69.76-31.08 70.26-69.6-45.96-25.62-110.59-60.34-171.6-88.44-32.07 43.97-84.14 81-148.62 81-70.59 0-93.73-45.3-97.04-76.37-3.97-39.01 14.88-81.5 99.52-81.5 35.38 0 79.35 10.25 127.13 24.96 16.53-30.09 26.45-60.34 26.45-60.34h-178.2v-16.7h92.08v-31.24H88.28v-19.01h109.44V92.34h50.92v50.42h109.44v19.01H248.63v31.24h88.77s-15.21 46.62-38.35 90.92c48.93 16.7 100.01 36.04 148.62 52.74V102.26C447.83 63.57 416.43 32 377.74 32zM47.28 322.95c.99 20.17 10.25 53.73 69.93 53.73 52.07 0 92.58-39.68 117.87-72.9-44.63-18.68-84.48-31.41-109.44-31.41-67.45 0-79.35 33.06-78.36 50.58z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "amazon": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f270", + "label": "Amazon", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "amazon-pay": { + "changes": [ + "5.0.2", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42c", + "label": "Amazon Pay", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M14 325.3c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7a595.88 595.88 0 0 0 127.4 46.3 616.61 616.61 0 0 0 63.2 11.8 603.33 603.33 0 0 0 95 5.2c17.4-.4 34.8-1.8 52.1-3.8a603.66 603.66 0 0 0 163.3-42.8c2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9a70 70 0 0 1-9.6 7.4c-30.7 21.1-64.2 36.4-99.6 47.9a473.31 473.31 0 0 1-75.1 17.6 431 431 0 0 1-53.2 4.8 21.3 21.3 0 0 0-2.5.3H308a21.3 21.3 0 0 0-2.5-.3c-3.6-.2-7.2-.3-10.7-.4a426.3 426.3 0 0 1-50.4-5.3A448.4 448.4 0 0 1 164 420a443.33 443.33 0 0 1-145.6-87c-1.8-1.6-3-3.8-4.4-5.7zM172 65.1l-4.3.6a80.92 80.92 0 0 0-38 15.1c-2.4 1.7-4.6 3.5-7.1 5.4a4.29 4.29 0 0 1-.4-1.4c-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6h-11.5c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3v-72.4c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zM124.6 107a3.48 3.48 0 0 1 1.7-3.3c13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9a3.57 3.57 0 0 1-1.7-3.3c.1-14.1 0-28.1 0-42.2s.1-28 0-42.1zm205.7-41.9c-1 .1-2 .3-2.9.4a148 148 0 0 0-28.9 4.1c-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9a7.84 7.84 0 0 1-.2 1.4c-.5-.1-.9 0-1.3-.1a180.56 180.56 0 0 0-32-4.9c-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4a7.36 7.36 0 0 1 1.6-1.1c.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0a4.84 4.84 0 0 0 4.8-4.7 26.2 26.2 0 0 0 .1-2.8v-106a80 80 0 0 0-.9-12.9c-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7a3.33 3.33 0 0 1-1.5 3c-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8a20.08 20.08 0 0 1-12.4-13.3 32.9 32.9 0 0 1-.1-19.4c2.5-8.3 8.4-13 16.4-15.6a61.33 61.33 0 0 1 24.8-2.2c8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3s-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3a88.42 88.42 0 0 0-21-3.9 147.32 147.32 0 0 0-39.2 1.9c-14.3 2.7-27.9 7.3-40 15.6a13.75 13.75 0 0 0-3.7 3.5 5.11 5.11 0 0 0-.5 4c.4 1.5 2.1 1.9 3.6 1.8a16.2 16.2 0 0 0 2.2-.1c7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9a71.64 71.64 0 0 1 14.4 2.7c5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1a17.6 17.6 0 0 0-1 3c-.5 2.9 1.2 4.8 4.1 4.1a10.56 10.56 0 0 0 4.8-2.5 145.91 145.91 0 0 0 12.7-13.4c12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM493.1 199q-19.35-53.55-38.7-107.2c-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5a43.1 43.1 0 0 0 1.9 6.1q29.4 72.75 59.1 145.5c1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3a42.13 42.13 0 0 1-15.4 1.1c-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8q-.15 5 0 9.9c.1 5.5 2 8 7.4 8.9a108.18 108.18 0 0 0 16.9 2c17.1.4 30.7-6.5 39.5-21.4a131.63 131.63 0 0 0 9.2-18.4q35.55-89.7 70.6-179.6a26.62 26.62 0 0 0 1.6-5.5c.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0a7.54 7.54 0 0 0-7.7 5.2c-.5 1.4-1.1 2.7-1.6 4.1l-34.8 100c-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "amilia": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36d", + "label": "Amilia", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm50.2 348c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7 0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "anchor": { + "aliases": { + "unicodes": { + "composite": [ + "2693" + ], + "secondary": [ + "10f13d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "berth", + "boat", + "dock", + "embed", + "link", + "maritime", + "moor", + "port", + "secure", + "ship", + "tool" + ] + }, + "unicode": "f13d", + "label": "Anchor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767636, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c88.4 0 160-71.6 160-160v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-56-56c-9.4-9.4-24.6-9.4-33.9 0l-56 56c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 53-43 96-96 96H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "marina", + "not affected", + "ok", + "okay", + "port" + ] + }, + "unicode": "e4aa", + "label": "Anchor Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "marina", + "port" + ] + }, + "unicode": "e4ab", + "label": "Anchor Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "marina", + "port" + ] + }, + "unicode": "e4ac", + "label": "Anchor Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767636, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "marina", + "port", + "quarantine" + ] + }, + "unicode": "e4ad", + "label": "Anchor Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8 0 15.9-.6 23.6-1.7c-4.8-9-7.6-19.3-7.6-30.3V446.7c-5.2 .9-10.5 1.3-16 1.3H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "android": { + "changes": [ + "3.2.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "robot" + ] + }, + "unicode": "f17b", + "label": "Android", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M420.55,301.93a24,24,0,1,1,24-24,24,24,0,0,1-24,24m-265.1,0a24,24,0,1,1,24-24,24,24,0,0,1-24,24m273.7-144.48,47.94-83a10,10,0,1,0-17.27-10h0l-48.54,84.07a301.25,301.25,0,0,0-246.56,0L116.18,64.45a10,10,0,1,0-17.27,10h0l47.94,83C64.53,202.22,8.24,285.55,0,384H576c-8.24-98.45-64.54-181.78-146.85-226.55" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "angellist": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f209", + "label": "AngelList", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "angle-down": { + "aliases": { + "unicodes": { + "composite": [ + "2304" + ], + "secondary": [ + "10f107" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Down Arrowhead", + "arrow", + "caret", + "download", + "expand" + ] + }, + "unicode": "f107", + "label": "Angle Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angle-left": { + "aliases": { + "unicodes": { + "composite": [ + "2039" + ], + "secondary": [ + "10f104" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Single Left-Pointing Angle Quotation Mark", + "arrow", + "back", + "caret", + "less", + "previous" + ] + }, + "unicode": "f104", + "label": "Angle Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angle-right": { + "aliases": { + "unicodes": { + "composite": [ + "203a" + ], + "secondary": [ + "10f105" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Single Right-Pointing Angle Quotation Mark", + "arrow", + "care", + "forward", + "more", + "next" + ] + }, + "unicode": "f105", + "label": "Angle Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angle-up": { + "aliases": { + "unicodes": { + "composite": [ + "2303" + ], + "secondary": [ + "10f106" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Up Arrowhead", + "arrow", + "caret", + "collapse", + "upload" + ] + }, + "unicode": "f106", + "label": "Angle Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.4 137.4c12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 205.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-down": { + "aliases": { + "names": [ + "angle-double-down" + ], + "unicodes": { + "secondary": [ + "10f103" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "download", + "expand" + ] + }, + "unicode": "f103", + "label": "Angles Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M246.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 402.7 361.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 210.7 361.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-left": { + "aliases": { + "names": [ + "angle-double-left" + ], + "unicodes": { + "composite": [ + "ab" + ], + "secondary": [ + "10f100" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left-Pointing Double Angle Quotation Mark", + "arrows", + "back", + "caret", + "laquo", + "previous", + "quote" + ] + }, + "unicode": "f100", + "label": "Angles Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160zm352-160l-160 160c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L301.3 256 438.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-right": { + "aliases": { + "names": [ + "angle-double-right" + ], + "unicodes": { + "composite": [ + "bb" + ], + "secondary": [ + "10f101" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right-Pointing Double Angle Quotation Mark", + "arrows", + "caret", + "forward", + "more", + "next", + "quote", + "raquo" + ] + }, + "unicode": "f101", + "label": "Angles Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M470.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 256 265.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 73.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-up": { + "aliases": { + "names": [ + "angle-double-up" + ], + "unicodes": { + "secondary": [ + "10f102" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "collapse", + "upload" + ] + }, + "unicode": "f102", + "label": "Angles Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M246.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L224 109.3 361.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352l-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L224 301.3 361.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angrycreative": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36e", + "label": "Angry Creative", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "angular": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f420", + "label": "Angular", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M185.7 268.1h76.2l-38.1-91.6-38.1 91.6zM223.8 32L16 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7zM354 373.8h-48.6l-26.2-65.4H168.6l-26.2 65.4H93.7L223.8 81.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ankh": { + "aliases": { + "unicodes": { + "composite": [ + "2625" + ], + "secondary": [ + "10f644" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ankh", + "amulet", + "copper", + "coptic christianity", + "copts", + "crux ansata", + "egypt", + "venus" + ] + }, + "unicode": "f644", + "label": "Ankh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 128c0-35.3 28.7-64 64-64s64 28.7 64 64c0 41.6-20.7 76.6-46.6 104.1c-5.9 6.2-11.8 11.8-17.4 16.7c-5.6-4.9-11.5-10.5-17.4-16.7C116.7 204.6 96 169.6 96 128zM160 0C89.3 0 32 57.3 32 128c0 52.4 21.5 95.5 46.8 128H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96V480c0 17.7 14.3 32 32 32s32-14.3 32-32V320h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H241.2c25.4-32.5 46.8-75.6 46.8-128C288 57.3 230.7 0 160 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "app-store": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36f", + "label": "App Store", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "app-store-ios": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f370", + "label": "iOS App Store", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f371", + "label": "Apper Systems AB", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apple": { + "changes": [ + "3.2.0", + "5.0.0", + "5.0.7", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fruit", + "ios", + "mac", + "operating system", + "os", + "osx" + ] + }, + "unicode": "f179", + "label": "Apple", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f415", + "label": "Apple Pay", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apple-whole": { + "aliases": { + "names": [ + "apple-alt" + ], + "unicodes": { + "composite": [ + "1f34e", + "1f34f" + ], + "secondary": [ + "10f5d1" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "fall", + "fruit", + "fuji", + "green", + "green apple", + "macintosh", + "orchard", + "red", + "red apple", + "seasonal", + "vegan" + ] + }, + "unicode": "f5d1", + "label": "Apple Whole", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 112c-8.8 0-16-7.2-16-16V80c0-44.2 35.8-80 80-80h16c8.8 0 16 7.2 16 16V32c0 44.2-35.8 80-80 80H224zM0 288c0-76.3 35.7-160 112-160c27.3 0 59.7 10.3 82.7 19.3c18.8 7.3 39.9 7.3 58.7 0c22.9-8.9 55.4-19.3 82.7-19.3c76.3 0 112 83.7 112 160c0 128-80 224-160 224c-16.5 0-38.1-6.6-51.5-11.3c-8.1-2.8-16.9-2.8-25 0c-13.4 4.7-35 11.3-51.5 11.3C80 512 0 416 0 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "archway": { + "aliases": { + "unicodes": { + "secondary": [ + "10f557" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arc", + "monument", + "road", + "street", + "tunnel" + ] + }, + "unicode": "f557", + "label": "Archway", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32H96h64V352c0-53 43-96 96-96s96 43 96 96V480h64 64c17.7 0 32-14.3 32-32s-14.3-32-32-32V128H32V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down": { + "aliases": { + "unicodes": { + "composite": [ + "2193" + ], + "secondary": [ + "10f063" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Downwards Arrow", + "download" + ] + }, + "unicode": "f063", + "label": "Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 470.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 370.8 224 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 306.7L54.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-1-9": { + "aliases": { + "names": [ + "sort-numeric-asc", + "sort-numeric-down" + ], + "unicodes": { + "secondary": [ + "10f162" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-asc" + ] + }, + "unicode": "f162", + "label": "Arrow Down 1 9", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M450.7 38c-8.3-6-19.1-7.7-28.8-4.4l-48 16c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l5.9-2V160H384c-17.7 0-32 14.3-32 32s14.3 32 32 32h48 48c17.7 0 32-14.3 32-32s-14.3-32-32-32H464V64c0-10.3-4.9-19.9-13.3-26zM160 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L192 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V365.7L95.6 330.4c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96C142.5 476.2 151 480 160 480zM418.3 307a32 32 0 1 1 27.4 57.9A32 32 0 1 1 418.3 307zM405.1 419.8l-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-9-1": { + "aliases": { + "names": [ + "sort-numeric-desc", + "sort-numeric-down-alt" + ], + "unicodes": { + "secondary": [ + "10f886" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-asc" + ] + }, + "unicode": "f886", + "label": "Arrow Down 9 1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L192 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V365.7L95.6 330.4c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96C142.5 476.2 151 480 160 480zM450.7 294c-8.3-6-19.1-7.7-28.8-4.4l-48 16c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l5.9-2V416H384c-17.7 0-32 14.3-32 32s14.3 32 32 32h48 48c17.7 0 32-14.3 32-32s-14.3-32-32-32H464V320c0-10.3-4.9-19.9-13.3-26zM418.3 91a32 32 0 1 1 27.4 57.9A32 32 0 1 1 418.3 91zM405.1 203.8l-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-a-z": { + "aliases": { + "names": [ + "sort-alpha-asc", + "sort-alpha-down" + ], + "unicodes": { + "secondary": [ + "10f15d" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-asc" + ] + }, + "unicode": "f15d", + "label": "Arrow Down A Z", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M183.6 469.6C177.5 476.2 169 480 160 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L128 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 320c0-17.7 14.3-32 32-32H480c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L429.3 416H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H352c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L402.7 352H352c-17.7 0-32-14.3-32-32zM416 32c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3L460.2 224H371.8l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128C392.8 38.8 403.9 32 416 32zM395.8 176h40.4L416 135.6 395.8 176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-long": { + "aliases": { + "names": [ + "long-arrow-down" + ], + "unicodes": { + "secondary": [ + "10f175" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "long-arrow-down" + ] + }, + "unicode": "f175", + "label": "Arrow Down Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 502.6c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 402.7 224 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 370.7L86.6 329.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-short-wide": { + "aliases": { + "names": [ + "sort-amount-desc", + "sort-amount-down-alt" + ], + "unicodes": { + "secondary": [ + "10f884" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-asc" + ] + }, + "unicode": "f884", + "label": "Arrow Down Short Wide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-up-across-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "border", + "crossing", + "transfer" + ] + }, + "unicode": "e4af", + "label": "Arrow Down Up Across Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M137.4 502.6c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7V288H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H448V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L384 109.3V224H192 128 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96V402.7L86.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96zM128 192h64V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192zM448 320H384V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-up-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "border", + "closed", + "crossing", + "lockdown", + "quarantine", + "transfer" + ] + }, + "unicode": "e4b0", + "label": "Arrow Down Up Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M150.6 502.6l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7V288H416V272c0-17.2 3.9-33.5 10.8-48H352V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-6-6-14.1-9.4-22.6-9.4s-16.6 3.4-22.6 9.4l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 109.3V224l-128 0H96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32H96V402.7L54.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0zM160 192V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192h64zM288 320V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320H288zm240-80c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-wide-short": { + "aliases": { + "names": [ + "sort-amount-asc", + "sort-amount-down" + ], + "unicodes": { + "secondary": [ + "10f160" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "number", + "order", + "sort-amount-asc" + ] + }, + "unicode": "f160", + "label": "Arrow Down Wide Short", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 480c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-z-a": { + "aliases": { + "names": [ + "sort-alpha-desc", + "sort-alpha-down-alt" + ], + "unicodes": { + "secondary": [ + "10f881" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-asc" + ] + }, + "unicode": "f881", + "label": "Arrow Down Z A", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M183.6 469.6C177.5 476.2 169 480 160 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L128 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 64c0-17.7 14.3-32 32-32H480c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L429.3 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H352c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L402.7 96H352c-17.7 0-32-14.3-32-32zm96 192c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3L460.2 448H371.8l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128c5.4-10.8 16.5-17.7 28.6-17.7zM395.8 400h40.4L416 359.6 395.8 400z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-left": { + "aliases": { + "unicodes": { + "composite": [ + "2190" + ], + "secondary": [ + "10f060" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Leftwards Arrow", + "back", + "previous" + ] + }, + "unicode": "f060", + "label": "Arrow Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-left-long": { + "aliases": { + "names": [ + "long-arrow-left" + ], + "unicodes": { + "secondary": [ + "10f177" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "long-arrow-left", + "previous" + ] + }, + "unicode": "f177", + "label": "Arrow Left Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288 480 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-370.7 0 73.4-73.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-pointer": { + "aliases": { + "names": [ + "mouse-pointer" + ], + "unicodes": { + "secondary": [ + "10f245" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "cursor", + "select" + ] + }, + "unicode": "f245", + "label": "Arrow Pointer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 55.2V426c0 12.2 9.9 22 22 22c6.3 0 12.4-2.7 16.6-7.5L121.2 346l58.1 116.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9L179.8 320H297.9c12.2 0 22.1-9.9 22.1-22.1c0-6.3-2.7-12.3-7.4-16.5L38.6 37.9C34.3 34.1 28.9 32 23.2 32C10.4 32 0 42.4 0 55.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right": { + "aliases": { + "unicodes": { + "composite": [ + "2192" + ], + "secondary": [ + "10f061" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rightwards Arrow", + "forward", + "next" + ] + }, + "unicode": "f061", + "label": "Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-arrow-left": { + "aliases": { + "names": [ + "exchange" + ], + "unicodes": { + "composite": [ + "21c4" + ], + "secondary": [ + "10f0ec" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rightwards Arrow Over Leftwards Arrow", + "arrow", + "arrows", + "reciprocate", + "return", + "swap", + "transfer" + ] + }, + "unicode": "f0ec", + "label": "Arrow Right Arrow Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 150.6c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.7 96 32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l306.7 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l96-96zm-333.3 352c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 416 416 416c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-from-bracket": { + "aliases": { + "names": [ + "sign-out" + ], + "unicodes": { + "secondary": [ + "10f08b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "exit", + "leave", + "log out", + "logout" + ] + }, + "unicode": "f08b", + "label": "Arrow Right From Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 192 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128zM160 96c17.7 0 32-14.3 32-32s-14.3-32-32-32L96 32C43 32 0 75 0 128L0 384c0 53 43 96 96 96l64 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32l64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-long": { + "aliases": { + "names": [ + "long-arrow-right" + ], + "unicodes": { + "secondary": [ + "10f178" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "long-arrow-right", + "next" + ] + }, + "unicode": "f178", + "label": "Arrow Right Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l370.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-to-bracket": { + "aliases": { + "names": [ + "sign-in" + ], + "unicodes": { + "secondary": [ + "10f090" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "enter", + "join", + "log in", + "login", + "sign in", + "sign up", + "sign-in", + "signin", + "signup" + ] + }, + "unicode": "f090", + "label": "Arrow Right To Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 96l64 0c17.7 0 32 14.3 32 32l0 256c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l64 0c53 0 96-43 96-96l0-256c0-53-43-96-96-96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32zm-9.4 182.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L242.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-to-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "exodus", + "rural", + "urban" + ] + }, + "unicode": "e4b3", + "label": "Arrow Right To City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48V192h40V120c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H432 336c-26.5 0-48-21.5-48-48V48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H368zM352 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H528zM512 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H528c-8.8 0-16 7.2-16 16zM166.6 153.4l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L146.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H146.7l-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-rotate-left": { + "aliases": { + "names": [ + "arrow-left-rotate", + "arrow-rotate-back", + "arrow-rotate-backward", + "undo" + ], + "unicodes": { + "composite": [ + "21ba" + ], + "secondary": [ + "10f0e2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Anticlockwise Open Circle Arrow", + "back", + "control z", + "exchange", + "oops", + "return", + "rotate", + "swap" + ] + }, + "unicode": "f0e2", + "label": "Arrow Rotate Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M125.7 160H176c17.7 0 32 14.3 32 32s-14.3 32-32 32H48c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32s32 14.3 32 32v51.2L97.6 97.6c87.5-87.5 229.3-87.5 316.8 0s87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3s-163.8-62.5-226.3 0L125.7 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-rotate-right": { + "aliases": { + "names": [ + "arrow-right-rotate", + "arrow-rotate-forward", + "redo" + ], + "unicodes": { + "composite": [ + "21bb" + ], + "secondary": [ + "10f01e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Clockwise Open Circle Arrow", + "forward", + "refresh", + "reload", + "repeat" + ] + }, + "unicode": "f01e", + "label": "Arrow Rotate Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M386.3 160H336c-17.7 0-32 14.3-32 32s14.3 32 32 32H464c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L414.4 97.6c-87.5-87.5-229.3-87.5-316.8 0s-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3s163.8-62.5 226.3 0L386.3 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-trend-down": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "line", + "stocks", + "trend" + ] + }, + "unicode": "e097", + "label": "Arrow Trend Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 352c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v82.7L342.6 137.4c-12.5-12.5-32.8-12.5-45.3 0L192 242.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0L320 205.3 466.7 352H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-trend-up": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "line", + "stocks", + "trend" + ] + }, + "unicode": "e098", + "label": "Arrow Trend Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 160c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32V288c0 17.7-14.3 32-32 32s-32-14.3-32-32V205.3L342.6 374.6c-12.5 12.5-32.8 12.5-45.3 0L192 269.3 54.6 406.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160c12.5-12.5 32.8-12.5 45.3 0L320 306.7 466.7 160H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-turn-down": { + "aliases": { + "names": [ + "level-down" + ], + "unicodes": { + "secondary": [ + "10f149" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "unicode": "f149", + "label": "Arrow Turn Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 64C14.3 64 0 49.7 0 32S14.3 0 32 0l96 0c53 0 96 43 96 96l0 306.7 73.4-73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-128 128c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 402.7 160 96c0-17.7-14.3-32-32-32L32 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-turn-up": { + "aliases": { + "names": [ + "level-up" + ], + "unicodes": { + "secondary": [ + "10f148" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "unicode": "f148", + "label": "Arrow Turn Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c53 0 96-43 96-96l0-306.7 73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 109.3 160 416c0 17.7-14.3 32-32 32l-96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up": { + "aliases": { + "unicodes": { + "composite": [ + "2191" + ], + "secondary": [ + "10f062" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Upwards Arrow", + "forward", + "upload" + ] + }, + "unicode": "f062", + "label": "Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2V448c0 17.7 14.3 32 32 32s32-14.3 32-32V141.2L329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-1-9": { + "aliases": { + "names": [ + "sort-numeric-up" + ], + "unicodes": { + "secondary": [ + "10f163" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-desc" + ] + }, + "unicode": "f163", + "label": "Arrow Up 1 9", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M450.7 38c8.3 6 13.3 15.7 13.3 26v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H432 384c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V108.4l-5.9 2c-16.8 5.6-34.9-3.5-40.5-20.2s3.5-34.9 20.2-40.5l48-16c9.8-3.3 20.5-1.6 28.8 4.4zM160 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L192 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3L95.6 181.6c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C142.5 35.8 151 32 160 32zM445.7 364.9A32 32 0 1 0 418.3 307a32 32 0 1 0 27.4 57.9zm-40.7 54.9C369.6 408.4 344 375.2 344 336c0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L449.7 467c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-9-1": { + "aliases": { + "names": [ + "sort-numeric-up-alt" + ], + "unicodes": { + "secondary": [ + "10f887" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-desc" + ] + }, + "unicode": "f887", + "label": "Arrow Up 9 1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L192 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3L95.6 181.6c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C142.5 35.8 151 32 160 32zM450.7 294c8.3 6 13.3 15.7 13.3 26v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H432 384c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V364.4l-5.9 2c-16.8 5.6-34.9-3.5-40.5-20.2s3.5-34.9 20.2-40.5l48-16c9.8-3.3 20.5-1.6 28.8 4.4zm-5-145.1A32 32 0 1 0 418.3 91a32 32 0 1 0 27.4 57.9zm-40.7 54.9C369.6 192.4 344 159.2 344 120c0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L449.7 251c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-a-z": { + "aliases": { + "names": [ + "sort-alpha-up" + ], + "unicodes": { + "secondary": [ + "10f15e" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-desc" + ] + }, + "unicode": "f15e", + "label": "Arrow Up A Z", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M183.6 42.4C177.5 35.8 169 32 160 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L128 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 320c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H429.3l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H352c-17.7 0-32 14.3-32 32zM416 32c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C439.2 38.8 428.1 32 416 32zM395.8 176L416 135.6 436.2 176H395.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-from-bracket": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "share", + "transfer", + "upload" + ] + }, + "unicode": "e09a", + "label": "Arrow Up From Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M246.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3V320c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 53 43 96 96 96H352c53 0 96-43 96-96V352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-from-ground-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "groundwater", + "spring", + "water supply", + "water table" + ] + }, + "unicode": "e4b5", + "label": "Arrow Up From Ground Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 352c17.7 0 32-14.3 32-32V109.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V320c0 17.7 14.3 32 32 32zm-18.5 69.9C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.5 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0zM192 192H48c-26.5 0-48 21.5-48 48V425c5.3-3.1 11.2-5.4 17.5-6.9c13.1-3.1 26.7-9.8 37.3-18.6c22.2-18.7 54.3-20.1 78.1-3.4c18 12.4 40.1 20.3 59.1 20.3V192zm384 48c0-26.5-21.5-48-48-48H384V416.5h0c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c6.3 1.5 12.1 3.8 17.5 6.9V240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-from-water-pump": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flood", + "groundwater", + "pump", + "submersible", + "sump pump" + ] + }, + "unicode": "e4b6", + "label": "Arrow Up From Water Pump", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 0C85.5 0 64 21.5 64 48V256H48c-26.5 0-48 21.5-48 48v96c0 8 2 15.6 5.4 22.2c3.8-1.7 7.8-3.1 12-4.1c13.1-3.1 26.7-9.8 37.3-18.6c22.2-18.7 54.3-20.1 78.1-3.4c18 12.4 40.1 20.3 59.2 20.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c4.2 1 8.2 2.4 12 4.1C574 415.6 576 408 576 400V304c0-26.5-21.5-48-48-48H480l0-146.7 25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 109.3 416 256H288V48c0-26.5-21.5-48-48-48H112zM306.5 421.9c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.5 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448c-27.5 0-55-10.6-77.5-26.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-long": { + "aliases": { + "names": [ + "long-arrow-up" + ], + "unicodes": { + "secondary": [ + "10f176" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-up", + "upload" + ] + }, + "unicode": "f176", + "label": "Arrow Up Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 109.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-right-dots": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "growth", + "increase", + "population" + ] + }, + "unicode": "e4b7", + "label": "Arrow Up Right Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h50.7L9.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V160c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H160zM576 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM448 208a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM400 384a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm128 0a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM272 384a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM144 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM576 336a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm-48-80a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-right-from-square": { + "aliases": { + "names": [ + "external-link" + ], + "unicodes": { + "secondary": [ + "10f08e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "new", + "open", + "send", + "share" + ] + }, + "unicode": "f08e", + "label": "Arrow Up Right From Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-short-wide": { + "aliases": { + "names": [ + "sort-amount-up-alt" + ], + "unicodes": { + "secondary": [ + "10f885" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-desc" + ] + }, + "unicode": "f885", + "label": "Arrow Up Short Wide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-wide-short": { + "aliases": { + "names": [ + "sort-amount-up" + ], + "unicodes": { + "secondary": [ + "10f161" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-desc" + ] + }, + "unicode": "f161", + "label": "Arrow Up Wide Short", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 480h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-z-a": { + "aliases": { + "names": [ + "sort-alpha-up-alt" + ], + "unicodes": { + "secondary": [ + "10f882" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-desc" + ] + }, + "unicode": "f882", + "label": "Arrow Up Z A", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M183.6 42.4C177.5 35.8 169 32 160 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L128 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 64c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H429.3l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H352c-17.7 0-32 14.3-32 32zm96 192c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C439.2 262.8 428.1 256 416 256zM395.8 400L416 359.6 436.2 400H395.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "scale down", + "sink" + ] + }, + "unicode": "e4b8", + "label": "Arrows Down To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M544 416L32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32l512 0c17.7 0 32-14.3 32-32s-14.3-32-32-32zm22.6-137.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L480 274.7 480 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7-41.4-41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96zm-320-45.3c-12.5-12.5-32.8-12.5-45.3 0L160 274.7 160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7L54.6 233.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-down-to-people": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focus", + "targeted" + ] + }, + "unicode": "e4b9", + "label": "Arrows Down To People", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 0c-13.3 0-24 10.7-24 24V142.1L97 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24zM360 200a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zM184 296a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zm312 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM200 441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8L264 345.5V400c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V345.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L440 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H486.2c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3H310.2c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6H134.2c-32.4 0-62.1 17.8-77.5 46.3L18.9 468.6c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L88 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V441.5zM415 153l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V142.1l-23-23c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-left-right": { + "aliases": { + "names": [ + "arrows-h" + ], + "unicodes": { + "secondary": [ + "10f07e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "expand", + "horizontal", + "landscape", + "resize", + "wide" + ] + }, + "unicode": "f07e", + "label": "Arrows Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.6 374.6l96-96c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224l-293.5 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288l293.5 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-left-right-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analysis", + "expand", + "gap" + ] + }, + "unicode": "e4ba", + "label": "Arrows Left Right To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 64c17.7 0 32 14.3 32 32l0 320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64zm214.6 73.4c12.5 12.5 12.5 32.8 0 45.3L205.3 224l229.5 0-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L434.7 288l-229.5 0 41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0zM640 96V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-rotate": { + "aliases": { + "names": [ + "refresh", + "sync" + ], + "unicodes": { + "composite": [ + "1f5d8" + ], + "secondary": [ + "10f021" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Clockwise Right and Left Semicircle Arrows", + "exchange", + "refresh", + "reload", + "rotate", + "swap" + ] + }, + "unicode": "f021", + "label": "Arrows Rotate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M105.1 202.6c7.7-21.8 20.2-42.3 37.8-59.8c62.5-62.5 163.8-62.5 226.3 0L386.3 160H336c-17.7 0-32 14.3-32 32s14.3 32 32 32H463.5c0 0 0 0 0 0h.4c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L414.4 97.6c-87.5-87.5-229.3-87.5-316.8 0C73.2 122 55.6 150.7 44.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5zM39 289.3c-5 1.5-9.8 4.2-13.7 8.2c-4 4-6.7 8.8-8.1 14c-.3 1.2-.6 2.5-.8 3.8c-.3 1.7-.4 3.4-.4 5.1V448c0 17.7 14.3 32 32 32s32-14.3 32-32V396.9l17.6 17.5 0 0c87.5 87.4 229.3 87.4 316.7 0c24.4-24.4 42.1-53.1 52.9-83.7c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.5 62.5-163.8 62.5-226.3 0l-.1-.1L125.6 352H176c17.7 0 32-14.3 32-32s-14.3-32-32-32H48.4c-1.6 0-3.2 .1-4.8 .3s-3.1 .5-4.6 1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-spin": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cycle", + "rotate", + "spin", + "whirl" + ] + }, + "unicode": "e4bb", + "label": "Arrows Spin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 96c38.4 0 73.7 13.5 101.3 36.1l-32.6 32.6c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9H448c8.8 0 16-7.2 16-16V64c0-6.5-3.9-12.3-9.9-14.8s-12.9-1.1-17.4 3.5l-34 34C363.4 52.6 312.1 32 256 32c-10.9 0-21.5 .8-32 2.3V99.2c10.3-2.1 21-3.2 32-3.2zM132.1 154.7l32.6 32.6c4.6 4.6 11.5 5.9 17.4 3.5s9.9-8.3 9.9-14.8V64c0-8.8-7.2-16-16-16H64c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l34 34C52.6 148.6 32 199.9 32 256c0 10.9 .8 21.5 2.3 32H99.2c-2.1-10.3-3.2-21-3.2-32c0-38.4 13.5-73.7 36.1-101.3zM477.7 224H412.8c2.1 10.3 3.2 21 3.2 32c0 38.4-13.5 73.7-36.1 101.3l-32.6-32.6c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8V448c0 8.8 7.2 16 16 16H448c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-34-34C459.4 363.4 480 312.1 480 256c0-10.9-.8-21.5-2.3-32zM256 416c-38.4 0-73.7-13.5-101.3-36.1l32.6-32.6c4.6-4.6 5.9-11.5 3.5-17.4s-8.3-9.9-14.8-9.9H64c-8.8 0-16 7.2-16 16l0 112c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l34-34C148.6 459.4 199.9 480 256 480c10.9 0 21.5-.8 32-2.3V412.8c-10.3 2.1-21 3.2-32 3.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-split-up-and-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agile", + "split" + ] + }, + "unicode": "e4bc", + "label": "Arrows Split Up And Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M246.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L352 109.3V384c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H416c-70.7 0-128-57.3-128-128c0-35.3-28.7-64-64-64H109.3l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L109.3 256H224c23.3 0 45.2 6.2 64 17.1V109.3l-41.4 41.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-to-circle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "center", + "concentrate", + "coordinate", + "coordination", + "focal point", + "focus" + ] + }, + "unicode": "e4bd", + "label": "Arrows To Circle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M9.4 9.4C21.9-3.1 42.1-3.1 54.6 9.4L160 114.7V96c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 4.3-.9 8.5-2.4 12.2c-1.6 3.7-3.8 7.3-6.9 10.3l-.1 .1c-3.1 3-6.6 5.3-10.3 6.9c-3.8 1.6-7.9 2.4-12.2 2.4H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h18.7L9.4 54.6C-3.1 42.1-3.1 21.9 9.4 9.4zM256 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM114.7 352H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h96 0l.1 0c8.8 0 16.7 3.6 22.5 9.3l.1 .1c3 3.1 5.3 6.6 6.9 10.3c1.6 3.8 2.4 7.9 2.4 12.2v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V397.3L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L114.7 352zM416 96c0-17.7 14.3-32 32-32s32 14.3 32 32v18.7L585.4 9.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 160H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H448c-8.8 0-16.8-3.6-22.6-9.3l-.1-.1c-3-3.1-5.3-6.6-6.9-10.3s-2.4-7.8-2.4-12.2l0-.1v0V96zM525.3 352L630.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 397.3V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V320v0c0 0 0-.1 0-.1c0-4.3 .9-8.4 2.4-12.2c1.6-3.8 3.9-7.3 6.9-10.4c5.8-5.8 13.7-9.3 22.5-9.4c0 0 .1 0 .1 0h0 96c17.7 0 32 14.3 32 32s-14.3 32-32 32H525.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-to-dot": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assembly point", + "center", + "condense", + "focus", + "minimize" + ] + }, + "unicode": "e4be", + "label": "Arrows To Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V64h32c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-64 64c-12.5 12.5-32.8 12.5-45.3 0l-64-64c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8h32V32c0-17.7 14.3-32 32-32zM169.4 393.4l64-64c12.5-12.5 32.8-12.5 45.3 0l64 64c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H288v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H192c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9zM32 224H64V192c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c12.5 12.5 12.5 32.8 0 45.3l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3l64-64c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6v32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v32c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-64-64zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-to-eye": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "center", + "coordinated assessment", + "focus" + ] + }, + "unicode": "e4bf", + "label": "Arrows To Eye", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M15 15C24.4 5.7 39.6 5.7 49 15l63 63V40c0-13.3 10.7-24 24-24s24 10.7 24 24v96c0 13.3-10.7 24-24 24H40c-13.3 0-24-10.7-24-24s10.7-24 24-24H78.1L15 49C5.7 39.6 5.7 24.4 15 15zM133.5 243.9C158.6 193.6 222.7 112 320 112s161.4 81.6 186.5 131.9c3.8 7.6 3.8 16.5 0 24.2C481.4 318.4 417.3 400 320 400s-161.4-81.6-186.5-131.9c-3.8-7.6-3.8-16.5 0-24.2zM320 320a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM591 15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-63 63H600c13.3 0 24 10.7 24 24s-10.7 24-24 24H504c-13.3 0-24-10.7-24-24V40c0-13.3 10.7-24 24-24s24 10.7 24 24V78.1l63-63zM15 497c-9.4-9.4-9.4-24.6 0-33.9l63-63H40c-13.3 0-24-10.7-24-24s10.7-24 24-24h96c13.3 0 24 10.7 24 24v96c0 13.3-10.7 24-24 24s-24-10.7-24-24V433.9L49 497c-9.4 9.4-24.6 9.4-33.9 0zm576 0l-63-63V472c0 13.3-10.7 24-24 24s-24-10.7-24-24V376c0-13.3 10.7-24 24-24h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H561.9l63 63c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-turn-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows" + ] + }, + "unicode": "e4c0", + "label": "Arrows Turn Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M297.4 9.4c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L338.7 160H128c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V224C0 153.3 57.3 96 128 96H338.7L297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416H96c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96H242.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-turn-to-dots": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destination", + "nexus" + ] + }, + "unicode": "e4c1", + "label": "Arrows Turn To Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M249.4 25.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 96 416 96c53 0 96 43 96 96v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7-14.3-32-32-32l-146.7 0 25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3l80-80zm13.3 256l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416 96 416c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM384 384a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 192A64 64 0 1 1 64 64a64 64 0 1 1 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-up-down": { + "aliases": { + "names": [ + "arrows-v" + ], + "unicodes": { + "secondary": [ + "10f07d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "expand", + "portrait", + "resize", + "tall", + "vertical" + ] + }, + "unicode": "f07d", + "label": "Arrows Up Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L128 109.3V402.7L86.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-up-down-left-right": { + "aliases": { + "names": [ + "arrows" + ], + "unicodes": { + "secondary": [ + "10f047" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "bigger", + "enlarge", + "expand", + "fullscreen", + "move", + "position", + "reorder", + "resize" + ] + }, + "unicode": "f047", + "label": "Arrows Up Down Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l9.4-9.4V224H109.3l9.4-9.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4H224V402.7l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-9.4 9.4V288H402.7l-9.4 9.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4H288V109.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-up-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "rise", + "scale up" + ] + }, + "unicode": "e4c2", + "label": "Arrows Up To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 96l512 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 32C14.3 32 0 46.3 0 64S14.3 96 32 96zM9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L96 237.3 96 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-210.7 41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96zm320 45.3c12.5 12.5 32.8 12.5 45.3 0L416 237.3 416 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-210.7 41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "artstation": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f77a", + "label": "Artstation", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M2 377.4l43 74.3A51.35 51.35 0 0 0 90.9 480h285.4l-59.2-102.6zM501.8 350L335.6 59.3A51.38 51.38 0 0 0 290.2 32h-88.4l257.3 447.6 40.7-70.5c1.9-3.2 21-29.7 2-59.1zM275 304.5l-115.5-200L44 304.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "asterisk": { + "aliases": { + "unicodes": { + "composite": [ + "2731", + "f069" + ], + "primary": [ + "f069" + ], + "secondary": [ + "102a", + "10f069" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Asterisk", + "Heavy Asterisk", + "annotation", + "details", + "reference", + "star" + ] + }, + "unicode": "2a", + "label": "Asterisk", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 32c17.7 0 32 14.3 32 32V199.5l111.5-66.9c15.2-9.1 34.8-4.2 43.9 11s4.2 34.8-11 43.9L254.2 256l114.3 68.6c15.2 9.1 20.1 28.7 11 43.9s-28.7 20.1-43.9 11L224 312.5V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V312.5L48.5 379.4c-15.2 9.1-34.8 4.2-43.9-11s-4.2-34.8 11-43.9L129.8 256 15.5 187.4c-15.2-9.1-20.1-28.7-11-43.9s28.7-20.1 43.9-11L160 199.5V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "asymmetrik": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f372", + "label": "Asymmetrik, Ltd.", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "at": { + "aliases": { + "unicodes": { + "composite": [ + "f1fa" + ], + "primary": [ + "f1fa" + ], + "secondary": [ + "10f1fa" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Commercial At", + "address", + "author", + "e-mail", + "email", + "fluctuate", + "handle" + ] + }, + "unicode": "40", + "label": "At", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767248, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64C150 64 64 150 64 256s86 192 192 192c17.7 0 32 14.3 32 32s-14.3 32-32 32C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256v32c0 53-43 96-96 96c-29.3 0-55.6-13.2-73.2-33.9C320 371.1 289.5 384 256 384c-70.7 0-128-57.3-128-128s57.3-128 128-128c27.9 0 53.7 8.9 74.7 24.1c5.7-5 13.1-8.1 21.3-8.1c17.7 0 32 14.3 32 32v80 32c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-106-86-192-192-192zm64 192a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "atlassian": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f77b", + "label": "Atlassian", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M152.2 236.4c-7.7-8.2-19.7-7.7-24.8 2.8L1.6 490.2c-5 10 2.4 21.7 13.4 21.7h175c5.8.1 11-3.2 13.4-8.4 37.9-77.8 15.1-196.3-51.2-267.1zM244.4 8.1c-122.3 193.4-8.5 348.6 65 495.5 2.5 5.1 7.7 8.4 13.4 8.4H497c11.2 0 18.4-11.8 13.4-21.7 0 0-234.5-470.6-240.4-482.3-5.3-10.6-18.8-10.8-25.6.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "atom": { + "aliases": { + "unicodes": { + "composite": [ + "269b" + ], + "secondary": [ + "10f5d2" + ] + } + }, + "changes": [ + "5.2.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atheism", + "atheist", + "atom", + "atom symbol", + "chemistry", + "electron", + "ion", + "isotope", + "neutron", + "nuclear", + "proton", + "science" + ] + }, + "unicode": "f5d2", + "label": "Atom", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 398.8c-11.8 5.1-23.4 9.7-34.9 13.5c16.7 33.8 31 35.7 34.9 35.7s18.1-1.9 34.9-35.7c-11.4-3.9-23.1-8.4-34.9-13.5zM446 256c33 45.2 44.3 90.9 23.6 128c-20.2 36.3-62.5 49.3-115.2 43.2c-22 52.1-55.6 84.8-98.4 84.8s-76.4-32.7-98.4-84.8c-52.7 6.1-95-6.8-115.2-43.2C21.7 346.9 33 301.2 66 256c-33-45.2-44.3-90.9-23.6-128c20.2-36.3 62.5-49.3 115.2-43.2C179.6 32.7 213.2 0 256 0s76.4 32.7 98.4 84.8c52.7-6.1 95 6.8 115.2 43.2c20.7 37.1 9.4 82.8-23.6 128zm-65.8 67.4c-1.7 14.2-3.9 28-6.7 41.2c31.8 1.4 38.6-8.7 40.2-11.7c2.3-4.2 7-17.9-11.9-48.1c-6.8 6.3-14 12.5-21.6 18.6zm-6.7-175.9c2.8 13.1 5 26.9 6.7 41.2c7.6 6.1 14.8 12.3 21.6 18.6c18.9-30.2 14.2-44 11.9-48.1c-1.6-2.9-8.4-13-40.2-11.7zM290.9 99.7C274.1 65.9 259.9 64 256 64s-18.1 1.9-34.9 35.7c11.4 3.9 23.1 8.4 34.9 13.5c11.8-5.1 23.4-9.7 34.9-13.5zm-159 88.9c1.7-14.3 3.9-28 6.7-41.2c-31.8-1.4-38.6 8.7-40.2 11.7c-2.3 4.2-7 17.9 11.9 48.1c6.8-6.3 14-12.5 21.6-18.6zM110.2 304.8C91.4 335 96 348.7 98.3 352.9c1.6 2.9 8.4 13 40.2 11.7c-2.8-13.1-5-26.9-6.7-41.2c-7.6-6.1-14.8-12.3-21.6-18.6zM336 256a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zm-80-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "audible": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f373", + "label": "Audible", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "audio-description": { + "aliases": { + "unicodes": { + "secondary": [ + "10f29e" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "narration", + "video", + "visual" + ] + }, + "unicode": "f29e", + "label": "Audio Description", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM213.5 173.3l72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7l-9.4-18.9H150.9l-9.4 18.9c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zm-.4 106.6L192 237.7l-21.1 42.2h42.2zM304 184c0-13.3 10.7-24 24-24h56c53 0 96 43 96 96s-43 96-96 96H328c-13.3 0-24-10.7-24-24V184zm48 24v96h32c26.5 0 48-21.5 48-48s-21.5-48-48-48H352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "austral-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Austral Sign", + "currency" + ] + }, + "unicode": "e0a9", + "label": "Austral Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M253.5 51.7C248.6 39.8 236.9 32 224 32s-24.6 7.8-29.5 19.7L122.7 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96L82.7 320H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H56L34.5 435.7c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L125.3 384H322.7l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8L392 384h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H365.3L352 288h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H325.3L253.5 51.7zM256 224H192l32-76.8L256 224zm-90.7 64H282.7L296 320H152l13.3-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "autoprefixer": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41c", + "label": "Autoprefixer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "avianex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f374", + "label": "avianex", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "aviato": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f421", + "label": "Aviato", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "award": { + "aliases": { + "unicodes": { + "secondary": [ + "10f559" + ] + } + }, + "changes": [ + "5.1.0", + "5.2.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "honor", + "praise", + "prize", + "recognition", + "ribbon", + "trophy" + ] + }, + "unicode": "f559", + "label": "Award", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M173.8 5.5c11-7.3 25.4-7.3 36.4 0L228 17.2c6 3.9 13 5.8 20.1 5.4l21.3-1.3c13.2-.8 25.6 6.4 31.5 18.2l9.6 19.1c3.2 6.4 8.4 11.5 14.7 14.7L344.5 83c11.8 5.9 19 18.3 18.2 31.5l-1.3 21.3c-.4 7.1 1.5 14.2 5.4 20.1l11.8 17.8c7.3 11 7.3 25.4 0 36.4L366.8 228c-3.9 6-5.8 13-5.4 20.1l1.3 21.3c.8 13.2-6.4 25.6-18.2 31.5l-19.1 9.6c-6.4 3.2-11.5 8.4-14.7 14.7L301 344.5c-5.9 11.8-18.3 19-31.5 18.2l-21.3-1.3c-7.1-.4-14.2 1.5-20.1 5.4l-17.8 11.8c-11 7.3-25.4 7.3-36.4 0L156 366.8c-6-3.9-13-5.8-20.1-5.4l-21.3 1.3c-13.2 .8-25.6-6.4-31.5-18.2l-9.6-19.1c-3.2-6.4-8.4-11.5-14.7-14.7L39.5 301c-11.8-5.9-19-18.3-18.2-31.5l1.3-21.3c.4-7.1-1.5-14.2-5.4-20.1L5.5 210.2c-7.3-11-7.3-25.4 0-36.4L17.2 156c3.9-6 5.8-13 5.4-20.1l-1.3-21.3c-.8-13.2 6.4-25.6 18.2-31.5l19.1-9.6C65 70.2 70.2 65 73.4 58.6L83 39.5c5.9-11.8 18.3-19 31.5-18.2l21.3 1.3c7.1 .4 14.2-1.5 20.1-5.4L173.8 5.5zM272 192a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM1.3 441.8L44.4 339.3c.2 .1 .3 .2 .4 .4l9.6 19.1c11.7 23.2 36 37.3 62 35.8l21.3-1.3c.2 0 .5 0 .7 .2l17.8 11.8c5.1 3.3 10.5 5.9 16.1 7.7l-37.6 89.3c-2.3 5.5-7.4 9.2-13.3 9.7s-11.6-2.2-14.8-7.2L74.4 455.5l-56.1 8.3c-5.7 .8-11.4-1.5-15-6s-4.3-10.7-2.1-16zm248 60.4L211.7 413c5.6-1.8 11-4.3 16.1-7.7l17.8-11.8c.2-.1 .4-.2 .7-.2l21.3 1.3c26 1.5 50.3-12.6 62-35.8l9.6-19.1c.1-.2 .2-.3 .4-.4l43.2 102.5c2.2 5.3 1.4 11.4-2.1 16s-9.3 6.9-15 6l-56.1-8.3-32.2 49.2c-3.2 5-8.9 7.7-14.8 7.2s-11-4.3-13.3-9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "aws": { + "changes": [ + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f375", + "label": "Amazon Web Services (AWS)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "b": { + "aliases": { + "unicodes": { + "composite": [ + "62" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter B", + "Latin Small Letter B", + "letter" + ] + }, + "unicode": "42", + "label": "B", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 416c0 35.3 28.7 64 64 64H192c70.7 0 128-57.3 128-128c0-46.5-24.8-87.3-62-109.7c18.7-22.3 30-51 30-82.3c0-70.7-57.3-128-128-128H64zm96 192H64V96h96c35.3 0 64 28.7 64 64s-28.7 64-64 64zM64 288h96 32c35.3 0 64 28.7 64 64s-28.7 64-64 64H64V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baby": { + "aliases": { + "unicodes": { + "secondary": [ + "10f77c" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f77c", + "label": "Baby", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 88a72 72 0 1 1 144 0A72 72 0 1 1 152 88zM39.7 144.5c13-17.9 38-21.8 55.9-8.8L131.8 162c26.8 19.5 59.1 30 92.2 30s65.4-10.5 92.2-30l36.2-26.4c17.9-13 42.9-9 55.9 8.8s9 42.9-8.8 55.9l-36.2 26.4c-13.6 9.9-28.1 18.2-43.3 25V288H128V251.7c-15.2-6.7-29.7-15.1-43.3-25L48.5 200.3c-17.9-13-21.8-38-8.8-55.9zm89.8 184.8l60.6 53-26 37.2 24.3 24.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-48-48C70 438.6 68.1 417 79.2 401.1l50.2-71.8zm128.5 53l60.6-53 50.2 71.8c11.1 15.9 9.2 37.5-4.5 51.2l-48 48c-15.6 15.6-40.9 15.6-56.6 0s-15.6-40.9 0-56.6L284 419.4l-26-37.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baby-carriage": { + "aliases": { + "names": [ + "carriage-baby" + ], + "unicodes": { + "secondary": [ + "10f77d" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buggy", + "carrier", + "infant", + "push", + "stroller", + "transportation", + "walk", + "wheels" + ] + }, + "unicode": "f77d", + "label": "Baby Carriage", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 192H.1C2.7 117.9 41.3 52.9 99 14.1c13.3-8.9 30.8-4.3 39.9 8.8L256 192zm128-32c0-35.3 28.7-64 64-64h32c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0v64c0 25.2-5.8 50.2-17 73.5s-27.8 44.5-48.6 62.3s-45.5 32-72.7 41.6S253.4 416 224 416s-58.5-5-85.7-14.6s-51.9-23.8-72.7-41.6s-37.3-39-48.6-62.3S0 249.2 0 224l224 0 160 0V160zM80 416a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm240 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "backward": { + "aliases": { + "unicodes": { + "composite": [ + "23ea" + ], + "secondary": [ + "10f04a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "double", + "fast reverse button", + "previous", + "rewind" + ] + }, + "unicode": "f04a", + "label": "Backward", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766677, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4L288 214.3V256v41.7L459.5 440.6zM256 352V256 128 96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160C4.2 237.5 0 246.5 0 256s4.2 18.5 11.5 24.6l192 160c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "backward-fast": { + "aliases": { + "names": [ + "fast-backward" + ], + "unicodes": { + "composite": [ + "23ee" + ], + "secondary": [ + "10f049" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "beginning", + "first", + "last track button", + "previous", + "previous scene", + "previous track", + "rewind", + "start", + "triangle" + ] + }, + "unicode": "f049", + "label": "Backward Fast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M493.6 445c-11.2 5.3-24.5 3.6-34.1-4.4L288 297.7V416c0 12.4-7.2 23.7-18.4 29s-24.5 3.6-34.1-4.4L64 297.7V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64s32 14.3 32 32V214.3L235.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S288 83.6 288 96V214.3L459.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S512 83.6 512 96V416c0 12.4-7.2 23.7-18.4 29z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "backward-step": { + "aliases": { + "names": [ + "step-backward" + ], + "unicodes": { + "secondary": [ + "10f048" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beginning", + "first", + "previous", + "rewind", + "start" + ] + }, + "unicode": "f048", + "label": "Backward Step", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M267.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160L64 241V96c0-17.7-14.3-32-32-32S0 78.3 0 96V416c0 17.7 14.3 32 32 32s32-14.3 32-32V271l11.5 9.6 192 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bacon": { + "aliases": { + "unicodes": { + "composite": [ + "1f953" + ], + "secondary": [ + "10f7e5" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacon", + "blt", + "breakfast", + "food", + "ham", + "lard", + "meat", + "pancetta", + "pork", + "rasher" + ] + }, + "unicode": "f7e5", + "label": "Bacon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767421, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M439.2 1.2c11.2-3.2 23.2-.1 31.4 8.1L518 56.7l-26.5 7.9c-58 16.6-98.1 39.6-129.6 67.4c-31.2 27.5-53.2 59.1-75.1 90.9l-2.3 3.3C241.6 288.7 195 356.6 72.8 417.7L37.9 435.2 9.4 406.6c-7.3-7.3-10.6-17.6-9-27.8s8.1-18.9 17.3-23.5C136.1 296.2 180.9 231 223.3 169.3l2.3-3.4c21.8-31.8 44.9-64.9 77.7-93.9c33.4-29.5 75.8-53.6 135.9-70.8zM61.8 459l25.4-12.7c129.5-64.7 179.9-138.1 223.8-202l2.2-3.3c22.1-32.1 42.1-60.5 69.9-85.1c27.5-24.3 63.4-45.2 117.3-60.6l0 0 .2-.1 43.1-12.9 23 23c8 8 11.2 19.7 8.3 30.7s-11.3 19.6-22.2 22.7c-51.9 14.8-85.6 34.7-111.1 57.2c-26.1 23-45.1 49.9-67.3 82.1l-2.2 3.2C327.8 365.9 275.5 442 142.3 508.6c-12.3 6.2-27.2 3.7-36.9-6L61.8 459z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bacteria": { + "aliases": { + "unicodes": { + "secondary": [ + "10e059" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibiotic", + "antibody", + "covid-19", + "health", + "organism", + "sick" + ] + }, + "unicode": "e059", + "label": "Bacteria", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M304.9 .7c-9.6-2.7-19.5 2.8-22.3 12.4l-4.3 15.2c-8.3-.6-16.8 0-25.2 1.9c-7.3 1.7-14.3 3.5-21.1 5.5l-5.5-12.7c-3.9-9.1-14.5-13.4-23.6-9.5s-13.4 14.5-9.5 23.6l4.4 10.4c-16.6 6.7-31.7 14.4-45.4 22.8L147 62c-5.5-8.3-16.7-10.5-25-5s-10.5 16.7-5 25l6 9c-13.7 11-25.5 22.8-35.8 34.9l-10-8c-7.8-6.2-19.1-5-25.3 2.8s-5 19.1 2.8 25.3L65.9 155c-1.8 2.8-3.5 5.7-5.1 8.5c-6.6 11.4-11.8 22.6-16 33l-8-3.2c-9.2-3.7-19.7 .8-23.4 10s.8 19.7 10 23.4l10.4 4.2c-.2 .8-.4 1.5-.5 2.3c-2.2 9.3-3.4 17.3-4.1 23.4c-.4 3.1-.6 5.7-.8 7.8c-.1 1.1-.1 2-.2 2.8l-.1 1.1 0 .5 0 .2 0 .1c0 0 0 .1 29.1 1l-.1 0L28 269.3c-.1 3.1 0 6.1 .2 9.1l-15.2 4.3C3.5 285.4-2 295.4 .7 304.9s12.7 15.1 22.3 12.4l15.6-4.5c7.6 13.6 18.9 25 32.6 32.6L66.7 361c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.3-12.4l4.3-15.2c1.2 .1 2.4 .2 3.6 .2c15.6 .5 30.3-3.3 43-10.2l9 9c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-7.2-7.2c9.3-12.6 15.2-27.8 16.3-44.5l7.1 3c9.1 3.9 19.7-.3 23.6-9.5s-.3-19.7-9.5-23.6l-8.6-3.7c6.4-9.9 17.3-22.4 36.9-33.3l1.3 4.4c2.7 9.6 12.7 15.1 22.3 12.4s15.1-12.7 12.4-22.3l-2.3-8.1c3.8-1.1 7.7-2.1 11.9-3.1c11.6-2.7 22.1-7.7 31.1-14.4l7.2 7.2c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-9-9c7.6-13.9 11.3-30.1 10.1-46.6l15.2-4.3c9.6-2.7 15.1-12.7 12.4-22.3S370.6 64 361 66.7l-15.6 4.5c-7.7-13.9-19.1-25.1-32.6-32.6l4.5-15.6c2.7-9.6-2.8-19.5-12.4-22.3zM112 272l-48-1.5 0 0c11.7 .4 27.3 .9 48 1.6zm16-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64-48a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM322.7 489c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.2-12.4l4.3-15.2c8.3 .6 16.8 0 25.2-1.9c7.3-1.7 14.3-3.5 21.1-5.5l5.5 12.7c3.9 9.1 14.5 13.4 23.6 9.5s13.4-14.5 9.5-23.6l-4.4-10.4c16.6-6.7 31.7-14.4 45.4-22.8L493 450c5.5 8.3 16.7 10.5 25 5s10.5-16.7 5-25l-6-9c13.7-11 25.5-22.8 35.8-34.9l10 8c7.8 6.2 19.1 5 25.3-2.8s5-19.1-2.8-25.3L574.1 357c1.8-2.8 3.5-5.7 5.1-8.5c6.6-11.4 11.8-22.6 16-33l8 3.2c9.2 3.7 19.7-.8 23.4-10s-.8-19.7-10-23.4l-10.4-4.2c.2-.8 .4-1.5 .5-2.3c2.2-9.3 3.4-17.3 4.1-23.4c.4-3.1 .6-5.7 .8-7.8c.1-1.1 .1-2 .2-2.8l.1-1.1 0-.5 0-.2 0-.1c0 0 0-.1-29.1-1l.1 0 29.1 .9c.1-3.1 0-6.1-.2-9.1l15.2-4.3c9.6-2.7 15.1-12.7 12.4-22.3s-12.7-15.1-22.3-12.4l-15.6 4.5c-7.6-13.6-18.9-25-32.6-32.6l4.5-15.6c2.7-9.6-2.8-19.5-12.4-22.3s-19.5 2.8-22.3 12.4l-4.3 15.2c-1.2-.1-2.4-.2-3.6-.2c-15.6-.5-30.3 3.3-43 10.2l-9-9c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l7.2 7.2c-9.3 12.6-15.2 27.8-16.3 44.5l-7.1-3c-9.1-3.9-19.7 .3-23.6 9.5s.3 19.7 9.5 23.6l8.6 3.7c-6.4 9.9-17.3 22.4-36.9 33.3l-1.3-4.4c-2.7-9.6-12.7-15.1-22.3-12.4s-15.1 12.7-12.4 22.3l2.3 8.1c-3.8 1.1-7.7 2.1-11.9 3.1c-11.6 2.7-22.1 7.7-31.1 14.4l-7.2-7.2c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l9 9c-7.6 13.9-11.3 30.1-10.1 46.6l-15.2 4.3c-9.6 2.7-15.1 12.7-12.4 22.2s12.7 15.1 22.3 12.4l15.6-4.5c7.7 13.9 19.1 25.1 32.6 32.6L322.7 489zM576 241.5l0 0c-11.7-.4-27.3-.9-48-1.6l48 1.5zM448 384a32 32 0 1 1 -64 0 32 32 0 1 1 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bacterium": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05a" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibiotic", + "antibody", + "covid-19", + "health", + "organism", + "sick" + ] + }, + "unicode": "e05a", + "label": "Bacterium", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M423.1 30.6c3.6-12.7-3.7-26-16.5-29.7s-26 3.7-29.7 16.5l-4.2 14.7c-9.8-.4-19.9 .5-29.9 2.8c-12.1 2.8-23.7 5.9-34.9 9.4l-5.9-13.7c-5.2-12.2-19.3-17.8-31.5-12.6s-17.8 19.3-12.6 31.5l4.9 11.3c-22 9.4-42 20.1-60.2 31.8L196 82.7c-7.4-11-22.3-14-33.3-6.7s-14 22.3-6.7 33.3l7.8 11.6c-18 15-33.7 30.8-47.3 47.1L103 157.3c-10.4-8.3-25.5-6.6-33.7 3.7s-6.6 25.5 3.7 33.7l15 12c-2.1 3.2-4.1 6.5-6 9.7c-9.4 15.7-17 31-23.2 45.3l-9.9-3.9c-12.3-4.9-26.3 1.1-31.2 13.4s1.1 26.3 13.4 31.2l11.6 4.6c-.3 1.1-.6 2.1-.9 3.1c-3.5 12.5-5.7 23.2-7.1 31.3c-.7 4.1-1.2 7.5-1.6 10.3c-.2 1.4-.3 2.6-.4 3.6l-.1 1.4-.1 .6 0 .3 0 .1c0 0 0 .1 39.2 3.7l0 0-39.2-3.6c-.5 5-.6 10-.4 14.9l-14.7 4.2C4.7 380.6-2.7 393.8 .9 406.6s16.9 20.1 29.7 16.5l13.8-3.9c10.6 20.7 27.6 37.8 48.5 48.5l-3.9 13.7c-3.6 12.7 3.7 26 16.5 29.7s26-3.7 29.7-16.5l4.2-14.7c23.8 1 46.3-5.5 65.1-17.6L215 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c9.1-14.1 15.1-30.5 17-48.3l.1-.8c.3-1.7 1-5.1 2.3-9.8l.2-.8 12.6 5.4c12.2 5.2 26.3-.4 31.5-12.6s-.4-26.3-12.6-31.5l-11.3-4.8c9.9-14.9 24.9-31.6 48.6-46l2.1 7.5c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7L371 259.2c6.9-2.2 14.3-4.3 22.2-6.1c12.9-3 24.7-8 35.2-14.8L439 249c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c12.2-19 18.6-41.6 17.6-65.1l14.7-4.2c12.7-3.6 20.1-16.9 16.5-29.7s-16.9-20.1-29.7-16.5l-13.7 3.9c-10.8-21.2-28-38-48.5-48.5l3.9-13.8zM92.1 363.3l0 0L144 368l-51.9-4.7zM112 320a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM240 184a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bag-shopping": { + "aliases": { + "names": [ + "shopping-bag" + ], + "unicodes": { + "secondary": [ + "10f290" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "unicode": "f290", + "label": "Bag Shopping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 112c0-35.3 28.7-64 64-64s64 28.7 64 64v48H160V112zm-48 48H48c-26.5 0-48 21.5-48 48V416c0 53 43 96 96 96H352c53 0 96-43 96-96V208c0-26.5-21.5-48-48-48H336V112C336 50.1 285.9 0 224 0S112 50.1 112 112v48zm24 48a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm152 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bahai": { + "aliases": { + "names": [ + "haykal" + ], + "unicodes": { + "secondary": [ + "10f666" + ] + } + }, + "changes": [ + "5.3.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bahai", + "bahá'í", + "star" + ] + }, + "unicode": "f666", + "label": "Bahai", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0c14.5 0 27.2 9.7 30.9 23.8l23.9 89.6 75.9-53.3c11.9-8.3 27.8-7.6 39 1.7s14.6 24.9 8.4 38.1l-39.3 84 92.4 8c14.4 1.2 26.2 12 28.8 26.3s-4.9 28.5-18 34.6l-84.1 39.1 65.7 65.5c10.3 10.2 12.4 26.1 5.1 38.7s-22 18.7-36 14.9L391 386.8l8.2 92.4c1.3 14.4-7.3 27.9-20.9 32.9s-28.9 .1-37.2-11.7l-53.1-76-53.1 76c-8.3 11.9-23.6 16.7-37.2 11.7s-22.2-18.5-20.9-32.9l8.2-92.4L95.4 410.9c-14 3.8-28.8-2.3-36-14.9s-5.2-28.4 5.1-38.7l65.7-65.5L46 252.7c-13.1-6.1-20.5-20.3-18-34.6s14.3-25.1 28.8-26.3l92.4-8-39.3-84c-6.1-13.1-2.7-28.8 8.4-38.1s27.1-10 39-1.7l75.9 53.3 23.9-89.6C260.8 9.7 273.5 0 288 0zm0 156.2l-4.8 18c-2.7 10.1-10.2 18.2-20 21.8s-20.8 2.1-29.3-3.9l-15.2-10.7 7.9 16.8c4.4 9.5 4 20.5-1.3 29.6s-14.5 15-25 15.9l-18.5 1.6 16.8 7.8c9.5 4.4 16.2 13.2 18 23.5s-1.5 20.8-8.9 28.2l-13.2 13.1 17.9-4.8c10.1-2.7 20.9-.3 28.9 6.4s12.2 16.9 11.3 27.3l-1.6 18.5 10.6-15.2c6-8.6 15.8-13.7 26.2-13.7s20.2 5.1 26.2 13.7l10.6 15.2-1.6-18.5c-.9-10.4 3.3-20.6 11.3-27.3s18.8-9.1 28.9-6.4l17.9 4.8-13.2-13.1c-7.4-7.4-10.7-17.9-8.9-28.2s8.5-19.1 18-23.5l16.8-7.8-18.5-1.6c-10.4-.9-19.7-6.8-25-15.9s-5.7-20.1-1.3-29.6l7.9-16.8-15.2 10.7c-8.6 6-19.5 7.5-29.3 3.9s-17.3-11.7-20-21.8l-4.8-18z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baht-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e0ac", + "label": "Baht Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 0c-17.7 0-32 14.3-32 32V64H37.6C16.8 64 0 80.8 0 101.6V224v41.7V288 406.3c0 23 18.7 41.7 41.7 41.7H112v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c61.9 0 112-50.1 112-112c0-40.1-21.1-75.3-52.7-95.1C280.3 222.6 288 200.2 288 176c0-61.9-50.1-112-112-112V32c0-17.7-14.3-32-32-32zM112 128v96H64V128h48zm64 96V128c26.5 0 48 21.5 48 48s-21.5 48-48 48zm-64 64v96H64V288h48zm64 96V288h32c26.5 0 48 21.5 48 48s-21.5 48-48 48H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ban": { + "aliases": { + "names": [ + "cancel" + ], + "unicodes": { + "composite": [ + "1f6ab" + ], + "secondary": [ + "10f05e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "ban", + "block", + "cancel", + "delete", + "entry", + "forbidden", + "hide", + "no", + "not", + "prohibit", + "prohibited", + "remove", + "stop", + "trash" + ] + }, + "unicode": "f05e", + "label": "Ban", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M367.2 412.5L99.5 144.8C77.1 176.1 64 214.5 64 256c0 106 86 192 192 192c41.5 0 79.9-13.1 111.2-35.5zm45.3-45.3C434.9 335.9 448 297.5 448 256c0-106-86-192-192-192c-41.5 0-79.9 13.1-111.2 35.5L412.5 367.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ban-smoking": { + "aliases": { + "names": [ + "smoking-ban" + ], + "unicodes": { + "composite": [ + "1f6ad" + ], + "secondary": [ + "10f54d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ban", + "cancel", + "forbidden", + "no", + "no smoking", + "non-smoking", + "not", + "prohibited", + "smoking" + ] + }, + "unicode": "f54d", + "label": "Ban Smoking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M99.5 144.8L178.7 224l96 96 92.5 92.5C335.9 434.9 297.5 448 256 448C150 448 64 362 64 256c0-41.5 13.1-79.9 35.5-111.2zM333.3 288l-32-32H384v32H333.3zm32 32H400c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H269.3L144.8 99.5C176.1 77.1 214.5 64 256 64c106 0 192 86 192 192c0 41.5-13.1 79.9-35.5 111.2L365.3 320zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM272 96c-8.8 0-16 7.2-16 16c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16s7.2 16 16 16s16-7.2 16-16c0-26.5-21.5-48-48-48H304c-8.8 0-16-7.2-16-16s-7.2-16-16-16zM229.5 320l-96-96H112c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16H229.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bandage": { + "aliases": { + "names": [ + "band-aid" + ], + "unicodes": { + "composite": [ + "1fa79" + ], + "secondary": [ + "10f462" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adhesive bandage", + "bandage", + "boo boo", + "first aid", + "ouch" + ] + }, + "unicode": "f462", + "label": "Bandage", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766749, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 416h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H480V416zM448 96H192V416H448V96zM64 96C28.7 96 0 124.7 0 160V352c0 35.3 28.7 64 64 64h96V96H64zM248 208a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM248 304a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bandcamp": { + "changes": [ + "4.7.0", + "5.0.0", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d5", + "label": "Bandcamp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm48.2,326.1h-181L207.9,178h181Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bangladeshi-taka-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bdt", + "currency", + "tk" + ] + }, + "unicode": "e2e6", + "label": "Bangladeshi Taka Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M36 32.2C18.4 30.1 2.4 42.5 .2 60S10.5 93.6 28 95.8l7.9 1c16 2 28 15.6 28 31.8V160H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V384c0 53 43 96 96 96h32c106 0 192-86 192-192V256c0-53-43-96-96-96H272c-17.7 0-32 14.3-32 32s14.3 32 32 32h16c17.7 0 32 14.3 32 32v32c0 70.7-57.3 128-128 128H160c-17.7 0-32-14.3-32-32V224h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V128.5c0-48.4-36.1-89.3-84.1-95.3l-7.9-1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "barcode": { + "aliases": { + "unicodes": { + "secondary": [ + "10f02a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "info", + "laser", + "price", + "scan", + "upc" + ] + }, + "unicode": "f02a", + "label": "Barcode", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 32C10.7 32 0 42.7 0 56V456c0 13.3 10.7 24 24 24H40c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H24zm88 0c-8.8 0-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16zm72 0c-13.3 0-24 10.7-24 24V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H184zm96 0c-13.3 0-24 10.7-24 24V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H280zM448 56V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H472c-13.3 0-24 10.7-24 24zm-64-8V464c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16s-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bars": { + "aliases": { + "names": [ + "navicon" + ], + "unicodes": { + "secondary": [ + "10f0c9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "drag", + "hamburger", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "todo", + "ul" + ] + }, + "unicode": "f0c9", + "label": "Bars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bars-progress": { + "aliases": { + "names": [ + "tasks-alt" + ], + "unicodes": { + "secondary": [ + "10f828" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "downloading", + "downloads", + "loading", + "poll", + "progress", + "project management", + "settings", + "to do" + ] + }, + "unicode": "f828", + "label": "Bars Progress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 160H320V128H448v32zM48 64C21.5 64 0 85.5 0 112v64c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zM448 352v32H192V352H448zM48 288c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V336c0-26.5-21.5-48-48-48H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bars-staggered": { + "aliases": { + "names": [ + "reorder", + "stream" + ], + "unicodes": { + "secondary": [ + "10f550" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flow", + "list", + "timeline" + ] + }, + "unicode": "f550", + "label": "Bars Staggered", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baseball": { + "aliases": { + "names": [ + "baseball-ball" + ], + "unicodes": { + "composite": [ + "1f94e", + "26be" + ], + "secondary": [ + "10f433" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "baseball", + "foul", + "glove", + "hardball", + "league", + "leather", + "mlb", + "softball", + "sport", + "underarm" + ] + }, + "unicode": "f433", + "label": "Baseball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M62.7 223.4c-4.8 .4-9.7 .6-14.7 .6c-15.6 0-30.8-2-45.2-5.9C19.2 107.1 107.1 19.2 218.1 2.8C222 17.2 224 32.4 224 48c0 4.9-.2 9.8-.6 14.7c-.7 8.8 5.8 16.5 14.6 17.3s16.5-5.8 17.3-14.6c.5-5.7 .7-11.5 .7-17.3c0-16.5-1.9-32.6-5.6-47.9c1.8 0 3.7-.1 5.6-.1C397.4 0 512 114.6 512 256c0 1.9 0 3.7-.1 5.6c-15.4-3.6-31.4-5.6-47.9-5.6c-5.8 0-11.6 .2-17.3 .7c-8.8 .7-15.4 8.5-14.6 17.3s8.5 15.4 17.3 14.6c4.8-.4 9.7-.6 14.7-.6c15.6 0 30.8 2 45.2 5.9C492.8 404.9 404.9 492.8 293.9 509.2C290 494.8 288 479.6 288 464c0-4.9 .2-9.8 .6-14.7c.7-8.8-5.8-16.5-14.6-17.3s-16.5 5.8-17.3 14.6c-.5 5.7-.7 11.5-.7 17.3c0 16.5 1.9 32.6 5.6 47.9c-1.8 0-3.7 .1-5.6 .1C114.6 512 0 397.4 0 256c0-1.9 0-3.7 .1-5.6C15.4 254.1 31.5 256 48 256c5.8 0 11.6-.2 17.3-.7c8.8-.7 15.4-8.5 14.6-17.3s-8.5-15.4-17.3-14.6zM121.3 208c-8 3.7-11.6 13.2-7.9 21.2s13.2 11.6 21.2 7.9c45.2-20.8 81.7-57.2 102.5-102.5c3.7-8 .2-17.5-7.9-21.2s-17.5-.2-21.2 7.9c-17.6 38.3-48.5 69.2-86.7 86.7zm277.2 74.7c-3.7-8-13.2-11.6-21.2-7.9c-45.2 20.8-81.7 57.2-102.5 102.5c-3.7 8-.2 17.5 7.9 21.2s17.5 .2 21.2-7.9c17.6-38.3 48.5-69.2 86.7-86.7c8-3.7 11.6-13.2 7.9-21.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baseball-bat-ball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f432" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bat", + "league", + "mlb", + "slugger", + "softball", + "sport" + ] + }, + "unicode": "f432", + "label": "Baseball Bat Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M424 0c-12.4 0-24.2 4.9-33 13.7L233.5 171.2c-10.5 10.5-19.8 22.1-27.7 34.6L132.7 321.6c-7.3 11.5-15.8 22.2-25.5 31.9L69.9 390.7l51.3 51.3 37.3-37.3c9.6-9.6 20.3-18.2 31.9-25.5l115.8-73.1c12.5-7.9 24.1-17.2 34.6-27.7L498.3 121c8.7-8.7 13.7-20.6 13.7-33s-4.9-24.2-13.7-33L457 13.7C448.2 4.9 436.4 0 424 0zm88 432a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM15 399c-9.4 9.4-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L49 399c-9.4-9.4-24.6-9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "basket-shopping": { + "aliases": { + "names": [ + "shopping-basket" + ], + "unicodes": { + "secondary": [ + "10f291" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "unicode": "f291", + "label": "Basket Shopping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M253.3 35.1c6.1-11.8 1.5-26.3-10.2-32.4s-26.3-1.5-32.4 10.2L117.6 192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32L83.9 463.5C91 492 116.6 512 146 512H430c29.4 0 55-20 62.1-48.5L544 256c17.7 0 32-14.3 32-32s-14.3-32-32-32H458.4L365.3 12.9C359.2 1.2 344.7-3.4 332.9 2.7s-16.3 20.6-10.2 32.4L404.3 192H171.7L253.3 35.1zM192 304v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16s16 7.2 16 16zm96-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "basketball": { + "aliases": { + "names": [ + "basketball-ball" + ], + "unicodes": { + "composite": [ + "1f3c0" + ], + "secondary": [ + "10f434" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "basketball", + "dribble", + "dunk", + "hoop", + "nba" + ] + }, + "unicode": "f434", + "label": "Basketball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M86.6 64l85.2 85.2C194.5 121.7 208 86.4 208 48c0-14.7-2-28.9-5.7-42.4C158.6 15 119 35.5 86.6 64zM64 86.6C35.5 119 15 158.6 5.6 202.3C19.1 206 33.3 208 48 208c38.4 0 73.7-13.5 101.3-36.1L64 86.6zM256 0c-7.3 0-14.6 .3-21.8 .9C238 16 240 31.8 240 48c0 47.3-17.1 90.5-45.4 124L256 233.4 425.4 64C380.2 24.2 320.9 0 256 0zM48 240c-16.2 0-32-2-47.1-5.8C.3 241.4 0 248.7 0 256c0 64.9 24.2 124.2 64 169.4L233.4 256 172 194.6C138.5 222.9 95.3 240 48 240zm463.1 37.8c.6-7.2 .9-14.5 .9-21.8c0-64.9-24.2-124.2-64-169.4L278.6 256 340 317.4c33.4-28.3 76.7-45.4 124-45.4c16.2 0 32 2 47.1 5.8zm-4.7 31.9C492.9 306 478.7 304 464 304c-38.4 0-73.7 13.5-101.3 36.1L448 425.4c28.5-32.3 49.1-71.9 58.4-115.7zM340.1 362.7C317.5 390.3 304 425.6 304 464c0 14.7 2 28.9 5.7 42.4C353.4 497 393 476.5 425.4 448l-85.2-85.2zM317.4 340L256 278.6 86.6 448c45.1 39.8 104.4 64 169.4 64c7.3 0 14.6-.3 21.8-.9C274 496 272 480.2 272 464c0-47.3 17.1-90.5 45.4-124z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bath": { + "aliases": { + "names": [ + "bathtub" + ], + "unicodes": { + "composite": [ + "1f6c1" + ], + "secondary": [ + "10f2cd" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bath", + "bathtub", + "clean", + "shower", + "tub", + "wash" + ] + }, + "unicode": "f2cd", + "label": "Bath", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 77.3c0-7.3 5.9-13.3 13.3-13.3c3.5 0 6.9 1.4 9.4 3.9l14.9 14.9C130 91.8 128 101.7 128 112c0 19.9 7.2 38 19.2 52c-5.3 9.2-4 21.1 3.8 29c9.4 9.4 24.6 9.4 33.9 0L289 89c9.4-9.4 9.4-24.6 0-33.9c-7.9-7.9-19.8-9.1-29-3.8C246 39.2 227.9 32 208 32c-10.3 0-20.2 2-29.2 5.5L163.9 22.6C149.4 8.1 129.7 0 109.3 0C66.6 0 32 34.6 32 77.3V256c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H96V77.3zM32 352v16c0 28.4 12.4 54 32 71.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V464H384v16c0 17.7 14.3 32 32 32s32-14.3 32-32V439.6c19.6-17.6 32-43.1 32-71.6V352H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-empty": { + "aliases": { + "names": [ + "battery-0" + ], + "unicodes": { + "secondary": [ + "10f244" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "dead", + "power", + "status" + ] + }, + "unicode": "f244", + "label": "Battery Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80 160c-8.8 0-16 7.2-16 16V336c0 8.8 7.2 16 16 16H464c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H80zM0 176c0-44.2 35.8-80 80-80H464c44.2 0 80 35.8 80 80v16c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32v16c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-full": { + "aliases": { + "names": [ + "battery", + "battery-5" + ], + "unicodes": { + "composite": [ + "1f50b" + ], + "secondary": [ + "10f240" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "batter", + "battery", + "charge", + "power", + "status" + ] + }, + "unicode": "f240", + "label": "Battery Full", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm368 96H96V320H448V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-half": { + "aliases": { + "names": [ + "battery-3" + ], + "unicodes": { + "secondary": [ + "10f242" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "unicode": "f242", + "label": "Battery Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm208 96H96V320H288V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-quarter": { + "aliases": { + "names": [ + "battery-2" + ], + "unicodes": { + "secondary": [ + "10f243" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "low", + "power", + "status" + ] + }, + "unicode": "f243", + "label": "Battery Quarter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm112 96H96V320h96V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-three-quarters": { + "aliases": { + "names": [ + "battery-4" + ], + "unicodes": { + "secondary": [ + "10f241" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "unicode": "f241", + "label": "Battery Three Quarters", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm272 96H96V320H352V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battle-net": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f835", + "label": "Battle.net", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448.61 225.62c26.87.18 35.57-7.43 38.92-12.37 12.47-16.32-7.06-47.6-52.85-71.33 17.76-33.58 30.11-63.68 36.34-85.3 3.38-11.83 1.09-19 .45-20.25-1.72 10.52-15.85 48.46-48.2 100.05-25-11.22-56.52-20.1-93.77-23.8-8.94-16.94-34.88-63.86-60.48-88.93C252.18 7.14 238.7 1.07 228.18.22h-.05c-13.83-1.55-22.67 5.85-27.4 11-17.2 18.53-24.33 48.87-25 84.07-7.24-12.35-17.17-24.63-28.5-25.93h-.18c-20.66-3.48-38.39 29.22-36 81.29-38.36 1.38-71 5.75-93 11.23-9.9 2.45-16.22 7.27-17.76 9.72 1-.38 22.4-9.22 111.56-9.22 5.22 53 29.75 101.82 26 93.19-9.73 15.4-38.24 62.36-47.31 97.7-5.87 22.88-4.37 37.61.15 47.14 5.57 12.75 16.41 16.72 23.2 18.26 25 5.71 55.38-3.63 86.7-21.14-7.53 12.84-13.9 28.51-9.06 39.34 7.31 19.65 44.49 18.66 88.44-9.45 20.18 32.18 40.07 57.94 55.7 74.12a39.79 39.79 0 0 0 8.75 7.09c5.14 3.21 8.58 3.37 8.58 3.37-8.24-6.75-34-38-62.54-91.78 22.22-16 45.65-38.87 67.47-69.27 122.82 4.6 143.29-24.76 148-31.64 14.67-19.88 3.43-57.44-57.32-93.69zm-77.85 106.22c23.81-37.71 30.34-67.77 29.45-92.33 27.86 17.57 47.18 37.58 49.06 58.83 1.14 12.93-8.1 29.12-78.51 33.5zM216.9 387.69c9.76-6.23 19.53-13.12 29.2-20.49 6.68 13.33 13.6 26.1 20.6 38.19-40.6 21.86-68.84 12.76-49.8-17.7zm215-171.35c-10.29-5.34-21.16-10.34-32.38-15.05a722.459 722.459 0 0 0 22.74-36.9c39.06 24.1 45.9 53.18 9.64 51.95zM279.18 398c-5.51-11.35-11-23.5-16.5-36.44 43.25 1.27 62.42-18.73 63.28-20.41 0 .07-25 15.64-62.53 12.25a718.78 718.78 0 0 0 85.06-84q13.06-15.31 24.93-31.11c-.36-.29-1.54-3-16.51-12-51.7 60.27-102.34 98-132.75 115.92-20.59-11.18-40.84-31.78-55.71-61.49-20-39.92-30-82.39-31.57-116.07 12.3.91 25.27 2.17 38.85 3.88-22.29 36.8-14.39 63-13.47 64.23 0-.07-.95-29.17 20.14-59.57a695.23 695.23 0 0 0 44.67 152.84c.93-.38 1.84.88 18.67-8.25-26.33-74.47-33.76-138.17-34-173.43 20-12.42 48.18-19.8 81.63-17.81 44.57 2.67 86.36 15.25 116.32 30.71q-10.69 15.66-23.33 32.47C365.63 152 339.1 145.84 337.5 146c.11 0 25.9 14.07 41.52 47.22a717.63 717.63 0 0 0-115.34-31.71 646.608 646.608 0 0 0-39.39-6.05c-.07.45-1.81 1.85-2.16 20.33C300 190.28 358.78 215.68 389.36 233c.74 23.55-6.95 51.61-25.41 79.57-24.6 37.31-56.39 67.23-84.77 85.43zm27.4-287c-44.56-1.66-73.58 7.43-94.69 20.67 2-52.3 21.31-76.38 38.21-75.28C267 52.15 305 108.55 306.58 111zm-130.65 3.1c.48 12.11 1.59 24.62 3.21 37.28-14.55-.85-28.74-1.25-42.4-1.26-.08 3.24-.12-51 24.67-49.59h.09c5.76 1.09 10.63 6.88 14.43 13.57zm-28.06 162c20.76 39.7 43.3 60.57 65.25 72.31-46.79 24.76-77.53 20-84.92 4.51-.2-.21-11.13-15.3 19.67-76.81zm210.06 74.8" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bed": { + "aliases": { + "unicodes": { + "composite": [ + "1f6cc" + ], + "secondary": [ + "10f236" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hospital", + "hotel", + "lodging", + "mattress", + "patient", + "person in bed", + "rest", + "sleep", + "travel" + ] + }, + "unicode": "f236", + "label": "Bed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V320H288V160c0-17.7 14.3-32 32-32H544c53 0 96 43 96 96V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V416H352 320 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 46.3 14.3 32 32 32zm144 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bed-pulse": { + "aliases": { + "names": [ + "procedures" + ], + "unicodes": { + "secondary": [ + "10f487" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "EKG", + "bed", + "electrocardiogram", + "health", + "hospital", + "life", + "patient", + "vital" + ] + }, + "unicode": "f487", + "label": "Bed Pulse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M483.2 9.6L524 64h92c13.3 0 24 10.7 24 24s-10.7 24-24 24H512c-7.6 0-14.7-3.6-19.2-9.6L468.7 70.3l-47 99.9c-3.7 7.8-11.3 13.1-19.9 13.7s-16.9-3.4-21.7-10.6L339.2 112H216c-13.3 0-24-10.7-24-24s10.7-24 24-24H352c8 0 15.5 4 20 10.7l24.4 36.6 45.9-97.5C445.9 6.2 453.2 1 461.6 .1s16.6 2.7 21.6 9.5zM320 160h12.7l20.7 31.1c11.2 16.8 30.6 26.3 50.7 24.8s37.9-13.7 46.5-32L461.9 160H544c53 0 96 43 96 96V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H352 320 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64s32 14.3 32 32V352H288V192c0-17.7 14.3-32 32-32zm-144 0a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "beer-mug-empty": { + "aliases": { + "names": [ + "beer" + ], + "unicodes": { + "secondary": [ + "10f0fc" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "ale", + "bar", + "beverage", + "brew", + "brewery", + "drink", + "foam", + "lager", + "liquor", + "mug", + "stein" + ] + }, + "unicode": "f0fc", + "label": "Beer Mug Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767421, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32V96h51.2c42.4 0 76.8 34.4 76.8 76.8V274.9c0 30.4-17.9 57.9-45.6 70.2L384 381.7V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V64zM384 311.6l56.4-25.1c4.6-2.1 7.6-6.6 7.6-11.7V172.8c0-7.1-5.7-12.8-12.8-12.8H384V311.6zM160 144c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "behance": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b4", + "label": "Behance", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bell": { + "aliases": { + "unicodes": { + "composite": [ + "1f514", + "f0a2" + ], + "secondary": [ + "10f0f3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "alert", + "bel", + "bell", + "chime", + "notification", + "reminder" + ] + }, + "unicode": "f0f3", + "label": "Bell", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c-17.7 0-32 14.3-32 32V51.2C119 66 64 130.6 64 208v18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416H416c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z" + }, + "regular": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c-17.7 0-32 14.3-32 32V49.9C119.5 61.4 64 124.2 64 200v33.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416H424c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6C399.5 322.9 384 278.8 384 233.4V200c0-75.8-55.5-138.6-128-150.1V32c0-17.7-14.3-32-32-32zm0 96h8c57.4 0 104 46.6 104 104v33.4c0 47.9 13.9 94.6 39.7 134.6H72.3C98.1 328 112 281.3 112 233.4V200c0-57.4 46.6-104 104-104h8zm64 352H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "bell-concierge": { + "aliases": { + "names": [ + "concierge-bell" + ], + "unicodes": { + "composite": [ + "1f6ce" + ], + "secondary": [ + "10f562" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attention", + "bell", + "bellhop", + "bellhop bell", + "hotel", + "receptionist", + "service", + "support" + ] + }, + "unicode": "f562", + "label": "Bell Concierge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M216 64c-13.3 0-24 10.7-24 24s10.7 24 24 24h16v33.3C119.6 157.2 32 252.4 32 368H480c0-115.6-87.6-210.8-200-222.7V112h16c13.3 0 24-10.7 24-24s-10.7-24-24-24H256 216zM24 400c-13.3 0-24 10.7-24 24s10.7 24 24 24H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bell-slash": { + "aliases": { + "unicodes": { + "composite": [ + "1f515", + "f1f7" + ], + "secondary": [ + "10f1f6" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "bell", + "bell with slash", + "cancel", + "disabled", + "forbidden", + "mute", + "notification", + "off", + "quiet", + "reminder", + "silent" + ] + }, + "unicode": "f1f6", + "label": "Bell Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-87.5-68.6c.5-1.7 .7-3.5 .7-5.4c0-27.6-11-54.1-30.5-73.7L512 320c-20.5-20.5-32-48.3-32-77.3V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V51.2c-42.6 8.6-79 34.2-102 69.3L38.8 5.1zM160 242.7c0 29-11.5 56.8-32 77.3l-1.5 1.5C107 341 96 367.5 96 395.2c0 11.5 9.3 20.8 20.8 20.8H406.2L160 222.1v20.7zM384 448H320 256c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + }, + "regular": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L542.6 400c2.7-7.8 1.3-16.5-3.9-23l-14.9-18.6C495.5 322.9 480 278.8 480 233.4V200c0-75.8-55.5-138.6-128-150.1V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V49.9c-43.9 7-81.5 32.7-104.4 68.7L38.8 5.1zM221.7 148.4C239.6 117.1 273.3 96 312 96h8 8c57.4 0 104 46.6 104 104v33.4c0 32.7 6.4 64.8 18.7 94.5L221.7 148.4zM406.2 416l-60.9-48H168.3c21.2-32.8 34.4-70.3 38.4-109.1L160 222.1v11.4c0 45.4-15.5 89.5-43.8 124.9L101.3 377c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6H406.2zM384 448H320 256c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "bezier-curve": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "curves", + "illustrator", + "lines", + "path", + "vector" + ] + }, + "unicode": "f55b", + "label": "Bezier Curve", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M296 136V88h48v48H296zM288 32c-26.5 0-48 21.5-48 48v4H121.6C111.2 62.7 89.3 48 64 48C28.7 48 0 76.7 0 112s28.7 64 64 64c25.3 0 47.2-14.7 57.6-36h66.9c-58.9 39.6-98.9 105-104 180H80c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48h-3.3c5.9-67 48.5-123.4 107.5-149.1c8.6 12.7 23.2 21.1 39.8 21.1h64c16.6 0 31.1-8.4 39.8-21.1c59 25.7 101.6 82.1 107.5 149.1H496c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48h-4.5c-5-75-45.1-140.4-104-180h66.9c10.4 21.3 32.3 36 57.6 36c35.3 0 64-28.7 64-64s-28.7-64-64-64c-25.3 0-47.2 14.7-57.6 36H400V80c0-26.5-21.5-48-48-48H288zM88 376h48v48H88V376zm416 48V376h48v48H504z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bicycle": { + "aliases": { + "unicodes": { + "composite": [ + "1f6b2" + ], + "secondary": [ + "10f206" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicycle", + "bike", + "gears", + "pedal", + "transportation", + "vehicle" + ] + }, + "unicode": "f206", + "label": "Bicycle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h25.7l34.6 64H222.9l-27.4-38C191 99.7 183.7 96 176 96H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h43.7l22.1 30.7-26.6 53.1c-10-2.5-20.5-3.8-31.2-3.8C57.3 224 0 281.3 0 352s57.3 128 128 128c65.3 0 119.1-48.9 127-112h49c8.5 0 16.3-4.5 20.7-11.8l84.8-143.5 21.7 40.1C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L375.4 48.8C369.8 38.4 359 32 347.2 32H312zM458.6 303.7l32.3 59.7c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-32.3-59.7c3.6-.6 7.4-.9 11.2-.9c39.8 0 72 32.2 72 72s-32.2 72-72 72s-72-32.2-72-72c0-18.6 7-35.5 18.6-48.3zM133.2 368h65c-7.3 32.1-36 56-70.2 56c-39.8 0-72-32.2-72-72s32.2-72 72-72c1.7 0 3.4 .1 5.1 .2l-24.2 48.5c-9 18.1 4.1 39.4 24.3 39.4zm33.7-48l50.7-101.3 72.9 101.2-.1 .1H166.8zm90.6-128H365.9L317 274.8 257.4 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bilibili": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e3d9", + "label": "Bilibili", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.6 104.1C505.3 122.2 513 143.8 511.9 169.8V372.2C511.5 398.6 502.7 420.3 485.4 437.3C468.2 454.3 446.3 463.2 419.9 464H92.02C65.57 463.2 43.81 454.2 26.74 436.8C9.682 419.4 .7667 396.5 0 368.2V169.8C.7667 143.8 9.682 122.2 26.74 104.1C43.81 87.75 65.57 78.77 92.02 78H121.4L96.05 52.19C90.3 46.46 87.42 39.19 87.42 30.4C87.42 21.6 90.3 14.34 96.05 8.603C101.8 2.868 109.1 0 117.9 0C126.7 0 134 2.868 139.8 8.603L213.1 78H301.1L375.6 8.603C381.7 2.868 389.2 0 398 0C406.8 0 414.1 2.868 419.9 8.603C425.6 14.34 428.5 21.6 428.5 30.4C428.5 39.19 425.6 46.46 419.9 52.19L394.6 78L423.9 78C450.3 78.77 471.9 87.75 488.6 104.1H488.6zM449.8 173.8C449.4 164.2 446.1 156.4 439.1 150.3C433.9 144.2 425.1 140.9 416.4 140.5H96.05C86.46 140.9 78.6 144.2 72.47 150.3C66.33 156.4 63.07 164.2 62.69 173.8V368.2C62.69 377.4 65.95 385.2 72.47 391.7C78.99 398.2 86.85 401.5 96.05 401.5H416.4C425.6 401.5 433.4 398.2 439.7 391.7C446 385.2 449.4 377.4 449.8 368.2L449.8 173.8zM185.5 216.5C191.8 222.8 195.2 230.6 195.6 239.7V273C195.2 282.2 191.9 289.9 185.8 296.2C179.6 302.5 171.8 305.7 162.2 305.7C152.6 305.7 144.7 302.5 138.6 296.2C132.5 289.9 129.2 282.2 128.8 273V239.7C129.2 230.6 132.6 222.8 138.9 216.5C145.2 210.2 152.1 206.9 162.2 206.5C171.4 206.9 179.2 210.2 185.5 216.5H185.5zM377 216.5C383.3 222.8 386.7 230.6 387.1 239.7V273C386.7 282.2 383.4 289.9 377.3 296.2C371.2 302.5 363.3 305.7 353.7 305.7C344.1 305.7 336.3 302.5 330.1 296.2C323.1 289.9 320.7 282.2 320.4 273V239.7C320.7 230.6 324.1 222.8 330.4 216.5C336.7 210.2 344.5 206.9 353.7 206.5C362.9 206.9 370.7 210.2 377 216.5H377z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bimobject": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f378", + "label": "BIMobject", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "binoculars": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1e5" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "glasses", + "magnify", + "scenic", + "spyglass", + "view" + ] + }, + "unicode": "f1e5", + "label": "Binoculars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 32h32c17.7 0 32 14.3 32 32V96H96V64c0-17.7 14.3-32 32-32zm64 96V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V388.9c0-34.6 9.4-68.6 27.2-98.3C40.9 267.8 49.7 242.4 53 216L60.5 156c2-16 15.6-28 31.8-28H192zm227.8 0c16.1 0 29.8 12 31.8 28L459 216c3.3 26.4 12.1 51.8 25.8 74.6c17.8 29.7 27.2 63.7 27.2 98.3V448c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V128h99.8zM320 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V96H320V64zm-32 64V288H224V128h64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "biohazard": { + "aliases": { + "unicodes": { + "composite": [ + "2623" + ], + "secondary": [ + "10f780" + ] + } + }, + "changes": [ + "5.6.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biohazard", + "covid-19", + "danger", + "dangerous", + "epidemic", + "hazmat", + "medical", + "pandemic", + "radioactive", + "sign", + "toxic", + "waste", + "zombie" + ] + }, + "unicode": "f780", + "label": "Biohazard", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M173.2 0c-1.8 0-3.5 .7-4.8 2C138.5 32.3 120 74 120 120c0 26.2 6 50.9 16.6 73c-22 2.4-43.8 9.1-64.2 20.5C37.9 232.8 13.3 262.4 .4 296c-.7 1.7-.5 3.7 .5 5.2c2.2 3.7 7.4 4.3 10.6 1.3C64.2 254.3 158 245.1 205 324s-8.1 153.1-77.6 173.2c-4.2 1.2-6.3 5.9-4.1 9.6c1 1.6 2.6 2.7 4.5 3c36.5 5.9 75.2 .1 109.7-19.2c20.4-11.4 37.4-26.5 50.5-43.8c13.1 17.3 30.1 32.4 50.5 43.8c34.5 19.3 73.3 25.2 109.7 19.2c1.9-.3 3.5-1.4 4.5-3c2.2-3.7 .1-8.4-4.1-9.6C379.1 477.1 324 403 371 324s140.7-69.8 193.5-21.4c3.2 2.9 8.4 2.3 10.6-1.3c1-1.6 1.1-3.5 .5-5.2c-12.9-33.6-37.5-63.2-72.1-82.5c-20.4-11.4-42.2-18.1-64.2-20.5C450 170.9 456 146.2 456 120c0-46-18.5-87.7-48.4-118c-1.3-1.3-3-2-4.8-2c-5 0-8.4 5.2-6.7 9.9C421.7 80.5 385.6 176 288 176S154.3 80.5 179.9 9.9c1.7-4.7-1.6-9.9-6.7-9.9zM240 272a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM181.7 417.6c6.3-11.8 9.8-25.1 8.6-39.8c-19.5-18-34-41.4-41.2-67.8c-12.5-8.1-26.2-11.8-40-12.4c-9-.4-18.1 .6-27.1 2.7c7.8 57.1 38.7 106.8 82.9 139.4c6.8-6.7 12.6-14.1 16.8-22.1zM288 64c-28.8 0-56.3 5.9-81.2 16.5c2 8.3 5 16.2 9 23.5c6.8 12.4 16.7 23.1 30.1 30.3c13.3-4.1 27.5-6.3 42.2-6.3s28.8 2.2 42.2 6.3c13.4-7.2 23.3-17.9 30.1-30.3c4-7.3 7-15.2 9-23.5C344.3 69.9 316.8 64 288 64zM426.9 310c-7.2 26.4-21.7 49.7-41.2 67.8c-1.2 14.7 2.2 28.1 8.6 39.8c4.3 8 10 15.4 16.8 22.1c44.3-32.6 75.2-82.3 82.9-139.4c-9-2.2-18.1-3.1-27.1-2.7c-13.8 .6-27.5 4.4-40 12.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bitbucket": { + "aliases": { + "unicodes": { + "composite": [ + "f172" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian", + "bitbucket-square", + "git" + ] + }, + "unicode": "f171", + "label": "Bitbucket", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M22.2 32A16 16 0 0 0 6 47.8a26.35 26.35 0 0 0 .2 2.8l67.9 412.1a21.77 21.77 0 0 0 21.3 18.2h325.7a16 16 0 0 0 16-13.4L505 50.7a16 16 0 0 0-13.2-18.3 24.58 24.58 0 0 0-2.8-.2L22.2 32zm285.9 297.8h-104l-28.1-147h157.3l-25.2 147z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bitcoin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f379", + "label": "Bitcoin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bitcoin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Bitcoin Sign", + "currency" + ] + }, + "unicode": "e0b4", + "label": "Bitcoin Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48 32C48 14.3 62.3 0 80 0s32 14.3 32 32V64h32V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64c0 1.5-.1 3.1-.3 4.5C254.1 82.2 288 125.1 288 176c0 24.2-7.7 46.6-20.7 64.9c31.7 19.8 52.7 55 52.7 95.1c0 61.9-50.1 112-112 112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H41.7C18.7 448 0 429.3 0 406.3V288 265.7 224 101.6C0 80.8 16.8 64 37.6 64H48V32zM64 224H176c26.5 0 48-21.5 48-48s-21.5-48-48-48H64v96zm112 64H64v96H208c26.5 0 48-21.5 48-48s-21.5-48-48-48H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bity": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37a", + "label": "Bity", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "black-tie": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f27e", + "label": "Font Awesome Black Tie", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "blackberry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37b", + "label": "BlackBerry", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "blender": { + "aliases": { + "unicodes": { + "secondary": [ + "10f517" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cocktail", + "milkshake", + "mixer", + "puree", + "smoothie" + ] + }, + "unicode": "f517", + "label": "Blender", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0h64 32H470.1c21.1 0 36.4 20.1 30.9 40.4L494.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H485.8l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H459.6l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L416 352H160l-8.7-96H64c-35.3 0-64-28.7-64-64V64zM145.5 192L133.8 64H64V192h81.5zM144 384H432c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H144c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "blender-phone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6b6" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "appliance", + "cocktail", + "fantasy", + "milkshake", + "mixer", + "puree", + "silly", + "smoothie" + ] + }, + "unicode": "f6b6", + "label": "Blender Phone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 352L196.8 52.3C194.2 24.2 216.3 0 244.6 0H534.1c21.1 0 36.4 20.1 30.9 40.4L558.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16H549.8l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16H523.6l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L480 352H224zm-16 32H496c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM147.5 30.7c10.8 6.7 15.3 21 10.6 33.4l-22 57.8c-4.2 10.9-14.5 17.6-25.3 16.4l-33.3-3.6c-13.6 42.2-13.6 88.4 0 130.7l33.3-3.6c10.9-1.2 21.2 5.5 25.3 16.4l22 57.8c4.7 12.4 .2 26.7-10.6 33.4l-44 27.2c-9.7 6-21.9 4.2-29.8-4.3C-24.6 286-24.6 114 73.7 7.8C81.6-.7 93.8-2.5 103.5 3.5l44 27.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "blog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f781" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "journal", + "log", + "online", + "personal", + "post", + "web 2.0", + "wordpress", + "writing" + ] + }, + "unicode": "f781", + "label": "Blog", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766677, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 32c0 17.7 14.3 32 32 32c123.7 0 224 100.3 224 224c0 17.7 14.3 32 32 32s32-14.3 32-32C512 128.9 383.1 0 224 0c-17.7 0-32 14.3-32 32zm0 96c0 17.7 14.3 32 32 32c70.7 0 128 57.3 128 128c0 17.7 14.3 32 32 32s32-14.3 32-32c0-106-86-192-192-192c-17.7 0-32 14.3-32 32zM96 144c0-26.5-21.5-48-48-48S0 117.5 0 144V368c0 79.5 64.5 144 144 144s144-64.5 144-144s-64.5-144-144-144H128v96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "blogger": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37c", + "label": "Blogger", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "blogger-b": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37d", + "label": "Blogger B", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bluetooth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f293" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "signal" + ] + }, + "unicode": "f293", + "label": "Bluetooth", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bluetooth-b": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f294", + "label": "Bluetooth", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bold": { + "aliases": { + "unicodes": { + "secondary": [ + "10f032" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emphasis", + "format", + "text" + ] + }, + "unicode": "f032", + "label": "Bold", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H80 96 224c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128H96 80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V256 96H32C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64H112V224H224zM112 288V416H256c35.3 0 64-28.7 64-64s-28.7-64-64-64H224 112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bolt": { + "aliases": { + "names": [ + "zap" + ], + "unicodes": { + "composite": [ + "26a1" + ], + "secondary": [ + "10f0e7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "danger", + "electric", + "electricity", + "flash", + "high voltage", + "lightning", + "voltage", + "weather", + "zap" + ] + }, + "unicode": "f0e7", + "label": "Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M349.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224c-10 8.8-13.6 22.9-8.9 35.3S50.7 288 64 288H175.5L98.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7H272.5L349.4 44.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bolt-lightning": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electricity", + "flash", + "lightning", + "weather", + "zap" + ] + }, + "unicode": "e0b7", + "label": "Bolt Lightning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 256L28.5 28c2-16 15.6-28 31.8-28H228.9c15 0 27.1 12.1 27.1 27.1c0 3.2-.6 6.5-1.7 9.5L208 160H347.3c20.2 0 36.7 16.4 36.7 36.7c0 7.4-2.2 14.6-6.4 20.7l-192.2 281c-5.9 8.6-15.6 13.7-25.9 13.7h-2.9c-15.7 0-28.5-12.8-28.5-28.5c0-2.3 .3-4.6 .9-6.9L176 288H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bomb": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a3" + ], + "secondary": [ + "10f1e2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bomb", + "comic", + "error", + "explode", + "fuse", + "grenade", + "warning" + ] + }, + "unicode": "f1e2", + "label": "Bomb", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.1 52.4L442.6 6.5C440.7 2.6 436.5 0 432.1 0s-8.5 2.6-10.4 6.5L405.2 52.4l-46 16.8c-4.3 1.6-7.3 5.9-7.2 10.4c0 4.5 3 8.7 7.2 10.2l45.7 16.8 16.8 45.8c1.5 4.4 5.8 7.5 10.4 7.5s8.9-3.1 10.4-7.5l16.5-45.8 45.7-16.8c4.2-1.5 7.2-5.7 7.2-10.2c0-4.6-3-8.9-7.2-10.4L459.1 52.4zm-132.4 53c-12.5-12.5-32.8-12.5-45.3 0l-2.9 2.9C256.5 100.3 232.7 96 208 96C93.1 96 0 189.1 0 304S93.1 512 208 512s208-93.1 208-208c0-24.7-4.3-48.5-12.2-70.5l2.9-2.9c12.5-12.5 12.5-32.8 0-45.3l-80-80zM200 192c-57.4 0-104 46.6-104 104v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-75.1 60.9-136 136-136h8c8.8 0 16 7.2 16 16s-7.2 16-16 16h-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bone": { + "aliases": { + "unicodes": { + "composite": [ + "1f9b4" + ], + "secondary": [ + "10f5d7" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bone", + "calcium", + "dog", + "skeletal", + "skeleton", + "tibia" + ] + }, + "unicode": "f5d7", + "label": "Bone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766749, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M153.7 144.8c6.9 16.3 20.6 31.2 38.3 31.2H384c17.7 0 31.4-14.9 38.3-31.2C434.4 116.1 462.9 96 496 96c44.2 0 80 35.8 80 80c0 30.4-17 56.9-42 70.4c-3.6 1.9-6 5.5-6 9.6s2.4 7.7 6 9.6c25 13.5 42 40 42 70.4c0 44.2-35.8 80-80 80c-33.1 0-61.6-20.1-73.7-48.8C415.4 350.9 401.7 336 384 336H192c-17.7 0-31.4 14.9-38.3 31.2C141.6 395.9 113.1 416 80 416c-44.2 0-80-35.8-80-80c0-30.4 17-56.9 42-70.4c3.6-1.9 6-5.5 6-9.6s-2.4-7.7-6-9.6C17 232.9 0 206.4 0 176c0-44.2 35.8-80 80-80c33.1 0 61.6 20.1 73.7 48.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bong": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55c" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aparatus", + "cannabis", + "marijuana", + "pipe", + "smoke", + "smoking" + ] + }, + "unicode": "f55c", + "label": "Bong", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 208.5c0 29.1-15.6 53.9-37.2 67.8c-17.2 11.1-31.5 26.1-41.7 43.7H302.9c-10.2-17.6-24.5-32.6-41.7-43.7c-21.6-13.9-37.2-38.7-37.2-67.8V64H160V208.5zM288 64V208.5c0 5.7 3.1 10.9 7.9 14c11.2 7.2 21.5 15.5 30.9 24.8L366.1 208l-7-7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l24 24 24 24c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-7-7-43.3 43.3C374 314.1 384 347.9 384 384c0 39.4-11.9 76.1-32.2 106.5c-9.6 14.4-26.5 21.5-43.8 21.5H76.1c-17.3 0-34.2-7.1-43.8-21.5C11.9 460.1 0 423.4 0 384c0-67.8 35.1-127.3 88.1-161.5c4.8-3.1 7.9-8.3 7.9-14V64C78.3 64 64 49.7 64 32S78.3 0 96 0h16H272h16c17.7 0 32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book": { + "aliases": { + "unicodes": { + "composite": [ + "1f4d4" + ], + "secondary": [ + "10f02d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "cover", + "decorated", + "diary", + "documentation", + "journal", + "library", + "notebook", + "notebook with decorative cover", + "read", + "research" + ] + }, + "unicode": "f02d", + "label": "Book", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zm32-240c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16zm16 48H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-atlas": { + "aliases": { + "names": [ + "atlas" + ], + "unicodes": { + "secondary": [ + "10f558" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "directions", + "geography", + "globe", + "library", + "map", + "research", + "travel", + "wayfinding" + ] + }, + "unicode": "f558", + "label": "Book Atlas", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM247.4 283.8c-3.7 3.7-6.2 4.2-7.4 4.2s-3.7-.5-7.4-4.2c-3.8-3.7-8-10-11.8-18.9c-6.2-14.5-10.8-34.3-12.2-56.9h63c-1.5 22.6-6 42.4-12.2 56.9c-3.8 8.9-8 15.2-11.8 18.9zm42.7-9.9c7.3-18.3 12-41.1 13.4-65.9h31.1c-4.7 27.9-21.4 51.7-44.5 65.9zm0-163.8c23.2 14.2 39.9 38 44.5 65.9H303.5c-1.4-24.7-6.1-47.5-13.4-65.9zM368 192a128 128 0 1 0 -256 0 128 128 0 1 0 256 0zM145.3 208h31.1c1.4 24.7 6.1 47.5 13.4 65.9c-23.2-14.2-39.9-38-44.5-65.9zm31.1-32H145.3c4.7-27.9 21.4-51.7 44.5-65.9c-7.3 18.3-12 41.1-13.4 65.9zm56.1-75.8c3.7-3.7 6.2-4.2 7.4-4.2s3.7 .5 7.4 4.2c3.8 3.7 8 10 11.8 18.9c6.2 14.5 10.8 34.3 12.2 56.9h-63c1.5-22.6 6-42.4 12.2-56.9c3.8-8.9 8-15.2 11.8-18.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-bible": { + "aliases": { + "names": [ + "bible" + ], + "unicodes": { + "secondary": [ + "10f647" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "catholicism", + "christianity", + "god", + "holy" + ] + }, + "unicode": "f647", + "label": "Book Bible", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zM208 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272V304c0 8.8-7.2 16-16 16H224c-8.8 0-16-7.2-16-16V192H160c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h48V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-bookmark": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "library", + "research" + ] + }, + "unicode": "e0bb", + "label": "Book Bookmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0h96V190.7c0 13.4 15.5 20.9 26 12.5L272 160l54 43.2c10.5 8.4 26 .9 26-12.5V0h32 32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-journal-whills": { + "aliases": { + "names": [ + "journal-whills" + ], + "unicodes": { + "secondary": [ + "10f66a" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "force", + "jedi", + "sith", + "star wars", + "yoda" + ] + }, + "unicode": "f66a", + "label": "Book Journal Whills", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zm90.4-234.4l-21.2-21.2c-3 10.1-5.1 20.6-5.1 31.6c0 .2 0 .5 .1 .8s.1 .5 .1 .8L165.2 226c2.5 2.1 3.4 5.8 2.3 8.9c-1.3 3-4.1 5.1-7.5 5.1c-1.9-.1-3.8-.8-5.2-2l-23.6-20.6C142.8 267 186.9 304 240 304s97.3-37 108.9-86.6L325.3 238c-1.4 1.2-3.3 2-5.3 2c-2.2-.1-4.4-1.1-6-2.8c-1.2-1.5-1.9-3.4-2-5.2c.1-2.2 1.1-4.4 2.8-6l37.1-32.5c0-.3 0-.5 .1-.8s.1-.5 .1-.8c0-11-2.1-21.5-5.1-31.6l-21.2 21.2c-3.1 3.1-8.1 3.1-11.3 0s-3.1-8.1 0-11.2l26.4-26.5c-8.2-17-20.5-31.7-35.9-42.6c-2.7-1.9-6.2 1.4-5 4.5c8.5 22.4 3.6 48-13 65.6c-3.2 3.4-3.6 8.9-.9 12.7c9.8 14 12.7 31.9 7.5 48.5c-5.9 19.4-22 34.1-41.9 38.3l-1.4-34.3 12.6 8.6c.6 .4 1.5 .6 2.3 .6c1.5 0 2.7-.8 3.5-2s.6-2.8-.1-4L260 225.4l18-3.6c1.8-.4 3.1-2.1 3.1-4s-1.4-3.5-3.1-3.9l-18-3.7 8.5-14.3c.8-1.2 .9-2.9 .1-4.1s-2-2-3.5-2l-.1 0c-.7 .1-1.5 .3-2.1 .7l-14.1 9.6L244 87.9c-.1-2.2-1.9-3.9-4-3.9s-3.9 1.6-4 3.9l-4.6 110.8-12-8.1c-1.5-1.1-3.6-.9-5 .4s-1.6 3.4-.8 5l8.6 14.3-18 3.7c-1.8 .4-3.1 2-3.1 3.9s1.4 3.6 3.1 4l18 3.8-8.6 14.2c-.2 .6-.5 1.4-.5 2c0 1.1 .5 2.1 1.2 3c.8 .6 1.8 1 2.8 1c.7 0 1.6-.2 2.2-.6l10.4-7.1-1.4 32.8c-19.9-4.1-36-18.9-41.9-38.3c-5.1-16.6-2.2-34.4 7.6-48.5c2.7-3.9 2.3-9.3-.9-12.7c-16.6-17.5-21.6-43.1-13.1-65.5c1.2-3.1-2.3-6.4-5-4.5c-15.3 10.9-27.6 25.6-35.8 42.6l26.4 26.5c3.1 3.1 3.1 8.1 0 11.2s-8.1 3.1-11.2 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7e6" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diary", + "documentation", + "health", + "history", + "journal", + "library", + "read", + "record", + "research" + ] + }, + "unicode": "f7e6", + "label": "Book Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM208 112v48H160c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h48c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H272V112c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-open": { + "aliases": { + "unicodes": { + "composite": [ + "1f4d6", + "1f56e" + ], + "secondary": [ + "10f518" + ] + } + }, + "changes": [ + "5.0.13", + "5.1.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Book", + "book", + "flyer", + "library", + "notebook", + "open", + "open book", + "pamphlet", + "reading", + "research" + ] + }, + "unicode": "f518", + "label": "Book Open", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M249.6 471.5c10.8 3.8 22.4-4.1 22.4-15.5V78.6c0-4.2-1.6-8.4-5-11C247.4 52 202.4 32 144 32C93.5 32 46.3 45.3 18.1 56.1C6.8 60.5 0 71.7 0 83.8V454.1c0 11.9 12.8 20.2 24.1 16.5C55.6 460.1 105.5 448 144 448c33.9 0 79 14 105.6 23.5zm76.8 0C353 462 398.1 448 432 448c38.5 0 88.4 12.1 119.9 22.6c11.3 3.8 24.1-4.6 24.1-16.5V83.8c0-12.1-6.8-23.3-18.1-27.6C529.7 45.3 482.5 32 432 32c-58.4 0-103.4 20-123 35.6c-3.3 2.6-5 6.8-5 11V456c0 11.4 11.7 19.3 22.4 15.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-open-reader": { + "aliases": { + "names": [ + "book-reader" + ], + "unicodes": { + "secondary": [ + "10f5da" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "flyer", + "library", + "notebook", + "open book", + "pamphlet", + "reading", + "research" + ] + }, + "unicode": "f5da", + "label": "Book Open Reader", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 96a96 96 0 1 1 192 0A96 96 0 1 1 160 96zm80 152V512l-48.4-24.2c-20.9-10.4-43.5-17-66.8-19.3l-96-9.6C12.5 457.2 0 443.5 0 427V224c0-17.7 14.3-32 32-32H62.3c63.6 0 125.6 19.6 177.7 56zm32 264V248c52.1-36.4 114.1-56 177.7-56H480c17.7 0 32 14.3 32 32V427c0 16.4-12.5 30.2-28.8 31.8l-96 9.6c-23.2 2.3-45.9 8.9-66.8 19.3L272 512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-quran": { + "aliases": { + "names": [ + "quran" + ], + "unicodes": { + "secondary": [ + "10f687" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "islam", + "muslim", + "religion" + ] + }, + "unicode": "f687", + "label": "Book Quran", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 0c53 0 96 43 96 96V416c0 53-43 96-96 96H64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V384c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0H64 352zm0 384H96v64H352c17.7 0 32-14.3 32-32s-14.3-32-32-32zM274.1 150.2l-8.9 21.4-23.1 1.9c-5.7 .5-8 7.5-3.7 11.2L256 199.8l-5.4 22.6c-1.3 5.5 4.7 9.9 9.6 6.9L280 217.2l19.8 12.1c4.9 3 10.9-1.4 9.6-6.9L304 199.8l17.6-15.1c4.3-3.7 2-10.8-3.7-11.2l-23.1-1.9-8.9-21.4c-2.2-5.3-9.6-5.3-11.8 0zM96 192c0 70.7 57.3 128 128 128c25.6 0 49.5-7.5 69.5-20.5c3.2-2.1 4.5-6.2 3.1-9.7s-5.2-5.6-9-4.8c-6.1 1.2-12.5 1.9-19 1.9c-52.4 0-94.9-42.5-94.9-94.9s42.5-94.9 94.9-94.9c6.5 0 12.8 .7 19 1.9c3.8 .8 7.5-1.3 9-4.8s.2-7.6-3.1-9.7C273.5 71.5 249.6 64 224 64C153.3 64 96 121.3 96 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-skull": { + "aliases": { + "names": [ + "book-dead" + ], + "unicodes": { + "secondary": [ + "10f6b7" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "crossbones", + "d&d", + "dark arts", + "death", + "dnd", + "documentation", + "evil", + "fantasy", + "halloween", + "holiday", + "library", + "necronomicon", + "read", + "research", + "skull", + "spell" + ] + }, + "unicode": "f6b7", + "label": "Book Skull", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM320 112c0-35.3-35.8-64-80-64s-80 28.7-80 64c0 20.9 12.6 39.5 32 51.2V176c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V163.2c19.4-11.7 32-30.3 32-51.2zM208 96a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM134.3 209.3c-8.1-3.5-17.5 .3-21 8.4s.3 17.5 8.4 21L199.4 272l-77.7 33.3c-8.1 3.5-11.9 12.9-8.4 21s12.9 11.9 21 8.4L240 289.4l105.7 45.3c8.1 3.5 17.5-.3 21-8.4s-.3-17.5-8.4-21L280.6 272l77.7-33.3c8.1-3.5 11.9-12.9 8.4-21s-12.9-11.9-21-8.4L240 254.6 134.3 209.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-tanakh": { + "aliases": { + "names": [ + "tanakh" + ], + "unicodes": { + "secondary": [ + "10f827" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "jewish", + "judaism", + "religion" + ] + }, + "unicode": "f827", + "label": "Book Tanakh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 0c53 0 96 43 96 96V416c0 53-43 96-96 96H64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V384c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0H64 352zm0 384H96v64H352c17.7 0 32-14.3 32-32s-14.3-32-32-32zM138.7 208l13.9 24H124.9l13.9-24zm-13.9-24L97.1 232c-6.2 10.7 1.5 24 13.9 24h55.4l27.7 48c6.2 10.7 21.6 10.7 27.7 0l27.7-48H305c12.3 0 20-13.3 13.9-24l-27.7-48 27.7-48c6.2-10.7-1.5-24-13.9-24H249.6L221.9 64c-6.2-10.7-21.6-10.7-27.7 0l-27.7 48H111c-12.3 0-20 13.3-13.9 24l27.7 48zm27.7 0l27.7-48h55.4l27.7 48-27.7 48H180.3l-27.7-48zm0-48l-13.9 24-13.9-24h27.7zm41.6-24L208 88l13.9 24H194.1zm69.3 24h27.7l-13.9 24-13.9-24zm13.9 72l13.9 24H263.4l13.9-24zm-55.4 48L208 280l-13.9-24h27.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bookmark": { + "aliases": { + "unicodes": { + "composite": [ + "1f516", + "f097" + ], + "secondary": [ + "10f02e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bookmark", + "favorite", + "library", + "mark", + "marker", + "read", + "remember", + "research", + "save" + ] + }, + "unicode": "f02e", + "label": "Bookmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 48V487.7C0 501.1 10.9 512 24.3 512c5 0 9.9-1.5 14-4.4L192 400 345.7 507.6c4.1 2.9 9 4.4 14 4.4c13.4 0 24.3-10.9 24.3-24.3V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48z" + }, + "regular": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0l0 48V441.4l130.1-92.9c8.3-6 19.6-6 27.9 0L336 441.4V48H48V0H336c26.5 0 48 21.5 48 48V488c0 9-5 17.2-13 21.3s-17.6 3.4-24.9-1.8L192 397.5 37.9 507.5c-7.3 5.2-16.9 5.9-24.9 1.8S0 497 0 488V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "bootstrap": { + "changes": [ + "5.8.0", + "5.15.4", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f836", + "label": "Bootstrap", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M333.5,201.4c0-22.1-15.6-34.3-43-34.3h-50.4v71.2h42.5C315.4,238.2,333.5,225,333.5,201.4z M517,188.6 c-9.5-30.9-10.9-68.8-9.8-98.1c1.1-30.5-22.7-58.5-54.7-58.5H123.7c-32.1,0-55.8,28.1-54.7,58.5c1,29.3-0.3,67.2-9.8,98.1 c-9.6,31-25.7,50.6-52.2,53.1v28.5c26.4,2.5,42.6,22.1,52.2,53.1c9.5,30.9,10.9,68.8,9.8,98.1c-1.1,30.5,22.7,58.5,54.7,58.5h328.7 c32.1,0,55.8-28.1,54.7-58.5c-1-29.3,0.3-67.2,9.8-98.1c9.6-31,25.7-50.6,52.1-53.1v-28.5C542.7,239.2,526.5,219.6,517,188.6z M300.2,375.1h-97.9V136.8h97.4c43.3,0,71.7,23.4,71.7,59.4c0,25.3-19.1,47.9-43.5,51.8v1.3c33.2,3.6,55.5,26.6,55.5,58.3 C383.4,349.7,352.1,375.1,300.2,375.1z M290.2,266.4h-50.1v78.4h52.3c34.2,0,52.3-13.7,52.3-39.5 C344.7,279.6,326.1,266.4,290.2,266.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "border-all": { + "aliases": { + "unicodes": { + "secondary": [ + "10f84c" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "grid", + "outline", + "stroke", + "table" + ] + }, + "unicode": "f84c", + "label": "Border All", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 96V224H256V96H384zm0 192V416H256V288H384zM192 224H64V96H192V224zM64 288H192V416H64V288zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "border-none": { + "aliases": { + "unicodes": { + "secondary": [ + "10f850" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "grid", + "outline", + "stroke", + "table" + ] + }, + "unicode": "f850", + "label": "Border None", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 480a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm96-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0-384a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM320 416a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0-320a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm0 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM224 480a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm0-448a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM416 416a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0-384a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM32 96a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM416 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM32 288a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm192 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm192 64a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM32 320a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM416 192a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM32 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm192 64a32 32 0 1 1 0-64 32 32 0 1 1 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "border-top-left": { + "aliases": { + "names": [ + "border-style" + ], + "unicodes": { + "secondary": [ + "10f853" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "outline", + "stroke", + "table" + ] + }, + "unicode": "f853", + "label": "Border Top Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-336c0-8.8 7.2-16 16-16l336 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32C35.8 32 0 67.8 0 112L0 448zm160 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm-96 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0 32a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bore-hole": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bore", + "bury", + "drill", + "hole" + ] + }, + "unicode": "e4c3", + "label": "Bore Hole", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c-17.7 0-32 14.3-32 32V296.6c-19.1 11.1-32 31.7-32 55.4c0 35.3 28.7 64 64 64s64-28.7 64-64c0-23.7-12.9-44.4-32-55.4V32c0-17.7-14.3-32-32-32zM48 128c-26.5 0-48 21.5-48 48V464c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H384c-17.7 0-32 14.3-32 32V352c0 53-43 96-96 96s-96-43-96-96V160c0-17.7-14.3-32-32-32H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bots": { + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e340", + "label": "Bots", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M86.344,197.834a51.767,51.767,0,0,0-41.57,20.058V156.018a8.19,8.19,0,0,0-8.19-8.19H8.19A8.19,8.19,0,0,0,0,156.018V333.551a8.189,8.189,0,0,0,8.19,8.189H36.584a8.189,8.189,0,0,0,8.19-8.189v-8.088c11.628,13.373,25.874,19.769,41.573,19.769,34.6,0,61.922-26.164,61.922-73.843C148.266,225.452,121.229,197.834,86.344,197.834ZM71.516,305.691c-9.593,0-21.221-4.942-26.745-12.5V250.164c5.528-7.558,17.152-12.791,26.745-12.791,17.734,0,31.107,13.082,31.107,34.013C102.623,292.609,89.25,305.691,71.516,305.691Zm156.372-59.032a17.4,17.4,0,1,0,17.4,17.4A17.4,17.4,0,0,0,227.888,246.659ZM273.956,156.7V112.039a13.308,13.308,0,1,0-10.237,0V156.7a107.49,107.49,0,1,0,10.237,0Zm85.993,107.367c0,30.531-40.792,55.281-91.112,55.281s-91.111-24.75-91.111-55.281,40.792-55.281,91.111-55.281S359.949,233.532,359.949,264.062Zm-50.163,17.4a17.4,17.4,0,1,0-17.4-17.4h0A17.4,17.4,0,0,0,309.786,281.466ZM580.7,250.455c-14.828-2.617-22.387-3.78-22.387-9.885,0-5.523,7.268-9.884,17.735-9.884a65.56,65.56,0,0,1,34.484,10.1,8.171,8.171,0,0,0,11.288-2.468c.07-.11.138-.221.2-.333l8.611-14.886a8.2,8.2,0,0,0-2.867-11.123,99.863,99.863,0,0,0-52.014-14.138c-38.956,0-60.179,21.514-60.179,46.225,0,36.342,33.725,41.864,57.563,45.642,13.373,2.326,24.13,4.361,24.13,11.048,0,6.4-5.523,10.757-18.9,10.757-13.552,0-30.994-6.222-42.623-13.579a8.206,8.206,0,0,0-11.335,2.491c-.035.054-.069.108-.1.164l-10.2,16.891a8.222,8.222,0,0,0,2.491,11.066c15.224,10.3,37.663,16.692,59.441,16.692,40.409,0,63.957-19.769,63.957-46.515C640,260.63,604.537,254.816,580.7,250.455Zm-95.928,60.787a8.211,8.211,0,0,0-9.521-5.938,23.168,23.168,0,0,1-4.155.387c-7.849,0-12.5-6.106-12.5-14.245V240.28h20.349a8.143,8.143,0,0,0,8.141-8.143V209.466a8.143,8.143,0,0,0-8.141-8.143H458.594V171.091a8.143,8.143,0,0,0-8.143-8.143H422.257a8.143,8.143,0,0,0-8.143,8.143h0v30.232H399a8.143,8.143,0,0,0-8.143,8.143h0v22.671A8.143,8.143,0,0,0,399,240.28h15.115v63.667c0,27.037,15.408,41.282,43.9,41.282,12.183,0,21.383-2.2,27.6-5.446a8.161,8.161,0,0,0,4.145-9.278Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bottle-droplet": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "drink", + "oil", + "olive oil", + "wine" + ] + }, + "unicode": "e4c4", + "label": "Bottle Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767418, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 0C82.7 0 72 10.7 72 24s10.7 24 24 24c4.4 0 8 3.6 8 8v64.9c0 12.2-7.2 23.1-17.2 30.1C53.7 174.1 32 212.5 32 256V448c0 35.3 28.7 64 64 64H224c35.3 0 64-28.7 64-64V256c0-43.5-21.7-81.9-54.8-105c-10-7-17.2-17.9-17.2-30.1V56c0-4.4 3.6-8 8-8c13.3 0 24-10.7 24-24s-10.7-24-24-24l-8 0 0 0 0 0H104l0 0 0 0L96 0zm64 382c-26.5 0-48-20.1-48-45c0-16.8 22.1-48.1 36.3-66.4c6-7.8 17.5-7.8 23.5 0C185.9 288.9 208 320.2 208 337c0 24.9-21.5 45-48 45z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bottle-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "h2o", + "plastic", + "water" + ] + }, + "unicode": "e4c5", + "label": "Bottle Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M120 0h80c13.3 0 24 10.7 24 24V64H96V24c0-13.3 10.7-24 24-24zM32 151.7c0-15.6 9-29.8 23.2-36.5l24.4-11.4c11-5.1 23-7.8 35.1-7.8h90.6c12.1 0 24.1 2.7 35.1 7.8l24.4 11.4c14.1 6.6 23.2 20.8 23.2 36.5c0 14.4-7.5 27-18.9 34.1c11.5 8.8 18.9 22.6 18.9 38.2c0 16.7-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40s-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40s-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48c0-16.7 8.5-31.4 21.5-40C40.5 415.4 32 400.7 32 384s8.5-31.4 21.5-40C40.5 335.4 32 320.7 32 304s8.5-31.4 21.5-40C40.5 255.4 32 240.7 32 224c0-15.6 7.4-29.4 18.9-38.2C39.5 178.7 32 166.1 32 151.7zM96 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H112c-8.8 0-16 7.2-16 16zm16 112c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bowl-food": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "catfood", + "dogfood", + "food", + "rice" + ] + }, + "unicode": "e4c6", + "label": "Bowl Food", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 192c0-35.3 28.7-64 64-64c.5 0 1.1 0 1.6 0C73 91.5 105.3 64 144 64c15 0 29 4.1 40.9 11.2C198.2 49.6 225.1 32 256 32s57.8 17.6 71.1 43.2C339 68.1 353 64 368 64c38.7 0 71 27.5 78.4 64c.5 0 1.1 0 1.6 0c35.3 0 64 28.7 64 64c0 11.7-3.1 22.6-8.6 32H8.6C3.1 214.6 0 203.7 0 192zm0 91.4C0 268.3 12.3 256 27.4 256H484.6c15.1 0 27.4 12.3 27.4 27.4c0 70.5-44.4 130.7-106.7 154.1L403.5 452c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bowl-rice": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boiled", + "cooked", + "cooked rice", + "rice", + "steamed" + ] + }, + "unicode": "e2eb", + "label": "Bowl Rice", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 56c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24zm24 48h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zM56 176H72c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24zM0 283.4C0 268.3 12.3 256 27.4 256H484.6c15.1 0 27.4 12.3 27.4 27.4c0 70.5-44.4 130.7-106.7 154.1L403.5 452c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4zM224 200c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H248c-13.3 0-24-10.7-24-24zm-96 0c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H104c-13.3 0-24-10.7-24-24s10.7-24 24-24zm216 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H296c-13.3 0-24-10.7-24-24s10.7-24 24-24zm120 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H440c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H392c-13.3 0-24-10.7-24-24s10.7-24 24-24zM296 32h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H296c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bowling-ball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f436" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "candlepin", + "gutter", + "lane", + "strike", + "tenpin" + ] + }, + "unicode": "f436", + "label": "Bowling Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM240 80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM208 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-64-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e6" + ], + "secondary": [ + "10f466" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "container", + "package", + "parcel", + "storage" + ] + }, + "unicode": "f466", + "label": "Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M50.7 58.5L0 160H208V32H93.7C75.5 32 58.9 42.3 50.7 58.5zM240 160H448L397.3 58.5C389.1 42.3 372.5 32 354.3 32H240V160zm208 32H0V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box-archive": { + "aliases": { + "names": [ + "archive" + ], + "unicodes": { + "secondary": [ + "10f187" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "package", + "save", + "storage" + ] + }, + "unicode": "f187", + "label": "Box Archive", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32H480c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H32C14.3 128 0 113.7 0 96V64C0 46.3 14.3 32 32 32zm0 128H480V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V160zm128 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f49e" + ] + } + }, + "changes": [ + "5.0.9", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "container", + "package", + "storage", + "unpack" + ] + }, + "unicode": "f49e", + "label": "Box Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M58.9 42.1c3-6.1 9.6-9.6 16.3-8.7L320 64 564.8 33.4c6.7-.8 13.3 2.7 16.3 8.7l41.7 83.4c9 17.9-.6 39.6-19.8 45.1L439.6 217.3c-13.9 4-28.8-1.9-36.2-14.3L320 64 236.6 203c-7.4 12.4-22.3 18.3-36.2 14.3L37.1 170.6c-19.3-5.5-28.8-27.2-19.8-45.1L58.9 42.1zM321.1 128l54.9 91.4c14.9 24.8 44.6 36.6 72.5 28.6L576 211.6v167c0 22-15 41.2-36.4 46.6l-204.1 51c-10.2 2.6-20.9 2.6-31 0l-204.1-51C79 419.7 64 400.5 64 378.5v-167L191.6 248c27.8 8 57.6-3.8 72.5-28.6L318.9 128h2.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box-tissue": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05b" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "kleenex", + "mucus", + "nose", + "sneeze", + "snot" + ] + }, + "unicode": "e05b", + "label": "Box Tissue", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M92.5 0H208c40 0 52 24 64 48s24 48 64 48h85.2C436 96 448 108 448 122.8c0 3.4-.7 6.8-1.9 10L409.6 224 384 288H128l-16-64L64.9 35.4c-.6-2.3-.9-4.6-.9-6.9C64 12.8 76.8 0 92.5 0zM79 224l16 64H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h48H384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H418.5l25.6-64H464c26.5 0 48 21.5 48 48V384H0V272c0-26.5 21.5-48 48-48H79zM0 416H512v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "boxes-packing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "package", + "storage", + "supplies" + ] + }, + "unicode": "e4c7", + "label": "Boxes Packing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 48c0-26.5 21.5-48 48-48H592c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H381.3c1.8-5 2.7-10.4 2.7-16V253.3c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H256V48zM571.3 347.3c6.2-6.2 6.2-16.4 0-22.6l-64-64c-6.2-6.2-16.4-6.2-22.6 0l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L480 310.6V432c0 8.8 7.2 16 16 16s16-7.2 16-16V310.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0zM0 176c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H16c-8.8 0-16-7.2-16-16V176zm352 80V480c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V256H352zM144 320c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "boxes-stacked": { + "aliases": { + "names": [ + "boxes", + "boxes-alt" + ], + "unicodes": { + "composite": [ + "f4a1" + ], + "primary": [ + "f4a1" + ], + "secondary": [ + "10f468", + "10f4a1" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archives", + "inventory", + "storage", + "warehouse" + ] + }, + "unicode": "f468", + "label": "Boxes Stacked", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M248 0H208c-26.5 0-48 21.5-48 48V160c0 35.3 28.7 64 64 64H352c35.3 0 64-28.7 64-64V48c0-26.5-21.5-48-48-48H328V80c0 8.8-7.2 16-16 16H264c-8.8 0-16-7.2-16-16V0zM64 256c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H224c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H184v80c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V256H64zM352 512H512c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H472v80c0 8.8-7.2 16-16 16H408c-8.8 0-16-7.2-16-16V256H352c-15 0-28.8 5.1-39.7 13.8c4.9 10.4 7.7 22 7.7 34.2V464c0 12.2-2.8 23.8-7.7 34.2C323.2 506.9 337 512 352 512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "braille": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2a1" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabet", + "blind", + "dots", + "raised", + "vision" + ] + }, + "unicode": "f2a1", + "label": "Braille", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 96a64 64 0 1 1 128 0A64 64 0 1 1 0 96zM224 272a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm0-80a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM80 416a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zM0 416a64 64 0 1 1 128 0A64 64 0 1 1 0 416zm240 0a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm-80 0a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 192a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM224 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM352 96a64 64 0 1 1 128 0A64 64 0 1 1 352 96zm240 0a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm-80 0a64 64 0 1 1 128 0A64 64 0 1 1 512 96zm64 176a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm0-80a64 64 0 1 1 0 128 64 64 0 1 1 0-128zm16 224a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm-80 0a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM416 272a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm0-80a64 64 0 1 1 0 128 64 64 0 1 1 0-128zm16 224a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm-80 0a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "brain": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e0" + ], + "secondary": [ + "10f5dc" + ] + } + }, + "changes": [ + "5.2.0", + "5.9.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brain", + "cerebellum", + "gray matter", + "intellect", + "intelligent", + "medulla oblongata", + "mind", + "noodle", + "wit" + ] + }, + "unicode": "f5dc", + "label": "Brain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766749, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 0c30.9 0 56 25.1 56 56V456c0 30.9-25.1 56-56 56c-28.9 0-52.7-21.9-55.7-50.1c-5.2 1.4-10.7 2.1-16.3 2.1c-35.3 0-64-28.7-64-64c0-7.4 1.3-14.6 3.6-21.2C21.4 367.4 0 338.2 0 304c0-31.9 18.7-59.5 45.8-72.3C37.1 220.8 32 207 32 192c0-30.7 21.6-56.3 50.4-62.6C80.8 123.9 80 118 80 112c0-29.9 20.6-55.1 48.3-62.1C131.3 21.9 155.1 0 184 0zM328 0c28.9 0 52.6 21.9 55.7 49.9c27.8 7 48.3 32.1 48.3 62.1c0 6-.8 11.9-2.4 17.4c28.8 6.2 50.4 31.9 50.4 62.6c0 15-5.1 28.8-13.8 39.7C493.3 244.5 512 272.1 512 304c0 34.2-21.4 63.4-51.6 74.8c2.3 6.6 3.6 13.8 3.6 21.2c0 35.3-28.7 64-64 64c-5.6 0-11.1-.7-16.3-2.1c-3 28.2-26.8 50.1-55.7 50.1c-30.9 0-56-25.1-56-56V56c0-30.9 25.1-56 56-56z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "brazilian-real-sign": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brazilian real sign", + "currency" + ] + }, + "unicode": "e46c", + "label": "Brazilian Real Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 0c17.7 0 32 14.3 32 32V50.2c12.5 2.3 24.7 6.4 36.2 12.1l10.1 5.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-10.2-5.1c-9.9-5-20.9-7.5-32-7.5h-1.7c-29.8 0-53.9 24.1-53.9 53.9c0 22 13.4 41.8 33.9 50l52 20.8c44.7 17.9 74.1 61.2 74.1 109.4v3.4c0 51.2-33.6 94.6-80 109.2V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V460.6c-15-3.5-29.4-9.7-42.3-18.3l-23.4-15.6c-14.7-9.8-18.7-29.7-8.9-44.4s29.7-18.7 44.4-8.9L361.2 389c10.8 7.2 23.4 11 36.3 11c27.9 0 50.5-22.6 50.5-50.5v-3.4c0-22-13.4-41.8-33.9-50l-52-20.8C317.3 257.4 288 214.1 288 165.9C288 114 321.5 70 368 54.2V32c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bread-slice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ec" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bake", + "bakery", + "baking", + "dough", + "flour", + "gluten", + "grain", + "sandwich", + "sourdough", + "toast", + "wheat", + "yeast" + ] + }, + "unicode": "f7ec", + "label": "Bread Slice", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32C192 32 0 64 0 192c0 35.3 28.7 64 64 64V432c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V256c35.3 0 64-28.7 64-64C512 64 320 32 256 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "road" + ] + }, + "unicode": "e4c8", + "label": "Bridge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H72v64H0V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96s96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96V160H504V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM456 96v64H376V96h80zM328 96v64H248V96h80zM200 96v64H120V96h80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "not affected", + "ok", + "okay", + "road" + ] + }, + "unicode": "e4c9", + "label": "Bridge Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "bridge", + "road" + ] + }, + "unicode": "e4ca", + "label": "Bridge Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "destroy", + "road" + ] + }, + "unicode": "e4cb", + "label": "Bridge Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "closed", + "lockdown", + "quarantine", + "road" + ] + }, + "unicode": "e4cc", + "label": "Bridge Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 64c0-17.7 14.3-32 32-32H576c17.7 0 32 14.3 32 32s-14.3 32-32 32H536v64h-8c-61.9 0-112 50.1-112 112v24.6c-9.9 5.8-18.2 14.1-23.8 24.1c-17.6-20-43.4-32.7-72.2-32.7c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V384c0-53-43-96-96-96V160h72V96H64C46.3 96 32 81.7 32 64zM408 96v64h80V96H408zm-48 64V96H280v64h80zM152 96v64h80V96H152zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "road" + ] + }, + "unicode": "e4ce", + "label": "Bridge Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H544c17.7 0 32 14.3 32 32v35.6c0 15.7-12.7 28.4-28.4 28.4c-37.3 0-67.6 30.2-67.6 67.6V352.5c-12.9 0-25.8 3.9-36.8 11.7c-18 12.4-40.1 20.3-59.2 20.3h0l0-.5V256c0-53-43-96-96-96s-96 43-96 96V384l0 .5c-19 0-41.2-7.9-59.1-20.3c-11.1-7.8-24-11.7-36.9-11.7V227.6C96 190.2 65.8 160 28.4 160C12.7 160 0 147.3 0 131.6V96zM306.5 389.9C329 405.4 356.5 416 384 416c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 469.7 417 480 384 480c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 405.2 165.1 416 192 416c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "briefcase": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bc" + ], + "secondary": [ + "10f0b1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "briefcas", + "briefcase", + "business", + "luggage", + "office", + "work" + ] + }, + "unicode": "f0b1", + "label": "Briefcase", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 320 512V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM512 288H320v32c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "briefcase-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f469" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "emt", + "first aid", + "health" + ] + }, + "unicode": "f469", + "label": "Briefcase Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zm96 152c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V320H176c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "broom": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f9" + ], + "secondary": [ + "10f51a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broom", + "clean", + "cleaning", + "firebolt", + "fly", + "halloween", + "nimbus 2000", + "quidditch", + "sweep", + "sweeping", + "witch" + ] + }, + "unicode": "f51a", + "label": "Broom", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M566.6 54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192-34.7-34.7c-4.2-4.2-10-6.6-16-6.6c-12.5 0-22.6 10.1-22.6 22.6v29.1L364.3 320h29.1c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16l-34.7-34.7 192-192zM341.1 353.4L222.6 234.9c-42.7-3.7-85.2 11.7-115.8 42.3l-8 8C76.5 307.5 64 337.7 64 369.2c0 6.8 7.1 11.2 13.2 8.2l51.1-25.5c5-2.5 9.5 4.1 5.4 7.9L7.3 473.4C2.7 477.6 0 483.6 0 489.9C0 502.1 9.9 512 22.1 512l173.3 0c38.8 0 75.9-15.4 103.4-42.8c30.6-30.6 45.9-73.1 42.3-115.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "broom-ball": { + "aliases": { + "names": [ + "quidditch", + "quidditch-broom-ball" + ], + "unicodes": { + "secondary": [ + "10f458" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "bludger", + "broom", + "golden snitch", + "harry potter", + "hogwarts", + "quaffle", + "sport", + "wizard" + ] + }, + "unicode": "f458", + "label": "Broom Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M566.6 9.4c12.5 12.5 12.5 32.8 0 45.3l-192 192 34.7 34.7c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H364.3L256 211.7V182.6c0-12.5 10.1-22.6 22.6-22.6c6 0 11.8 2.4 16 6.6l34.7 34.7 192-192c12.5-12.5 32.8-12.5 45.3 0zm-344 225.5L341.1 353.4c3.7 42.7-11.7 85.2-42.3 115.8C271.4 496.6 234.2 512 195.5 512L22.1 512C9.9 512 0 502.1 0 489.9c0-6.3 2.7-12.3 7.3-16.5L133.7 359.7c4.2-3.7-.4-10.4-5.4-7.9L77.2 377.4c-6.1 3-13.2-1.4-13.2-8.2c0-31.5 12.5-61.7 34.8-84l8-8c30.6-30.6 73.1-45.9 115.8-42.3zM464 352a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "brush": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "bristles", + "color", + "handle", + "paint" + ] + }, + "unicode": "f55d", + "label": "Brush", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M162.4 6c-1.5-3.6-5-6-8.9-6h-19c-3.9 0-7.5 2.4-8.9 6L104.9 57.7c-3.2 8-14.6 8-17.8 0L66.4 6c-1.5-3.6-5-6-8.9-6H48C21.5 0 0 21.5 0 48V224v22.4V256H9.6 374.4 384v-9.6V224 48c0-26.5-21.5-48-48-48H230.5c-3.9 0-7.5 2.4-8.9 6L200.9 57.7c-3.2 8-14.6 8-17.8 0L162.4 6zM0 288v32c0 35.3 28.7 64 64 64h64v64c0 35.3 28.7 64 64 64s64-28.7 64-64V384h64c35.3 0 64-28.7 64-64V288H0zM192 432a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "btc": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f15a", + "label": "BTC", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bucket": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "pail", + "sandcastle" + ] + }, + "unicode": "e4cf", + "label": "Bucket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 152v8H48v-8C48 68.1 116.1 0 200 0h48c83.9 0 152 68.1 152 152v8H352v-8c0-57.4-46.6-104-104-104H200C142.6 48 96 94.6 96 152zM0 224c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32h-5.1L388.5 469c-2.6 24.4-23.2 43-47.7 43H107.2c-24.6 0-45.2-18.5-47.7-43L37.1 256H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "buffer": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f837", + "label": "Buffer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M427.84 380.67l-196.5 97.82a18.6 18.6 0 0 1-14.67 0L20.16 380.67c-4-2-4-5.28 0-7.29L67.22 350a18.65 18.65 0 0 1 14.69 0l134.76 67a18.51 18.51 0 0 0 14.67 0l134.76-67a18.62 18.62 0 0 1 14.68 0l47.06 23.43c4.05 1.96 4.05 5.24 0 7.24zm0-136.53l-47.06-23.43a18.62 18.62 0 0 0-14.68 0l-134.76 67.08a18.68 18.68 0 0 1-14.67 0L81.91 220.71a18.65 18.65 0 0 0-14.69 0l-47.06 23.43c-4 2-4 5.29 0 7.31l196.51 97.8a18.6 18.6 0 0 0 14.67 0l196.5-97.8c4.05-2.02 4.05-5.3 0-7.31zM20.16 130.42l196.5 90.29a20.08 20.08 0 0 0 14.67 0l196.51-90.29c4-1.86 4-4.89 0-6.74L231.33 33.4a19.88 19.88 0 0 0-14.67 0l-196.5 90.28c-4.05 1.85-4.05 4.88 0 6.74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bug": { + "aliases": { + "unicodes": { + "secondary": [ + "10f188" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.15.4", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beetle", + "error", + "glitch", + "insect", + "repair", + "report" + ] + }, + "unicode": "f188", + "label": "Bug", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c53 0 96 43 96 96v3.6c0 15.7-12.7 28.4-28.4 28.4H188.4c-15.7 0-28.4-12.7-28.4-28.4V96c0-53 43-96 96-96zM41.4 105.4c12.5-12.5 32.8-12.5 45.3 0l64 64c.7 .7 1.3 1.4 1.9 2.1c14.2-7.3 30.4-11.4 47.5-11.4H312c17.1 0 33.2 4.1 47.5 11.4c.6-.7 1.2-1.4 1.9-2.1l64-64c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-64 64c-.7 .7-1.4 1.3-2.1 1.9c6.2 12 10.1 25.3 11.1 39.5H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H416c0 24.6-5.5 47.8-15.4 68.6c2.2 1.3 4.2 2.9 6 4.8l64 64c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-63.1-63.1c-24.5 21.8-55.8 36.2-90.3 39.6V240c0-8.8-7.2-16-16-16s-16 7.2-16 16V479.2c-34.5-3.4-65.8-17.8-90.3-39.6L86.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l64-64c1.9-1.9 3.9-3.4 6-4.8C101.5 367.8 96 344.6 96 320H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96.3c1.1-14.1 5-27.5 11.1-39.5c-.7-.6-1.4-1.2-2.1-1.9l-64-64c-12.5-12.5-12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bug-slash": { + "changes": [ + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beetle", + "fix", + "glitch", + "insect", + "optimize", + "repair", + "report", + "warning" + ] + }, + "unicode": "e490", + "label": "Bug Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L477.4 348.9c1.7-9.4 2.6-19 2.6-28.9h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H479.7c-1.1-14.1-5-27.5-11.1-39.5c.7-.6 1.4-1.2 2.1-1.9l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-.7 .7-1.3 1.4-1.9 2.1C409.2 164.1 393.1 160 376 160H264c-8.3 0-16.3 1-24 2.8L38.8 5.1zM320 0c-53 0-96 43-96 96v3.6c0 15.7 12.7 28.4 28.4 28.4H387.6c15.7 0 28.4-12.7 28.4-28.4V96c0-53-43-96-96-96zM160.3 256H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c0 24.6 5.5 47.8 15.4 68.6c-2.2 1.3-4.2 2.9-6 4.8l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l63.1-63.1c24.5 21.8 55.8 36.2 90.3 39.6V335.5L166.7 227.3c-3.4 9-5.6 18.7-6.4 28.7zM336 479.2c36.6-3.6 69.7-19.6 94.8-43.8L336 360.7V479.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bugs": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bedbug", + "infestation", + "lice", + "plague", + "ticks" + ] + }, + "unicode": "e4d0", + "label": "Bugs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M164.5 107.4l33.4-73.5c5.5-12.1 .1-26.3-11.9-31.8s-26.3-.1-31.8 11.9L128 71.7 101.9 14.1C96.4 2 82.1-3.3 70.1 2.1S52.7 21.9 58.1 33.9l33.4 73.5c-10.2 7.1-18.2 17-22.9 28.6h-17l-4.1-20.7c-2.6-13-15.2-21.4-28.2-18.8S-2.1 111.7 .5 124.7l8 40C10.7 175.9 20.6 184 32 184H64v23.3l-37.8 9.5c-9.5 2.4-16.6 10.2-17.9 19.9l-8 56c-1.9 13.1 7.2 25.3 20.4 27.2s25.3-7.2 27.2-20.4l5.7-40 18.4-4.6C82.7 274.6 103.8 288 128 288s45.3-13.4 56.1-33.2l18.4 4.6 5.7 40c1.9 13.1 14 22.2 27.2 20.4s22.2-14 20.4-27.2l-8-56c-1.4-9.7-8.5-17.5-17.9-19.9L192 207.3V184h32c11.4 0 21.3-8.1 23.5-19.3l8-40c2.6-13-5.8-25.6-18.8-28.2s-25.6 5.8-28.2 18.8L204.3 136h-17c-4.7-11.6-12.7-21.5-22.9-28.6zM496 286.5l65.6-47c10.8-7.7 13.3-22.7 5.6-33.5s-22.7-13.3-33.5-5.6l-51.4 36.8 6.1-62.9c1.3-13.2-8.4-24.9-21.6-26.2s-24.9 8.4-26.2 21.6L432.8 250c-12.3 1-24.2 5.6-34.1 13.3L384 254.8l6.8-20c4.2-12.6-2.5-26.2-15-30.4s-26.2 2.5-30.4 15l-13.1 38.6c-3.7 10.8 .8 22.8 10.7 28.5l27.7 16L359 322.7 321.5 312c-9.4-2.7-19.5 .6-25.5 8.3l-34.9 44.5c-8.2 10.4-6.4 25.5 4.1 33.7s25.5 6.4 33.7-4.1l25-31.8 18.2 5.2c-.5 22.6 11 44.7 32 56.8s45.9 11 65.2-.7l13.6 13.2-15.1 37.5c-4.9 12.3 1 26.3 13.3 31.2s26.3-1 31.2-13.3L503.5 440c3.6-9.1 1.4-19.4-5.6-26.2l-28-27.1 11.6-20.1 27.7 16c9.9 5.7 22.5 3.7 30-4.9L566.2 347c8.7-10 7.8-25.1-2.2-33.9s-25.1-7.8-33.9 2.2l-13.9 15.9-14.7-8.5c1.7-12.4-.2-25-5.5-36.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building": { + "aliases": { + "unicodes": { + "composite": [ + "1f3e2", + "f0f7" + ], + "secondary": [ + "10f1ad" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apartment", + "building", + "business", + "city", + "company", + "office", + "office building", + "urban", + "work" + ] + }, + "unicode": "f1ad", + "label": "Building", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16z" + }, + "regular": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 48c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16h80V400c0-26.5 21.5-48 48-48s48 21.5 48 48v64h80c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H64zM0 64C0 28.7 28.7 0 64 0H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm88 40c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H104c-8.8 0-16-7.2-16-16V104zM232 88h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H232c-8.8 0-16-7.2-16-16V104c0-8.8 7.2-16 16-16zM88 232c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H104c-8.8 0-16-7.2-16-16V232zm144-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H232c-8.8 0-16-7.2-16-16V232c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "building-circle-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "distribution center", + "office" + ] + }, + "unicode": "e4d1", + "label": "Building Circle Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V232.2c-39.1 32.3-64 81.1-64 135.8c0 49.5 20.4 94.2 53.3 126.2C364.5 505.1 351.1 512 336 512H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H272zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zm96 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm140.7-67.3c-6.2 6.2-6.2 16.4 0 22.6L521.4 352H432c-8.8 0-16 7.2-16 16s7.2 16 16 16h89.4l-28.7 28.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56-56c6.2-6.2 6.2-16.4 0-22.6l-56-56c-6.2-6.2-16.4-6.2-22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "not affected", + "office", + "ok", + "okay" + ] + }, + "unicode": "e4d2", + "label": "Building Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "building", + "city", + "office" + ] + }, + "unicode": "e4d3", + "label": "Building Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "destroy", + "office" + ] + }, + "unicode": "e4d4", + "label": "Building Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-columns": { + "aliases": { + "names": [ + "bank", + "institution", + "museum", + "university" + ], + "unicodes": { + "secondary": [ + "10f19c" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "building", + "college", + "education", + "institution", + "museum", + "students" + ] + }, + "unicode": "f19c", + "label": "Building Columns", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M243.4 2.6l-224 96c-14 6-21.8 21-18.7 35.8S16.8 160 32 160v8c0 13.3 10.7 24 24 24H456c13.3 0 24-10.7 24-24v-8c15.2 0 28.3-10.7 31.3-25.6s-4.8-29.9-18.7-35.8l-224-96c-8-3.4-17.2-3.4-25.2 0zM128 224H64V420.3c-.6 .3-1.2 .7-1.8 1.1l-48 32c-11.7 7.8-17 22.4-12.9 35.9S17.9 512 32 512H480c14.1 0 26.5-9.2 30.6-22.7s-1.1-28.1-12.9-35.9l-48-32c-.6-.4-1.2-.7-1.8-1.1V224H384V416H344V224H280V416H232V224H168V416H128V224zM256 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + " city", + "building", + "diplomat", + "embassy", + "flag", + "headquarters", + "united nations" + ] + }, + "unicode": "e4d5", + "label": "Building Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM448 0c-17.7 0-32 14.3-32 32V512h64V192H624c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H480c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "closed", + "lock", + "lockdown", + "quarantine", + "secure" + ] + }, + "unicode": "e4d6", + "label": "Building Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h88.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-23.7 12.9-44.4 32-55.4V272c0-30.5 12.2-58.2 32-78.4V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM464 240c17.7 0 32 14.3 32 32v48H432V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-ngo": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + " city", + "building", + "non governmental organization", + "office" + ] + }, + "unicode": "e4d7", + "label": "Building Ngo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM168 64h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H184v64h16V144c0-8.8 7.2-16 16-16s16 7.2 16 16v24c0 13.3-10.7 24-24 24H176c-13.3 0-24-10.7-24-24V80c0-8.8 7.2-16 16-16zM304 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16s16-7.2 16-16V112c0-8.8-7.2-16-16-16zm-48 16c0-26.5 21.5-48 48-48s48 21.5 48 48v32c0 26.5-21.5 48-48 48s-48-21.5-48-48V112zM61.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4L64 132.8V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-shield": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "police", + "protect", + "safety" + ] + }, + "unicode": "e4d8", + "label": "Building Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V207l-42.4 17H304 272c-8.8 0-16 7.2-16 16v32 24.2V304c0 .9 .1 1.7 .2 2.6c2.3 58.1 24.1 144.8 98.7 201.5c-5.8 2.5-12.2 3.9-18.9 3.9H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zM423.1 225.7c5.7-2.3 12.1-2.3 17.8 0l120 48C570 277.4 576 286.2 576 296c0 63.3-25.9 168.8-134.8 214.2c-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3l120-48zM527.4 312L432 273.8V461.7c68.2-33 91.5-99 95.4-149.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-un": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "office", + "united nations" + ] + }, + "unicode": "e4d9", + "label": "Building Un", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM237.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM112 80v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V80c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-user": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apartment", + "building", + "city" + ] + }, + "unicode": "e4da", + "label": "Building User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h89.9c-6.3-10.2-9.9-22.2-9.9-35.1c0-46.9 25.8-87.8 64-109.2V271.8 48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM576 272a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM352 477.1c0 19.3 15.6 34.9 34.9 34.9H605.1c19.3 0 34.9-15.6 34.9-34.9c0-51.4-41.7-93.1-93.1-93.1H445.1c-51.4 0-93.1 41.7-93.1 93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "building", + "city", + "usda" + ] + }, + "unicode": "e4db", + "label": "Building Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H272zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zm384 80v16c0 44.2-35.8 80-80 80H544V272c0-44.2 35.8-80 80-80h16zm0 128c0 44.2-35.8 80-80 80H544V384c0-44.2 35.8-80 80-80h16v16zm0 112c0 44.2-35.8 80-80 80H544V496c0-44.2 35.8-80 80-80h16v16zM512 496v16H496c-44.2 0-80-35.8-80-80V416h16c44.2 0 80 35.8 80 80zm0-96H496c-44.2 0-80-35.8-80-80V304h16c44.2 0 80 35.8 80 80v16zm0-128v16H496c-44.2 0-80-35.8-80-80V192h16c44.2 0 80 35.8 80 80zM528 32c13.3 0 24 10.7 24 24V160c0 13.3-10.7 24-24 24s-24-10.7-24-24V56c0-13.3 10.7-24 24-24zm96 64v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24s24 10.7 24 24zM456 72c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bullhorn": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e2", + "1f56b" + ], + "secondary": [ + "10f0a1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Bullhorn", + "announcement", + "broadcast", + "loud", + "louder", + "loudspeaker", + "megaphone", + "public address", + "share" + ] + }, + "unicode": "f0a1", + "label": "Bullhorn", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9L381.7 53c-48 48-113.1 75-181 75H192 160 64c-35.3 0-64 28.7-64 64v96c0 35.3 28.7 64 64 64l0 128c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V352l8.7 0c67.9 0 133 27 181 75l43.6 43.6c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V300.4c18.6-8.8 32-32.5 32-60.4s-13.4-51.6-32-60.4V32zm-64 76.7V240 371.3C357.2 317.8 280.5 288 200.7 288H192V192h8.7c79.8 0 156.5-29.8 215.3-83.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bullseye": { + "aliases": { + "unicodes": { + "secondary": [ + "10f140" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.3.0", + "5.10.1", + "5.15.4", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archery", + "goal", + "objective", + "strategy", + "target" + ] + }, + "unicode": "f140", + "label": "Bullseye", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 256A192 192 0 1 0 64 256a192 192 0 1 0 384 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 80a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zM224 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "burger": { + "aliases": { + "names": [ + "hamburger" + ], + "unicodes": { + "secondary": [ + "10f805" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacon", + "beef", + "burger", + "burger king", + "cheeseburger", + "fast food", + "grill", + "ground beef", + "mcdonalds", + "sandwich" + ] + }, + "unicode": "f805", + "label": "Burger", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M61.1 224C45 224 32 211 32 194.9c0-1.9 .2-3.7 .6-5.6C37.9 168.3 78.8 32 256 32s218.1 136.3 223.4 157.3c.5 1.9 .6 3.7 .6 5.6c0 16.1-13 29.1-29.1 29.1H61.1zM144 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm240 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32zM272 96a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zM16 304c0-26.5 21.5-48 48-48H448c26.5 0 48 21.5 48 48s-21.5 48-48 48H64c-26.5 0-48-21.5-48-48zm16 96c0-8.8 7.2-16 16-16H464c8.8 0 16 7.2 16 16v16c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V400z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "buromobelexperte": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37f", + "label": "Büromöbel-Experte GmbH & Co. KG.", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boom", + "crash", + "explosion" + ] + }, + "unicode": "e4dc", + "label": "Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M37.6 4.2C28-2.3 15.2-1.1 7 7s-9.4 21-2.8 30.5l112 163.3L16.6 233.2C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4L66.8 412.8c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1L392.3 312.2l103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8L388.9 198.7l25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7L278.8 16.6C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6l-32.3 99.6L37.6 4.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bus": { + "aliases": { + "unicodes": { + "composite": [ + "1f68d" + ], + "secondary": [ + "10f207" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bus", + "oncoming", + "oncoming bus", + "public transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f207", + "label": "Bus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0C422.4 0 512 35.2 512 80V96l0 32c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32l0 160c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H192v32c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32l0-32c-17.7 0-32-14.3-32-32l0-160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h0V96h0V80C64 35.2 153.6 0 288 0zM128 160v96c0 17.7 14.3 32 32 32H272V128H160c-17.7 0-32 14.3-32 32zM304 288H416c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H304V288zM144 400a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm288 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM384 80c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16s7.2 16 16 16H368c8.8 0 16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bus-simple": { + "aliases": { + "names": [ + "bus-alt" + ], + "unicodes": { + "secondary": [ + "10f55e" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mta", + "public transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f55e", + "label": "Bus Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0C348.8 0 448 35.2 448 80V96 416c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32l0-32c-17.7 0-32-14.3-32-32V96 80C0 35.2 99.2 0 224 0zM64 128V256c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 400a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm288 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "business-time": { + "aliases": { + "names": [ + "briefcase-clock" + ], + "unicodes": { + "secondary": [ + "10f64a" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "briefcase", + "business socks", + "clock", + "flight of the conchords", + "reminder", + "wednesday" + ] + }, + "unicode": "f64a", + "label": "Business Time", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 352h8.2c32.3-39.1 81.1-64 135.8-64c5.4 0 10.7 .2 16 .7V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM320 352H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H360.2C335.1 449.6 320 410.5 320 368c0-5.4 .2-10.7 .7-16l-.7 0zm320 16a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zM496 288c8.8 0 16 7.2 16 16v48h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H496c-8.8 0-16-7.2-16-16V304c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "buy-n-large": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8a6", + "label": "Buy n Large", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32C133.27 32 7.79 132.32 7.79 256S133.27 480 288 480s280.21-100.32 280.21-224S442.73 32 288 32zm-85.39 357.19L64.1 390.55l77.25-290.74h133.44c63.15 0 84.93 28.65 78 72.84a60.24 60.24 0 0 1-1.5 6.85 77.39 77.39 0 0 0-17.21-1.93c-42.35 0-76.69 33.88-76.69 75.65 0 37.14 27.14 68 62.93 74.45-18.24 37.16-56.16 60.92-117.71 61.52zM358 207.11h32l-22.16 90.31h-35.41l-11.19-35.63-7.83 35.63h-37.83l26.63-90.31h31.34l15 36.75zm145.86 182.08H306.79L322.63 328a78.8 78.8 0 0 0 11.47.83c42.34 0 76.69-33.87 76.69-75.65 0-32.65-21-60.46-50.38-71.06l21.33-82.35h92.5l-53.05 205.36h103.87zM211.7 269.39H187l-13.8 56.47h24.7c16.14 0 32.11-3.18 37.94-26.65 5.56-22.31-7.99-29.82-24.14-29.82zM233 170h-21.34L200 217.71h21.37c18 0 35.38-14.64 39.21-30.14C265.23 168.71 251.07 170 233 170z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "buysellads": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f20d", + "label": "BuySellAds", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "c": { + "aliases": { + "unicodes": { + "composite": [ + "63" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter C", + "Latin Small Letter C", + "letter" + ] + }, + "unicode": "43", + "label": "C", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M329.1 142.9c-62.5-62.5-155.8-62.5-218.3 0s-62.5 163.8 0 226.3s155.8 62.5 218.3 0c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3c-87.5 87.5-221.3 87.5-308.8 0s-87.5-229.3 0-316.8s221.3-87.5 308.8 0c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cable-car": { + "aliases": { + "names": [ + "tram" + ], + "unicodes": { + "composite": [ + "1f6a1", + "e0cf" + ], + "secondary": [ + "10f7da" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aerial tramway", + "cable", + "gondola", + "lift", + "mountain", + "mountain cableway", + "tram", + "tramway", + "trolley" + ] + }, + "unicode": "f7da", + "label": "Cable Car", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM160 56a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM32 288c0-35.3 28.7-64 64-64H232V157.5l-203.1 42c-13 2.7-25.7-5.7-28.4-18.6s5.7-25.7 18.6-28.4l232-48 232-48c13-2.7 25.7 5.7 28.4 18.6s-5.7 25.7-18.6 28.4L280 147.5V224H416c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V288zm64 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H96zm112 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cake-candles": { + "aliases": { + "names": [ + "birthday-cake", + "cake" + ], + "unicodes": { + "composite": [ + "1f382" + ], + "secondary": [ + "10f1fd" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anniversary", + "bakery", + "birthday", + "birthday cake", + "cake", + "candles", + "celebration", + "dessert", + "frosting", + "holiday", + "party", + "pastry", + "sweet" + ] + }, + "unicode": "f1fd", + "label": "Cake Candles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M86.4 5.5L61.8 47.6C58 54.1 56 61.6 56 69.2V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L105.6 5.5C103.6 2.1 100 0 96 0s-7.6 2.1-9.6 5.5zm128 0L189.8 47.6c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L233.6 5.5C231.6 2.1 228 0 224 0s-7.6 2.1-9.6 5.5zM317.8 47.6c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L361.6 5.5C359.6 2.1 356 0 352 0s-7.6 2.1-9.6 5.5L317.8 47.6zM128 176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c-35.3 0-64 28.7-64 64v71c8.3 5.2 18.1 9 28.8 9c13.5 0 27.2-6.1 38.4-13.4c5.4-3.5 9.9-7.1 13-9.7c1.5-1.3 2.7-2.4 3.5-3.1c.4-.4 .7-.6 .8-.8l.1-.1 0 0 0 0s0 0 0 0s0 0 0 0c3.1-3.2 7.4-4.9 11.9-4.8s8.6 2.1 11.6 5.4l0 0 0 0 .1 .1c.1 .1 .4 .4 .7 .7c.7 .7 1.7 1.7 3.1 3c2.8 2.6 6.8 6.1 11.8 9.5c10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5c1.4-1.3 2.4-2.3 3.1-3c.3-.3 .6-.6 .7-.7l.1-.1c3-3.5 7.4-5.4 12-5.4s9 2 12 5.4l.1 .1c.1 .1 .4 .4 .7 .7c.7 .7 1.7 1.7 3.1 3c2.8 2.6 6.8 6.1 11.8 9.5c10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5c1.4-1.3 2.4-2.3 3.1-3c.3-.3 .6-.6 .7-.7l.1-.1c2.9-3.4 7.1-5.3 11.6-5.4s8.7 1.6 11.9 4.8l0 0 0 0 0 0 .1 .1c.2 .2 .4 .4 .8 .8c.8 .7 1.9 1.8 3.5 3.1c3.1 2.6 7.5 6.2 13 9.7c11.2 7.3 24.9 13.4 38.4 13.4c10.7 0 20.5-3.9 28.8-9V288c0-35.3-28.7-64-64-64V176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48H256V176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48H128V176zM448 394.6c-8.5 3.3-18.2 5.4-28.8 5.4c-22.5 0-42.4-9.9-55.8-18.6c-4.1-2.7-7.8-5.4-10.9-7.8c-2.8 2.4-6.1 5-9.8 7.5C329.8 390 310.6 400 288 400s-41.8-10-54.6-18.9c-3.5-2.4-6.7-4.9-9.4-7.2c-2.7 2.3-5.9 4.7-9.4 7.2C201.8 390 182.6 400 160 400s-41.8-10-54.6-18.9c-3.7-2.6-7-5.2-9.8-7.5c-3.1 2.4-6.8 5.1-10.9 7.8C71.2 390.1 51.3 400 28.8 400c-10.6 0-20.3-2.2-28.8-5.4V480c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32V394.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calculator": { + "aliases": { + "unicodes": { + "composite": [ + "1f5a9" + ], + "secondary": [ + "10f1ec" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pocket Calculator", + "abacus", + "addition", + "arithmetic", + "counting", + "math", + "multiplication", + "subtraction" + ] + }, + "unicode": "f1ec", + "label": "Calculator", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM96 64H288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32zm32 160a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM96 352a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM64 416c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM192 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm32 64a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm64-64a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm32 64a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM288 448a32 32 0 1 1 0-64 32 32 0 1 1 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calendar": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c5", + "1f4c6" + ], + "secondary": [ + "10f133" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "calendar-o", + "date", + "day", + "event", + "month", + "schedule", + "tear-off calendar", + "time", + "when", + "year" + ] + }, + "unicode": "f133", + "label": "Calendar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z" + }, + "regular": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192H400V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f274" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "appointment", + "confirm", + "correct", + "date", + "day", + "done", + "event", + "month", + "ok", + "schedule", + "select", + "success", + "tick", + "time", + "todo", + "when", + "year" + ] + }, + "unicode": "f274", + "label": "Calendar Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM329 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-95 95-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L329 305z" + }, + "regular": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c13.3 0 24 10.7 24 24V64H296V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 144 128C0 92.7 28.7 64 64 64h40V24c0-13.3 10.7-24 24-24zM400 192H48V448c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V192zM329 297L217 409c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 95-95c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-day": { + "aliases": { + "unicodes": { + "secondary": [ + "10f783" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "day", + "detail", + "event", + "focus", + "month", + "schedule", + "single day", + "time", + "today", + "when", + "year" + ] + }, + "unicode": "f783", + "label": "Calendar Day", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm80 64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calendar-days": { + "aliases": { + "names": [ + "calendar-alt" + ], + "unicodes": { + "secondary": [ + "10f073" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "day", + "event", + "month", + "schedule", + "time", + "when", + "year" + ] + }, + "unicode": "f073", + "label": "Calendar Days", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767328, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm64 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H336zM64 400v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H208zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z" + }, + "regular": { + "lastModified": 1684767328, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192h80v56H48V192zm0 104h80v64H48V296zm128 0h96v64H176V296zm144 0h80v64H320V296zm80-48H320V192h80v56zm0 160v40c0 8.8-7.2 16-16 16H320V408h80zm-128 0v56H176V408h96zm-144 0v56H64c-8.8 0-16-7.2-16-16V408h80zM272 248H176V192h96v56z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f272" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "day", + "delete", + "event", + "month", + "negative", + "remove", + "schedule", + "time", + "when", + "year" + ] + }, + "unicode": "f272", + "label": "Calendar Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 0c17.7 0 32 14.3 32 32V64H320V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H32V112c0-26.5 21.5-48 48-48h48V32c0-17.7 14.3-32 32-32zM32 192H480V464c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V192zM344 376c13.3 0 24-10.7 24-24s-10.7-24-24-24H168c-13.3 0-24 10.7-24 24s10.7 24 24 24H344z" + }, + "regular": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 0c13.3 0 24 10.7 24 24V64H328V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V192 144 128c0-35.3 28.7-64 64-64h40V24c0-13.3 10.7-24 24-24zM432 192H80V448c0 8.8 7.2 16 16 16H416c8.8 0 16-7.2 16-16V192zM328 352H184c-13.3 0-24-10.7-24-24s10.7-24 24-24H328c13.3 0 24 10.7 24 24s-10.7 24-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f271" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "calendar", + "create", + "date", + "day", + "event", + "month", + "new", + "positive", + "schedule", + "time", + "when", + "year" + ] + }, + "unicode": "f271", + "label": "Calendar Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 32V64H80c-26.5 0-48 21.5-48 48v48H480V112c0-26.5-21.5-48-48-48H384V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H192V32c0-17.7-14.3-32-32-32s-32 14.3-32 32zM480 192H32V464c0 26.5 21.5 48 48 48H432c26.5 0 48-21.5 48-48V192zM256 248c13.3 0 24 10.7 24 24v56h56c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v56c0 13.3-10.7 24-24 24s-24-10.7-24-24V376H176c-13.3 0-24-10.7-24-24s10.7-24 24-24h56V272c0-13.3 10.7-24 24-24z" + }, + "regular": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H96c-35.3 0-64 28.7-64 64v16 48V448c0 35.3 28.7 64 64 64H416c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H376V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H184V24zM80 192H432V448c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V192zm176 40c-13.3 0-24 10.7-24 24v48H184c-13.3 0-24 10.7-24 24s10.7 24 24 24h48v48c0 13.3 10.7 24 24 24s24-10.7 24-24V352h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H280V256c0-13.3-10.7-24-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-week": { + "aliases": { + "unicodes": { + "secondary": [ + "10f784" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "day", + "detail", + "event", + "focus", + "month", + "schedule", + "single week", + "time", + "today", + "when", + "year" + ] + }, + "unicode": "f784", + "label": "Calendar Week", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm80 64c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16H368c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calendar-xmark": { + "aliases": { + "names": [ + "calendar-times" + ], + "unicodes": { + "secondary": [ + "10f273" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "calendar", + "date", + "day", + "delete", + "event", + "month", + "remove", + "schedule", + "time", + "when", + "x", + "year" + ] + }, + "unicode": "f273", + "label": "Calendar Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 0c17.7 0 32 14.3 32 32V64H320V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H32V112c0-26.5 21.5-48 48-48h48V32c0-17.7 14.3-32 32-32zM32 192H480V464c0 26.5-21.5 48-48 48H80c-26.5 0-48-21.5-48-48V192zM337 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47z" + }, + "regular": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 0c13.3 0 24 10.7 24 24V64H328V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V192 144 128c0-35.3 28.7-64 64-64h40V24c0-13.3 10.7-24 24-24zM432 192H80V448c0 8.8 7.2 16 16 16H416c8.8 0 16-7.2 16-16V192zm-95 89l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "camera": { + "aliases": { + "names": [ + "camera-alt" + ], + "unicodes": { + "composite": [ + "f332" + ], + "primary": [ + "f332" + ], + "secondary": [ + "10f030", + "10f332" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "lens", + "photo", + "picture", + "record", + "shutter", + "video" + ] + }, + "unicode": "f030", + "label": "Camera", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M149.1 64.8L138.7 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H373.3L362.9 64.8C356.4 45.2 338.1 32 317.4 32H194.6c-20.7 0-39 13.2-45.5 32.8zM256 192a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "camera-retro": { + "aliases": { + "unicodes": { + "composite": [ + "1f4f7" + ], + "secondary": [ + "10f083" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "image", + "lens", + "photo", + "picture", + "record", + "shutter", + "video" + ] + }, + "unicode": "f083", + "label": "Camera Retro", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M220.6 121.2L271.1 96 448 96v96H333.2c-21.9-15.1-48.5-24-77.2-24s-55.2 8.9-77.2 24H64V128H192c9.9 0 19.7-2.3 28.6-6.8zM0 128V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H271.1c-9.9 0-19.7 2.3-28.6 6.8L192 64H160V48c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16l0 16C28.7 64 0 92.7 0 128zM168 304a88 88 0 1 1 176 0 88 88 0 1 1 -176 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "camera-rotate": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flip", + "front-facing", + "photo", + "selfie" + ] + }, + "unicode": "e0d8", + "label": "Camera Rotate", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.1 64.8L202.7 96H128c-35.3 0-64 28.7-64 64V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H437.3L426.9 64.8C420.4 45.2 402.1 32 381.4 32H258.6c-20.7 0-39 13.2-45.5 32.8zM448 256c0 8.8-7.2 16-16 16H355.3c-6.2 0-11.3-5.1-11.3-11.3c0-3 1.2-5.9 3.3-8L371 229c-13.6-13.4-31.9-21-51-21c-19.2 0-37.7 7.6-51.3 21.3L249 249c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l19.7-19.7C257.4 172.7 288 160 320 160c31.8 0 62.4 12.6 85 35l23.7-23.7c2.1-2.1 5-3.3 8-3.3c6.2 0 11.3 5.1 11.3 11.3V256zM192 320c0-8.8 7.2-16 16-16h76.7c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8L269 347c13.6 13.4 31.9 21 51 21c19.2 0 37.7-7.6 51.3-21.3L391 327c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-19.7 19.7C382.6 403.3 352 416 320 416c-31.8 0-62.4-12.6-85-35l-23.7 23.7c-2.1 2.1-5 3.3-8 3.3c-6.2 0-11.3-5.1-11.3-11.3V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "campground": { + "aliases": { + "unicodes": { + "composite": [ + "26fa" + ], + "secondary": [ + "10f6bb" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camping", + "fall", + "outdoors", + "teepee", + "tent", + "tipi" + ] + }, + "unicode": "f6bb", + "label": "Campground", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M377 52c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5L288 60.8 249 12c-11-13.8-31.2-16-45-5s-16 31.2-5 45l48 60L12.3 405.4C4.3 415.4 0 427.7 0 440.4V464c0 26.5 21.5 48 48 48H288 528c26.5 0 48-21.5 48-48V440.4c0-12.7-4.3-25.1-12.3-35L329 112l48-60zM288 448H168.5L288 291.7 407.5 448H288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "canadian-maple-leaf": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "canada", + "flag", + "flora", + "nature", + "plant" + ] + }, + "unicode": "f785", + "label": "Canadian Maple Leaf", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M383.8 351.7c2.5-2.5 105.2-92.4 105.2-92.4l-17.5-7.5c-10-4.9-7.4-11.5-5-17.4 2.4-7.6 20.1-67.3 20.1-67.3s-47.7 10-57.7 12.5c-7.5 2.4-10-2.5-12.5-7.5s-15-32.4-15-32.4-52.6 59.9-55.1 62.3c-10 7.5-20.1 0-17.6-10 0-10 27.6-129.6 27.6-129.6s-30.1 17.4-40.1 22.4c-7.5 5-12.6 5-17.6-5C293.5 72.3 255.9 0 255.9 0s-37.5 72.3-42.5 79.8c-5 10-10 10-17.6 5-10-5-40.1-22.4-40.1-22.4S183.3 182 183.3 192c2.5 10-7.5 17.5-17.6 10-2.5-2.5-55.1-62.3-55.1-62.3S98.1 167 95.6 172s-5 9.9-12.5 7.5C73 177 25.4 167 25.4 167s17.6 59.7 20.1 67.3c2.4 6 5 12.5-5 17.4L23 259.3s102.6 89.9 105.2 92.4c5.1 5 10 7.5 5.1 22.5-5.1 15-10.1 35.1-10.1 35.1s95.2-20.1 105.3-22.6c8.7-.9 18.3 2.5 18.3 12.5S241 512 241 512h30s-5.8-102.7-5.8-112.8 9.5-13.4 18.4-12.5c10 2.5 105.2 22.6 105.2 22.6s-5-20.1-10-35.1 0-17.5 5-22.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "candy-cane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f786" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candy", + "christmas", + "holiday", + "mint", + "peppermint", + "striped", + "xmas" + ] + }, + "unicode": "f786", + "label": "Candy Cane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M348.8 131.5c3.7-2.3 7.9-3.5 12.2-3.5c12.7 0 23 10.3 23 23v5.6c0 9.9-5.1 19.1-13.5 24.3L30.1 393.7C.1 412.5-9 451.9 9.7 481.9s58.2 39.1 88.2 20.4L438.4 289.5c45.8-28.6 73.6-78.8 73.6-132.8V151C512 67.6 444.4 0 361 0c-28.3 0-56 8-80.1 23L254.1 39.7c-30 18.7-39.1 58.2-20.4 88.2s58.2 39.1 88.2 20.4l26.8-16.8zM298.4 49.8c9.2-5.7 19.1-10.1 29.4-13.1L348 97.5c-5.7 1.4-11.2 3.7-16.3 6.8l-12.6 7.9L298.4 49.8zm88.5 52.7l46.2-46.2c8.5 6.5 16.1 14.1 22.6 22.6l-46.2 46.2c-5.1-9.6-13-17.5-22.6-22.6zm28.9 59.3l61.6 20.5c-2.2 10.5-5.8 20.7-10.5 30.2l-62-20.7c6.2-8.8 10.1-19.1 11-30.1zm-86.1 82.5l60.4 37.7-30.2 18.9-60.4-37.7 30.2-18.9zm-107.2 67l60.4 37.7-30.2 18.9-60.4-37.7 30.2-18.9zM119.3 375.7l60.4 37.7-30.2 18.9L89.1 394.6l30.2-18.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cannabis": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bud", + "chronic", + "drugs", + "endica", + "endo", + "ganja", + "marijuana", + "mary jane", + "pot", + "reefer", + "sativa", + "spliff", + "weed", + "whacky-tabacky" + ] + }, + "unicode": "f55f", + "label": "Cannabis", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c5.3 0 10.3 2.7 13.3 7.1c15.8 23.5 36.7 63.7 49.2 109c7.2 26.4 11.8 55.2 10.4 84c11.5-8.8 23.7-16.7 35.8-23.6c41-23.3 84.4-36.9 112.2-42.5c5.2-1 10.7 .6 14.4 4.4s5.4 9.2 4.4 14.5c-5.6 27.7-19.3 70.9-42.7 111.7c-9.1 15.9-19.9 31.7-32.4 46.3c27.8 6.6 52.4 17.3 67.2 25.5c5.1 2.8 8.2 8.2 8.2 14s-3.2 11.2-8.2 14c-15.2 8.4-40.9 19.5-69.8 26.1c-20.2 4.6-42.9 7.2-65.2 4.6l8.3 33.1c1.5 6.1-.6 12.4-5.5 16.4s-11.6 4.6-17.2 1.9L280 417.2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V417.2l-58.5 29.1c-5.6 2.8-12.3 2.1-17.2-1.9s-7-10.3-5.5-16.4l8.3-33.1c-22.2 2.6-45 0-65.2-4.6c-28.9-6.6-54.6-17.6-69.8-26.1c-5.1-2.8-8.2-8.2-8.2-14s3.2-11.2 8.2-14c14.8-8.2 39.4-18.8 67.2-25.5C78.9 296.3 68.1 280.5 59 264.6c-23.4-40.8-37.1-84-42.7-111.7c-1.1-5.2 .6-10.7 4.4-14.5s9.2-5.4 14.4-4.4c27.9 5.5 71.2 19.2 112.2 42.5c12.1 6.9 24.3 14.7 35.8 23.6c-1.4-28.7 3.1-57.6 10.4-84c12.5-45.3 33.4-85.5 49.2-109c3-4.4 8-7.1 13.3-7.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "capsules": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46b" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "pills", + "prescription" + ] + }, + "unicode": "f46b", + "label": "Capsules", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 144c0-26.5 21.5-48 48-48s48 21.5 48 48V256H64V144zM0 144V368c0 61.9 50.1 112 112 112s112-50.1 112-112V189.6c1.8 19.1 8.2 38 19.8 54.8L372.3 431.7c35.5 51.7 105.3 64.3 156 28.1s63-107.5 27.5-159.2L427.3 113.3C391.8 61.5 321.9 49 271.3 85.2c-28 20-44.3 50.8-47.3 83V144c0-61.9-50.1-112-112-112S0 82.1 0 144zm296.6 64.2c-16-23.3-10-55.3 11.9-71c21.2-15.1 50.5-10.3 66 12.2l67 97.6L361.6 303l-65-94.8zM491 407.7c-.8 .6-1.6 1.1-2.4 1.6l4-2.8c-.5 .4-1 .8-1.6 1.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car": { + "aliases": { + "names": [ + "automobile" + ], + "unicodes": { + "composite": [ + "1f698" + ], + "secondary": [ + "10f1b9" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "car", + "oncoming", + "oncoming automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f1b9", + "label": "Car", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M135.2 117.4L109.1 192H402.9l-26.1-74.6C372.3 104.6 360.2 96 346.6 96H165.4c-13.6 0-25.7 8.6-30.2 21.4zM39.6 196.8L74.8 96.3C88.3 57.8 124.6 32 165.4 32H346.6c40.8 0 77.1 25.8 90.6 64.3l35.2 100.5c23.2 9.6 39.6 32.5 39.6 59.2V400v48c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V400H96v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V400 256c0-26.7 16.4-49.6 39.6-59.2zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-battery": { + "aliases": { + "names": [ + "battery-car" + ], + "unicodes": { + "secondary": [ + "10f5df" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "electric", + "mechanic", + "power" + ] + }, + "unicode": "f5df", + "label": "Car Battery", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M80 96c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32l96 0c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32h16c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64l16 0zm304 96c0-8.8-7.2-16-16-16s-16 7.2-16 16v32H320c-8.8 0-16 7.2-16 16s7.2 16 16 16h32v32c0 8.8 7.2 16 16 16s16-7.2 16-16V256h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H384V192zM80 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-burst": { + "aliases": { + "names": [ + "car-crash" + ], + "unicodes": { + "secondary": [ + "10f5e1" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "auto", + "automobile", + "insurance", + "sedan", + "transportation", + "vehicle", + "wreck" + ] + }, + "unicode": "f5e1", + "label": "Car Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M176 8c-6.6 0-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6l35.3-32.5 9.5-35.4 10.4-38.6c8-29.9 30.5-52.1 57.9-60.9l41-59.2c11.3-16.3 26.4-28.9 43.5-37.2c-.4-.6-.8-1.2-1.3-1.8c-4.1-5.1-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74C188.4 12 182.6 8 176 8zM367.7 161.5l135.6 36.3c6.5 1.8 11.3 7.4 11.8 14.2l4.6 56.5-201.5-54 32.2-46.6c3.8-5.6 10.8-8.1 17.3-6.4zm-69.9-30l-47.9 69.3c-21.6 3-40.3 18.6-46.3 41l-10.4 38.6-16.6 61.8-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9 247.3 66.3-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9L595 388l10.4-38.6c6-22.4-2.5-45.2-19.6-58.7l-6.8-84c-2.7-33.7-26.4-62-59-70.8L384.2 99.7c-32.7-8.8-67.3 4-86.5 31.8zm-17 131a24 24 0 1 1 -12.4 46.4 24 24 0 1 1 12.4-46.4zm217.9 83.2A24 24 0 1 1 545 358.1a24 24 0 1 1 -46.4-12.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-on": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "car", + "carjack", + "warning" + ] + }, + "unicode": "e4dd", + "label": "Car On", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M280 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24V24zM185.8 224H326.2c6.8 0 12.8 4.3 15.1 10.6L360.3 288H151.7l19.1-53.4c2.3-6.4 8.3-10.6 15.1-10.6zm-75.3-10.9L82.2 292.4C62.1 300.9 48 320.8 48 344v40 64 32c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V448H384v32c0 17.7 14.3 32 32 32h16c17.7 0 32-14.3 32-32V448 384 344c0-23.2-14.1-43.1-34.2-51.6l-28.3-79.3C390.1 181.3 360 160 326.2 160H185.8c-33.8 0-64 21.3-75.3 53.1zM128 344a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm232 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM39 39c-9.4 9.4-9.4 24.6 0 33.9l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L73 39c-9.4-9.4-24.6-9.4-33.9 0zm400 0L391 87c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-rear": { + "aliases": { + "names": [ + "car-alt" + ], + "unicodes": { + "secondary": [ + "10f5de" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f5de", + "label": "Car Rear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M165.4 96H346.6c13.6 0 25.7 8.6 30.2 21.4L402.9 192H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zm-90.6 .3L39.6 196.8C16.4 206.4 0 229.3 0 256v80c0 23.7 12.9 44.4 32 55.4V448c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V400H384v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V391.4c19.1-11.1 32-31.7 32-55.4V256c0-26.7-16.4-49.6-39.6-59.2L437.2 96.3C423.7 57.8 387.4 32 346.6 32H165.4c-40.8 0-77.1 25.8-90.6 64.3zM208 272h96c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V288c0-8.8 7.2-16 16-16zM48 280c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-13.3 0-24-10.7-24-24zm360-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H408c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-side": { + "aliases": { + "unicodes": { + "composite": [ + "1f697" + ], + "secondary": [ + "10f5e4" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "car", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f5e4", + "label": "Car Side", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M171.3 96H224v96H111.3l30.4-75.9C146.5 104 158.2 96 171.3 96zM272 192V96h81.2c9.7 0 18.9 4.4 25 12l67.2 84H272zm256.2 1L428.2 68c-18.2-22.8-45.8-36-75-36H171.3c-39.3 0-74.6 23.9-89.1 60.3L40.6 196.4C16.8 205.8 0 228.9 0 256V368c0 17.7 14.3 32 32 32H65.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H385.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H608c17.7 0 32-14.3 32-32V320c0-65.2-48.8-119-111.8-127zM434.7 368a48 48 0 1 1 90.5 32 48 48 0 1 1 -90.5-32zM160 336a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-tunnel": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "road", + "tunnel" + ] + }, + "unicode": "e4de", + "label": "Car Tunnel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C114.6 0 0 114.6 0 256V448c0 35.3 28.7 64 64 64h42.8c-6.6-5.9-10.8-14.4-10.8-24V376c0-20.8 11.3-38.9 28.1-48.6l21-64.7c7.5-23.1 29-38.7 53.3-38.7H313.6c24.3 0 45.8 15.6 53.3 38.7l21 64.7c16.8 9.7 28.2 27.8 28.2 48.6V488c0 9.6-4.2 18.1-10.8 24H448c35.3 0 64-28.7 64-64V256C512 114.6 397.4 0 256 0zM362.8 512c-6.6-5.9-10.8-14.4-10.8-24V448H160v40c0 9.6-4.2 18.1-10.8 24H362.8zM190.8 277.5L177 320H335l-13.8-42.5c-1.1-3.3-4.1-5.5-7.6-5.5H198.4c-3.5 0-6.5 2.2-7.6 5.5zM168 408a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm200-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caravan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8ff" + ] + } + }, + "changes": [ + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camper", + "motor home", + "rv", + "trailer", + "travel" + ] + }, + "unicode": "f8ff", + "label": "Caravan", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 112C0 67.8 35.8 32 80 32H416c88.4 0 160 71.6 160 160V352h32c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0H288c0 53-43 96-96 96s-96-43-96-96H80c-44.2 0-80-35.8-80-80V112zM320 352H448V256H416c-8.8 0-16-7.2-16-16s7.2-16 16-16h32V160c0-17.7-14.3-32-32-32H352c-17.7 0-32 14.3-32 32V352zM96 128c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96zm96 336a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "dropdown", + "expand", + "menu", + "more", + "triangle" + ] + }, + "unicode": "f0d7", + "label": "Caret Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous", + "triangle" + ] + }, + "unicode": "f0d9", + "label": "Caret Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M9.4 278.6c-12.5-12.5-12.5-32.8 0-45.3l128-128c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 256c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0da" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next", + "triangle" + ] + }, + "unicode": "f0da", + "label": "Caret Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-up": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "triangle" + ] + }, + "unicode": "f0d8", + "label": "Caret Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 137.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "carrot": { + "aliases": { + "unicodes": { + "composite": [ + "1f955" + ], + "secondary": [ + "10f787" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bugs bunny", + "carrot", + "food", + "orange", + "vegan", + "vegetable" + ] + }, + "unicode": "f787", + "label": "Carrot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M346.7 6C337.6 17 320 42.3 320 72c0 40 15.3 55.3 40 80s40 40 80 40c29.7 0 55-17.6 66-26.7c4-3.3 6-8.2 6-13.3s-2-10-6-13.2c-11.4-9.1-38.3-26.8-74-26.8c-32 0-40 8-40 8s8-8 8-40c0-35.7-17.7-62.6-26.8-74C370 2 365.1 0 360 0s-10 2-13.3 6zM244.6 136c-40 0-77.1 18.1-101.7 48.2l60.5 60.5c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-55.3-55.3 0 .1L2.2 477.9C-2 487-.1 497.8 7 505s17.9 9 27.1 4.8l134.7-62.4-52.1-52.1c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L199.7 433l100.2-46.4c46.4-21.5 76.2-68 76.2-119.2C376 194.8 317.2 136 244.6 136z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-arrow-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f218" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "save", + "shopping" + ] + }, + "unicode": "f218", + "label": "Cart Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48H69.5c3.8 0 7.1 2.7 7.9 6.5l51.6 271c6.5 34 36.2 58.5 70.7 58.5H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H199.7c-11.5 0-21.4-8.2-23.6-19.5L170.7 288H459.2c32.6 0 61.1-21.8 69.5-53.3l41-152.3C576.6 57 557.4 32 531.1 32H360V134.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-64 64c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23V32H120.1C111 12.8 91.6 0 69.5 0H24zM176 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm336-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-flatbed": { + "aliases": { + "names": [ + "dolly-flatbed" + ], + "unicodes": { + "secondary": [ + "10f474" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "inventory", + "shipping", + "transport" + ] + }, + "unicode": "f474", + "label": "Cart Flatbed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64H48c8.8 0 16 7.2 16 16V368c0 44.2 35.8 80 80 80h18.7c-1.8 5-2.7 10.4-2.7 16c0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16H450.7c-1.8 5-2.7 10.4-2.7 16c0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H144c-8.8 0-16-7.2-16-16V80C128 35.8 92.2 0 48 0H32zM192 80V272c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H464V176c0 5.9-3.2 11.3-8.5 14.1s-11.5 2.5-16.4-.8L400 163.2l-39.1 26.1c-4.9 3.3-11.2 3.6-16.4 .8s-8.5-8.2-8.5-14.1V32H240c-26.5 0-48 21.5-48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-flatbed-suitcase": { + "aliases": { + "names": [ + "luggage-cart" + ], + "unicodes": { + "secondary": [ + "10f59d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airport", + "bag", + "baggage", + "suitcase", + "travel" + ] + }, + "unicode": "f59d", + "label": "Cart Flatbed Suitcase", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H48c44.2 0 80 35.8 80 80V368c0 8.8 7.2 16 16 16H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H541.3c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H253.3c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H144c-44.2 0-80-35.8-80-80V80c0-8.8-7.2-16-16-16H32C14.3 64 0 49.7 0 32zM432 96V56c0-4.4-3.6-8-8-8H344c-4.4 0-8 3.6-8 8V96h96zM288 96V56c0-30.9 25.1-56 56-56h80c30.9 0 56 25.1 56 56V96 320H288V96zM512 320V96h16c26.5 0 48 21.5 48 48V272c0 26.5-21.5 48-48 48H512zM240 96h16V320H240c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f217" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "new", + "positive", + "shopping" + ] + }, + "unicode": "f217", + "label": "Cart Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM252 160c0 11 9 20 20 20h44v44c0 11 9 20 20 20s20-9 20-20V180h44c11 0 20-9 20-20s-9-20-20-20H356V96c0-11-9-20-20-20s-20 9-20 20v44H272c-11 0-20 9-20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-shopping": { + "aliases": { + "names": [ + "shopping-cart" + ], + "unicodes": { + "composite": [ + "1f6d2" + ], + "secondary": [ + "10f07a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cart", + "checkout", + "grocery", + "payment", + "purchase", + "shopping", + "shopping cart", + "trolley" + ] + }, + "unicode": "f07a", + "label": "Cart Shopping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cash-register": { + "aliases": { + "unicodes": { + "secondary": [ + "10f788" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cha-ching", + "change", + "checkout", + "commerce", + "leaerboard", + "machine", + "pay", + "payment", + "purchase", + "store" + ] + }, + "unicode": "f788", + "label": "Cash Register", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 0C46.3 0 32 14.3 32 32V96c0 17.7 14.3 32 32 32h80v32H87c-31.6 0-58.5 23.1-63.3 54.4L1.1 364.1C.4 368.8 0 373.6 0 378.4V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V378.4c0-4.8-.4-9.6-1.1-14.4L488.2 214.4C483.5 183.1 456.6 160 425 160H208V128h80c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H64zM96 48H256c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16s7.2-16 16-16zM64 432c0-8.8 7.2-16 16-16H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm48-168a24 24 0 1 1 0-48 24 24 0 1 1 0 48zm120-24a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM160 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48zM328 240a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM256 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48zM424 240a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM352 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cat": { + "aliases": { + "unicodes": { + "composite": [ + "1f408" + ], + "secondary": [ + "10f6be" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cat", + "feline", + "halloween", + "holiday", + "kitten", + "kitty", + "meow", + "pet" + ] + }, + "unicode": "f6be", + "label": "Cat", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 192h17.1c22.1 38.3 63.5 64 110.9 64c11 0 21.8-1.4 32-4v4 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V339.2L280 448h56c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-53 0-96-43-96-96V192.5c0-16.1-12-29.8-28-31.8l-7.9-1c-17.5-2.2-30-18.2-27.8-35.7s18.2-30 35.7-27.8l7.9 1c48 6 84.1 46.8 84.1 95.3v85.3c34.4-51.7 93.2-85.8 160-85.8zm160 26.5v0c-10 3.5-20.8 5.5-32 5.5c-28.4 0-54-12.4-71.6-32h0c-3.7-4.1-7-8.5-9.9-13.2C357.3 164 352 146.6 352 128v0V32 12 10.7C352 4.8 356.7 .1 362.6 0h.2c3.3 0 6.4 1.6 8.4 4.2l0 .1L384 21.3l27.2 36.3L416 64h64l4.8-6.4L512 21.3 524.8 4.3l0-.1c2-2.6 5.1-4.2 8.4-4.2h.2C539.3 .1 544 4.8 544 10.7V12 32v96c0 17.3-4.6 33.6-12.6 47.6c-11.3 19.8-29.6 35.2-51.4 42.9zM432 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cc-amazon-pay": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42d", + "label": "Amazon Pay Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-amex": { + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "amex" + ] + }, + "unicode": "f1f3", + "label": "American Express Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 480C21.49 480 0 458.5 0 432V80C0 53.49 21.49 32 48 32H528C554.5 32 576 53.49 576 80V82.43H500.5L483.5 130L466.6 82.43H369.4V145.6L341.3 82.43H262.7L181 267.1H246.8V430.9H450.5L482.4 395.8L514.3 430.9H576V432C576 458.5 554.5 480 528 480H48zM482.6 364L440.4 410.3H390.5L458 338.6L390.5 266.1H441.9L483.4 312.8L525.4 266.1H576L508 338.2L576 410.3H524.6L482.6 364zM576 296.9V380.2L536.7 338.3L576 296.9zM307.6 377.1H390.6V410.3H268.6V267.1H390.6V300.2H307.6V322.6H388.5V354.9H307.6V377.2V377.1zM537.3 145.7L500.4 246.3H466L429.2 146V246.3H390.5V103H451.7L483.6 192.3L515.8 103H576V246.3H537.3V145.7zM334.5 217.6H268.6L256.7 246.3H213.7L276.1 103H327.3L390.6 246.3H346.5L334.5 217.6zM301.5 138.5L282 185.4H320.9L301.5 138.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f416", + "label": "Apple Pay Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-diners-club": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f24c", + "label": "Diner's Club Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-discover": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f2", + "label": "Discover Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M520.4 196.1c0-7.9-5.5-12.1-15.6-12.1h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-44.1 138.9c22.6 0 52.9-4.1 52.9 24.4 0 12.6-6.6 20.7-18.7 23.2l25.8 34.4h-19.6l-22.2-32.8h-2.2v32.8h-16zm-55.9.1h45.3v14H444v18.2h28.3V217H444v22.2h29.3V253H428zm-68.7 0l21.9 55.2 22.2-55.2h17.5l-35.5 84.2h-8.6l-35-84.2zm-55.9-3c24.7 0 44.6 20 44.6 44.6 0 24.7-20 44.6-44.6 44.6-24.7 0-44.6-20-44.6-44.6 0-24.7 20-44.6 44.6-44.6zm-49.3 6.1v19c-20.1-20.1-46.8-4.7-46.8 19 0 25 27.5 38.5 46.8 19.2v19c-29.7 14.3-63.3-5.7-63.3-38.2 0-31.2 33.1-53 63.3-38zm-97.2 66.3c11.4 0 22.4-15.3-3.3-24.4-15-5.5-20.2-11.4-20.2-22.7 0-23.2 30.6-31.4 49.7-14.3l-8.4 10.8c-10.4-11.6-24.9-6.2-24.9 2.5 0 4.4 2.7 6.9 12.3 10.3 18.2 6.6 23.6 12.5 23.6 25.6 0 29.5-38.8 37.4-56.6 11.3l10.3-9.9c3.7 7.1 9.9 10.8 17.5 10.8zM55.4 253H32v-82h23.4c26.1 0 44.1 17 44.1 41.1 0 18.5-13.2 40.9-44.1 40.9zm67.5 0h-16v-82h16zM544 433c0 8.2-6.8 15-15 15H128c189.6-35.6 382.7-139.2 416-160zM74.1 191.6c-5.2-4.9-11.6-6.6-21.9-6.6H48v54.2h4.2c10.3 0 17-2 21.9-6.4 5.7-5.2 8.9-12.8 8.9-20.7s-3.2-15.5-8.9-20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-jcb": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f24b", + "label": "JCB Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-mastercard": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f1", + "label": "MasterCard Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-paypal": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f4", + "label": "Paypal Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-stripe": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f5", + "label": "Stripe Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M492.4 220.8c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7zM375 223.4c-8.2 0-13.3 2.9-17 7l.2 52.8c3.5 3.7 8.5 6.7 16.8 6.7 13.1 0 21.9-14.3 21.9-33.4 0-18.6-9-33.2-21.9-33.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM122.2 281.1c0 25.6-20.3 40.1-49.9 40.3-12.2 0-25.6-2.4-38.8-8.1v-33.9c12 6.4 27.1 11.3 38.9 11.3 7.9 0 13.6-2.1 13.6-8.7 0-17-54-10.6-54-49.9 0-25.2 19.2-40.2 48-40.2 11.8 0 23.5 1.8 35.3 6.5v33.4c-10.8-5.8-24.5-9.1-35.3-9.1-7.5 0-12.1 2.2-12.1 7.7 0 16 54.3 8.4 54.3 50.7zm68.8-56.6h-27V275c0 20.9 22.5 14.4 27 12.6v28.9c-4.7 2.6-13.3 4.7-24.9 4.7-21.1 0-36.9-15.5-36.9-36.5l.2-113.9 34.7-7.4v30.8H191zm74 2.4c-4.5-1.5-18.7-3.6-27.1 7.4v84.4h-35.5V194.2h30.7l2.2 10.5c8.3-15.3 24.9-12.2 29.6-10.5h.1zm44.1 91.8h-35.7V194.2h35.7zm0-142.9l-35.7 7.6v-28.9l35.7-7.6zm74.1 145.5c-12.4 0-20-5.3-25.1-9l-.1 40.2-35.5 7.5V194.2h31.3l1.8 8.8c4.9-4.5 13.9-11.1 27.8-11.1 24.9 0 48.4 22.5 48.4 63.8 0 45.1-23.2 65.5-48.6 65.6zm160.4-51.5h-69.5c1.6 16.6 13.8 21.5 27.6 21.5 14.1 0 25.2-3 34.9-7.9V312c-9.7 5.3-22.4 9.2-39.4 9.2-34.6 0-58.8-21.7-58.8-64.5 0-36.2 20.5-64.9 54.3-64.9 33.7 0 51.3 28.7 51.3 65.1 0 3.5-.3 10.9-.4 12.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-visa": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f0", + "label": "Visa Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cedi-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cedi Sign", + "currency" + ] + }, + "unicode": "e0df", + "label": "Cedi Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V66.7C101.2 81.9 32 160.9 32 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V445.3c30.9-5.2 59.2-17.7 83.2-35.8c14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-13.2 9.9-28.3 17.3-44.8 21.6V132c16.4 4.2 31.6 11.6 44.8 21.6c14.1 10.6 34.2 7.8 44.8-6.4s7.8-34.2-6.4-44.8c-24-18-52.4-30.6-83.2-35.8V32zM192 132V380c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cent-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cent Sign", + "currency" + ] + }, + "unicode": "e3f5", + "label": "Cent Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V66.7c30.9 5.2 59.2 17.7 83.2 35.8c14.1 10.6 17 30.7 6.4 44.8s-30.7 17-44.8 6.4C279.4 137.5 252.9 128 224 128c-70.7 0-128 57.3-128 128s57.3 128 128 128c28.9 0 55.4-9.5 76.8-25.6c14.1-10.6 34.2-7.8 44.8 6.4s7.8 34.2-6.4 44.8c-24 18-52.4 30.6-83.2 35.8V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.3C101.2 430.1 32 351.1 32 256s69.2-174.1 160-189.3V32c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "centercode": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f380", + "label": "Centercode", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "centos": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f789", + "label": "Centos", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.6 97.5l31.6 31.7-76.3 76.5V97.5zm-162.4 31.7l76.3 76.5V97.5h-44.7zm41.5-41.6h44.7v127.9l10.8 10.8 10.8-10.8V87.6h44.7L224.2 32zm26.2 168.1l-10.8-10.8H55.5v-44.8L0 255.7l55.5 55.6v-44.8h128.6l10.8-10.8zm79.3-20.7h107.9v-44.8l-31.6-31.7zm173.3 20.7L392 200.1v44.8H264.3l-10.8 10.8 10.8 10.8H392v44.8l55.5-55.6zM65.4 176.2l32.5-31.7 90.3 90.5h15.3v-15.3l-90.3-90.5 31.6-31.7H65.4zm316.7-78.7h-78.5l31.6 31.7-90.3 90.5V235h15.3l90.3-90.5 31.6 31.7zM203.5 413.9V305.8l-76.3 76.5 31.6 31.7h44.7zM65.4 235h108.8l-76.3-76.5-32.5 31.7zm316.7 100.2l-31.6 31.7-90.3-90.5h-15.3v15.3l90.3 90.5-31.6 31.7h78.5zm0-58.8H274.2l76.3 76.5 31.6-31.7zm-60.9 105.8l-76.3-76.5v108.1h44.7zM97.9 352.9l76.3-76.5H65.4v44.8zm181.8 70.9H235V295.9l-10.8-10.8-10.8 10.8v127.9h-44.7l55.5 55.6zm-166.5-41.6l90.3-90.5v-15.3h-15.3l-90.3 90.5-32.5-31.7v78.7h79.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "certificate": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "star", + "verified" + ] + }, + "unicode": "f0a3", + "label": "Certificate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M211 7.3C205 1 196-1.4 187.6 .8s-14.9 8.9-17.1 17.3L154.7 80.6l-62-17.5c-8.4-2.4-17.4 0-23.5 6.1s-8.5 15.1-6.1 23.5l17.5 62L18.1 170.6c-8.4 2.1-15 8.7-17.3 17.1S1 205 7.3 211l46.2 45L7.3 301C1 307-1.4 316 .8 324.4s8.9 14.9 17.3 17.1l62.5 15.8-17.5 62c-2.4 8.4 0 17.4 6.1 23.5s15.1 8.5 23.5 6.1l62-17.5 15.8 62.5c2.1 8.4 8.7 15 17.1 17.3s17.3-.2 23.4-6.4l45-46.2 45 46.2c6.1 6.2 15 8.7 23.4 6.4s14.9-8.9 17.1-17.3l15.8-62.5 62 17.5c8.4 2.4 17.4 0 23.5-6.1s8.5-15.1 6.1-23.5l-17.5-62 62.5-15.8c8.4-2.1 15-8.7 17.3-17.1s-.2-17.3-6.4-23.4l-46.2-45 46.2-45c6.2-6.1 8.7-15 6.4-23.4s-8.9-14.9-17.3-17.1l-62.5-15.8 17.5-62c2.4-8.4 0-17.4-6.1-23.5s-15.1-8.5-23.5-6.1l-62 17.5L341.4 18.1c-2.1-8.4-8.7-15-17.1-17.3S307 1 301 7.3L256 53.5 211 7.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chair": { + "aliases": { + "unicodes": { + "composite": [ + "1fa91" + ], + "secondary": [ + "10f6c0" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chair", + "furniture", + "seat", + "sit" + ] + }, + "unicode": "f6c0", + "label": "Chair", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 48V256h48V58.7c23.9 13.8 40 39.7 40 69.3V256h48V128C384 57.3 326.7 0 256 0H192C121.3 0 64 57.3 64 128V256h48V128c0-29.6 16.1-55.5 40-69.3V256h48V48h48zM48 288c-12.1 0-23.2 6.8-28.6 17.7l-16 32c-5 9.9-4.4 21.7 1.4 31.1S20.9 384 32 384l0 96c0 17.7 14.3 32 32 32s32-14.3 32-32V384H352v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384c11.1 0 21.4-5.7 27.2-15.2s6.4-21.2 1.4-31.1l-16-32C423.2 294.8 412.1 288 400 288H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chalkboard": { + "aliases": { + "names": [ + "blackboard" + ], + "unicodes": { + "secondary": [ + "10f51b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "learning", + "school", + "teaching", + "whiteboard", + "writing" + ] + }, + "unicode": "f51b", + "label": "Chalkboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 32C60.7 32 32 60.7 32 96V384H96V96l384 0V384h64V96c0-35.3-28.7-64-64-64H96zM224 384v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H416V384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chalkboard-user": { + "aliases": { + "names": [ + "chalkboard-teacher" + ], + "unicodes": { + "secondary": [ + "10f51c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "instructor", + "learning", + "professor", + "school", + "whiteboard", + "writing" + ] + }, + "unicode": "f51c", + "label": "Chalkboard User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 64c0-35.3 28.7-64 64-64H576c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H336.8c-11.8-25.5-29.9-47.5-52.4-64H384V320c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v32h64V64L224 64v49.1C205.2 102.2 183.3 96 160 96V64zm0 64a96 96 0 1 1 0 192 96 96 0 1 1 0-192zM133.3 352h53.3C260.3 352 320 411.7 320 485.3c0 14.7-11.9 26.7-26.7 26.7H26.7C11.9 512 0 500.1 0 485.3C0 411.7 59.7 352 133.3 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "champagne-glasses": { + "aliases": { + "names": [ + "glass-cheers" + ], + "unicodes": { + "composite": [ + "1f942" + ], + "secondary": [ + "10f79f" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "celebrate", + "celebration", + "champagne", + "clink", + "clinking glasses", + "drink", + "glass", + "holiday", + "new year's eve", + "party", + "toast" + ] + }, + "unicode": "f79f", + "label": "Champagne Glasses", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M155.6 17.3C163 3 179.9-3.6 195 1.9L320 47.5l125-45.6c15.1-5.5 32 1.1 39.4 15.4l78.8 152.9c28.8 55.8 10.3 122.3-38.5 156.6L556.1 413l41-15c16.6-6 35 2.5 41 19.1s-2.5 35-19.1 41l-71.1 25.9L476.8 510c-16.6 6.1-35-2.5-41-19.1s2.5-35 19.1-41l41-15-31.3-86.2c-59.4 5.2-116.2-34-130-95.2L320 188.8l-14.6 64.7c-13.8 61.3-70.6 100.4-130 95.2l-31.3 86.2 41 15c16.6 6 25.2 24.4 19.1 41s-24.4 25.2-41 19.1L92.2 484.1 21.1 458.2c-16.6-6.1-25.2-24.4-19.1-41s24.4-25.2 41-19.1l41 15 31.3-86.2C66.5 292.5 48.1 226 76.9 170.2L155.6 17.3zm44 54.4l-27.2 52.8L261.6 157l13.1-57.9L199.6 71.7zm240.9 0L365.4 99.1 378.5 157l89.2-32.5L440.5 71.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "charging-station": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5e7" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "ev", + "tesla", + "vehicle" + ] + }, + "unicode": "f5e7", + "label": "Charging Station", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C60.7 0 32 28.7 32 64V448c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32s-14.3-32-32-32V304h16c22.1 0 40 17.9 40 40v32c0 39.8 32.2 72 72 72s72-32.2 72-72V252.3c32.5-10.2 56-40.5 56-76.3V144c0-8.8-7.2-16-16-16H544V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H480V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H432c-8.8 0-16 7.2-16 16v32c0 35.8 23.5 66.1 56 76.3V376c0 13.3-10.7 24-24 24s-24-10.7-24-24V344c0-48.6-39.4-88-88-88H320V64c0-35.3-28.7-64-64-64H96zM216.9 82.7c6 4 8.5 11.5 6.3 18.3l-25 74.9H256c6.7 0 12.7 4.2 15 10.4s.5 13.3-4.6 17.7l-112 96c-5.5 4.7-13.4 5.1-19.3 1.1s-8.5-11.5-6.3-18.3l25-74.9H96c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7l112-96c5.5-4.7 13.4-5.1 19.3-1.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-area": { + "aliases": { + "names": [ + "area-chart" + ], + "unicodes": { + "secondary": [ + "10f1fe" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "area", + "chart", + "graph" + ] + }, + "unicode": "f1fe", + "label": "Chart Area", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm96 288H448c17.7 0 32-14.3 32-32V251.8c0-7.6-2.7-15-7.7-20.8l-65.8-76.8c-12.1-14.2-33.7-15-46.9-1.8l-21 21c-10 10-26.4 9.2-35.4-1.6l-39.2-47c-12.6-15.1-35.7-15.4-48.7-.6L135.9 215c-5.1 5.8-7.9 13.3-7.9 21.1v84c0 17.7 14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-bar": { + "aliases": { + "names": [ + "bar-chart" + ], + "unicodes": { + "secondary": [ + "10f080" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "bar", + "chart", + "graph" + ] + }, + "unicode": "f080", + "label": "Chart Bar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 64H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + }, + "regular": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 32c13.3 0 24 10.7 24 24V408c0 13.3 10.7 24 24 24H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-39.8 0-72-32.2-72-72V56C0 42.7 10.7 32 24 32zM128 136c0-13.3 10.7-24 24-24l208 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-208 0c-13.3 0-24-10.7-24-24zm24 72H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24zm0 96H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chart-column": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "bar chart", + "chart", + "graph", + "track", + "trend" + ] + }, + "unicode": "e0e3", + "label": "Chart Column", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zM160 224c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm128-64V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm64 32c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32zM480 96V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-gantt": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "track", + "trend" + ] + }, + "unicode": "e0e4", + "label": "Chart Gantt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32zm96 64H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm160 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-line": { + "aliases": { + "names": [ + "line-chart" + ], + "unicodes": { + "secondary": [ + "10f201" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "analytics", + "chart", + "dashboard", + "gain", + "graph", + "increase", + "line" + ] + }, + "unicode": "f201", + "label": "Chart Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm406.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L320 210.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L240 221.3l57.4 57.4c12.5 12.5 32.8 12.5 45.3 0l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-pie": { + "aliases": { + "names": [ + "pie-chart" + ], + "unicodes": { + "secondary": [ + "10f200" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "chart", + "diagram", + "graph", + "pie" + ] + }, + "unicode": "f200", + "label": "Chart Pie", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M304 240V16.6c0-9 7-16.6 16-16.6C443.7 0 544 100.3 544 224c0 9-7.6 16-16.6 16H304zM32 272C32 150.7 122.1 50.3 239 34.3c9.2-1.3 17 6.1 17 15.4V288L412.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C371.8 495.6 323.8 512 272 512C139.5 512 32 404.6 32 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L320 288H558.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-simple": { + "changes": [ + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "bar", + "chart", + "column", + "graph", + "row", + "trend" + ] + }, + "unicode": "e473", + "label": "Chart Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 80c0-26.5 21.5-48 48-48h32c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V80zM0 272c0-26.5 21.5-48 48-48H80c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V272zM368 96h32c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H368c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "check": { + "aliases": { + "unicodes": { + "composite": [ + "2713", + "2714" + ], + "secondary": [ + "10f00c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Check Mark", + "accept", + "agree", + "check", + "check mark", + "checkmark", + "confirm", + "correct", + "done", + "mark", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo", + "yes", + "✓" + ] + }, + "unicode": "f00c", + "label": "Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "check-double": { + "aliases": { + "unicodes": { + "secondary": [ + "10f560" + ] + } + }, + "changes": [ + "5.1.0", + "5.8.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "checkmark", + "confirm", + "correct", + "done", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo" + ] + }, + "unicode": "f560", + "label": "Check Double", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M342.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 178.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l160-160zm96 128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7 54.6 297.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l256-256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "check-to-slot": { + "aliases": { + "names": [ + "vote-yea" + ], + "unicodes": { + "secondary": [ + "10f772" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "cast", + "election", + "politics", + "positive", + "voting", + "yes" + ] + }, + "unicode": "f772", + "label": "Check To Slot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 80c0-26.5 21.5-48 48-48H432c26.5 0 48 21.5 48 48V384H96V80zm313 47c-9.4-9.4-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L409 161c9.4-9.4 9.4-24.6 0-33.9zM0 336c0-26.5 21.5-48 48-48H64V416H512V288h16c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cheese": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ef" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cheddar", + "curd", + "gouda", + "melt", + "parmesan", + "sandwich", + "swiss", + "wedge" + ] + }, + "unicode": "f7ef", + "label": "Cheese", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 240.2V256H0c0-20 10-38.7 26.6-49.8L274.9 40.7c8.6-5.7 18.6-8.7 28.9-8.7C418.8 32 512 125.2 512 240.2zm0 47.8V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V288H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chess": { + "aliases": { + "unicodes": { + "secondary": [ + "10f439" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "castle", + "checkmate", + "game", + "king", + "rook", + "strategy", + "tournament" + ] + }, + "unicode": "f439", + "label": "Chess", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M144 16c0-8.8-7.2-16-16-16s-16 7.2-16 16V32H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h16V96H60.2C49.1 96 40 105.1 40 116.2c0 2.5 .5 4.9 1.3 7.3L73.8 208H72c-13.3 0-24 10.7-24 24s10.7 24 24 24h4L60 384H196L180 256h4c13.3 0 24-10.7 24-24s-10.7-24-24-24h-1.8l32.5-84.5c.9-2.3 1.3-4.8 1.3-7.3c0-11.2-9.1-20.2-20.2-20.2H144V64h16c8.8 0 16-7.2 16-16s-7.2-16-16-16H144V16zM48 416L4.8 473.6C1.7 477.8 0 482.8 0 488c0 13.3 10.7 24 24 24H232c13.3 0 24-10.7 24-24c0-5.2-1.7-10.2-4.8-14.4L208 416H48zm288 0l-43.2 57.6c-3.1 4.2-4.8 9.2-4.8 14.4c0 13.3 10.7 24 24 24H488c13.3 0 24-10.7 24-24c0-5.2-1.7-10.2-4.8-14.4L464 416H336zM304 208v51.9c0 7.8 2.8 15.3 8 21.1L339.2 312 337 384H462.5l-3.3-72 28.3-30.8c5.4-5.9 8.5-13.6 8.5-21.7V208c0-8.8-7.2-16-16-16H464c-8.8 0-16 7.2-16 16v16H424V208c0-8.8-7.2-16-16-16H392c-8.8 0-16 7.2-16 16v16H352V208c0-8.8-7.2-16-16-16H320c-8.8 0-16 7.2-16 16zm80 96c0-8.8 7.2-16 16-16s16 7.2 16 16v32H384V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chess-bishop": { + "aliases": { + "unicodes": { + "composite": [ + "265d" + ], + "secondary": [ + "10f43a" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Bishop", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f43a", + "label": "Chess Bishop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M128 0C110.3 0 96 14.3 96 32c0 16.1 11.9 29.4 27.4 31.7C78.4 106.8 8 190 8 288c0 47.4 30.8 72.3 56 84.7V400H256V372.7c25.2-12.5 56-37.4 56-84.7c0-37.3-10.2-72.4-25.3-104.1l-99.4 99.4c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L270.8 154.6c-23.2-38.1-51.8-69.5-74.2-90.9C212.1 61.4 224 48.1 224 32c0-17.7-14.3-32-32-32H128zM48 432L6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512H297.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L272 432H48z" + }, + "regular": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M104 0C90.7 0 80 10.7 80 24c0 11.2 7.6 20.6 18 23.2c-7.8 8-16.1 17-24.4 27C38.2 116.7 0 178.8 0 250.9c0 44.8 24.6 72.2 48 87.8V352H96V325c0-9-5-17.2-13-21.3c-18-9.3-35-24.7-35-52.7c0-55.5 29.8-106.8 62.4-145.9c16-19.2 32.1-34.8 44.2-45.5c1.9-1.7 3.7-3.2 5.3-4.6c1.7 1.4 3.4 3 5.3 4.6c12.1 10.7 28.2 26.3 44.2 45.5c5.3 6.3 10.5 13 15.5 20L159 191c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57.8-57.8c12.8 25.9 21.2 54.3 21.2 83.8c0 28-17 43.4-35 52.7c-8 4.1-13 12.3-13 21.3v27h48V338.7c23.4-15.6 48-42.9 48-87.8c0-72.1-38.2-134.2-73.6-176.7c-8.3-9.9-16.6-19-24.4-27c10.3-2.7 18-12.1 18-23.2c0-13.3-10.7-24-24-24H160 104zM52.7 464l16.6-32H250.8l16.6 32H52.7zm207.9-80H59.5c-12 0-22.9 6.7-28.4 17.3L4.6 452.5c-3 5.8-4.6 12.2-4.6 18.7C0 493.8 18.2 512 40.8 512H279.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2c-5.5-10.6-16.5-17.3-28.4-17.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-board": { + "aliases": { + "unicodes": { + "secondary": [ + "10f43c" + ] + } + }, + "changes": [ + "5.0.5", + "5.7.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f43c", + "label": "Chess Board", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1678474324, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 64v64h64V96h64v64h64V96h64v64H320v64h64v64H320v64h64v64H320V352H256v64H192V352H128v64H64V352h64V288H64V224h64V160H64V96h64zm64 128h64V160H192v64zm0 64V224H128v64h64zm64 0H192v64h64V288zm0 0h64V224H256v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chess-king": { + "aliases": { + "unicodes": { + "composite": [ + "265a" + ], + "secondary": [ + "10f43f" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess King", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f43f", + "label": "Chess King", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V48h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H256v48H408c22.1 0 40 17.9 40 40c0 5.3-1 10.5-3.1 15.4L368 400H80L3.1 215.4C1 210.5 0 205.3 0 200c0-22.1 17.9-40 40-40H192V112H176c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V32c0-17.7 14.3-32 32-32zM38.6 473.4L80 432H368l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H54.6C42.1 512 32 501.9 32 489.4c0-6 2.4-11.8 6.6-16z" + }, + "regular": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V56H168c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v40H59.6C26.7 144 0 170.7 0 203.6c0 8.2 1.7 16.3 4.9 23.8L59.1 352h52.3L49 208.2c-.6-1.5-1-3-1-4.6c0-6.4 5.2-11.6 11.6-11.6H224 388.4c6.4 0 11.6 5.2 11.6 11.6c0 1.6-.3 3.2-1 4.6L336.5 352h52.3l54.2-124.6c3.3-7.5 4.9-15.6 4.9-23.8c0-32.9-26.7-59.6-59.6-59.6H248V104h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H248V24zM101.2 432H346.8l16.6 32H84.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3H91.5c-12 0-22.9 6.7-28.4 17.3L36.6 452.5c-3 5.8-4.6 12.2-4.6 18.7C32 493.8 50.2 512 72.8 512H375.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-knight": { + "aliases": { + "unicodes": { + "composite": [ + "265e" + ], + "secondary": [ + "10f441" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Knight", + "board", + "checkmate", + "game", + "horse", + "strategy" + ] + }, + "unicode": "f441", + "label": "Chess Knight", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 48L82.7 61.3C70.7 73.3 64 89.5 64 106.5V238.9c0 10.7 5.3 20.7 14.2 26.6l10.6 7c14.3 9.6 32.7 10.7 48.1 3l3.2-1.6c2.6-1.3 5-2.8 7.3-4.5l49.4-37c6.6-5 15.7-5 22.3 0c10.2 7.7 9.9 23.1-.7 30.3L90.4 350C73.9 361.3 64 380 64 400H384l28.9-159c2.1-11.3 3.1-22.8 3.1-34.3V192C416 86 330 0 224 0H83.8C72.9 0 64 8.9 64 19.8c0 7.5 4.2 14.3 10.9 17.7L96 48zm24 68a20 20 0 1 1 40 0 20 20 0 1 1 -40 0zM22.6 473.4c-4.2 4.2-6.6 10-6.6 16C16 501.9 26.1 512 38.6 512H409.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L384 432H64L22.6 473.4z" + }, + "regular": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M226.6 48H117.3l17.1 12.8c6 4.5 9.6 11.6 9.6 19.2s-3.6 14.7-9.6 19.2l-6.5 4.9c-10 7.5-16 19.3-16 31.9l-.3 91c0 10.2 4.9 19.9 13.2 25.8l1.9 1.3c9.9 7.1 23.3 7 33.2-.1l49.9-36.3c10.7-7.8 25.7-5.4 33.5 5.3s5.4 25.7-5.3 33.5l-49.9 36.3-53.8 39.1c-7.3 5.3-13 12.2-16.9 20.1H66.8c5.3-22.1 17.8-41.9 35.9-56.3c-1.3-.8-2.6-1.7-3.8-2.6L97 291.8c-21-15-33.4-39.2-33.3-65l.3-91c.1-19.8 6.7-38.7 18.6-53.9l-.4-.3C70.7 73 64 59.6 64 45.3C64 20.3 84.3 0 109.3 0H226.6C331.2 0 416 84.8 416 189.4c0 11.1-1 22.2-2.9 33.2L390.1 352H341.3l24.5-137.8c1.5-8.2 2.2-16.5 2.2-24.8C368 111.3 304.7 48 226.6 48zM85.2 432L68.7 464H379.3l-16.6-32H85.2zm315.7-30.7l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H56.8C34.2 512 16 493.8 16 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C52.5 390.7 63.5 384 75.5 384h297c12 0 22.9 6.7 28.4 17.3zM172 128a20 20 0 1 1 0 40 20 20 0 1 1 0-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-pawn": { + "aliases": { + "unicodes": { + "composite": [ + "265f" + ], + "secondary": [ + "10f443" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "chess", + "chess pawn", + "dupe", + "expendable", + "game", + "strategy" + ] + }, + "unicode": "f443", + "label": "Chess Pawn", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M215.5 224c29.2-18.4 48.5-50.9 48.5-88c0-57.4-46.6-104-104-104S56 78.6 56 136c0 37.1 19.4 69.6 48.5 88H96c-17.7 0-32 14.3-32 32c0 16.5 12.5 30 28.5 31.8L80 400H240L227.5 287.8c16-1.8 28.5-15.3 28.5-31.8c0-17.7-14.3-32-32-32h-8.5zM22.6 473.4c-4.2 4.2-6.6 10-6.6 16C16 501.9 26.1 512 38.6 512H281.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L256 432H64L22.6 473.4z" + }, + "regular": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M232 152A72 72 0 1 0 88 152a72 72 0 1 0 144 0zm24 120H243.4l10.7 80H205.7L195 272H160 125l-10.7 80H65.9l10.7-80H64c-13.3 0-24-10.7-24-24s10.7-24 24-24c-15.1-20.1-24-45-24-72C40 85.7 93.7 32 160 32s120 53.7 120 120c0 27-8.9 51.9-24 72c13.3 0 24 10.7 24 24s-10.7 24-24 24zM52.7 464H267.3l-16.6-32H69.2L52.7 464zm207.9-80c12 0 22.9 6.7 28.4 17.3l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C36.5 390.7 47.5 384 59.5 384h201z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-queen": { + "aliases": { + "unicodes": { + "composite": [ + "265b" + ], + "secondary": [ + "10f445" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Queen", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f445", + "label": "Chess Queen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a56 56 0 1 1 0 112A56 56 0 1 1 256 0zM134.1 143.8c3.3-13 15-23.8 30.2-23.8c12.3 0 22.6 7.2 27.7 17c12 23.2 36.2 39 64 39s52-15.8 64-39c5.1-9.8 15.4-17 27.7-17c15.3 0 27 10.8 30.2 23.8c7 27.8 32.2 48.3 62.1 48.3c10.8 0 21-2.7 29.8-7.4c8.4-4.4 18.9-4.5 27.6 .9c13 8 17.1 25 9.2 38L399.7 400H384 343.6 168.4 128 112.3L5.4 223.6c-7.9-13-3.8-30 9.2-38c8.7-5.3 19.2-5.3 27.6-.9c8.9 4.7 19 7.4 29.8 7.4c29.9 0 55.1-20.5 62.1-48.3zM256 224l0 0 0 0h0zM112 432H400l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H86.6C74.1 512 64 501.9 64 489.4c0-6 2.4-11.8 6.6-16L112 432z" + }, + "regular": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-95.2-8c-18.1 0-31.3 12.8-35.6 26.9c-8 26.2-32.4 45.2-61.2 45.2c-10 0-19.4-2.3-27.7-6.3c-7.6-3.7-16.7-3.3-24 1.2C.7 162.1-3.1 177.1 3.7 188.9L97.6 352H153l-83-144.1c40.5-2.2 75.3-25.9 93.1-59.8c22 26.8 55.4 43.9 92.8 43.9s70.8-17.1 92.8-43.9c17.8 34 52.6 57.7 93.1 59.8L359 352h55.4l93.9-163.1c6.8-11.7 3-26.7-8.6-33.8c-7.3-4.5-16.4-4.9-24-1.2c-8.4 4-17.7 6.3-27.7 6.3c-28.8 0-53.2-19-61.2-45.2C382.5 100.8 369.3 88 351.2 88c-14.5 0-26.3 8.5-32.4 19.3c-12.4 22-35.9 36.7-62.8 36.7s-50.4-14.8-62.8-36.7C187.1 96.5 175.4 88 160.8 88zM133.2 432H378.8l16.6 32H116.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12 0-22.9 6.7-28.4 17.3L68.6 452.5c-3 5.8-4.6 12.2-4.6 18.7c0 22.5 18.2 40.8 40.8 40.8H407.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-rook": { + "aliases": { + "unicodes": { + "composite": [ + "265c" + ], + "secondary": [ + "10f447" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Rook", + "board", + "castle", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f447", + "label": "Chess Rook", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 192V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16V88c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16V88c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16V192c0 10.1-4.7 19.6-12.8 25.6L352 256l16 144H80L96 256 44.8 217.6C36.7 211.6 32 202.1 32 192zm176 96h32c8.8 0 16-7.2 16-16V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 8.8 7.2 16 16 16zM22.6 473.4L64 432H384l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H38.6C26.1 512 16 501.9 16 489.4c0-6 2.4-11.8 6.6-16z" + }, + "regular": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 80V192c0 2.5 1.2 4.9 3.2 6.4l51.2 38.4c6.8 5.1 10.4 13.4 9.5 21.9L133.5 352H85.2l9.4-85L54.4 236.8C40.3 226.2 32 209.6 32 192V72c0-22.1 17.9-40 40-40H376c22.1 0 40 17.9 40 40V192c0 17.6-8.3 34.2-22.4 44.8L353.4 267l9.4 85H314.5l-10.4-93.3c-.9-8.4 2.7-16.8 9.5-21.9l51.2-38.4c2-1.5 3.2-3.9 3.2-6.4V80H304v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V80H192v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V80H80zm4.7 384H363.3l-16.6-32H101.2L84.7 464zm271.9-80c12 0 22.9 6.7 28.4 17.3l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H72.8C50.2 512 32 493.8 32 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C68.5 390.7 79.5 384 91.5 384h265zM208 288c-8.8 0-16-7.2-16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 8.8-7.2 16-16 16H208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chevron-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f078" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "download", + "expand" + ] + }, + "unicode": "f078", + "label": "Chevron Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chevron-left": { + "aliases": { + "unicodes": { + "composite": [ + "2329" + ], + "secondary": [ + "10f053" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left-Pointing Angle Bracket", + "arrow", + "back", + "bracket", + "previous" + ] + }, + "unicode": "f053", + "label": "Chevron Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chevron-right": { + "aliases": { + "unicodes": { + "composite": [ + "232a" + ], + "secondary": [ + "10f054" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right-Pointing Angle Bracket", + "arrow", + "bracket", + "forward", + "next" + ] + }, + "unicode": "f054", + "label": "Chevron Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chevron-up": { + "aliases": { + "unicodes": { + "secondary": [ + "10f077" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "upload" + ] + }, + "unicode": "f077", + "label": "Chevron Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ae" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.1.1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "unicode": "f1ae", + "label": "Child", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 64a64 64 0 1 1 128 0A64 64 0 1 1 96 64zm48 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V287.8L59.1 321c-9.4 15-29.2 19.4-44.1 10S-4.5 301.9 4.9 287l39.9-63.3C69.7 184 113.2 160 160 160s90.3 24 115.2 63.6L315.1 287c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10L240 287.8V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child-combatant": { + "aliases": { + "names": [ + "child-rifle" + ] + }, + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "combatant" + ] + }, + "unicode": "e4e0", + "label": "Child Combatant", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M176 128A64 64 0 1 0 176 0a64 64 0 1 0 0 128zm-8 352V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V300.5L260.9 321c9.4 15 29.2 19.4 44.1 10s19.4-29.2 10-44.1l-51.7-82.1c-17.6-27.9-48.3-44.9-81.2-44.9H169.8c-33 0-63.7 16.9-81.2 44.9L36.9 287c-9.4 15-4.9 34.7 10 44.1s34.7 4.9 44.1-10L104 300.5V480c0 17.7 14.3 32 32 32s32-14.3 32-32zM448 0H432 416c-8.8 0-16 7.2-16 16s7.2 16 16 16V132.3c-9.6 5.5-16 15.9-16 27.7v32c-17.7 0-32 14.3-32 32V368c0 17.7 14.3 32 32 32h16v96c0 8.8 7.2 16 16 16h59.5c10.4 0 18-9.8 15.5-19.9L484 400h44c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H480V325.3l53.1-17.7c6.5-2.2 10.9-8.3 10.9-15.2V208c0-8.8-7.2-16-16-16H512c-8.8 0-16 7.2-16 16v56l-16 5.3V160c0-11.8-6.4-22.2-16-27.7V16c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child-dress": { + "changes": [ + "6.1.1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "unicode": "e59c", + "label": "Child Dress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M224 64A64 64 0 1 0 96 64a64 64 0 1 0 128 0zM88 400v80c0 17.7 14.3 32 32 32s32-14.3 32-32V400h16v80c0 17.7 14.3 32 32 32s32-14.3 32-32V400h17.8c10.9 0 18.6-10.7 15.2-21.1l-31.1-93.4 28.6 37.8c10.7 14.1 30.8 16.8 44.8 6.2s16.8-30.7 6.2-44.8L254.6 207c-22.4-29.6-57.5-47-94.6-47s-72.2 17.4-94.6 47L6.5 284.7c-10.7 14.1-7.9 34.2 6.2 44.8s34.2 7.9 44.8-6.2l28.7-37.8L55 378.9C51.6 389.3 59.3 400 70.2 400H88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child-reaching": { + "changes": [ + "6.1.1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "unicode": "e59d", + "label": "Child Reaching", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M256 64A64 64 0 1 0 128 64a64 64 0 1 0 128 0zM152.9 169.3c-23.7-8.4-44.5-24.3-58.8-45.8L74.6 94.2C64.8 79.5 45 75.6 30.2 85.4s-18.7 29.7-8.9 44.4L40.9 159c18.1 27.1 42.8 48.4 71.1 62.4V480c0 17.7 14.3 32 32 32s32-14.3 32-32V384h32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V221.6c29.1-14.2 54.4-36.2 72.7-64.2l18.2-27.9c9.6-14.8 5.4-34.6-9.4-44.3s-34.6-5.5-44.3 9.4L291 122.4c-21.8 33.4-58.9 53.6-98.8 53.6c-12.6 0-24.9-2-36.6-5.8c-.9-.3-1.8-.7-2.7-.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "children": { + "changes": [ + "6.1.0", + "6.1.1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "child", + "girl", + "kid", + "kids", + "young", + "youth" + ] + }, + "unicode": "e4e1", + "label": "Children", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 0a64 64 0 1 1 0 128A64 64 0 1 1 160 0zM88 480V400H70.2c-10.9 0-18.6-10.7-15.2-21.1l31.1-93.4L57.5 323.3c-10.7 14.1-30.8 16.8-44.8 6.2s-16.8-30.7-6.2-44.8L65.4 207c22.4-29.6 57.5-47 94.6-47s72.2 17.4 94.6 47l58.9 77.7c10.7 14.1 7.9 34.2-6.2 44.8s-34.2 7.9-44.8-6.2l-28.6-37.8L265 378.9c3.5 10.4-4.3 21.1-15.2 21.1H232v80c0 17.7-14.3 32-32 32s-32-14.3-32-32V400H152v80c0 17.7-14.3 32-32 32s-32-14.3-32-32zM480 0a64 64 0 1 1 0 128A64 64 0 1 1 480 0zm-8 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V300.5L395.1 321c-9.4 15-29.2 19.4-44.1 10s-19.4-29.2-10-44.1l51.7-82.1c17.6-27.9 48.3-44.9 81.2-44.9h12.3c33 0 63.7 16.9 81.2 44.9L619.1 287c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10L552 300.5V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H472z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chrome": { + "changes": [ + "4.4.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "f268", + "label": "Chrome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 209.4 12.47 165.6 34.27 127.1L144.1 318.3C166 357.5 207.9 384 256 384C270.3 384 283.1 381.7 296.8 377.4L220.5 509.6C95.9 492.3 0 385.3 0 256zM365.1 321.6C377.4 302.4 384 279.1 384 256C384 217.8 367.2 183.5 340.7 160H493.4C505.4 189.6 512 222.1 512 256C512 397.4 397.4 511.1 256 512L365.1 321.6zM477.8 128H256C193.1 128 142.3 172.1 130.5 230.7L54.19 98.47C101 38.53 174 0 256 0C350.8 0 433.5 51.48 477.8 128V128zM168 256C168 207.4 207.4 168 256 168C304.6 168 344 207.4 344 256C344 304.6 304.6 344 256 344C207.4 344 168 304.6 168 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "chromecast": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f838", + "label": "Chromecast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M447.8,64H64c-23.6,0-42.7,19.1-42.7,42.7v63.9H64v-63.9h383.8v298.6H298.6V448H448c23.6,0,42.7-19.1,42.7-42.7V106.7 C490.7,83.1,471.4,64,447.8,64z M21.3,383.6L21.3,383.6l0,63.9h63.9C85.2,412.2,56.6,383.6,21.3,383.6L21.3,383.6z M21.3,298.6V341 c58.9,0,106.6,48.1,106.6,107h42.7C170.7,365.6,103.7,298.7,21.3,298.6z M213.4,448h42.7c-0.5-129.5-105.3-234.3-234.8-234.6l0,42.4 C127.3,255.6,213.3,342,213.4,448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "church": { + "aliases": { + "unicodes": { + "composite": [ + "26ea" + ], + "secondary": [ + "10f51d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Christian", + "building", + "cathedral", + "chapel", + "church", + "community", + "cross", + "religion" + ] + }, + "unicode": "f51d", + "label": "Church", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M344 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V48H264c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v46.4L183.3 210c-14.5 8.7-23.3 24.3-23.3 41.2V512h96V416c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V251.2c0-16.9-8.8-32.5-23.3-41.2L344 142.4V96h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V24zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6L24.9 330.3zM592 512c26.5 0 48-21.5 48-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512h80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle": { + "aliases": { + "unicodes": { + "composite": [ + "1f534", + "1f535", + "1f7e0", + "1f7e1", + "1f7e2", + "1f7e3", + "1f7e4", + "25cf", + "26aa", + "26ab", + "2b24", + "f10c", + "f1db" + ], + "secondary": [ + "10f111" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Circle", + "Black Large Circle", + "black circle", + "blue", + "blue circle", + "brown", + "brown circle", + "chart", + "circle", + "circle-thin", + "diameter", + "dot", + "ellipse", + "fill", + "geometric", + "green", + "green circle", + "notification", + "orange", + "orange circle", + "progress", + "purple", + "purple circle", + "red", + "red circle", + "round", + "white circle", + "yellow", + "yellow circle" + ] + }, + "unicode": "f111", + "label": "Circle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512z" + }, + "regular": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-arrow-down": { + "aliases": { + "names": [ + "arrow-circle-down" + ], + "unicodes": { + "secondary": [ + "10f0ab" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download" + ] + }, + "unicode": "f0ab", + "label": "Circle Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM127 281c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l71 71L232 136c0-13.3 10.7-24 24-24s24 10.7 24 24l0 182.1 71-71c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 393c-9.4 9.4-24.6 9.4-33.9 0L127 281z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-arrow-left": { + "aliases": { + "names": [ + "arrow-circle-left" + ], + "unicodes": { + "secondary": [ + "10f0a8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "previous" + ] + }, + "unicode": "f0a8", + "label": "Circle Arrow Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM231 127c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-71 71L376 232c13.3 0 24 10.7 24 24s-10.7 24-24 24l-182.1 0 71 71c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L119 273c-9.4-9.4-9.4-24.6 0-33.9L231 127z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-arrow-right": { + "aliases": { + "names": [ + "arrow-circle-right" + ], + "unicodes": { + "secondary": [ + "10f0a9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "next" + ] + }, + "unicode": "f0a9", + "label": "Circle Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM281 385c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l71-71L136 280c-13.3 0-24-10.7-24-24s10.7-24 24-24l182.1 0-71-71c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L393 239c9.4 9.4 9.4 24.6 0 33.9L281 385z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-arrow-up": { + "aliases": { + "names": [ + "arrow-circle-up" + ], + "unicodes": { + "secondary": [ + "10f0aa" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "upload" + ] + }, + "unicode": "f0aa", + "label": "Circle Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM385 231c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-71-71V376c0 13.3-10.7 24-24 24s-24-10.7-24-24V193.9l-71 71c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 119c9.4-9.4 24.6-9.4 33.9 0L385 231z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-check": { + "aliases": { + "names": [ + "check-circle" + ], + "unicodes": { + "composite": [ + "f05d" + ], + "secondary": [ + "10f058" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "affected", + "agree", + "clear", + "confirm", + "correct", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "unicode": "f058", + "label": "Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + }, + "regular": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L369 209z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-chevron-down": { + "aliases": { + "names": [ + "chevron-circle-down" + ], + "unicodes": { + "secondary": [ + "10f13a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "download", + "dropdown", + "menu", + "more" + ] + }, + "unicode": "f13a", + "label": "Circle Chevron Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM135 241c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l87 87 87-87c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 345c-9.4 9.4-24.6 9.4-33.9 0L135 241z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-chevron-left": { + "aliases": { + "names": [ + "chevron-circle-left" + ], + "unicodes": { + "secondary": [ + "10f137" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous" + ] + }, + "unicode": "f137", + "label": "Circle Chevron Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM271 135c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-87 87 87 87c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L167 273c-9.4-9.4-9.4-24.6 0-33.9L271 135z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-chevron-right": { + "aliases": { + "names": [ + "chevron-circle-right" + ], + "unicodes": { + "secondary": [ + "10f138" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next" + ] + }, + "unicode": "f138", + "label": "Circle Chevron Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-chevron-up": { + "aliases": { + "names": [ + "chevron-circle-up" + ], + "unicodes": { + "secondary": [ + "10f139" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "upload" + ] + }, + "unicode": "f139", + "label": "Circle Chevron Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM377 271c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-87-87-87 87c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 167c9.4-9.4 24.6-9.4 33.9 0L377 271z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-dollar-to-slot": { + "aliases": { + "names": [ + "donate" + ], + "unicodes": { + "secondary": [ + "10f4b9" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contribute", + "generosity", + "gift", + "give" + ] + }, + "unicode": "f4b9", + "label": "Circle Dollar To Slot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M326.7 403.7c-22.1 8-45.9 12.3-70.7 12.3s-48.7-4.4-70.7-12.3c-.3-.1-.5-.2-.8-.3c-30-11-56.8-28.7-78.6-51.4C70 314.6 48 263.9 48 208C48 93.1 141.1 0 256 0S464 93.1 464 208c0 55.9-22 106.6-57.9 144c-1 1-2 2.1-3 3.1c-21.4 21.4-47.4 38.1-76.3 48.6zM256 91.9c-11.1 0-20.1 9-20.1 20.1v6c-5.6 1.2-10.9 2.9-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7c-1.8 10.2-.8 20 3.4 29c4.2 8.8 10.7 15 17.3 19.5c11.6 7.9 26.9 12.5 38.6 16l2.2 .7c13.9 4.2 23.4 7.4 29.3 11.7c2.5 1.8 3.4 3.2 3.7 4c.3 .8 .9 2.6 .2 6.7c-.6 3.5-2.5 6.4-8 8.8c-6.1 2.6-16 3.9-28.8 1.9c-6-1-16.7-4.6-26.2-7.9l0 0 0 0 0 0c-2.2-.7-4.3-1.5-6.4-2.1c-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2 .4 2.7 .9 4.4 1.5c7.9 2.7 20.3 6.9 29.8 9.1V304c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.3-1 10.5-2.5 15.4-4.6c15.7-6.7 28.4-19.7 31.6-38.7c1.8-10.4 1-20.3-3-29.4c-3.9-9-10.2-15.6-16.9-20.5c-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4c-2.6-1.8-3.4-3-3.6-3.5c-.2-.3-.7-1.6-.1-5c.3-1.9 1.9-5.2 8.2-8.1c6.4-2.9 16.4-4.5 28.6-2.6c4.3 .7 17.9 3.3 21.7 4.3c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4V112c0-11.1-9-20.1-20.1-20.1zM48 352H64c19.5 25.9 44 47.7 72.2 64H64v32H256 448V416H375.8c28.2-16.3 52.8-38.1 72.2-64h16c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V400c0-26.5 21.5-48 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-dot": { + "aliases": { + "names": [ + "dot-circle" + ], + "unicodes": { + "composite": [ + "1f518" + ], + "secondary": [ + "10f192" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullseye", + "button", + "geometric", + "notification", + "radio", + "radio button", + "target" + ] + }, + "unicode": "f192", + "label": "Circle Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-352a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + }, + "regular": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256-96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-down": { + "aliases": { + "names": [ + "arrow-alt-circle-down" + ], + "unicodes": { + "composite": [ + "f01a" + ], + "secondary": [ + "10f358" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-down", + "download" + ] + }, + "unicode": "f358", + "label": "Circle Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM376.9 294.6L269.8 394.5c-3.8 3.5-8.7 5.5-13.8 5.5s-10.1-2-13.8-5.5L135.1 294.6c-4.5-4.2-7.1-10.1-7.1-16.3c0-12.3 10-22.3 22.3-22.3l57.7 0 0-96c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32l0 96 57.7 0c12.3 0 22.3 10 22.3 22.3c0 6.2-2.6 12.1-7.1 16.3z" + }, + "regular": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 464a208 208 0 1 1 0-416 208 208 0 1 1 0 416zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM376.9 294.6c4.5-4.2 7.1-10.1 7.1-16.3c0-12.3-10-22.3-22.3-22.3H304V160c0-17.7-14.3-32-32-32l-32 0c-17.7 0-32 14.3-32 32v96H150.3C138 256 128 266 128 278.3c0 6.2 2.6 12.1 7.1 16.3l107.1 99.9c3.8 3.5 8.7 5.5 13.8 5.5s10.1-2 13.8-5.5l107.1-99.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-exclamation": { + "aliases": { + "names": [ + "exclamation-circle" + ], + "unicodes": { + "secondary": [ + "10f06a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affect", + "alert", + "damage", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warning" + ] + }, + "unicode": "f06a", + "label": "Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-h": { + "aliases": { + "names": [ + "hospital-symbol" + ], + "unicodes": { + "composite": [ + "24bd" + ], + "secondary": [ + "10f47e" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Circled Latin Capital Letter H", + "clinic", + "covid-19", + "emergency", + "letter", + "map" + ] + }, + "unicode": "f47e", + "label": "Circle H", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767248, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM368 152V256 360c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H192l0 80c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-208c0-13.3 10.7-24 24-24s24 10.7 24 24v80H320V152c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-half-stroke": { + "aliases": { + "names": [ + "adjust" + ], + "unicodes": { + "composite": [ + "25d0" + ], + "secondary": [ + "10f042" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Circle with Left Half Black", + "adjust", + "chart", + "contrast", + "dark", + "fill", + "light", + "pie", + "progress", + "saturation" + ] + }, + "unicode": "f042", + "label": "Circle Half Stroke", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 256c0-106-86-192-192-192V448c106 0 192-86 192-192zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-info": { + "aliases": { + "names": [ + "info-circle" + ], + "unicodes": { + "secondary": [ + "10f05a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more", + "support" + ] + }, + "unicode": "f05a", + "label": "Circle Info", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-left": { + "aliases": { + "names": [ + "arrow-alt-circle-left" + ], + "unicodes": { + "composite": [ + "f190" + ], + "secondary": [ + "10f359" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-left", + "back", + "previous" + ] + }, + "unicode": "f359", + "label": "Circle Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM217.4 376.9L117.5 269.8c-3.5-3.8-5.5-8.7-5.5-13.8s2-10.1 5.5-13.8l99.9-107.1c4.2-4.5 10.1-7.1 16.3-7.1c12.3 0 22.3 10 22.3 22.3l0 57.7 96 0c17.7 0 32 14.3 32 32l0 32c0 17.7-14.3 32-32 32l-96 0 0 57.7c0 12.3-10 22.3-22.3 22.3c-6.2 0-12.1-2.6-16.3-7.1z" + }, + "regular": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48 256a208 208 0 1 1 416 0A208 208 0 1 1 48 256zm464 0A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM217.4 376.9c4.2 4.5 10.1 7.1 16.3 7.1c12.3 0 22.3-10 22.3-22.3V304h96c17.7 0 32-14.3 32-32V240c0-17.7-14.3-32-32-32H256V150.3c0-12.3-10-22.3-22.3-22.3c-6.2 0-12.1 2.6-16.3 7.1L117.5 242.2c-3.5 3.8-5.5 8.7-5.5 13.8s2 10.1 5.5 13.8l99.9 107.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-minus": { + "aliases": { + "names": [ + "minus-circle" + ], + "unicodes": { + "secondary": [ + "10f056" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "hide", + "negative", + "remove", + "shape", + "trash" + ] + }, + "unicode": "f056", + "label": "Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM184 232H328c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-nodes": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cluster", + "connect", + "network" + ] + }, + "unicode": "e4e2", + "label": "Circle Nodes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-notch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ce" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle-o-notch", + "diameter", + "dot", + "ellipse", + "round", + "spinner" + ] + }, + "unicode": "f1ce", + "label": "Circle Notch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M222.7 32.1c5 16.9-4.6 34.8-21.5 39.8C121.8 95.6 64 169.1 64 256c0 106 86 192 192 192s192-86 192-192c0-86.9-57.8-160.4-137.1-184.1c-16.9-5-26.6-22.9-21.5-39.8s22.9-26.6 39.8-21.5C434.9 42.1 512 140 512 256c0 141.4-114.6 256-256 256S0 397.4 0 256C0 140 77.1 42.1 182.9 10.6c16.9-5 34.8 4.6 39.8 21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-pause": { + "aliases": { + "names": [ + "pause-circle" + ], + "unicodes": { + "composite": [ + "f28c" + ], + "secondary": [ + "10f28b" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hold", + "wait" + ] + }, + "unicode": "f28b", + "label": "Circle Pause", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM224 192V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32z" + }, + "regular": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm224-72V328c0 13.3-10.7 24-24 24s-24-10.7-24-24V184c0-13.3 10.7-24 24-24s24 10.7 24 24zm112 0V328c0 13.3-10.7 24-24 24s-24-10.7-24-24V184c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-play": { + "aliases": { + "names": [ + "play-circle" + ], + "unicodes": { + "composite": [ + "f01d" + ], + "secondary": [ + "10f144" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "playing", + "sound", + "start", + "video" + ] + }, + "unicode": "f144", + "label": "Circle Play", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c-7.6 4.2-12.3 12.3-12.3 20.9V344c0 8.7 4.7 16.7 12.3 20.9s16.8 4.1 24.3-.5l144-88c7.1-4.4 11.5-12.1 11.5-20.5s-4.4-16.1-11.5-20.5l-144-88c-7.4-4.5-16.7-4.7-24.3-.5z" + }, + "regular": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c7.6-4.2 16.8-4.1 24.3 .5l144 88c7.1 4.4 11.5 12.1 11.5 20.5s-4.4 16.1-11.5 20.5l-144 88c-7.4 4.5-16.7 4.7-24.3 .5s-12.3-12.2-12.3-20.9V168c0-8.7 4.7-16.7 12.3-20.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-plus": { + "aliases": { + "names": [ + "plus-circle" + ], + "unicodes": { + "secondary": [ + "10f055" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "unicode": "f055", + "label": "Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM232 344V280H168c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-question": { + "aliases": { + "names": [ + "question-circle" + ], + "unicodes": { + "composite": [ + "f29c" + ], + "secondary": [ + "10f059" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "help", + "information", + "support", + "unknown" + ] + }, + "unicode": "f059", + "label": "Circle Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + }, + "regular": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm169.8-90.7c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-radiation": { + "aliases": { + "names": [ + "radiation-alt" + ], + "unicodes": { + "composite": [ + "2622" + ], + "secondary": [ + "10f7ba" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "danger", + "dangerous", + "deadly", + "hazard", + "nuclear", + "radioactive", + "sign", + "warning" + ] + }, + "unicode": "f7ba", + "label": "Circle Radiation", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64a192 192 0 1 1 0 384 192 192 0 1 1 0-384zm0 448A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM200 256c0-20.7 11.3-38.8 28-48.5l-36-62.3c-8.8-15.3-28.7-20.8-42-9c-25.6 22.6-43.9 53.3-50.9 88.1C95.7 241.5 110.3 256 128 256l72 0zm28 48.5l-36 62.4c-8.8 15.3-3.6 35.2 13.1 40.8c16 5.4 33.1 8.3 50.9 8.3s34.9-2.9 50.9-8.3c16.7-5.6 21.9-25.5 13.1-40.8l-36-62.4c-8.2 4.8-17.8 7.5-28 7.5s-19.8-2.7-28-7.5zM312 256l72 0c17.7 0 32.3-14.5 28.8-31.8c-7-34.8-25.3-65.5-50.9-88.1c-13.2-11.7-33.1-6.3-42 9l-36 62.3c16.7 9.7 28 27.8 28 48.5zm-56 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-right": { + "aliases": { + "names": [ + "arrow-alt-circle-right" + ], + "unicodes": { + "composite": [ + "f18e" + ], + "secondary": [ + "10f35a" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-right", + "forward", + "next" + ] + }, + "unicode": "f35a", + "label": "Circle Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM294.6 135.1l99.9 107.1c3.5 3.8 5.5 8.7 5.5 13.8s-2 10.1-5.5 13.8L294.6 376.9c-4.2 4.5-10.1 7.1-16.3 7.1C266 384 256 374 256 361.7l0-57.7-96 0c-17.7 0-32-14.3-32-32l0-32c0-17.7 14.3-32 32-32l96 0 0-57.7c0-12.3 10-22.3 22.3-22.3c6.2 0 12.1 2.6 16.3 7.1z" + }, + "regular": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM294.6 135.1c-4.2-4.5-10.1-7.1-16.3-7.1C266 128 256 138 256 150.3V208H160c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32h96v57.7c0 12.3 10 22.3 22.3 22.3c6.2 0 12.1-2.6 16.3-7.1l99.9-107.1c3.5-3.8 5.5-8.7 5.5-13.8s-2-10.1-5.5-13.8L294.6 135.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-stop": { + "aliases": { + "names": [ + "stop-circle" + ], + "unicodes": { + "composite": [ + "f28e" + ], + "secondary": [ + "10f28d" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "circle", + "square" + ] + }, + "unicode": "f28d", + "label": "Circle Stop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM192 160H320c17.7 0 32 14.3 32 32V320c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + }, + "regular": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm192-96H320c17.7 0 32 14.3 32 32V320c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-up": { + "aliases": { + "names": [ + "arrow-alt-circle-up" + ], + "unicodes": { + "composite": [ + "f01b" + ], + "secondary": [ + "10f35b" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-up" + ] + }, + "unicode": "f35b", + "label": "Circle Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM135.1 217.4l107.1-99.9c3.8-3.5 8.7-5.5 13.8-5.5s10.1 2 13.8 5.5l107.1 99.9c4.5 4.2 7.1 10.1 7.1 16.3c0 12.3-10 22.3-22.3 22.3H304v96c0 17.7-14.3 32-32 32H240c-17.7 0-32-14.3-32-32V256H150.3C138 256 128 246 128 233.7c0-6.2 2.6-12.1 7.1-16.3z" + }, + "regular": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM135.1 217.4c-4.5 4.2-7.1 10.1-7.1 16.3c0 12.3 10 22.3 22.3 22.3H208v96c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V256h57.7c12.3 0 22.3-10 22.3-22.3c0-6.2-2.6-12.1-7.1-16.3L269.8 117.5c-3.8-3.5-8.7-5.5-13.8-5.5s-10.1 2-13.8 5.5L135.1 217.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-user": { + "aliases": { + "names": [ + "user-circle" + ], + "unicodes": { + "composite": [ + "f2be" + ], + "secondary": [ + "10f2bd" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "5.0.11", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f2bd", + "label": "Circle User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M399 384.2C376.9 345.8 335.4 320 288 320H224c-47.4 0-88.9 25.8-111 64.2c35.2 39.2 86.2 63.8 143 63.8s107.8-24.7 143-63.8zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 16a72 72 0 1 0 0-144 72 72 0 1 0 0 144z" + }, + "regular": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.5 399.6C387.4 352.9 341.5 320 288 320H224c-53.5 0-99.4 32.9-118.5 79.6C69.9 362.2 48 311.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 55.7-21.9 106.2-57.5 143.6zm-40.1 32.7C334.4 452.4 296.6 464 256 464s-78.4-11.6-110.5-31.7c7.3-36.7 39.7-64.3 78.5-64.3h64c38.8 0 71.2 27.6 78.5 64.3zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-272a40 40 0 1 1 0-80 40 40 0 1 1 0 80zm-88-40a88 88 0 1 0 176 0 88 88 0 1 0 -176 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-xmark": { + "aliases": { + "names": [ + "times-circle", + "xmark-circle" + ], + "unicodes": { + "composite": [ + "f05c" + ], + "secondary": [ + "10f057" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "destroy", + "exit", + "incorrect", + "notice", + "notification", + "notify", + "problem", + "wrong", + "x" + ] + }, + "unicode": "f057", + "label": "Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + }, + "regular": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c-9.4 9.4-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "city": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d9" + ], + "secondary": [ + "10f64f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buildings", + "busy", + "city", + "cityscape", + "skyscrapers", + "urban", + "windows" + ] + }, + "unicode": "f64f", + "label": "City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 48c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48V96H224V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V96H112V24c0-13.3-10.7-24-24-24S64 10.7 64 24V96H48C21.5 96 0 117.5 0 144v96V464c0 26.5 21.5 48 48 48H304h32 96H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H480V48zm96 320v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM240 416H208c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16zM128 400c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32zM560 256c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32zM256 176v32c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM112 160c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32zM256 304c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32zM112 320H80c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16zm304-48v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM400 64c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16h32zm16 112v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clapperboard": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "clapper", + "clapper board", + "director", + "film", + "movie", + "record" + ] + }, + "unicode": "e131", + "label": "Clapperboard", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 32H361.9l-1 1-127 127h92.1l1-1L453.8 32.3c-1.9-.2-3.8-.3-5.8-.3zm64 128V96c0-15.1-5.3-29.1-14-40l-104 104H512zM294.1 32H201.9l-1 1L73.9 160h92.1l1-1 127-127zM64 32C28.7 32 0 60.7 0 96v64H6.1l1-1 127-127H64zM512 192H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cb" + ], + "secondary": [ + "10f328" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboar", + "clipboard", + "copy", + "notes", + "paste", + "record" + ] + }, + "unicode": "f328", + "label": "Clipboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M280 64h40c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64h40 9.6C121 27.5 153.3 0 192 0s71 27.5 78.4 64H280zM64 112c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16H304v24c0 13.3-10.7 24-24 24H192 104c-13.3 0-24-10.7-24-24V112H64zm128-8a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "clipboard-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46c" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "confirm", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "unicode": "f46c", + "label": "Clipboard Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM305 273L177 401c-9.4 9.4-24.6 9.4-33.9 0L79 337c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L271 239c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard-list": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46d" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "intinerary", + "ol", + "schedule", + "tick", + "todo", + "ul" + ] + }, + "unicode": "f46d", + "label": "Clipboard List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM72 272a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zM72 368a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm88 0c0-8.8 7.2-16 16-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assistance", + "interview", + "query", + "question" + ] + }, + "unicode": "e4e3", + "label": "Clipboard Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM105.8 229.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L216 328.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V314.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H158.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM160 416a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f3" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attendance", + "record", + "roster", + "staff" + ] + }, + "unicode": "f7f3", + "label": "Clipboard User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM80 432c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clock": { + "aliases": { + "names": [ + "clock-four" + ], + "unicodes": { + "composite": [ + "1f553" + ], + "secondary": [ + "10f017" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "00", + "4", + "4:00", + "clock", + "date", + "four", + "four o’clock", + "hour", + "late", + "minute", + "o'clock", + "o’clock", + "schedule", + "ticking", + "time", + "timer", + "timestamp", + "watch" + ] + }, + "unicode": "f017", + "label": "Clock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 1 0 512A256 256 0 1 1 256 0zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + }, + "regular": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "clock-rotate-left": { + "aliases": { + "names": [ + "history" + ], + "unicodes": { + "secondary": [ + "10f1da" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rewind", + "clock", + "reverse", + "time", + "time machine", + "time travel" + ] + }, + "unicode": "f1da", + "label": "Clock Rotate Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M75 75L41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24H134.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-24 10.7-24 24V256c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65V152c0-13.3-10.7-24-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f24d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "copy", + "duplicate", + "paste" + ] + }, + "unicode": "f24d", + "label": "Clone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 448H64V224h64V160H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H288v64zm-64-96H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64z" + }, + "regular": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 464H288c8.8 0 16-7.2 16-16V384h48v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h64v48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zM224 304H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16V288c0 8.8 7.2 16 16 16zm-64-16V64c0-35.3 28.7-64 64-64H448c35.3 0 64 28.7 64 64V288c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "closed-captioning": { + "aliases": { + "unicodes": { + "secondary": [ + "10f20a" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cc", + "deaf", + "hearing", + "subtitle", + "subtitling", + "text", + "video" + ] + }, + "unicode": "f20a", + "label": "Closed Captioning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z" + }, + "regular": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H512zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "cloud": { + "aliases": { + "unicodes": { + "composite": [ + "2601" + ], + "secondary": [ + "10f0c2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atmosphere", + "cloud", + "fog", + "overcast", + "save", + "upload", + "weather" + ] + }, + "unicode": "f0c2", + "label": "Cloud", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 336c0 79.5 64.5 144 144 144H512c70.7 0 128-57.3 128-128c0-61.9-44-113.6-102.4-125.4c4.1-10.7 6.4-22.4 6.4-34.6c0-53-43-96-96-96c-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32C167.6 32 96 103.6 96 192c0 2.7 .1 5.4 .2 8.1C40.2 219.8 0 273.2 0 336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-arrow-down": { + "aliases": { + "names": [ + "cloud-download", + "cloud-download-alt" + ], + "unicodes": { + "composite": [ + "f381" + ], + "primary": [ + "f381" + ], + "secondary": [ + "10f0ed", + "10f381" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "export", + "save" + ] + }, + "unicode": "f0ed", + "label": "Cloud Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9c-.1-2.7-.2-5.4-.2-8.1c0-88.4 71.6-160 160-160c59.3 0 111 32.2 138.7 80.2C409.9 102 428.3 96 448 96c53 0 96 43 96 96c0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128H144zm79-167l80 80c9.4 9.4 24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-39 39V184c0-13.3-10.7-24-24-24s-24 10.7-24 24V318.1l-39-39c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-arrow-up": { + "aliases": { + "names": [ + "cloud-upload", + "cloud-upload-alt" + ], + "unicodes": { + "composite": [ + "f382" + ], + "primary": [ + "f382" + ], + "secondary": [ + "10f0ee", + "10f382" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "import", + "save", + "upload" + ] + }, + "unicode": "f0ee", + "label": "Cloud Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9c-.1-2.7-.2-5.4-.2-8.1c0-88.4 71.6-160 160-160c59.3 0 111 32.2 138.7 80.2C409.9 102 428.3 96 448 96c53 0 96 43 96 96c0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128H144zm79-217c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V392c0 13.3 10.7 24 24 24s24-10.7 24-24V257.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0l-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-bolt": { + "aliases": { + "names": [ + "thunderstorm" + ], + "unicodes": { + "composite": [ + "1f329" + ], + "secondary": [ + "10f76c" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "cloud", + "cloud with lightning", + "lightning", + "precipitation", + "rain", + "storm", + "weather" + ] + }, + "unicode": "f76c", + "label": "Cloud Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 53 43 96 96 96h47.2L290 202.5c17.6-14.1 42.6-14 60.2 .2s22.8 38.6 12.8 58.8L333.7 320H352h64c53 0 96-43 96-96s-43-96-96-96c-.5 0-1.1 0-1.6 0c1.1-5.2 1.6-10.5 1.6-16c0-44.2-35.8-80-80-80c-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0C114.1 0 64 50.1 64 112c0 7.1 .7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224zm330.1 3.6c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8s8.3 10.7 15.1 10.7h70.1L177.7 488.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1 .1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H281.9l52.4-104.8c3.4-6.7 1.6-14.9-4.2-19.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-meatball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f73b" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "FLDSMDFR", + "food", + "spaghetti", + "storm" + ] + }, + "unicode": "f73b", + "label": "Cloud Meatball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 53 43 96 96 96h44.7c9.5-23.5 32.5-40 59.3-40c2 0 3.9 .1 5.8 .3C217.6 265.5 235.7 256 256 256s38.4 9.5 50.2 24.3c1.9-.2 3.9-.3 5.8-.3c26.9 0 49.9 16.5 59.3 40H416c53 0 96-43 96-96s-43-96-96-96c-.5 0-1.1 0-1.6 0c1.1-5.2 1.6-10.5 1.6-16c0-44.2-35.8-80-80-80c-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0C114.1 0 64 50.1 64 112c0 7.1 .7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224zm288 96c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 1 .1 2.1 .1 3.1c-.7-.8-1.4-1.6-2.1-2.3c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3c.7 .7 1.5 1.4 2.3 2.1c-1-.1-2.1-.1-3.1-.1c-17.7 0-32 14.3-32 32s14.3 32 32 32c1 0 2.1-.1 3.1-.1c-.8 .7-1.6 1.3-2.3 2.1c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0c.7-.7 1.4-1.5 2.1-2.3c-.1 1-.1 2.1-.1 3.1c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1-.1-2.1-.1-3.1c.7 .8 1.3 1.6 2.1 2.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3c-.7-.7-1.5-1.4-2.3-2.1c1 .1 2.1 .1 3.1 .1c17.7 0 32-14.3 32-32s-14.3-32-32-32c-1 0-2.1 .1-3.1 .1c.8-.7 1.6-1.3 2.3-2.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-.7 .7-1.4 1.5-2.1 2.3c.1-1 .1-2.1 .1-3.1zM48 448a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm416 0a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-moon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6c3" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crescent", + "evening", + "lunar", + "night", + "partly cloudy", + "sky" + ] + }, + "unicode": "f6c3", + "label": "Cloud Moon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M495.8 0c5.5 0 10.9 .2 16.3 .7c7 .6 12.8 5.7 14.3 12.5s-1.6 13.9-7.7 17.3c-44.4 25.2-74.4 73-74.4 127.8c0 81 65.5 146.6 146.2 146.6c8.6 0 17-.7 25.1-2.1c6.9-1.2 13.8 2.2 17 8.5s1.9 13.8-3.1 18.7c-34.5 33.6-81.7 54.4-133.6 54.4c-9.3 0-18.4-.7-27.4-1.9c-11.2-22.6-29.8-40.9-52.6-51.7c-2.7-58.5-50.3-105.3-109.2-106.7c-1.7-10.4-2.6-21-2.6-31.8C304 86.1 389.8 0 495.8 0zM447.9 431.9c0 44.2-35.8 80-80 80H96c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-moon-rain": { + "aliases": { + "unicodes": { + "secondary": [ + "10f73c" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crescent", + "evening", + "lunar", + "night", + "partly cloudy", + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "unicode": "f73c", + "label": "Cloud Moon Rain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M481.2 0C417 0 363.5 46.5 353.7 107.6c35.4 17.6 60.2 53.3 62.1 95.1c23.2 11 42 29.7 53.1 52.7c4 .4 8.1 .6 12.3 .6c34.9 0 66.7-13.8 89.9-36.1c5.1-4.9 6.4-12.5 3.2-18.7s-10.1-9.7-17-8.6c-4.9 .8-10 1.3-15.2 1.3c-49 0-88.4-39.3-88.4-87.4c0-32.6 18-61.1 44.9-76.1c6.1-3.4 9.3-10.5 7.8-17.4s-7.3-12-14.3-12.6c-3.6-.3-7.3-.5-10.9-.5zM367.9 383.9c44.2 0 80-35.8 80-80c0-39.3-28.4-72.1-65.8-78.7c1.2-5.6 1.9-11.3 1.9-17.2c0-44.2-35.8-80-80-80c-17 0-32.8 5.3-45.8 14.4C241.3 114.6 210.8 96 176 96c-53 0-96 43-96 96l0 1.3c-45.4 7.6-80 47.1-80 94.6c0 53 43 96 96 96H367.9zM85.4 420.1c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3zm96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3zm96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3zm96 0c-11-7.4-25.9-4.4-33.3 6.7l-32 48c-7.4 11-4.4 25.9 6.7 33.3s25.9 4.4 33.3-6.7l32-48c7.4-11 4.4-25.9-6.7-33.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-rain": { + "aliases": { + "unicodes": { + "composite": [ + "1f327", + "26c6" + ], + "secondary": [ + "10f73d" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rain", + "cloud", + "cloud with rain", + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "unicode": "f73d", + "label": "Cloud Rain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 320c-53 0-96-43-96-96c0-42.5 27.6-78.6 65.9-91.2C64.7 126.1 64 119.1 64 112C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60c14.7-17.1 36.5-28 60.8-28c44.2 0 80 35.8 80 80c0 5.5-.6 10.8-1.6 16c.5 0 1.1 0 1.6 0c53 0 96 43 96 96s-43 96-96 96H96zm-6.8 52c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3L89.2 372zm160 0c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3L249.2 372zm124.9 64.6L409.2 372c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-showers-heavy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f740" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "unicode": "f740", + "label": "Cloud Showers Heavy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 320c-53 0-96-43-96-96c0-42.5 27.6-78.6 65.9-91.2C64.7 126.1 64 119.1 64 112C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60c14.7-17.1 36.5-28 60.8-28c44.2 0 80 35.8 80 80c0 5.5-.6 10.8-1.6 16c.5 0 1.1 0 1.6 0c53 0 96 43 96 96s-43 96-96 96H96zM81.5 353.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6S-3.3 490.7 1.9 478.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm120 0c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm244.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6s17.8 19.3 12.6 31.5zM313.5 353.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-showers-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "deluge", + "flood", + "rain", + "storm", + "surge" + ] + }, + "unicode": "e4e4", + "label": "Cloud Showers Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 0c38.6 0 71.9 22.8 87.2 55.7C325.7 41.1 345.8 32 368 32c38.7 0 71 27.5 78.4 64H448c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64c0-53 43-96 96-96zM140.6 292.3l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9zm327.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2zM252.6 292.3l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9zm103.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-sun": { + "aliases": { + "unicodes": { + "composite": [ + "26c5" + ], + "secondary": [ + "10f6c4" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clear", + "cloud", + "day", + "daytime", + "fall", + "outdoors", + "overcast", + "partly cloudy", + "sun", + "sun behind cloud" + ] + }, + "unicode": "f6c4", + "label": "Cloud Sun", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M294.2 1.2c5.1 2.1 8.7 6.7 9.6 12.1l14.1 84.7 84.7 14.1c5.4 .9 10 4.5 12.1 9.6s1.5 10.9-1.6 15.4l-38.5 55c-2.2-.1-4.4-.2-6.7-.2c-23.3 0-45.1 6.2-64 17.1l0-1.1c0-53-43-96-96-96s-96 43-96 96s43 96 96 96c8.1 0 15.9-1 23.4-2.9c-36.6 18.1-63.3 53.1-69.8 94.9l-24.4 17c-4.5 3.2-10.3 3.8-15.4 1.6s-8.7-6.7-9.6-12.1L98.1 317.9 13.4 303.8c-5.4-.9-10-4.5-12.1-9.6s-1.5-10.9 1.6-15.4L52.5 208 2.9 137.2c-3.2-4.5-3.8-10.3-1.6-15.4s6.7-8.7 12.1-9.6L98.1 98.1l14.1-84.7c.9-5.4 4.5-10 9.6-12.1s10.9-1.5 15.4 1.6L208 52.5 278.8 2.9c4.5-3.2 10.3-3.8 15.4-1.6zM144 208a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM639.9 431.9c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-sun-rain": { + "aliases": { + "unicodes": { + "composite": [ + "1f326" + ], + "secondary": [ + "10f743" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "day", + "overcast", + "precipitation", + "rain", + "storm", + "summer", + "sun", + "sun behind rain cloud", + "sunshower" + ] + }, + "unicode": "f743", + "label": "Cloud Sun Rain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M294.2 1.2c5.1 2.1 8.7 6.7 9.6 12.1l10.4 62.4c-23.3 10.8-42.9 28.4-56 50.3c-14.6-9-31.8-14.1-50.2-14.1c-53 0-96 43-96 96c0 35.5 19.3 66.6 48 83.2c.8 31.8 13.2 60.7 33.1 82.7l-56 39.2c-4.5 3.1-10.3 3.8-15.4 1.6s-8.7-6.7-9.6-12.1L98.1 317.9 13.4 303.8c-5.4-.9-10-4.5-12.1-9.6s-1.5-10.9 1.6-15.4L52.5 208 2.9 137.2c-3.2-4.5-3.8-10.3-1.6-15.4s6.7-8.7 12.1-9.6L98.1 98.1l14.1-84.7c.9-5.4 4.5-10 9.6-12.1s10.9-1.5 15.4 1.6L208 52.5 278.8 2.9c4.5-3.2 10.3-3.8 15.4-1.6zM208 144c13.8 0 26.7 4.4 37.1 11.9c-1.2 4.1-2.2 8.3-3 12.6c-37.9 14.6-67.2 46.6-77.8 86.4C151.8 243.1 144 226.5 144 208c0-35.3 28.7-64 64-64zm69.4 276c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm74.5-116.1c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloudflare": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07d", + "label": "Cloudflare", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M407.906,319.913l-230.8-2.928a4.58,4.58,0,0,1-3.632-1.926,4.648,4.648,0,0,1-.494-4.147,6.143,6.143,0,0,1,5.361-4.076L411.281,303.9c27.631-1.26,57.546-23.574,68.022-50.784l13.286-34.542a7.944,7.944,0,0,0,.524-2.936,7.735,7.735,0,0,0-.164-1.631A151.91,151.91,0,0,0,201.257,198.4,68.12,68.12,0,0,0,94.2,269.59C41.924,271.106,0,313.728,0,366.12a96.054,96.054,0,0,0,1.029,13.958,4.508,4.508,0,0,0,4.445,3.871l426.1.051c.043,0,.08-.019.122-.02a5.606,5.606,0,0,0,5.271-4l3.273-11.265c3.9-13.4,2.448-25.8-4.1-34.9C430.124,325.423,420.09,320.487,407.906,319.913ZM513.856,221.1c-2.141,0-4.271.062-6.391.164a3.771,3.771,0,0,0-3.324,2.653l-9.077,31.193c-3.9,13.4-2.449,25.786,4.1,34.89,6.02,8.4,16.054,13.323,28.238,13.9l49.2,2.939a4.491,4.491,0,0,1,3.51,1.894,4.64,4.64,0,0,1,.514,4.169,6.153,6.153,0,0,1-5.351,4.075l-51.125,2.939c-27.754,1.27-57.669,23.574-68.145,50.784l-3.695,9.606a2.716,2.716,0,0,0,2.427,3.68c.046,0,.088.017.136.017h175.91a4.69,4.69,0,0,0,4.539-3.37,124.807,124.807,0,0,0,4.682-34C640,277.3,583.524,221.1,513.856,221.1Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cloudscale": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f383", + "label": "cloudscale.ch", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cloudsmith": { + "changes": [ + "5.0.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f384", + "label": "Cloudsmith", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1684948301, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 227.6v56.9L284.4 512H227.6L0 284.4V227.6L227.6 0h56.9L512 227.6zm-256 162a133.6 133.6 0 1 0 0-267.1 133.6 133.6 0 1 0 0 267.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cloudversify": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f385", + "label": "cloudversify", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "clover": { + "changes": [ + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "4", + "charm", + "clover", + "four", + "four leaf clover", + "four-leaf clover", + "leaf", + "leprechaun", + "luck", + "lucky" + ] + }, + "unicode": "e139", + "label": "Clover", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M173.3 32C139.4 32 112 59.4 112 93.3v4.9c0 12 3.3 23.7 9.4 34l18.8 31.3c1.1 1.8 1.2 3.1 1 4.2c-.2 1.2-.8 2.5-2 3.6s-2.4 1.8-3.6 2c-1 .2-2.4 .1-4.2-1l-31.3-18.8c-10.3-6.2-22-9.4-34-9.4H61.3C27.4 144 0 171.4 0 205.3c0 16.2 6.5 31.8 17.9 43.3l1.2 1.2c3.4 3.4 3.4 9 0 12.4l-1.2 1.2C6.5 274.9 0 290.5 0 306.7C0 340.6 27.4 368 61.3 368h4.9c12 0 23.7-3.3 34-9.4l31.3-18.8c1.8-1.1 3.1-1.2 4.2-1c1.2 .2 2.5 .8 3.6 2s1.8 2.4 2 3.6c.2 1 .1 2.4-1 4.2l-18.8 31.3c-6.2 10.3-9.4 22-9.4 34v4.9c0 33.8 27.4 61.3 61.3 61.3c16.2 0 31.8-6.5 43.3-17.9l1.2-1.2c3.4-3.4 9-3.4 12.4 0l1.2 1.2c11.5 11.5 27.1 17.9 43.3 17.9c33.8 0 61.3-27.4 61.3-61.3v-4.9c0-12-3.3-23.7-9.4-34l-18.8-31.3c-1.1-1.8-1.2-3.1-1-4.2c.2-1.2 .8-2.5 2-3.6s2.4-1.8 3.6-2c1-.2 2.4-.1 4.2 1l31.3 18.8c10.3 6.2 22 9.4 34 9.4h4.9c33.8 0 61.3-27.4 61.3-61.3c0-16.2-6.5-31.8-17.9-43.3l-1.2-1.2c-3.4-3.4-3.4-9 0-12.4l1.2-1.2c11.5-11.5 17.9-27.1 17.9-43.3c0-33.8-27.4-61.3-61.3-61.3h-4.9c-12 0-23.7 3.3-34 9.4l-31.3 18.8c-1.8 1.1-3.1 1.2-4.2 1c-1.2-.2-2.5-.8-3.6-2s-1.8-2.4-2-3.6c-.2-1-.1-2.4 1-4.2l18.8-31.3c6.2-10.3 9.4-22 9.4-34V93.3C336 59.4 308.6 32 274.7 32c-16.2 0-31.8 6.5-43.3 17.9l-1.2 1.2c-3.4 3.4-9 3.4-12.4 0l-1.2-1.2C205.1 38.5 189.5 32 173.3 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cmplid": { + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e360", + "label": "Cmplid", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M226.119,388.165a3.816,3.816,0,0,0-2.294-3.5,3.946,3.946,0,0,0-1.629-.385L72.6,384.3a19.243,19.243,0,0,1-17.924-26.025L81.585,255.692a35.72,35.72,0,0,1,32.373-26H262.525a7.07,7.07,0,0,0,6.392-5.194l10.769-41.131a3.849,3.849,0,0,0-2.237-4.937,3.755,3.755,0,0,0-1.377-.261c-.063,0-.126,0-.189.005H127.38a106.8,106.8,0,0,0-96.99,77.1L3.483,358.824A57.469,57.469,0,0,0,57.314,436q1.43,0,2.86-.072H208.742a7.131,7.131,0,0,0,6.391-5.193L225.839,389.6A3.82,3.82,0,0,0,226.119,388.165ZM306.658,81.2a3.861,3.861,0,0,0,.251-1.367A3.813,3.813,0,0,0,303.079,76c-.064,0-.128,0-.192,0h-41A7.034,7.034,0,0,0,255.5,81.2l-21.347,80.915h51.131ZM180.364,368.249H231.5L263.452,245.69H212.321ZM511.853,79.723a3.809,3.809,0,0,0-3.8-3.661c-.058,0-.137,0-.23.007h-41a7.1,7.1,0,0,0-6.584,5.129L368.91,430.634a3.54,3.54,0,0,0-.262,1.335,3.873,3.873,0,0,0,3.864,3.863c.056,0,.112,0,.169,0h41a7.068,7.068,0,0,0,6.392-5.193L511.533,81.2A3.624,3.624,0,0,0,511.853,79.723ZM324.649,384.47h-41a7.2,7.2,0,0,0-6.392,5.194L266.52,430.8a3.662,3.662,0,0,0-.268,1.374A3.783,3.783,0,0,0,270.023,436c.06,0,.166,0,.3-.012h40.905a7.036,7.036,0,0,0,6.391-5.193l10.769-41.131a3.75,3.75,0,0,0-3.445-5.208c-.108,0-.217,0-.326.014Zm311.324-308.4h-41a7.066,7.066,0,0,0-6.392,5.129l-91.46,349.436a4.073,4.073,0,0,0-.229,1.347,3.872,3.872,0,0,0,3.863,3.851c.056,0,.112,0,.169,0h40.968a7.1,7.1,0,0,0,6.392-5.193L639.68,81.2a3.624,3.624,0,0,0,.32-1.475,3.841,3.841,0,0,0-3.821-3.564c-.068,0-.137,0-.206.006ZM371.562,225.236l10.8-41.1a4.369,4.369,0,0,0,.227-1.388,3.869,3.869,0,0,0-3.861-3.842c-.057,0-.113,0-.169,0h-41.1a7.292,7.292,0,0,0-6.391,5.226l-10.834,41.1a4.417,4.417,0,0,0-.26,1.493c0,.069,0,.138,0,.206a3.776,3.776,0,0,0,3.757,3.507c.076,0,.18,0,.3-.012h41.129A7.034,7.034,0,0,0,371.562,225.236Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f121" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brackets", + "code", + "development", + "html" + ] + }, + "unicode": "f121", + "label": "Code", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-branch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f126" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "branch", + "git", + "github", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "unicode": "f126", + "label": "Code Branch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-24c0 32.8-19.7 61-48 73.3v87.8c18.8-10.9 40.7-17.1 64-17.1h96c35.3 0 64-28.7 64-64v-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V160c0 70.7-57.3 128-128 128H176c-35.3 0-64 28.7-64 64v6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V352 153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-commit": { + "aliases": { + "unicodes": { + "secondary": [ + "10f386" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "commit", + "git", + "github", + "hash", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "unicode": "f386", + "label": "Code Commit", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm156.8-48C462 361 397.4 416 320 416s-142-55-156.8-128H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H163.2C178 151 242.6 96 320 96s142 55 156.8 128H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H476.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-compare": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "compare", + "git", + "github", + "svn", + "version" + ] + }, + "unicode": "e13a", + "label": "Code Compare", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 488c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1s14.2 12.4 14.2 21.9v40h16c35.3 0 64-28.7 64-64V153.3C371.7 141 352 112.8 352 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V320c0 70.7-57.3 128-128 128H320v40zM456 80a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM192 24c0-9.5 5.6-18.1 14.2-21.9s18.8-2.3 25.8 4.1l80 72c5.1 4.6 7.9 11 7.9 17.8s-2.9 13.3-7.9 17.8l-80 72c-7 6.3-17.2 7.9-25.8 4.1s-14.2-12.4-14.2-21.9V128H176c-35.3 0-64 28.7-64 64V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-70.7 57.3-128 128-128h16V24zM56 432a24 24 0 1 0 48 0 24 24 0 1 0 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-fork": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fork", + "git", + "github", + "svn", + "version" + ] + }, + "unicode": "e13b", + "label": "Code Fork", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM248 432a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-merge": { + "aliases": { + "unicodes": { + "secondary": [ + "10f387" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "git", + "github", + "merge", + "pr", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "unicode": "f387", + "label": "Code Merge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm32.4 97.2c28-12.4 47.6-40.5 47.6-73.2c0-44.2-35.8-80-80-80S0 35.8 0 80c0 32.8 19.7 61 48 73.3V358.7C19.7 371 0 399.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V272c26.7 20.1 60 32 96 32h86.7c12.3 28.3 40.5 48 73.3 48c44.2 0 80-35.8 80-80s-35.8-80-80-80c-32.8 0-61 19.7-73.3 48H208c-49.9 0-91-38.1-95.6-86.8zM80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM344 272a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-pull-request": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "git", + "github", + "pr", + "svn", + "version" + ] + }, + "unicode": "e13c", + "label": "Code Pull Request", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M305.8 2.1C314.4 5.9 320 14.5 320 24V64h16c70.7 0 128 57.3 128 128V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-35.3-28.7-64-64-64H320v40c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1zM104 80A24 24 0 1 0 56 80a24 24 0 1 0 48 0zm8 73.3V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80c0 32.8-19.7 61-48 73.3zM104 432a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm328 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "codepen": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1cb", + "label": "Codepen", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "codiepie": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f284", + "label": "Codie Pie", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "coins": { + "aliases": { + "unicodes": { + "secondary": [ + "10f51e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "dime", + "financial", + "gold", + "money", + "penny" + ] + }, + "unicode": "f51e", + "label": "Coins", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 80c0 18-14.3 34.6-38.4 48c-29.1 16.1-72.5 27.5-122.3 30.9c-3.7-1.8-7.4-3.5-11.3-5C300.6 137.4 248.2 128 192 128c-8.3 0-16.4 .2-24.5 .6l-1.1-.6C142.3 114.6 128 98 128 80c0-44.2 86-80 192-80S512 35.8 512 80zM160.7 161.1c10.2-.7 20.7-1.1 31.3-1.1c62.2 0 117.4 12.3 152.5 31.4C369.3 204.9 384 221.7 384 240c0 4-.7 7.9-2.1 11.7c-4.6 13.2-17 25.3-35 35.5c0 0 0 0 0 0c-.1 .1-.3 .1-.4 .2l0 0 0 0c-.3 .2-.6 .3-.9 .5c-35 19.4-90.8 32-153.6 32c-59.6 0-112.9-11.3-148.2-29.1c-1.9-.9-3.7-1.9-5.5-2.9C14.3 274.6 0 258 0 240c0-34.8 53.4-64.5 128-75.4c10.5-1.5 21.4-2.7 32.7-3.5zM416 240c0-21.9-10.6-39.9-24.1-53.4c28.3-4.4 54.2-11.4 76.2-20.5c16.3-6.8 31.5-15.2 43.9-25.5V176c0 19.3-16.5 37.1-43.8 50.9c-14.6 7.4-32.4 13.7-52.4 18.5c.1-1.8 .2-3.5 .2-5.3zm-32 96c0 18-14.3 34.6-38.4 48c-1.8 1-3.6 1.9-5.5 2.9C304.9 404.7 251.6 416 192 416c-62.8 0-118.6-12.6-153.6-32C14.3 370.6 0 354 0 336V300.6c12.5 10.3 27.6 18.7 43.9 25.5C83.4 342.6 135.8 352 192 352s108.6-9.4 148.1-25.9c7.8-3.2 15.3-6.9 22.4-10.9c6.1-3.4 11.8-7.2 17.2-11.2c1.5-1.1 2.9-2.3 4.3-3.4V304v5.7V336zm32 0V304 278.1c19-4.2 36.5-9.5 52.1-16c16.3-6.8 31.5-15.2 43.9-25.5V272c0 10.5-5 21-14.9 30.9c-16.3 16.3-45 29.7-81.3 38.4c.1-1.7 .2-3.5 .2-5.3zM192 448c56.2 0 108.6-9.4 148.1-25.9c16.3-6.8 31.5-15.2 43.9-25.5V432c0 44.2-86 80-192 80S0 476.2 0 432V396.6c12.5 10.3 27.6 18.7 43.9 25.5C83.4 438.6 135.8 448 192 448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "colon-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Colon Sign", + "currency" + ] + }, + "unicode": "e140", + "label": "Colon Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M255 39.8c4.3-17.1-6.1-34.5-23.3-38.8S197.2 7.1 193 24.2L181.9 68.6C96.1 87.8 32 164.4 32 256c0 58.1 25.8 110.2 66.7 145.4L81 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l13-52.1c9 3.4 18.4 6.2 28 8.2L177 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l10.4-41.4c33.4-4.4 64.1-17.4 89.8-36.7c14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-10.2 7.7-21.7 13.9-34 18.3L321 160c9.4-.3 18.5-4.7 24.6-12.8c10.6-14.1 7.8-34.2-6.4-44.8c-1.1-.8-2.2-1.6-3.3-2.4L351 39.8c4.3-17.1-6.1-34.5-23.3-38.8S293.2 7.1 289 24.2L277.2 71.5c-9.3-2.7-18.8-4.6-28.6-5.9L255 39.8zM163.2 143.3L117.3 326.8C103.9 306.5 96 282.2 96 256c0-48.7 27.2-91 67.2-112.7zm8.6 229.5l61.1-244.6c9.9 .7 19.5 2.5 28.7 5.3l-62 248.1c-9.7-1.9-19-4.8-27.8-8.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment": { + "aliases": { + "unicodes": { + "composite": [ + "1f5e9", + "f0e5" + ], + "secondary": [ + "10f075" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Speech Bubble", + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f075", + "label": "Comment", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4l0 0 0 0 0 0 0 0 .3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z" + }, + "regular": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M123.6 391.3c12.9-9.4 29.6-11.8 44.6-6.4c26.5 9.6 56.2 15.1 87.8 15.1c124.7 0 208-80.5 208-160s-83.3-160-208-160S48 160.5 48 240c0 32 12.4 62.8 35.7 89.2c8.6 9.7 12.8 22.5 11.8 35.5c-1.4 18.1-5.7 34.7-11.3 49.4c17-7.9 31.1-16.7 39.4-22.7zM21.2 431.9c1.8-2.7 3.5-5.4 5.1-8.1c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208s-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6c-15.1 6.6-32.3 12.6-50.1 16.1c-.8 .2-1.6 .3-2.4 .5c-4.4 .8-8.7 1.5-13.2 1.9c-.2 0-.5 .1-.7 .1c-5.1 .5-10.2 .8-15.3 .8c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c4.1-4.2 7.8-8.7 11.3-13.5c1.7-2.3 3.3-4.6 4.8-6.9c.1-.2 .2-.3 .3-.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "comment-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f651" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "money", + "note", + "notification", + "pay", + "sms", + "speech", + "spend", + "texting", + "transfer" + ] + }, + "unicode": "f651", + "label": "Comment Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zm20-312v13.9c7.5 1.2 14.6 2.9 21.1 4.7c10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2c-7.9-.1-16 1.8-21.5 5c-4.8 2.8-6.2 5.6-6.2 9.3c0 1.8 .1 3.5 5.3 6.7c6.3 3.8 15.5 6.7 28.3 10.5l.7 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.6 41.6c.3 20.9-10.5 36.1-24.8 45c-7.2 4.5-15.2 7.3-23.2 9V344c0 11-9 20-20 20s-20-9-20-20V329.4c-10.3-2.2-20-5.5-28.2-8.4l0 0 0 0c-2.1-.7-4.1-1.4-6.1-2.1c-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5 .8 4.9 1.7 7.2 2.4c13.6 4.6 24 8.1 35.1 8.5c8.6 .3 16.5-1.6 21.4-4.7c4.1-2.5 6-5.5 5.9-10.5c0-2.9-.8-5-5.9-8.2c-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14c-12.7-7.7-24.6-20.5-24.7-40.7c-.1-21.1 11.8-35.7 25.8-43.9c6.9-4.1 14.5-6.8 22.2-8.5V136c0-11 9-20 20-20s20 9 20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment-dots": { + "aliases": { + "names": [ + "commenting" + ], + "unicodes": { + "composite": [ + "1f4ac", + "f27b" + ], + "secondary": [ + "10f4ad" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "balloon", + "bubble", + "chat", + "comic", + "commenting", + "conversation", + "dialog", + "feedback", + "message", + "more", + "note", + "notification", + "reply", + "sms", + "speech", + "speech balloon", + "texting" + ] + }, + "unicode": "f4ad", + "label": "Comment Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM128 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168.2 384.9c-15-5.4-31.7-3.1-44.6 6.4c-8.2 6-22.3 14.8-39.4 22.7c5.6-14.7 9.9-31.3 11.3-49.4c1-12.9-3.3-25.7-11.8-35.5C60.4 302.8 48 272 48 240c0-79.5 83.3-160 208-160s208 80.5 208 160s-83.3 160-208 160c-31.6 0-61.3-5.5-87.8-15.1zM26.3 423.8c-1.6 2.7-3.3 5.4-5.1 8.1l-.3 .5c-1.6 2.3-3.2 4.6-4.8 6.9c-3.5 4.7-7.3 9.3-11.3 13.5c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c5.1 0 10.2-.3 15.3-.8l.7-.1c4.4-.5 8.8-1.1 13.2-1.9c.8-.1 1.6-.3 2.4-.5c17.8-3.5 34.9-9.5 50.1-16.1c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9zM144 272a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm144-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm80 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "comment-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f5" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "advice", + "bubble", + "chat", + "commenting", + "conversation", + "diagnose", + "feedback", + "message", + "note", + "notification", + "prescription", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f7f5", + "label": "Comment Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM224 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V272H176c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h48V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4b3" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "cancel", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "mute", + "note", + "notification", + "quiet", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f4b3", + "label": "Comment Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L512.9 376.7C552.2 340.2 576 292.3 576 240C576 125.1 461.4 32 320 32c-67.7 0-129.3 21.4-175.1 56.3L38.8 5.1zM64 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9c37 0 72.3-6.4 104-17.9L82.9 161.3C70.7 185.6 64 212.2 64 240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment-sms": { + "aliases": { + "names": [ + "sms" + ], + "unicodes": { + "secondary": [ + "10f7cd" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chat", + "conversation", + "message", + "mobile", + "notification", + "phone", + "sms", + "texting" + ] + }, + "unicode": "f7cd", + "label": "Comment Sms", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM202.9 176.8c6.5-2.2 13.7 .1 17.9 5.6L256 229.3l35.2-46.9c4.1-5.5 11.3-7.8 17.9-5.6s10.9 8.3 10.9 15.2v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V240l-19.2 25.6c-3 4-7.8 6.4-12.8 6.4s-9.8-2.4-12.8-6.4L224 240v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-6.9 4.4-13 10.9-15.2zm173.1 38c0 .2 0 .4 0 .4c.1 .1 .6 .8 2.2 1.7c3.9 2.3 9.6 4.1 18.3 6.8l.6 .2c7.4 2.2 17.3 5.2 25.2 10.2c9.1 5.7 17.4 15.2 17.6 29.9c.2 15-7.6 26-17.8 32.3c-9.5 5.9-20.9 7.9-30.7 7.6c-12.2-.4-23.7-4.4-32.6-7.4l0 0 0 0c-1.4-.5-2.7-.9-4-1.4c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c1.7 .6 3.3 1.1 4.9 1.6l0 0 0 0c9.1 3.1 15.6 5.3 22.6 5.5c5.3 .2 10-1 12.8-2.8c1.2-.8 1.8-1.5 2.1-2c.2-.4 .6-1.2 .6-2.7l0-.2c0-.7 0-1.4-2.7-3.1c-3.8-2.4-9.6-4.3-18-6.9l-1.2-.4c-7.2-2.2-16.7-5-24.3-9.6c-9-5.4-17.7-14.7-17.7-29.4c-.1-15.2 8.6-25.7 18.5-31.6c9.4-5.5 20.5-7.5 29.7-7.4c10 .2 19.7 2.3 27.9 4.4c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-7.3-1.9-14.1-3.3-20.1-3.4c-4.9-.1-9.8 1.1-12.9 2.9c-1.4 .8-2.1 1.6-2.4 2c-.2 .3-.4 .8-.4 1.9zm-272 0c0 .2 0 .4 0 .4c.1 .1 .6 .8 2.2 1.7c3.9 2.3 9.6 4.1 18.3 6.8l.6 .2c7.4 2.2 17.3 5.2 25.2 10.2c9.1 5.7 17.4 15.2 17.6 29.9c.2 15-7.6 26-17.8 32.3c-9.5 5.9-20.9 7.9-30.7 7.6c-12.3-.4-24.2-4.5-33.2-7.6l0 0 0 0c-1.3-.4-2.5-.8-3.6-1.2c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c1.4 .5 2.8 .9 4.1 1.4l0 0 0 0c9.5 3.2 16.5 5.6 23.7 5.8c5.3 .2 10-1 12.8-2.8c1.2-.8 1.8-1.5 2.1-2c.2-.4 .6-1.2 .6-2.7l0-.2c0-.7 0-1.4-2.7-3.1c-3.8-2.4-9.6-4.3-18-6.9l-1.2-.4 0 0c-7.2-2.2-16.7-5-24.3-9.6C80.8 239 72.1 229.7 72 215c-.1-15.2 8.6-25.7 18.5-31.6c9.4-5.5 20.5-7.5 29.7-7.4c9.5 .1 22.2 2.1 31.1 4.4c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-6.6-1.8-16.8-3.3-23.3-3.4c-4.9-.1-9.8 1.1-12.9 2.9c-1.4 .8-2.1 1.6-2.4 2c-.2 .3-.4 .8-.4 1.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comments": { + "aliases": { + "unicodes": { + "composite": [ + "1f5ea", + "f0e6" + ], + "secondary": [ + "10f086" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Two Speech Bubbles", + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f086", + "label": "Comments", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4c-3.5 9.4-8.7 17.7-14.2 24.7c-4.8 6.2-9.7 11-13.3 14.3c-1.8 1.6-3.3 2.9-4.3 3.7c-.5 .4-.9 .7-1.1 .8l-.2 .2 0 0 0 0C1 327.2-1.4 334.4 .8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5c9.2-3.5 17.8-7.4 25.3-11.4C134.1 343.3 169.8 352 208 352zM448 176c0 112.3-99.1 196.9-216.5 207C255.8 457.4 336.4 512 432 512c38.2 0 73.9-8.7 104.7-23.9c7.5 4 16 7.9 25.2 11.4c18.3 6.9 40.3 12.5 62.1 12.5c6.9 0 13.1-4.5 15.2-11.1c2.1-6.6-.2-13.8-5.8-17.9l0 0 0 0-.2-.2c-.2-.2-.6-.4-1.1-.8c-1-.8-2.5-2-4.3-3.7c-3.6-3.3-8.5-8.1-13.3-14.3c-5.5-7-10.7-15.4-14.2-24.7c24.9-29 39.6-64.7 39.6-103.4c0-92.8-84.9-168.9-192.6-175.5c.4 5.1 .6 10.3 .6 15.5z" + }, + "regular": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M88.2 309.1c9.8-18.3 6.8-40.8-7.5-55.8C59.4 230.9 48 204 48 176c0-63.5 63.8-128 160-128s160 64.5 160 128s-63.8 128-160 128c-13.1 0-25.8-1.3-37.8-3.6c-10.4-2-21.2-.6-30.7 4.2c-4.1 2.1-8.3 4.1-12.6 6c-16 7.2-32.9 13.5-49.9 18c2.8-4.6 5.4-9.1 7.9-13.6c1.1-1.9 2.2-3.9 3.2-5.9zM0 176c0 41.8 17.2 80.1 45.9 110.3c-.9 1.7-1.9 3.5-2.8 5.1c-10.3 18.4-22.3 36.5-36.6 52.1c-6.6 7-8.3 17.2-4.6 25.9C5.8 378.3 14.4 384 24 384c43 0 86.5-13.3 122.7-29.7c4.8-2.2 9.6-4.5 14.2-6.8c15.1 3 30.9 4.5 47.1 4.5c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176zM432 480c16.2 0 31.9-1.6 47.1-4.5c4.6 2.3 9.4 4.6 14.2 6.8C529.5 498.7 573 512 616 512c9.6 0 18.2-5.7 22-14.5c3.8-8.8 2-19-4.6-25.9c-14.2-15.6-26.2-33.7-36.6-52.1c-.9-1.7-1.9-3.4-2.8-5.1C622.8 384.1 640 345.8 640 304c0-94.4-87.9-171.5-198.2-175.8c4.1 15.2 6.2 31.2 6.2 47.8l0 .6c87.2 6.7 144 67.5 144 127.4c0 28-11.4 54.9-32.7 77.2c-14.3 15-17.3 37.6-7.5 55.8c1.1 2 2.2 4 3.2 5.9c2.5 4.5 5.2 9 7.9 13.6c-17-4.5-33.9-10.7-49.9-18c-4.3-1.9-8.5-3.9-12.6-6c-9.5-4.8-20.3-6.2-30.7-4.2c-12.1 2.4-24.7 3.6-37.8 3.6c-61.7 0-110-26.5-136.8-62.3c-16 5.4-32.8 9.4-50 11.8C279 439.8 350 480 432 480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "comments-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f653" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "money", + "note", + "notification", + "pay", + "sms", + "speech", + "spend", + "texting", + "transfer" + ] + }, + "unicode": "f653", + "label": "Comments Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M416 176c0 97.2-93.1 176-208 176c-38.2 0-73.9-8.7-104.7-23.9c-7.5 4-16 7.9-25.2 11.4C59.8 346.4 37.8 352 16 352c-6.9 0-13.1-4.5-15.2-11.1s.2-13.8 5.8-17.9l0 0 0 0 .2-.2c.2-.2 .6-.4 1.1-.8c1-.8 2.5-2 4.3-3.7c3.6-3.3 8.5-8.1 13.3-14.3c5.5-7 10.7-15.4 14.2-24.7C14.7 250.3 0 214.6 0 176C0 78.8 93.1 0 208 0S416 78.8 416 176zM231.5 383C348.9 372.9 448 288.3 448 176c0-5.2-.2-10.4-.6-15.5C555.1 167.1 640 243.2 640 336c0 38.6-14.7 74.3-39.6 103.4c3.5 9.4 8.7 17.7 14.2 24.7c4.8 6.2 9.7 11 13.3 14.3c1.8 1.6 3.3 2.9 4.3 3.7c.5 .4 .9 .7 1.1 .8l.2 .2 0 0 0 0c5.6 4.1 7.9 11.3 5.8 17.9c-2.1 6.6-8.3 11.1-15.2 11.1c-21.8 0-43.8-5.6-62.1-12.5c-9.2-3.5-17.8-7.4-25.2-11.4C505.9 503.3 470.2 512 432 512c-95.6 0-176.2-54.6-200.5-129zM228 72c0-11-9-20-20-20s-20 9-20 20V86c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V280c0 11 9 20 20 20s20-9 20-20V266.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "compact-disc": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bf", + "1f4c0", + "1f5b8" + ], + "secondary": [ + "10f51f" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Optical Disc Icon", + "album", + "blu-ray", + "bluray", + "cd", + "computer", + "disc", + "disk", + "dvd", + "media", + "movie", + "music", + "optical", + "optical disk", + "record", + "video", + "vinyl" + ] + }, + "unicode": "f51f", + "label": "Compact Disc", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 32a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm-96-32a96 96 0 1 0 192 0 96 96 0 1 0 -192 0zM96 240c0-35 17.5-71.1 45.2-98.8S205 96 240 96c8.8 0 16-7.2 16-16s-7.2-16-16-16c-45.4 0-89.2 22.3-121.5 54.5S64 194.6 64 240c0 8.8 7.2 16 16 16s16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "compass": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ed" + ], + "secondary": [ + "10f14e" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.2.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "compass", + "directions", + "directory", + "location", + "magnetic", + "menu", + "navigation", + "orienteering", + "safari", + "travel" + ] + }, + "unicode": "f14e", + "label": "Compass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm50.7-186.9L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + }, + "regular": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm306.7 69.1L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "compass-drafting": { + "aliases": { + "names": [ + "drafting-compass" + ], + "unicodes": { + "secondary": [ + "10f568" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "map", + "mechanical drawing", + "plot", + "plotting" + ] + }, + "unicode": "f568", + "label": "Compass Drafting", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 96c0 14.3-3.1 27.9-8.8 40.2L396 227.4c-23.7 25.3-54.2 44.1-88.5 53.6L256 192h0 0l-68 117.5c21.5 6.8 44.3 10.5 68.1 10.5c70.7 0 133.8-32.7 174.9-84c11.1-13.8 31.2-16 45-5s16 31.2 5 45C428.1 341.8 347 384 256 384c-35.4 0-69.4-6.4-100.7-18.1L98.7 463.7C94 471.8 87 478.4 78.6 482.6L23.2 510.3c-5 2.5-10.9 2.2-15.6-.7S0 501.5 0 496V440.6c0-8.4 2.2-16.7 6.5-24.1l60-103.7C53.7 301.6 41.8 289.3 31.2 276c-11.1-13.8-8.8-33.9 5-45s33.9-8.8 45 5c5.7 7.1 11.8 13.8 18.2 20.1l69.4-119.9c-5.6-12.2-8.8-25.8-8.8-40.2c0-53 43-96 96-96s96 43 96 96zm21 297.9c32.6-12.8 62.5-30.8 88.9-52.9l43.7 75.5c4.2 7.3 6.5 15.6 6.5 24.1V496c0 5.5-2.9 10.7-7.6 13.6s-10.6 3.2-15.6 .7l-55.4-27.7c-8.4-4.2-15.4-10.8-20.1-18.9L373 393.9zM256 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "compress": { + "aliases": { + "unicodes": { + "secondary": [ + "10f066" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "unicode": "f066", + "label": "Compress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V64zM32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zM352 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V64zM320 320c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "computer": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "desktop", + "display", + "monitor", + "tower" + ] + }, + "unicode": "e4e5", + "label": "Computer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 96V320H64L64 96H384zM64 32C28.7 32 0 60.7 0 96V320c0 35.3 28.7 64 64 64H181.3l-10.7 32H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H277.3l-10.7-32H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm464 0c-26.5 0-48 21.5-48 48V432c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H528zm16 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H544c-8.8 0-16-7.2-16-16s7.2-16 16-16zm-16 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H544c-8.8 0-16-7.2-16-16zm32 160a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "computer-mouse": { + "aliases": { + "names": [ + "mouse" + ], + "unicodes": { + "composite": [ + "1f5b1" + ], + "secondary": [ + "10f8cc" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "click", + "computer", + "computer mouse", + "cursor", + "input", + "peripheral" + ] + }, + "unicode": "f8cc", + "label": "Computer Mouse", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 192H176V0H160C71.6 0 0 71.6 0 160v32zm0 32V352c0 88.4 71.6 160 160 160h64c88.4 0 160-71.6 160-160V224H192 0zm384-32V160C384 71.6 312.4 0 224 0H208V192H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "confluence": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "unicode": "f78d", + "label": "Confluence", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M2.3 412.2c-4.5 7.6-2.1 17.5 5.5 22.2l105.9 65.2c7.7 4.7 17.7 2.4 22.4-5.3 0-.1.1-.2.1-.2 67.1-112.2 80.5-95.9 280.9-.7 8.1 3.9 17.8.4 21.7-7.7.1-.1.1-.3.2-.4l50.4-114.1c3.6-8.1-.1-17.6-8.1-21.3-22.2-10.4-66.2-31.2-105.9-50.3C127.5 179 44.6 345.3 2.3 412.2zm507.4-312.1c4.5-7.6 2.1-17.5-5.5-22.2L398.4 12.8c-7.5-5-17.6-3.1-22.6 4.4-.2.3-.4.6-.6 1-67.3 112.6-81.1 95.6-280.6.9-8.1-3.9-17.8-.4-21.7 7.7-.1.1-.1.3-.2.4L22.2 141.3c-3.6 8.1.1 17.6 8.1 21.3 22.2 10.4 66.3 31.2 106 50.4 248 120 330.8-45.4 373.4-112.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "connectdevelop": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f20e", + "label": "Connect Develop", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "contao": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f26d", + "label": "Contao", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cookie": { + "aliases": { + "unicodes": { + "composite": [ + "1f36a" + ], + "secondary": [ + "10f563" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "chips", + "chocolate", + "cookie", + "dessert", + "eat", + "snack", + "sweet", + "treat" + ] + }, + "unicode": "f563", + "label": "Cookie", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M247.2 17c-22.1-3.1-44.6 .9-64.4 11.4l-74 39.5C89.1 78.4 73.2 94.9 63.4 115L26.7 190.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9l-14.6-82.8c-3.9-22.1-14.6-42.3-30.7-57.9L388.9 57.5c-16.1-15.6-36.6-25.6-58.7-28.7L247.2 17zM208 144a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM144 336a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm224-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cookie-bite": { + "aliases": { + "unicodes": { + "secondary": [ + "10f564" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "bitten", + "chips", + "chocolate", + "eat", + "snack", + "sweet", + "treat" + ] + }, + "unicode": "f564", + "label": "Cookie Bite", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M257.5 27.6c-.8-5.4-4.9-9.8-10.3-10.6c-22.1-3.1-44.6 .9-64.4 11.4l-74 39.5C89.1 78.4 73.2 94.9 63.4 115L26.7 190.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9c-.9-5.3-5.3-9.3-10.6-10.1c-51.5-8.2-92.8-47.1-104.5-97.4c-1.8-7.6-8-13.4-15.7-14.6c-54.6-8.7-97.7-52-106.2-106.8zM208 144a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM144 336a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm224-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "copy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c5" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "clone", + "duplicate", + "file", + "files-o", + "paper", + "paste" + ] + }, + "unicode": "f0c5", + "label": "Copy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M208 0H332.1c12.7 0 24.9 5.1 33.9 14.1l67.9 67.9c9 9 14.1 21.2 14.1 33.9V336c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V48c0-26.5 21.5-48 48-48zM48 128h80v64H64V448H256V416h64v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48z" + }, + "regular": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 336H192c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16l140.1 0L400 115.9V320c0 8.8-7.2 16-16 16zM192 384H384c35.3 0 64-28.7 64-64V115.9c0-12.7-5.1-24.9-14.1-33.9L366.1 14.1c-9-9-21.2-14.1-33.9-14.1H192c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H256c35.3 0 64-28.7 64-64V416H272v32c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H96V128H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "copyright": { + "aliases": { + "unicodes": { + "composite": [ + "a9" + ], + "secondary": [ + "10f1f9" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brand", + "c", + "copyright", + "mark", + "register", + "trademark" + ] + }, + "unicode": "f1f9", + "label": "Copyright", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM199.4 312.6c31.2 31.2 81.9 31.2 113.1 0c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-50 50-131 50-181 0s-50-131 0-181s131-50 181 0c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-31.2-31.2-81.9-31.2-113.1 0s-31.2 81.9 0 113.1z" + }, + "regular": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM199.4 312.6c-31.2-31.2-31.2-81.9 0-113.1s81.9-31.2 113.1 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9c-50-50-131-50-181 0s-50 131 0 181s131 50 181 0c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0c-31.2 31.2-81.9 31.2-113.1 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "cotton-bureau": { + "changes": [ + "5.10.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "t-shirts", + "tshirts" + ] + }, + "unicode": "f89e", + "label": "Cotton Bureau", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M474.31 330.41c-23.66 91.85-94.23 144.59-201.9 148.35V429.6c0-48 26.41-74.39 74.39-74.39 62 0 99.2-37.2 99.2-99.21 0-61.37-36.53-98.28-97.38-99.06-33-69.32-146.5-64.65-177.24 0C110.52 157.72 74 194.63 74 256c0 62.13 37.27 99.41 99.4 99.41 48 0 74.55 26.23 74.55 74.39V479c-134.43-5-211.1-85.07-211.1-223 0-141.82 81.35-223.2 223.2-223.2 114.77 0 189.84 53.2 214.69 148.81H500C473.88 71.51 388.22 8 259.82 8 105 8 12 101.19 12 255.82 12 411.14 105.19 504.34 259.82 504c128.27 0 213.87-63.81 239.67-173.59zM357 182.33c41.37 3.45 64.2 29 64.2 73.67 0 48-26.43 74.41-74.4 74.41-28.61 0-49.33-9.59-61.59-27.33 83.06-16.55 75.59-99.67 71.79-120.75zm-81.68 97.36c-2.46-10.34-16.33-87 56.23-97 2.27 10.09 16.52 87.11-56.26 97zM260 132c28.61 0 49 9.67 61.44 27.61-28.36 5.48-49.36 20.59-61.59 43.45-12.23-22.86-33.23-38-61.6-43.45 12.41-17.69 33.27-27.35 61.57-27.35zm-71.52 50.72c73.17 10.57 58.91 86.81 56.49 97-72.41-9.84-59-86.95-56.25-97zM173.2 330.41c-48 0-74.4-26.4-74.4-74.41 0-44.36 22.86-70 64.22-73.67-6.75 37.2-1.38 106.53 71.65 120.75-12.14 17.63-32.84 27.3-61.14 27.3zm53.21 12.39A80.8 80.8 0 0 0 260 309.25c7.77 14.49 19.33 25.54 33.82 33.55a80.28 80.28 0 0 0-33.58 33.83c-8-14.5-19.07-26.23-33.56-33.83z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "couch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4b8" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chair", + "cushion", + "furniture", + "relax", + "sofa" + ] + }, + "unicode": "f4b8", + "label": "Couch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 160C64 89.3 121.3 32 192 32H448c70.7 0 128 57.3 128 128v33.6c-36.5 7.4-64 39.7-64 78.4v48H128V272c0-38.7-27.5-71-64-78.4V160zM544 272c0-20.9 13.4-38.7 32-45.3c5-1.8 10.4-2.7 16-2.7c26.5 0 48 21.5 48 48V448c0 17.7-14.3 32-32 32H576c-17.7 0-32-14.3-32-32H96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V272c0-26.5 21.5-48 48-48c5.6 0 11 1 16 2.7c18.6 6.6 32 24.4 32 45.3v48 32h32H512h32V320 272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cow": { + "aliases": { + "unicodes": { + "composite": [ + "1f404" + ], + "secondary": [ + "10f6c8" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "animal", + "beef", + "bovine", + "co", + "cow", + "farm", + "fauna", + "livestock", + "mammal", + "milk", + "moo" + ] + }, + "unicode": "f6c8", + "label": "Cow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 224v32V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V327.8c9.9 6.6 20.6 12 32 16.1V368c0 8.8 7.2 16 16 16s16-7.2 16-16V351.1c5.3 .6 10.6 .9 16 .9s10.7-.3 16-.9V368c0 8.8 7.2 16 16 16s16-7.2 16-16V343.8c11.4-4 22.1-9.4 32-16.1V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V256l32 32v49.5c0 9.5 2.8 18.7 8.1 26.6L530 427c8.8 13.1 23.5 21 39.3 21c22.5 0 41.9-15.9 46.3-38l20.3-101.6c2.6-13-.3-26.5-8-37.3l-3.9-5.5V184c0-13.3-10.7-24-24-24s-24 10.7-24 24v14.4l-52.9-74.1C496 86.5 452.4 64 405.9 64H272 256 192 144C77.7 64 24 117.7 24 184v54C9.4 249.8 0 267.8 0 288v17.6c0 8 6.4 14.4 14.4 14.4C46.2 320 72 294.2 72 262.4V256 224 184c0-24.3 12.1-45.8 30.5-58.9C98.3 135.9 96 147.7 96 160v64zM560 336a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM166.6 166.6c-4.2-4.2-6.6-10-6.6-16c0-12.5 10.1-22.6 22.6-22.6H361.4c12.5 0 22.6 10.1 22.6 22.6c0 6-2.4 11.8-6.6 16l-23.4 23.4C332.2 211.8 302.7 224 272 224s-60.2-12.2-81.9-33.9l-23.4-23.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cpanel": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f388", + "label": "cPanel", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M210.3 220.2c-5.6-24.8-26.9-41.2-51-41.2h-37c-7.1 0-12.5 4.5-14.3 10.9L73.1 320l24.7-.1c6.8 0 12.3-4.5 14.2-10.7l25.8-95.7h19.8c8.4 0 16.2 5.6 18.3 14.8 2.5 10.9-5.9 22.6-18.3 22.6h-10.3c-7 0-12.5 4.6-14.3 10.8l-6.4 23.8h32c37.2 0 58.3-36.2 51.7-65.3zm-156.5 28h18.6c6.9 0 12.4-4.4 14.3-10.9l6.2-23.6h-40C30 213.7 9 227.8 1.7 254.8-7 288.6 18.5 320 52 320h12.4l7.1-26.1c1.2-4.4-2.2-8.3-6.4-8.3H53.8c-24.7 0-24.9-37.4 0-37.4zm247.5-34.8h-77.9l-3.5 13.4c-2.4 9.6 4.5 18.5 14.2 18.5h57.5c4 0 2.4 4.3 2.1 5.3l-8.6 31.8c-.4 1.4-.9 5.3-5.5 5.3h-34.9c-5.3 0-5.3-7.9 0-7.9h21.6c6.8 0 12.3-4.6 14.2-10.8l3.5-13.2h-48.4c-39.2 0-43.6 63.8-.7 63.8l57.5.2c11.2 0 20.6-7.2 23.4-17.8l14-51.8c4.8-19.2-9.7-36.8-28.5-36.8zM633.1 179h-18.9c-4.9 0-9.2 3.2-10.4 7.9L568.2 320c20.7 0 39.8-13.8 44.9-34.5l26.5-98.2c1.2-4.3-2-8.3-6.5-8.3zm-236.3 34.7v.1h-48.3l-26.2 98c-1.2 4.4 2.2 8.3 6.4 8.3h18.9c4.8 0 9.2-3 10.4-7.8l17.2-64H395c12.5 0 21.4 11.8 18.1 23.4l-10.6 40c-1.2 4.3 1.9 8.3 6.4 8.3H428c4.6 0 9.1-2.9 10.3-7.8l8.8-33.1c9-33.1-15.9-65.4-50.3-65.4zm98.3 74.6c-3.6 0-6-3.4-5.1-6.7l8-30c.9-3.9 3.7-6 7.8-6h32.9c2.6 0 4.6 2.4 3.9 5.1l-.7 2.6c-.6 2-1.9 3-3.9 3h-21.6c-7 0-12.6 4.6-14.2 10.8l-3.5 13h53.4c10.5 0 20.3-6.6 23.2-17.6l3.2-12c4.9-19.1-9.3-36.8-28.3-36.8h-47.3c-17.9 0-33.8 12-38.6 29.6l-10.8 40c-5 17.7 8.3 36.7 28.3 36.7h66.7c6.8 0 12.3-4.5 14.2-10.7l5.7-21z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.11", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f25e", + "label": "Creative Commons", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-by": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e7", + "label": "Creative Commons Attribution", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nc": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e8", + "label": "Creative Commons Noncommercial", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nc-eu": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e9", + "label": "Creative Commons Noncommercial (Euro Sign)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nc-jp": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ea", + "label": "Creative Commons Noncommercial (Yen Sign)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4eb", + "label": "Creative Commons No Derivative Works", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-pd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ec", + "label": "Creative Commons Public Domain", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-pd-alt": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ed", + "label": "Alternate Creative Commons Public Domain", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C104.7 8 0 123.1 0 256c0 138.5 113.6 248 247.6 248C377.5 504 496 403.1 496 256 496 118.1 389.4 8 247.6 8zm.8 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.4 85.5-203.3 203.7-203.3 112.6 0 202.9 89.5 202.8 203.3 0 121.7-99.6 202.8-202.8 202.8zM316.7 186h-53.2v137.2h53.2c21.4 0 70-5.1 70-68.6 0-63.4-48.6-68.6-70-68.6zm.8 108.5h-19.9v-79.7l19.4-.1c3.8 0 35-2.1 35 39.9 0 24.6-10.5 39.9-34.5 39.9zM203.7 186h-68.2v137.3h34.6V279h27c54.1 0 57.1-37.5 57.1-46.5 0-31-16.8-46.5-50.5-46.5zm-4.9 67.3h-29.2v-41.6h28.3c30.9 0 28.8 41.6.9 41.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-remix": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ee", + "label": "Creative Commons Remix", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-sa": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ef", + "label": "Creative Commons Share Alike", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-sampling": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f0", + "label": "Creative Commons Sampling", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-sampling-plus": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f1", + "label": "Creative Commons Sampling +", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-share": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f2", + "label": "Creative Commons Share", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-zero": { + "changes": [ + "5.0.11", + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f3", + "label": "Creative Commons CC0", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm-.4 60.5c-81.9 0-102.5 77.3-102.5 142.8 0 65.5 20.6 142.8 102.5 142.8S350.5 321.5 350.5 256c0-65.5-20.6-142.8-102.5-142.8zm0 53.9c3.3 0 6.4.5 9.2 1.2 5.9 5.1 8.8 12.1 3.1 21.9l-54.5 100.2c-1.7-12.7-1.9-25.1-1.9-34.4 0-28.8 2-88.9 44.1-88.9zm40.8 46.2c2.9 15.4 3.3 31.4 3.3 42.7 0 28.9-2 88.9-44.1 88.9-13.5 0-32.6-7.7-20.1-26.4l60.9-105.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "credit-card": { + "aliases": { + "names": [ + "credit-card-alt" + ], + "unicodes": { + "composite": [ + "1f4b3", + "f283" + ], + "secondary": [ + "10f09d" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "card", + "checkout", + "credit", + "credit card", + "credit-card-alt", + "debit", + "money", + "payment", + "purchase" + ] + }, + "unicode": "f09d", + "label": "Credit Card", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96v32H576V96c0-35.3-28.7-64-64-64H64zM576 224H0V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V224zM112 352h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm112 16c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z" + }, + "regular": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16v32H48V96c0-8.8 7.2-16 16-16H512zm16 144V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V224H528zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm56 304c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H120zm128 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24H248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "critical-role": { + "changes": [ + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "unicode": "f6c9", + "label": "Critical Role", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M225.82 0c.26.15 216.57 124.51 217.12 124.72 3 1.18 3.7 3.46 3.7 6.56q-.11 125.17 0 250.36a5.88 5.88 0 0 1-3.38 5.78c-21.37 12-207.86 118.29-218.93 124.58h-3C142 466.34 3.08 386.56 2.93 386.48a3.29 3.29 0 0 1-1.88-3.24c0-.87 0-225.94-.05-253.1a5 5 0 0 1 2.93-4.93C27.19 112.11 213.2 6 224.07 0zM215.4 20.42l-.22-.16Q118.06 75.55 21 130.87c0 .12.08.23.13.35l30.86 11.64c-7.71 6-8.32 6-10.65 5.13-.1 0-24.17-9.28-26.8-10v230.43c.88-1.41 64.07-110.91 64.13-111 1.62-2.82 3-1.92 9.12-1.52 1.4.09 1.48.22.78 1.42-41.19 71.33-36.4 63-67.48 116.94-.81 1.4-.61 1.13 1.25 1.13h186.5c1.44 0 1.69-.23 1.7-1.64v-8.88c0-1.34 2.36-.81-18.37-1-7.46-.07-14.14-3.22-21.38-12.7-7.38-9.66-14.62-19.43-21.85-29.21-2.28-3.08-3.45-2.38-16.76-2.38-1.75 0-1.78 0-1.76 1.82.29 26.21.15 25.27 1 32.66.52 4.37 2.16 4.2 9.69 4.81 3.14.26 3.88 4.08.52 4.92-1.57.39-31.6.51-33.67-.1a2.42 2.42 0 0 1 .3-4.73c3.29-.76 6.16.81 6.66-4.44 1.3-13.66 1.17-9 1.1-79.42 0-10.82-.35-12.58-5.36-13.55-1.22-.24-3.54-.16-4.69-.55-2.88-1-2-4.84 1.77-4.85 33.67 0 46.08-1.07 56.06 4.86 7.74 4.61 12 11.48 12.51 20.4.88 14.59-6.51 22.35-15 32.59a1.46 1.46 0 0 0 0 2.22c2.6 3.25 5 6.63 7.71 9.83 27.56 33.23 24.11 30.54 41.28 33.06.89.13 1-.42 1-1.15v-11c0-1 .32-1.43 1.41-1.26a72.37 72.37 0 0 0 23.58-.3c1.08-.15 1.5.2 1.48 1.33 0 .11.88 26.69.87 26.8-.05 1.52.67 1.62 1.89 1.62h186.71Q386.51 304.6 346 234.33c2.26-.66-.4 0 6.69-1.39 2-.39 2.05-.41 3.11 1.44 7.31 12.64 77.31 134 77.37 134.06V138c-1.72.5-103.3 38.72-105.76 39.68-1.08.42-1.55.2-1.91-.88-.63-1.9-1.34-3.76-2.09-5.62-.32-.79-.09-1.13.65-1.39.1 0 95.53-35.85 103-38.77-65.42-37.57-130.56-75-196-112.6l86.82 150.39-.28.33c-9.57-.9-10.46-1.6-11.8-3.94-1-1.69-73.5-127.71-82-142.16-9.1 14.67-83.56 146.21-85.37 146.32-2.93.17-5.88.08-9.25.08q43.25-74.74 86.18-149zm51.93 129.92a37.68 37.68 0 0 0 5.54-.85c1.69-.3 2.53.2 2.6 1.92 0 .11.07 19.06-.86 20.45s-1.88 1.22-2.6-.19c-5-9.69 6.22-9.66-39.12-12-.7 0-1 .23-1 .93 0 .13 3.72 122 3.73 122.11 0 .89.52 1.2 1.21 1.51a83.92 83.92 0 0 1 8.7 4.05c7.31 4.33 11.38 10.84 12.41 19.31 1.44 11.8-2.77 35.77-32.21 37.14-2.75.13-28.26 1.08-34.14-23.25-4.66-19.26 8.26-32.7 19.89-36.4a2.45 2.45 0 0 0 2-2.66c.1-5.63 3-107.1 3.71-121.35.05-1.08-.62-1.16-1.35-1.15-32.35.52-36.75-.34-40.22 8.52-2.42 6.18-4.14 1.32-3.95.23q1.59-9 3.31-18c.4-2.11 1.43-2.61 3.43-1.86 5.59 2.11 6.72 1.7 37.25 1.92 1.73 0 1.78-.08 1.82-1.85.68-27.49.58-22.59 1-29.55a2.69 2.69 0 0 0-1.63-2.8c-5.6-2.91-8.75-7.55-8.9-13.87-.35-14.81 17.72-21.67 27.38-11.51 6.84 7.19 5.8 18.91-2.45 24.15a4.35 4.35 0 0 0-2.22 4.34c0 .59-.11-4.31 1 30.05 0 .9.43 1.12 1.24 1.11.1 0 23-.09 34.47-.37zM68.27 141.7c19.84-4.51 32.68-.56 52.49 1.69 2.76.31 3.74 1.22 3.62 4-.21 5-1.16 22.33-1.24 23.15a2.65 2.65 0 0 1-1.63 2.34c-4.06 1.7-3.61-4.45-4-7.29-3.13-22.43-73.87-32.7-74.63 25.4-.31 23.92 17 53.63 54.08 50.88 27.24-2 19-20.19 24.84-20.47a2.72 2.72 0 0 1 3 3.36c-1.83 10.85-3.42 18.95-3.45 19.15-1.54 9.17-86.7 22.09-93.35-42.06-2.71-25.85 10.44-53.37 40.27-60.15zm80 87.67h-19.49a2.57 2.57 0 0 1-2.66-1.79c2.38-3.75 5.89.92 5.86-6.14-.08-25.75.21-38 .23-40.1 0-3.42-.53-4.65-3.32-4.94-7-.72-3.11-3.37-1.11-3.38 11.84-.1 22.62-.18 30.05.72 8.77 1.07 16.71 12.63 7.93 22.62-2 2.25-4 4.42-6.14 6.73.95 1.15 6.9 8.82 17.28 19.68 2.66 2.78 6.15 3.51 9.88 3.13a2.21 2.21 0 0 0 2.23-2.12c.3-3.42.26 4.73.45-40.58 0-5.65-.34-6.58-3.23-6.83-3.95-.35-4-2.26-.69-3.37l19.09-.09c.32 0 4.49.53 1 3.38 0 .05-.16 0-.24 0-3.61.26-3.94 1-4 4.62-.27 43.93.07 40.23.41 42.82.11.84.27 2.23 5.1 2.14 2.49 0 3.86 3.37 0 3.4-10.37.08-20.74 0-31.11.07-10.67 0-13.47-6.2-24.21-20.82-1.6-2.18-8.31-2.36-8.2-.37.88 16.47 0 17.78 4 17.67 4.75-.1 4.73 3.57.83 3.55zm275-10.15c-1.21 7.13.17 10.38-5.3 10.34-61.55-.42-47.82-.22-50.72-.31a18.4 18.4 0 0 1-3.63-.73c-2.53-.6 1.48-1.23-.38-5.6-1.43-3.37-2.78-6.78-4.11-10.19a1.94 1.94 0 0 0-2-1.44 138 138 0 0 0-14.58.07 2.23 2.23 0 0 0-1.62 1.06c-1.58 3.62-3.07 7.29-4.51 11-1.27 3.23 7.86 1.32 12.19 2.16 3 .57 4.53 3.72.66 3.73H322.9c-2.92 0-3.09-3.15-.74-3.21a6.3 6.3 0 0 0 5.92-3.47c1.5-3 2.8-6 4.11-9.09 18.18-42.14 17.06-40.17 18.42-41.61a1.83 1.83 0 0 1 3 0c2.93 3.34 18.4 44.71 23.62 51.92 2 2.7 5.74 2 6.36 2 3.61.13 4-1.11 4.13-4.29.09-1.87.08 1.17.07-41.24 0-4.46-2.36-3.74-5.55-4.27-.26 0-2.56-.63-.08-3.06.21-.2-.89-.24 21.7-.15 2.32 0 5.32 2.75-1.21 3.45a2.56 2.56 0 0 0-2.66 2.83c-.07 1.63-.19 38.89.29 41.21a3.06 3.06 0 0 0 3.23 2.43c13.25.43 14.92.44 16-3.41 1.67-5.78 4.13-2.52 3.73-.19zm-104.72 64.37c-4.24 0-4.42-3.39-.61-3.41 35.91-.16 28.11.38 37.19-.65 1.68-.19 2.38.24 2.25 1.89-.26 3.39-.64 6.78-1 10.16-.25 2.16-3.2 2.61-3.4-.15-.38-5.31-2.15-4.45-15.63-5.08-1.58-.07-1.64 0-1.64 1.52V304c0 1.65 0 1.6 1.62 1.47 3.12-.25 10.31.34 15.69-1.52.47-.16 3.3-1.79 3.07 1.76 0 .21-.76 10.35-1.18 11.39-.53 1.29-1.88 1.51-2.58.32-1.17-2 0-5.08-3.71-5.3-15.42-.9-12.91-2.55-12.91 6 0 12.25-.76 16.11 3.89 16.24 16.64.48 14.4 0 16.43-5.71.84-2.37 3.5-1.77 3.18.58-.44 3.21-.85 6.43-1.23 9.64 0 .36-.16 2.4-4.66 2.39-37.16-.08-34.54-.19-35.21-.31-2.72-.51-2.2-3 .22-3.45 1.1-.19 4 .54 4.16-2.56 2.44-56.22-.07-51.34-3.91-51.33zm-.41-109.52c2.46.61 3.13 1.76 2.95 4.65-.33 5.3-.34 9-.55 9.69-.66 2.23-3.15 2.12-3.34-.27-.38-4.81-3.05-7.82-7.57-9.15-26.28-7.73-32.81 15.46-27.17 30.22 5.88 15.41 22 15.92 28.86 13.78 5.92-1.85 5.88-6.5 6.91-7.58 1.23-1.3 2.25-1.84 3.12 1.1 0 .1.57 11.89-6 12.75-1.6.21-19.38 3.69-32.68-3.39-21-11.19-16.74-35.47-6.88-45.33 14-14.06 39.91-7.06 42.32-6.47zM289.8 280.14c3.28 0 3.66 3 .16 3.43-2.61.32-5-.42-5 5.46 0 2-.19 29.05.4 41.45.11 2.29 1.15 3.52 3.44 3.65 22 1.21 14.95-1.65 18.79-6.34 1.83-2.24 2.76.84 2.76 1.08.35 13.62-4 12.39-5.19 12.4l-38.16-.19c-1.93-.23-2.06-3-.42-3.38 2-.48 4.94.4 5.13-2.8 1-15.87.57-44.65.34-47.81-.27-3.77-2.8-3.27-5.68-3.71-2.47-.38-2-3.22.34-3.22 1.45-.02 17.97-.03 23.09-.02zm-31.63-57.79c.07 4.08 2.86 3.46 6 3.58 2.61.1 2.53 3.41-.07 3.43-6.48 0-13.7 0-21.61-.06-3.84 0-3.38-3.35 0-3.37 4.49 0 3.24 1.61 3.41-45.54 0-5.08-3.27-3.54-4.72-4.23-2.58-1.23-1.36-3.09.41-3.15 1.29 0 20.19-.41 21.17.21s1.87 1.65-.42 2.86c-1 .52-3.86-.28-4.15 2.47 0 .21-.82 1.63-.07 43.8zm-36.91 274.27a2.93 2.93 0 0 0 3.26 0c17-9.79 182-103.57 197.42-112.51-.14-.43 11.26-.18-181.52-.27-1.22 0-1.57.37-1.53 1.56 0 .1 1.25 44.51 1.22 50.38a28.33 28.33 0 0 1-1.36 7.71c-.55 1.83.38-.5-13.5 32.23-.73 1.72-1 2.21-2-.08-4.19-10.34-8.28-20.72-12.57-31a23.6 23.6 0 0 1-2-10.79c.16-2.46.8-16.12 1.51-48 0-1.95 0-2-2-2h-183c2.58 1.63 178.32 102.57 196 112.76zm-90.9-188.75c0 2.4.36 2.79 2.76 3 11.54 1.17 21 3.74 25.64-7.32 6-14.46 2.66-34.41-12.48-38.84-2-.59-16-2.76-15.94 1.51.05 8.04.01 11.61.02 41.65zm105.75-15.05c0 2.13 1.07 38.68 1.09 39.13.34 9.94-25.58 5.77-25.23-2.59.08-2 1.37-37.42 1.1-39.43-14.1 7.44-14.42 40.21 6.44 48.8a17.9 17.9 0 0 0 22.39-7.07c4.91-7.76 6.84-29.47-5.43-39a2.53 2.53 0 0 1-.36.12zm-12.28-198c-9.83 0-9.73 14.75-.07 14.87s10.1-14.88.07-14.91zm-80.15 103.83c0 1.8.41 2.4 2.17 2.58 13.62 1.39 12.51-11 12.16-13.36-1.69-11.22-14.38-10.2-14.35-7.81.05 4.5-.03 13.68.02 18.59zm212.32 6.4l-6.1-15.84c-2.16 5.48-4.16 10.57-6.23 15.84z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "crop": { + "aliases": { + "unicodes": { + "secondary": [ + "10f125" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "frame", + "mask", + "resize", + "shrink" + ] + }, + "unicode": "f125", + "label": "Crop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 109.3l54.6-54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L402.7 64 160 64v64l178.7 0L128 338.7V32c0-17.7-14.3-32-32-32S64 14.3 64 32V64H32C14.3 64 0 78.3 0 96s14.3 32 32 32H64V384c0 35.3 28.7 64 64 64H352V384H173.3L384 173.3 384 480c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H448l0-274.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crop-simple": { + "aliases": { + "names": [ + "crop-alt" + ], + "unicodes": { + "secondary": [ + "10f565" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "frame", + "mask", + "resize", + "shrink" + ] + }, + "unicode": "f565", + "label": "Crop Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 32c0-17.7-14.3-32-32-32S64 14.3 64 32V64H32C14.3 64 0 78.3 0 96s14.3 32 32 32H64V384c0 35.3 28.7 64 64 64H352V384H128V32zM384 480c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H448l0-256c0-35.3-28.7-64-64-64L160 64v64l224 0 0 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cross": { + "aliases": { + "unicodes": { + "composite": [ + "1f547", + "271d" + ], + "secondary": [ + "10f654" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Christian", + "Heavy Latin Cross", + "catholicism", + "christianity", + "church", + "cross", + "jesus", + "latin cross", + "religion" + ] + }, + "unicode": "f654", + "label": "Cross", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M176 0c-26.5 0-48 21.5-48 48v80H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h80V464c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V256h80c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H256V48c0-26.5-21.5-48-48-48H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crosshairs": { + "aliases": { + "unicodes": { + "secondary": [ + "10f05b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aim", + "bullseye", + "gpd", + "picker", + "position" + ] + }, + "unicode": "f05b", + "label": "Crosshairs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V42.4c93.7 13.9 167.7 88 181.6 181.6H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H469.6c-13.9 93.7-88 167.7-181.6 181.6V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V469.6C130.3 455.7 56.3 381.7 42.4 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H42.4C56.3 130.3 130.3 56.3 224 42.4V32c0-17.7 14.3-32 32-32zM107.4 288c12.5 58.3 58.4 104.1 116.6 116.6V384c0-17.7 14.3-32 32-32s32 14.3 32 32v20.6c58.3-12.5 104.1-58.4 116.6-116.6H384c-17.7 0-32-14.3-32-32s14.3-32 32-32h20.6C392.1 165.7 346.3 119.9 288 107.4V128c0 17.7-14.3 32-32 32s-32-14.3-32-32V107.4C165.7 119.9 119.9 165.7 107.4 224H128c17.7 0 32 14.3 32 32s-14.3 32-32 32H107.4zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f520" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "bullfrog", + "fauna", + "halloween", + "holiday", + "toad" + ] + }, + "unicode": "f520", + "label": "Crow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M456 0c-48.6 0-88 39.4-88 88v29.2L12.5 390.6c-14 10.8-16.6 30.9-5.9 44.9s30.9 16.6 44.9 5.9L126.1 384H259.2l46.6 113.1c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3L311.1 384H352c1.1 0 2.1 0 3.2 0l46.6 113.2c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3l-42-102C484.9 354.1 544 280 544 192V128v-8l80.5-20.1c8.6-2.1 13.8-10.8 11.6-19.4C629 52 603.4 32 574 32H523.9C507.7 12.5 483.3 0 456 0zm0 64a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crown": { + "aliases": { + "unicodes": { + "composite": [ + "1f451" + ], + "secondary": [ + "10f521" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "award", + "clothing", + "crown", + "favorite", + "king", + "queen", + "royal", + "tiara" + ] + }, + "unicode": "f521", + "label": "Crown", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309 106c11.4-7 19-19.7 19-34c0-22.1-17.9-40-40-40s-40 17.9-40 40c0 14.4 7.6 27 19 34L209.7 220.6c-9.1 18.2-32.7 23.4-48.6 10.7L72 160c5-6.7 8-15 8-24c0-22.1-17.9-40-40-40S0 113.9 0 136s17.9 40 40 40c.2 0 .5 0 .7 0L86.4 427.4c5.5 30.4 32 52.6 63 52.6H426.6c30.9 0 57.4-22.1 63-52.6L535.3 176c.2 0 .5 0 .7 0c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40c0 9 3 17.3 8 24l-89.1 71.3c-15.9 12.7-39.5 7.5-48.6-10.7L309 106z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crutch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f7" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cane", + "injury", + "mobility", + "wheelchair" + ] + }, + "unicode": "f7f7", + "label": "Crutch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M297.4 9.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0zm-96 144l-34.8 34.8c-12.9 12.9-21.9 29.2-25.8 47.1L116.8 342.9c-1.3 5.9-4.3 11.4-8.6 15.7L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l98.8-98.8c4.3-4.3 9.7-7.3 15.7-8.6l107.6-23.9c17.8-4 34.1-12.9 47.1-25.8l34.7-34.7c0 0 .1-.1 .1-.1s.1-.1 .1-.1l74.6-74.6-45.3-45.3L336 242.7 269.3 176l52.1-52.1L276.1 78.6l-74.7 74.7zM224 221.3L290.7 288l-12.2 12.2c-4.3 4.3-9.7 7.3-15.7 8.6l-76.7 17 17-76.7c1.3-5.9 4.3-11.4 8.6-15.7L224 221.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cruzeiro-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cruzeiro Sign", + "currency" + ] + }, + "unicode": "e152", + "label": "Cruzeiro Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 256c0-88.4 71.6-160 160-160c41 0 78.3 15.4 106.7 40.7c13.2 11.8 33.4 10.7 45.2-2.5s10.7-33.4-2.5-45.2c-39.6-35.5-92-57-149.3-57C132.3 32 32 132.3 32 256s100.3 224 224 224c57.4 0 109.7-21.6 149.3-57c13.2-11.8 14.3-32 2.5-45.2s-32-14.3-45.2-2.5C334.3 400.6 297 416 256 416V320v-8.7c0-12.8 10.4-23.3 23.3-23.3c4.6 0 9.1 1.4 12.9 3.9l10.1 6.7c14.7 9.8 34.6 5.8 44.4-8.9s5.8-34.6-8.9-44.4l-10.1-6.7c-14.3-9.6-31.2-14.7-48.4-14.7c-12.4 0-24.2 2.6-34.9 7.3c-5.5-4.5-12.6-7.3-20.3-7.3c-17.7 0-32 14.3-32 32v55.3V320v82.7C135.5 378 96 321.6 96 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "css3": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code" + ] + }, + "unicode": "f13c", + "label": "CSS 3 Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "css3-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38b", + "label": "Alternate CSS3 Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cube": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "block", + "dice", + "package", + "square", + "tesseract" + ] + }, + "unicode": "f1b2", + "label": "Cube", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M234.5 5.7c13.9-5 29.1-5 43.1 0l192 68.6C495 83.4 512 107.5 512 134.6V377.4c0 27-17 51.2-42.5 60.3l-192 68.6c-13.9 5-29.1 5-43.1 0l-192-68.6C17 428.6 0 404.5 0 377.4V134.6c0-27 17-51.2 42.5-60.3l192-68.6zM256 66L82.3 128 256 190l173.7-62L256 66zm32 368.6l160-57.1v-188L288 246.6v188z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cubes": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b3" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "block", + "dice", + "package", + "pyramid", + "square", + "stack", + "tesseract" + ] + }, + "unicode": "f1b3", + "label": "Cubes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M290.8 48.6l78.4 29.7L288 109.5 206.8 78.3l78.4-29.7c1.8-.7 3.8-.7 5.7 0zM136 92.5V204.7c-1.3 .4-2.6 .8-3.9 1.3l-96 36.4C14.4 250.6 0 271.5 0 294.7V413.9c0 22.2 13.1 42.3 33.5 51.3l96 42.2c14.4 6.3 30.7 6.3 45.1 0L288 457.5l113.5 49.9c14.4 6.3 30.7 6.3 45.1 0l96-42.2c20.3-8.9 33.5-29.1 33.5-51.3V294.7c0-23.3-14.4-44.1-36.1-52.4l-96-36.4c-1.3-.5-2.6-.9-3.9-1.3V92.5c0-23.3-14.4-44.1-36.1-52.4l-96-36.4c-12.8-4.8-26.9-4.8-39.7 0l-96 36.4C150.4 48.4 136 69.3 136 92.5zM392 210.6l-82.4 31.2V152.6L392 121v89.6zM154.8 250.9l78.4 29.7L152 311.7 70.8 280.6l78.4-29.7c1.8-.7 3.8-.7 5.7 0zm18.8 204.4V354.8L256 323.2v95.9l-82.4 36.2zM421.2 250.9c1.8-.7 3.8-.7 5.7 0l78.4 29.7L424 311.7l-81.2-31.1 78.4-29.7zM523.2 421.2l-77.6 34.1V354.8L528 323.2v90.7c0 3.2-1.9 6-4.8 7.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cubes-stacked": { + "changes": [ + "6.1.0", + "6.1.1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "cubes", + "sugar" + ] + }, + "unicode": "e4e6", + "label": "Cubes Stacked", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 64v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H224c-17.7 0-32 14.3-32 32zM82.7 207c-15.3 8.8-20.5 28.4-11.7 43.7l32 55.4c8.8 15.3 28.4 20.5 43.7 11.7l55.4-32c15.3-8.8 20.5-28.4 11.7-43.7l-32-55.4c-8.8-15.3-28.4-20.5-43.7-11.7L82.7 207zM288 192c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H288zm64 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H352zM160 384v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32zM32 352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cuttlefish": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38c", + "label": "Cuttlefish", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "d": { + "aliases": { + "unicodes": { + "composite": [ + "64" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter D", + "Latin Small Letter D", + "letter" + ] + }, + "unicode": "44", + "label": "D", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32h96c123.7 0 224 100.3 224 224s-100.3 224-224 224H64c-35.3 0-64-28.7-64-64V96zm160 0H64V416h96c88.4 0 160-71.6 160-160s-71.6-160-160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "d-and-d": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38d", + "label": "Dungeons & Dragons", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "d-and-d-beyond": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "gaming", + "tabletop" + ] + }, + "unicode": "f6ca", + "label": "D&D Beyond", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M313.8 241.5c13.8 0 21-10.1 24.8-17.9-1-1.1-5-4.2-7.4-6.6-2.4 4.3-8.2 10.7-13.9 10.7-10.2 0-15.4-14.7-3.2-26.6-.5-.2-4.3-1.8-8 2.4 0-3 1-5.1 2.1-6.6-3.5 1.3-9.8 5.6-11.4 7.9.2-5.8 1.6-7.5.6-9l-.2-.2s-8.5 5.6-9.3 14.7c0 0 1.1-1.6 2.1-1.9.6-.3 1.3 0 .6 1.9-.2.6-5.8 15.7 5.1 26-.6-1.6-1.9-7.6 2.4-1.9-.3.1 5.8 7.1 15.7 7.1zm52.4-21.1c0-4-4.9-4.4-5.6-4.5 2 3.9.9 7.5.2 9 2.5-.4 5.4-1.6 5.4-4.5zm10.3 5.2c0-6.4-6.2-11.4-13.5-10.7 8 1.3 5.6 13.8-5 11.4 3.7-2.6 3.2-9.9-1.3-12.5 1.4 4.2-3 8.2-7.4 4.6-2.4-1.9-8-6.6-10.6-8.6-2.4-2.1-5.5-1-6.6-1.8-1.3-1.1-.5-3.8-2.2-5-1.6-.8-3-.3-4.8-1-1.6-.6-2.7-1.9-2.6-3.5-2.5 4.4 3.4 6.3 4.5 8.5 1 1.9-.8 4.8 4 8.5 14.8 11.6 9.1 8 10.4 18.1.6 4.3 4.2 6.7 6.4 7.4-2.1-1.9-2.9-6.4 0-9.3 0 13.9 19.2 13.3 23.1 6.4-2.4 1.1-7-.2-9-1.9 7.7 1 14.2-4.1 14.6-10.6zm-39.4-18.4c2 .8 1.6.7 6.4 4.5 10.2-24.5 21.7-15.7 22-15.5 2.2-1.9 9.8-3.8 13.8-2.7-2.4-2.7-7.5-6.2-13.3-6.2-4.7 0-7.4 2.2-8 1.3-.8-1.4 3.2-3.4 3.2-3.4-5.4.2-9.6 6.7-11.2 5.9-1.1-.5 1.4-3.7 1.4-3.7-5.1 2.9-9.3 9.1-10.2 13 4.6-5.8 13.8-9.8 19.7-9-10.5.5-19.5 9.7-23.8 15.8zm242.5 51.9c-20.7 0-40 1.3-50.3 2.1l7.4 8.2v77.2l-7.4 8.2c10.4.8 30.9 2.1 51.6 2.1 42.1 0 59.1-20.7 59.1-48.9 0-29.3-23.2-48.9-60.4-48.9zm-15.1 75.6v-53.3c30.1-3.3 46.8 3.8 46.8 26.3 0 25.6-21.4 30.2-46.8 27zM301.6 181c-1-3.4-.2-6.9 1.1-9.4 1 3 2.6 6.4 7.5 9-.5-2.4-.2-5.6.5-8-1.4-5.4 2.1-9.9 6.4-9.9 6.9 0 8.5 8.8 4.7 14.4 2.1 3.2 5.5 5.6 7.7 7.8 3.2-3.7 5.5-9.5 5.5-13.8 0-8.2-5.5-15.9-16.7-16.5-20-.9-20.2 16.6-20 18.9.5 5.2 3.4 7.8 3.3 7.5zm-.4 6c-.5 1.8-7 3.7-10.2 6.9 4.8-1 7-.2 7.8 1.8.5 1.4-.2 3.4-.5 5.6 1.6-1.8 7-5.5 11-6.2-1-.3-3.4-.8-4.3-.8 2.9-3.4 9.3-4.5 12.8-3.7-2.2-.2-6.7 1.1-8.5 2.6 1.6.3 3 .6 4.3 1.1-2.1.8-4.8 3.4-5.8 6.1 7-5 13.1 5.2 7 8.2.8.2 2.7 0 3.5-.5-.3 1.1-1.9 3-3 3.4 2.9 0 7-1.9 8.2-4.6 0 0-1.8.6-2.6-.2s.3-4.3.3-4.3c-2.3 2.9-3.4-1.3-1.3-4.2-1-.3-3.5-.6-4.6-.5 3.2-1.1 10.4-1.8 11.2-.3.6 1.1-1 3.4-1 3.4 4-.5 8.3 1.1 6.7 5.1 2.9-1.4 5.5-5.9 4.8-10.4-.3 1-1.6 2.4-2.9 2.7.2-1.4-1-2.2-1.9-2.6 1.7-9.6-14.6-14.2-14.1-23.9-1 1.3-1.8 5-.8 7.1 2.7 3.2 8.7 6.7 10.1 12.2-2.6-6.4-15.1-11.4-14.6-20.2-1.6 1.6-2.6 7.8-1.3 11 2.4 1.4 4.5 3.8 4.8 6.1-2.2-5.1-11.4-6.1-13.9-12.2-.6 2.2-.3 5 1 6.7 0 0-2.2-.8-7-.6 1.7.6 5.1 3.5 4.8 5.2zm25.9 7.4c-2.7 0-3.5-2.1-4.2-4.3 3.3 1.3 4.2 4.3 4.2 4.3zm38.9 3.7l-1-.6c-1.1-1-2.9-1.4-4.7-1.4-2.9 0-5.8 1.3-7.5 3.4-.8.8-1.4 1.8-2.1 2.6v15.7c3.5 2.6 7.1-2.9 3-7.2 1.5.3 4.6 2.7 5.1 3.2 0 0 2.6-.5 5-.5 2.1 0 3.9.3 5.6 1.1V196c-1.1.5-2.2 1-2.7 1.4zM79.9 305.9c17.2-4.6 16.2-18 16.2-19.9 0-20.6-24.1-25-37-25H3l8.3 8.6v29.5H0l11.4 14.6V346L3 354.6c61.7 0 73.8 1.5 86.4-5.9 6.7-4 9.9-9.8 9.9-17.6 0-5.1 2.6-18.8-19.4-25.2zm-41.3-27.5c20 0 29.6-.8 29.6 9.1v3c0 12.1-19 8.8-29.6 8.8zm0 59.2V315c12.2 0 32.7-2.3 32.7 8.8v4.5h.2c0 11.2-12.5 9.3-32.9 9.3zm101.2-19.3l23.1.2v-.2l14.1-21.2h-37.2v-14.9h52.4l-14.1-21v-.2l-73.5.2 7.4 8.2v77.1l-7.4 8.2h81.2l14.1-21.2-60.1.2zm214.7-60.1c-73.9 0-77.5 99.3-.3 99.3 77.9 0 74.1-99.3.3-99.3zm-.3 77.5c-37.4 0-36.9-55.3.2-55.3 36.8.1 38.8 55.3-.2 55.3zm-91.3-8.3l44.1-66.2h-41.7l6.1 7.2-20.5 37.2h-.3l-21-37.2 6.4-7.2h-44.9l44.1 65.8.2 19.4-7.7 8.2h42.6l-7.2-8.2zm-28.4-151.3c1.6 1.3 2.9 2.4 2.9 6.6v38.8c0 4.2-.8 5.3-2.7 6.4-.1.1-7.5 4.5-7.9 4.6h35.1c10 0 17.4-1.5 26-8.6-.6-5 .2-9.5.8-12 0-.2-1.8 1.4-2.7 3.5 0-5.7 1.6-15.4 9.6-20.5-.1 0-3.7-.8-9 1.1 2-3.1 10-7.9 10.4-7.9-8.2-26-38-22.9-32.2-22.9-30.9 0-32.6.3-39.9-4 .1.8.5 8.2 9.6 14.9zm21.5 5.5c4.6 0 23.1-3.3 23.1 17.3 0 20.7-18.4 17.3-23.1 17.3zm228.9 79.6l7 8.3V312h-.3c-5.4-14.4-42.3-41.5-45.2-50.9h-31.6l7.4 8.5v76.9l-7.2 8.3h39l-7.4-8.2v-47.4h.3c3.7 10.6 44.5 42.9 48.5 55.6h21.3v-85.2l7.4-8.3zm-106.7-96.1c-32.2 0-32.8.2-39.9-4 .1.7.5 8.3 9.6 14.9 3.1 2 2.9 4.3 2.9 9.5 1.8-1.1 3.8-2.2 6.1-3-1.1 1.1-2.7 2.7-3.5 4.5 1-1.1 7.5-5.1 14.6-3.5-1.6.3-4 1.1-6.1 2.9.1 0 2.1-1.1 7.5-.3v-4.3c4.7 0 23.1-3.4 23.1 17.3 0 20.5-18.5 17.3-19.7 17.3 5.7 4.4 5.8 12 2.2 16.3h.3c33.4 0 36.7-27.3 36.7-34 0-3.8-1.1-32-33.8-33.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dailymotion": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e052", + "label": "dailymotion", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M298.93,267a48.4,48.4,0,0,0-24.36-6.21q-19.83,0-33.44,13.27t-13.61,33.42q0,21.16,13.28,34.6t33.43,13.44q20.5,0,34.11-13.78T322,307.47A47.13,47.13,0,0,0,315.9,284,44.13,44.13,0,0,0,298.93,267ZM0,32V480H448V32ZM374.71,405.26h-53.1V381.37h-.67q-15.79,26.2-55.78,26.2-27.56,0-48.89-13.1a88.29,88.29,0,0,1-32.94-35.77q-11.6-22.68-11.59-50.89,0-27.56,11.76-50.22a89.9,89.9,0,0,1,32.93-35.78q21.18-13.09,47.72-13.1a80.87,80.87,0,0,1,29.74,5.21q13.28,5.21,25,17V153l55.79-12.09Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dashcube": { + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f210", + "label": "DashCube", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "database": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "development", + "directory", + "memory", + "storage" + ] + }, + "unicode": "f1c0", + "label": "Database", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 80v48c0 44.2-100.3 80-224 80S0 172.2 0 128V80C0 35.8 100.3 0 224 0S448 35.8 448 80zM393.2 214.7c20.8-7.4 39.9-16.9 54.8-28.6V288c0 44.2-100.3 80-224 80S0 332.2 0 288V186.1c14.9 11.8 34 21.2 54.8 28.6C99.7 230.7 159.5 240 224 240s124.3-9.3 169.2-25.3zM0 346.1c14.9 11.8 34 21.2 54.8 28.6C99.7 390.7 159.5 400 224 400s124.3-9.3 169.2-25.3c20.8-7.4 39.9-16.9 54.8-28.6V432c0 44.2-100.3 80-224 80S0 476.2 0 432V346.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "debian": { + "changes": [ + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e60b", + "label": "Debian", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1682957890, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248.2 .9c-4 .2-8.1 .4-11.4 1.6l-3.4-.5c5.4-.7 10.9-1.1 16.4-1.5c2.4-.2 4.8-.4 7.2-.6c-2.7 .6-5.7 .8-8.8 .9zm132 244.7c3-7.6 5.5-14 5.2-24.4l-4.3 9c4.4-13.2 4-27.1 3.6-40.4c-.2-6-.3-11.8 0-17.4l-1.8-.5c-1.5-45.2-40.6-93.1-75.3-109.4c-30-13.8-76.1-16.2-97.3-5.8c1.3-1.1 4.2-2 6.8-2.7c3.4-1 6.3-1.8 4.3-3c-19.2 1.9-24.9 5.5-31.1 9.4c-4.6 2.9-9.5 6-20.3 8.7c-3.5 3.4 1.7 2 5.8 .9c4.1-1.1 7.2-1.9-.1 2.4c-3.6 1-6.7 1.3-9.7 1.6c-8.3 .8-15.8 1.6-30.7 17c.8 1.3 3.5-.3 5.4-1.4c2.3-1.4 3.4-2-1.7 4.4c-19.1-2.4-60.3 43.7-69.1 59l4.6 .8c-3.2 8-6.8 14.8-10 20.8c-4.3 8.1-7.9 14.9-8.7 21.3c-.4 5.9-1.2 12.9-2 20.3c-3 27.4-6.8 61.3 3.8 73.6l-1.3 13c.6 1.2 1.1 2.3 1.6 3.5c1.2 2.5 2.3 5 3.9 7.4l-3 .2c7 22.2 10.8 22.5 15.1 22.9c4.4 .4 9.3 .9 18.7 24.2c-2.7-.9-5.5-1.9-9.4-7.2c-.5 4.1 5.8 16.3 13.1 25.8l-3.1 3.6c3.2 5.8 6.1 8.1 8.6 10l0 0c.8 .6 1.5 1.1 2.1 1.7c-11.9-6.5 3.2 13.7 11.9 25.2c2.5 3.4 4.5 6 5.1 7l2.4-4.2c-.3 6.1 4.3 13.9 13.1 24.7l7.3-.3c3 6 14 16.7 20.7 17.2l-4.4 5.8c8.1 2.6 10.3 4.3 12.7 6.2c2.6 2.1 5.4 4.3 16.1 8.1l-4.2-7.4c3.5 3 6.2 5.9 8.8 8.7c5.2 5.6 9.9 10.7 19.8 15.4c11.2 3.9 17.1 4.8 23.6 5.9c5.4 .8 11.2 1.8 20.8 4.5c-2.2-.1-4.4-.1-6.7-.2l0 0h0c-16.3-.4-34-.8-46.4-5.2C107.8 480.5 19.5 367.2 26 250.6c-.6-9.9-.3-20.9 0-30.7c.4-13.5 .7-24.8-1.6-28.3l1-3.1c5.3-17.4 11.7-38.2 23.8-62.8l-.1-.2 0-.1 0 0 0 0c.4 .4 3.4 3.4 8.8-5.8c1.3-2.9 2.5-5.8 3.8-8.8l0 0c2.5-6.1 5.1-12.3 8.4-17.9l2.6-.6c1.7-10.1 17-23.8 29.8-35.2l0 0c6.1-5.5 11.6-10.4 14.7-14.1l.7 4.4c17.1-16 45-27.7 66.1-36.6c4.8-2 9.3-3.9 13.3-5.7c-3.4 3.8 2.2 2.7 10 1c4.8-1 10.4-2.1 15.3-2.4c-1.3 .7-2.6 1.4-3.9 2.1l0 0 0 0c-2.7 1.4-5.4 2.8-8 4.6c8.3-2 11.9-1.4 16-.8c3.5 .6 7.3 1.2 14.6 .2c-5.6 .8-12.3 3-11.2 3.8c7.9 .9 12.8-.1 17.2-1c5.6-1.1 10.4-2.1 19.5 .9l-1-4.8c7.5 2.7 13.1 4.4 18 5.9c10 3 17.6 5.3 34.2 14.1c3.2 .2 5.3-.5 7.4-1.2c3.6-1.1 7-2.2 15.3 1.2c.5 .8 .7 1.5 1 2.1c1 2.6 1.7 4.6 14.6 12.2c1.8-.7-3.1-5.1-7-8.7l-.2-.1c32.3 17.3 67.5 54.1 78.2 93.6c-6-11.1-5.2-5.5-4.3 .5c.6 4 1.2 8.1-.2 7.5c4.5 12.1 8.1 24.5 10.4 37.4l-.8-2.9c-3.3-11.8-9.6-34.5-20-49.6c-.4 4.4-2.9 3.9-5.3 3.5c-3.3-.6-6.3-1.2-1.9 12.6c2.6 3.8 3.1 2.4 3.5 1.1c.5-1.5 .9-2.8 4.7 5.2c.1 4.3 1.1 8.5 2.2 13.3l0 0 0 0 0 0 0 0 0 0 0 0c.7 3 1.5 6.2 2.1 9.8c-1.1-.2-2.3-2.2-3.4-4.2l0 0 0 0c-1.4-2.4-2.8-4.7-3.7-3.2c2.4 11.5 6.5 17.4 8 18.3c-.3 .6-.6 .7-1.1 .7c-.8 0-1.8 .1-1.9 5.3c.7 13.7 3.3 12.5 5.3 11.6c.6-.3 1.2-.6 1.7-.4c-.6 2.5-1.6 5.1-2.7 7.9l0 0c-2.8 7.1-6 15.4-3.4 26.1c-.8-3.1-2.1-6.3-3.3-9.3l0 0 0 0c-.5-1.3-1.1-2.6-1.5-3.8c-.6 4.8-.3 8.2-.1 11.3c.4 5.3 .7 10-3 19.9c4.3-14.2 3.8-26.9-.2-20.8c1 11-3.8 20.5-8.1 29.1c-3.6 7.1-6.8 13.5-5.9 19.3l-5.2-7.1c-7.6 11-7 13.3-6.5 15.6c.5 1.9 1 3.8-3.4 10.8c1.7-2.9 1.3-3.6 1-4.2c-.4-.8-.7-1.5 1.7-5.1c-1.6 .1-5.5 3.9-10.1 8.5l0 0c-3.9 3.9-8.5 8.4-12.8 11.8c-37.5 30.1-82.3 34-125.6 17.8l0 0c.2-1-.2-2.1-3.1-4.1c-36.8-28.2-58.5-52.1-50.9-107.5c2.2-1.7 3.7-6.2 5.6-11.6c2.9-8.4 6.5-18.9 14.3-23.9c7.8-17.3 31.3-33.3 56.4-33.7c25.6-1.4 47.2 13.7 58.1 27.9c-19.8-18.4-52.1-24-79.7-10.4c-28.2 12.7-45 43.8-42.5 74.7c.3-.5 .7-.7 1-.9c.6-.5 1.2-.9 1.5-3.4c-.9 60.2 64.8 104.3 112.1 82l.6 1.3c12.7-3.5 15.9-6.5 20.3-10.7c2.2-2.1 4.7-4.5 9-7.4c-.3 .7-1.3 1.7-2.4 2.7c-2.2 2.1-4.6 4.5-1.6 4.6c5.3-1.4 20.1-14.8 30.2-23.8l0 0 0 0c1.6-1.4 3-2.7 4.3-3.9c2-4.3 1.6-5.7 1.3-7.1c-.4-1.6-.8-3.3 2.4-9.6l7.3-3.7c1-2.8 2-5.4 2.9-7.8l0 0zM233.1 321.9a.9 .9 0 1 0 -1.7 0 .9 .9 0 1 0 1.7 0zm-.2 .5l-.2 .4c-.3 .7-.6 1.4-.3 2.4c-12.2-5.7-23.4-14.3-32.6-24.9c4.9 7.1 10.1 14.1 17 19.5c-6.9-2.3-15.2-11.9-21.7-19.4l0 0 0 0c-4.3-5-7.9-9.1-9.7-9.5c19.8 35.5 80.5 62.3 112.3 49c-14.7 .5-33.4 .3-49.9-5.8c-6.3-3.2-14.6-9.6-14.9-11.8zM237.5 7c3.8 .6 7.3 1.2 6.7 2.1c5-1.1 6.1-2.1-9-2.5c.8 .1 1.6 .3 2.4 .4zm92.2 208.4c-1 3.9-1.8 1.4-2.7-1.2c-.5-1.5-1.1-3.1-1.7-3.4c1.4-5.8 5.4-10.7 4.4 4.6zm-6.8 21.2c-1.3 7.9-5 15.5-10.1 22.5c.2-2-1.2-2.4-2.6-2.8c-2.9-.8-5.9-1.6 5.6-16.1c-.5 2-2.3 4.9-4 7.7l0 0c-3.6 5.9-6.7 11 4 4.3l1-1.8c2.6-4.5 5-8.8 6-13.8zM280 276.6c-11.1-1.7-21.2-6-12.7-6.1c7.1 .6 14.1 .6 21-1.1c-2.5 2.4-5.2 4.8-8.3 7.2zM244.2 9.1l-.2 .4-3 .3 3.2-.7zm-69.5 273c3.7 7.2 6.5 11.7 9.1 15.9c2.3 3.7 4.4 7.1 6.8 11.7c-5.2-4.3-8.9-9.8-12.8-15.5c-1.4-2.1-2.8-4.2-4.4-6.2l1.2-5.9zm7.3-10c1.7 3.4 3.3 6.7 5.9 9.5l2.6 7.7-1.3-2.1c-3.2-5.3-6.3-10.6-8-16.7l.8 1.6zm239.1-41.2c-2.3 17.4-7.7 34.6-16 50.3c7.6-14.9 12.5-30.9 14.8-47.2l1.2-3.1zM35.4 109.6c0 .3 0 .5 .1 .7c0-.2 0-.5-.1-.7zm.1 .7c.3 1.2 1.4 .9 2.4 .6c1.9-.5 3.6-.9-.1 7.6c-2.4 1.7-3.8 2.8-4.6 3.4c-.6 .4-.8 .6-.8 .6c0 0 .1-.2 .3-.5c.8-1.4 3.4-5.5 2.9-11.7zm-10.2 42c-.7 3.7-1.5 7.9-3.4 13.9c.2-1.9 0-3.5-.2-4.9c-.4-3.4-.8-6.3 4.3-12.9c-.3 1.2-.5 2.5-.7 3.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "deezer": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e077", + "label": "Deezer", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M451.46,244.71H576V172H451.46Zm0-173.89v72.67H576V70.82Zm0,275.06H576V273.2H451.46ZM0,447.09H124.54V374.42H0Zm150.47,0H275V374.42H150.47Zm150.52,0H425.53V374.42H301Zm150.47,0H576V374.42H451.46ZM301,345.88H425.53V273.2H301Zm-150.52,0H275V273.2H150.47Zm0-101.17H275V172H150.47Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "delete-left": { + "aliases": { + "names": [ + "backspace" + ], + "unicodes": { + "composite": [ + "232b" + ], + "secondary": [ + "10f55a" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Erase to the Left", + "command", + "delete", + "erase", + "keyboard", + "undo" + ] + }, + "unicode": "f55a", + "label": "Delete Left", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M576 128c0-35.3-28.7-64-64-64H205.3c-17 0-33.3 6.7-45.3 18.7L9.4 233.4c-6 6-9.4 14.1-9.4 22.6s3.4 16.6 9.4 22.6L160 429.3c12 12 28.3 18.7 45.3 18.7H512c35.3 0 64-28.7 64-64V128zM271 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "delicious": { + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a5", + "label": "Delicious", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "democrat": { + "aliases": { + "unicodes": { + "secondary": [ + "10f747" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "democratic party", + "donkey", + "election", + "left", + "left-wing", + "liberal", + "politics", + "usa" + ] + }, + "unicode": "f747", + "label": "Democrat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32c0-8.9 3.8-20.9 6.2-27.3C71.2 1.8 74 0 77 0c1.9 0 3.8 .7 5.2 2.1L128 45.7 173.8 2.1C175.2 .7 177.1 0 179 0c3 0 5.8 1.8 6.8 4.7c2.4 6.5 6.2 18.4 6.2 27.3c0 26.5-21.9 42-29.5 46.6l76.2 72.6c6 5.7 13.9 8.8 22.1 8.8H480l32 0c40.3 0 78.2 19 102.4 51.2l19.2 25.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4l-19.2-25.6c-5.3-7-11.8-12.8-19.2-17V320H192l-40.4-94.3c-3.9-9.2-15.3-12.6-23.6-7l-42.1 28c-9.1 6.1-19.7 9.3-30.7 9.3h-2C23.9 256 0 232.1 0 202.7c0-12.1 4.1-23.8 11.7-33.3L87.6 74.6C78.1 67.4 64 53.2 64 32zM448 352h96v64 64c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V416H288v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V416 352h96H448zM260.9 210.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.3-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5zM368.1 208c-2 0-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5c-.9-1.8-2.8-2.9-4.8-2.9zm116.8 2.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "deploydog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38e", + "label": "deploy.dog", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "deskpro": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38f", + "label": "Deskpro", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "desktop": { + "aliases": { + "names": [ + "desktop-alt" + ], + "unicodes": { + "composite": [ + "1f5a5", + "f108" + ], + "primary": [ + "f108" + ], + "secondary": [ + "10f108", + "10f390" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "demo", + "desktop", + "desktop computer", + "device", + "imac", + "machine", + "monitor", + "pc", + "screen" + ] + }, + "unicode": "f390", + "label": "Desktop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767341, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V288H64V64H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dev": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f6cc", + "label": "DEV", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58l-38.46 144.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "deviantart": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1bd", + "label": "deviantART", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dharmachakra": { + "aliases": { + "unicodes": { + "composite": [ + "2638" + ], + "secondary": [ + "10f655" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Buddhist", + "buddhism", + "buddhist", + "dharma", + "religion", + "wheel", + "wheel of dharma" + ] + }, + "unicode": "f655", + "label": "Dharmachakra", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M337.8 205.7l48.6-42.5c13.8 19.3 23.4 41.9 27.4 66.2l-64.4 4.3c-2.4-10.1-6.4-19.5-11.6-28zm140.1 19.5c-5.3-38.8-20.6-74.5-43.2-104.3l.8-.7C449 108.4 449.7 87.6 437 75s-33.4-12-45.2 1.5l-.7 .8c-29.8-22.6-65.5-37.9-104.3-43.2l.1-1.1c1.2-17.9-13-33-30.9-33s-32.1 15.2-30.9 33l.1 1.1c-38.8 5.3-74.5 20.6-104.3 43.2l-.7-.8C108.4 63 87.6 62.3 75 75s-12 33.4 1.5 45.2l.8 .7c-22.6 29.8-37.9 65.5-43.2 104.3l-1.1-.1c-17.9-1.2-33 13-33 30.9s15.2 32.1 33 30.9l1.1-.1c5.3 38.8 20.6 74.5 43.2 104.3l-.8 .7C63 403.6 62.3 424.4 75 437s33.4 12 45.2-1.5l.7-.8c29.8 22.6 65.5 37.9 104.3 43.2l-.1 1.1c-1.2 17.9 13 33 30.9 33s32.1-15.2 30.9-33l-.1-1.1c38.8-5.3 74.5-20.6 104.3-43.2l.7 .8c11.8 13.5 32.5 14.2 45.2 1.5s12-33.4-1.5-45.2l-.8-.7c22.6-29.8 37.9-65.5 43.2-104.3l1.1 .1c17.9 1.2 33-13 33-30.9s-15.2-32.1-33-30.9l-1.1 .1zM163.2 125.6c19.3-13.8 41.9-23.4 66.2-27.5l4.3 64.4c-10 2.4-19.5 6.4-28 11.6l-42.5-48.6zm-65 103.8c4.1-24.4 13.7-46.9 27.5-66.2l48.6 42.5c-5.3 8.5-9.2 18-11.6 28l-64.4-4.3zm27.5 119.4c-13.8-19.3-23.4-41.9-27.5-66.2l64.4-4.3c2.4 10 6.4 19.5 11.6 28l-48.6 42.5zm103.8 65c-24.4-4.1-46.9-13.7-66.2-27.4l42.5-48.6c8.5 5.3 18 9.2 28 11.6l-4.3 64.4zm119.4-27.4c-19.3 13.8-41.9 23.4-66.2 27.4l-4.3-64.4c10-2.4 19.5-6.4 28-11.6l42.5 48.6zm65-103.8c-4.1 24.4-13.7 46.9-27.4 66.2l-48.6-42.5c5.3-8.5 9.2-18 11.6-28l64.4 4.3zm-65-156.9l-42.5 48.6c-8.5-5.3-18-9.2-28-11.6l4.3-64.4c24.4 4.1 46.9 13.7 66.2 27.5zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dhl": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dalsey", + "Hillblom and Lynn", + "german", + "package", + "shipping" + ] + }, + "unicode": "f790", + "label": "DHL", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M238 301.2h58.7L319 271h-58.7L238 301.2zM0 282.9v6.4h81.8l4.7-6.4H0zM172.9 271c-8.7 0-6-3.6-4.6-5.5 2.8-3.8 7.6-10.4 10.4-14.1 2.8-3.7 2.8-5.9-2.8-5.9h-51l-41.1 55.8h100.1c33.1 0 51.5-22.5 57.2-30.3h-68.2zm317.5-6.9l39.3-53.4h-62.2l-39.3 53.4h62.2zM95.3 271H0v6.4h90.6l4.7-6.4zm111-26.6c-2.8 3.8-7.5 10.4-10.3 14.2-1.4 2-4.1 5.5 4.6 5.5h45.6s7.3-10 13.5-18.4c8.4-11.4.7-35-29.2-35H112.6l-20.4 27.8h111.4c5.6 0 5.5 2.2 2.7 5.9zM0 301.2h73.1l4.7-6.4H0v6.4zm323 0h58.7L404 271h-58.7c-.1 0-22.3 30.2-22.3 30.2zm222 .1h95v-6.4h-90.3l-4.7 6.4zm22.3-30.3l-4.7 6.4H640V271h-72.7zm-13.5 18.3H640v-6.4h-81.5l-4.7 6.4zm-164.2-78.6l-22.5 30.6h-26.2l22.5-30.6h-58.7l-39.3 53.4H409l39.3-53.4h-58.7zm33.5 60.3s-4.3 5.9-6.4 8.7c-7.4 10-.9 21.6 23.2 21.6h94.3l22.3-30.3H423.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "diagram-next": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "row", + "subtask", + "successor", + "table" + ] + }, + "unicode": "e476", + "label": "Diagram Next", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 160c0 35.3-28.7 64-64 64H280v64h46.1c21.4 0 32.1 25.9 17 41L273 399c-9.4 9.4-24.6 9.4-33.9 0L169 329c-15.1-15.1-4.4-41 17-41H232V224H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64v64zM448 416V352H365.3l.4-.4c18.4-18.4 20.4-43.7 11-63.6l71.3 0c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64V352c0-35.3 28.7-64 64-64l71.3 0c-9.4 19.9-7.4 45.2 11 63.6l.4 .4H64v64H210.7l5.7 5.7c21.9 21.9 57.3 21.9 79.2 0l5.7-5.7H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diagram-predecessor": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "predecessor", + "previous", + "row", + "subtask", + "table" + ] + }, + "unicode": "e477", + "label": "Diagram Predecessor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767208, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 416l0-64L64 352l0 64 384 0zm0 64L64 480c-35.3 0-64-28.7-64-64l0-64c0-35.3 28.7-64 64-64l384 0c35.3 0 64 28.7 64 64l0 64c0 35.3-28.7 64-64 64zM288 160c0 35.3-28.7 64-64 64L64 224c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l144 0 16 0 144 0c44.2 0 80 35.8 80 80l0 16 38.1 0c21.4 0 32.1 25.9 17 41L433 239c-9.4 9.4-24.6 9.4-33.9 0L329 169c-15.1-15.1-4.4-41 17-41l38.1 0 0-16c0-8.8-7.2-16-16-16l-80 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diagram-project": { + "aliases": { + "names": [ + "project-diagram" + ], + "unicodes": { + "secondary": [ + "10f542" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "network", + "pert" + ] + }, + "unicode": "f542", + "label": "Diagram Project", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48V96H384V80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H432c-26.5 0-48-21.5-48-48V160H192v16c0 1.7-.1 3.4-.3 5L272 288h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V336c0-1.7 .1-3.4 .3-5L144 224H48c-26.5 0-48-21.5-48-48V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diagram-successor": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "next", + "row", + "subtask", + "successor", + "table" + ] + }, + "unicode": "e47a", + "label": "Diagram Successor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 416l0-64c0-35.3-28.7-64-64-64L64 288c-35.3 0-64 28.7-64 64l0 64c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64zM64 160l0-64 144 0 16 0 0 64L64 160zm224 0l0-64 80 0c8.8 0 16 7.2 16 16l0 16-38.1 0c-21.4 0-32.1 25.9-17 41L399 239c9.4 9.4 24.6 9.4 33.9 0L503 169c15.1-15.1 4.4-41-17-41L448 128l0-16c0-44.2-35.8-80-80-80L224 32l-16 0L64 32C28.7 32 0 60.7 0 96l0 64c0 35.3 28.7 64 64 64l160 0c35.3 0 64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diamond": { + "aliases": { + "unicodes": { + "composite": [ + "2666" + ], + "secondary": [ + "10f219" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "card", + "cards", + "diamond suit", + "game", + "gem", + "gemstone", + "poker", + "suit" + ] + }, + "unicode": "f219", + "label": "Diamond", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M284.3 11.7c-15.6-15.6-40.9-15.6-56.6 0l-216 216c-15.6 15.6-15.6 40.9 0 56.6l216 216c15.6 15.6 40.9 15.6 56.6 0l216-216c15.6-15.6 15.6-40.9 0-56.6l-216-216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diamond-turn-right": { + "aliases": { + "names": [ + "directions" + ], + "unicodes": { + "secondary": [ + "10f5eb" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "map", + "navigation", + "sign", + "turn" + ] + }, + "unicode": "f5eb", + "label": "Diamond Turn Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M227.7 11.7c15.6-15.6 40.9-15.6 56.6 0l216 216c15.6 15.6 15.6 40.9 0 56.6l-216 216c-15.6 15.6-40.9 15.6-56.6 0l-216-216c-15.6-15.6-15.6-40.9 0-56.6l216-216zm87.6 137c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8v56H224c-35.3 0-64 28.7-64 64v48c0 13.3 10.7 24 24 24s24-10.7 24-24V280c0-8.8 7.2-16 16-16h64v56c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l80-80c6.2-6.2 6.2-16.4 0-22.6l-80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diaspora": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f791", + "label": "Diaspora", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M251.64 354.55c-1.4 0-88 119.9-88.7 119.9S76.34 414 76 413.25s86.6-125.7 86.6-127.4c0-2.2-129.6-44-137.6-47.1-1.3-.5 31.4-101.8 31.7-102.1.6-.7 144.4 47 145.5 47 .4 0 .9-.6 1-1.3.4-2 1-148.6 1.7-149.6.8-1.2 104.5-.7 105.1-.3 1.5 1 3.5 156.1 6.1 156.1 1.4 0 138.7-47 139.3-46.3.8.9 31.9 102.2 31.5 102.6-.9.9-140.2 47.1-140.6 48.8-.3 1.4 82.8 122.1 82.5 122.9s-85.5 63.5-86.3 63.5c-1-.2-89-125.5-90.9-125.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dice": { + "aliases": { + "unicodes": { + "composite": [ + "1f3b2" + ], + "secondary": [ + "10f522" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "dice", + "die", + "gambling", + "game", + "game die", + "roll" + ] + }, + "unicode": "f522", + "label": "Dice", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M274.9 34.3c-28.1-28.1-73.7-28.1-101.8 0L34.3 173.1c-28.1 28.1-28.1 73.7 0 101.8L173.1 413.7c28.1 28.1 73.7 28.1 101.8 0L413.7 274.9c28.1-28.1 28.1-73.7 0-101.8L274.9 34.3zM200 224a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM96 200a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM224 376a24 24 0 1 1 0-48 24 24 0 1 1 0 48zM352 200a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM224 120a24 24 0 1 1 0-48 24 24 0 1 1 0 48zm96 328c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H461.7c11.6 36 3.1 77-25.4 105.5L320 413.8V448zM480 328a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-d20": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6cf" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "chance", + "d&d", + "dnd", + "fantasy", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f6cf", + "label": "Dice D20", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48.7 125.8l53.2 31.9c7.8 4.7 17.8 2 22.2-5.9L201.6 12.1c3-5.4-.9-12.1-7.1-12.1c-1.6 0-3.2 .5-4.6 1.4L47.9 98.8c-9.6 6.6-9.2 20.9 .8 26.9zM16 171.7V295.3c0 8 10.4 11 14.7 4.4l60-92c5-7.6 2.6-17.8-5.2-22.5L40.2 158C29.6 151.6 16 159.3 16 171.7zM310.4 12.1l77.6 139.6c4.4 7.9 14.5 10.6 22.2 5.9l53.2-31.9c10-6 10.4-20.3 .8-26.9L322.1 1.4c-1.4-.9-3-1.4-4.6-1.4c-6.2 0-10.1 6.7-7.1 12.1zM496 171.7c0-12.4-13.6-20.1-24.2-13.7l-45.3 27.2c-7.8 4.7-10.1 14.9-5.2 22.5l60 92c4.3 6.7 14.7 3.6 14.7-4.4V171.7zm-49.3 246L286.1 436.6c-8.1 .9-14.1 7.8-14.1 15.9v52.8c0 3.7 3 6.8 6.8 6.8c.8 0 1.6-.1 2.4-.4l172.7-64c6.1-2.2 10.1-8 10.1-14.5c0-9.3-8.1-16.5-17.3-15.4zM233.2 512c3.7 0 6.8-3 6.8-6.8V452.6c0-8.1-6.1-14.9-14.1-15.9l-160.6-19c-9.2-1.1-17.3 6.1-17.3 15.4c0 6.5 4 12.3 10.1 14.5l172.7 64c.8 .3 1.6 .4 2.4 .4zM41.7 382.9l170.9 20.2c7.8 .9 13.4-7.5 9.5-14.3l-85.7-150c-5.9-10.4-20.7-10.8-27.3-.8L30.2 358.2c-6.5 9.9-.3 23.3 11.5 24.7zm439.6-24.8L402.9 238.1c-6.5-10-21.4-9.6-27.3 .8L290.2 388.5c-3.9 6.8 1.6 15.2 9.5 14.3l170.1-20c11.8-1.4 18-14.7 11.5-24.6zm-216.9 11l78.4-137.2c6.1-10.7-1.6-23.9-13.9-23.9H183.1c-12.3 0-20 13.3-13.9 23.9l78.4 137.2c3.7 6.4 13 6.4 16.7 0zM174.4 176H337.6c12.2 0 19.9-13.1 14-23.8l-80-144c-2.8-5.1-8.2-8.2-14-8.2h-3.2c-5.8 0-11.2 3.2-14 8.2l-80 144c-5.9 10.7 1.8 23.8 14 23.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-d6": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d1" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "chance", + "d&d", + "dnd", + "fantasy", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f6d1", + "label": "Dice D6", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201 10.3c14.3-7.8 31.6-7.8 46 0L422.3 106c5.1 2.8 8.3 8.2 8.3 14s-3.2 11.2-8.3 14L231.7 238c-4.8 2.6-10.5 2.6-15.3 0L25.7 134c-5.1-2.8-8.3-8.2-8.3-14s3.2-11.2 8.3-14L201 10.3zM23.7 170l176 96c5.1 2.8 8.3 8.2 8.3 14V496c0 5.6-3 10.9-7.8 13.8s-10.9 3-15.8 .3L25 423.1C9.6 414.7 0 398.6 0 381V184c0-5.6 3-10.9 7.8-13.8s10.9-3 15.8-.3zm400.7 0c5-2.7 11-2.6 15.8 .3s7.8 8.1 7.8 13.8V381c0 17.6-9.6 33.7-25 42.1L263.7 510c-5 2.7-11 2.6-15.8-.3s-7.8-8.1-7.8-13.8V280c0-5.9 3.2-11.2 8.3-14l176-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-five": { + "aliases": { + "unicodes": { + "composite": [ + "2684" + ], + "secondary": [ + "10f523" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-5", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f523", + "label": "Dice Five", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM96 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM224 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64-64a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32 160a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-four": { + "aliases": { + "unicodes": { + "composite": [ + "2683" + ], + "secondary": [ + "10f524" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-4", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f524", + "label": "Dice Four", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm160 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM128 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM352 160a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM320 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-one": { + "aliases": { + "unicodes": { + "composite": [ + "2680" + ], + "secondary": [ + "10f525" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-1", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f525", + "label": "Dice One", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM224 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-six": { + "aliases": { + "unicodes": { + "composite": [ + "2685" + ], + "secondary": [ + "10f526" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-6", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f526", + "label": "Dice Six", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm160 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM128 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm32 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM320 192a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm32 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM320 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-three": { + "aliases": { + "unicodes": { + "composite": [ + "2682" + ], + "secondary": [ + "10f527" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-3", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f527", + "label": "Dice Three", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64 128a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm128 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-two": { + "aliases": { + "unicodes": { + "composite": [ + "2681" + ], + "secondary": [ + "10f528" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-2", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f528", + "label": "Dice Two", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM352 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM128 192a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "digg": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a6", + "label": "Digg Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "digital-ocean": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f391", + "label": "Digital Ocean", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M87 481.8h73.7v-73.6H87zM25.4 346.6v61.6H87v-61.6zm466.2-169.7c-23-74.2-82.4-133.3-156.6-156.6C164.9-32.8 8 93.7 8 255.9h95.8c0-101.8 101-180.5 208.1-141.7 39.7 14.3 71.5 46.1 85.8 85.7 39.1 107-39.7 207.8-141.4 208v.3h-.3V504c162.6 0 288.8-156.8 235.6-327.1zm-235.3 231v-95.3h-95.6v95.6H256v-.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "discord": { + "changes": [ + "5.0.0", + "5.15.4", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f392", + "label": "Discord", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "discourse": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f393", + "label": "Discourse", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "disease": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7fa" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacteria", + "cancer", + "coronavirus", + "covid-19", + "flu", + "illness", + "infection", + "pandemic", + "sickness", + "virus" + ] + }, + "unicode": "f7fa", + "label": "Disease", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M236.4 61.4L227 75.5c-21.3 32-59.4 48.5-97.3 42.1l-59.6-9.9C33.4 101.6 0 129.9 .1 167.1c0 15.9 6.4 31.2 17.6 42.5l29.2 29.2c11 11 17.2 25.9 17.2 41.5c0 15.8-6.4 30.9-17.7 42L33.3 335.1C22.2 345.9 16 360.7 16 376.2c0 36.8 34.1 64.2 70.1 56.2l62.3-13.8c7.7-1.7 15.7-2.6 23.6-2.6h10c27.2 0 53.7 9.3 75 26.3L287.8 467c10.5 8.4 23.6 13 37 13c32.7 0 59.3-26.5 59.3-59.3l0-25.2c0-34.9 21.4-66.2 53.9-78.8l36.9-14.3c22.4-8.7 37.2-30.3 37.2-54.3c0-28.1-20.1-52.3-47.8-57.3l-28-5.1c-36.5-6.7-65.4-34.5-73.6-70.7l-7.1-31.5C348.9 53.4 322.1 32 291.3 32c-22 0-42.6 11-54.9 29.4zM160 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm0 80a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "display": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Screen", + "computer", + "desktop", + "imac" + ] + }, + "unicode": "e163", + "label": "Display", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767341, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V352H64V64H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "divide": { + "aliases": { + "unicodes": { + "composite": [ + "2797", + "f7" + ], + "secondary": [ + "10f529" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Division Sign", + "arithmetic", + "calculus", + "divide", + "division", + "math", + "sign", + "÷" + ] + }, + "unicode": "f529", + "label": "Divide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M272 96a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 320a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM400 288c17.7 0 32-14.3 32-32s-14.3-32-32-32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H400z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dna": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ec" + ], + "secondary": [ + "10f471" + ] + } + }, + "changes": [ + "5.0.7", + "5.0.10", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biologist", + "dna", + "double helix", + "evolution", + "gene", + "genetic", + "genetics", + "helix", + "life", + "molecule", + "protein" + ] + }, + "unicode": "f471", + "label": "Dna", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 0c17.7 0 32 14.3 32 32c0 59.8-30.3 107.5-69.4 146.6c-28 28-62.5 53.5-97.3 77.4l-2.5 1.7c-11.9 8.1-23.8 16.1-35.5 23.9l0 0 0 0 0 0-1.6 1c-6 4-11.9 7.9-17.8 11.9c-20.9 14-40.8 27.7-59.3 41.5H283.3c-9.8-7.4-20.1-14.7-30.7-22.1l7-4.7 3-2c15.1-10.1 30.9-20.6 46.7-31.6c25 18.1 48.9 37.3 69.4 57.7C417.7 372.5 448 420.2 448 480c0 17.7-14.3 32-32 32s-32-14.3-32-32H64c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-59.8 30.3-107.5 69.4-146.6c28-28 62.5-53.5 97.3-77.4c-34.8-23.9-69.3-49.3-97.3-77.4C30.3 139.5 0 91.8 0 32C0 14.3 14.3 0 32 0S64 14.3 64 32H384c0-17.7 14.3-32 32-32zM338.6 384H109.4c-10.1 10.6-18.6 21.3-25.5 32H364.1c-6.8-10.7-15.3-21.4-25.5-32zM109.4 128H338.6c10.1-10.7 18.6-21.3 25.5-32H83.9c6.8 10.7 15.3 21.3 25.5 32zm55.4 48c18.4 13.8 38.4 27.5 59.3 41.5c20.9-14 40.8-27.7 59.3-41.5H164.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dochub": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f394", + "label": "DocHub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "docker": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f395", + "label": "Docker", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dog": { + "aliases": { + "unicodes": { + "composite": [ + "1f415" + ], + "secondary": [ + "10f6d3" + ] + } + }, + "changes": [ + "5.4.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "canine", + "dog", + "fauna", + "mammal", + "pet", + "pooch", + "puppy", + "woof" + ] + }, + "unicode": "f6d3", + "label": "Dog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309.6 158.5L332.7 19.8C334.6 8.4 344.5 0 356.1 0c7.5 0 14.5 3.5 19 9.5L392 32h52.1c12.7 0 24.9 5.1 33.9 14.1L496 64h56c13.3 0 24 10.7 24 24v24c0 44.2-35.8 80-80 80H464 448 426.7l-5.1 30.5-112-64zM416 256.1L416 480c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V364.8c-24 12.3-51.2 19.2-80 19.2s-56-6.9-80-19.2V480c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V249.8c-28.8-10.9-51.4-35.3-59.2-66.5L1 167.8c-4.3-17.1 6.1-34.5 23.3-38.8s34.5 6.1 38.8 23.3l3.9 15.5C70.5 182 83.3 192 98 192h30 16H303.8L416 256.1zM464 80a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dollar-sign": { + "aliases": { + "names": [ + "dollar", + "usd" + ], + "unicodes": { + "composite": [ + "1f4b2", + "f155" + ], + "primary": [ + "f155" + ], + "secondary": [ + "1024", + "10f155" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.0.9", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dollar Sign", + "currency", + "dollar", + "heavy dollar sign", + "money" + ] + }, + "unicode": "24", + "label": "Dollar Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0c17.7 0 32 14.3 32 32V67.7c1.6 .2 3.1 .4 4.7 .7c.4 .1 .7 .1 1.1 .2l48 8.8c17.4 3.2 28.9 19.9 25.7 37.2s-19.9 28.9-37.2 25.7l-47.5-8.7c-31.3-4.6-58.9-1.5-78.3 6.2s-27.2 18.3-29 28.1c-2 10.7-.5 16.7 1.2 20.4c1.8 3.9 5.5 8.3 12.8 13.2c16.3 10.7 41.3 17.7 73.7 26.3l2.9 .8c28.6 7.6 63.6 16.8 89.6 33.8c14.2 9.3 27.6 21.9 35.9 39.5c8.5 17.9 10.3 37.9 6.4 59.2c-6.9 38-33.1 63.4-65.6 76.7c-13.7 5.6-28.6 9.2-44.4 11V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.1c-.4-.1-.9-.1-1.3-.2l-.2 0 0 0c-24.4-3.8-64.5-14.3-91.5-26.3c-16.1-7.2-23.4-26.1-16.2-42.2s26.1-23.4 42.2-16.2c20.9 9.3 55.3 18.5 75.2 21.6c31.9 4.7 58.2 2 76-5.3c16.9-6.9 24.6-16.9 26.8-28.9c1.9-10.6 .4-16.7-1.3-20.4c-1.9-4-5.6-8.4-13-13.3c-16.4-10.7-41.5-17.7-74-26.3l-2.8-.7 0 0C119.4 279.3 84.4 270 58.4 253c-14.2-9.3-27.5-22-35.8-39.6c-8.4-17.9-10.1-37.9-6.1-59.2C23.7 116 52.3 91.2 84.8 78.3c13.3-5.3 27.9-8.9 43.2-11V32c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dolly": { + "aliases": { + "names": [ + "dolly-box" + ], + "unicodes": { + "secondary": [ + "10f472" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "shipping", + "transport" + ] + }, + "unicode": "f472", + "label": "Dolly", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0h72.9c27.5 0 52 17.6 60.7 43.8L257.7 320c30.1 .5 56.8 14.9 74 37l202.1-67.4c16.8-5.6 34.9 3.5 40.5 20.2s-3.5 34.9-20.2 40.5L352 417.7c-.9 52.2-43.5 94.3-96 94.3c-53 0-96-43-96-96c0-30.8 14.5-58.2 37-75.8L104.9 64H32C14.3 64 0 49.7 0 32zM244.8 134.5c-5.5-16.8 3.7-34.9 20.5-40.3L311 79.4l19.8 60.9 60.9-19.8L371.8 59.6l45.7-14.8c16.8-5.5 34.9 3.7 40.3 20.5l49.4 152.2c5.5 16.8-3.7 34.9-20.5 40.3L334.5 307.2c-16.8 5.5-34.9-3.7-40.3-20.5L244.8 134.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dong-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dong Sign", + "currency" + ] + }, + "unicode": "e169", + "label": "Dong Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M288 32c-17.7 0-32 14.3-32 32l-32 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v49.1c-18.8-10.9-40.7-17.1-64-17.1c-70.7 0-128 57.3-128 128s57.3 128 128 128c24.5 0 47.4-6.9 66.8-18.8c5 11.1 16.2 18.8 29.2 18.8c17.7 0 32-14.3 32-32V288 128c17.7 0 32-14.3 32-32s-14.3-32-32-32c0-17.7-14.3-32-32-32zM128 288a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "door-closed": { + "aliases": { + "unicodes": { + "composite": [ + "1f6aa" + ], + "secondary": [ + "10f52a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doo", + "door", + "enter", + "exit", + "locked" + ] + }, + "unicode": "f52a", + "label": "Door Closed", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 64c0-35.3 28.7-64 64-64H416c35.3 0 64 28.7 64 64V448h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H432 144 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96V64zM384 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "door-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f52b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "enter", + "exit", + "welcome" + ] + }, + "unicode": "f52b", + "label": "Door Open", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 32c0-9.9-4.5-19.2-12.3-25.2S289.8-1.4 280.2 1l-179.9 45C79 51.3 64 70.5 64 92.5V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 288h32V480 32zM256 256c0 17.7-10.7 32-24 32s-24-14.3-24-32s10.7-32 24-32s24 14.3 24 32zm96-128h96V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H512V128c0-35.3-28.7-64-64-64H352v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dove": { + "aliases": { + "unicodes": { + "composite": [ + "1f54a" + ], + "secondary": [ + "10f4ba" + ] + } + }, + "changes": [ + "5.0.9", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "dove", + "fauna", + "fly", + "flying", + "peace", + "war" + ] + }, + "unicode": "f4ba", + "label": "Dove", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160.8 96.5c14 17 31 30.9 49.5 42.2c25.9 15.8 53.7 25.9 77.7 31.6V138.8C265.8 108.5 250 71.5 248.6 28c-.4-11.3-7.5-21.5-18.4-24.4c-7.6-2-15.8-.2-21 5.8c-13.3 15.4-32.7 44.6-48.4 87.2zM320 144v30.6l0 0v1.3l0 0 0 32.1c-60.8-5.1-185-43.8-219.3-157.2C97.4 40 87.9 32 76.6 32c-7.9 0-15.3 3.9-18.8 11C46.8 65.9 32 112.1 32 176c0 116.9 80.1 180.5 118.4 202.8L11.8 416.6C6.7 418 2.6 421.8 .9 426.8s-.8 10.6 2.3 14.8C21.7 466.2 77.3 512 160 512c3.6 0 7.2-1.2 10-3.5L245.6 448H320c88.4 0 160-71.6 160-160V128l29.9-44.9c1.3-2 2.1-4.4 2.1-6.8c0-6.8-5.5-12.3-12.3-12.3H400c-44.2 0-80 35.8-80 80zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "down-left-and-up-right-to-center": { + "aliases": { + "names": [ + "compress-alt" + ], + "unicodes": { + "secondary": [ + "10f422" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "unicode": "f422", + "label": "Down Left And Up Right To Center", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M439 7c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8H296c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39L439 7zM72 272H216c13.3 0 24 10.7 24 24V440c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39L73 505c-9.4 9.4-24.6 9.4-33.9 0L7 473c-9.4-9.4-9.4-24.6 0-33.9l87-87L55 313c-6.9-6.9-8.9-17.2-5.2-26.2s12.5-14.8 22.2-14.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "down-long": { + "aliases": { + "names": [ + "long-arrow-alt-down" + ], + "unicodes": { + "secondary": [ + "10f309" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "long-arrow-down" + ] + }, + "unicode": "f309", + "label": "Down Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M2 334.5c-3.8 8.8-2 19 4.6 26l136 144c4.5 4.8 10.8 7.5 17.4 7.5s12.9-2.7 17.4-7.5l136-144c6.6-7 8.4-17.2 4.6-26s-12.5-14.5-22-14.5l-72 0 0-288c0-17.7-14.3-32-32-32L128 0C110.3 0 96 14.3 96 32l0 288-72 0c-9.6 0-18.2 5.7-22 14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "download": { + "aliases": { + "unicodes": { + "secondary": [ + "10f019" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "export", + "hard drive", + "save", + "transfer" + ] + }, + "unicode": "f019", + "label": "Download", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "draft2digital": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f396", + "label": "Draft2digital", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M480 398.1l-144-82.2v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480zM369.9 371l47.1 27.2-47.1 27.2zM134.2 161.4c0 12.4-10 22.4-22.4 22.4s-22.4-10-22.4-22.4 10-22.4 22.4-22.4 22.4 10.1 22.4 22.4zM82.5 380.5c25.6-27.4 97.7-104.7 150.8-169.9 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dragon": { + "aliases": { + "unicodes": { + "composite": [ + "1f409" + ], + "secondary": [ + "10f6d5" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "dragon", + "fairy tale", + "fantasy", + "fire", + "lizard", + "serpent" + ] + }, + "unicode": "f6d5", + "label": "Dragon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M352 124.5l-51.9-13c-6.5-1.6-11.3-7.1-12-13.8s2.8-13.1 8.7-16.1l40.8-20.4L294.4 28.8c-5.5-4.1-7.8-11.3-5.6-17.9S297.1 0 304 0H416h32 16c30.2 0 58.7 14.2 76.8 38.4l57.6 76.8c6.2 8.3 9.6 18.4 9.6 28.8c0 26.5-21.5 48-48 48H538.5c-17 0-33.3-6.7-45.3-18.7L480 160H448v21.5c0 24.8 12.8 47.9 33.8 61.1l106.6 66.6c32.1 20.1 51.6 55.2 51.6 93.1C640 462.9 590.9 512 530.2 512H496 432 32.3c-3.3 0-6.6-.4-9.6-1.4C13.5 507.8 6 501 2.4 492.1C1 488.7 .2 485.2 0 481.4c-.2-3.7 .3-7.3 1.3-10.7c2.8-9.2 9.6-16.7 18.6-20.4c3-1.2 6.2-2 9.5-2.2L433.3 412c8.3-.7 14.7-7.7 14.7-16.1c0-4.3-1.7-8.4-4.7-11.4l-44.4-44.4c-30-30-46.9-70.7-46.9-113.1V181.5v-57zM512 72.3c0-.1 0-.2 0-.3s0-.2 0-.3v.6zm-1.3 7.4L464.3 68.1c-.2 1.3-.3 2.6-.3 3.9c0 13.3 10.7 24 24 24c10.6 0 19.5-6.8 22.7-16.3zM130.9 116.5c16.3-14.5 40.4-16.2 58.5-4.1l130.6 87V227c0 32.8 8.4 64.8 24 93H112c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7L171 232.3 18.4 255.8c-7 1.1-13.9-2.6-16.9-9s-1.5-14.1 3.8-18.8L130.9 116.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "draw-polygon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ee" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object", + "render", + "shape" + ] + }, + "unicode": "f5ee", + "label": "Draw Polygon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 151.4V360.6c9.7 5.6 17.8 13.7 23.4 23.4H328.6c0-.1 .1-.2 .1-.3l-4.5-7.9-32-56 0 0c-1.4 .1-2.8 .1-4.2 .1c-35.3 0-64-28.7-64-64s28.7-64 64-64c1.4 0 2.8 0 4.2 .1l0 0 32-56 4.5-7.9-.1-.3H119.4c-5.6 9.7-13.7 17.8-23.4 23.4zM384.3 352c35.2 .2 63.7 28.7 63.7 64c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V151.4C12.9 140.4 0 119.7 0 96C0 60.7 28.7 32 64 32c23.7 0 44.4 12.9 55.4 32H328.6c11.1-19.1 31.7-32 55.4-32c35.3 0 64 28.7 64 64c0 35.3-28.5 63.8-63.7 64l-4.5 7.9-32 56-2.3 4c4.2 8.5 6.5 18 6.5 28.1s-2.3 19.6-6.5 28.1l2.3 4 32 56 4.5 7.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dribbble": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f17d", + "label": "Dribbble", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dropbox": { + "changes": [ + "3.2.0", + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16b", + "label": "Dropbox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "droplet": { + "aliases": { + "names": [ + "tint" + ], + "unicodes": { + "composite": [ + "1f4a7" + ], + "secondary": [ + "10f043" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "color", + "comic", + "drop", + "droplet", + "raindrop", + "sweat", + "waterdrop" + ] + }, + "unicode": "f043", + "label": "Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 512C86 512 0 426 0 320C0 228.8 130.2 57.7 166.6 11.7C172.6 4.2 181.5 0 191.1 0h1.8c9.6 0 18.5 4.2 24.5 11.7C253.8 57.7 384 228.8 384 320c0 106-86 192-192 192zM96 336c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 61.9 50.1 112 112 112c8.8 0 16-7.2 16-16s-7.2-16-16-16c-44.2 0-80-35.8-80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "droplet-slash": { + "aliases": { + "names": [ + "tint-slash" + ], + "unicodes": { + "secondary": [ + "10f5c7" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "color", + "drop", + "droplet", + "raindrop", + "waterdrop" + ] + }, + "unicode": "f5c7", + "label": "Droplet Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 512c53.2 0 101.4-21.6 136.1-56.6l-298.3-235C140 257.1 128 292.3 128 320c0 106 86 192 192 192zM505.2 370.7c4.4-16.1 6.8-33.1 6.8-50.7c0-91.2-130.2-262.3-166.6-308.3C339.4 4.2 330.5 0 320.9 0h-1.8c-9.6 0-18.5 4.2-24.5 11.7C277.8 33 240.7 81.3 205.8 136L38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L505.2 370.7zM224 336c0 44.2 35.8 80 80 80c8.8 0 16 7.2 16 16s-7.2 16-16 16c-61.9 0-112-50.1-112-112c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drum": { + "aliases": { + "unicodes": { + "composite": [ + "1f941" + ], + "secondary": [ + "10f569" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drum", + "drumsticks", + "instrument", + "music", + "percussion", + "snare", + "sound" + ] + }, + "unicode": "f569", + "label": "Drum", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M501.2 76.1c11.1-7.3 14.2-22.1 6.9-33.2s-22.1-14.2-33.2-6.9L370.2 104.5C335.8 98.7 297 96 256 96C114.6 96 0 128 0 208V368c0 31.3 27.4 58.8 72 78.7V344c0-13.3 10.7-24 24-24s24 10.7 24 24V463.4c33 8.9 71.1 14.5 112 16.1V376c0-13.3 10.7-24 24-24s24 10.7 24 24V479.5c40.9-1.6 79-7.2 112-16.1V344c0-13.3 10.7-24 24-24s24 10.7 24 24V446.7c44.6-19.9 72-47.4 72-78.7V208c0-41.1-30.2-69.5-78.8-87.4l67.9-44.5zM307.4 145.6l-64.6 42.3c-11.1 7.3-14.2 22.1-6.9 33.2s22.1 14.2 33.2 6.9l111.1-72.8c14.7 3.2 27.9 7 39.4 11.5C458.4 181.8 464 197.4 464 208c0 .8-2.7 17.2-46 35.9C379.1 260.7 322 272 256 272s-123.1-11.3-162-28.1C50.7 225.2 48 208.8 48 208c0-10.6 5.6-26.2 44.4-41.3C130.6 151.9 187.8 144 256 144c18 0 35.1 .5 51.4 1.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drum-steelpan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f56a" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calypso", + "instrument", + "music", + "percussion", + "reggae", + "snare", + "sound", + "steel", + "tropical" + ] + }, + "unicode": "f56a", + "label": "Drum Steelpan", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32c159.1 0 288 48 288 128V352c0 80-128.9 128-288 128S0 432 0 352V160C0 80 128.9 32 288 32zM528 160c0-9.9-8-29.9-55-49.8c-18.6-7.9-40.9-14.4-66-19.4l-27.8 43.6c-7.3 11.5-11.2 24.8-11.2 38.4c0 17.5 6.4 34.4 18.1 47.5l9.8 11c29.8-5.2 55.9-12.5 77.2-21.5c47.1-19.9 55-39.9 55-49.8zM349.2 237.3c-8-26.2-32.4-45.3-61.2-45.3s-53.3 19.1-61.2 45.3c19.4 1.7 39.9 2.7 61.2 2.7s41.8-.9 61.2-2.7zM169 90.8c-25.2 5-47.4 11.6-66 19.4C56 130.1 48 150.1 48 160s8 29.9 55 49.8c21.3 9 47.4 16.3 77.2 21.5l9.8-11c11.6-13.1 18.1-30 18.1-47.5c0-13.6-3.9-26.9-11.2-38.4L169 90.8zm56.3-8C224.5 87 224 91.5 224 96c0 35.3 28.7 64 64 64s64-28.7 64-64c0-4.5-.5-9-1.4-13.2C330.8 81 309.8 80 288 80s-42.8 1-62.6 2.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drumstick-bite": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d7" + ] + } + }, + "changes": [ + "5.4.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bone", + "chicken", + "leg", + "meat", + "poultry", + "turkey" + ] + }, + "unicode": "f6d7", + "label": "Drumstick Bite", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 265.2c0 8.5-3.4 16.6-9.4 22.6l-26.8 26.8c-12.3 12.3-32.5 11.4-49.4 7.2C69.8 320.6 65 320 60 320c-33.1 0-60 26.9-60 60s26.9 60 60 60c6.3 0 12 5.7 12 12c0 33.1 26.9 60 60 60s60-26.9 60-60c0-5-.6-9.8-1.8-14.5c-4.2-16.9-5.2-37.1 7.2-49.4l26.8-26.8c6-6 14.1-9.4 22.6-9.4H336c6.3 0 12.4-.3 18.5-1c11.9-1.2 16.4-15.5 10.8-26c-8.5-15.8-13.3-33.8-13.3-53c0-61.9 50.1-112 112-112c8 0 15.7 .8 23.2 2.4c11.7 2.5 24.1-5.9 22-17.6C494.5 62.5 422.5 0 336 0C238.8 0 160 78.8 160 176v89.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drupal": { + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a9", + "label": "Drupal Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M303.973,108.136C268.2,72.459,234.187,38.35,224.047,0c-9.957,38.35-44.25,72.459-80.019,108.136C90.467,161.7,29.716,222.356,29.716,313.436c-2.337,107.3,82.752,196.18,190.053,198.517S415.948,429.2,418.285,321.9q.091-4.231,0-8.464C418.285,222.356,357.534,161.7,303.973,108.136Zm-174.326,223a130.282,130.282,0,0,0-15.211,24.153,4.978,4.978,0,0,1-3.319,2.766h-1.659c-4.333,0-9.219-8.481-9.219-8.481h0c-1.29-2.028-2.489-4.149-3.687-6.361l-.83-1.752c-11.247-25.72-1.475-62.318-1.475-62.318h0a160.585,160.585,0,0,1,23.231-49.873A290.8,290.8,0,0,1,138.5,201.613l9.219,9.219,43.512,44.434a4.979,4.979,0,0,1,0,6.638L145.78,312.33h0Zm96.612,127.311a67.2,67.2,0,0,1-49.781-111.915c14.2-16.871,31.528-33.464,50.334-55.313,22.309,23.785,36.875,40.1,51.164,57.986a28.413,28.413,0,0,1,2.95,4.425,65.905,65.905,0,0,1,11.984,37.981,66.651,66.651,0,0,1-66.466,66.836ZM352.371,351.6h0a7.743,7.743,0,0,1-6.176,5.347H344.9a11.249,11.249,0,0,1-6.269-5.07h0a348.21,348.21,0,0,0-39.456-48.952L281.387,284.49,222.3,223.185a497.888,497.888,0,0,1-35.4-36.322,12.033,12.033,0,0,0-.922-1.382,35.4,35.4,0,0,1-4.7-9.219V174.51a31.346,31.346,0,0,1,9.218-27.656c11.432-11.431,22.955-22.954,33.833-34.939,11.984,13.275,24.8,26,37.428,38.627h0a530.991,530.991,0,0,1,69.6,79.1,147.494,147.494,0,0,1,27.011,83.8A134.109,134.109,0,0,1,352.371,351.6Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dumbbell": { + "aliases": { + "unicodes": { + "secondary": [ + "10f44b" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exercise", + "gym", + "strength", + "weight", + "weight-lifting" + ] + }, + "unicode": "f44b", + "label": "Dumbbell", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V224v64V448c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V384H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H96V64zm448 0v64h32c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32v64c0 17.7-14.3 32-32 32H544v64c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V288 224 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32zM416 224v64H224V224H416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dumpster": { + "aliases": { + "unicodes": { + "secondary": [ + "10f793" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "bin", + "commercial", + "trash", + "waste" + ] + }, + "unicode": "f793", + "label": "Dumpster", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94L140.5 32H49.7zM272 160V32H173.1L147.5 160H272zm32 0H428.5L402.9 32H304V160zm157.1 0h94c11.5 0 20.9-9.3 20.9-20.9c0-2.1-.3-4.1-.9-6.1L549.2 48.9C546.1 38.9 536.8 32 526.3 32H435.5l25.6 128zM32 192l4 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H44L64 448c0 17.7 14.3 32 32 32s32-14.3 32-32H448c0 17.7 14.3 32 32 32s32-14.3 32-32l20-160h12c17.7 0 32-14.3 32-32s-14.3-32-32-32h-4l4-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dumpster-fire": { + "aliases": { + "unicodes": { + "secondary": [ + "10f794" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "bin", + "commercial", + "danger", + "dangerous", + "euphemism", + "flame", + "heat", + "hot", + "trash", + "waste" + ] + }, + "unicode": "f794", + "label": "Dumpster Fire", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94L140.5 32H49.7zM272 160V32H173.1L147.5 160H272zm32 0h58c15.1-18.1 32.1-35.7 50.5-52.1c1.5-1.4 3.2-2.6 4.8-3.8L402.9 32H304V160zm209.9-23.7c17.4-15.8 43.9-16.2 61.7-1.2c-.1-.7-.3-1.4-.5-2.1L549.2 48.9C546.1 38.9 536.8 32 526.3 32H435.5l12.8 64.2c9.6 1 19 4.9 26.6 11.8c11.7 10.6 23 21.6 33.9 33.1c1.6-1.6 3.3-3.2 5-4.8zM325.2 210.7c3.8-6.2 7.9-12.5 12.3-18.7H32l4 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H44L64 448c0 17.7 14.3 32 32 32s32-14.3 32-32H337.6c-31-34.7-49.6-80.6-49.6-129.9c0-35.2 16.3-73.6 37.2-107.4zm128.4-78.9c-2.8-2.5-6.3-3.7-9.8-3.8c-3.6 0-7.2 1.2-10 3.7c-33.2 29.7-61.4 63.4-81.4 95.8c-19.7 31.9-32.4 66.2-32.4 92.6C320 407.9 390.3 480 480 480c88.7 0 160-72 160-159.8c0-20.2-9.6-50.9-24.2-79c-14.8-28.5-35.7-58.5-60.4-81.1c-5.6-5.1-14.4-5.2-20 0c-9.6 8.8-18.6 19.6-26.5 29.5c-17.3-20.7-35.8-39.9-55.5-57.7zM530 401c-15 10-31 15-49 15c-45 0-81-29-81-78c0-24 15-45 45-82c4 5 62 79 62 79l36-42c3 4 5 8 7 12c18 33 10 75-20 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dungeon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d9" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "building", + "d&d", + "dnd", + "door", + "entrance", + "fantasy", + "gate" + ] + }, + "unicode": "f6d9", + "label": "Dungeon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336.6 156.5c1.3 1.1 2.7 2.2 3.9 3.3c9.3 8.2 23 10.5 33.4 3.6l67.6-45.1c11.4-7.6 14.2-23.2 5.1-33.4C430 66.6 410.9 50.6 389.7 37.6c-11.9-7.3-26.9-1.4-32.1 11.6l-30.5 76.2c-4.5 11.1 .2 23.6 9.5 31.2zM328 36.8c5.1-12.8-1.6-27.4-15-30.5C294.7 2.2 275.6 0 256 0s-38.7 2.2-57 6.4C185.5 9.4 178.8 24 184 36.8l30.3 75.8c4.5 11.3 16.8 17.2 29 16c4.2-.4 8.4-.6 12.7-.6s8.6 .2 12.7 .6c12.1 1.2 24.4-4.7 29-16L328 36.8zM65.5 85c-9.1 10.2-6.3 25.8 5.1 33.4l67.6 45.1c10.3 6.9 24.1 4.6 33.4-3.6c1.3-1.1 2.6-2.3 4-3.3c9.3-7.5 13.9-20.1 9.5-31.2L154.4 49.2c-5.2-12.9-20.3-18.8-32.1-11.6C101.1 50.6 82 66.6 65.5 85zm314 137.1c.9 3.3 1.7 6.6 2.3 10c2.5 13 13 23.9 26.2 23.9h80c13.3 0 24.1-10.8 22.9-24c-2.5-27.2-9.3-53.2-19.7-77.3c-5.5-12.9-21.4-16.6-33.1-8.9l-68.6 45.7c-9.8 6.5-13.2 19.2-10 30.5zM53.9 145.8c-11.6-7.8-27.6-4-33.1 8.9C10.4 178.8 3.6 204.8 1.1 232c-1.2 13.2 9.6 24 22.9 24h80c13.3 0 23.8-10.8 26.2-23.9c.6-3.4 1.4-6.7 2.3-10c3.1-11.4-.2-24-10-30.5L53.9 145.8zM104 288H24c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V312c0-13.3-10.7-24-24-24zm304 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V312c0-13.3-10.7-24-24-24H408zM24 416c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V440c0-13.3-10.7-24-24-24H24zm384 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V440c0-13.3-10.7-24-24-24H408zM272 192c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V192zm-64 32c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V224zm128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dyalog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f399", + "label": "Dyalog", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "e": { + "aliases": { + "unicodes": { + "composite": [ + "65" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter E", + "Latin Small Letter E", + "letter" + ] + }, + "unicode": "45", + "label": "E", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 416c0 35.3 28.7 64 64 64H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ear-deaf": { + "aliases": { + "names": [ + "deaf", + "deafness", + "hard-of-hearing" + ], + "unicodes": { + "secondary": [ + "10f2a4" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ear", + "hearing", + "sign language" + ] + }, + "unicode": "f2a4", + "label": "Ear Deaf", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 54.6l-40 40c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l40-40c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3zm-320 320l-128 128c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3zM240 128c-57.6 0-105.1 43.6-111.3 99.5c-1.9 17.6-17.8 30.2-35.3 28.3s-30.2-17.8-28.3-35.3C74.8 132.5 149.4 64 240 64c97.2 0 176 78.8 176 176c0 46-17.7 87.9-46.6 119.3c-12 13-17.4 24.8-17.4 34.7V400c0 61.9-50.1 112-112 112c-17.7 0-32-14.3-32-32s14.3-32 32-32c26.5 0 48-21.5 48-48v-6.1c0-32.9 17.4-59.6 34.4-78c18.4-20 29.6-46.6 29.6-75.9c0-61.9-50.1-112-112-112zm0 80c-17.7 0-32 14.3-32 32c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-44.2 35.8-80 80-80s80 35.8 80 80c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ear-listen": { + "aliases": { + "names": [ + "assistive-listening-systems" + ], + "unicodes": { + "secondary": [ + "10f2a2" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amplify", + "audio", + "deaf", + "ear", + "headset", + "hearing", + "sound" + ] + }, + "unicode": "f2a2", + "label": "Ear Listen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M398.3 3.4c-15.8-7.9-35-1.5-42.9 14.3c-7.9 15.8-1.5 34.9 14.2 42.9l.4 .2c.4 .2 1.1 .6 2.1 1.2c2 1.2 5 3 8.7 5.6c7.5 5.2 17.6 13.2 27.7 24.2C428.5 113.4 448 146 448 192c0 17.7 14.3 32 32 32s32-14.3 32-32c0-66-28.5-113.4-56.5-143.7C441.6 33.2 427.7 22.2 417.3 15c-5.3-3.7-9.7-6.4-13-8.3c-1.6-1-3-1.7-4-2.2c-.5-.3-.9-.5-1.2-.7l-.4-.2-.2-.1-.1 0 0 0c0 0 0 0-14.3 28.6L398.3 3.4zM128.7 227.5c6.2-56 53.7-99.5 111.3-99.5c61.9 0 112 50.1 112 112c0 29.3-11.2 55.9-29.6 75.9c-17 18.4-34.4 45.1-34.4 78V400c0 26.5-21.5 48-48 48c-17.7 0-32 14.3-32 32s14.3 32 32 32c61.9 0 112-50.1 112-112v-6.1c0-9.8 5.4-21.7 17.4-34.7C398.3 327.9 416 286 416 240c0-97.2-78.8-176-176-176C149.4 64 74.8 132.5 65.1 220.5c-1.9 17.6 10.7 33.4 28.3 35.3s33.4-10.7 35.3-28.3zM32 512a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM192 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0zM208 240c0-17.7 14.3-32 32-32s32 14.3 32 32c0 13.3 10.7 24 24 24s24-10.7 24-24c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 13.3 10.7 24 24 24s24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earlybirds": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f39a", + "label": "Earlybirds", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "earth-africa": { + "aliases": { + "names": [ + "globe-africa" + ], + "unicodes": { + "composite": [ + "1f30d" + ], + "secondary": [ + "10f57c" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "africa", + "all", + "country", + "earth", + "europe", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f57c", + "label": "Earth Africa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.8 63.2l10 17.4c2.8 4.8 4.2 10.3 4.2 15.9v41.4c0 3.9 1.6 7.7 4.3 10.4c6.2 6.2 16.5 5.7 22-1.2l13.6-17c4.7-5.9 12.9-7.7 19.6-4.3l15.2 7.6c3.4 1.7 7.2 2.6 11 2.6c6.5 0 12.8-2.6 17.4-7.2l3.9-3.9c2.9-2.9 7.3-3.6 11-1.8l29.2 14.6c7.8 3.9 12.6 11.8 12.6 20.5c0 10.5-7.1 19.6-17.3 22.2l-35.4 8.8c-7.4 1.8-15.1 1.5-22.4-.9l-32-10.7c-3.3-1.1-6.7-1.7-10.2-1.7c-7 0-13.8 2.3-19.4 6.5L176 212c-10.1 7.6-16 19.4-16 32v28c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16v48c0 17.7 14.3 32 32 32c10.1 0 19.6-4.7 25.6-12.8l25.6-34.1c8.3-11.1 12.8-24.6 12.8-38.4V318.6c0-3.9 2.6-7.3 6.4-8.2l5.3-1.3c11.9-3 20.3-13.7 20.3-26c0-7.1-2.8-13.9-7.8-18.9l-33.5-33.5c-3.7-3.7-3.7-9.7 0-13.4c5.7-5.7 14.1-7.7 21.8-5.1l14.1 4.7c12.3 4.1 25.7-1.5 31.5-13c3.5-7 11.2-10.8 18.9-9.2l27.4 5.5C432 112.4 351.5 48 256 48c-27.7 0-54 5.4-78.2 15.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-americas": { + "aliases": { + "names": [ + "earth", + "earth-america", + "globe-americas" + ], + "unicodes": { + "composite": [ + "1f30e" + ], + "secondary": [ + "10f57d" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "america", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f57d", + "label": "Earth Americas", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M57.7 193l9.4 16.4c8.3 14.5 21.9 25.2 38 29.8L163 255.7c17.2 4.9 29 20.6 29 38.5v39.9c0 11 6.2 21 16 25.9s16 14.9 16 25.9v39c0 15.6 14.9 26.9 29.9 22.6c16.1-4.6 28.6-17.5 32.7-33.8l2.8-11.2c4.2-16.9 15.2-31.4 30.3-40l8.1-4.6c15-8.5 24.2-24.5 24.2-41.7v-8.3c0-12.7-5.1-24.9-14.1-33.9l-3.9-3.9c-9-9-21.2-14.1-33.9-14.1H257c-11.1 0-22.1-2.9-31.8-8.4l-34.5-19.7c-4.3-2.5-7.6-6.5-9.2-11.2c-3.2-9.6 1.1-20 10.2-24.5l5.9-3c6.6-3.3 14.3-3.9 21.3-1.5l23.2 7.7c8.2 2.7 17.2-.4 21.9-7.5c4.7-7 4.2-16.3-1.2-22.8l-13.6-16.3c-10-12-9.9-29.5 .3-41.3l15.7-18.3c8.8-10.3 10.2-25 3.5-36.7l-2.4-4.2c-3.5-.2-6.9-.3-10.4-.3C163.1 48 84.4 108.9 57.7 193zM464 256c0-36.8-9.6-71.4-26.4-101.5L412 164.8c-15.7 6.3-23.8 23.8-18.5 39.8l16.9 50.7c3.5 10.4 12 18.3 22.6 20.9l29.1 7.3c1.2-9 1.8-18.2 1.8-27.5zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-asia": { + "aliases": { + "names": [ + "globe-asia" + ], + "unicodes": { + "composite": [ + "1f30f" + ], + "secondary": [ + "10f57e" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "asia", + "australia", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f57e", + "label": "Earth Asia", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M51.7 295.1l31.7 6.3c7.9 1.6 16-.9 21.7-6.6l15.4-15.4c11.6-11.6 31.1-8.4 38.4 6.2l9.3 18.5c4.8 9.6 14.6 15.7 25.4 15.7c15.2 0 26.1-14.6 21.7-29.2l-6-19.9c-4.6-15.4 6.9-30.9 23-30.9h2.3c13.4 0 25.9-6.7 33.3-17.8l10.7-16.1c5.6-8.5 5.3-19.6-.8-27.7l-16.1-21.5c-10.3-13.7-3.3-33.5 13.4-37.7l17-4.3c7.5-1.9 13.6-7.2 16.5-14.4l16.4-40.9C303.4 52.1 280.2 48 256 48C141.1 48 48 141.1 48 256c0 13.4 1.3 26.5 3.7 39.1zm407.7 4.6c-3-.3-6-.1-9 .8l-15.8 4.4c-6.7 1.9-13.8-.9-17.5-6.7l-2-3.1c-6-9.4-16.4-15.1-27.6-15.1s-21.6 5.7-27.6 15.1l-6.1 9.5c-1.4 2.2-3.4 4.1-5.7 5.3L312 330.1c-18.1 10.1-25.5 32.4-17 51.3l5.5 12.4c8.6 19.2 30.7 28.5 50.5 21.1l2.6-1c10-3.7 21.3-2.2 29.9 4.1l1.5 1.1c37.2-29.5 64.1-71.4 74.4-119.5zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm144.5 92.1c-2.1 8.6 3.1 17.3 11.6 19.4l32 8c8.6 2.1 17.3-3.1 19.4-11.6s-3.1-17.3-11.6-19.4l-32-8c-8.6-2.1-17.3 3.1-19.4 11.6zm92-20c-2.1 8.6 3.1 17.3 11.6 19.4s17.3-3.1 19.4-11.6l8-32c2.1-8.6-3.1-17.3-11.6-19.4s-17.3 3.1-19.4 11.6l-8 32zM343.2 113.7c-7.9-4-17.5-.7-21.5 7.2l-16 32c-4 7.9-.7 17.5 7.2 21.5s17.5 .7 21.5-7.2l16-32c4-7.9 .7-17.5-7.2-21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-europe": { + "aliases": { + "names": [ + "globe-europe" + ], + "unicodes": { + "secondary": [ + "10f7a2" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "europe", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f7a2", + "label": "Earth Europe", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M266.3 48.3L232.5 73.6c-5.4 4-8.5 10.4-8.5 17.1v9.1c0 6.8 5.5 12.3 12.3 12.3c2.4 0 4.8-.7 6.8-2.1l41.8-27.9c2-1.3 4.4-2.1 6.8-2.1h1c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8l-19.9 19.9c-5.8 5.8-12.9 10.2-20.7 12.8l-26.5 8.8c-5.8 1.9-9.6 7.3-9.6 13.4c0 3.7-1.5 7.3-4.1 10l-17.9 17.9c-6.4 6.4-9.9 15-9.9 24v4.3c0 16.4 13.6 29.7 29.9 29.7c11 0 21.2-6.2 26.1-16l4-8.1c2.4-4.8 7.4-7.9 12.8-7.9c4.5 0 8.7 2.1 11.4 5.7l16.3 21.7c2.1 2.9 5.5 4.5 9.1 4.5c8.4 0 13.9-8.9 10.1-16.4l-1.1-2.3c-3.5-7 0-15.5 7.5-18l21.2-7.1c7.6-2.5 12.7-9.6 12.7-17.6c0-10.3 8.3-18.6 18.6-18.6H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H379.3c-7.2 0-14.2 2.9-19.3 8l-4.7 4.7c-2.1 2.1-3.3 5-3.3 8c0 6.2 5.1 11.3 11.3 11.3h11.3c6 0 11.8 2.4 16 6.6l6.5 6.5c1.8 1.8 2.8 4.3 2.8 6.8s-1 5-2.8 6.8l-7.5 7.5C386 262 384 266.9 384 272s2 10 5.7 13.7L408 304c10.2 10.2 24.1 16 38.6 16H454c6.5-20.2 10-41.7 10-64c0-111.4-87.6-202.4-197.7-207.7zm172 307.9c-3.7-2.6-8.2-4.1-13-4.1c-6 0-11.8-2.4-16-6.6L396 332c-7.7-7.7-18-12-28.9-12c-9.7 0-19.2-3.5-26.6-9.8L314 287.4c-11.6-9.9-26.4-15.4-41.7-15.4H251.4c-12.6 0-25 3.7-35.5 10.7L188.5 301c-17.8 11.9-28.5 31.9-28.5 53.3v3.2c0 17 6.7 33.3 18.7 45.3l16 16c8.5 8.5 20 13.3 32 13.3H248c13.3 0 24 10.7 24 24c0 2.5 .4 5 1.1 7.3c71.3-5.8 132.5-47.6 165.2-107.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM187.3 100.7c-6.2-6.2-16.4-6.2-22.6 0l-32 32c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l32-32c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-oceania": { + "aliases": { + "names": [ + "globe-oceania" + ] + }, + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "australia", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "melanesia", + "micronesia", + "new zealand", + "online", + "place", + "planet", + "polynesia", + "translate", + "travel", + "world" + ] + }, + "unicode": "e47b", + "label": "Earth Oceania", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM208.6 357.3l-39-13.5c-6.5-2.2-13.6-2.3-20.1-.3l-15.3 4.9c-18.5 5.9-38.5-2.4-47.5-19.5l-3.3-6.2c-10.6-20.1-2.3-45 18.2-54.7l35.3-16.8c2.3-1.1 4.4-2.8 5.9-4.8l5.3-7c7.2-9.6 18.6-15.3 30.6-15.3s23.4 5.7 30.6 15.3l4.6 6.1c2 2.6 4.9 4.5 8.1 5.1c7.8 1.6 15.7-1.5 20.4-7.9l10.4-14.2c2-2.8 5.3-4.4 8.7-4.4c4.4 0 8.4 2.7 10 6.8l10.1 25.9c2.8 7.2 6.7 14 11.5 20.2L311 299.8c5.8 7.4 9 16.6 9 26s-3.2 18.6-9 26L299 367.2c-8.3 10.6-21 16.8-34.4 16.8c-8.4 0-16.6-2.4-23.7-7l-25.4-16.4c-2.2-1.4-4.5-2.5-6.9-3.4zm65.2-214.8L296 164.7c10.1 10.1 2.9 27.3-11.3 27.3H254.8c-5.6 0-11.1-1.2-16.2-3.4l-42.8-19c-14.3-6.3-11.9-27.3 3.4-30.3l38.5-7.7c13.1-2.6 26.7 1.5 36.1 10.9zM248 432c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H264c-8.8 0-16-7.2-16-16zM431.2 298.9l8 24c2.8 8.4-1.7 17.4-10.1 20.2s-17.4-1.7-20.2-10.1l-8-24c-2.8-8.4 1.7-17.4 10.1-20.2s17.4 1.7 20.2 10.1zm-19.9 80.4l-32 32c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l32-32c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ebay": { + "changes": [ + "5.0.11", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f4", + "label": "eBay", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M606 189.5l-54.8 109.9-54.9-109.9h-37.5l10.9 20.6c-11.5-19-35.9-26-63.3-26-31.8 0-67.9 8.7-71.5 43.1h33.7c1.4-13.8 15.7-21.8 35-21.8 26 0 41 9.6 41 33v3.4c-12.7 0-28 .1-41.7.4-42.4.9-69.6 10-76.7 34.4 1-5.2 1.5-10.6 1.5-16.2 0-52.1-39.7-76.2-75.4-76.2-21.3 0-43 5.5-58.7 24.2v-80.6h-32.1v169.5c0 10.3-.6 22.9-1.1 33.1h31.5c.7-6.3 1.1-12.9 1.1-19.5 13.6 16.6 35.4 24.9 58.7 24.9 36.9 0 64.9-21.9 73.3-54.2-.5 2.8-.7 5.8-.7 9 0 24.1 21.1 45 60.6 45 26.6 0 45.8-5.7 61.9-25.5 0 6.6.3 13.3 1.1 20.2h29.8c-.7-8.2-1-17.5-1-26.8v-65.6c0-9.3-1.7-17.2-4.8-23.8l61.5 116.1-28.5 54.1h35.9L640 189.5zM243.7 313.8c-29.6 0-50.2-21.5-50.2-53.8 0-32.4 20.6-53.8 50.2-53.8 29.8 0 50.2 21.4 50.2 53.8 0 32.3-20.4 53.8-50.2 53.8zm200.9-47.3c0 30-17.9 48.4-51.6 48.4-25.1 0-35-13.4-35-25.8 0-19.1 18.1-24.4 47.2-25.3 13.1-.5 27.6-.6 39.4-.6zm-411.9 1.6h128.8v-8.5c0-51.7-33.1-75.4-78.4-75.4-56.8 0-83 30.8-83 77.6 0 42.5 25.3 74 82.5 74 31.4 0 68-11.7 74.4-46.1h-33.1c-12 35.8-87.7 36.7-91.2-21.6zm95-21.4H33.3c6.9-56.6 92.1-54.7 94.4 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "edge": { + "changes": [ + "4.5.0", + "5.0.0", + "5.12.1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "unicode": "f282", + "label": "Edge Browser", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120.1 37.44C161.1 12.23 207.7-.7753 255 .0016C423 .0016 512 123.8 512 219.5C511.9 252.2 499 283.4 476.1 306.7C453.2 329.9 422.1 343.2 389.4 343.7C314.2 343.7 297.9 320.6 297.9 311.7C297.9 307.9 299.1 305.5 302.7 302.3L303.7 301.1L304.1 299.5C314.6 288 320 273.3 320 257.9C320 179.2 237.8 115.2 136 115.2C98.46 114.9 61.46 124.1 28.48 142.1C55.48 84.58 111.2 44.5 119.8 38.28C120.6 37.73 120.1 37.44 120.1 37.44V37.44zM135.7 355.5C134.3 385.5 140.3 415.5 152.1 442.7C165.7 469.1 184.8 493.7 208.6 512C149.1 500.5 97.11 468.1 59.2 422.7C21.12 376.3 0 318.4 0 257.9C0 206.7 62.4 163.5 136 163.5C172.6 162.9 208.4 174.4 237.8 196.2L234.2 197.4C182.7 215 135.7 288.1 135.7 355.5V355.5zM469.8 400L469.1 400.1C457.3 418.9 443.2 435.2 426.9 449.6C396.1 477.6 358.8 495.1 318.1 499.5C299.5 499.8 281.3 496.3 264.3 488.1C238.7 477.8 217.2 458.1 202.7 435.1C188.3 411.2 181.6 383.4 183.7 355.5C183.1 335.4 189.1 315.2 198.7 297.3C212.6 330.4 236.2 358.6 266.3 378.1C296.4 397.6 331.8 407.6 367.7 406.7C398.7 407 429.8 400 457.9 386.2L459.8 385.3C463.7 383 467.5 381.4 471.4 385.3C475.9 390.2 473.2 394.5 470.2 399.3C470 399.5 469.9 399.8 469.8 400V400z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "edge-legacy": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e078", + "label": "Edge Legacy Browser", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M25.71,228.16l.35-.48c0,.16,0,.32-.07.48Zm460.58,15.51c0-44-7.76-84.46-28.81-122.4C416.5,47.88,343.91,8,258.89,8,119,7.72,40.62,113.21,26.06,227.68c42.42-61.31,117.07-121.38,220.37-125,0,0,109.67,0,99.42,105H170c6.37-37.39,18.55-59,34.34-78.93-75.05,34.9-121.85,96.1-120.75,188.32.83,71.45,50.13,144.84,120.75,172,83.35,31.84,192.77,7.2,240.13-21.33V363.31C363.6,419.8,173.6,424.23,172.21,295.74H486.29V243.67Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "egg": { + "aliases": { + "unicodes": { + "composite": [ + "1f95a" + ], + "secondary": [ + "10f7fb" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breakfast", + "chicken", + "easter", + "egg", + "food", + "shell", + "yolk" + ] + }, + "unicode": "f7fb", + "label": "Egg", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767421, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 496C86 496 0 394 0 288C0 176 64 16 192 16s192 160 192 272c0 106-86 208-192 208zM154.8 134c6.5-6 7-16.1 1-22.6s-16.1-7-22.6-1c-23.9 21.8-41.1 52.7-52.3 84.2C69.7 226.1 64 259.7 64 288c0 8.8 7.2 16 16 16s16-7.2 16-16c0-24.5 5-54.4 15.1-82.8c10.1-28.5 25-54.1 43.7-71.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eject": { + "aliases": { + "unicodes": { + "composite": [ + "23cf" + ], + "secondary": [ + "10f052" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "cancel", + "cd", + "discharge", + "eject", + "eject button" + ] + }, + "unicode": "f052", + "label": "Eject", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320H48c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192C197.7 37.6 210.5 32 224 32zM0 432c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "elementor": { + "changes": [ + "5.0.3", + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f430", + "label": "Elementor", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.361 256C.361 397 114 511 255 511C397 511 511 397 511 256C511 116 397 2.05 255 2.05C114 2.05 .361 116 .361 256zM192 150V363H149V150H192zM234 150H362V193H234V150zM362 235V278H234V235H362zM234 320H362V363H234V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "elevator": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "elevator", + "hoist", + "lift", + "users-people" + ] + }, + "unicode": "e16d", + "label": "Elevator", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M132.7 4.7l-64 64c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9H208c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-64-64c-6.2-6.2-16.4-6.2-22.6 0zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H64zm96 96a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM80 400c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32H112c-17.7 0-32-14.3-32-32V400zm192 0c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32H304c-17.7 0-32-14.3-32-32V400zm32-128a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM356.7 91.3c6.2 6.2 16.4 6.2 22.6 0l64-64c4.6-4.6 5.9-11.5 3.5-17.4S438.5 0 432 0H304c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ellipsis": { + "aliases": { + "names": [ + "ellipsis-h" + ], + "unicodes": { + "secondary": [ + "10f141" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "pacman", + "reorder", + "settings", + "ul" + ] + }, + "unicode": "f141", + "label": "Ellipsis", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M8 256a56 56 0 1 1 112 0A56 56 0 1 1 8 256zm160 0a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ellipsis-vertical": { + "aliases": { + "names": [ + "ellipsis-v" + ], + "unicodes": { + "secondary": [ + "10f142" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "ul" + ] + }, + "unicode": "f142", + "label": "Ellipsis Vertical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 128, + 512 + ], + "width": 128, + "height": 512, + "path": "M64 360a56 56 0 1 0 0 112 56 56 0 1 0 0-112zm0-160a56 56 0 1 0 0 112 56 56 0 1 0 0-112zM120 96A56 56 0 1 0 8 96a56 56 0 1 0 112 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ello": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5f1", + "label": "Ello", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm143.84 285.2C375.31 358.51 315.79 404.8 248 404.8s-127.31-46.29-143.84-111.6c-1.65-7.44 2.48-15.71 9.92-17.36 7.44-1.65 15.71 2.48 17.36 9.92 14.05 52.91 62 90.11 116.56 90.11s102.51-37.2 116.56-90.11c1.65-7.44 9.92-12.4 17.36-9.92 7.44 1.65 12.4 9.92 9.92 17.36z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ember": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f423", + "label": "Ember", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1-44.2-27.6-49-24c-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-11.4-6.8-21.3-.5-27.2 5.3 13.6-17.3 46.4-64.2 36.9-105.2-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5-28.5 18.8-28.5 18.8-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7 16.4 1 36.5-47.9c11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7 30.9 5.3 30.9 5.3 15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "empire": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d1", + "label": "Galactic Empire", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "envelope": { + "aliases": { + "unicodes": { + "composite": [ + "1f582", + "2709", + "f003" + ], + "secondary": [ + "10f0e0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Back of Envelope", + "e-mail", + "email", + "envelope", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f0e0", + "label": "Envelope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z" + }, + "regular": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.7c20.7 17 50.4 17 71.1 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.5-93.7 31.5-132 0L48 212.2zM0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "envelope-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "check", + "email", + "envelope", + "mail", + "not affected", + "ok", + "okay", + "read", + "sent" + ] + }, + "unicode": "e4e8", + "label": "Envelope Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0l57.4-43c23.9-59.8 79.7-103.3 146.3-109.8l13.9-10.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176V384c0 35.3 28.7 64 64 64H360.2C335.1 417.6 320 378.5 320 336c0-5.6 .3-11.1 .8-16.6l-26.4 19.8zM640 336a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 353.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "envelope-open": { + "aliases": { + "unicodes": { + "composite": [ + "f2b7" + ], + "secondary": [ + "10f2b6" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f2b6", + "label": "Envelope Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 208.1L256 65.9 448 208.1v47.4L289.5 373c-9.7 7.2-21.4 11-33.5 11s-23.8-3.9-33.5-11L64 255.5V208.1zM256 0c-12.1 0-23.8 3.9-33.5 11L25.9 156.7C9.6 168.8 0 187.8 0 208.1V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V208.1c0-20.3-9.6-39.4-25.9-51.4L289.5 11C279.8 3.9 268.1 0 256 0z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M255.4 48.2c.2-.1 .4-.2 .6-.2s.4 .1 .6 .2L460.6 194c2.1 1.5 3.4 3.9 3.4 6.5v13.6L291.5 355.7c-20.7 17-50.4 17-71.1 0L48 214.1V200.5c0-2.6 1.2-5 3.4-6.5L255.4 48.2zM48 276.2L190 392.8c38.4 31.5 93.7 31.5 132 0L464 276.2V456c0 4.4-3.6 8-8 8H56c-4.4 0-8-3.6-8-8V276.2zM256 0c-10.2 0-20.2 3.2-28.5 9.1L23.5 154.9C8.7 165.4 0 182.4 0 200.5V456c0 30.9 25.1 56 56 56H456c30.9 0 56-25.1 56-56V200.5c0-18.1-8.7-35.1-23.4-45.6L284.5 9.1C276.2 3.2 266.2 0 256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "envelope-open-text": { + "aliases": { + "unicodes": { + "secondary": [ + "10f658" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f658", + "label": "Envelope Open Text", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215.4 96H144 107.8 96v8.8V144v40.4 89L.2 202.5c1.6-18.1 10.9-34.9 25.7-45.8L48 140.3V96c0-26.5 21.5-48 48-48h76.6l49.9-36.9C232.2 3.9 243.9 0 256 0s23.8 3.9 33.5 11L339.4 48H416c26.5 0 48 21.5 48 48v44.3l22.1 16.4c14.8 10.9 24.1 27.7 25.7 45.8L416 273.4v-89V144 104.8 96H404.2 368 296.6 215.4zM0 448V242.1L217.6 403.3c11.1 8.2 24.6 12.7 38.4 12.7s27.3-4.4 38.4-12.7L512 242.1V448v0c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64v0zM176 160H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "envelopes-bulk": { + "aliases": { + "names": [ + "mail-bulk" + ], + "unicodes": { + "secondary": [ + "10f674" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "envelope", + "letter", + "post office", + "postal", + "postcard", + "send", + "stamp", + "usps" + ] + }, + "unicode": "f674", + "label": "Envelopes Bulk", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 0C110.3 0 96 14.3 96 32V224h96V192c0-35.3 28.7-64 64-64H480V32c0-17.7-14.3-32-32-32H128zM256 160c-17.7 0-32 14.3-32 32v32h96c35.3 0 64 28.7 64 64V416H576c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32H256zm240 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H496c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zM64 256c-17.7 0-32 14.3-32 32v13L187.1 415.9c1.4 1 3.1 1.6 4.9 1.6s3.5-.6 4.9-1.6L352 301V288c0-17.7-14.3-32-32-32H64zm288 84.8L216 441.6c-6.9 5.1-15.3 7.9-24 7.9s-17-2.8-24-7.9L32 340.8V480c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V340.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "envira": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "leaf" + ] + }, + "unicode": "f299", + "label": "Envira Gallery", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "equals": { + "aliases": { + "unicodes": { + "composite": [ + "f52c" + ], + "primary": [ + "f52c" + ], + "secondary": [ + "103d", + "10f52c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Equals Sign", + "arithmetic", + "even", + "match", + "math" + ] + }, + "unicode": "3d", + "label": "Equals", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H48zm0 192c-17.7 0-32 14.3-32 32s14.3 32 32 32H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eraser": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "delete", + "remove", + "rubber" + ] + }, + "unicode": "f12d", + "label": "Eraser", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M290.7 57.4L57.4 290.7c-25 25-25 65.5 0 90.5l80 80c12 12 28.3 18.7 45.3 18.7H288h9.4H512c17.7 0 32-14.3 32-32s-14.3-32-32-32H387.9L518.6 285.3c25-25 25-65.5 0-90.5L381.3 57.4c-25-25-65.5-25-90.5 0zM297.4 416H288l-105.4 0-80-80L227.3 211.3 364.7 348.7 297.4 416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "erlang": { + "changes": [ + "5.0.0", + "5.0.3", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f39d", + "label": "Erlang", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M87.2 53.5H0v405h100.4c-49.7-52.6-78.8-125.3-78.7-212.1-.1-76.7 24-142.7 65.5-192.9zm238.2 9.7c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2zm230.7-9.6h.3l-.1-.1zm.3 0c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ethereum": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42e", + "label": "Ethereum", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ethernet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f796" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cable", + "cat 5", + "cat 6", + "connection", + "hardware", + "internet", + "network", + "wired" + ] + }, + "unicode": "f796", + "label": "Ethernet", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224V416c0 17.7 14.3 32 32 32H96V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H448V160c0-17.7-14.3-32-32-32H384V96c0-17.7-14.3-32-32-32H160c-17.7 0-32 14.3-32 32v32H96c-17.7 0-32 14.3-32 32v32H32c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "etsy": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d7", + "label": "Etsy", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "euro-sign": { + "aliases": { + "names": [ + "eur", + "euro" + ], + "unicodes": { + "composite": [ + "20ac" + ], + "secondary": [ + "10f153" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Euro Sign", + "currency" + ] + }, + "unicode": "f153", + "label": "Euro Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48.1 240c-.1 2.7-.1 5.3-.1 8v16c0 2.7 0 5.3 .1 8H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H60.3C89.9 419.9 170 480 264 480h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264c-57.9 0-108.2-32.4-133.9-80H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112.2c-.1-2.6-.2-5.3-.2-8V248c0-2.7 .1-5.4 .2-8H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H130.1c25.7-47.6 76-80 133.9-80h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264C170 32 89.9 92.1 60.3 176H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "evernote": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f839", + "label": "Evernote", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M120.82 132.21c1.6 22.31-17.55 21.59-21.61 21.59-68.93 0-73.64-1-83.58 3.34-.56.22-.74 0-.37-.37L123.79 46.45c.38-.37.6-.22.38.37-4.35 9.99-3.35 15.09-3.35 85.39zm79 308c-14.68-37.08 13-76.93 52.52-76.62 17.49 0 22.6 23.21 7.95 31.42-6.19 3.3-24.95 1.74-25.14 19.2-.05 17.09 19.67 25 31.2 24.89A45.64 45.64 0 0 0 312 393.45v-.08c0-11.63-7.79-47.22-47.54-55.34-7.72-1.54-65-6.35-68.35-50.52-3.74 16.93-17.4 63.49-43.11 69.09-8.74 1.94-69.68 7.64-112.92-36.77 0 0-18.57-15.23-28.23-57.95-3.38-15.75-9.28-39.7-11.14-62 0-18 11.14-30.45 25.07-32.2 81 0 90 2.32 101-7.8 9.82-9.24 7.8-15.5 7.8-102.78 1-8.3 7.79-30.81 53.41-24.14 6 .86 31.91 4.18 37.48 30.64l64.26 11.15c20.43 3.71 70.94 7 80.6 57.94 22.66 121.09 8.91 238.46 7.8 238.46C362.15 485.53 267.06 480 267.06 480c-18.95-.23-54.25-9.4-67.27-39.83zm80.94-204.84c-1 1.92-2.2 6 .85 7 14.09 4.93 39.75 6.84 45.88 5.53 3.11-.25 3.05-4.43 2.48-6.65-3.53-21.85-40.83-26.5-49.24-5.92z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "exclamation": { + "aliases": { + "unicodes": { + "composite": [ + "2755", + "2757", + "f12a" + ], + "primary": [ + "f12a" + ], + "secondary": [ + "1021", + "10f12a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "!", + "Exclamation Mark", + "alert", + "danger", + "error", + "exclamation", + "important", + "mark", + "notice", + "notification", + "notify", + "outlined", + "problem", + "punctuation", + "red exclamation mark", + "warning", + "white exclamation mark" + ] + }, + "unicode": "21", + "label": "Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 64, + 512 + ], + "width": 64, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V64zM32 480a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "expand": { + "aliases": { + "unicodes": { + "secondary": [ + "10f065" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "crop", + "enlarge", + "focus", + "fullscreen", + "resize", + "viewfinder" + ] + }, + "unicode": "f065", + "label": "Expand", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V96h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V352zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H320zM448 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "expeditedssl": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23e", + "label": "ExpeditedSSL", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "explosion": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blast", + "blowup", + "boom", + "crash", + "detonation", + "explosion" + ] + }, + "unicode": "e4e9", + "label": "Explosion", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M499.6 11.3c6.7-10.7 20.5-14.5 31.7-8.5s15.8 19.5 10.6 31L404.8 338.6c2.2 2.3 4.3 4.7 6.3 7.1l97.2-54.7c10.5-5.9 23.6-3.1 30.9 6.4s6.3 23-2.2 31.5l-87 87H378.5c-13.2-37.3-48.7-64-90.5-64s-77.4 26.7-90.5 64H117.8L42.3 363.7c-9.7-6.7-13.1-19.6-7.9-30.3s17.4-15.9 28.7-12.4l97.2 30.4c3-3.9 6.1-7.7 9.4-11.3L107.4 236.3c-6.1-10.1-3.9-23.1 5.1-30.7s22.2-7.5 31.1 .1L246 293.6c1.5-.4 3-.8 4.5-1.1l13.6-142.7c1.2-12.3 11.5-21.7 23.9-21.7s22.7 9.4 23.9 21.7l13.5 141.9L499.6 11.3zM64 448v0H512v0h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64zM288 0c13.3 0 24 10.7 24 24V72c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eye": { + "aliases": { + "unicodes": { + "composite": [ + "1f441" + ], + "secondary": [ + "10f06e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "body", + "eye", + "look", + "optic", + "see", + "seen", + "show", + "sight", + "views", + "visible" + ] + }, + "unicode": "f06e", + "label": "Eye", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z" + }, + "regular": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 80c-65.2 0-118.8 29.6-159.9 67.7C89.6 183.5 63 226 49.4 256c13.6 30 40.2 72.5 78.6 108.3C169.2 402.4 222.8 432 288 432s118.8-29.6 159.9-67.7C486.4 328.5 513 286 526.6 256c-13.6-30-40.2-72.5-78.6-108.3C406.8 109.6 353.2 80 288 80zM95.4 112.6C142.5 68.8 207.2 32 288 32s145.5 36.8 192.6 80.6c46.8 43.5 78.1 95.4 93 131.1c3.3 7.9 3.3 16.7 0 24.6c-14.9 35.7-46.2 87.7-93 131.1C433.5 443.2 368.8 480 288 480s-145.5-36.8-192.6-80.6C48.6 356 17.3 304 2.5 268.3c-3.3-7.9-3.3-16.7 0-24.6C17.3 208 48.6 156 95.4 112.6zM288 336c44.2 0 80-35.8 80-80s-35.8-80-80-80c-.7 0-1.3 0-2 0c1.3 5.1 2 10.5 2 16c0 35.3-28.7 64-64 64c-5.5 0-10.9-.7-16-2c0 .7 0 1.3 0 2c0 44.2 35.8 80 80 80zm0-208a128 128 0 1 1 0 256 128 128 0 1 1 0-256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "eye-dropper": { + "aliases": { + "names": [ + "eye-dropper-empty", + "eyedropper" + ], + "unicodes": { + "secondary": [ + "10f1fb" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "clone", + "color", + "copy", + "eyedropper", + "pipette" + ] + }, + "unicode": "f1fb", + "label": "Eye Dropper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.6 29.2L240.1 130.8l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4L482.8 170.4c39-39 39-102.2 0-141.1s-102.2-39-141.1 0zM55.4 323.3c-15 15-23.4 35.4-23.4 56.6v42.4L5.4 462.2c-8.5 12.7-6.8 29.6 4 40.4s27.7 12.5 40.4 4L89.7 480h42.4c21.2 0 41.6-8.4 56.6-23.4L309.4 335.9l-45.3-45.3L143.4 411.3c-3 3-7.1 4.7-11.3 4.7H96V379.9c0-4.2 1.7-8.3 4.7-11.3L221.4 247.9l-45.3-45.3L55.4 323.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eye-low-vision": { + "aliases": { + "names": [ + "low-vision" + ], + "unicodes": { + "secondary": [ + "10f2a8" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "eye", + "sight" + ] + }, + "unicode": "f2a8", + "label": "Eye Low Vision", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223 149.5c48.6-44.3 123-50.8 179.3-11.7c60.8 42.4 78.9 123.2 44.2 186.9L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3L223 149.5zm223.1 298L83.1 161.5c-11 14.4-20.5 28.7-28.4 42.2l339 265.7c18.7-5.5 36.2-13 52.6-21.8zM34.5 268.3c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c3.1 0 6.1-.1 9.2-.2L33.1 247.8c-1.8 6.8-1.3 14 1.4 20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eye-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f070" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "hide", + "show", + "toggle", + "unseen", + "views", + "visible", + "visiblity" + ] + }, + "unicode": "f070", + "label": "Eye Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5L373 389.9z" + }, + "regular": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zm151 118.3C226 97.7 269.5 80 320 80c65.2 0 118.8 29.6 159.9 67.7C518.4 183.5 545 226 558.6 256c-12.6 28-36.6 66.8-70.9 100.9l-53.8-42.2c9.1-17.6 14.2-37.5 14.2-58.7c0-70.7-57.3-128-128-128c-32.2 0-61.7 11.9-84.2 31.5l-46.1-36.1zM394.9 284.2l-81.5-63.9c4.2-8.5 6.6-18.2 6.6-28.3c0-5.5-.7-10.9-2-16c.7 0 1.3 0 2 0c44.2 0 80 35.8 80 80c0 9.9-1.8 19.4-5.1 28.2zm9.4 130.3C378.8 425.4 350.7 432 320 432c-65.2 0-118.8-29.6-159.9-67.7C121.6 328.5 95 286 81.4 256c8.3-18.4 21.5-41.5 39.4-64.8L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5l-41.9-33zM192 256c0 70.7 57.3 128 128 128c13.3 0 26.1-2 38.2-5.8L302 334c-23.5-5.4-43.1-21.2-53.7-42.3l-56.1-44.2c-.2 2.8-.3 5.6-.3 8.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "f": { + "aliases": { + "unicodes": { + "composite": [ + "66" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter F", + "Latin Small Letter F", + "letter" + ] + }, + "unicode": "46", + "label": "F", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 448c0 17.7 14.3 32 32 32s32-14.3 32-32V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "face-angry": { + "aliases": { + "names": [ + "angry" + ], + "unicodes": { + "composite": [ + "1f620" + ], + "secondary": [ + "10f556" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "angry", + "angry face", + "disapprove", + "emoticon", + "face", + "mad", + "upset" + ] + }, + "unicode": "f556", + "label": "Face Angry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM338.7 395.9c6.6-5.9 7.1-16 1.2-22.6C323.8 355.4 295.7 336 256 336s-67.8 19.4-83.9 37.3c-5.9 6.6-5.4 16.7 1.2 22.6s16.7 5.4 22.6-1.2c11.7-13 31.6-26.7 60.1-26.7s48.4 13.7 60.1 26.7c5.9 6.6 16 7.1 22.6 1.2zM176.4 272c17.7 0 32-14.3 32-32c0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6c0 17.7 14.3 32 32 32zm192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2s-11.9-12.9-20.2-10.1l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7c0 17.7 14.3 32 32 32s32-14.3 32-32z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm72.4-118.5c9.7-9 10.2-24.2 1.2-33.9C315.3 344.3 290.6 328 256 328s-59.3 16.3-73.5 31.6c-9 9.7-8.5 24.9 1.2 33.9s24.9 8.5 33.9-1.2c7.4-7.9 20-16.4 38.5-16.4s31.1 8.5 38.5 16.4c9 9.7 24.2 10.2 33.9 1.2zM176.4 272c17.7 0 32-14.3 32-32c0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6c0 17.7 14.3 32 32 32zm192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2s-11.9-12.9-20.2-10.1l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-dizzy": { + "aliases": { + "names": [ + "dizzy" + ], + "unicodes": { + "secondary": [ + "10f567" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dazed", + "dead", + "disapprove", + "emoticon", + "face" + ] + }, + "unicode": "f567", + "label": "Face Dizzy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-224a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM100.7 132.7c6.2-6.2 16.4-6.2 22.6 0L160 169.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L182.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L160 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L137.4 192l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6zm192 0c6.2-6.2 16.4-6.2 22.6 0L352 169.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L374.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L352 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L329.4 192l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM103 135c9.4-9.4 24.6-9.4 33.9 0l23 23 23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-23 23 23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-23-23c-9.4-9.4-9.4-24.6 0-33.9zm192 0c9.4-9.4 24.6-9.4 33.9 0l23 23 23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-23 23 23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-23-23c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-flushed": { + "aliases": { + "names": [ + "flushed" + ], + "unicodes": { + "composite": [ + "1f633" + ], + "secondary": [ + "10f579" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dazed", + "embarrassed", + "emoticon", + "face", + "flushed", + "flushed face" + ] + }, + "unicode": "f579", + "label": "Face Flushed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM176 384c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16s-7.2-16-16-16H192c-8.8 0-16 7.2-16 16zm-16-88a72 72 0 1 0 0-144 72 72 0 1 0 0 144zm264-72a72 72 0 1 0 -144 0 72 72 0 1 0 144 0zm-288 0a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm192 0a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM160.4 248a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm216-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM192 336c-13.3 0-24 10.7-24 24s10.7 24 24 24H320c13.3 0 24-10.7 24-24s-10.7-24-24-24H192zM160 176a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm0 128a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm144-80a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm128 0a80 80 0 1 0 -160 0 80 80 0 1 0 160 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-frown": { + "aliases": { + "names": [ + "frown" + ], + "unicodes": { + "composite": [ + "2639" + ], + "secondary": [ + "10f119" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "frown", + "frowning face", + "rating", + "sad" + ] + }, + "unicode": "f119", + "label": "Face Frown", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.3 388.7c-2.6 8.4-11.6 13.2-20 10.5s-13.2-11.6-10.5-20C145.2 326.1 196.3 288 256 288s110.8 38.1 127.3 91.3c2.6 8.4-2.1 17.4-10.5 20s-17.4-2.1-20-10.5C340.5 349.4 302.1 320 256 320s-84.5 29.4-96.7 68.7zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-frown-open": { + "aliases": { + "names": [ + "frown-open" + ], + "unicodes": { + "composite": [ + "1f626" + ], + "secondary": [ + "10f57a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "frown", + "frowning face with open mouth", + "mouth", + "open", + "rating", + "sad" + ] + }, + "unicode": "f57a", + "label": "Face Frown Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-122 174.5c-12.4 5.2-26.5-4.1-21.1-16.4c16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4c-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM182.4 382.5c-12.4 5.2-26.5-4.1-21.1-16.4c16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4c-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grimace": { + "aliases": { + "names": [ + "grimace" + ], + "unicodes": { + "composite": [ + "1f62c" + ], + "secondary": [ + "10f57f" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cringe", + "emoticon", + "face", + "grimace", + "grimacing face", + "teeth" + ] + }, + "unicode": "f57f", + "label": "Face Grimace", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm96-112h-8V360l55.3 0c-3.8 22.7-23.6 40-47.3 40zm47.3-56L344 344V304h8c23.8 0 43.5 17.3 47.3 40zM328 344H264V304h64v40zm0 56H264V360h64v40zm-80-96v40l-64 0V304h64zm0 56v40H184V360l64 0zm-80-16H112.7c3.8-22.7 23.6-40 47.3-40h8v40zm0 56h-8c-23.8 0-43.5-17.3-47.3-40H168v40zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 0 0 416 208 208 0 1 0 0-416zM512 256A256 256 0 1 1 0 256a256 256 0 1 1 512 0zM168 320c-13.3 0-24 10.7-24 24s10.7 24 24 24h8V320h-8zm40 48h32V320H208v48zm96 0V320H272v48h32zm32 0h8c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v48zM168 288H344c30.9 0 56 25.1 56 56s-25.1 56-56 56H168c-30.9 0-56-25.1-56-56s25.1-56 56-56zm-23.6-80a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin": { + "aliases": { + "names": [ + "grin" + ], + "unicodes": { + "composite": [ + "1f600" + ], + "secondary": [ + "10f580" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grin", + "grinning face", + "laugh", + "smile" + ] + }, + "unicode": "f580", + "label": "Face Grin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-beam": { + "aliases": { + "names": [ + "grin-beam" + ], + "unicodes": { + "composite": [ + "1f604" + ], + "secondary": [ + "10f582" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eye", + "face", + "grinning face with smiling eyes", + "laugh", + "mouth", + "open", + "smile" + ] + }, + "unicode": "f582", + "label": "Face Grin Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zm-170.5-84l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM217.6 228.8l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-beam-sweat": { + "aliases": { + "names": [ + "grin-beam-sweat" + ], + "unicodes": { + "composite": [ + "1f605" + ], + "secondary": [ + "10f583" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "embarass", + "emoticon", + "face", + "grinning face with sweat", + "open", + "smile", + "sweat" + ] + }, + "unicode": "f583", + "label": "Face Grin Beam Sweat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M476.8 126.3c-4.1 1.1-8.4 1.7-12.8 1.7c-26.5 0-48-21-48-47c0-5 1.8-11.3 4.6-18.1c.3-.7 .6-1.4 .9-2.1c9-20.2 26.5-44.9 36-57.5c3.2-4.4 9.6-4.4 12.8 0C483.4 20.6 512 61 512 81c0 21.7-14.9 39.8-35.2 45.3zM256 0c51.4 0 99.3 15.2 139.4 41.2c-1.5 3.1-3 6.2-4.3 9.3c-3.4 8-7.1 19-7.1 30.5c0 44.3 36.6 79 80 79c9.6 0 18.8-1.7 27.4-4.8c13.3 30.9 20.6 65 20.6 100.8c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0zM383.8 317.8C345.3 329.4 301.9 336 256 336s-89.3-6.6-127.8-18.2c-12.3-3.7-24.3 7-19.2 18.7c24.5 56.9 81.1 96.7 147 96.7s122.5-39.8 147-96.7c5.1-11.8-6.9-22.4-19.2-18.7zm-166.2-89l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C126.7 188.4 120 206.1 120 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0zm160 0l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C286.7 188.4 280 206.1 280 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M476.8 126.3C497.1 120.8 512 102.7 512 81c0-20-28.6-60.4-41.6-77.7c-3.2-4.4-9.6-4.4-12.8 0c-9.5 12.6-27.1 37.2-36 57.5c-.3 .7-.6 1.4-.9 2.1C417.8 69.7 416 76 416 81c0 26 21.5 47 48 47c4.4 0 8.7-.6 12.8-1.7zM395.4 41.2C355.3 15.2 307.4 0 256 0C114.6 0 0 114.6 0 256S114.6 512 256 512s256-114.6 256-256c0-35.8-7.3-69.9-20.6-100.8c-8.6 3.1-17.8 4.8-27.4 4.8c-8.9 0-17.6-1.5-25.7-4.2C454.7 185.5 464 219.7 464 256c0 114.9-93.1 208-208 208S48 370.9 48 256S141.1 48 256 48c48.7 0 93.4 16.7 128.9 44.7c-.6-3.8-.9-7.7-.9-11.7c0-11.4 3.8-22.4 7.1-30.5c1.3-3.1 2.7-6.2 4.3-9.3zM375 336.5c10.4-16.1-6.8-32.5-25.5-28.1c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c24.6 38.1 68.7 63.5 119.1 63.5s94.5-25.4 119.1-63.5zM217.6 228.8l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C126.7 188.4 120 206.1 120 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0zm160 0l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C286.7 188.4 280 206.1 280 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-hearts": { + "aliases": { + "names": [ + "grin-hearts" + ], + "unicodes": { + "composite": [ + "1f60d" + ], + "secondary": [ + "10f584" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eye", + "face", + "love", + "smile", + "smiling face with heart-eyes" + ] + }, + "unicode": "f584", + "label": "Face Grin Hearts", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM199.3 129.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4c-17.8-4.8-28.4-23.1-23.6-40.8s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm154.3 23.6l4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM215.3 137.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4c-17.8-4.8-28.4-23.1-23.6-40.8s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm122.3 23.6l4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-squint": { + "aliases": { + "names": [ + "grin-squint" + ], + "unicodes": { + "composite": [ + "1f606" + ], + "secondary": [ + "10f585" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grinning squinting face", + "laugh", + "mouth", + "satisfied", + "smile" + ] + }, + "unicode": "f585", + "label": "Face Grin Squint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM133.5 146.7l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zm-216-161.7l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-squint-tears": { + "aliases": { + "names": [ + "grin-squint-tears" + ], + "unicodes": { + "composite": [ + "1f923" + ], + "secondary": [ + "10f586" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "floor", + "happy", + "laugh", + "rolling", + "rolling on the floor laughing", + "smile" + ] + }, + "unicode": "f586", + "label": "Face Grin Squint Tears", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M426.8 14.2C446-5 477.5-4.6 497.1 14.9s20 51 .7 70.3c-6.8 6.8-21.4 12.4-37.4 16.7c-16.3 4.4-34.1 7.5-46.3 9.3c-1.6 .2-3.1 .5-4.6 .6c-4.9 .8-9.1-2.8-9.5-7.4c-.1-.7 0-1.4 .1-2.1c1.6-11.2 4.6-29.6 9-47c.3-1.3 .7-2.6 1-3.9c4.3-15.9 9.8-30.5 16.7-37.4zm-44.7 19c-1.5 4.8-2.9 9.6-4.1 14.3c-4.8 18.9-8 38.5-9.7 50.3c-4 26.8 18.9 49.7 45.7 45.8c11.9-1.6 31.5-4.8 50.4-9.7c4.7-1.2 9.5-2.5 14.3-4.1C534.2 227.5 520.2 353.8 437 437c-83.2 83.2-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3c4.8-18.9 8-38.5 9.7-50.3c4-26.8-18.9-49.7-45.7-45.8c-11.9 1.6-31.5 4.8-50.4 9.7c-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75C158.2-8.3 284.5-22.2 382.2 33.2zM51.5 410.1c18.5-5 38.8-8.3 50.9-10c.4-.1 .7-.1 1-.1c5.1-.2 9.2 4.3 8.4 9.6c-1.7 12.1-5 32.4-10 50.9C97.6 476.4 92 491 85.2 497.8C66 517 34.5 516.6 14.9 497.1s-20-51-.7-70.3c6.8-6.8 21.4-12.4 37.4-16.7zM416.9 209c-4.7-11.9-20.8-11-26.8 .3c-19 35.5-45 70.8-77.5 103.3S244.8 371.1 209.3 390c-11.3 6-12.2 22.1-.3 26.8c57.6 22.9 125.8 11 172.3-35.5s58.4-114.8 35.5-172.3zM87.1 285.1c2 2 4.6 3.2 7.3 3.4l56.1 5.1 5.1 56.1c.3 2.8 1.5 5.4 3.4 7.3c6.3 6.3 17.2 3.6 19.8-4.9l29.7-97.4c3.5-11.6-7.3-22.5-19-19L92 265.3c-8.6 2.6-11.3 13.4-4.9 19.8zM265.3 92l-29.7 97.4c-3.5 11.6 7.3 22.5 19 19l97.4-29.7c8.6-2.6 11.3-13.4 4.9-19.8c-2-2-4.6-3.2-7.3-3.4l-56.1-5.1-5.1-56.1c-.3-2.8-1.5-5.4-3.4-7.3c-6.3-6.3-17.2-3.6-19.8 4.9z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M426.8 14.2C446-5 477.5-4.6 497.1 14.9s20 51 .7 70.3c-14.8 14.8-65.7 23.6-88.3 26.7c-5.6 .9-10.3-3.9-9.5-9.5C403.3 79.9 412 29 426.8 14.2zM75 75C158.2-8.3 284.5-22.2 382.2 33.2c-1.5 4.8-2.9 9.6-4.1 14.3c-3.1 12.2-5.5 24.6-7.3 35c-80.8-53.6-190.7-44.8-261.9 26.4C37.7 180.1 28.9 290 82.5 370.8c-10.5 1.8-22.9 4.2-35 7.3c-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75zm389.6 58.9c4.7-1.2 9.5-2.5 14.3-4.1C534.2 227.5 520.2 353.8 437 437c-83.2 83.2-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3c3.1-12.2 5.5-24.6 7.3-35c80.8 53.6 190.7 44.8 261.9-26.4c71.2-71.2 80-181.1 26.4-261.9c10.5-1.8 22.9-4.2 35-7.3zm-105.4 93c10.1-16.3 33.9-16.9 37.9 1.9c9.5 44.4-3.7 93.5-39.3 129.1s-84.8 48.8-129.1 39.3c-18.7-4-18.2-27.8-1.9-37.9c25.2-15.7 50.2-35.4 73.6-58.8s43.1-48.4 58.8-73.6zM92 265.3l97.4-29.7c11.6-3.5 22.5 7.3 19 19l-29.7 97.4c-2.6 8.6-13.4 11.3-19.8 4.9c-2-2-3.2-4.6-3.4-7.3l-5.1-56.1-56.1-5.1c-2.8-.3-5.4-1.5-7.3-3.4c-6.3-6.3-3.6-17.2 4.9-19.8zm193-178.2c2 2 3.2 4.6 3.4 7.3l5.1 56.1 56.1 5.1c2.8 .3 5.4 1.5 7.3 3.4c6.3 6.3 3.6 17.2-4.9 19.8l-97.4 29.7c-11.6 3.5-22.5-7.3-19-19L265.3 92c2.6-8.6 13.4-11.3 19.8-4.9zM14.9 497.1c-19.6-19.6-20-51-.7-70.3C29 412 79.8 403.2 102.4 400.1c5.6-.9 10.3 3.9 9.5 9.5c-3.2 22.5-11.9 73.5-26.7 88.3C66 517 34.5 516.6 14.9 497.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-stars": { + "aliases": { + "names": [ + "grin-stars" + ], + "unicodes": { + "composite": [ + "1f929" + ], + "secondary": [ + "10f587" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eyes", + "face", + "grinning", + "star", + "star-struck", + "starry-eyed" + ] + }, + "unicode": "f587", + "label": "Face Grin Stars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm407.4 75.5c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5zM160 120c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L160 232.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L226.4 178c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6zm192 0c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L352 232.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L418.4 178c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM183.2 132.6c-1.3-2.8-4.1-4.6-7.2-4.6s-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L176 240.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L242.4 186c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7zm160 0c-1.3-2.8-4.1-4.6-7.2-4.6s-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L336 240.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L402.4 186c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7zm6.3 175.8c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c24.6 38.1 68.7 63.5 119.1 63.5s94.5-25.4 119.1-63.5c10.4-16.1-6.8-32.5-25.5-28.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tears": { + "aliases": { + "names": [ + "grin-tears" + ], + "unicodes": { + "composite": [ + "1f602" + ], + "secondary": [ + "10f588" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "face with tears of joy", + "joy", + "laugh", + "tear" + ] + }, + "unicode": "f588", + "label": "Face Grin Tears", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M548.6 371.4C506.4 454.8 419.9 512 320 512s-186.4-57.2-228.6-140.6c4.5-2.9 8.7-6.3 12.7-10.3c8.1-8.1 13.2-18.6 16.5-26.6c3.6-8.8 6.5-18.4 8.8-27.5c4.6-18.2 7.7-37 9.3-48.2c3.9-26.5-18.8-49.2-45.2-45.4c-6.8 .9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0S554.7 94.5 573.2 217.7c-10.3-2-19.8-3.5-26.6-4.4c-26.5-3.9-49.2 18.8-45.2 45.4c1.6 11.3 4.6 30 9.3 48.2c2.3 9.1 5.2 18.8 8.8 27.5c3.3 8.1 8.4 18.5 16.5 26.6c3.9 3.9 8.2 7.4 12.7 10.3zM107 254.1c-3.1 21.5-11.4 70.2-25.5 84.4c-.9 1-1.9 1.8-2.9 2.7C60 356.7 32 355.5 14.3 337.7c-18.7-18.7-19.1-48.8-.7-67.2c8.6-8.6 30.1-15.1 50.5-19.6c13-2.8 25.5-4.8 33.9-6c5.4-.8 9.9 3.7 9 9zm454.5 87.1c-.8-.6-1.5-1.3-2.3-2c-.2-.2-.5-.4-.7-.7c-14.1-14.1-22.5-62.9-25.5-84.4c-.8-5.4 3.7-9.9 9-9c1 .1 2.2 .3 3.3 .5c8.2 1.2 19.2 3 30.6 5.5c20.4 4.4 41.9 10.9 50.5 19.6c18.4 18.4 18 48.5-.7 67.2c-17.7 17.7-45.7 19-64.2 3.4zm-90.1-9.7c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.4 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5zM281.6 228.8l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C190.7 188.4 184 206.1 184 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0zm160 0l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C350.7 188.4 344 206.1 344 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M516.1 325.5c1 3 2.1 6 3.3 8.9c3.3 8.1 8.4 18.5 16.5 26.6c3.9 3.9 8.2 7.4 12.7 10.3C506.4 454.8 419.9 512 320 512s-186.4-57.2-228.6-140.6c4.5-2.9 8.7-6.3 12.7-10.3c8.1-8.1 13.2-18.6 16.5-26.6c1.2-2.9 2.3-5.9 3.3-8.9C152.5 406.2 229.5 464 320 464s167.5-57.8 196.1-138.5zM320 48c-101.4 0-185.8 72.5-204.3 168.5c-6.7-3.1-14.3-4.3-22.3-3.1c-6.8 .9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0S554.7 94.5 573.2 217.7c-10.3-2-19.8-3.5-26.6-4.4c-8-1.2-15.7 .1-22.3 3.1C505.8 120.5 421.4 48 320 48zM78.5 341.1C60 356.7 32 355.5 14.3 337.7c-18.7-18.7-19.1-48.8-.7-67.2c8.6-8.6 30.1-15.1 50.5-19.6c13-2.8 25.5-4.8 33.9-6c5.4-.8 9.9 3.7 9 9c-3.1 21.5-11.4 70.2-25.5 84.4c-.9 1-1.9 1.8-2.9 2.7zm483 0c-.8-.6-1.5-1.3-2.3-2c-.2-.2-.5-.4-.7-.7c-14.1-14.1-22.5-62.9-25.5-84.4c-.8-5.4 3.7-9.9 9-9c1 .1 2.2 .3 3.3 .5c8.2 1.2 19.2 3 30.6 5.5c20.4 4.4 41.9 10.9 50.5 19.6c18.4 18.4 18 48.5-.7 67.2c-17.7 17.7-45.7 19-64.2 3.4zM439 336.5C414.4 374.6 370.3 400 319.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5c18.7-4.4 35.9 12 25.5 28.1zM281.6 228.8l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0zm160 0l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tongue": { + "aliases": { + "names": [ + "grin-tongue" + ], + "unicodes": { + "composite": [ + "1f61b" + ], + "secondary": [ + "10f589" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "face with tongue", + "tongue" + ] + }, + "unicode": "f589", + "label": "Face Grin Tongue", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 368.9 73.1 464.7 174.5 498.8C165.3 484 160 466.6 160 448V400.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256C512 114.6 397.4 0 256 0S0 114.6 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 448V402.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256c0 81.7 47.1 152.4 115.7 186.4c-2.4-8.4-3.7-17.3-3.7-26.4V363.6c-8.9-8-16.7-17.1-23.1-27.1c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5c18.7-4.4 35.9 12 25.5 28.1c-6.4 9.9-14.2 19-23 27V416c0 9.2-1.3 18-3.7 26.4C416.9 408.4 464 337.7 464 256zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 416V378.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V416c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tongue-squint": { + "aliases": { + "names": [ + "grin-tongue-squint" + ], + "unicodes": { + "composite": [ + "1f61d" + ], + "secondary": [ + "10f58a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "eye", + "face", + "horrible", + "squinting face with tongue", + "taste", + "tongue" + ] + }, + "unicode": "f58a", + "label": "Face Grin Tongue Squint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 368.9 73.1 464.7 174.5 498.8C165.3 484 160 466.6 160 448V400.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256C512 114.6 397.4 0 256 0S0 114.6 0 256zM116 141.1c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6zm262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9zM320 448V402.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256c0 81.7 47.1 152.4 115.7 186.4c-2.4-8.4-3.7-17.3-3.7-26.4V392.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V416c0 9.2-1.3 18-3.7 26.4C416.9 408.4 464 337.7 464 256zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm116-98.9c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6zm262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9zM320 416V378.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V416c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tongue-wink": { + "aliases": { + "names": [ + "grin-tongue-wink" + ], + "unicodes": { + "composite": [ + "1f61c" + ], + "secondary": [ + "10f58b" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "eye", + "face", + "joke", + "tongue", + "wink", + "winking face with tongue" + ] + }, + "unicode": "f58b", + "label": "Face Grin Tongue Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.5 498.8C73.1 464.7 0 368.9 0 256C0 114.6 114.6 0 256 0S512 114.6 512 256c0 112.9-73.1 208.7-174.5 242.8C346.7 484 352 466.6 352 448V401.1c24.3-17.5 43.6-41.6 55.4-69.6c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c11.7 27.8 30.8 51.7 54.8 69.2V448c0 18.6 5.3 36 14.5 50.8zm20.7-265.2c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0zM336 272a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM320 402.6V448c0 35.3-28.7 64-64 64s-64-28.7-64-64V402.6c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9c2.8 12.6 20.8 12.6 23.6 0c2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6zM336 184a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M348.3 442.4c2.4-8.4 3.7-17.3 3.7-26.4V363.5c8.8-8 16.6-17.1 23-27c10.4-16.1-6.8-32.5-25.5-28.1c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c6.5 10 14.3 19.1 23.1 27.1V416c0 9.2 1.3 18 3.7 26.4C95.1 408.4 48 337.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 81.7-47.1 152.4-115.7 186.4zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.6 220c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C199.7 186.8 179 180 159.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zm176.7 12a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm-.4-72a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm0 128a80 80 0 1 0 0-160 80 80 0 1 0 0 160zM320 416c0 35.3-28.7 64-64 64s-64-28.7-64-64V378.6c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9c2.8 12.6 20.8 12.6 23.6 0c2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-wide": { + "aliases": { + "names": [ + "grin-alt" + ], + "unicodes": { + "composite": [ + "1f603" + ], + "secondary": [ + "10f581" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grinning face with big eyes", + "laugh", + "mouth", + "open", + "smile" + ] + }, + "unicode": "f581", + "label": "Face Grin Wide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM208 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64zm128 64c-17.7 0-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64s-14.3 64-32 64z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM224 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64zm96 64c-17.7 0-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64s-14.3 64-32 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-wink": { + "aliases": { + "names": [ + "grin-wink" + ], + "unicodes": { + "secondary": [ + "10f58c" + ] + } + }, + "changes": [ + "5.1.0", + "5.1.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "flirt", + "laugh", + "smile" + ] + }, + "unicode": "f58c", + "label": "Face Grin Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zm-16.9-79.2c-17.6-23.5-52.8-23.5-70.4 0c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-kiss": { + "aliases": { + "names": [ + "kiss" + ], + "unicodes": { + "composite": [ + "1f617" + ], + "secondary": [ + "10f596" + ] + } + }, + "changes": [ + "5.1.0", + "5.1.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "kiss", + "kissing face", + "love", + "smooch" + ] + }, + "unicode": "f596", + "label": "Face Kiss", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 443.1 257.4 448 240 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1 .3-.2 .6-.4c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm304.7 25.7c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 411.1 257.4 416 240 416c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.8-.5-.1-.1-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-kiss-beam": { + "aliases": { + "names": [ + "kiss-beam" + ], + "unicodes": { + "composite": [ + "1f619" + ], + "secondary": [ + "10f597" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "eye", + "face", + "kiss", + "kissing face with smiling eyes", + "love", + "smile", + "smooch" + ] + }, + "unicode": "f597", + "label": "Face Kiss Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 443.1 257.4 448 240 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1 .3-.2 .6-.4c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-84.9l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm304.7 41.7c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 427.1 257.4 432 240 432c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-68.9l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-kiss-wink-heart": { + "aliases": { + "names": [ + "kiss-wink-heart" + ], + "unicodes": { + "composite": [ + "1f618" + ], + "secondary": [ + "10f598" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "face blowing a kiss", + "kiss", + "love", + "smooch" + ] + }, + "unicode": "f598", + "label": "Face Kiss Wink Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498 339.7c9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512c35.4 0 69.1-7.2 99.7-20.2c-4.8-5.5-8.5-12.2-10.4-19.7l-22.9-89.3c-10-39 11.8-80.9 51.8-92.1c37.2-10.4 73.8 10.1 87.5 44c12.7-1.6 25.1 .4 36.2 5zM296 332c0 6.9-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C258.7 443.1 241.4 448 224 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.6-.4-.3-.2-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm194.8 57.6c-17.6-23.5-52.8-23.5-70.4 0c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2zM434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M338.9 446.8c-25.4 11-53.4 17.2-82.9 17.2C141.1 464 48 370.9 48 256S141.1 48 256 48s208 93.1 208 208c0 22.4-3.5 43.9-10.1 64.1c3.1 4.5 5.7 9.4 7.8 14.6c12.7-1.6 25.1 .4 36.2 5c9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512c35.4 0 69.1-7.2 99.7-20.2c-4.8-5.5-8.5-12.2-10.4-19.7l-6.5-25.3zM296 316c0-6.9-3.1-13.2-7.3-18.3c-4.3-5.2-10.1-9.7-16.7-13.4C258.7 276.9 241.4 272 224 272c-3.6 0-6.8 2.5-7.7 6s.6 7.2 3.8 9l0 0 0 0 0 0 .2 .1c.2 .1 .5 .3 .9 .5c.8 .5 2 1.2 3.4 2.1c2.8 1.9 6.5 4.5 10.2 7.6c3.7 3.1 7.2 6.6 9.6 10.1c2.5 3.5 3.5 6.4 3.5 8.6s-1 5-3.5 8.6c-2.5 3.5-5.9 6.9-9.6 10.1c-3.7 3.1-7.4 5.7-10.2 7.6c-1.4 .9-2.6 1.6-3.4 2.1c-.4 .2-.7 .4-.9 .5l-.2 .1 0 0 0 0 0 0 0 0 0 0c-2.5 1.4-4.1 4.1-4.1 7s1.6 5.6 4.1 7l0 0 0 0 0 0 .2 .1c.2 .1 .5 .3 .9 .5c.8 .5 2 1.2 3.4 2.1c2.8 1.9 6.5 4.5 10.2 7.6c3.7 3.1 7.2 6.6 9.6 10.1c2.5 3.5 3.5 6.4 3.5 8.6s-1 5-3.5 8.6c-2.5 3.5-5.9 6.9-9.6 10.1c-3.7 3.1-7.4 5.7-10.2 7.6c-1.4 .9-2.6 1.6-3.4 2.1c-.4 .2-.7 .4-.9 .5l-.2 .1 0 0 0 0 0 0 0 0c-3.2 1.8-4.7 5.5-3.8 9s4.1 6 7.7 6c17.4 0 34.7-4.9 47.9-12.3c6.6-3.7 12.5-8.2 16.7-13.4c4.3-5.1 7.3-11.4 7.3-18.3s-3.1-13.2-7.3-18.3c-4.3-5.2-10.1-9.7-16.7-13.4c-2.7-1.5-5.7-3-8.7-4.3c3.1-1.3 6-2.7 8.7-4.3c6.6-3.7 12.5-8.2 16.7-13.4c4.3-5.1 7.3-11.4 7.3-18.3zM176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm159.3-20c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C375.7 186.8 355 180 335.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zM434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh": { + "aliases": { + "names": [ + "laugh" + ], + "unicodes": { + "secondary": [ + "10f599" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "unicode": "f599", + "label": "Face Laugh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh-beam": { + "aliases": { + "names": [ + "laugh-beam" + ], + "unicodes": { + "composite": [ + "1f601" + ], + "secondary": [ + "10f59a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "beaming face with smiling eyes", + "emoticon", + "eye", + "face", + "grin", + "happy", + "smile" + ] + }, + "unicode": "f59a", + "label": "Face Laugh Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM217.6 212.8l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zm86.9-85.1l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh-squint": { + "aliases": { + "names": [ + "laugh-squint" + ], + "unicodes": { + "secondary": [ + "10f59b" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "unicode": "f59b", + "label": "Face Laugh Squint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zm36.7-199.4l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 125.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zm2.8-183.3l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 141.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh-wink": { + "aliases": { + "names": [ + "laugh-wink" + ], + "unicodes": { + "secondary": [ + "10f59c" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "unicode": "f59c", + "label": "Face Laugh Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm156.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-meh": { + "aliases": { + "names": [ + "meh" + ], + "unicodes": { + "composite": [ + "1f610" + ], + "secondary": [ + "10f11a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "deadpan", + "emoticon", + "face", + "meh", + "neutral", + "neutral face", + "rating" + ] + }, + "unicode": "f11a", + "label": "Face Meh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM160 336H352c8.8 0 16 7.2 16 16s-7.2 16-16 16H160c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM184 328c-13.3 0-24 10.7-24 24s10.7 24 24 24H328c13.3 0 24-10.7 24-24s-10.7-24-24-24H184z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-meh-blank": { + "aliases": { + "names": [ + "meh-blank" + ], + "unicodes": { + "composite": [ + "1f636" + ], + "secondary": [ + "10f5a4" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "face without mouth", + "mouth", + "neutral", + "quiet", + "rating", + "silent" + ] + }, + "unicode": "f5a4", + "label": "Face Meh Blank", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm208.4-48a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm128 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 0 0 416 208 208 0 1 0 0-416zM512 256A256 256 0 1 1 0 256a256 256 0 1 1 512 0zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-rolling-eyes": { + "aliases": { + "names": [ + "meh-rolling-eyes" + ], + "unicodes": { + "composite": [ + "1f644" + ], + "secondary": [ + "10f5a5" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eyeroll", + "eyes", + "face", + "face with rolling eyes", + "neutral", + "rating", + "rolling" + ] + }, + "unicode": "f5a5", + "label": "Face Rolling Eyes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM192 368H320c8.8 0 16 7.2 16 16s-7.2 16-16 16H192c-8.8 0-16-7.2-16-16s7.2-16 16-16zm32-144c0 35.3-28.7 64-64 64s-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4c-3.7 5.2-5.8 11.6-5.8 18.4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4C208.5 175.6 224 198 224 224zm128 64c-35.3 0-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4c-3.7 5.2-5.8 11.6-5.8 18.4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4C400.5 175.6 416 198 416 224c0 35.3-28.7 64-64 64z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM168 376c0 13.3 10.7 24 24 24H320c13.3 0 24-10.7 24-24s-10.7-24-24-24H192c-13.3 0-24 10.7-24 24zm-8-104c-26.5 0-48-21.5-48-48c0-14.3 6.3-27.2 16.2-36c-.2 1.3-.2 2.6-.2 4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1.4-.1-2.7-.2-4c10 8.8 16.2 21.7 16.2 36c0 26.5-21.5 48-48 48zm0 32a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm192-32c-26.5 0-48-21.5-48-48c0-14.3 6.3-27.2 16.2-36c-.2 1.3-.2 2.6-.2 4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1.4-.1-2.7-.2-4c10 8.8 16.2 21.7 16.2 36c0 26.5-21.5 48-48 48zm0 32a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-sad-cry": { + "aliases": { + "names": [ + "sad-cry" + ], + "unicodes": { + "composite": [ + "1f62d" + ], + "secondary": [ + "10f5b3" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cry", + "emoticon", + "face", + "loudly crying face", + "sad", + "sob", + "tear", + "tears" + ] + }, + "unicode": "f5b3", + "label": "Face Sad Cry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 493.4c-29.6 12-62.1 18.6-96 18.6s-66.4-6.6-96-18.6V288c0-8.8-7.2-16-16-16s-16 7.2-16 16V477.8C51.5 433.5 0 350.8 0 256C0 114.6 114.6 0 256 0S512 114.6 512 256c0 94.8-51.5 177.5-128 221.8V288c0-8.8-7.2-16-16-16s-16 7.2-16 16V493.4zM195.2 233.6c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0zm121.6 0c17.6-23.5 52.8-23.5 70.4 0c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2zM208 336v32c0 26.5 21.5 48 48 48s48-21.5 48-48V336c0-26.5-21.5-48-48-48s-48 21.5-48 48z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 406.1V288c0-13.3-10.7-24-24-24s-24 10.7-24 24V440.6c-28.7 15-61.4 23.4-96 23.4s-67.3-8.5-96-23.4V288c0-13.3-10.7-24-24-24s-24 10.7-24 24V406.1C72.6 368.2 48 315 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 59-24.6 112.2-64 150.1zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.6 220c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C199.7 186.8 179 180 159.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zm166.6 9.7c5.5-5.8 14.8-9.7 25.4-9.7s19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C391.7 186.8 371 180 351.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9zM208 320v32c0 26.5 21.5 48 48 48s48-21.5 48-48V320c0-26.5-21.5-48-48-48s-48 21.5-48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-sad-tear": { + "aliases": { + "names": [ + "sad-tear" + ], + "unicodes": { + "composite": [ + "1f622" + ], + "secondary": [ + "10f5b4" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cry", + "crying face", + "emoticon", + "face", + "sad", + "tear", + "tears" + ] + }, + "unicode": "f5b4", + "label": "Face Sad Tear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm240 80c0-8.8 7.2-16 16-16c45 0 85.6 20.5 115.7 53.1c6 6.5 5.6 16.6-.9 22.6s-16.6 5.6-22.6-.9c-25-27.1-57.4-42.9-92.3-42.9c-8.8 0-16-7.2-16-16zm-80 80c-26.5 0-48-21-48-47c0-20 28.6-60.4 41.6-77.7c3.2-4.4 9.6-4.4 12.8 0C179.6 308.6 208 349 208 369c0 26-21.5 47-48 47zM367.6 208a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm-192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175.9 448c-35-.1-65.5-22.6-76-54.6C67.6 356.8 48 308.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208s-93.1 208-208 208c-28.4 0-55.5-5.7-80.1-16zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM128 369c0 26 21.5 47 48 47s48-21 48-47c0-20-28.4-60.4-41.6-77.7c-3.2-4.4-9.6-4.4-12.8 0C156.6 308.6 128 349 128 369zm128-65c-13.3 0-24 10.7-24 24s10.7 24 24 24c30.7 0 58.7 11.5 80 30.6c9.9 8.8 25 8 33.9-1.9s8-25-1.9-33.9C338.3 320.2 299 304 256 304zm47.6-96a32 32 0 1 0 64 0 32 32 0 1 0 -64 0zm-128 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-smile": { + "aliases": { + "names": [ + "smile" + ], + "unicodes": { + "composite": [ + "1f642" + ], + "secondary": [ + "10f118" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "approve", + "emoticon", + "face", + "happy", + "rating", + "satisfied", + "slightly smiling face", + "smile" + ] + }, + "unicode": "f118", + "label": "Face Smile", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-smile-beam": { + "aliases": { + "names": [ + "smile-beam" + ], + "unicodes": { + "composite": [ + "1f60a" + ], + "secondary": [ + "10f5b8" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blush", + "emoticon", + "eye", + "face", + "happy", + "positive", + "smile", + "smiling face with smiling eyes" + ] + }, + "unicode": "f5b8", + "label": "Face Smile Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zm53.5-96.7l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zm40-89.3l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-smile-wink": { + "aliases": { + "names": [ + "smile-wink" + ], + "unicodes": { + "composite": [ + "1f609" + ], + "secondary": [ + "10f4da" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "happy", + "hint", + "joke", + "wink", + "winking face" + ] + }, + "unicode": "f4da", + "label": "Face Smile Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm156.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-surprise": { + "aliases": { + "names": [ + "surprise" + ], + "unicodes": { + "composite": [ + "1f62e" + ], + "secondary": [ + "10f5c2" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "face with open mouth", + "mouth", + "open", + "shocked", + "sympathy" + ] + }, + "unicode": "f5c2", + "label": "Face Surprise", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM256 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM256 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-tired": { + "aliases": { + "names": [ + "tired" + ], + "unicodes": { + "composite": [ + "1f62b" + ], + "secondary": [ + "10f5c8" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "angry", + "emoticon", + "face", + "grumpy", + "tired", + "tired face", + "upset" + ] + }, + "unicode": "f5c8", + "label": "Face Tired", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.7 328.7c22-22 53.9-40.7 91.3-40.7s69.3 18.7 91.3 40.7c11.1 11.1 20.1 23.4 26.4 35.4c6.2 11.7 10.3 24.4 10.3 35.9c0 5.2-2.6 10.2-6.9 13.2s-9.8 3.7-14.7 1.8l-20.5-7.7c-26.9-10.1-55.5-15.3-84.3-15.3h-3.2c-28.8 0-57.3 5.2-84.3 15.3L149.6 415c-4.9 1.8-10.4 1.2-14.7-1.8s-6.9-7.9-6.9-13.2c0-11.6 4.2-24.2 10.3-35.9c6.3-12 15.3-24.3 26.4-35.4zm-31.2-182l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "lastModified": 1684767583, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.5 64.3C196.1 302.1 223.8 288 256 288s59.9 14.1 79.5 32.3C354.5 338.1 368 362 368 384c0 5.4-2.7 10.4-7.2 13.4s-10.2 3.4-15.2 1.3l-17.2-7.5c-22.8-10-47.5-15.1-72.4-15.1s-49.6 5.2-72.4 15.1l-17.2 7.5c-4.9 2.2-10.7 1.7-15.2-1.3s-7.2-8-7.2-13.4c0-22 13.5-45.9 32.5-63.7zm-43-173.6l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "facebook": { + "aliases": { + "unicodes": { + "composite": [ + "f230" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook-official", + "social network" + ] + }, + "unicode": "f09a", + "label": "Facebook", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "facebook-f": { + "changes": [ + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook" + ] + }, + "unicode": "f39e", + "label": "Facebook F", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "facebook-messenger": { + "changes": [ + "5.0.0", + "5.8.2", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f39f", + "label": "Facebook Messenger", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256.55 8C116.52 8 8 110.34 8 248.57c0 72.3 29.71 134.78 78.07 177.94 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.31c52.91-23.3 53.59-25.14 62.56-22.7C337.85 521.8 504 423.7 504 248.57 504 110.34 396.59 8 256.55 8zm149.24 185.13l-73 115.57a37.37 37.37 0 0 1-53.91 9.93l-58.08-43.47a15 15 0 0 0-18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.57a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f863" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ac", + "air conditioning", + "blade", + "blower", + "cool", + "hot" + ] + }, + "unicode": "f863", + "label": "Fan", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M258.6 0c-1.7 0-3.4 .1-5.1 .5C168 17 115.6 102.3 130.5 189.3c2.9 17 8.4 32.9 15.9 47.4L32 224H29.4C13.2 224 0 237.2 0 253.4c0 1.7 .1 3.4 .5 5.1C17 344 102.3 396.4 189.3 381.5c17-2.9 32.9-8.4 47.4-15.9L224 480v2.6c0 16.2 13.2 29.4 29.4 29.4c1.7 0 3.4-.1 5.1-.5C344 495 396.4 409.7 381.5 322.7c-2.9-17-8.4-32.9-15.9-47.4L480 288h2.6c16.2 0 29.4-13.2 29.4-29.4c0-1.7-.1-3.4-.5-5.1C495 168 409.7 115.6 322.7 130.5c-17 2.9-32.9 8.4-47.4 15.9L288 32V29.4C288 13.2 274.8 0 258.6 0zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fantasy-flight-games": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "unicode": "f6dc", + "label": "Fantasy Flight-games", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32.86L32.86 256 256 479.14 479.14 256 256 32.86zM88.34 255.83c1.96-2 11.92-12.3 96.49-97.48 41.45-41.75 86.19-43.77 119.77-18.69 24.63 18.4 62.06 58.9 62.15 59 .68.74 1.07 2.86.58 3.38-11.27 11.84-22.68 23.54-33.5 34.69-34.21-32.31-40.52-38.24-48.51-43.95-17.77-12.69-41.4-10.13-56.98 5.1-2.17 2.13-1.79 3.43.12 5.35 2.94 2.95 28.1 28.33 35.09 35.78-11.95 11.6-23.66 22.97-35.69 34.66-12.02-12.54-24.48-25.53-36.54-38.11-21.39 21.09-41.69 41.11-61.85 60.99zm234.82 101.6c-35.49 35.43-78.09 38.14-106.99 20.47-22.08-13.5-39.38-32.08-72.93-66.84 12.05-12.37 23.79-24.42 35.37-36.31 33.02 31.91 37.06 36.01 44.68 42.09 18.48 14.74 42.52 13.67 59.32-1.8 3.68-3.39 3.69-3.64.14-7.24-10.59-10.73-21.19-21.44-31.77-32.18-1.32-1.34-3.03-2.48-.8-4.69 10.79-10.71 21.48-21.52 32.21-32.29.26-.26.65-.38 1.91-1.07 12.37 12.87 24.92 25.92 37.25 38.75 21.01-20.73 41.24-40.68 61.25-60.42 13.68 13.4 27.13 26.58 40.86 40.03-20.17 20.86-81.68 82.71-100.5 101.5zM256 0L0 256l256 256 256-256L256 0zM16 256L256 16l240 240-240 240L16 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "faucet": { + "aliases": { + "unicodes": { + "secondary": [ + "10e005" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "drinking", + "drip", + "house", + "hygiene", + "kitchen", + "potable", + "potable water", + "sanitation", + "sink", + "water" + ] + }, + "unicode": "e005", + "label": "Faucet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96v12L96 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l96-12 31-3.9 1-.1 1 .1 31 3.9 96 12c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 12V96c0-17.7-14.3-32-32-32s-32 14.3-32 32zM32 256c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H132.1c20.2 29 53.9 48 91.9 48s71.7-19 91.9-48H352c17.7 0 32 14.3 32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32c0-88.4-71.6-160-160-160H320l-22.6-22.6c-6-6-14.1-9.4-22.6-9.4H256V180.2l-32-4-32 4V224H173.3c-8.5 0-16.6 3.4-22.6 9.4L128 256H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "faucet-drip": { + "aliases": { + "unicodes": { + "composite": [ + "1f6b0" + ], + "secondary": [ + "10e006" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drinking", + "drip", + "house", + "hygiene", + "kitchen", + "potable", + "potable water", + "sanitation", + "sink", + "water" + ] + }, + "unicode": "e006", + "label": "Faucet Drip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V44l96-12c17.7 0 32 14.3 32 32s-14.3 32-32 32L256 84l-31-3.9-1-.1-1 .1L192 84 96 96C78.3 96 64 81.7 64 64s14.3-32 32-32l96 12V32c0-17.7 14.3-32 32-32zM0 224c0-17.7 14.3-32 32-32h96l22.6-22.6c6-6 14.1-9.4 22.6-9.4H192V116.2l32-4 32 4V160h18.7c8.5 0 16.6 3.4 22.6 9.4L320 192h32c88.4 0 160 71.6 160 160c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32s-14.3-32-32-32H315.9c-20.2 29-53.9 48-91.9 48s-71.7-19-91.9-48H32c-17.7 0-32-14.3-32-32V224zM436.8 423.4c1.9-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5 .9-8.9 2.7-13.1l18.2-42.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fax": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e0", + "1f5b7" + ], + "secondary": [ + "10f1ac" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Fax Icon", + "business", + "communicate", + "copy", + "facsimile", + "fax", + "fax machine", + "send" + ] + }, + "unicode": "f1ac", + "label": "Fax", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 64v96h64V64H386.7L416 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L432 18.7C420 6.7 403.7 0 386.7 0H192c-35.3 0-64 28.7-64 64zM0 160V480c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zm480 32H128V480c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32zM256 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM224 416a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "feather": { + "aliases": { + "unicodes": { + "composite": [ + "1fab6" + ], + "secondary": [ + "10f52d" + ] + } + }, + "changes": [ + "5.0.13", + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "feather", + "flight", + "light", + "plucked", + "plumage", + "quill", + "write" + ] + }, + "unicode": "f52d", + "label": "Feather", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.5 215.6L23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57-57h68c49.7 0 97.9-14.4 139-41c11.1-7.2 5.5-23-7.8-23c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l81-24.3c2.5-.8 4.8-2.1 6.7-4l22.4-22.4c10.1-10.1 2.9-27.3-11.3-27.3l-32.2 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l112-33.6c4-1.2 7.4-3.9 9.3-7.7C506.4 207.6 512 184.1 512 160c0-41-16.3-80.3-45.3-109.3l-5.5-5.5C432.3 16.3 393 0 352 0s-80.3 16.3-109.3 45.3L139 149C91 197 64 262.1 64 330v55.3L253.6 195.8c6.2-6.2 16.4-6.2 22.6 0c5.4 5.4 6.1 13.6 2.2 19.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "feather-pointed": { + "aliases": { + "names": [ + "feather-alt" + ], + "unicodes": { + "secondary": [ + "10f56b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "light", + "plucked", + "quill", + "write" + ] + }, + "unicode": "f56b", + "label": "Feather Pointed", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.5 215.6L23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l74.8-74.8c7.4 4.6 15.3 8.2 23.8 10.5C200.3 452.8 270 454.5 338 409.4c12.2-8.1 5.8-25.4-8.8-25.4l-16.1 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l97.7-29.3c3.4-1 6.4-3.1 8.4-6.1c4.4-6.4 8.6-12.9 12.6-19.6c6.2-10.3-1.5-23-13.5-23l-38.6 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l80.9-24.3c4.6-1.4 8.4-4.8 10.2-9.3C494.5 163 507.8 86.1 511.9 36.8c.8-9.9-3-19.6-10-26.6s-16.7-10.8-26.6-10C391.5 7 228.5 40.5 137.4 131.6C57.3 211.7 56.7 302.3 71.3 356.4c2.1 7.9 12 9.6 17.8 3.8L253.6 195.8c6.2-6.2 16.4-6.2 22.6 0c5.4 5.4 6.1 13.6 2.2 19.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fedex": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Federal Express", + "package", + "shipping" + ] + }, + "unicode": "f797", + "label": "FedEx", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M586 284.5l53.3-59.9h-62.4l-21.7 24.8-22.5-24.8H414v-16h56.1v-48.1H318.9V236h-.5c-9.6-11-21.5-14.8-35.4-14.8-28.4 0-49.8 19.4-57.3 44.9-18-59.4-97.4-57.6-121.9-14v-24.2H49v-26.2h60v-41.1H0V345h49v-77.5h48.9c-1.5 5.7-2.3 11.8-2.3 18.2 0 73.1 102.6 91.4 130.2 23.7h-42c-14.7 20.9-45.8 8.9-45.8-14.6h85.5c3.7 30.5 27.4 56.9 60.1 56.9 14.1 0 27-6.9 34.9-18.6h.5V345h212.2l22.1-25 22.3 25H640l-54-60.5zm-446.7-16.6c6.1-26.3 41.7-25.6 46.5 0h-46.5zm153.4 48.9c-34.6 0-34-62.8 0-62.8 32.6 0 34.5 62.8 0 62.8zm167.8 19.1h-94.4V169.4h95v30.2H405v33.9h55.5v28.1h-56.1v44.7h56.1v29.6zm-45.9-39.8v-24.4h56.1v-44l50.7 57-50.7 57v-45.6h-56.1zm138.6 10.3l-26.1 29.5H489l45.6-51.2-45.6-51.2h39.7l26.6 29.3 25.6-29.3h38.5l-45.4 51 46 51.4h-40.5l-26.3-29.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fedora": { + "changes": [ + "5.6.0", + "5.6.3", + "5.8.0", + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f798", + "label": "Fedora", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M.0413 255.8C.1219 132.2 100.3 32 224 32C347.7 32 448 132.3 448 256C448 379.7 347.8 479.9 224.1 480H50.93C22.84 480 .0832 457.3 .0416 429.2H0V255.8H.0413zM342.6 192.7C342.6 153 307 124.2 269.4 124.2C234.5 124.2 203.6 150.5 199.3 184.1C199.1 187.9 198.9 189.1 198.9 192.6C198.8 213.7 198.9 235.4 198.1 257C199 283.1 199.1 309.1 198.1 333.6C198.1 360.7 178.7 379.1 153.4 379.1C128.1 379.1 107.6 358.9 107.6 333.6C108.1 305.9 130.2 288.3 156.1 287.5H156.3L182.6 287.3V250L156.3 250.2C109.2 249.8 71.72 286.7 70.36 333.6C70.36 379.2 107.9 416.5 153.4 416.5C196.4 416.5 232.1 382.9 236 340.9L236.2 287.4L268.8 287.1C294.1 287.3 293.8 249.3 268.6 249.8L236.2 250.1C236.2 243.7 236.3 237.3 236.3 230.9C236.4 218.2 236.4 205.5 236.2 192.7C236.3 176.2 252 161.5 269.4 161.5C286.9 161.5 305.3 170.2 305.3 192.7C305.3 195.9 305.2 197.8 305 199C303.1 209.5 310.2 219.4 320.7 220.9C331.3 222.4 340.9 214.8 341.9 204.3C342.5 200.1 342.6 196.4 342.6 192.7H342.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ferry": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barge", + "boat", + "carry", + "ferryboat", + "ship" + ] + }, + "unicode": "e4ea", + "label": "Ferry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 0H352c17.7 0 32 14.3 32 32h75.1c20.6 0 31.6 24.3 18.1 39.8L456 96H120L98.8 71.8C85.3 56.3 96.3 32 116.9 32H192c0-17.7 14.3-32 32-32zM96 128H480c17.7 0 32 14.3 32 32V283.5c0 13.3-4.2 26.3-11.9 37.2l-51.4 71.9c-1.9 1.1-3.7 2.2-5.5 3.5c-15.5 10.7-34 18-51 19.9H375.6c-17.1-1.8-35-9-50.8-19.9c-22.1-15.5-51.6-15.5-73.7 0c-14.8 10.2-32.5 18-50.6 19.9H183.9c-17-1.8-35.6-9.2-51-19.9c-1.8-1.3-3.7-2.4-5.6-3.5L75.9 320.7C68.2 309.8 64 296.8 64 283.5V160c0-17.7 14.3-32 32-32zm32 64v96H448V192H128zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.3-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "figma": { + "changes": [ + "5.6.0", + "5.7.0", + "5.8.0", + "5.15.4", + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "unicode": "f799", + "label": "Figma", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M14 95.7924C14 42.8877 56.8878 0 109.793 0H274.161C327.066 0 369.954 42.8877 369.954 95.7924C369.954 129.292 352.758 158.776 326.711 175.897C352.758 193.019 369.954 222.502 369.954 256.002C369.954 308.907 327.066 351.795 274.161 351.795H272.081C247.279 351.795 224.678 342.369 207.666 326.904V415.167C207.666 468.777 163.657 512 110.309 512C57.5361 512 14 469.243 14 416.207C14 382.709 31.1945 353.227 57.2392 336.105C31.1945 318.983 14 289.5 14 256.002C14 222.502 31.196 193.019 57.2425 175.897C31.196 158.776 14 129.292 14 95.7924ZM176.288 191.587H109.793C74.2172 191.587 45.3778 220.427 45.3778 256.002C45.3778 291.44 73.9948 320.194 109.381 320.416C109.518 320.415 109.655 320.415 109.793 320.415H176.288V191.587ZM207.666 256.002C207.666 291.577 236.505 320.417 272.081 320.417H274.161C309.737 320.417 338.576 291.577 338.576 256.002C338.576 220.427 309.737 191.587 274.161 191.587H272.081C236.505 191.587 207.666 220.427 207.666 256.002ZM109.793 351.795C109.655 351.795 109.518 351.794 109.381 351.794C73.9948 352.015 45.3778 380.769 45.3778 416.207C45.3778 451.652 74.6025 480.622 110.309 480.622C146.591 480.622 176.288 451.186 176.288 415.167V351.795H109.793ZM109.793 31.3778C74.2172 31.3778 45.3778 60.2173 45.3778 95.7924C45.3778 131.368 74.2172 160.207 109.793 160.207H176.288V31.3778H109.793ZM207.666 160.207H274.161C309.737 160.207 338.576 131.368 338.576 95.7924C338.576 60.2173 309.737 31.3778 274.161 31.3778H207.666V160.207Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "file": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c4", + "1f5cb", + "f016" + ], + "secondary": [ + "10f15b" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Empty Document", + "document", + "new", + "page", + "page facing up", + "pdf", + "resume" + ] + }, + "unicode": "f15b", + "label": "File", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128z" + }, + "regular": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 464c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-arrow-down": { + "aliases": { + "names": [ + "file-download" + ], + "unicodes": { + "secondary": [ + "10f56d" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "export", + "save" + ] + }, + "unicode": "f56d", + "label": "File Arrow Down", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM216 232V334.1l31-31c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-72 72c-9.4 9.4-24.6 9.4-33.9 0l-72-72c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l31 31V232c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-arrow-up": { + "aliases": { + "names": [ + "file-upload" + ], + "unicodes": { + "secondary": [ + "10f574" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "import", + "page", + "save" + ] + }, + "unicode": "f574", + "label": "File Arrow Up", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM216 408c0 13.3-10.7 24-24 24s-24-10.7-24-24V305.9l-31 31c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l72-72c9.4-9.4 24.6-9.4 33.9 0l72 72c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-31-31V408z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-audio": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c7" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "mp3", + "music", + "page", + "play", + "sound" + ] + }, + "unicode": "f1c7", + "label": "File Audio", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zm2 226.3c37.1 22.4 62 63.1 62 109.7s-24.9 87.3-62 109.7c-7.6 4.6-17.4 2.1-22-5.4s-2.1-17.4 5.4-22C269.4 401.5 288 370.9 288 336s-18.6-65.5-46.5-82.3c-7.6-4.6-10-14.4-5.4-22s14.4-10 22-5.4zm-91.9 30.9c6 2.5 9.9 8.3 9.9 14.8V400c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L113.4 376H80c-8.8 0-16-7.2-16-16V312c0-8.8 7.2-16 16-16h33.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5zm51 34.9c6.6-5.9 16.7-5.3 22.6 1.3C249.8 304.6 256 319.6 256 336s-6.2 31.4-16.3 42.7c-5.9 6.6-16 7.1-22.6 1.3s-7.1-16-1.3-22.6c5.1-5.7 8.1-13.1 8.1-21.3s-3.1-15.7-8.1-21.3c-5.9-6.6-5.3-16.7 1.3-22.6z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464H320c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM192 272V400c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L129.4 376H112c-8.8 0-16-7.2-16-16V312c0-8.8 7.2-16 16-16h17.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5s9.9 8.3 9.9 14.8zm85.8-4c11.6 20 18.2 43.3 18.2 68s-6.6 48-18.2 68c-6.6 11.5-21.3 15.4-32.8 8.8s-15.4-21.3-8.8-32.8c7.5-12.9 11.8-27.9 11.8-44s-4.3-31.1-11.8-44c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-circle-check": { + "changes": [ + "6.0.0", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "not affected", + "ok", + "okay", + "paper" + ] + }, + "unicode": "e5a0", + "label": "File Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM288 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e4eb", + "label": "File Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e4ed", + "label": "File Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM288 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm224 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H496c8.8 0 16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-plus": { + "aliases": { + "unicodes": { + "composite": [ + "e4ee" + ] + } + }, + "changes": [ + "6.0.0", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "document", + "file", + "new", + "page", + "paper", + "pdf" + ] + }, + "unicode": "e494", + "label": "File Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16V384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H448V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e4ef", + "label": "File Circle Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM368 321.6V328c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9c0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3c15.1-7.9 24.5-23.6 24.5-40.6c0-25.4-20.6-45.9-45.9-45.9H409.6c-23 0-41.6 18.6-41.6 41.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-xmark": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e5a1", + "label": "File Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c9" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "css", + "development", + "document", + "html" + ] + }, + "unicode": "f1c9", + "label": "File Code", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM153 289l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L71 337c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM265 255l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm97 289c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L79 303c-9.4 9.4-9.4 24.6 0 33.9l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-31-31 31-31zM257 255c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9l-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-contract": { + "aliases": { + "unicodes": { + "secondary": [ + "10f56c" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "binding", + "document", + "legal", + "signature" + ] + }, + "unicode": "f56c", + "label": "File Contract", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm54.2 253.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.7 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7c15.9 0 30.4 9 37.5 23.2l4.4 8.8H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 349l-9.8 32.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-csv": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6dd" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "excel", + "numbers", + "spreadsheets", + "table" + ] + }, + "unicode": "f6dd", + "label": "File Csv", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V304H176c-35.3 0-64 28.7-64 64V512H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM200 352h16c22.1 0 40 17.9 40 40v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-4.4-3.6-8-8-8H200c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8v-8c0-8.8 7.2-16 16-16s16 7.2 16 16v8c0 22.1-17.9 40-40 40H200c-22.1 0-40-17.9-40-40V392c0-22.1 17.9-40 40-40zm133.1 0H368c8.8 0 16 7.2 16 16s-7.2 16-16 16H333.1c-7.2 0-13.1 5.9-13.1 13.1c0 5.2 3 9.9 7.8 12l37.4 16.6c16.3 7.2 26.8 23.4 26.8 41.2c0 24.9-20.2 45.1-45.1 45.1H304c-8.8 0-16-7.2-16-16s7.2-16 16-16h42.9c7.2 0 13.1-5.9 13.1-13.1c0-5.2-3-9.9-7.8-12l-37.4-16.6c-16.3-7.2-26.8-23.4-26.8-41.2c0-24.9 20.2-45.1 45.1-45.1zm98.9 0c8.8 0 16 7.2 16 16v31.6c0 23 5.5 45.6 16 66c10.5-20.3 16-42.9 16-66V368c0-8.8 7.2-16 16-16s16 7.2 16 16v31.6c0 34.7-10.3 68.7-29.6 97.6l-5.1 7.7c-3 4.5-8 7.1-13.3 7.1s-10.3-2.7-13.3-7.1l-5.1-7.7c-19.3-28.9-29.6-62.9-29.6-97.6V368c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-excel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c3" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "csv", + "document", + "numbers", + "spreadsheets", + "table" + ] + }, + "unicode": "f1c3", + "label": "File Excel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM155.7 250.2L192 302.1l36.3-51.9c7.6-10.9 22.6-13.5 33.4-5.9s13.5 22.6 5.9 33.4L221.3 344l46.4 66.2c7.6 10.9 5 25.8-5.9 33.4s-25.8 5-33.4-5.9L192 385.8l-36.3 51.9c-7.6 10.9-22.6 13.5-33.4 5.9s-13.5-22.6-5.9-33.4L162.7 344l-46.4-66.2c-7.6-10.9-5-25.8 5.9-33.4s25.8-5 33.4 5.9z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 448V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm90.9 233.3c-8.1-10.5-23.2-12.3-33.7-4.2s-12.3 23.2-4.2 33.7L161.6 320l-44.5 57.3c-8.1 10.5-6.3 25.5 4.2 33.7s25.5 6.3 33.7-4.2L192 359.1l37.1 47.6c8.1 10.5 23.2 12.3 33.7 4.2s12.3-23.2 4.2-33.7L222.4 320l44.5-57.3c8.1-10.5 6.3-25.5-4.2-33.7s-25.5-6.3-33.7 4.2L192 280.9l-37.1-47.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-export": { + "aliases": { + "names": [ + "arrow-right-from-file" + ], + "unicodes": { + "secondary": [ + "10f56e" + ] + } + }, + "changes": [ + "5.1.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "save" + ] + }, + "unicode": "f56e", + "label": "File Export", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V288H216c-13.3 0-24 10.7-24 24s10.7 24 24 24H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM384 336V288H494.1l-39-39c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l39-39H384zm0-208H256V0L384 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-image": { + "aliases": { + "unicodes": { + "composite": [ + "1f5bb" + ], + "secondary": [ + "10f1c5" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Document with Picture", + "document", + "image", + "jpg", + "photo", + "png" + ] + }, + "unicode": "f1c5", + "label": "File Image", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm152 32c5.3 0 10.2 2.6 13.2 6.9l88 128c3.4 4.9 3.7 11.3 1 16.5s-8.2 8.6-14.2 8.6H216 176 128 80c-5.8 0-11.1-3.1-13.9-8.1s-2.8-11.2 .2-16.1l48-80c2.9-4.8 8.1-7.8 13.7-7.8s10.8 2.9 13.7 7.8l12.8 21.4 48.3-70.2c3-4.3 7.9-6.9 13.2-6.9z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm96 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm69.2 46.9c-3-4.3-7.9-6.9-13.2-6.9s-10.2 2.6-13.2 6.9l-41.3 59.7-11.9-19.1c-2.9-4.7-8.1-7.5-13.6-7.5s-10.6 2.8-13.6 7.5l-40 64c-3.1 4.9-3.2 11.1-.4 16.2s8.2 8.2 14 8.2h48 32 40 72c6 0 11.4-3.3 14.2-8.6s2.4-11.6-1-16.5l-72-104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-import": { + "aliases": { + "names": [ + "arrow-right-to-file" + ], + "unicodes": { + "secondary": [ + "10f56f" + ] + } + }, + "changes": [ + "5.1.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "document", + "send", + "upload" + ] + }, + "unicode": "f56f", + "label": "File Import", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 64c0-35.3 28.7-64 64-64H352V128c0 17.7 14.3 32 32 32H512V448c0 35.3-28.7 64-64 64H192c-35.3 0-64-28.7-64-64V336H302.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39H128V64zm0 224v48H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H128zM512 128H384V0L512 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-invoice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f570" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "bill", + "charge", + "document", + "payment", + "receipt" + ] + }, + "unicode": "f570", + "label": "File Invoice", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm16 96H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm0 32v64H288V256H96zM240 416h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-invoice-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f571" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "account", + "bill", + "charge", + "document", + "dollar-sign", + "money", + "payment", + "receipt", + "usd" + ] + }, + "unicode": "f571", + "label": "File Invoice Dollar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm128 72c8.8 0 16 7.2 16 16v17.3c8.5 1.2 16.7 3.1 24.1 5.1c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-11.1-3-22-5.2-32.1-5.3c-8.4-.1-17.4 1.8-23.6 5.5c-5.7 3.4-8.1 7.3-8.1 12.8c0 3.7 1.3 6.5 7.3 10.1c6.9 4.1 16.6 7.1 29.2 10.9l.5 .1 0 0 0 0c11.3 3.4 25.3 7.6 36.3 14.6c12.1 7.6 22.4 19.7 22.7 38.2c.3 19.3-9.6 33.3-22.9 41.6c-7.7 4.8-16.4 7.6-25.1 9.1V440c0 8.8-7.2 16-16 16s-16-7.2-16-16V422.2c-11.2-2.1-21.7-5.7-30.9-8.9l0 0c-2.1-.7-4.2-1.4-6.2-2.1c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c2.5 .8 4.8 1.6 7.1 2.4l0 0 0 0 0 0c13.6 4.6 24.6 8.4 36.3 8.7c9.1 .3 17.9-1.7 23.7-5.3c5.1-3.2 7.9-7.3 7.8-14c-.1-4.6-1.8-7.8-7.7-11.6c-6.8-4.3-16.5-7.4-29-11.2l-1.6-.5 0 0c-11-3.3-24.3-7.3-34.8-13.7c-12-7.2-22.6-18.9-22.7-37.3c-.1-19.4 10.8-32.8 23.8-40.5c7.5-4.4 15.8-7.2 24.1-8.7V232c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-lines": { + "aliases": { + "names": [ + "file-alt", + "file-text" + ], + "unicodes": { + "composite": [ + "1f5b9", + "1f5ce", + "f0f6" + ], + "secondary": [ + "10f15c" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Document", + "Document with Text", + "document", + "file-text", + "invoice", + "new", + "page", + "pdf" + ] + }, + "unicode": "f15c", + "label": "File Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM112 256H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm56 256c-13.3 0-24 10.7-24 24s10.7 24 24 24H264c13.3 0 24-10.7 24-24s-10.7-24-24-24H120zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H264c13.3 0 24-10.7 24-24s-10.7-24-24-24H120z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f477" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "health", + "history", + "prescription", + "record" + ] + }, + "unicode": "f477", + "label": "File Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM160 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H224v48c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V352H112c-8.8 0-16-7.2-16-16V304c0-8.8 7.2-16 16-16h48V240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-pdf": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c1" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrobat", + "document", + "preview", + "save" + ] + }, + "unicode": "f1c1", + "label": "File Pdf", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V304H176c-35.3 0-64 28.7-64 64V512H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM176 352h32c30.9 0 56 25.1 56 56s-25.1 56-56 56H192v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24H192v48h16zm96-80h32c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H304c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H320v96h16zm80-112c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V432 368z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 464H96v48H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V288H336V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zM176 352h32c30.9 0 56 25.1 56 56s-25.1 56-56 56H192v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24H192v48h16zm96-80h32c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H304c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H320v96h16zm80-112c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V432 368z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-pen": { + "aliases": { + "names": [ + "file-edit" + ], + "unicodes": { + "composite": [ + "1f4dd" + ], + "secondary": [ + "10f31c" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "memo", + "pen", + "pencil", + "update", + "write" + ] + }, + "unicode": "f31c", + "label": "File Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V285.7l-86.8 86.8c-10.3 10.3-17.5 23.1-21 37.2l-18.7 74.9c-2.3 9.2-1.8 18.8 1.3 27.5H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM549.8 235.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-29.4 29.4-71-71 29.4-29.4c15.6-15.6 40.9-15.6 56.6 0zM311.9 417L441.1 287.8l71 71L382.9 487.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-powerpoint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c4" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "display", + "document", + "keynote", + "presentation" + ] + }, + "unicode": "f1c4", + "label": "File Powerpoint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM136 240h68c42 0 76 34 76 76s-34 76-76 76H160v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V368 264c0-13.3 10.7-24 24-24zm68 104c15.5 0 28-12.5 28-28s-12.5-28-28-28H160v56h44z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm72 208c-13.3 0-24 10.7-24 24V336v56c0 13.3 10.7 24 24 24s24-10.7 24-24V360h44c42 0 76-34 76-76s-34-76-76-76H136zm68 104H160V256h44c15.5 0 28 12.5 28 28s-12.5 28-28 28z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-prescription": { + "aliases": { + "unicodes": { + "secondary": [ + "10f572" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "drugs", + "medical", + "medicine", + "rx" + ] + }, + "unicode": "f572", + "label": "File Prescription", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM104 196h72c33.1 0 60 26.9 60 60c0 25.5-15.9 47.2-38.3 55.9l43 40.3 33.8-31c8.1-7.5 20.8-6.9 28.3 1.2s6.9 20.8-1.2 28.3L270 379.7l31.7 29.7c8.1 7.6 8.5 20.2 .9 28.3s-20.2 8.5-28.3 .9l-33.9-31.8-34.9 32c-8.1 7.5-20.8 6.9-28.3-1.2s-6.9-20.8 1.2-28.3l32.6-29.9-64.8-60.8c-.9-.8-1.6-1.7-2.3-2.6H124v44c0 11-9 20-20 20s-20-9-20-20V296 216c0-11 9-20 20-20zm72 80c11 0 20-9 20-20s-9-20-20-20H124v40h52z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-shield": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antivirus", + "data", + "document", + "protect", + "safe", + "safety", + "secure" + ] + }, + "unicode": "e4f0", + "label": "File Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v47l-92.8 37.1c-21.3 8.5-35.2 29.1-35.2 52c0 56.6 18.9 148 94.2 208.3c-9 4.8-19.3 7.6-30.2 7.6H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm39.1 97.7c5.7-2.3 12.1-2.3 17.8 0l120 48C570 277.4 576 286.2 576 296c0 63.3-25.9 168.8-134.8 214.2c-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3l120-48zM527.4 312L432 273.8V461.7c68.2-33 91.5-99 95.4-149.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-signature": { + "aliases": { + "unicodes": { + "secondary": [ + "10f573" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "contract", + "document", + "name" + ] + }, + "unicode": "f573", + "label": "File Signature", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V428.7c-2.7 1.1-5.4 2-8.2 2.7l-60.1 15c-3 .7-6 1.2-9 1.4c-.9 .1-1.8 .2-2.7 .2H240c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 381l-9.8 32.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.8 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7c15.9 0 30.4 9 37.5 23.2l4.4 8.8h8.9c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7L384 203.6V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM549.8 139.7c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM311.9 321c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L512.1 262.7l-71-71L311.9 321z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-video": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "m4v", + "movie", + "mp4", + "play" + ] + }, + "unicode": "f1c8", + "label": "File Video", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 288c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V288zM300.9 397.9L256 368V304l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1c6.8 0 12.3 5.5 12.3 12.3V387.7c0 6.8-5.5 12.3-12.3 12.3c-2.4 0-4.8-.7-6.8-2.1z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 464c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM80 288c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v16l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1c6.8 0 12.3 5.5 12.3 12.3V387.7c0 6.8-5.5 12.3-12.3 12.3c-2.4 0-4.8-.7-6.8-2.1L240 368v16c0 17.7-14.3 32-32 32H112c-17.7 0-32-14.3-32-32V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-waveform": { + "aliases": { + "names": [ + "file-medical-alt" + ], + "unicodes": { + "secondary": [ + "10f478" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "health", + "history", + "prescription", + "record" + ] + }, + "unicode": "f478", + "label": "File Waveform", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C60.7 0 32 28.7 32 64V288H144c6.1 0 11.6 3.4 14.3 8.8L176 332.2l49.7-99.4c2.7-5.4 8.3-8.8 14.3-8.8s11.6 3.4 14.3 8.8L281.9 288H352c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-6.1 0-11.6-3.4-14.3-8.8L240 275.8l-49.7 99.4c-2.7 5.4-8.3 8.8-14.3 8.8s-11.6-3.4-14.3-8.8L134.1 320H32V448c0 35.3 28.7 64 64 64H352c35.3 0 64-28.7 64-64V160H288c-17.7 0-32-14.3-32-32V0H96zM288 0V128H416L288 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-word": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "edit", + "page", + "text", + "writing" + ] + }, + "unicode": "f1c2", + "label": "File Word", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM111 257.1l26.8 89.2 31.6-90.3c3.4-9.6 12.5-16.1 22.7-16.1s19.3 6.4 22.7 16.1l31.6 90.3L273 257.1c3.8-12.7 17.2-19.9 29.9-16.1s19.9 17.2 16.1 29.9l-48 160c-3 10-12 16.9-22.4 17.1s-19.8-6.2-23.2-16.1L192 336.6l-33.3 95.3c-3.4 9.8-12.8 16.3-23.2 16.1s-19.5-7.1-22.4-17.1l-48-160c-3.8-12.7 3.4-26.1 16.1-29.9s26.1 3.4 29.9 16.1z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 448V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm55 241.1c-3.8-12.7-17.2-19.9-29.9-16.1s-19.9 17.2-16.1 29.9l48 160c3 10.2 12.4 17.1 23 17.1s19.9-7 23-17.1l25-83.4 25 83.4c3 10.2 12.4 17.1 23 17.1s19.9-7 23-17.1l48-160c3.8-12.7-3.4-26.1-16.1-29.9s-26.1 3.4-29.9 16.1l-25 83.4-25-83.4c-3-10.2-12.4-17.1-23-17.1s-19.9 7-23 17.1l-25 83.4-25-83.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-zipper": { + "aliases": { + "names": [ + "file-archive" + ], + "unicodes": { + "secondary": [ + "10f1c6" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + ".zip", + "bundle", + "compress", + "compression", + "download", + "zip" + ] + }, + "unicode": "f1c6", + "label": "File Zipper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM96 48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm-6.3 71.8c3.7-14 16.4-23.8 30.9-23.8h14.8c14.5 0 27.2 9.7 30.9 23.8l23.5 88.2c1.4 5.4 2.1 10.9 2.1 16.4c0 35.2-28.8 63.7-64 63.7s-64-28.5-64-63.7c0-5.5 .7-11.1 2.1-16.4l23.5-88.2zM112 336c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16h48v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm48 112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H128c-8.8 0-16 7.2-16 16zm0 64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H128c-8.8 0-16 7.2-16 16zm-6.3 71.8L82.1 335.9c-1.4 5.4-2.1 10.9-2.1 16.4c0 35.2 28.8 63.7 64 63.7s64-28.5 64-63.7c0-5.5-.7-11.1-2.1-16.4l-23.5-88.2c-3.7-14-16.4-23.8-30.9-23.8H136.6c-14.5 0-27.2 9.7-30.9 23.8zM128 336h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H128c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "fill": { + "aliases": { + "unicodes": { + "secondary": [ + "10f575" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "paint", + "paint bucket" + ] + }, + "unicode": "f575", + "label": "Fill", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M86.6 9.4C74.1-3.1 53.9-3.1 41.4 9.4s-12.5 32.8 0 45.3L122.7 136 30.6 228.1c-37.5 37.5-37.5 98.3 0 135.8L148.1 481.4c37.5 37.5 98.3 37.5 135.8 0L474.3 290.9c28.1-28.1 28.1-73.7 0-101.8L322.9 37.7c-28.1-28.1-73.7-28.1-101.8 0L168 90.7 86.6 9.4zM168 181.3l49.4 49.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L213.3 136l53.1-53.1c3.1-3.1 8.2-3.1 11.3 0L429.1 234.3c3.1 3.1 3.1 8.2 0 11.3L386.7 288H67.5c1.4-5.4 4.2-10.4 8.4-14.6L168 181.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fill-drip": { + "aliases": { + "unicodes": { + "secondary": [ + "10f576" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "drop", + "paint", + "paint bucket", + "spill" + ] + }, + "unicode": "f576", + "label": "Fill Drip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M41.4 9.4C53.9-3.1 74.1-3.1 86.6 9.4L168 90.7l53.1-53.1c28.1-28.1 73.7-28.1 101.8 0L474.3 189.1c28.1 28.1 28.1 73.7 0 101.8L283.9 481.4c-37.5 37.5-98.3 37.5-135.8 0L30.6 363.9c-37.5-37.5-37.5-98.3 0-135.8L122.7 136 41.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm176 221.3L168 181.3 75.9 273.4c-4.2 4.2-7 9.3-8.4 14.6H386.7l42.3-42.3c3.1-3.1 3.1-8.2 0-11.3L277.7 82.9c-3.1-3.1-8.2-3.1-11.3 0L213.3 136l49.4 49.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0zM512 512c-35.3 0-64-28.7-64-64c0-25.2 32.6-79.6 51.2-108.7c6-9.4 19.5-9.4 25.5 0C543.4 368.4 576 422.8 576 448c0 35.3-28.7 64-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "film": { + "aliases": { + "unicodes": { + "composite": [ + "1f39e" + ], + "secondary": [ + "10f008" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cinema", + "film", + "film frames", + "frames", + "movie", + "strip", + "video" + ] + }, + "unicode": "f008", + "label": "Film", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM48 368v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H416zM48 240v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H416zM48 112v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zM416 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H416zM160 128v64c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32zm32 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32H192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "filter": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0b0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "funnel", + "options", + "separate", + "sort" + ] + }, + "unicode": "f0b0", + "label": "Filter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M3.9 54.9C10.5 40.9 24.5 32 40 32H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9V448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6V320.9L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "filter-circle-dollar": { + "aliases": { + "names": [ + "funnel-dollar" + ], + "unicodes": { + "secondary": [ + "10f662" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "filter", + "money", + "options", + "separate", + "sort" + ] + }, + "unicode": "f662", + "label": "Filter Circle Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M3.9 22.9C10.5 8.9 24.5 0 40 0H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5c-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6V288.9L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9zM288 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm120.8-32.6c.6-.9 1.8-2.1 4.2-3.4c5.1-2.7 12.5-4.1 18.7-4c8.2 .1 17.1 1.8 26.4 4.1c8.6 2.1 17.3-3.1 19.4-11.7s-3.1-17.3-11.7-19.4c-5.6-1.4-11.6-2.7-17.9-3.7V288c0-8.8-7.2-16-16-16s-16 7.2-16 16v9.5c-6.1 1.2-12.3 3.2-18 6.3c-11.8 6.3-23 18.4-21.8 37.2c1 16 11.7 25.3 21.6 30.7c8.8 4.7 19.7 7.8 28.6 10.3l1.8 .5c10.3 2.9 17.9 5.2 23.2 8.3c4.5 2.7 4.7 4.2 4.7 5.6c.1 2.4-.5 3.7-1 4.5c-.6 1-1.8 2.2-4 3.3c-4.7 2.5-11.8 3.8-18.5 3.6c-9.5-.3-18.5-3.1-29.9-6.8c-1.9-.6-3.8-1.2-5.8-1.8c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20c1.6 .5 3.3 1 5 1.6l0 0 0 0c7 2.3 15.1 4.8 23.7 6.6v11.4c0 8.8 7.2 16 16 16s16-7.2 16-16V438.7c6.2-1.1 12.5-3.1 18.3-6.2c12.1-6.5 22.3-18.7 21.7-36.9c-.5-16.2-10.3-26.3-20.5-32.3c-9.4-5.6-21.2-8.9-30.5-11.5l-.2 0c-10.4-2.9-18.3-5.2-23.9-8.2c-4.8-2.6-4.8-4-4.8-4.5l0-.1c-.1-1.9 .3-2.9 .8-3.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "filter-circle-xmark": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "funnel", + "options", + "remove", + "separate", + "sort" + ] + }, + "unicode": "e17b", + "label": "Filter Circle Xmark", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M3.9 22.9C10.5 8.9 24.5 0 40 0H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5c-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6V288.9L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fingerprint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f577" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "human", + "id", + "identification", + "lock", + "smudge", + "touch", + "unique", + "unlock" + ] + }, + "unicode": "f577", + "label": "Fingerprint", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48 256C48 141.1 141.1 48 256 48c63.1 0 119.6 28.1 157.8 72.5c8.6 10.1 23.8 11.2 33.8 2.6s11.2-23.8 2.6-33.8C403.3 34.6 333.7 0 256 0C114.6 0 0 114.6 0 256v40c0 13.3 10.7 24 24 24s24-10.7 24-24V256zm458.5-52.9c-2.7-13-15.5-21.3-28.4-18.5s-21.3 15.5-18.5 28.4c2.9 13.9 4.5 28.3 4.5 43.1v40c0 13.3 10.7 24 24 24s24-10.7 24-24V256c0-18.1-1.9-35.8-5.5-52.9zM256 80c-19 0-37.4 3-54.5 8.6c-15.2 5-18.7 23.7-8.3 35.9c7.1 8.3 18.8 10.8 29.4 7.9c10.6-2.9 21.8-4.4 33.4-4.4c70.7 0 128 57.3 128 128v24.9c0 25.2-1.5 50.3-4.4 75.3c-1.7 14.6 9.4 27.8 24.2 27.8c11.8 0 21.9-8.6 23.3-20.3c3.3-27.4 5-55 5-82.7V256c0-97.2-78.8-176-176-176zM150.7 148.7c-9.1-10.6-25.3-11.4-33.9-.4C93.7 178 80 215.4 80 256v24.9c0 24.2-2.6 48.4-7.8 71.9C68.8 368.4 80.1 384 96.1 384c10.5 0 19.9-7 22.2-17.3c6.4-28.1 9.7-56.8 9.7-85.8V256c0-27.2 8.5-52.4 22.9-73.1c7.2-10.4 8-24.6-.2-34.2zM256 160c-53 0-96 43-96 96v24.9c0 35.9-4.6 71.5-13.8 106.1c-3.8 14.3 6.7 29 21.5 29c9.5 0 17.9-6.2 20.4-15.4c10.5-39 15.9-79.2 15.9-119.7V256c0-28.7 23.3-52 52-52s52 23.3 52 52v24.9c0 36.3-3.5 72.4-10.4 107.9c-2.7 13.9 7.7 27.2 21.8 27.2c10.2 0 19-7 21-17c7.7-38.8 11.6-78.3 11.6-118.1V256c0-53-43-96-96-96zm24 96c0-13.3-10.7-24-24-24s-24 10.7-24 24v24.9c0 59.9-11 119.3-32.5 175.2l-5.9 15.3c-4.8 12.4 1.4 26.3 13.8 31s26.3-1.4 31-13.8l5.9-15.3C267.9 411.9 280 346.7 280 280.9V256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire": { + "aliases": { + "unicodes": { + "composite": [ + "1f525" + ], + "secondary": [ + "10f06d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.0", + "5.6.3", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "fire", + "flame", + "heat", + "hot", + "popular", + "tool" + ] + }, + "unicode": "f06d", + "label": "Fire", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M159.3 5.4c7.8-7.3 19.9-7.2 27.7 .1c27.6 25.9 53.5 53.8 77.7 84c11-14.4 23.5-30.1 37-42.9c7.9-7.4 20.1-7.4 28 .1c34.6 33 63.9 76.6 84.5 118c20.3 40.8 33.8 82.5 33.8 111.9C448 404.2 348.2 512 224 512C98.4 512 0 404.1 0 276.5c0-38.4 17.8-85.3 45.4-131.7C73.3 97.7 112.7 48.6 159.3 5.4zM225.7 416c25.3 0 47.7-7 68.8-21c42.1-29.4 53.4-88.2 28.1-134.4c-4.5-9-16-9.6-22.5-2l-25.2 29.3c-6.6 7.6-18.5 7.4-24.7-.5c-16.5-21-46-58.5-62.8-79.8c-6.3-8-18.3-8.1-24.7-.1c-33.8 42.5-50.8 69.3-50.8 99.4C112 375.4 162.6 416 225.7 416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-burner": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cook", + "fire", + "flame", + "kitchen", + "stove" + ] + }, + "unicode": "e4f1", + "label": "Fire Burner", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M293.5 3.8c19.7 17.8 38.2 37 55.5 57.7c7.9-9.9 16.8-20.7 26.5-29.5c5.6-5.1 14.4-5.1 20 0c24.7 22.7 45.6 52.7 60.4 81.1c14.5 28 24.2 58.8 24.2 79C480 280 408.7 352 320 352c-89.7 0-160-72.1-160-159.8c0-26.4 12.7-60.7 32.4-92.6c20-32.4 48.1-66.1 81.4-95.8c2.8-2.5 6.4-3.8 10-3.7c3.5 0 7 1.3 9.8 3.8zM370 273c30-21 38-63 20-96c-2-4-4-8-7-12l-36 42s-58-74-62-79c-30 37-45 58-45 82c0 49 36 78 81 78c18 0 34-5 49-15zM32 288c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32s-14.3 32-32 32v64H544V320c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32V288zM320 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm160-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM192 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-extinguisher": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ef" + ], + "secondary": [ + "10f134" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "extinguish", + "fire", + "fire extinguisher", + "fire fighter", + "flame", + "heat", + "hot", + "quench", + "rescue" + ] + }, + "unicode": "f134", + "label": "Fire Extinguisher", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.3 7.3C507.7 13.3 512 22.4 512 32v96c0 9.6-4.3 18.7-11.7 24.7s-17.2 8.5-26.6 6.6l-160-32C301.5 124.9 292 115.7 289 104H224v34.8c37.8 18 64 56.5 64 101.2V384H64V240c0-44.7 26.2-83.2 64-101.2V110c-36.2 11.1-66 36.9-82.3 70.5c-5.8 11.9-20.2 16.9-32.1 11.1S-3.3 171.4 2.5 159.5C26.7 109.8 72.7 72.6 128 60.4V32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V56h65c3-11.7 12.5-20.9 24.7-23.4l160-32c9.4-1.9 19.1 .6 26.6 6.6zM288 416v32c0 35.3-28.7 64-64 64H128c-35.3 0-64-28.7-64-64V416H288zM176 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-flame-curved": { + "aliases": { + "names": [ + "fire-alt" + ], + "unicodes": { + "secondary": [ + "10f7e4" + ] + } + }, + "changes": [ + "5.6.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "flame", + "heat", + "hot", + "popular" + ] + }, + "unicode": "f7e4", + "label": "Fire Flame Curved", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M153.6 29.9l16-21.3C173.6 3.2 180 0 186.7 0C198.4 0 208 9.6 208 21.3V43.5c0 13.1 5.4 25.7 14.9 34.7L307.6 159C356.4 205.6 384 270.2 384 337.7C384 434 306 512 209.7 512H192C86 512 0 426 0 320v-3.8c0-48.8 19.4-95.6 53.9-130.1l3.5-3.5c4.2-4.2 10-6.6 16-6.6C85.9 176 96 186.1 96 198.6V288c0 35.3 28.7 64 64 64s64-28.7 64-64v-3.9c0-18-7.2-35.3-19.9-48l-38.6-38.6c-24-24-37.5-56.7-37.5-90.7c0-27.7 9-54.8 25.6-76.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-flame-simple": { + "aliases": { + "names": [ + "burn" + ], + "unicodes": { + "secondary": [ + "10f46a" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caliente", + "energy", + "fire", + "flame", + "gas", + "heat", + "hot" + ] + }, + "unicode": "f46a", + "label": "Fire Flame Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M372.5 256.5l-.7-1.9C337.8 160.8 282 76.5 209.1 8.5l-3.3-3C202.1 2 197.1 0 192 0s-10.1 2-13.8 5.5l-3.3 3C102 76.5 46.2 160.8 12.2 254.6l-.7 1.9C3.9 277.3 0 299.4 0 321.6C0 426.7 86.8 512 192 512s192-85.3 192-190.4c0-22.2-3.9-44.2-11.5-65.1zm-90.8 49.5c4.1 9.3 6.2 19.4 6.2 29.5c0 53-43 96.5-96 96.5s-96-43.5-96-96.5c0-10.1 2.1-20.3 6.2-29.5l1.9-4.3c15.8-35.4 37.9-67.7 65.3-95.1l8.9-8.9c3.6-3.6 8.5-5.6 13.6-5.6s10 2 13.6 5.6l8.9 8.9c27.4 27.4 49.6 59.7 65.3 95.1l1.9 4.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "firefox": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.1", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "f269", + "label": "Firefox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M503.52,241.48c-.12-1.56-.24-3.12-.24-4.68v-.12l-.36-4.68v-.12a245.86,245.86,0,0,0-7.32-41.15c0-.12,0-.12-.12-.24l-1.08-4c-.12-.24-.12-.48-.24-.6-.36-1.2-.72-2.52-1.08-3.72-.12-.24-.12-.6-.24-.84-.36-1.2-.72-2.4-1.08-3.48-.12-.36-.24-.6-.36-1-.36-1.2-.72-2.28-1.2-3.48l-.36-1.08c-.36-1.08-.84-2.28-1.2-3.36a8.27,8.27,0,0,0-.36-1c-.48-1.08-.84-2.28-1.32-3.36-.12-.24-.24-.6-.36-.84-.48-1.2-1-2.28-1.44-3.48,0-.12-.12-.24-.12-.36-1.56-3.84-3.24-7.68-5-11.4l-.36-.72c-.48-1-.84-1.8-1.32-2.64-.24-.48-.48-1.08-.72-1.56-.36-.84-.84-1.56-1.2-2.4-.36-.6-.6-1.2-1-1.8s-.84-1.44-1.2-2.28c-.36-.6-.72-1.32-1.08-1.92s-.84-1.44-1.2-2.16a18.07,18.07,0,0,0-1.2-2c-.36-.72-.84-1.32-1.2-2s-.84-1.32-1.2-2-.84-1.32-1.2-1.92-.84-1.44-1.32-2.16a15.63,15.63,0,0,0-1.2-1.8L463.2,119a15.63,15.63,0,0,0-1.2-1.8c-.48-.72-1.08-1.56-1.56-2.28-.36-.48-.72-1.08-1.08-1.56l-1.8-2.52c-.36-.48-.6-.84-1-1.32-1-1.32-1.8-2.52-2.76-3.72a248.76,248.76,0,0,0-23.51-26.64A186.82,186.82,0,0,0,412,62.46c-4-3.48-8.16-6.72-12.48-9.84a162.49,162.49,0,0,0-24.6-15.12c-2.4-1.32-4.8-2.52-7.2-3.72a254,254,0,0,0-55.43-19.56c-1.92-.36-3.84-.84-5.64-1.2h-.12c-1-.12-1.8-.36-2.76-.48a236.35,236.35,0,0,0-38-4H255.14a234.62,234.62,0,0,0-45.48,5c-33.59,7.08-63.23,21.24-82.91,39-1.08,1-1.92,1.68-2.4,2.16l-.48.48H124l-.12.12.12-.12a.12.12,0,0,0,.12-.12l-.12.12a.42.42,0,0,1,.24-.12c14.64-8.76,34.92-16,49.44-19.56l5.88-1.44c.36-.12.84-.12,1.2-.24,1.68-.36,3.36-.72,5.16-1.08.24,0,.6-.12.84-.12C250.94,20.94,319.34,40.14,367,85.61a171.49,171.49,0,0,1,26.88,32.76c30.36,49.2,27.48,111.11,3.84,147.59-34.44,53-111.35,71.27-159,24.84a84.19,84.19,0,0,1-25.56-59,74.05,74.05,0,0,1,6.24-31c1.68-3.84,13.08-25.67,18.24-24.59-13.08-2.76-37.55,2.64-54.71,28.19-15.36,22.92-14.52,58.2-5,83.28a132.85,132.85,0,0,1-12.12-39.24c-12.24-82.55,43.31-153,94.31-170.51-27.48-24-96.47-22.31-147.71,15.36-29.88,22-51.23,53.16-62.51,90.36,1.68-20.88,9.6-52.08,25.8-83.88-17.16,8.88-39,37-49.8,62.88-15.6,37.43-21,82.19-16.08,124.79.36,3.24.72,6.36,1.08,9.6,19.92,117.11,122,206.38,244.78,206.38C392.77,503.42,504,392.19,504,255,503.88,250.48,503.76,245.92,503.52,241.48Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "firefox-browser": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "e007", + "label": "Firefox Browser", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M130.22 127.548C130.38 127.558 130.3 127.558 130.22 127.548V127.548ZM481.64 172.898C471.03 147.398 449.56 119.898 432.7 111.168C446.42 138.058 454.37 165.048 457.4 185.168C457.405 185.306 457.422 185.443 457.45 185.578C429.87 116.828 383.098 89.1089 344.9 28.7479C329.908 5.05792 333.976 3.51792 331.82 4.08792L331.7 4.15792C284.99 30.1109 256.365 82.5289 249.12 126.898C232.503 127.771 216.219 131.895 201.19 139.035C199.838 139.649 198.736 140.706 198.066 142.031C197.396 143.356 197.199 144.87 197.506 146.323C197.7 147.162 198.068 147.951 198.586 148.639C199.103 149.327 199.76 149.899 200.512 150.318C201.264 150.737 202.096 150.993 202.954 151.071C203.811 151.148 204.676 151.045 205.491 150.768L206.011 150.558C221.511 143.255 238.408 139.393 255.541 139.238C318.369 138.669 352.698 183.262 363.161 201.528C350.161 192.378 326.811 183.338 304.341 187.248C392.081 231.108 368.541 381.784 246.951 376.448C187.487 373.838 149.881 325.467 146.421 285.648C146.421 285.648 157.671 243.698 227.041 243.698C234.541 243.698 255.971 222.778 256.371 216.698C256.281 214.698 213.836 197.822 197.281 181.518C188.434 172.805 184.229 168.611 180.511 165.458C178.499 163.75 176.392 162.158 174.201 160.688C168.638 141.231 168.399 120.638 173.51 101.058C148.45 112.468 128.96 130.508 114.8 146.428H114.68C105.01 134.178 105.68 93.7779 106.25 85.3479C106.13 84.8179 99.022 89.0159 98.1 89.6579C89.5342 95.7103 81.5528 102.55 74.26 110.088C57.969 126.688 30.128 160.242 18.76 211.318C14.224 231.701 12 255.739 12 263.618C12 398.318 121.21 507.508 255.92 507.508C376.56 507.508 478.939 420.281 496.35 304.888C507.922 228.192 481.64 173.82 481.64 172.898Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "first-order": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b0", + "label": "First Order", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "first-order-alt": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f50a", + "label": "Alternate First Order", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "firstdraft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a1", + "label": "firstdraft", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fish": { + "aliases": { + "unicodes": { + "composite": [ + "1f41f" + ], + "secondary": [ + "10f578" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pisces", + "fauna", + "fish", + "gold", + "seafood", + "swimming", + "zodiac" + ] + }, + "unicode": "f578", + "label": "Fish", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M180.5 141.5C219.7 108.5 272.6 80 336 80s116.3 28.5 155.5 61.5c39.1 33 66.9 72.4 81 99.8c4.7 9.2 4.7 20.1 0 29.3c-14.1 27.4-41.9 66.8-81 99.8C452.3 403.5 399.4 432 336 432s-116.3-28.5-155.5-61.5c-16.2-13.7-30.5-28.5-42.7-43.1L48.1 379.6c-12.5 7.3-28.4 5.3-38.7-4.9S-3 348.7 4.2 336.1L50 256 4.2 175.9c-7.2-12.6-5-28.4 5.3-38.6s26.1-12.2 38.7-4.9l89.7 52.3c12.2-14.6 26.5-29.4 42.7-43.1zM448 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fish-fins": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fish", + "fishery", + "pisces", + "seafood" + ] + }, + "unicode": "e4f2", + "label": "Fish Fins", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M275.2 38.4c-10.6-8-25-8.5-36.3-1.5S222 57.3 224.6 70.3l9.7 48.6c-19.4 9-36.9 19.9-52.4 31.5c-15.3 11.5-29 23.9-40.7 36.3L48.1 132.4c-12.5-7.3-28.4-5.3-38.7 4.9S-3 163.3 4.2 175.9L50 256 4.2 336.1c-7.2 12.6-5 28.4 5.3 38.6s26.1 12.2 38.7 4.9l93.1-54.3c11.8 12.3 25.4 24.8 40.7 36.3c15.5 11.6 33 22.5 52.4 31.5l-9.7 48.6c-2.6 13 3.1 26.3 14.3 33.3s25.6 6.5 36.3-1.5l77.6-58.2c54.9-4 101.5-27 137.2-53.8c39.2-29.4 67.2-64.7 81.6-89.5c5.8-9.9 5.8-22.2 0-32.1c-14.4-24.8-42.5-60.1-81.6-89.5c-35.8-26.8-82.3-49.8-137.2-53.8L275.2 38.4zM384 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flag": { + "aliases": { + "unicodes": { + "composite": [ + "1f3f4", + "f11d" + ], + "secondary": [ + "10f024" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black flag", + "country", + "notice", + "notification", + "notify", + "pole", + "report", + "symbol", + "waving" + ] + }, + "unicode": "f024", + "label": "Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V64 368 480c0 17.7 14.3 32 32 32s32-14.3 32-32V352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66.1c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z" + }, + "regular": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 24C48 10.7 37.3 0 24 0S0 10.7 0 24V64 350.5 400v88c0 13.3 10.7 24 24 24s24-10.7 24-24V388l80.3-20.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66.1c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L48 52V24zm0 77.5l96.6-24.2c27-6.7 55.5-3.6 80.4 8.8c54.9 27.4 118.7 29.7 175 6.8V334.7l-24.4 9.1c-33.7 12.6-71.2 10.7-103.4-5.4c-48.2-24.1-103.3-30.1-155.6-17.1L48 338.5v-237z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "flag-checkered": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c1" + ], + "secondary": [ + "10f11e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.7.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checkered", + "chequered", + "chequered flag", + "finish", + "notice", + "notification", + "notify", + "pole", + "racing", + "report", + "start", + "symbol", + "win" + ] + }, + "unicode": "f11e", + "label": "Flag Checkered", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1V345.8c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.3-23.7-122.5-13.4L64 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V400 334 64 32C0 14.3 14.3 0 32 0zM64 187.1l64-13.9v65.5L64 252.6V318l48.8-12.2c5.1-1.3 10.1-2.4 15.2-3.3V238.7l38.9-8.4c8.3-1.8 16.7-2.5 25.1-2.1l0-64c13.6 .4 27.2 2.6 40.4 6.4l23.6 6.9v66.7l-41.7-12.3c-7.3-2.1-14.8-3.4-22.3-3.8v71.4c21.8 1.9 43.3 6.7 64 14.4V244.2l22.7 6.7c13.5 4 27.3 6.4 41.3 7.4V194c-7.8-.8-15.6-2.3-23.2-4.5l-40.8-12v-62c-13-3.8-25.8-8.8-38.2-15c-8.2-4.1-16.9-7-25.8-8.8v72.4c-13-.4-26 .8-38.7 3.6L128 173.2V98L64 114v73.1zM320 335.7c16.8 1.5 33.9-.7 50-6.8l14-5.2V251.9l-7.9 1.8c-18.4 4.3-37.3 5.7-56.1 4.5v77.4zm64-149.4V115.4c-20.9 6.1-42.4 9.1-64 9.1V194c13.9 1.4 28 .5 41.7-2.6l22.3-5.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flag-usa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f74d" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "betsy ross", + "country", + "fla", + "flag: United States", + "old glory", + "stars", + "stripes", + "symbol" + ] + }, + "unicode": "f74d", + "label": "Flag Usa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1v36.1l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-20.3-9-41.8-14.7-63.6-16.9v32.2c17.4 2.1 34.4 6.7 50.6 13.9l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 136.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 203.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 232.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 299.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 328.3v33.5c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.3-23.7-122.5-13.4L64 400v80c0 17.7-14.3 32-32 32s-32-14.3-32-32V416 345.5 312.8 249.5 216.8 153.5 120.8 64 32C0 14.3 14.3 0 32 0zm80 96A16 16 0 1 0 80 96a16 16 0 1 0 32 0zm32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-32 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flask": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "chemicals", + "experiment", + "experimental", + "labs", + "liquid", + "potion", + "science", + "vial" + ] + }, + "unicode": "f0c3", + "label": "Flask", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M288 0H160 128C110.3 0 96 14.3 96 32s14.3 32 32 32V196.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6C0 480.9 31.1 512 69.4 512H378.6c38.3 0 69.4-31.1 69.4-69.4c0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288zM192 196.8V64h64V196.8c0 23.7 6.6 46.9 19 67.1L309.5 320h-171L173 263.9c12.4-20.2 19-43.4 19-67.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flask-vial": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + " beaker", + " chemicals", + " experiment", + " experimental", + " labs", + " liquid", + " science", + " vial", + "ampule", + "chemistry", + "lab", + "laboratory", + "potion", + "test", + "test tube" + ] + }, + "unicode": "e4f3", + "label": "Flask Vial", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M175 389.4c-9.8 16-15 34.3-15 53.1c-10 3.5-20.8 5.5-32 5.5c-53 0-96-43-96-96V64C14.3 64 0 49.7 0 32S14.3 0 32 0H96h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32V309.9l-49 79.6zM96 64v96h64V64H96zM352 0H480h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V214.9L629.7 406.2c6.7 10.9 10.3 23.5 10.3 36.4c0 38.3-31.1 69.4-69.4 69.4H261.4c-38.3 0-69.4-31.1-69.4-69.4c0-12.8 3.6-25.4 10.3-36.4L320 214.9V64c-17.7 0-32-14.3-32-32s14.3-32 32-32h32zm32 64V224c0 5.9-1.6 11.7-4.7 16.8L330.5 320h171l-48.8-79.2c-3.1-5-4.7-10.8-4.7-16.8V64H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flickr": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16e", + "label": "Flickr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "flipboard": { + "changes": [ + "5.0.5", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f44d", + "label": "Flipboard", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "floppy-disk": { + "aliases": { + "names": [ + "save" + ], + "unicodes": { + "composite": [ + "1f4be", + "1f5aa" + ], + "secondary": [ + "10f0c7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Hard Shell Floppy Disk", + "computer", + "disk", + "download", + "floppy", + "floppy disk", + "floppy-o" + ] + }, + "unicode": "f0c7", + "label": "Floppy Disk", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V173.3c0-17-6.7-33.3-18.7-45.3L352 50.7C340 38.7 323.7 32 306.7 32H64zm0 96c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM224 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + }, + "regular": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 96V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V170.5c0-4.2-1.7-8.3-4.7-11.3l33.9-33.9c12 12 18.7 28.3 18.7 45.3V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H309.5c17 0 33.3 6.7 45.3 18.7l74.5 74.5-33.9 33.9L320.8 84.7c-.3-.3-.5-.5-.8-.8V184c0 13.3-10.7 24-24 24H104c-13.3 0-24-10.7-24-24V80H64c-8.8 0-16 7.2-16 16zm80-16v80H272V80H128zm32 240a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "florin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e184", + "label": "Florin Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M314.7 32c-38.8 0-73.7 23.3-88.6 59.1L170.7 224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h80L98.9 396.3c-5 11.9-16.6 19.7-29.5 19.7H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H69.3c38.8 0 73.7-23.3 88.6-59.1L213.3 288H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H240l45.1-108.3c5-11.9 16.6-19.7 29.5-19.7H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H314.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fly": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f417", + "label": "Fly", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "folder": { + "aliases": { + "names": [ + "folder-blank" + ], + "unicodes": { + "composite": [ + "1f4c1", + "1f5bf", + "f114" + ], + "secondary": [ + "10f07b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Folder", + "archive", + "directory", + "document", + "file", + "file folder", + "folder" + ] + }, + "unicode": "f07b", + "label": "Folder", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 480H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H288c-10.1 0-19.6-4.7-25.6-12.8L243.2 57.6C231.1 41.5 212.1 32 192 32H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64z" + }, + "regular": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H196.1c19.1 0 37.4 7.6 50.9 21.1L289.9 96H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16H286.6c-10.6 0-20.8-4.2-28.3-11.7L213.1 87c-4.5-4.5-10.6-7-17-7H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "folder-closed": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "file" + ] + }, + "unicode": "e185", + "label": "Folder Closed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 480H64c-35.3 0-64-28.7-64-64V192H512V416c0 35.3-28.7 64-64 64zm64-320H0V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64z" + }, + "regular": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M251.7 127.6l0 0c10.5 10.5 24.7 16.4 39.6 16.4H448c8.8 0 16 7.2 16 16v32H48V96c0-8.8 7.2-16 16-16H197.5c4.2 0 8.3 1.7 11.3 4.7l33.9-33.9L208.8 84.7l42.9 42.9zM48 240H464V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V240zM285.7 93.7L242.7 50.7c-12-12-28.3-18.7-45.3-18.7H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H291.3c-2.1 0-4.2-.8-5.7-2.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "folder-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f65d" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "delete", + "directory", + "document", + "file", + "negative", + "remove" + ] + }, + "unicode": "f65d", + "label": "Folder Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 480H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64zM184 272c-13.3 0-24 10.7-24 24s10.7 24 24 24H328c13.3 0 24-10.7 24-24s-10.7-24-24-24H184z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "folder-open": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c2", + "1f5c1", + "f115" + ], + "secondary": [ + "10f07c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Open Folder", + "archive", + "directory", + "document", + "empty", + "file", + "folder", + "new", + "open", + "open file folder" + ] + }, + "unicode": "f07c", + "label": "Folder Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M88.7 223.8L0 375.8V96C0 60.7 28.7 32 64 32H181.5c17 0 33.3 6.7 45.3 18.7l26.5 26.5c12 12 28.3 18.7 45.3 18.7H416c35.3 0 64 28.7 64 64v32H144c-22.8 0-43.8 12.1-55.3 31.8zm27.6 16.1C122.1 230 132.6 224 144 224H544c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-112 192C453.9 474 443.4 480 432 480H32c-11.5 0-22-6.1-27.7-16.1s-5.7-22.2 .1-32.1l112-192z" + }, + "regular": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 480h48c11.4 0 21.9-6 27.6-15.9l112-192c5.8-9.9 5.8-22.1 .1-32.1S555.5 224 544 224H144c-11.4 0-21.9 6-27.6 15.9L48 357.1V96c0-8.8 7.2-16 16-16H181.5c4.2 0 8.3 1.7 11.3 4.7l26.5 26.5c21 21 49.5 32.8 79.2 32.8H416c8.8 0 16 7.2 16 16v32h48V160c0-35.3-28.7-64-64-64H298.5c-17 0-33.3-6.7-45.3-18.7L226.7 50.7c-12-12-28.3-18.7-45.3-18.7H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H87.7 384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "folder-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f65e" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.12.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "archive", + "create", + "directory", + "document", + "file", + "new", + "positive" + ] + }, + "unicode": "f65e", + "label": "Folder Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64V416zM232 376c0 13.3 10.7 24 24 24s24-10.7 24-24V312h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H280V200c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H168c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "folder-tree": { + "aliases": { + "unicodes": { + "secondary": [ + "10f802" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "directory", + "document", + "file", + "search", + "structure" + ] + }, + "unicode": "f802", + "label": "Folder Tree", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32v96V384c0 35.3 28.7 64 64 64H256V384H64V160H256V96H64V32zM288 192c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H445.3c-8.5 0-16.6-3.4-22.6-9.4L409.4 9.4c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32V192zm0 288c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32H445.3c-8.5 0-16.6-3.4-22.6-9.4l-13.3-13.3c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32V480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "font": { + "aliases": { + "unicodes": { + "secondary": [ + "10f031" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabet", + "glyph", + "text", + "type", + "typeface" + ] + }, + "unicode": "f031", + "label": "Font", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M254 52.8C249.3 40.3 237.3 32 224 32s-25.3 8.3-30 20.8L57.8 416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-1.8l18-48H303.8l18 48H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H390.2L254 52.8zM279.8 304H168.2L224 155.1 279.8 304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "font-awesome": { + "aliases": { + "names": [ + "font-awesome-flag", + "font-awesome-logo-full" + ], + "unicodes": { + "composite": [ + "f425", + "f4e6" + ], + "primary": [ + "f4e6" + ], + "secondary": [ + "10f2b4", + "10f4e6" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.15.4", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "awesome", + "flag", + "font", + "icons", + "typeface" + ] + }, + "unicode": "f2b4", + "label": "Font Awesome", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 48V384c-63.1 22.5-82.3 32-119.5 32c-62.8 0-86.6-32-149.3-32c-20.6 0-36.6 3.6-51.2 8.2v-64c14.6-4.6 30.6-8.2 51.2-8.2c62.7 0 86.5 32 149.3 32c20.4 0 35.6-3 55.5-9.3v-208c-19.9 6.3-35.1 9.3-55.5 9.3c-62.8 0-86.6-32-149.3-32c-50.8 0-74.9 20.6-115.2 28.7V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 46.3 14.3 32 32 32s32 14.3 32 32V76.7c40.3-8 64.4-28.7 115.2-28.7c62.7 0 86.5 32 149.3 32c37.1 0 56.4-9.5 119.5-32z" + }, + "regular": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 56c0-13.3-10.7-24-24-24S0 42.7 0 56V456c0 13.3 10.7 24 24 24s24-10.7 24-24V124.2l12.5-2.4c16.7-3.2 31.5-8.5 44.2-13.1l0 0 0 0c3.7-1.3 7.1-2.6 10.4-3.7c15.2-5.2 30.4-9.1 51.2-9.1c25.6 0 43 6 63.5 13.3l.5 .2c20.9 7.4 44.8 15.9 79.1 15.9c32.4 0 53.7-6.8 90.5-19.6V342.9l-9.5 3.3c-41.5 14.4-55.2 19.2-81 19.2c-25.7 0-43.1-6-63.6-13.3l-.6-.2c-20.8-7.4-44.8-15.8-79-15.8c-16.8 0-31 2-43.9 5c-12.9 3-20.9 16-17.9 28.9s16 20.9 28.9 17.9c9.6-2.2 20.1-3.7 32.9-3.7c25.6 0 43 6 63.5 13.3l.5 .2c20.9 7.4 44.8 15.9 79.1 15.9c34.4 0 56.4-7.7 97.8-22.2c7.5-2.6 15.5-5.4 24.4-8.5l16.2-5.5V360 72 38.4L416.2 49.3c-9.7 3.3-18.2 6.3-25.7 8.9c-41.5 14.4-55.2 19.2-81 19.2c-25.7 0-43.1-6-63.6-13.3l-.6-.2c-20.8-7.4-44.8-15.8-79-15.8c-27.8 0-48.5 5.5-66.6 11.6c-4.9 1.7-9.3 3.3-13.6 4.8c-11.9 4.3-22 7.9-34.7 10.3L48 75.4V56z" + }, + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 48V384C385 407 366 416 329 416C266 416 242 384 179 384C159 384 143 388 128 392V328C143 324 159 320 179 320C242 320 266 352 329 352C349 352 364 349 384 343V135C364 141 349 144 329 144C266 144 242 112 179 112C128 112 104 133 64 141V448C64 466 50 480 32 480S0 466 0 448V64C0 46 14 32 32 32S64 46 64 64V77C104 69 128 48 179 48C242 48 266 80 329 80C366 80 385 71 448 48Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + }, + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fonticons": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f280", + "label": "Fonticons", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32zm187 140.9c-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23zm74.3 241.8v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm80.8-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fonticons-fi": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a2", + "label": "Fonticons Fi", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "football": { + "aliases": { + "names": [ + "football-ball" + ], + "unicodes": { + "composite": [ + "1f3c8" + ], + "secondary": [ + "10f44e" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "american football", + "ball", + "fall", + "football", + "nfl", + "pigskin", + "seasonal" + ] + }, + "unicode": "f44e", + "label": "Football", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M247.5 25.4c-13.5 3.3-26.4 7.2-38.6 11.7C142.9 61.6 96.7 103.6 66 153.6c-18.3 29.8-30.9 62.3-39.2 95.4L264.5 486.6c13.5-3.3 26.4-7.2 38.6-11.7c66-24.5 112.2-66.5 142.9-116.5c18.3-29.8 30.9-62.3 39.1-95.3L247.5 25.4zM495.2 205.3c6.1-56.8 1.4-112.2-7.7-156.4c-2.7-12.9-13-22.9-26.1-25.1c-58.2-9.7-109.9-12-155.6-7.9L495.2 205.3zM206.1 496L16.8 306.7c-6.1 56.8-1.4 112.2 7.7 156.4c2.7 12.9 13 22.9 26.1 25.1c58.2 9.7 109.9 12 155.6 7.9zm54.6-331.3c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6zm-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6zm-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fort-awesome": { + "changes": [ + "4.5.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "unicode": "f286", + "label": "Fort Awesome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fort-awesome-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "unicode": "f3a3", + "label": "Alternate Fort Awesome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 237.4h-22.2c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7H208c2.1 0 3.7-1.6 3.7-3.7v-51.7c0-2.1-1.6-3.7-3.7-3.7zm118.2 0H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm132-125.1c-2.3-3.2-4.6-6.4-7.1-9.5-9.8-12.5-20.8-24-32.8-34.4-4.5-3.9-9.1-7.6-13.9-11.2-1.6-1.2-3.2-2.3-4.8-3.5C372 34.1 340.3 20 306 13c-16.2-3.3-32.9-5-50-5s-33.9 1.7-50 5c-34.3 7.1-66 21.2-93.3 40.8-1.6 1.1-3.2 2.3-4.8 3.5-4.8 3.6-9.4 7.3-13.9 11.2-3 2.6-5.9 5.3-8.8 8s-5.7 5.5-8.4 8.4c-5.5 5.7-10.7 11.8-15.6 18-2.4 3.1-4.8 6.3-7.1 9.5C25.2 153 8.3 202.5 8.3 256c0 2 .1 4 .1 6 .1.7.1 1.3.1 2 .1 1.3.1 2.7.2 4 0 .8.1 1.5.1 2.3 0 1.3.1 2.5.2 3.7.1.8.1 1.6.2 2.4.1 1.1.2 2.3.3 3.5 0 .8.1 1.6.2 2.4.1 1.2.3 2.4.4 3.6.1.8.2 1.5.3 2.3.1 1.3.3 2.6.5 3.9.1.6.2 1.3.3 1.9l.9 5.7c.1.6.2 1.1.3 1.7.3 1.3.5 2.7.8 4 .2.8.3 1.6.5 2.4.2 1 .5 2.1.7 3.2.2.9.4 1.7.6 2.6.2 1 .4 2 .7 3 .2.9.5 1.8.7 2.7.3 1 .5 1.9.8 2.9.3.9.5 1.8.8 2.7.2.9.5 1.9.8 2.8s.5 1.8.8 2.7c.3 1 .6 1.9.9 2.8.6 1.6 1.1 3.3 1.7 4.9.4 1 .7 1.9 1 2.8.3 1 .7 2 1.1 3 .3.8.6 1.5.9 2.3l1.2 3c.3.7.6 1.5.9 2.2.4 1 .9 2 1.3 3l.9 2.1c.5 1 .9 2 1.4 3 .3.7.6 1.3.9 2 .5 1 1 2.1 1.5 3.1.2.6.5 1.1.8 1.7.6 1.1 1.1 2.2 1.7 3.3.1.2.2.3.3.5 2.2 4.1 4.4 8.2 6.8 12.2.2.4.5.8.7 1.2.7 1.1 1.3 2.2 2 3.3.3.5.6.9.9 1.4.6 1.1 1.3 2.1 2 3.2.3.5.6.9.9 1.4.7 1.1 1.4 2.1 2.1 3.2.2.4.5.8.8 1.2.7 1.1 1.5 2.2 2.3 3.3.2.2.3.5.5.7 37.5 51.7 94.4 88.5 160 99.4.9.1 1.7.3 2.6.4 1 .2 2.1.4 3.1.5s1.9.3 2.8.4c1 .2 2 .3 3 .4.9.1 1.9.2 2.9.3s1.9.2 2.9.3 2.1.2 3.1.3c.9.1 1.8.1 2.7.2 1.1.1 2.3.1 3.4.2.8 0 1.7.1 2.5.1 1.3 0 2.6.1 3.9.1.7.1 1.4.1 2.1.1 2 .1 4 .1 6 .1s4-.1 6-.1c.7 0 1.4-.1 2.1-.1 1.3 0 2.6 0 3.9-.1.8 0 1.7-.1 2.5-.1 1.1-.1 2.3-.1 3.4-.2.9 0 1.8-.1 2.7-.2 1-.1 2.1-.2 3.1-.3s1.9-.2 2.9-.3c.9-.1 1.9-.2 2.9-.3s2-.3 3-.4 1.9-.3 2.8-.4c1-.2 2.1-.3 3.1-.5.9-.1 1.7-.3 2.6-.4 65.6-11 122.5-47.7 160.1-102.4.2-.2.3-.5.5-.7.8-1.1 1.5-2.2 2.3-3.3.2-.4.5-.8.8-1.2.7-1.1 1.4-2.1 2.1-3.2.3-.5.6-.9.9-1.4.6-1.1 1.3-2.1 2-3.2.3-.5.6-.9.9-1.4.7-1.1 1.3-2.2 2-3.3.2-.4.5-.8.7-1.2 2.4-4 4.6-8.1 6.8-12.2.1-.2.2-.3.3-.5.6-1.1 1.1-2.2 1.7-3.3.2-.6.5-1.1.8-1.7.5-1 1-2.1 1.5-3.1.3-.7.6-1.3.9-2 .5-1 1-2 1.4-3l.9-2.1c.5-1 .9-2 1.3-3 .3-.7.6-1.5.9-2.2l1.2-3c.3-.8.6-1.5.9-2.3.4-1 .7-2 1.1-3s.7-1.9 1-2.8c.6-1.6 1.2-3.3 1.7-4.9.3-1 .6-1.9.9-2.8s.5-1.8.8-2.7c.2-.9.5-1.9.8-2.8s.6-1.8.8-2.7c.3-1 .5-1.9.8-2.9.2-.9.5-1.8.7-2.7.2-1 .5-2 .7-3 .2-.9.4-1.7.6-2.6.2-1 .5-2.1.7-3.2.2-.8.3-1.6.5-2.4.3-1.3.6-2.7.8-4 .1-.6.2-1.1.3-1.7l.9-5.7c.1-.6.2-1.3.3-1.9.1-1.3.3-2.6.5-3.9.1-.8.2-1.5.3-2.3.1-1.2.3-2.4.4-3.6 0-.8.1-1.6.2-2.4.1-1.1.2-2.3.3-3.5.1-.8.1-1.6.2-2.4.1 1.7.1.5.2-.7 0-.8.1-1.5.1-2.3.1-1.3.2-2.7.2-4 .1-.7.1-1.3.1-2 .1-2 .1-4 .1-6 0-53.5-16.9-103-45.8-143.7zM448 371.5c-9.4 15.5-20.6 29.9-33.6 42.9-20.6 20.6-44.5 36.7-71.2 48-13.9 5.8-28.2 10.3-42.9 13.2v-75.8c0-58.6-88.6-58.6-88.6 0v75.8c-14.7-2.9-29-7.3-42.9-13.2-26.7-11.3-50.6-27.4-71.2-48-13-13-24.2-27.4-33.6-42.9v-71.3c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7V326h29.6V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-4.8 6.5-3.7 9.5-3.7V88.1c-4.4-2-7.4-6.7-7.4-11.5 0-16.8 25.4-16.8 25.4 0 0 4.8-3 9.4-7.4 11.5V92c6.3-1.4 12.7-2.3 19.2-2.3 9.4 0 18.4 3.5 26.3 3.5 7.2 0 15.2-3.5 19.4-3.5 2.1 0 3.7 1.6 3.7 3.7v48.4c0 5.6-18.7 6.5-22.4 6.5-8.6 0-16.6-3.5-25.4-3.5-7 0-14.1 1.2-20.8 2.8v30.7c3 0 9.5-1.1 9.5 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v144h29.5v-25.8c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "forumbee": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f211", + "label": "Forumbee", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "forward": { + "aliases": { + "unicodes": { + "composite": [ + "23e9" + ], + "secondary": [ + "10f04e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "double", + "fast", + "fast-forward button", + "forward", + "next", + "skip" + ] + }, + "unicode": "f04e", + "label": "Forward", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4L224 214.3V256v41.7L52.5 440.6zM256 352V256 128 96c0-12.4 7.2-23.7 18.4-29s24.5-3.6 34.1 4.4l192 160c7.3 6.1 11.5 15.1 11.5 24.6s-4.2 18.5-11.5 24.6l-192 160c-9.5 7.9-22.8 9.7-34.1 4.4s-18.4-16.6-18.4-29V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "forward-fast": { + "aliases": { + "names": [ + "fast-forward" + ], + "unicodes": { + "composite": [ + "23ed" + ], + "secondary": [ + "10f050" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "end", + "last", + "next", + "next scene", + "next track", + "next track button", + "triangle" + ] + }, + "unicode": "f050", + "label": "Forward Fast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M18.4 445c11.2 5.3 24.5 3.6 34.1-4.4L224 297.7V416c0 12.4 7.2 23.7 18.4 29s24.5 3.6 34.1-4.4L448 297.7V416c0 17.7 14.3 32 32 32s32-14.3 32-32V96c0-17.7-14.3-32-32-32s-32 14.3-32 32V214.3L276.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S224 83.6 224 96V214.3L52.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S0 83.6 0 96V416c0 12.4 7.2 23.7 18.4 29z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "forward-step": { + "aliases": { + "names": [ + "step-forward" + ], + "unicodes": { + "secondary": [ + "10f051" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "end", + "last", + "next" + ] + }, + "unicode": "f051", + "label": "Forward Step", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766677, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4l192 160L256 241V96c0-17.7 14.3-32 32-32s32 14.3 32 32V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V271l-11.5 9.6-192 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "foursquare": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f180", + "label": "Foursquare", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "franc-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "French Franc Sign", + "currency" + ] + }, + "unicode": "e18f", + "label": "Franc Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M80 32C62.3 32 48 46.3 48 64V224v96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "free-code-camp": { + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2c5", + "label": "freeCodeCamp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M97.22,96.21c10.36-10.65,16-17.12,16-21.9,0-2.76-1.92-5.51-3.83-7.42A14.81,14.81,0,0,0,101,64.05c-8.48,0-20.92,8.79-35.84,25.69C23.68,137,2.51,182.81,3.37,250.34s17.47,117,54.06,161.87C76.22,435.86,90.62,448,100.9,448a13.55,13.55,0,0,0,8.37-3.84c1.91-2.76,3.81-5.63,3.81-8.38,0-5.63-3.86-12.2-13.2-20.55-44.45-42.33-67.32-97-67.48-165C32.25,188.8,54,137.83,97.22,96.21ZM239.47,420.07c.58.37.91.55.91.55Zm93.79.55.17-.13C333.24,420.62,333.17,420.67,333.26,420.62Zm3.13-158.18c-16.24-4.15,50.41-82.89-68.05-177.17,0,0,15.54,49.38-62.83,159.57-74.27,104.35,23.46,168.73,34,175.23-6.73-4.35-47.4-35.7,9.55-128.64,11-18.3,25.53-34.87,43.5-72.16,0,0,15.91,22.45,7.6,71.13C287.7,364,354,342.91,355,343.94c22.75,26.78-17.72,73.51-21.58,76.55,5.49-3.65,117.71-78,33-188.1C360.43,238.4,352.62,266.59,336.39,262.44ZM510.88,89.69C496,72.79,483.52,64,475,64a14.81,14.81,0,0,0-8.39,2.84c-1.91,1.91-3.83,4.66-3.83,7.42,0,4.78,5.6,11.26,16,21.9,43.23,41.61,65,92.59,64.82,154.06-.16,68-23,122.63-67.48,165-9.34,8.35-13.18,14.92-13.2,20.55,0,2.75,1.9,5.62,3.81,8.38A13.61,13.61,0,0,0,475.1,448c10.28,0,24.68-12.13,43.47-35.79,36.59-44.85,53.14-94.38,54.06-161.87S552.32,137,510.88,89.69Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "freebsd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a4", + "label": "FreeBSD", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "frog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f52e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amphibian", + "bullfrog", + "fauna", + "hop", + "kermit", + "kiss", + "prince", + "ribbit", + "toad", + "wart" + ] + }, + "unicode": "f52e", + "label": "Frog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M368 32c41.7 0 75.9 31.8 79.7 72.5l85.6 26.3c25.4 7.8 42.8 31.3 42.8 57.9c0 21.8-11.7 41.9-30.7 52.7L400.8 323.5 493.3 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H480c-8.5 0-16.6-3.4-22.6-9.4L346.9 360.2c11.7-36 3.2-77.1-25.4-105.7c-40.6-40.6-106.3-40.6-146.9-.1L101 324.4c-6.4 6.1-6.7 16.2-.6 22.6s16.2 6.6 22.6 .6l73.8-70.2 .1-.1 .1-.1c3.5-3.5 7.3-6.6 11.3-9.2c27.9-18.5 65.9-15.4 90.5 9.2c24.7 24.7 27.7 62.9 9 90.9c-2.6 3.8-5.6 7.5-9 10.9L261.8 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-35.3 0-64-28.7-64-64C0 249.6 127 112.9 289.3 97.5C296.2 60.2 328.8 32 368 32zm0 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fulcrum": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f50b", + "label": "Fulcrum", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M95.75 164.14l-35.38 43.55L25 164.14l35.38-43.55zM144.23 0l-20.54 198.18L72.72 256l51 57.82L144.23 512V300.89L103.15 256l41.08-44.89zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55zm-48.48 47L216.5 256l-41.08 44.89V512L196 313.82 247 256l-51-57.82L175.42 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "futbol": { + "aliases": { + "names": [ + "futbol-ball", + "soccer-ball" + ], + "unicodes": { + "composite": [ + "26bd" + ], + "secondary": [ + "10f1e3" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "football", + "mls", + "soccer", + "soccer ball" + ] + }, + "unicode": "f1e3", + "label": "Futbol", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M417.3 360.1l-71.6-4.8c-5.2-.3-10.3 1.1-14.5 4.2s-7.2 7.4-8.4 12.5l-17.6 69.6C289.5 445.8 273 448 256 448s-33.5-2.2-49.2-6.4L189.2 372c-1.3-5-4.3-9.4-8.4-12.5s-9.3-4.5-14.5-4.2l-71.6 4.8c-17.6-27.2-28.5-59.2-30.4-93.6L125 228.3c4.4-2.8 7.6-7 9.2-11.9s1.4-10.2-.5-15l-26.7-66.6C128 109.2 155.3 89 186.7 76.9l55.2 46c4 3.3 9 5.1 14.1 5.1s10.2-1.8 14.1-5.1l55.2-46c31.3 12.1 58.7 32.3 79.6 57.9l-26.7 66.6c-1.9 4.8-2.1 10.1-.5 15s4.9 9.1 9.2 11.9l60.7 38.2c-1.9 34.4-12.8 66.4-30.4 93.6zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm14.1-325.7c-8.4-6.1-19.8-6.1-28.2 0L194 221c-8.4 6.1-11.9 16.9-8.7 26.8l18.3 56.3c3.2 9.9 12.4 16.6 22.8 16.6h59.2c10.4 0 19.6-6.7 22.8-16.6l18.3-56.3c3.2-9.9-.3-20.7-8.7-26.8l-47.9-34.8z" + }, + "regular": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M435.4 361.3l-89.7-6c-5.2-.3-10.3 1.1-14.5 4.2s-7.2 7.4-8.4 12.5l-22 87.2c-14.4 3.2-29.4 4.8-44.8 4.8s-30.3-1.7-44.8-4.8l-22-87.2c-1.3-5-4.3-9.4-8.4-12.5s-9.3-4.5-14.5-4.2l-89.7 6C61.7 335.9 51.9 307 49 276.2L125 228.3c4.4-2.8 7.6-7 9.2-11.9s1.4-10.2-.5-15L100.4 118c19.9-22.4 44.6-40.5 72.4-52.7l69.1 57.6c4 3.3 9 5.1 14.1 5.1s10.2-1.8 14.1-5.1l69.1-57.6c27.8 12.2 52.5 30.3 72.4 52.7l-33.4 83.4c-1.9 4.8-2.1 10.1-.5 15s4.9 9.1 9.2 11.9L463 276.2c-3 30.8-12.7 59.7-27.6 85.1zM256 48l.9 0h-1.8l.9 0zM56.7 196.2c.9-3 1.9-6.1 2.9-9.1l-2.9 9.1zM132 423l3.8 2.7c-1.3-.9-2.5-1.8-3.8-2.7zm248.1-.1c-1.3 1-2.7 2-4 2.9l4-2.9zm75.2-226.6l-3-9.2c1.1 3 2.1 6.1 3 9.2zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm14.1-325.7c-8.4-6.1-19.8-6.1-28.2 0L194 221c-8.4 6.1-11.9 16.9-8.7 26.8l18.3 56.3c3.2 9.9 12.4 16.6 22.8 16.6h59.2c10.4 0 19.6-6.7 22.8-16.6l18.3-56.3c3.2-9.9-.3-20.7-8.7-26.8l-47.9-34.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "g": { + "aliases": { + "unicodes": { + "composite": [ + "67" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter G", + "Latin Small Letter G", + "letter" + ] + }, + "unicode": "47", + "label": "G", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96C135.6 96 64 167.6 64 256s71.6 160 160 160c77.4 0 142-55 156.8-128H256c-17.7 0-32-14.3-32-32s14.3-32 32-32H400c25.8 0 49.6 21.4 47.2 50.6C437.8 389.6 341.4 480 224 480C100.3 480 0 379.7 0 256S100.3 32 224 32c57.4 0 109.7 21.6 149.3 57c13.2 11.8 14.3 32 2.5 45.2s-32 14.3-45.2 2.5C302.3 111.4 265 96 224 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "galactic-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "politics", + "star wars" + ] + }, + "unicode": "f50c", + "label": "Galactic Republic", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "galactic-senate": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "star wars" + ] + }, + "unicode": "f50d", + "label": "Galactic Senate", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gamepad": { + "aliases": { + "unicodes": { + "secondary": [ + "10f11b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arcade", + "controller", + "d-pad", + "joystick", + "video", + "video game" + ] + }, + "unicode": "f11b", + "label": "Gamepad", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 64C86 64 0 150 0 256S86 448 192 448H448c106 0 192-86 192-192s-86-192-192-192H192zM496 168a40 40 0 1 1 0 80 40 40 0 1 1 0-80zM392 304a40 40 0 1 1 80 0 40 40 0 1 1 -80 0zM168 200c0-13.3 10.7-24 24-24s24 10.7 24 24v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H216v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V200z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gas-pump": { + "aliases": { + "unicodes": { + "composite": [ + "26fd" + ], + "secondary": [ + "10f52f" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "car", + "diesel", + "fuel", + "fuel pump", + "fuelpump", + "gas", + "gasoline", + "petrol", + "pump", + "station" + ] + }, + "unicode": "f52f", + "label": "Gas Pump", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64C32 28.7 60.7 0 96 0H256c35.3 0 64 28.7 64 64V256h8c48.6 0 88 39.4 88 88v32c0 13.3 10.7 24 24 24s24-10.7 24-24V222c-27.6-7.1-48-32.2-48-62V96L384 64c-8.8-8.8-8.8-23.2 0-32s23.2-8.8 32 0l77.3 77.3c12 12 18.7 28.3 18.7 45.3V168v24 32V376c0 39.8-32.2 72-72 72s-72-32.2-72-72V344c0-22.1-17.9-40-40-40h-8V448c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64zM96 80v96c0 8.8 7.2 16 16 16H240c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge": { + "aliases": { + "names": [ + "dashboard", + "gauge-med", + "tachometer-alt-average" + ], + "unicodes": { + "secondary": [ + "10f624" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f624", + "label": "Gauge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24V292.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64zM144 176a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm-16 80a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM400 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge-high": { + "aliases": { + "names": [ + "tachometer-alt", + "tachometer-alt-fast" + ], + "unicodes": { + "composite": [ + "f3fd" + ], + "primary": [ + "f3fd" + ], + "secondary": [ + "10f3fd", + "10f625" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f625", + "label": "Gauge High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 416c35.3 0 64-28.7 64-64c0-17.4-6.9-33.1-18.1-44.6L366 161.7c5.3-12.1-.2-26.3-12.3-31.6s-26.3 .2-31.6 12.3L257.9 288c-.6 0-1.3 0-1.9 0c-35.3 0-64 28.7-64 64s28.7 64 64 64zM176 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm352-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge-simple": { + "aliases": { + "names": [ + "gauge-simple-med", + "tachometer-average" + ], + "unicodes": { + "secondary": [ + "10f629" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f629", + "label": "Gauge Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24V292.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge-simple-high": { + "aliases": { + "names": [ + "tachometer", + "tachometer-fast" + ], + "unicodes": { + "composite": [ + "f0e4" + ], + "primary": [ + "f0e4" + ], + "secondary": [ + "10f0e4", + "10f62a" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f62a", + "label": "Gauge Simple High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-15.9-5.8-30.4-15.3-41.6l76.6-147.4c6.1-11.8 1.5-26.3-10.2-32.4s-26.2-1.5-32.4 10.2L262.1 288.3c-2-.2-4-.3-6.1-.3c-35.3 0-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gavel": { + "aliases": { + "names": [ + "legal" + ], + "unicodes": { + "secondary": [ + "10f0e3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hammer", + "judge", + "law", + "lawyer", + "opinion" + ] + }, + "unicode": "f0e3", + "label": "Gavel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M318.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-120 120c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l4-4L325.4 293.4l-4 4c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l120-120c12.5-12.5 12.5-32.8 0-45.3l-16-16c-12.5-12.5-32.8-12.5-45.3 0l-4 4L330.6 74.6l4-4c12.5-12.5 12.5-32.8 0-45.3l-16-16zm-152 288c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l48 48c12.5 12.5 32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-1.4-1.4L272 285.3 226.7 240 168 298.7l-1.4-1.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gear": { + "aliases": { + "names": [ + "cog" + ], + "unicodes": { + "composite": [ + "2699" + ], + "secondary": [ + "10f013" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cog", + "cogwheel", + "gear", + "mechanical", + "settings", + "sprocket", + "tool", + "wheel" + ] + }, + "unicode": "f013", + "label": "Gear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gears": { + "aliases": { + "names": [ + "cogs" + ], + "unicodes": { + "secondary": [ + "10f085" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gears", + "mechanical", + "settings", + "sprocket", + "wheel" + ] + }, + "unicode": "f085", + "label": "Gears", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M308.5 135.3c7.1-6.3 9.9-16.2 6.2-25c-2.3-5.3-4.8-10.5-7.6-15.5L304 89.4c-3-5-6.3-9.9-9.8-14.6c-5.7-7.6-15.7-10.1-24.7-7.1l-28.2 9.3c-10.7-8.8-23-16-36.2-20.9L199 27.1c-1.9-9.3-9.1-16.7-18.5-17.8C173.9 8.4 167.2 8 160.4 8h-.7c-6.8 0-13.5 .4-20.1 1.2c-9.4 1.1-16.6 8.6-18.5 17.8L115 56.1c-13.3 5-25.5 12.1-36.2 20.9L50.5 67.8c-9-3-19-.5-24.7 7.1c-3.5 4.7-6.8 9.6-9.9 14.6l-3 5.3c-2.8 5-5.3 10.2-7.6 15.6c-3.7 8.7-.9 18.6 6.2 25l22.2 19.8C32.6 161.9 32 168.9 32 176s.6 14.1 1.7 20.9L11.5 216.7c-7.1 6.3-9.9 16.2-6.2 25c2.3 5.3 4.8 10.5 7.6 15.6l3 5.2c3 5.1 6.3 9.9 9.9 14.6c5.7 7.6 15.7 10.1 24.7 7.1l28.2-9.3c10.7 8.8 23 16 36.2 20.9l6.1 29.1c1.9 9.3 9.1 16.7 18.5 17.8c6.7 .8 13.5 1.2 20.4 1.2s13.7-.4 20.4-1.2c9.4-1.1 16.6-8.6 18.5-17.8l6.1-29.1c13.3-5 25.5-12.1 36.2-20.9l28.2 9.3c9 3 19 .5 24.7-7.1c3.5-4.7 6.8-9.5 9.8-14.6l3.1-5.4c2.8-5 5.3-10.2 7.6-15.5c3.7-8.7 .9-18.6-6.2-25l-22.2-19.8c1.1-6.8 1.7-13.8 1.7-20.9s-.6-14.1-1.7-20.9l22.2-19.8zM112 176a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM504.7 500.5c6.3 7.1 16.2 9.9 25 6.2c5.3-2.3 10.5-4.8 15.5-7.6l5.4-3.1c5-3 9.9-6.3 14.6-9.8c7.6-5.7 10.1-15.7 7.1-24.7l-9.3-28.2c8.8-10.7 16-23 20.9-36.2l29.1-6.1c9.3-1.9 16.7-9.1 17.8-18.5c.8-6.7 1.2-13.5 1.2-20.4s-.4-13.7-1.2-20.4c-1.1-9.4-8.6-16.6-17.8-18.5L583.9 307c-5-13.3-12.1-25.5-20.9-36.2l9.3-28.2c3-9 .5-19-7.1-24.7c-4.7-3.5-9.6-6.8-14.6-9.9l-5.3-3c-5-2.8-10.2-5.3-15.6-7.6c-8.7-3.7-18.6-.9-25 6.2l-19.8 22.2c-6.8-1.1-13.8-1.7-20.9-1.7s-14.1 .6-20.9 1.7l-19.8-22.2c-6.3-7.1-16.2-9.9-25-6.2c-5.3 2.3-10.5 4.8-15.6 7.6l-5.2 3c-5.1 3-9.9 6.3-14.6 9.9c-7.6 5.7-10.1 15.7-7.1 24.7l9.3 28.2c-8.8 10.7-16 23-20.9 36.2L315.1 313c-9.3 1.9-16.7 9.1-17.8 18.5c-.8 6.7-1.2 13.5-1.2 20.4s.4 13.7 1.2 20.4c1.1 9.4 8.6 16.6 17.8 18.5l29.1 6.1c5 13.3 12.1 25.5 20.9 36.2l-9.3 28.2c-3 9-.5 19 7.1 24.7c4.7 3.5 9.5 6.8 14.6 9.8l5.4 3.1c5 2.8 10.2 5.3 15.5 7.6c8.7 3.7 18.6 .9 25-6.2l19.8-22.2c6.8 1.1 13.8 1.7 20.9 1.7s14.1-.6 20.9-1.7l19.8 22.2zM464 304a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gem": { + "aliases": { + "unicodes": { + "composite": [ + "1f48e" + ], + "secondary": [ + "10f3a5" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diamond", + "gem", + "gem stone", + "jewel", + "jewelry", + "sapphire", + "stone", + "treasure" + ] + }, + "unicode": "f3a5", + "label": "Gem", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M116.7 33.8c4.5-6.1 11.7-9.8 19.3-9.8H376c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4l-232 256c-4.5 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4l112-152zm38.5 39.8c-3.3 2.5-4.2 7-2.1 10.5l57.4 95.6L63.3 192c-4.1 .3-7.3 3.8-7.3 8s3.2 7.6 7.3 8l192 16c.4 0 .9 0 1.3 0l192-16c4.1-.3 7.3-3.8 7.3-8s-3.2-7.6-7.3-8L301.5 179.8l57.4-95.6c2.1-3.5 1.2-8.1-2.1-10.5s-7.9-2-10.7 1L256 172.2 165.9 74.6c-2.8-3-7.4-3.4-10.7-1z" + }, + "regular": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168.5 72L256 165l87.5-93h-175zM383.9 99.1L311.5 176h129L383.9 99.1zm50 124.9H256 78.1L256 420.3 433.9 224zM71.5 176h129L128.1 99.1 71.5 176zm434.3 40.1l-232 256c-4.5 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4l112-152c4.5-6.1 11.7-9.8 19.3-9.8H376c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "genderless": { + "aliases": { + "unicodes": { + "secondary": [ + "10f22d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "androgynous", + "asexual", + "gender", + "sexless" + ] + }, + "unicode": "f22d", + "label": "Genderless", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 144a112 112 0 1 1 0 224 112 112 0 1 1 0-224zm0 288a176 176 0 1 0 0-352 176 176 0 1 0 0 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "get-pocket": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f265", + "label": "Get Pocket", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gg": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f260", + "label": "GG Currency", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gg-circle": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f261", + "label": "GG Currency Circle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ghost": { + "aliases": { + "unicodes": { + "composite": [ + "1f47b" + ], + "secondary": [ + "10f6e2" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apparition", + "blinky", + "clyde", + "creature", + "face", + "fairy tale", + "fantasy", + "floating", + "ghost", + "halloween", + "holiday", + "inky", + "monster", + "pacman", + "pinky", + "spirit" + ] + }, + "unicode": "f6e2", + "label": "Ghost", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M40.1 467.1l-11.2 9c-3.2 2.5-7.1 3.9-11.1 3.9C8 480 0 472 0 462.2V192C0 86 86 0 192 0S384 86 384 192V462.2c0 9.8-8 17.8-17.8 17.8c-4 0-7.9-1.4-11.1-3.9l-11.2-9c-13.4-10.7-32.8-9-44.1 3.9L269.3 506c-3.3 3.8-8.2 6-13.3 6s-9.9-2.2-13.3-6l-26.6-30.5c-12.7-14.6-35.4-14.6-48.2 0L141.3 506c-3.3 3.8-8.2 6-13.3 6s-9.9-2.2-13.3-6L84.2 471c-11.3-12.9-30.7-14.6-44.1-3.9zM160 192a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gift": { + "aliases": { + "unicodes": { + "composite": [ + "1f381" + ], + "secondary": [ + "10f06b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "celebration", + "christmas", + "generosity", + "gift", + "giving", + "holiday", + "party", + "present", + "wrapped", + "wrapped gift", + "xmas" + ] + }, + "unicode": "f06b", + "label": "Gift", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M190.5 68.8L225.3 128H224 152c-22.1 0-40-17.9-40-40s17.9-40 40-40h2.2c14.9 0 28.8 7.9 36.3 20.8zM64 88c0 14.4 3.5 28 9.6 40H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H438.4c6.1-12 9.6-25.6 9.6-40c0-48.6-39.4-88-88-88h-2.2c-31.9 0-61.5 16.9-77.7 44.4L256 85.5l-24.1-41C215.7 16.9 186.1 0 154.2 0H152C103.4 0 64 39.4 64 88zm336 0c0 22.1-17.9 40-40 40H288h-1.3l34.8-59.2C329.1 55.9 342.9 48 357.8 48H360c22.1 0 40 17.9 40 40zM32 288V464c0 26.5 21.5 48 48 48H224V288H32zM288 512H432c26.5 0 48-21.5 48-48V288H288V512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gifts": { + "aliases": { + "unicodes": { + "secondary": [ + "10f79c" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "generosity", + "giving", + "holiday", + "party", + "present", + "wrapped", + "xmas" + ] + }, + "unicode": "f79c", + "label": "Gifts", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M200.6 32C205 19.5 198.5 5.8 186 1.4S159.8 3.5 155.4 16L144.7 46.2l-9.9-29.8C130.6 3.8 117-3 104.4 1.2S85 19 89.2 31.6l8.3 25-27.4-20c-10.7-7.8-25.7-5.4-33.5 5.3s-5.4 25.7 5.3 33.5L70.2 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H200.6c-5.4-9.4-8.6-20.3-8.6-32V256c0-29.9 20.5-55 48.2-62c1.8-31 17.1-58.2 40.1-76.1C271.7 104.7 256.9 96 240 96H217.8l28.3-20.6c10.7-7.8 13.1-22.8 5.3-33.5s-22.8-13.1-33.5-5.3L192.5 55.1 200.6 32zM363.5 185.5L393.1 224H344c-13.3 0-24-10.7-24-24c0-13.1 10.8-24 24.2-24c7.6 0 14.7 3.5 19.3 9.5zM272 200c0 8.4 1.4 16.5 4.1 24H272c-26.5 0-48 21.5-48 48v80H416V256h32v96H640V272c0-26.5-21.5-48-48-48h-4.1c2.7-7.5 4.1-15.6 4.1-24c0-39.9-32.5-72-72.2-72c-22.4 0-43.6 10.4-57.3 28.2L432 195.8l-30.5-39.6c-13.7-17.8-35-28.2-57.3-28.2c-39.7 0-72.2 32.1-72.2 72zM224 464c0 26.5 21.5 48 48 48H416V384H224v80zm224 48H592c26.5 0 48-21.5 48-48V384H448V512zm96-312c0 13.3-10.7 24-24 24H470.9l29.6-38.5c4.6-5.9 11.7-9.5 19.3-9.5c13.4 0 24.2 10.9 24.2 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "git": { + "changes": [ + "4.1.0", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d3", + "label": "Git", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M216.29 158.39H137C97 147.9 6.51 150.63 6.51 233.18c0 30.09 15 51.23 35 61-25.1 23-37 33.85-37 49.21 0 11 4.47 21.14 17.89 26.81C8.13 383.61 0 393.35 0 411.65c0 32.11 28.05 50.82 101.63 50.82 70.75 0 111.79-26.42 111.79-73.18 0-58.66-45.16-56.5-151.63-63l13.43-21.55c27.27 7.58 118.7 10 118.7-67.89 0-18.7-7.73-31.71-15-41.07l37.41-2.84zm-63.42 241.9c0 32.06-104.89 32.1-104.89 2.43 0-8.14 5.27-15 10.57-21.54 77.71 5.3 94.32 3.37 94.32 19.11zm-50.81-134.58c-52.8 0-50.46-71.16 1.2-71.16 49.54 0 50.82 71.16-1.2 71.16zm133.3 100.51v-32.1c26.75-3.66 27.24-2 27.24-11V203.61c0-8.5-2.05-7.38-27.24-16.26l4.47-32.92H324v168.71c0 6.51.4 7.32 6.51 8.14l20.73 2.84v32.1zm52.45-244.31c-23.17 0-36.59-13.43-36.59-36.61s13.42-35.77 36.59-35.77c23.58 0 37 12.62 37 35.77s-13.42 36.61-37 36.61zM512 350.46c-17.49 8.53-43.1 16.26-66.28 16.26-48.38 0-66.67-19.5-66.67-65.46V194.75c0-5.42 1.05-4.06-31.71-4.06V154.5c35.78-4.07 50-22 54.47-66.27h38.63c0 65.83-1.34 61.81 3.26 61.81H501v40.65h-60.56v97.15c0 6.92-4.92 51.41 60.57 26.84z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "git-alt": { + "changes": [ + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f841", + "label": "Git Alt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M439.55 236.05L244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "github": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "unicode": "f09b", + "label": "GitHub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "github-alt": { + "changes": [ + "3.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "unicode": "f113", + "label": "Alternate GitHub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gitkraken": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a6", + "label": "GitKraken", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gitlab": { + "changes": [ + "4.6.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "Axosoft" + ] + }, + "unicode": "f296", + "label": "GitLab", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M503.5 204.6L502.8 202.8L433.1 21.02C431.7 17.45 429.2 14.43 425.9 12.38C423.5 10.83 420.8 9.865 417.9 9.57C415 9.275 412.2 9.653 409.5 10.68C406.8 11.7 404.4 13.34 402.4 15.46C400.5 17.58 399.1 20.13 398.3 22.9L351.3 166.9H160.8L113.7 22.9C112.9 20.13 111.5 17.59 109.6 15.47C107.6 13.35 105.2 11.72 102.5 10.7C99.86 9.675 96.98 9.295 94.12 9.587C91.26 9.878 88.51 10.83 86.08 12.38C82.84 14.43 80.33 17.45 78.92 21.02L9.267 202.8L8.543 204.6C-1.484 230.8-2.72 259.6 5.023 286.6C12.77 313.5 29.07 337.3 51.47 354.2L51.74 354.4L52.33 354.8L158.3 434.3L210.9 474L242.9 498.2C246.6 500.1 251.2 502.5 255.9 502.5C260.6 502.5 265.2 500.1 268.9 498.2L300.9 474L353.5 434.3L460.2 354.4L460.5 354.1C482.9 337.2 499.2 313.5 506.1 286.6C514.7 259.6 513.5 230.8 503.5 204.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gitter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f426", + "label": "Gitter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "glass-water": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "potable", + "water" + ] + }, + "unicode": "e4f4", + "label": "Glass Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C23.1 0 14.6 3.7 8.6 10.2S-.6 25.4 .1 34.3L28.9 437.7c3 41.9 37.8 74.3 79.8 74.3H275.3c42 0 76.8-32.4 79.8-74.3L383.9 34.3c.6-8.9-2.4-17.6-8.5-24.1S360.9 0 352 0H32zM73 156.5L66.4 64H317.6L311 156.5l-24.2 12.1c-19.4 9.7-42.2 9.7-61.6 0c-20.9-10.4-45.5-10.4-66.4 0c-19.4 9.7-42.2 9.7-61.6 0L73 156.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "glass-water-droplet": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "potable", + "water" + ] + }, + "unicode": "e4f5", + "label": "Glass Water Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C23.1 0 14.6 3.7 8.6 10.2S-.6 25.4 .1 34.3L28.9 437.7c3 41.9 37.8 74.3 79.8 74.3H275.3c42 0 76.8-32.4 79.8-74.3L383.9 34.3c.6-8.9-2.4-17.6-8.5-24.1S360.9 0 352 0H32zM83 297.5L66.4 64H317.6L301 297.5 288 304c-20.1 10.1-43.9 10.1-64 0s-43.9-10.1-64 0s-43.9 10.1-64 0l-13-6.5zM256 196c0-24-33.7-70.1-52.2-93.5c-6.1-7.7-17.5-7.7-23.6 0C161.7 125.9 128 172 128 196c0 33.1 28.7 60 64 60s64-26.9 64-60z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "glasses": { + "aliases": { + "unicodes": { + "secondary": [ + "10f530" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hipster", + "nerd", + "reading", + "sight", + "spectacles", + "vision" + ] + }, + "unicode": "f530", + "label": "Glasses", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M118.6 80c-11.5 0-21.4 7.9-24 19.1L57 260.3c20.5-6.2 48.3-12.3 78.7-12.3c32.3 0 61.8 6.9 82.8 13.5c10.6 3.3 19.3 6.7 25.4 9.2c3.1 1.3 5.5 2.4 7.3 3.2c.9 .4 1.6 .7 2.1 1l.6 .3 .2 .1 .1 0 0 0 0 0s0 0-6.3 12.7h0l6.3-12.7c5.8 2.9 10.4 7.3 13.5 12.7h40.6c3.1-5.3 7.7-9.8 13.5-12.7l6.3 12.7h0c-6.3-12.7-6.3-12.7-6.3-12.7l0 0 0 0 .1 0 .2-.1 .6-.3c.5-.2 1.2-.6 2.1-1c1.8-.8 4.2-1.9 7.3-3.2c6.1-2.6 14.8-5.9 25.4-9.2c21-6.6 50.4-13.5 82.8-13.5c30.4 0 58.2 6.1 78.7 12.3L481.4 99.1c-2.6-11.2-12.6-19.1-24-19.1c-3.1 0-6.2 .6-9.2 1.8L416.9 94.3c-12.3 4.9-26.3-1.1-31.2-13.4s1.1-26.3 13.4-31.2l31.3-12.5c8.6-3.4 17.7-5.2 27-5.2c33.8 0 63.1 23.3 70.8 56.2l43.9 188c1.7 7.3 2.9 14.7 3.5 22.1c.3 1.9 .5 3.8 .5 5.7v6.7V352v16c0 61.9-50.1 112-112 112H419.7c-59.4 0-108.5-46.4-111.8-105.8L306.6 352H269.4l-1.2 22.2C264.9 433.6 215.8 480 156.3 480H112C50.1 480 0 429.9 0 368V352 310.7 304c0-1.9 .2-3.8 .5-5.7c.6-7.4 1.8-14.8 3.5-22.1l43.9-188C55.5 55.3 84.8 32 118.6 32c9.2 0 18.4 1.8 27 5.2l31.3 12.5c12.3 4.9 18.3 18.9 13.4 31.2s-18.9 18.3-31.2 13.4L127.8 81.8c-2.9-1.2-6-1.8-9.2-1.8zM64 325.4V368c0 26.5 21.5 48 48 48h44.3c25.5 0 46.5-19.9 47.9-45.3l2.5-45.6c-2.3-.8-4.9-1.7-7.5-2.5c-17.2-5.4-39.9-10.5-63.6-10.5c-23.7 0-46.2 5.1-63.2 10.5c-3.1 1-5.9 1.9-8.5 2.9zM512 368V325.4c-2.6-.9-5.5-1.9-8.5-2.9c-17-5.4-39.5-10.5-63.2-10.5c-23.7 0-46.4 5.1-63.6 10.5c-2.7 .8-5.2 1.7-7.5 2.5l2.5 45.6c1.4 25.4 22.5 45.3 47.9 45.3H464c26.5 0 48-21.5 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "glide": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2a5", + "label": "Glide", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "glide-g": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2a6", + "label": "Glide G", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "globe": { + "aliases": { + "unicodes": { + "composite": [ + "1f310" + ], + "secondary": [ + "10f0ac" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.9", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "coordinates", + "country", + "earth", + "global", + "globe", + "globe with meridians", + "gps", + "internet", + "language", + "localize", + "location", + "map", + "meridians", + "network", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f0ac", + "label": "Globe", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64H348.7c2.2 20.4 3.3 41.8 3.3 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0H167.7c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 20.9 58.2 27 94.7zm-209 0H18.6C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192H131.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H8.1C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6H344.3c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352H135.3zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6H493.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gofore": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a7", + "label": "Gofore", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "golang": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e40f", + "label": "Go", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400.1 194.8C389.2 197.6 380.2 199.1 371 202.4C363.7 204.3 356.3 206.3 347.8 208.5L347.2 208.6C343 209.8 342.6 209.9 338.7 205.4C334 200.1 330.6 196.7 324.1 193.5C304.4 183.9 285.4 186.7 267.7 198.2C246.5 211.9 235.6 232.2 235.9 257.4C236.2 282.4 253.3 302.9 277.1 306.3C299.1 309.1 316.9 301.7 330.9 285.8C333 283.2 334.9 280.5 337 277.5V277.5L337 277.5C337.8 276.5 338.5 275.4 339.3 274.2H279.2C272.7 274.2 271.1 270.2 273.3 264.9C277.3 255.2 284.8 239 289.2 230.9C290.1 229.1 292.3 225.1 296.1 225.1H397.2C401.7 211.7 409 198.2 418.8 185.4C441.5 155.5 468.1 139.9 506 133.4C537.8 127.8 567.7 130.9 594.9 149.3C619.5 166.1 634.7 188.9 638.8 218.8C644.1 260.9 631.9 295.1 602.1 324.4C582.4 345.3 557.2 358.4 528.2 364.3C522.6 365.3 517.1 365.8 511.7 366.3C508.8 366.5 506 366.8 503.2 367.1C474.9 366.5 449 358.4 427.2 339.7C411.9 326.4 401.3 310.1 396.1 291.2C392.4 298.5 388.1 305.6 382.1 312.3C360.5 341.9 331.2 360.3 294.2 365.2C263.6 369.3 235.3 363.4 210.3 344.7C187.3 327.2 174.2 304.2 170.8 275.5C166.7 241.5 176.7 210.1 197.2 184.2C219.4 155.2 248.7 136.8 284.5 130.3C313.8 124.1 341.8 128.4 367.1 145.6C383.6 156.5 395.4 171.4 403.2 189.5C405.1 192.3 403.8 193.9 400.1 194.8zM48.3 200.4C47.05 200.4 46.74 199.8 47.36 198.8L53.91 190.4C54.53 189.5 56.09 188.9 57.34 188.9H168.6C169.8 188.9 170.1 189.8 169.5 190.7L164.2 198.8C163.6 199.8 162 200.7 161.1 200.7L48.3 200.4zM1.246 229.1C0 229.1-.3116 228.4 .3116 227.5L6.855 219.1C7.479 218.2 9.037 217.5 10.28 217.5H152.4C153.6 217.5 154.2 218.5 153.9 219.4L151.4 226.9C151.1 228.1 149.9 228.8 148.6 228.8L1.246 229.1zM75.72 255.9C75.1 256.8 75.41 257.7 76.65 257.7L144.6 258C145.5 258 146.8 257.1 146.8 255.9L147.4 248.4C147.4 247.1 146.8 246.2 145.5 246.2H83.2C81.95 246.2 80.71 247.1 80.08 248.1L75.72 255.9zM577.2 237.9C577 235.3 576.9 233.1 576.5 230.9C570.9 200.1 542.5 182.6 512.9 189.5C483.9 196 465.2 214.4 458.4 243.7C452.8 268 464.6 292.6 487 302.6C504.2 310.1 521.3 309.2 537.8 300.7C562.4 287.1 575.8 268 577.4 241.2C577.3 240 577.3 238.9 577.2 237.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "golf-ball-tee": { + "aliases": { + "names": [ + "golf-ball" + ], + "unicodes": { + "secondary": [ + "10f450" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caddy", + "eagle", + "putt", + "tee" + ] + }, + "unicode": "f450", + "label": "Golf Ball Tee", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192c0 66.8-34.1 125.6-85.8 160H85.8C34.1 317.6 0 258.8 0 192C0 86 86 0 192 0S384 86 384 192zM242.1 256.6c0 18.5-15 33.5-33.5 33.5c-4.9 0-9.1 5.1-5.4 8.4c5.9 5.2 13.7 8.4 22.1 8.4c18.5 0 33.5-15 33.5-33.5c0-8.5-3.2-16.2-8.4-22.1c-3.3-3.7-8.4 .5-8.4 5.4zm-52.3-49.3c-4.9 0-9.1 5.1-5.4 8.4c5.9 5.2 13.7 8.4 22.1 8.4c18.5 0 33.5-15 33.5-33.5c0-8.5-3.2-16.2-8.4-22.1c-3.3-3.7-8.4 .5-8.4 5.4c0 18.5-15 33.5-33.5 33.5zm113.5-17.5c0 18.5-15 33.5-33.5 33.5c-4.9 0-9.1 5.1-5.4 8.4c5.9 5.2 13.7 8.4 22.1 8.4c18.5 0 33.5-15 33.5-33.5c0-8.5-3.2-16.2-8.4-22.1c-3.3-3.7-8.4 .5-8.4 5.4zM96 416c0-17.7 14.3-32 32-32h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H240c-8.8 0-16 7.2-16 16v16c0 17.7-14.3 32-32 32s-32-14.3-32-32V464c0-8.8-7.2-16-16-16H128c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "goodreads": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a8", + "label": "Goodreads", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "goodreads-g": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a9", + "label": "Goodreads G", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a0", + "label": "Google Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-drive": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3aa", + "label": "Google Drive", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-pay": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e079", + "label": "Google Pay", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M105.72,215v41.25h57.1a49.66,49.66,0,0,1-21.14,32.6c-9.54,6.55-21.72,10.28-36,10.28-27.6,0-50.93-18.91-59.3-44.22a65.61,65.61,0,0,1,0-41l0,0c8.37-25.46,31.7-44.37,59.3-44.37a56.43,56.43,0,0,1,40.51,16.08L176.47,155a101.24,101.24,0,0,0-70.75-27.84,105.55,105.55,0,0,0-94.38,59.11,107.64,107.64,0,0,0,0,96.18v.15a105.41,105.41,0,0,0,94.38,59c28.47,0,52.55-9.53,70-25.91,20-18.61,31.41-46.15,31.41-78.91A133.76,133.76,0,0,0,205.38,215Zm389.41-4c-10.13-9.38-23.93-14.14-41.39-14.14-22.46,0-39.34,8.34-50.5,24.86l20.85,13.26q11.45-17,31.26-17a34.05,34.05,0,0,1,22.75,8.79A28.14,28.14,0,0,1,487.79,248v5.51c-9.1-5.07-20.55-7.75-34.64-7.75-16.44,0-29.65,3.88-39.49,11.77s-14.82,18.31-14.82,31.56a39.74,39.74,0,0,0,13.94,31.27c9.25,8.34,21,12.51,34.79,12.51,16.29,0,29.21-7.3,39-21.89h1v17.72h22.61V250C510.25,233.45,505.26,220.34,495.13,211ZM475.9,300.3a37.32,37.32,0,0,1-26.57,11.16A28.61,28.61,0,0,1,431,305.21a19.41,19.41,0,0,1-7.77-15.63c0-7,3.22-12.81,9.54-17.42s14.53-7,24.07-7C470,265,480.3,268,487.64,273.94,487.64,284.07,483.68,292.85,475.9,300.3Zm-93.65-142A55.71,55.71,0,0,0,341.74,142H279.07V328.74H302.7V253.1h39c16,0,29.5-5.36,40.51-15.93.88-.89,1.76-1.79,2.65-2.68A54.45,54.45,0,0,0,382.25,158.26Zm-16.58,62.23a30.65,30.65,0,0,1-23.34,9.68H302.7V165h39.63a32,32,0,0,1,22.6,9.23A33.18,33.18,0,0,1,365.67,220.49ZM614.31,201,577.77,292.7h-.45L539.9,201H514.21L566,320.55l-29.35,64.32H561L640,201Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-play": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ab", + "label": "Google Play", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-plus": { + "changes": [ + "4.6.0", + "5.0.0", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus-circle", + "google-plus-official" + ] + }, + "unicode": "f2b3", + "label": "Google Plus", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,8C119.1,8,8,119.1,8,256S119.1,504,256,504,504,392.9,504,256,392.9,8,256,8ZM185.3,380a124,124,0,0,1,0-248c31.3,0,60.1,11,83,32.3l-33.6,32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9,0-77.2,35.5-77.2,78.1S142.3,334,185.3,334c32.6,0,64.9-19.1,70.1-53.3H185.3V238.1H302.2a109.2,109.2,0,0,1,1.9,20.7c0,70.8-47.5,121.2-118.8,121.2ZM415.5,273.8v35.5H380V273.8H344.5V238.3H380V202.8h35.5v35.5h35.2v35.5Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-plus-g": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus", + "social network" + ] + }, + "unicode": "f0d5", + "label": "Google Plus G", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-wallet": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1ee", + "label": "Google Wallet", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gopuram": { + "aliases": { + "unicodes": { + "secondary": [ + "10f664" + ] + } + }, + "changes": [ + "5.3.0", + "5.7.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "entrance", + "hinduism", + "temple", + "tower" + ] + }, + "unicode": "f664", + "label": "Gopuram", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120 0c13.3 0 24 10.7 24 24v8h40V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8h48V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8h40V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8V64v64c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H416V352H384V224H352V128H320v96h32V352h32V512H304V464c0-26.5-21.5-48-48-48s-48 21.5-48 48v48H128V352h32V224h32V128H160v96H128V352H96V512H32c-17.7 0-32-14.3-32-32V384c0-17.7 14.3-32 32-32V256c0-17.7 14.3-32 32-32V160c0-17.7 14.3-32 32-32V64 32 24c0-13.3 10.7-24 24-24zM256 272c-17.7 0-32 14.3-32 32v48h64V304c0-17.7-14.3-32-32-32zm-32-80v32h64V192c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "graduation-cap": { + "aliases": { + "names": [ + "mortar-board" + ], + "unicodes": { + "composite": [ + "1f393" + ], + "secondary": [ + "10f19d" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cap", + "celebration", + "ceremony", + "clothing", + "college", + "graduate", + "graduation", + "graduation cap", + "hat", + "learning", + "school", + "student" + ] + }, + "unicode": "f19d", + "label": "Graduation Cap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 32c-8.1 0-16.1 1.4-23.7 4.1L15.8 137.4C6.3 140.9 0 149.9 0 160s6.3 19.1 15.8 22.6l57.9 20.9C57.3 229.3 48 259.8 48 291.9v28.1c0 28.4-10.8 57.7-22.3 80.8c-6.5 13-13.9 25.8-22.5 37.6C0 442.7-.9 448.3 .9 453.4s6 8.9 11.2 10.2l64 16c4.2 1.1 8.7 .3 12.4-2s6.3-6.1 7.1-10.4c8.6-42.8 4.3-81.2-2.1-108.7C90.3 344.3 86 329.8 80 316.5V291.9c0-30.2 10.2-58.7 27.9-81.5c12.9-15.5 29.6-28 49.2-35.7l157-61.7c8.2-3.2 17.5 .8 20.7 9s-.8 17.5-9 20.7l-157 61.7c-12.4 4.9-23.3 12.4-32.2 21.6l159.6 57.6c7.6 2.7 15.6 4.1 23.7 4.1s16.1-1.4 23.7-4.1L624.2 182.6c9.5-3.4 15.8-12.5 15.8-22.6s-6.3-19.1-15.8-22.6L343.7 36.1C336.1 33.4 328.1 32 320 32zM128 408c0 35.3 86 72 192 72s192-36.7 192-72L496.7 262.6 354.5 314c-11.1 4-22.8 6-34.5 6s-23.5-2-34.5-6L143.3 262.6 128 408z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gratipay": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "like", + "love" + ] + }, + "unicode": "f184", + "label": "Gratipay (Gittip)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "grav": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d6", + "label": "Grav", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "greater-than": { + "aliases": { + "unicodes": { + "composite": [ + "f531" + ], + "primary": [ + "f531" + ], + "secondary": [ + "103e", + "10f531" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Greater-Than Sign", + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "3e", + "label": "Greater Than", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M3.4 81.7c-7.9 15.8-1.5 35 14.3 42.9L280.5 256 17.7 387.4C1.9 395.3-4.5 414.5 3.4 430.3s27.1 22.2 42.9 14.3l320-160c10.8-5.4 17.7-16.5 17.7-28.6s-6.8-23.2-17.7-28.6l-320-160c-15.8-7.9-35-1.5-42.9 14.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "greater-than-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f532" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "f532", + "label": "Greater Than Equal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M52.1 93.7C35.7 87.1 27.7 68.5 34.3 52.1s25.2-24.4 41.6-17.8l320 128C408 167.1 416 178.9 416 192s-8 24.9-20.1 29.7l-320 128c-16.4 6.6-35-1.4-41.6-17.8s1.4-35 17.8-41.6L297.8 192 52.1 93.7zM416 416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip": { + "aliases": { + "names": [ + "grip-horizontal" + ], + "unicodes": { + "secondary": [ + "10f58d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f58d", + "label": "Grip", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 136c0-22.1-17.9-40-40-40L40 96C17.9 96 0 113.9 0 136l0 48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40l0-48zm0 192c0-22.1-17.9-40-40-40H40c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM288 328c0-22.1-17.9-40-40-40H200c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM448 328c0-22.1-17.9-40-40-40H360c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip-lines": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a4" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f7a4", + "label": "Grip Lines", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 288c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 288zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip-lines-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a5" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f7a5", + "label": "Grip Lines Vertical", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 192, + 512 + ], + "width": 192, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64zm128 0c0-17.7-14.3-32-32-32s-32 14.3-32 32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f58e" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f58e", + "label": "Grip Vertical", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M40 352l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zm192 0l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zM40 320c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0zM232 192l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zM40 160c-22.1 0-40-17.9-40-40L0 72C0 49.9 17.9 32 40 32l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0zM232 32l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gripfire": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ac", + "label": "Gripfire, Inc.", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112.5 301.4c0-73.8 105.1-122.5 105.1-203 0-47.1-34-88-39.1-90.4.4 3.3.6 6.7.6 10C179.1 110.1 32 171.9 32 286.6c0 49.8 32.2 79.2 66.5 108.3 65.1 46.7 78.1 71.4 78.1 86.6 0 10.1-4.8 17-4.8 22.3 13.1-16.7 17.4-31.9 17.5-46.4 0-29.6-21.7-56.3-44.2-86.5-16-22.3-32.6-42.6-32.6-69.5zm205.3-39c-12.1-66.8-78-124.4-94.7-130.9l4 7.2c2.4 5.1 3.4 10.9 3.4 17.1 0 44.7-54.2 111.2-56.6 116.7-2.2 5.1-3.2 10.5-3.2 15.8 0 20.1 15.2 42.1 17.9 42.1 2.4 0 56.6-55.4 58.1-87.7 6.4 11.7 9.1 22.6 9.1 33.4 0 41.2-41.8 96.9-41.8 96.9 0 11.6 31.9 53.2 35.5 53.2 1 0 2.2-1.4 3.2-2.4 37.9-39.3 67.3-85 67.3-136.8 0-8-.7-16.2-2.2-24.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "group-arrows-rotate": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "community", + "engagement", + "spin", + "sync" + ] + }, + "unicode": "e4f6", + "label": "Group Arrows Rotate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M201.1 71.9c16.9-5 26.6-22.9 21.5-39.8s-22.9-26.6-39.8-21.5c-21.5 6.4-41.8 15.5-60.6 27C114.3 34 105.4 32 96 32C60.7 32 32 60.7 32 96c0 9.4 2 18.3 5.6 26.3c-11.5 18.7-20.6 39-27 60.6c-5 16.9 4.6 34.8 21.5 39.8s34.8-4.6 39.8-21.5c4.3-14.6 10.4-28.5 17.9-41.4c2 .2 4.1 .3 6.1 .3c35.3 0 64-28.7 64-64c0-2.1-.1-4.1-.3-6.1c12.9-7.5 26.8-13.6 41.4-17.9zm128-61.3c-16.9-5-34.8 4.6-39.8 21.5s4.6 34.8 21.5 39.8c14.6 4.3 28.5 10.4 41.4 17.9c-.2 2-.3 4.1-.3 6.1c0 35.3 28.7 64 64 64c2.1 0 4.1-.1 6.2-.3c7.5 12.9 13.6 26.8 17.9 41.4c5 16.9 22.9 26.6 39.8 21.5s26.6-22.9 21.5-39.8c-6.4-21.5-15.5-41.8-27-60.6c3.6-8 5.6-16.9 5.6-26.3c0-35.3-28.7-64-64-64c-9.4 0-18.3 2-26.3 5.6c-18.7-11.5-39-20.6-60.6-27zM71.9 310.9c-5-16.9-22.9-26.6-39.8-21.5s-26.6 22.9-21.5 39.8c6.4 21.5 15.5 41.8 27 60.6C34 397.7 32 406.6 32 416c0 35.3 28.7 64 64 64c9.4 0 18.3-2 26.3-5.6c18.7 11.5 39 20.6 60.6 27c16.9 5 34.8-4.6 39.8-21.5s-4.6-34.8-21.5-39.8c-14.6-4.3-28.5-10.4-41.4-17.9c.2-2 .3-4.1 .3-6.2c0-35.3-28.7-64-64-64c-2.1 0-4.1 .1-6.2 .3c-7.5-12.9-13.6-26.8-17.9-41.4zm429.4 18.3c5-16.9-4.6-34.8-21.5-39.8s-34.8 4.6-39.8 21.5c-4.3 14.6-10.4 28.5-17.9 41.4c-2-.2-4.1-.3-6.2-.3c-35.3 0-64 28.7-64 64c0 2.1 .1 4.1 .3 6.2c-12.9 7.5-26.8 13.6-41.4 17.9c-16.9 5-26.6 22.9-21.5 39.8s22.9 26.6 39.8 21.5c21.5-6.4 41.8-15.5 60.6-27c8 3.6 16.9 5.6 26.3 5.6c35.3 0 64-28.7 64-64c0-9.4-2-18.3-5.6-26.3c11.5-18.7 20.6-39 27-60.6zM192.8 256.8c0-15.6 5.6-29.9 14.9-41.1L223 231c6.6 6.6 17.8 1.9 17.8-7.4V163.2c0-5.7-4.7-10.4-10.4-10.4H169.9c-9.3 0-13.9 11.2-7.4 17.8l11.2 11.2c-17.9 19.8-28.9 46.2-28.9 75.1c0 43.6 24.9 81.3 61.1 99.8c11.8 6 26.3 1.4 32.3-10.4s1.4-26.3-10.4-32.3c-20.8-10.6-34.9-32.2-34.9-57zm93.1-58.6c20.8 10.6 34.9 32.2 34.9 57c0 15.6-5.6 29.9-14.9 41.1L290.6 281c-6.6-6.6-17.8-1.9-17.8 7.4v60.5c0 5.7 4.7 10.4 10.4 10.4h60.5c9.3 0 13.9-11.2 7.4-17.8l-11.2-11.2c17.9-19.8 28.9-46.2 28.9-75.1c0-43.6-24.9-81.3-61.1-99.8c-11.8-6-26.3-1.4-32.3 10.4s-1.4 26.3 10.4 32.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grunt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ad", + "label": "Grunt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm142.1 45.8c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm62.7-45.8c3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6 7.5-11.4 25.4-26 44.9-37zM160 418.5h-29.4c-5.5 0-8.2 1.6-9.5 2.9-1.9 2-2.2 4.7-.9 8.1 3.5 9.1 11.4 16.5 13.7 18.6 3.1 2.7 7.5 4.3 11.8 4.3 4.4 0 8.3-1.7 11-4.6 7.5-8.2 11.9-17.1 13-19.8.6-1.5 1.3-4.5-.9-6.8-1.8-1.8-4.7-2.7-8.8-2.7zm189.2-101.2c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59zM191.9 187.7h.2c12.7-.1 27.2-17.8 27.2-17.8-9.9 6-18.8 8.1-27.3 8.3-8.5-.2-17.4-2.3-27.3-8.3 0 0 14.5 17.6 27.2 17.8zm61.7 230.7h-29.4c-4.2 0-7.2.9-8.9 2.7-2.2 2.3-1.5 5.2-.9 6.7 1 2.6 5.5 11.3 13 19.3 2.7 2.9 6.6 4.5 11 4.5s8.7-1.6 11.8-4.2c2.3-2 10.2-9.2 13.7-18.1 1.3-3.3 1-6-.9-7.9-1.3-1.3-4-2.9-9.4-3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "guarani-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Guarani Sign", + "currency" + ] + }, + "unicode": "e19a", + "label": "Guarani Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-17.7 0-32 14.3-32 32V66.7C69.2 81.9 0 160.9 0 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V445.3c90.8-15.2 160-94.2 160-189.3c0-17.7-14.3-32-32-32H224V132c22.1 5.7 41.8 17.1 57.6 32.6c12.6 12.4 32.9 12.2 45.3-.4s12.2-32.9-.5-45.3C299 92 263.5 73.3 224 66.7V32c0-17.7-14.3-32-32-32zM160 132V380c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124zM224 380V288h92c-11.6 45-47 80.4-92 92z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "guilded": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07e", + "label": "Guilded", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M443.427,64H4.571c0,103.26,22.192,180.06,43.418,222.358C112.046,414.135,224,448,225.256,448a312.824,312.824,0,0,0,140.55-103.477c25.907-33.923,53.1-87.19,65.916-145.761H171.833c4.14,36.429,22.177,67.946,45.1,86.944h88.589c-17.012,28.213-48.186,54.4-80.456,69.482-31.232-13.259-69.09-46.544-96.548-98.362-26.726-53.833-27.092-105.883-27.092-105.883H437.573A625.91,625.91,0,0,0,443.427,64Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "guitar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a6" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acoustic", + "instrument", + "music", + "rock", + "rock and roll", + "song", + "strings" + ] + }, + "unicode": "f7a6", + "label": "Guitar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M465 7c-9.4-9.4-24.6-9.4-33.9 0L383 55c-2.4 2.4-4.3 5.3-5.5 8.5l-15.4 41-77.5 77.6c-45.1-29.4-99.3-30.2-131 1.6c-11 11-18 24.6-21.4 39.6c-3.7 16.6-19.1 30.7-36.1 31.6c-25.6 1.3-49.3 10.7-67.3 28.6C-16 328.4-7.6 409.4 47.5 464.5s136.1 63.5 180.9 18.7c17.9-17.9 27.4-41.7 28.6-67.3c.9-17 15-32.3 31.6-36.1c15-3.4 28.6-10.5 39.6-21.4c31.8-31.8 31-85.9 1.6-131l77.6-77.6 41-15.4c3.2-1.2 6.1-3.1 8.5-5.5l48-48c9.4-9.4 9.4-24.6 0-33.9L465 7zM208 256a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gulp": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ae", + "label": "Gulp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gun": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "firearm", + "pistol", + "weapon" + ] + }, + "unicode": "e19b", + "label": "Gun", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528 56c0-13.3-10.7-24-24-24s-24 10.7-24 24v8H32C14.3 64 0 78.3 0 96V208c0 17.7 14.3 32 32 32H42c20.8 0 36.1 19.6 31 39.8L33 440.2c-2.4 9.6-.2 19.7 5.8 27.5S54.1 480 64 480h96c14.7 0 27.5-10 31-24.2L217 352H321.4c23.7 0 44.8-14.9 52.7-37.2L400.9 240H432c8.5 0 16.6-3.4 22.6-9.4L477.3 208H544c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32H528V56zM321.4 304H229l16-64h105l-21 58.7c-1.1 3.2-4.2 5.3-7.5 5.3zM80 128H464c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "h": { + "aliases": { + "unicodes": { + "composite": [ + "68" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter H", + "Latin Small Letter H", + "letter" + ] + }, + "unicode": "48", + "label": "H", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 256l0 192c0 17.7 14.3 32 32 32s32-14.3 32-32l0-224V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192L64 192 64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-192 256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hacker-news": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d4", + "label": "Hacker News", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hackerrank": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5f7", + "label": "Hackerrank", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M477.5 128C463 103.05 285.13 0 256.16 0S49.25 102.79 34.84 128s-14.49 230.8 0 256 192.38 128 221.32 128S463 409.08 477.49 384s14.51-231 .01-256zM316.13 414.22c-4 0-40.91-35.77-38-38.69.87-.87 6.26-1.48 17.55-1.83 0-26.23.59-68.59.94-86.32 0-2-.44-3.43-.44-5.85h-79.93c0 7.1-.46 36.2 1.37 72.88.23 4.54-1.58 6-5.74 5.94-10.13 0-20.27-.11-30.41-.08-4.1 0-5.87-1.53-5.74-6.11.92-33.44 3-84-.15-212.67v-3.17c-9.67-.35-16.38-1-17.26-1.84-2.92-2.92 34.54-38.69 38.49-38.69s41.17 35.78 38.27 38.69c-.87.87-7.9 1.49-16.77 1.84v3.16c-2.42 25.75-2 79.59-2.63 105.39h80.26c0-4.55.39-34.74-1.2-83.64-.1-3.39.95-5.17 4.21-5.2 11.07-.08 22.15-.13 33.23-.06 3.46 0 4.57 1.72 4.5 5.38C333 354.64 336 341.29 336 373.69c8.87.35 16.82 1 17.69 1.84 2.88 2.91-33.62 38.69-37.58 38.69z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hammer": { + "aliases": { + "unicodes": { + "composite": [ + "1f528" + ], + "secondary": [ + "10f6e3" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "hammer", + "recovery", + "repair", + "settings", + "tool" + ] + }, + "unicode": "f6e3", + "label": "Hammer", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M413.5 237.5c-28.2 4.8-58.2-3.6-80-25.4l-38.1-38.1C280.4 159 272 138.8 272 117.6V105.5L192.3 62c-5.3-2.9-8.6-8.6-8.3-14.7s3.9-11.5 9.5-14l47.2-21C259.1 4.2 279 0 299.2 0h18.1c36.7 0 72 14 98.7 39.1l44.6 42c24.2 22.8 33.2 55.7 26.6 86L503 183l8-8c9.4-9.4 24.6-9.4 33.9 0l24 24c9.4 9.4 9.4 24.6 0 33.9l-88 88c-9.4 9.4-24.6 9.4-33.9 0l-24-24c-9.4-9.4-9.4-24.6 0-33.9l8-8-17.5-17.5zM27.4 377.1L260.9 182.6c3.5 4.9 7.5 9.6 11.8 14l38.1 38.1c6 6 12.4 11.2 19.2 15.7L134.9 484.6c-14.5 17.4-36 27.4-58.6 27.4C34.1 512 0 477.8 0 435.7c0-22.6 10.1-44.1 27.4-58.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hamsa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f665" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amulet", + "christianity", + "islam", + "jewish", + "judaism", + "muslim", + "protection" + ] + }, + "unicode": "f665", + "label": "Hamsa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M34.6 288H80c8.8 0 16-7.2 16-16V72c0-22.1 17.9-40 40-40s40 17.9 40 40V204c0 11 9 20 20 20s20-9 20-20V40c0-22.1 17.9-40 40-40s40 17.9 40 40V204c0 11 9 20 20 20s20-9 20-20V72c0-22.1 17.9-40 40-40s40 17.9 40 40V272c0 8.8 7.2 16 16 16h45.4c19.1 0 34.6 15.5 34.6 34.6c0 8.6-3.2 16.9-9 23.3L416.6 441c-41.1 45.2-99.4 71-160.6 71s-119.4-25.8-160.6-71L9 345.9c-5.8-6.4-9-14.7-9-23.3C0 303.5 15.5 288 34.6 288zM256 288c-38.4 0-76.8 35.8-90.6 50.2c-3.6 3.7-5.4 8.7-5.4 13.8s1.8 10.1 5.4 13.8C179.2 380.2 217.6 416 256 416s76.8-35.8 90.6-50.2c3.6-3.7 5.4-8.7 5.4-13.8s-1.8-10.1-5.4-13.8C332.8 323.8 294.4 288 256 288zm0 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand": { + "aliases": { + "names": [ + "hand-paper" + ], + "unicodes": { + "composite": [ + "1f91a", + "270b" + ], + "secondary": [ + "10f256" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Raised Hand", + "backhand", + "game", + "halt", + "palm", + "raised", + "raised back of hand", + "roshambo", + "stop" + ] + }, + "unicode": "f256", + "label": "Hand", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32z" + }, + "regular": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c-25.3 0-47.2 14.7-57.6 36c-7-2.6-14.5-4-22.4-4c-35.3 0-64 28.7-64 64V261.5l-2.7-2.7c-25-25-65.5-25-90.5 0s-25 65.5 0 90.5L106.5 437c48 48 113.1 75 181 75H296h8c1.5 0 3-.1 4.5-.4c91.7-6.2 165-79.4 171.1-171.1c.3-1.5 .4-3 .4-4.5V160c0-35.3-28.7-64-64-64c-5.5 0-10.9 .7-16 2V96c0-35.3-28.7-64-64-64c-7.9 0-15.4 1.4-22.4 4C303.2 14.7 281.3 0 256 0zM240 96.1c0 0 0-.1 0-.1V64c0-8.8 7.2-16 16-16s16 7.2 16 16V95.9c0 0 0 .1 0 .1V232c0 13.3 10.7 24 24 24s24-10.7 24-24V96c0 0 0 0 0-.1c0-8.8 7.2-16 16-16s16 7.2 16 16v55.9c0 0 0 .1 0 .1v80c0 13.3 10.7 24 24 24s24-10.7 24-24V160.1c0 0 0-.1 0-.1c0-8.8 7.2-16 16-16s16 7.2 16 16V332.9c-.1 .6-.1 1.3-.2 1.9c-3.4 69.7-59.3 125.6-129 129c-.6 0-1.3 .1-1.9 .2H296h-8.5c-55.2 0-108.1-21.9-147.1-60.9L52.7 315.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L119 336.4c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V96c0-8.8 7.2-16 16-16c8.8 0 16 7.1 16 15.9V232c0 13.3 10.7 24 24 24s24-10.7 24-24V96.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-back-fist": { + "aliases": { + "names": [ + "hand-rock" + ], + "unicodes": { + "secondary": [ + "10f255" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fist", + "game", + "roshambo" + ] + }, + "unicode": "f255", + "label": "Hand Back Fist", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 0C117.5 0 96 21.5 96 48V96v28.5V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V149.3l-9 7.5C40.4 169 32 187 32 206V244c0 38 16.9 74 46.1 98.3L128 384v96c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V374.7c46.9-19 80-65 80-118.7V176 160 144c0-26.5-21.5-48-48-48c-12.4 0-23.6 4.7-32.1 12.3C350 83.5 329.3 64 304 64c-12.4 0-23.6 4.7-32.1 12.3C270 51.5 249.3 32 224 32c-12.4 0-23.6 4.7-32.1 12.3C190 19.5 169.3 0 144 0z" + }, + "regular": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 64c0-8.8 7.2-16 16-16s16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16V264c0 31.3-20 58-48 67.9c-9.6 3.4-16 12.5-16 22.6V488c0 13.3 10.7 24 24 24s24-10.7 24-24V370.2c38-20.1 64-60.1 64-106.2V160c0-35.3-28.7-64-64-64c-2.8 0-5.6 .2-8.3 .5C332.8 77.1 311.9 64 288 64c-2.8 0-5.6 .2-8.3 .5C268.8 45.1 247.9 32 224 32c-2.8 0-5.6 .2-8.3 .5C204.8 13.1 183.9 0 160 0C124.7 0 96 28.7 96 64v64.3c-11.7 7.4-22.5 16.4-32 26.9l17.8 16.1L64 155.2l-9.4 10.5C40 181.8 32 202.8 32 224.6v12.8c0 49.6 24.2 96.1 64.8 124.5l13.8-19.7L96.8 361.9l8.9 6.2c6.9 4.8 14.4 8.6 22.3 11.3V488c0 13.3 10.7 24 24 24s24-10.7 24-24V359.9c0-12.6-9.8-23.1-22.4-23.9c-7.3-.5-14.3-2.9-20.3-7.1l-13.1 18.7 13.1-18.7-8.9-6.2C96.6 303.1 80 271.3 80 237.4V224.6c0-9.9 3.7-19.4 10.3-26.8l9.4-10.5c3.8-4.2 7.9-8.1 12.3-11.6V208c0 8.8 7.2 16 16 16s16-7.2 16-16V142.3 128 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-dots": { + "aliases": { + "names": [ + "allergies" + ], + "unicodes": { + "secondary": [ + "10f461" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "freckles", + "hand", + "hives", + "palm", + "pox", + "skin", + "spots" + ] + }, + "unicode": "f461", + "label": "Hand Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32zM240 336a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80 16a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48-16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm-16 80a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM240 432a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm-48-48a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-fist": { + "aliases": { + "names": [ + "fist-raised" + ], + "unicodes": { + "composite": [ + "270a" + ], + "secondary": [ + "10f6de" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "clenched", + "d&d", + "dnd", + "fantasy", + "fist", + "hand", + "ki", + "monk", + "punch", + "raised fist", + "resist", + "strength", + "unarmed combat" + ] + }, + "unicode": "f6de", + "label": "Hand Fist", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 0c17.7 0 32 14.3 32 32V144H160V32c0-17.7 14.3-32 32-32zM64 64c0-17.7 14.3-32 32-32s32 14.3 32 32v80H64V64zm192 0c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V64zm96 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V128zm-96 88l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V256c0 52.3-25.1 98.8-64 128v96c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V401.6c-17.3-7.9-33.2-18.8-46.9-32.5L69.5 357.5C45.5 333.5 32 300.9 32 267V240c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H128c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4bd" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "lift" + ] + }, + "unicode": "f4bd", + "label": "Hand Holding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288 272 193.7c-29.1 0-57.3 9.9-80 28L68.8 384H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H192 352.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-366.1-8.3a.5 .5 0 1 1 -.9 .1 .5 .5 0 1 1 .9-.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-dollar": { + "aliases": { + "names": [ + "hand-holding-usd" + ], + "unicodes": { + "secondary": [ + "10f4c0" + ] + } + }, + "changes": [ + "5.0.9", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "carry", + "dollar sign", + "donation", + "giving", + "lift", + "money", + "price" + ] + }, + "unicode": "f4c0", + "label": "Hand Holding Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 24V34.5c6.4 1.2 12.6 2.7 18.2 4.2c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17c-10.9-2.9-21.1-4.9-30.2-5c-7.3-.1-14.7 1.7-19.4 4.4c-2.1 1.3-3.1 2.4-3.5 3c-.3 .5-.7 1.2-.7 2.8c0 .3 0 .5 0 .6c.2 .2 .9 1.2 3.3 2.6c5.8 3.5 14.4 6.2 27.4 10.1l.9 .3c11.1 3.3 25.9 7.8 37.9 15.3c13.7 8.6 26.1 22.9 26.4 44.9c.3 22.5-11.4 38.9-26.7 48.5c-6.7 4.1-13.9 7-21.3 8.8V232c0 13.3-10.7 24-24 24s-24-10.7-24-24V220.6c-9.5-2.3-18.2-5.3-25.6-7.8c-2.1-.7-4.1-1.4-6-2c-12.6-4.2-19.4-17.8-15.2-30.4s17.8-19.4 30.4-15.2c2.6 .9 5 1.7 7.3 2.5c13.6 4.6 23.4 7.9 33.9 8.3c8 .3 15.1-1.6 19.2-4.1c1.9-1.2 2.8-2.2 3.2-2.9c.4-.6 .9-1.8 .8-4.1l0-.2c0-1 0-2.1-4-4.6c-5.7-3.6-14.3-6.4-27.1-10.3l-1.9-.6c-10.8-3.2-25-7.5-36.4-14.4c-13.5-8.1-26.5-22-26.6-44.1c-.1-22.9 12.9-38.6 27.7-47.4c6.4-3.8 13.3-6.4 20.2-8.2V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-droplet": { + "aliases": { + "names": [ + "hand-holding-water" + ], + "unicodes": { + "secondary": [ + "10f4c1" + ] + } + }, + "changes": [ + "5.0.9", + "5.13.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "covid-19", + "drought", + "grow", + "lift", + "sanitation" + ] + }, + "unicode": "f4c1", + "label": "Hand Holding Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M275.5 6.6C278.3 2.5 283 0 288 0s9.7 2.5 12.5 6.6L366.8 103C378 119.3 384 138.6 384 158.3V160c0 53-43 96-96 96s-96-43-96-96v-1.7c0-19.8 6-39 17.2-55.3L275.5 6.6zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-hand": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "give", + "help", + "hold", + "protect" + ] + }, + "unicode": "e4f7", + "label": "Hand Holding Hand", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M7.8 207.7c-13.1-17.8-9.3-42.8 8.5-55.9L142.9 58.5C166.2 41.3 194.5 32 223.5 32H384 544c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H507.2l-44.9 36c-22.7 18.2-50.9 28-80 28H304 288 224c-17.7 0-32-14.3-32-32s14.3-32 32-32h64 16c8.8 0 16-7.2 16-16s-7.2-16-16-16H183.4L63.7 216.2c-17.8 13.1-42.8 9.3-55.9-8.5zM382.4 160l0 0 .9 0c-.3 0-.6 0-.9 0zM568.2 304.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 453.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V384c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 352l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-heart": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4be" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "charity", + "gift", + "lift", + "package" + ] + }, + "unicode": "f4be", + "label": "Hand Holding Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M163.9 136.9c-29.4-29.8-29.4-78.2 0-108s77-29.8 106.4 0l17.7 18 17.7-18c29.4-29.8 77-29.8 106.4 0s29.4 78.2 0 108L310.5 240.1c-6.2 6.3-14.3 9.4-22.5 9.4s-16.3-3.1-22.5-9.4L163.9 136.9zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05c" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "covid-19", + "donate", + "help" + ] + }, + "unicode": "e05c", + "label": "Hand Holding Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 24V80H168c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h56v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176h56c13.3 0 24-10.7 24-24V104c0-13.3-10.7-24-24-24H320V24c0-13.3-10.7-24-24-24H248c-13.3 0-24 10.7-24 24zM559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288 272 193.7c-29.1 0-57.3 9.9-80 28L68.8 384H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H192 352.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-367-8.2l.9 0 0 0c-.3 0-.6 0-.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-lizard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f258" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "game", + "roshambo" + ] + }, + "unicode": "f258", + "label": "Hand Lizard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 112C0 85.5 21.5 64 48 64H160h80 46.5c36.8 0 71.2 18 92.1 48.2l113.5 164c13 18.7 19.9 41 19.9 63.8v12 16 48c0 17.7-14.3 32-32 32H384c-17.7 0-32-14.3-32-32V402.2L273.9 352H240 160 112c-26.5 0-48-21.5-48-48s21.5-48 48-48h48 80c26.5 0 48-21.5 48-48s-21.5-48-48-48H160 48c-26.5 0-48-21.5-48-48z" + }, + "regular": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M72 112c-13.3 0-24 10.7-24 24s10.7 24 24 24H240c35.3 0 64 28.7 64 64s-28.7 64-64 64H136c-13.3 0-24 10.7-24 24s10.7 24 24 24H288c4.5 0 8.9 1.3 12.7 3.6l64 40c7 4.4 11.3 12.1 11.3 20.4v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V413.3L281.1 384H136c-39.8 0-72-32.2-72-72s32.2-72 72-72H240c8.8 0 16-7.2 16-16s-7.2-16-16-16H72c-39.8 0-72-32.2-72-72S32.2 64 72 64H281.6c46.7 0 90.9 21.5 119.7 58.3l78.4 100.1c20.9 26.7 32.3 59.7 32.3 93.7V424c0 13.3-10.7 24-24 24s-24-10.7-24-24V316.1c0-23.2-7.8-45.8-22.1-64.1L363.5 151.9c-19.7-25.2-49.9-39.9-81.9-39.9H72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-middle-finger": { + "aliases": { + "unicodes": { + "composite": [ + "1f595" + ], + "secondary": [ + "10f806" + ] + } + }, + "changes": [ + "5.7.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "flip the bird", + "gesture", + "hand", + "hate", + "middle finger", + "rude" + ] + }, + "unicode": "f806", + "label": "Hand Middle Finger", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M232 0c-22.1 0-40 17.9-40 40V204.2c-8.5-7.6-19.7-12.2-32-12.2c-26.5 0-48 21.5-48 48v7 73c0 8.8-7.2 16-16 16s-16-7.2-16-16V264.3c-2 1.4-3.9 3-5.8 4.5L55 284.8C40.4 297 32 315 32 334V372c0 38 16.9 74 46.1 98.3l5.4 4.5c28.8 24 65 37.1 102.4 37.1H304c70.7 0 128-57.3 128-128V320 288c0-26.5-21.5-48-48-48c-12.4 0-23.6 4.7-32.1 12.3C350 227.5 329.3 208 304 208c-12.3 0-23.5 4.6-32 12.2V40c0-22.1-17.9-40-40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-peace": { + "aliases": { + "unicodes": { + "composite": [ + "270c" + ], + "secondary": [ + "10f25b" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hand", + "rest", + "truce", + "v", + "victory", + "victory hand" + ] + }, + "unicode": "f25b", + "label": "Hand Peace", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V240H192V32c0-17.7 14.3-32 32-32zm96 160c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32zm64 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224zM93.3 51.2L175.9 240H106.1L34.7 76.8C27.6 60.6 35 41.8 51.2 34.7s35.1 .3 42.1 16.5zm27 221.3l-.2-.5h69.9H216c22.1 0 40 17.9 40 40s-17.9 40-40 40H160c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V352c0 88.4-71.6 160-160 160H226.3c-42.4 0-83.1-16.9-113.1-46.9l-11.6-11.6C77.5 429.5 64 396.9 64 363V336c0-32.7 24.6-59.7 56.3-63.5z" + }, + "regular": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M250.8 1.4c-35.2-3.7-66.6 21.8-70.3 57L174 119 156.7 69.6C145 36.3 108.4 18.8 75.1 30.5S24.2 78.8 35.9 112.1L88.7 262.2C73.5 276.7 64 297.3 64 320v0 24c0 92.8 75.2 168 168 168h48c92.8 0 168-75.2 168-168V272 256 224c0-35.3-28.7-64-64-64c-7.9 0-15.4 1.4-22.4 4c-10.4-21.3-32.3-36-57.6-36c-.7 0-1.5 0-2.2 0l5.9-56.3c3.7-35.2-21.8-66.6-57-70.3zm-.2 155.4C243.9 166.9 240 179 240 192v48c0 .7 0 1.4 0 2c-5.1-1.3-10.5-2-16-2h-7.4l-5.4-15.3 17-161.3c.9-8.8 8.8-15.2 17.6-14.2s15.2 8.8 14.2 17.6l-9.5 90.1zM111.4 85.6L165.7 240H144c-4 0-8 .3-11.9 .9L81.2 96.2c-2.9-8.3 1.5-17.5 9.8-20.4s17.5 1.5 20.4 9.8zM288 192c0-8.8 7.2-16 16-16s16 7.2 16 16v32 16c0 8.8-7.2 16-16 16s-16-7.2-16-16V192zm38.4 108c10.4 21.3 32.3 36 57.6 36c5.5 0 10.9-.7 16-2v10c0 66.3-53.7 120-120 120H232c-66.3 0-120-53.7-120-120l0-24 0 0c0-17.7 14.3-32 32-32h80c8.8 0 16 7.2 16 16s-7.2 16-16 16H184c-13.3 0-24 10.7-24 24s10.7 24 24 24h40c35.3 0 64-28.7 64-64c0-.7 0-1.4 0-2c5.1 1.3 10.5 2 16 2c7.9 0 15.4-1.4 22.4-4zM400 272c0 8.8-7.2 16-16 16s-16-7.2-16-16V240 224c0-8.8 7.2-16 16-16s16 7.2 16 16v32 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand-o-down", + "point" + ] + }, + "unicode": "f0a7", + "label": "Hand Point Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 480c0 17.7 14.3 32 32 32s32-14.3 32-32V272H32V480zM224 320c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32s-32 14.3-32 32v64zm-64 64c17.7 0 32-14.3 32-32V304c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 17.7 14.3 32 32 32zm160-96c0 17.7 14.3 32 32 32s32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64zm-96-88l0 .6c9.4-5.4 20.3-8.6 32-8.6c13.2 0 25.4 4 35.6 10.8c8.7-24.9 32.5-42.8 60.4-42.8c11.7 0 22.6 3.1 32 8.6V160C384 71.6 312.4 0 224 0H162.3C119.8 0 79.1 16.9 49.1 46.9L37.5 58.5C13.5 82.5 0 115.1 0 149v27c0 35.3 28.7 64 64 64h88c22.1 0 40-17.9 40-40s-17.9-40-40-40H96c-8.8 0-16-7.2-16-16s7.2-16 16-16h56c39.8 0 72 32.2 72 72z" + }, + "regular": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 448l0-177.6c5.2 1 10.5 1.6 16 1.6l16 0 0 32 0 144c0 8.8-7.2 16-16 16s-16-7.2-16-16zM80 224c-17.7 0-32-14.3-32-32c0 0 0 0 0 0l0-24c0-66.3 53.7-120 120-120l48 0c52.5 0 97.1 33.7 113.4 80.7c-3.1-.5-6.2-.7-9.4-.7c-20 0-37.9 9.2-49.7 23.6c-9-4.9-19.4-7.6-30.3-7.6c-15.1 0-29 5.3-40 14c-11-8.8-24.9-14-40-14l-40 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l40 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-40 0-40 0zM0 192s0 0 0 0c0 18 6 34.6 16 48l0 208c0 35.3 28.7 64 64 64s64-28.7 64-64l0-82c5.1 1.3 10.5 2 16 2c25.3 0 47.2-14.7 57.6-36c7 2.6 14.5 4 22.4 4c20 0 37.9-9.2 49.7-23.6c9 4.9 19.4 7.6 30.3 7.6c35.3 0 64-28.7 64-64l0-64 0-24C384 75.2 308.8 0 216 0L168 0C75.2 0 0 75.2 0 168l0 24zm336 64c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-16c0-8.8 7.2-16 16-16s16 7.2 16 16l0 64zM160 272c5.5 0 10.9-.7 16-2l0 2 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-32 16 0zm64-24l0-40c0-8.8 7.2-16 16-16s16 7.2 16 16l0 48 0 16c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a5" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "finger", + "hand-o-left", + "left", + "point", + "previous" + ] + }, + "unicode": "f0a5", + "label": "Hand Point Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l208 0 0-64L32 96zM192 288c-17.7 0-32 14.3-32 32s14.3 32 32 32l64 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0zm-64-64c0 17.7 14.3 32 32 32l48 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-48 0c-17.7 0-32 14.3-32 32zm96 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l64 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0zm88-96l-.6 0c5.4 9.4 8.6 20.3 8.6 32c0 13.2-4 25.4-10.8 35.6c24.9 8.7 42.8 32.5 42.8 60.4c0 11.7-3.1 22.6-8.6 32l8.6 0c88.4 0 160-71.6 160-160l0-61.7c0-42.4-16.9-83.1-46.9-113.1l-11.6-11.6C429.5 77.5 396.9 64 363 64l-27 0c-35.3 0-64 28.7-64 64l0 88c0 22.1 17.9 40 40 40s40-17.9 40-40l0-56c0-8.8 7.2-16 16-16s16 7.2 16 16l0 56c0 39.8-32.2 72-72 72z" + }, + "regular": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 128l177.6 0c-1 5.2-1.6 10.5-1.6 16l0 16-32 0L64 160c-8.8 0-16-7.2-16-16s7.2-16 16-16zm224 16c0-17.7 14.3-32 32-32c0 0 0 0 0 0l24 0c66.3 0 120 53.7 120 120l0 48c0 52.5-33.7 97.1-80.7 113.4c.5-3.1 .7-6.2 .7-9.4c0-20-9.2-37.9-23.6-49.7c4.9-9 7.6-19.4 7.6-30.3c0-15.1-5.3-29-14-40c8.8-11 14-24.9 14-40l0-40c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 40c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-40 0-40zm32-80s0 0 0 0c-18 0-34.6 6-48 16L64 80C28.7 80 0 108.7 0 144s28.7 64 64 64l82 0c-1.3 5.1-2 10.5-2 16c0 25.3 14.7 47.2 36 57.6c-2.6 7-4 14.5-4 22.4c0 20 9.2 37.9 23.6 49.7c-4.9 9-7.6 19.4-7.6 30.3c0 35.3 28.7 64 64 64l64 0 24 0c92.8 0 168-75.2 168-168l0-48c0-92.8-75.2-168-168-168l-24 0zM256 400c-8.8 0-16-7.2-16-16s7.2-16 16-16l48 0 16 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-64 0zM240 224c0 5.5 .7 10.9 2 16l-2 0-32 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l32 0 0 16zm24 64l40 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-48 0-16 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l24 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a4" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "forward", + "hand-o-right", + "next", + "point", + "right" + ] + }, + "unicode": "f0a4", + "label": "Hand Point Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 96c17.7 0 32 14.3 32 32s-14.3 32-32 32l-208 0 0-64 208 0zM320 288c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64 0zm64-64c0 17.7-14.3 32-32 32l-48 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l48 0c17.7 0 32 14.3 32 32zM288 384c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64 0zm-88-96l.6 0c-5.4 9.4-8.6 20.3-8.6 32c0 13.2 4 25.4 10.8 35.6C177.9 364.3 160 388.1 160 416c0 11.7 3.1 22.6 8.6 32l-8.6 0C71.6 448 0 376.4 0 288l0-61.7c0-42.4 16.9-83.1 46.9-113.1l11.6-11.6C82.5 77.5 115.1 64 149 64l27 0c35.3 0 64 28.7 64 64l0 88c0 22.1-17.9 40-40 40s-40-17.9-40-40l0-56c0-8.8-7.2-16-16-16s-16 7.2-16 16l0 56c0 39.8 32.2 72 72 72z" + }, + "regular": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 128l-177.6 0c1 5.2 1.6 10.5 1.6 16l0 16 32 0 144 0c8.8 0 16-7.2 16-16s-7.2-16-16-16zM224 144c0-17.7-14.3-32-32-32c0 0 0 0 0 0l-24 0c-66.3 0-120 53.7-120 120l0 48c0 52.5 33.7 97.1 80.7 113.4c-.5-3.1-.7-6.2-.7-9.4c0-20 9.2-37.9 23.6-49.7c-4.9-9-7.6-19.4-7.6-30.3c0-15.1 5.3-29 14-40c-8.8-11-14-24.9-14-40l0-40c0-13.3 10.7-24 24-24s24 10.7 24 24l0 40c0 8.8 7.2 16 16 16s16-7.2 16-16l0-40 0-40zM192 64s0 0 0 0c18 0 34.6 6 48 16l208 0c35.3 0 64 28.7 64 64s-28.7 64-64 64l-82 0c1.3 5.1 2 10.5 2 16c0 25.3-14.7 47.2-36 57.6c2.6 7 4 14.5 4 22.4c0 20-9.2 37.9-23.6 49.7c4.9 9 7.6 19.4 7.6 30.3c0 35.3-28.7 64-64 64l-64 0-24 0C75.2 448 0 372.8 0 280l0-48C0 139.2 75.2 64 168 64l24 0zm64 336c8.8 0 16-7.2 16-16s-7.2-16-16-16l-48 0-16 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l64 0zm16-176c0 5.5-.7 10.9-2 16l2 0 32 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-32 0 0 16zm-24 64l-40 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l48 0 16 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-24 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-up": { + "aliases": { + "unicodes": { + "composite": [ + "261d" + ], + "secondary": [ + "10f0a6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand", + "hand-o-up", + "index", + "index pointing up", + "point", + "up" + ] + }, + "unicode": "f0a6", + "label": "Hand Point Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0S96 14.3 96 32V240H32V32zM224 192c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V192zm-64-64c17.7 0 32 14.3 32 32v48c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32zm160 96c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224zm-96 88l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V352c0 88.4-71.6 160-160 160H162.3c-42.4 0-83.1-16.9-113.1-46.9L37.5 453.5C13.5 429.5 0 396.9 0 363V336c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72z" + }, + "regular": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 64V241.6c5.2-1 10.5-1.6 16-1.6H96V208 64c0-8.8-7.2-16-16-16s-16 7.2-16 16zM80 288c-17.7 0-32 14.3-32 32c0 0 0 0 0 0v24c0 66.3 53.7 120 120 120h48c52.5 0 97.1-33.7 113.4-80.7c-3.1 .5-6.2 .7-9.4 .7c-20 0-37.9-9.2-49.7-23.6c-9 4.9-19.4 7.6-30.3 7.6c-15.1 0-29-5.3-40-14c-11 8.8-24.9 14-40 14H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h40c8.8 0 16-7.2 16-16s-7.2-16-16-16H120 80zM0 320s0 0 0 0c0-18 6-34.6 16-48V64C16 28.7 44.7 0 80 0s64 28.7 64 64v82c5.1-1.3 10.5-2 16-2c25.3 0 47.2 14.7 57.6 36c7-2.6 14.5-4 22.4-4c20 0 37.9 9.2 49.7 23.6c9-4.9 19.4-7.6 30.3-7.6c35.3 0 64 28.7 64 64v64 24c0 92.8-75.2 168-168 168H168C75.2 512 0 436.8 0 344V320zm336-64c0-8.8-7.2-16-16-16s-16 7.2-16 16v48 16c0 8.8 7.2 16 16 16s16-7.2 16-16V256zM160 240c5.5 0 10.9 .7 16 2v-2V208c0-8.8-7.2-16-16-16s-16 7.2-16 16v32h16zm64 24v40c0 8.8 7.2 16 16 16s16-7.2 16-16V256 240c0-8.8-7.2-16-16-16s-16 7.2-16 16v24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-pointer": { + "aliases": { + "unicodes": { + "secondary": [ + "10f25a" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "cursor", + "select" + ] + }, + "unicode": "f25a", + "label": "Hand Pointer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 40c0-22.1 17.9-40 40-40s40 17.9 40 40V188.2c8.5-7.6 19.7-12.2 32-12.2c20.6 0 38.2 13 45 31.2c8.8-9.3 21.2-15.2 35-15.2c25.3 0 46 19.5 47.9 44.3c8.5-7.7 19.8-12.3 32.1-12.3c26.5 0 48 21.5 48 48v48 16 48c0 70.7-57.3 128-128 128l-16 0H240l-.1 0h-5.2c-5 0-9.9-.3-14.7-1c-55.3-5.6-106.2-34-140-79L8 336c-13.3-17.7-9.7-42.7 8-56s42.7-9.7 56 8l56 74.7V40zM240 304c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304c0-8.8-7.2-16-16-16zm80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304z" + }, + "regular": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 64c0-8.8 7.2-16 16-16s16 7.2 16 16V200c0 10.3 6.6 19.5 16.4 22.8s20.6-.1 26.8-8.3c3-3.9 7.6-6.4 12.8-6.4c8.8 0 16 7.2 16 16c0 10.3 6.6 19.5 16.4 22.8s20.6-.1 26.8-8.3c3-3.9 7.6-6.4 12.8-6.4c7.8 0 14.3 5.6 15.7 13c1.6 8.2 7.3 15.1 15.1 18s16.7 1.6 23.3-3.6c2.7-2.1 6.1-3.4 9.9-3.4c8.8 0 16 7.2 16 16l0 16V392c0 39.8-32.2 72-72 72H272 212.3h-.9c-37.4 0-72.4-18.7-93.2-49.9L50.7 312.9c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4L116 353.2c5.9 8.8 16.8 12.7 26.9 9.7s17-12.4 17-23V320 64zM176 0c-35.3 0-64 28.7-64 64V261.7C91.2 238 55.5 232.8 28.5 250.7C-.9 270.4-8.9 310.1 10.8 339.5L78.3 440.8c29.7 44.5 79.6 71.2 133.1 71.2h.9H272h56c66.3 0 120-53.7 120-120V288l0-16c0-35.3-28.7-64-64-64c-4.5 0-8.8 .5-13 1.3c-11.7-15.4-30.2-25.3-51-25.3c-6.9 0-13.5 1.1-19.7 3.1C288.7 170.7 269.6 160 248 160c-2.7 0-5.4 .2-8 .5V64c0-35.3-28.7-64-64-64zm48 304c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304c0-8.8-7.2-16-16-16zm80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-scissors": { + "aliases": { + "unicodes": { + "secondary": [ + "10f257" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cut", + "game", + "roshambo" + ] + }, + "unicode": "f257", + "label": "Hand Scissors", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M40 208c-22.1 0-40 17.9-40 40s17.9 40 40 40l180.2 0c-7.6 8.5-12.2 19.7-12.2 32c0 25.3 19.5 46 44.3 47.9c-7.7 8.5-12.3 19.8-12.3 32.1c0 26.5 21.5 48 48 48l32 0 64 0c70.7 0 128-57.3 128-128l0-113.1c0-40.2-16-78.8-44.4-107.3C444.8 76.8 413.9 64 381.7 64L336 64c-21.3 0-39.3 13.9-45.6 33.1l74.5 23.7c8.4 2.7 13.1 11.7 10.4 20.1s-11.7 13.1-20.1 10.4L288 129.9l0 .1L84 65.8C62.9 59.2 40.5 70.9 33.8 92s5.1 43.5 26.2 50.2L269.5 208 40 208z" + }, + "regular": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.2 276.3c-1.2-35.3 26.4-65 61.7-66.2l3.3-.1L57 208.1C22.5 200.5 .7 166.3 8.3 131.8S50.2 75.5 84.7 83.2l173 38.3c2.3-2.9 4.7-5.7 7.1-8.5l18.4-20.3C299.9 74.5 323.5 64 348.3 64l10.2 0c54.1 0 104.1 28.7 131.3 75.4l1.5 2.6c13.6 23.2 20.7 49.7 20.7 76.6L512 344c0 66.3-53.7 120-120 120l-8 0-96 0c-35.3 0-64-28.7-64-64c0-2.8 .2-5.6 .5-8.3c-19.4-11-32.5-31.8-32.5-55.7c0-.8 0-1.6 0-2.4L66.4 338c-35.3 1.2-65-26.4-66.2-61.7zm63.4-18.2c-8.8 .3-15.7 7.7-15.4 16.5s7.7 15.7 16.5 15.4l161.5-5.6c9.8-.3 18.7 5.3 22.7 14.2s2.2 19.3-4.5 26.4c-2.8 2.9-4.4 6.7-4.4 11c0 8.8 7.2 16 16 16c9.1 0 17.4 5.1 21.5 13.3s3.2 17.9-2.3 25.1c-2 2.7-3.2 6-3.2 9.6c0 8.8 7.2 16 16 16l96 0 8 0c39.8 0 72-32.2 72-72l0-125.4c0-18.4-4.9-36.5-14.2-52.4l-1.5-2.6c-18.6-32-52.8-51.6-89.8-51.6l-10.2 0c-11.3 0-22 4.8-29.6 13.1l-17.5-15.9 17.5 15.9-18.4 20.3c-.6 .6-1.1 1.3-1.7 1.9l57 13.2c8.6 2 14 10.6 12 19.2s-10.6 14-19.2 12l-85.6-19.7L74.3 130c-8.6-1.9-17.2 3.5-19.1 12.2s3.5 17.2 12.2 19.1l187.5 41.6c10.2 2.3 17.8 10.9 18.7 21.4l.1 1c.6 6.6-1.5 13.1-5.8 18.1s-10.6 7.9-17.2 8.2L63.6 258.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-sparkles": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05d" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "covid-19", + "hygiene", + "magic", + "palm", + "soap", + "wash" + ] + }, + "unicode": "e05d", + "label": "Hand Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V64c0-17.7 14.3-32 32-32s32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V128c0-17.7 14.3-32 32-32s32 14.3 32 32V323.1c-11.9 4.8-21.3 14.9-25 27.8l-8.9 31.2L478.9 391C460.6 396.3 448 413 448 432c0 18.9 12.5 35.6 30.6 40.9C448.4 497.4 409.9 512 368 512H348.8c-59.6 0-116.9-22.9-160-64L76.4 341c-16-15.2-16.6-40.6-1.4-56.6s40.6-16.6 56.6-1.4l60.5 57.6c0-1.5-.1-3.1-.1-4.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V32c0-17.7 14.3-32 32-32zm-7.3 326.6c-1.1-3.9-4.7-6.6-8.7-6.6s-7.6 2.7-8.7 6.6L288 352l-25.4 7.3c-3.9 1.1-6.6 4.7-6.6 8.7s2.7 7.6 6.6 8.7L288 384l7.3 25.4c1.1 3.9 4.7 6.6 8.7 6.6s7.6-2.7 8.7-6.6L320 384l25.4-7.3c3.9-1.1 6.6-4.7 6.6-8.7s-2.7-7.6-6.6-8.7L320 352l-7.3-25.4zM104 120l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L104 168 90.2 216.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L56 168 7.7 154.2C3.1 152.9 0 148.7 0 144s3.1-8.9 7.7-10.2L56 120 69.8 71.7C71.1 67.1 75.3 64 80 64s8.9 3.1 10.2 7.7L104 120zM584 408l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L584 456l-13.8 48.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L536 456l-48.3-13.8c-4.6-1.3-7.7-5.5-7.7-10.2s3.1-8.9 7.7-10.2L536 408l13.8-48.3c1.3-4.6 5.5-7.7 10.2-7.7s8.9 3.1 10.2 7.7L584 408z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-spock": { + "aliases": { + "unicodes": { + "composite": [ + "1f596" + ], + "secondary": [ + "10f259" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand", + "live long", + "palm", + "prosper", + "salute", + "spock", + "star trek", + "vulcan", + "vulcan salute" + ] + }, + "unicode": "f259", + "label": "Hand Spock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M246.9 23.7C242.3 6.6 224.8-3.5 207.7 1.1s-27.2 22.1-22.6 39.2L238 237.8c2.5 9.2-4.5 18.2-14 18.2c-6.4 0-12-4.2-13.9-10.3L166.6 102.7c-5.1-16.9-23-26.4-39.9-21.3s-26.4 23-21.3 39.9l62.8 206.4c2.4 7.9-7.2 13.8-13.2 8.1L99.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L156.8 448c43.1 41.1 100.4 64 160 64h10.9 8.2c.1 0 .1-.1 .1-.1v0c0-.1 .1-.1 .1-.1c58.3-3.5 108.6-43.2 125.3-99.7l81.2-275c5-16.9-4.7-34.7-21.6-39.8s-34.7 4.7-39.8 21.6L443.5 247.1c-1.6 5.3-6.4 8.9-12 8.9c-7.9 0-13.8-7.3-12.2-15.1l36-170.3c3.7-17.3-7.4-34.3-24.7-37.9s-34.3 7.4-37.9 24.7L355.1 235.1c-2.6 12.2-13.3 20.9-25.8 20.9c-11.9 0-22.4-8-25.4-19.5l-57-212.8z" + }, + "regular": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M170.2 80.8C161 47 180.8 12 214.6 2.4c34-9.6 69.4 10.2 79 44.2l30.3 107.1L337.1 84c6.6-34.7 40.1-57.5 74.8-50.9c31.4 6 53 33.9 52 64.9c10-2.6 20.8-2.8 31.5-.1c34.3 8.6 55.1 43.3 46.6 77.6L486.7 397.2C469.8 464.7 409.2 512 339.6 512c-11.2 0-22.5 0-33.7 0c-56.9 0-112.2-19-157.2-53.9l-92-71.6c-27.9-21.7-32.9-61.9-11.2-89.8s61.9-32.9 89.8-11.2l17 13.2L100.5 167.5c-13-32.9 3.2-70.1 36-83c11.1-4.4 22.7-5.4 33.7-3.7zm77.1-21.2c-2.4-8.5-11.2-13.4-19.7-11s-13.4 11.2-11 19.7l54.8 182.4c3.5 12.3-3.3 25.2-15.4 29.3s-25.3-2-30-13.9L174.9 138.1c-3.2-8.2-12.5-12.3-20.8-9s-12.3 12.5-9 20.8l73.3 185.6c12 30.3-23.7 57-49.4 37l-63.1-49.1c-7-5.4-17-4.2-22.5 2.8s-4.2 17 2.8 22.5l92 71.6c36.5 28.4 81.4 43.8 127.7 43.8c11.2 0 22.5 0 33.7 0c47.5 0 89-32.4 100.5-78.5l55.4-221.6c2.1-8.6-3.1-17.3-11.6-19.4s-17.3 3.1-19.4 11.6l-26 104C435.6 271.8 425 280 413 280c-16.5 0-28.9-15-25.8-31.2L415.7 99c1.7-8.7-4-17.1-12.7-18.7s-17.1 4-18.7 12.7L352.5 260c-2.2 11.6-12.4 20-24.2 20c-11 0-20.7-7.3-23.7-17.9L247.4 59.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "handcuffs": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrest", + "criminal", + "handcuffs", + "jail", + "lock", + "police", + "wrist" + ] + }, + "unicode": "e4f8", + "label": "Handcuffs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M240 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM192 48a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm-32 80c17.7 0 32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C280.3 229.6 320 286.2 320 352c0 88.4-71.6 160-160 160S0 440.4 0 352c0-65.8 39.7-122.4 96.5-146.9c-.4-1.6-.5-3.3-.5-5.1V184c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32zm0 320a96 96 0 1 0 0-192 96 96 0 1 0 0 192zm192-96c0-25.9-5.1-50.5-14.4-73.1c16.9-32.9 44.8-59.1 78.9-73.9c-.4-1.6-.5-3.3-.5-5.1V184c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32s32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C600.3 229.6 640 286.2 640 352c0 88.4-71.6 160-160 160c-62 0-115.8-35.3-142.4-86.9c9.3-22.5 14.4-47.2 14.4-73.1zm224 0a96 96 0 1 0 -192 0 96 96 0 1 0 192 0zM368 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm80 48a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands": { + "aliases": { + "names": [ + "sign-language", + "signing" + ], + "unicodes": { + "secondary": [ + "10f2a7" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Translate", + "asl", + "deaf", + "hands" + ] + }, + "unicode": "f2a7", + "label": "Hands", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M544 160l-.1 72.6c-.1 52.2-24 101-64 133.1c.1-1.9 .1-3.8 .1-5.7v-8c0-71.8-37-138.6-97.9-176.7l-60.2-37.6c-8.6-5.4-17.9-8.4-27.3-9.4L248.7 48.8c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8l78 135.1c3.3 5.7 10.7 7.7 16.4 4.4s7.7-10.7 4.4-16.4l-62-107.4c-6.6-11.5-2.7-26.2 8.8-32.8S362 5 368.6 16.5l68 117.8 0 0 0 0 43.3 75L480 160c0-17.7 14.4-32 32-32s32 14.4 32 32zM243.9 88.5L268.5 131c-13.9 4.5-26.4 13.7-34.7 27c-.9 1.4-1.7 2.9-2.5 4.4l-28.9-50c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8zm-46.4 63.7l26.8 46.4c.6 6 2.1 11.8 4.3 17.4H224 210.7l0 0H179l-23-39.8c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8zM260.9 175c9.4-15 29.1-19.5 44.1-10.2l60.2 37.6C416.7 234.7 448 291.2 448 352v8c0 83.9-68.1 152-152 152H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h92c6.6 0 12-5.4 12-12s-5.4-12-12-12H88c-13.3 0-24-10.7-24-24s10.7-24 24-24H212c6.6 0 12-5.4 12-12s-5.4-12-12-12H56c-13.3 0-24-10.7-24-24s10.7-24 24-24H212c6.6 0 12-5.4 12-12s-5.4-12-12-12H88c-13.3 0-24-10.7-24-24s10.7-24 24-24H224l0 0 0 0h93.2L271 219.1c-15-9.4-19.5-29.1-10.2-44.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-asl-interpreting": { + "aliases": { + "names": [ + "american-sign-language-interpreting", + "asl-interpreting", + "hands-american-sign-language-interpreting" + ], + "unicodes": { + "secondary": [ + "10f2a3" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "asl", + "deaf", + "finger", + "hand", + "interpret", + "speak" + ] + }, + "unicode": "f2a3", + "label": "Hands Asl Interpreting", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M156.6 46.3c7.9-15.8 1.5-35-14.3-42.9s-35-1.5-42.9 14.3L13.5 189.4C4.6 207.2 0 226.8 0 246.7V256c0 70.7 57.3 128 128 128h72 8v-.3c35.2-2.7 65.4-22.8 82.1-51.7c8.8-15.3 3.6-34.9-11.7-43.7s-34.9-3.6-43.7 11.7c-7 12-19.9 20-34.7 20c-22.1 0-40-17.9-40-40s17.9-40 40-40c14.8 0 27.7 8 34.7 20c8.8 15.3 28.4 20.5 43.7 11.7s20.5-28.4 11.7-43.7c-12.8-22.1-33.6-39.1-58.4-47.1l80.8-22c17-4.6 27.1-22.2 22.5-39.3s-22.2-27.1-39.3-22.5L194.9 124.6l81.6-68c13.6-11.3 15.4-31.5 4.1-45.1S249.1-3.9 235.5 7.4L133.6 92.3l23-46zM483.4 465.7c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l85.9-171.7c8.9-17.8 13.5-37.4 13.5-57.2V256c0-70.7-57.3-128-128-128H440h-8v.3c-35.2 2.7-65.4 22.8-82.1 51.7c-8.9 15.3-3.6 34.9 11.7 43.7s34.9 3.6 43.7-11.7c7-12 19.9-20 34.7-20c22.1 0 40 17.9 40 40s-17.9 40-40 40c-14.8 0-27.7-8-34.7-20c-8.9-15.3-28.4-20.5-43.7-11.7s-20.5 28.4-11.7 43.7c12.8 22.1 33.6 39.1 58.4 47.1l-80.8 22c-17.1 4.7-27.1 22.2-22.5 39.3s22.2 27.1 39.3 22.5l100.7-27.5-81.6 68c-13.6 11.3-15.4 31.5-4.1 45.1s31.5 15.4 45.1 4.1l101.9-84.9-23 46z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-bound": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abduction", + "bound", + "handcuff", + "wrist" + ] + }, + "unicode": "e4f9", + "label": "Hands Bound", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 32C96 14.3 81.7 0 64 0S32 14.3 32 32V96v59.1 .7V192v21.9c0 14.2 5.1 27.9 14.3 38.7L131.6 352H128c-13.3 0-24 10.7-24 24s10.7 24 24 24h32H288h64H480h32c13.3 0 24-10.7 24-24s-10.7-24-24-24h-3.6l85.3-99.5c9.2-10.8 14.3-24.5 14.3-38.7V192 155.8v-.7V96 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V96v48.8l-69.3 92.4c-5.7 7.6-16.1 9.6-24.2 4.8c-9.7-5.7-12.1-18.7-5.1-27.5L473 180c10.8-13.5 8.9-33.3-4.4-44.5s-33-9.8-44.5 3.2l-46.7 52.5C361 209.7 352 233.4 352 258.1V320v32H288V320 258.1c0-24.6-9-48.4-25.4-66.8l-46.7-52.5c-11.5-13-31.3-14.4-44.5-3.2s-15.2 30.9-4.4 44.5l27.6 34.5c7 8.8 4.7 21.8-5.1 27.5c-8.1 4.8-18.6 2.7-24.2-4.8L96 144.8V96 32zm64 448v32H288V480h64v32H480V480h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H480 352 288 160 128c-13.3 0-24 10.7-24 24s10.7 24 24 24h32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-bubbles": { + "aliases": { + "names": [ + "hands-wash" + ], + "unicodes": { + "secondary": [ + "10e05e" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "hygiene", + "soap", + "wash" + ] + }, + "unicode": "e05e", + "label": "Hands Bubbles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M416 64a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm96 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM160 464a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM32 160l.1 72.6c.1 52.2 24 101 64 133.1c-.1-1.9-.1-3.8-.1-5.7v-8c0-71.8 37-138.6 97.9-176.7l60.2-37.6c8.6-5.4 17.9-8.4 27.3-9.4l45.9-79.5c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8l-78 135.1c-3.3 5.7-10.7 7.7-16.4 4.4s-7.7-10.7-4.4-16.4l62-107.4c6.6-11.5 2.7-26.2-8.8-32.8S214 5 207.4 16.5l-68 117.8 0 0 0 0-43.3 75L96 160c0-17.7-14.4-32-32-32s-32 14.4-32 32zM332.1 88.5L307.5 131c13.9 4.5 26.4 13.7 34.7 27c.9 1.5 1.7 2.9 2.5 4.4l28.9-50c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8zm46.4 63.7l-26.8 46.4c-.6 6-2.1 11.8-4.3 17.4H352h13.3l0 0H397l23-39.8c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8zM315.1 175c-9.4-15-29.1-19.5-44.1-10.2l-60.2 37.6C159.3 234.7 128 291.2 128 352v8c0 8.9 .8 17.6 2.2 26.1c35.4 8.2 61.8 40 61.8 77.9c0 6.3-.7 12.5-2.1 18.4C215.1 501 246.3 512 280 512H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H364c-6.6 0-12-5.4-12-12s5.4-12 12-12H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H364c-6.6 0-12-5.4-12-12s5.4-12 12-12H520c13.3 0 24-10.7 24-24s-10.7-24-24-24H364c-6.6 0-12-5.4-12-12s5.4-12 12-12H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H352l0 0 0 0H258.8L305 219.1c15-9.4 19.5-29.1 10.2-44.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-clapping": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "applause", + "clap", + "clapping hands", + "hand" + ] + }, + "unicode": "e1a8", + "label": "Hands Clapping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336 16V80c0 8.8-7.2 16-16 16s-16-7.2-16-16V16c0-8.8 7.2-16 16-16s16 7.2 16 16zm-98.7 7.1l32 48c4.9 7.4 2.9 17.3-4.4 22.2s-17.3 2.9-22.2-4.4l-32-48c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4zM135 119c9.4-9.4 24.6-9.4 33.9 0L292.7 242.7c10.1 10.1 27.3 2.9 27.3-11.3V192c0-17.7 14.3-32 32-32s32 14.3 32 32V345.6c0 57.1-30 110-78.9 139.4c-64 38.4-145.8 28.3-198.5-24.4L7 361c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l53 53c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L23 265c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l93 93c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L55 185c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l117 117c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1l-93-93c-9.4-9.4-9.4-24.6 0-33.9zM433.1 484.9c-24.2 14.5-50.9 22.1-77.7 23.1c48.1-39.6 76.6-99 76.6-162.4l0-98.1c8.2-.1 16-6.4 16-16V192c0-17.7 14.3-32 32-32s32 14.3 32 32V345.6c0 57.1-30 110-78.9 139.4zM424.9 18.7c7.4 4.9 9.3 14.8 4.4 22.2l-32 48c-4.9 7.4-14.8 9.3-22.2 4.4s-9.3-14.8-4.4-22.2l32-48c4.9-7.4 14.8-9.3 22.2-4.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-holding": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4c2" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "hold", + "lift" + ] + }, + "unicode": "f4c2", + "label": "Hands Holding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 104c0-22.1-17.9-40-40-40S0 81.9 0 104v56 64V325.5c0 25.5 10.1 49.9 28.1 67.9L128 493.3c12 12 28.3 18.7 45.3 18.7H240c26.5 0 48-21.5 48-48V385.1c0-29.7-11.8-58.2-32.8-79.2l-25.3-25.3 0 0-15.2-15.2-32-32c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l32 32 15.2 15.2c11 11 9.2 29.2-3.7 37.8c-9.7 6.5-22.7 5.2-31-3.1L98.7 309.5c-12-12-18.7-28.3-18.7-45.3V224 144 104zm480 0v40 80 40.2c0 17-6.7 33.3-18.7 45.3l-51.1 51.1c-8.3 8.3-21.3 9.6-31 3.1c-12.9-8.6-14.7-26.9-3.7-37.8l15.2-15.2 32-32c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-32 32-15.2 15.2 0 0-25.3 25.3c-21 21-32.8 49.5-32.8 79.2V464c0 26.5 21.5 48 48 48h66.7c17 0 33.3-6.7 45.3-18.7l99.9-99.9c18-18 28.1-42.4 28.1-67.9V224 160 104c0-22.1-17.9-40-40-40s-40 17.9-40 40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-holding-child": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "give", + "help", + "hold", + "protect" + ] + }, + "unicode": "e4fa", + "label": "Hands Holding Child", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0a40 40 0 1 1 0 80 40 40 0 1 1 0-80zm44.7 164.3L375.8 253c1.6 13.2-7.7 25.1-20.8 26.8s-25.1-7.7-26.8-20.8l-4.4-35h-7.6l-4.4 35c-1.6 13.2-13.6 22.5-26.8 20.8s-22.5-13.6-20.8-26.8l11.1-88.8L255.5 181c-10.1 8.6-25.3 7.3-33.8-2.8s-7.3-25.3 2.8-33.8l27.9-23.6C271.3 104.8 295.3 96 320 96s48.7 8.8 67.6 24.7l27.9 23.6c10.1 8.6 11.4 23.7 2.8 33.8s-23.7 11.4-33.8 2.8l-19.8-16.7zM40 64c22.1 0 40 17.9 40 40v40 80 40.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1c12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 0 0 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48H173.3c-17 0-33.3-6.7-45.3-18.7L28.1 393.4C10.1 375.4 0 351 0 325.5V224 160 104C0 81.9 17.9 64 40 64zm560 0c22.1 0 40 17.9 40 40v56 64V325.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48V385.1c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 0 0 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8c9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V224 144 104c0-22.1 17.9-40 40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-holding-circle": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "circle", + "gift", + "protection" + ] + }, + "unicode": "e4fb", + "label": "Hands Holding Circle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0a128 128 0 1 1 0 256A128 128 0 1 1 320 0zM40 64c22.1 0 40 17.9 40 40v40 80 40.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1c12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 0 0 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48H173.3c-17 0-33.3-6.7-45.3-18.7L28.1 393.4C10.1 375.4 0 351 0 325.5V224 160 104C0 81.9 17.9 64 40 64zm560 0c22.1 0 40 17.9 40 40v56 64V325.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48V385.1c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 0 0 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8c9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V224 144 104c0-22.1 17.9-40 40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-praying": { + "aliases": { + "names": [ + "praying-hands" + ], + "unicodes": { + "secondary": [ + "10f684" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "kneel", + "preach", + "religion", + "worship" + ] + }, + "unicode": "f684", + "label": "Hands Praying", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M351.2 4.8c3.2-2 6.6-3.3 10-4.1c4.7-1 9.6-.9 14.1 .1c7.7 1.8 14.8 6.5 19.4 13.6L514.6 194.2c8.8 13.1 13.4 28.6 13.4 44.4v73.5c0 6.9 4.4 13 10.9 15.2l79.2 26.4C631.2 358 640 370.2 640 384v96c0 9.9-4.6 19.3-12.5 25.4s-18.1 8.1-27.7 5.5L431 465.9c-56-14.9-95-65.7-95-123.7V224c0-17.7 14.3-32 32-32s32 14.3 32 32v80c0 8.8 7.2 16 16 16s16-7.2 16-16V219.1c0-7-1.8-13.8-5.3-19.8L340.3 48.1c-1.7-3-2.9-6.1-3.6-9.3c-1-4.7-1-9.6 .1-14.1c1.9-8 6.8-15.2 14.3-19.9zm-62.4 0c7.5 4.6 12.4 11.9 14.3 19.9c1.1 4.6 1.2 9.4 .1 14.1c-.7 3.2-1.9 6.3-3.6 9.3L213.3 199.3c-3.5 6-5.3 12.9-5.3 19.8V304c0 8.8 7.2 16 16 16s16-7.2 16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32V342.3c0 58-39 108.7-95 123.7l-168.7 45c-9.6 2.6-19.9 .5-27.7-5.5S0 490 0 480V384c0-13.8 8.8-26 21.9-30.4l79.2-26.4c6.5-2.2 10.9-8.3 10.9-15.2V238.5c0-15.8 4.7-31.2 13.4-44.4L245.2 14.5c4.6-7.1 11.7-11.8 19.4-13.6c4.6-1.1 9.4-1.2 14.1-.1c3.5 .8 6.9 2.1 10 4.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2b5" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "greeting", + "meeting", + "partnership" + ] + }, + "unicode": "f2b5", + "label": "Handshake", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2zm22.8 124.4l-51.7 40.2C263 274.4 217.3 268 193.7 235.6c-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c4.5-4.9 7.8-10.6 9.9-16.5c19.4 13 45.8 10.3 62.1-7.5c17.9-19.5 16.6-49.9-2.9-67.8l-134.2-123zM16 128c-8.8 0-16 7.2-16 16V352c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V128H16zM48 320a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM544 128V352c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V144c0-8.8-7.2-16-16-16H544zm32 208a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + }, + "regular": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M272.2 64.6l-51.1 51.1c-15.3 4.2-29.5 11.9-41.5 22.5L153 161.9C142.8 171 129.5 176 115.8 176H96V304c20.4 .6 39.8 8.9 54.3 23.4l35.6 35.6 7 7 0 0L219.9 397c6.2 6.2 16.4 6.2 22.6 0c1.7-1.7 3-3.7 3.7-5.8c2.8-7.7 9.3-13.5 17.3-15.3s16.4 .6 22.2 6.5L296.5 393c11.6 11.6 30.4 11.6 41.9 0c5.4-5.4 8.3-12.3 8.6-19.4c.4-8.8 5.6-16.6 13.6-20.4s17.3-3 24.4 2.1c9.4 6.7 22.5 5.8 30.9-2.6c9.4-9.4 9.4-24.6 0-33.9L340.1 243l-35.8 33c-27.3 25.2-69.2 25.6-97 .9c-31.7-28.2-32.4-77.4-1.6-106.5l70.1-66.2C303.2 78.4 339.4 64 377.1 64c36.1 0 71 13.3 97.9 37.2L505.1 128H544h40 40c8.8 0 16 7.2 16 16V352c0 17.7-14.3 32-32 32H576c-11.8 0-22.2-6.4-27.7-16H463.4c-3.4 6.7-7.9 13.1-13.5 18.7c-17.1 17.1-40.8 23.8-63 20.1c-3.6 7.3-8.5 14.1-14.6 20.2c-27.3 27.3-70 30-100.4 8.1c-25.1 20.8-62.5 19.5-86-4.1L159 404l-7-7-35.6-35.6c-5.5-5.5-12.7-8.7-20.4-9.3C96 369.7 81.6 384 64 384H32c-17.7 0-32-14.3-32-32V144c0-8.8 7.2-16 16-16H56 96h19.8c2 0 3.9-.7 5.3-2l26.5-23.6C175.5 77.7 211.4 64 248.7 64H259c4.4 0 8.9 .2 13.2 .6zM544 320V176H496c-5.9 0-11.6-2.2-15.9-6.1l-36.9-32.8c-18.2-16.2-41.7-25.1-66.1-25.1c-25.4 0-49.8 9.7-68.3 27.1l-70.1 66.2c-10.3 9.8-10.1 26.3 .5 35.7c9.3 8.3 23.4 8.1 32.5-.3l71.9-66.4c9.7-9 24.9-8.4 33.9 1.4s8.4 24.9-1.4 33.9l-.8 .8 74.4 74.4c10 10 16.5 22.3 19.4 35.1H544zM64 336a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm528 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "handshake-angle": { + "aliases": { + "names": [ + "hands-helping" + ], + "unicodes": { + "secondary": [ + "10f4c4" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "handshake", + "partnership", + "volunteering" + ] + }, + "unicode": "f4c4", + "label": "Handshake Angle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M544 248v3.3l69.7-69.7c21.9-21.9 21.9-57.3 0-79.2L535.6 24.4c-21.9-21.9-57.3-21.9-79.2 0L416.3 64.5c-2.7-.3-5.5-.5-8.3-.5H296c-37.1 0-67.6 28-71.6 64H224V248c0 22.1 17.9 40 40 40s40-17.9 40-40V176c0 0 0-.1 0-.1V160l16 0 136 0c0 0 0 0 .1 0H464c44.2 0 80 35.8 80 80v8zM336 192v56c0 39.8-32.2 72-72 72s-72-32.2-72-72V129.4c-35.9 6.2-65.8 32.3-76 68.2L99.5 255.2 26.3 328.4c-21.9 21.9-21.9 57.3 0 79.2l78.1 78.1c21.9 21.9 57.3 21.9 79.2 0l37.7-37.7c.9 0 1.8 .1 2.7 .1H384c26.5 0 48-21.5 48-48c0-5.6-1-11-2.7-16H432c26.5 0 48-21.5 48-48c0-12.8-5-24.4-13.2-33c25.7-5 45.1-27.6 45.2-54.8v-.4c-.1-30.8-25.1-55.8-56-55.8c0 0 0 0 0 0l-120 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake-simple": { + "aliases": { + "names": [ + "handshake-alt" + ], + "unicodes": { + "composite": [ + "1f91d" + ], + "secondary": [ + "10f4c6" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "greeting", + "hand", + "handshake", + "meeting", + "partnership", + "shake" + ] + }, + "unicode": "f4c6", + "label": "Handshake Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H516h-4-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2zm22.8 124.4l-51.7 40.2C263 274.4 217.3 268 193.7 235.6c-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48H48c-26.5 0-48 21.5-48 48V304c0 26.5 21.5 48 48 48H156.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c4.5-4.9 7.8-10.6 9.9-16.5c19.4 13 45.8 10.3 62.1-7.5c17.9-19.5 16.6-49.9-2.9-67.8l-134.2-123z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake-simple-slash": { + "aliases": { + "names": [ + "handshake-alt-slash" + ], + "unicodes": { + "secondary": [ + "10e05f" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "broken", + "covid-19", + "social distance" + ] + }, + "unicode": "e05f", + "label": "Handshake Simple Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.3-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H516h-4-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7L38.8 5.1zM413.6 421.9L41.2 128.5C17.9 131.8 0 151.8 0 176V304c0 26.5 21.5 48 48 48H156.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c.8-.8 1.5-1.7 2.2-2.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e060" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "broken", + "covid-19", + "social distance" + ] + }, + "unicode": "e060", + "label": "Handshake Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766194, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.3-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7L38.8 5.1zM413.6 421.9L128 196.8V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c.8-.8 1.5-1.7 2.2-2.6zM96 171.6L40.6 128H16c-8.8 0-16 7.2-16 16V352c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V171.6zM48 320a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM544 128V352c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V144c0-8.8-7.2-16-16-16H544zm32 208a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hanukiah": { + "aliases": { + "unicodes": { + "composite": [ + "1f54e" + ], + "secondary": [ + "10f6e6" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candelabrum", + "candle", + "candlestick", + "hanukkah", + "jewish", + "judaism", + "light", + "menorah", + "religion" + ] + }, + "unicode": "f6e6", + "label": "Hanukiah", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M314.2 3.3C309.1 12.1 296 36.6 296 56c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7C324.6 1.2 322.4 0 320 0s-4.6 1.2-5.8 3.3zm-288 48C21.1 60.1 8 84.6 8 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7C36.6 49.2 34.4 48 32 48s-4.6 1.2-5.8 3.3zM88 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C101.1 60.1 88 84.6 88 104zm82.2-52.7C165.1 60.1 152 84.6 152 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM216 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C229.1 60.1 216 84.6 216 104zM394.2 51.3C389.1 60.1 376 84.6 376 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM440 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C453.1 60.1 440 84.6 440 104zm82.2-52.7C517.1 60.1 504 84.6 504 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM584 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C597.1 60.1 584 84.6 584 104zM112 160c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm160 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zM352 144c0-17.7-14.3-32-32-32s-32 14.3-32 32V320H96c-17.7 0-32-14.3-32-32V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 53 43 96 96 96H288v64H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H320 480c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V384H544c53 0 96-43 96-96V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H352V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hard-drive": { + "aliases": { + "names": [ + "hdd" + ], + "unicodes": { + "composite": [ + "1f5b4" + ], + "secondary": [ + "10f0a0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hard Disk", + "cpu", + "hard drive", + "harddrive", + "machine", + "save", + "storage" + ] + }, + "unicode": "f0a0", + "label": "Hard Drive", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V280.4c-17-15.2-39.4-24.4-64-24.4H64c-24.6 0-47 9.2-64 24.4V96zM64 288H448c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V352c0-35.3 28.7-64 64-64zM320 416a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm128-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + }, + "regular": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V258c5.1-1.3 10.5-2 16-2H448c5.5 0 10.9 .7 16 2V96c0-8.8-7.2-16-16-16H64zM48 320v96c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V320c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zM0 320V96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V320v96c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320zm280 48a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hashnode": { + "changes": [ + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e499", + "label": "Hashnode", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M35.19 171.1C-11.72 217.1-11.72 294 35.19 340.9L171.1 476.8C217.1 523.7 294 523.7 340.9 476.8L476.8 340.9C523.7 294 523.7 217.1 476.8 171.1L340.9 35.19C294-11.72 217.1-11.72 171.1 35.19L35.19 171.1zM315.5 315.5C282.6 348.3 229.4 348.3 196.6 315.5C163.7 282.6 163.7 229.4 196.6 196.6C229.4 163.7 282.6 163.7 315.5 196.6C348.3 229.4 348.3 282.6 315.5 315.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hashtag": { + "aliases": { + "unicodes": { + "composite": [ + "f292" + ], + "primary": [ + "f292" + ], + "secondary": [ + "1023", + "10f292" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Number Sign", + "Twitter", + "instagram", + "pound", + "social media", + "tag" + ] + }, + "unicode": "23", + "label": "Hashtag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128h95.1l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H347.1L325.8 320H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H315.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7H155.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l21.3-128H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320h95.1l21.3-128H187.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hat-cowboy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8c0" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buckaroo", + "horse", + "jackeroo", + "john b.", + "old west", + "pardner", + "ranch", + "rancher", + "rodeo", + "western", + "wrangler" + ] + }, + "unicode": "f8c0", + "label": "Hat Cowboy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 64c14.4 0 22.3-7 30.8-14.4C360.4 41.1 370.7 32 392 32c49.3 0 84.4 152.2 97.9 221.9C447.8 272.1 390.9 288 320 288s-127.8-15.9-169.9-34.1C163.6 184.2 198.7 32 248 32c21.3 0 31.6 9.1 41.2 17.6C297.7 57 305.6 64 320 64zM111.1 270.7c47.2 24.5 117.5 49.3 209 49.3s161.8-24.8 208.9-49.3c24.8-12.9 49.8-28.3 70.1-47.7c7.9-7.9 20.2-9.2 29.6-3.3c9.5 5.9 13.5 17.9 9.9 28.5c-13.5 37.7-38.4 72.3-66.1 100.6C523.7 398.9 443.6 448 320 448s-203.6-49.1-252.5-99.2C39.8 320.4 14.9 285.8 1.4 248.1c-3.6-10.6 .4-22.6 9.9-28.5c9.5-5.9 21.7-4.5 29.6 3.3c20.4 19.4 45.3 34.8 70.1 47.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hat-cowboy-side": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8c1" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buckaroo", + "horse", + "jackeroo", + "john b.", + "old west", + "pardner", + "ranch", + "rancher", + "rodeo", + "western", + "wrangler" + ] + }, + "unicode": "f8c1", + "label": "Hat Cowboy Side", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M152.7 135.9l-10.4 57.2c6.8-.7 13.6-1.1 20.5-1.1h10.7c39.4 0 77.8 12.1 110.1 34.7L562.4 421.8l35.1 24.6c24.4-6 42.5-28.1 42.5-54.4c0-75.8-94.7-126.6-134.6-144.7L474 83.9C468.2 53.8 441.8 32 411.1 32h-2.7c-5.6 0-11.1 .7-16.5 2.2L199.2 85.5c-23.9 6.4-42 26-46.5 50.4zM0 384c0 35.3 28.7 64 64 64H544L265.3 252.9c-26.9-18.8-58.9-28.9-91.8-28.9H162.9c-60.6 0-116 34.2-143.1 88.4L13.5 325C4.6 342.7 0 362.3 0 382.2V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hat-wizard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6e8" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "accessory", + "buckle", + "clothing", + "d&d", + "dnd", + "fantasy", + "halloween", + "head", + "holiday", + "mage", + "magic", + "pointy", + "witch" + ] + }, + "unicode": "f6e8", + "label": "Hat Wizard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 416L168.6 180.7c15.3-34.4 40.3-63.5 72-83.7l146.9-94c3-1.9 6.5-2.9 10-2.9C407.7 0 416 8.3 416 18.6v1.6c0 2.6-.5 5.1-1.4 7.5L354.8 176.9c-1.9 4.7-2.8 9.7-2.8 14.7c0 5.5 1.2 11 3.4 16.1L448 416H240.9l11.8-35.4 40.4-13.5c6.5-2.2 10.9-8.3 10.9-15.2s-4.4-13-10.9-15.2l-40.4-13.5-13.5-40.4C237 276.4 230.9 272 224 272s-13 4.4-15.2 10.9l-13.5 40.4-40.4 13.5C148.4 339 144 345.1 144 352s4.4 13 10.9 15.2l40.4 13.5L207.1 416H64zM279.6 141.5c-1.1-3.3-4.1-5.5-7.6-5.5s-6.5 2.2-7.6 5.5l-6.7 20.2-20.2 6.7c-3.3 1.1-5.5 4.1-5.5 7.6s2.2 6.5 5.5 7.6l20.2 6.7 6.7 20.2c1.1 3.3 4.1 5.5 7.6 5.5s6.5-2.2 7.6-5.5l6.7-20.2 20.2-6.7c3.3-1.1 5.5-4.1 5.5-7.6s-2.2-6.5-5.5-7.6l-20.2-6.7-6.7-20.2zM32 448H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-cough": { + "aliases": { + "unicodes": { + "secondary": [ + "10e061" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "germs", + "lungs", + "respiratory", + "sick" + ] + }, + "unicode": "e061", + "label": "Head Side Cough", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 224.2C0 100.6 100.2 0 224 0h24c95.2 0 181.2 69.3 197.3 160.2c2.3 13 6.8 25.7 15.1 36l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H448v0 32L339.2 365.6c-11 1.4-19.2 10.7-19.2 21.8c0 11.6 9 21.2 20.6 21.9L448 416v16c0 26.5-21.5 48-48 48H320v8c0 13.3-10.7 24-24 24H256v0H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zm352-.2a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM464 384a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm152-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM592 480a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM552 312a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm40-24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM552 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-cough-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e062" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "germs", + "lungs", + "respiratory", + "sick" + ] + }, + "unicode": "e062", + "label": "Head Side Cough Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M448 325.8l44 34.5c8.1 1.4 14.8 6.8 18 14.1L552.9 408c10.6 .4 19.5 7.6 22.2 17.4l39.1 30.6c.6 0 1.2-.1 1.8-.1c11.1 0 20.4 7.5 23.2 17.8h-3.9c6.2 8.5 6.4 20.4-.4 29c-8.2 10.4-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2S28.4-3.1 38.8 5.1L89.6 44.9C127 16.7 173.5 0 224 0h24c95.2 0 181.2 69.3 197.3 160.2c2.3 13 6.8 25.7 15.1 36l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H448v0 5.8zM0 224.2c0-38.7 9.8-75.1 27.1-106.9L341.8 365.3l-2.5 .3c-11 1.4-19.2 10.7-19.2 21.8c0 11.6 9 21.2 20.6 21.9l62 3.9 43 33.9C439.3 466.2 421.2 480 400 480H320v8c0 13.3-10.7 24-24 24H256v0H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zM616 360a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm-64-48a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm40-24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-mask": { + "aliases": { + "unicodes": { + "secondary": [ + "10e063" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "filter", + "flu", + "infection", + "pandemic", + "respirator", + "virus" + ] + }, + "unicode": "e063", + "label": "Head Side Mask", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 224.2c0-22.2 3.2-43.6 9.2-63.9L262.2 321c-4 9.5-6.2 20-6.2 31V512H128c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C48.6 322.4 32 274.1 32 224.2zm248.3 70.4L53 129.3C88.7 53 166.2 0 256 0h24c95.2 0 181.2 69.3 197.3 160.2c2.3 13 6.8 25.7 15.1 36l42 52.6c5.4 6.7 8.6 14.8 9.4 23.2H336c-21.7 0-41.3 8.6-55.7 22.6zM336 304H534l0 0h10l-19.7 64H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H514.5l-9.8 32H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H494.8l-.9 2.8c-8.3 26.9-33.1 45.2-61.2 45.2H288V352c0-14 6-26.7 15.6-35.4c0 0 0 0 0 0c8.5-7.8 19.9-12.6 32.4-12.6zm48-80a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e064" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "coronavirus", + "covid-19", + "flu", + "infection", + "pandemic", + "sick" + ] + }, + "unicode": "e064", + "label": "Head Side Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224.2C0 100.6 100.2 0 224 0h24c95.2 0 181.2 69.3 197.3 160.2c2.3 13 6.8 25.7 15.1 36l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H448v64c0 35.3-28.7 64-64 64H320v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zM224 64c-8.8 0-16 7.2-16 16c0 33-39.9 49.5-63.2 26.2c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6C145.5 152.1 129 192 96 192c-8.8 0-16 7.2-16 16s7.2 16 16 16c33 0 49.5 39.9 26.2 63.2c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0C168.1 286.5 208 303 208 336c0 8.8 7.2 16 16 16s16-7.2 16-16c0-33 39.9-49.5 63.2-26.2c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6C302.5 263.9 319 224 352 224c8.8 0 16-7.2 16-16s-7.2-16-16-16c-33 0-49.5-39.9-26.2-63.2c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0C279.9 129.5 240 113 240 80c0-8.8-7.2-16-16-16zm-24 96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm40 80a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heading": { + "aliases": { + "names": [ + "header" + ], + "unicodes": { + "secondary": [ + "10f1dc" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "header", + "text", + "title" + ] + }, + "unicode": "f1dc", + "label": "Heading", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H80h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H112V208H336V96H320c-17.7 0-32-14.3-32-32s14.3-32 32-32h48 48c17.7 0 32 14.3 32 32s-14.3 32-32 32H400V240 416h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H368 320c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V272H112V416h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V240 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "headphones": { + "aliases": { + "unicodes": { + "composite": [ + "1f3a7" + ], + "secondary": [ + "10f025" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "earbud", + "headphone", + "listen", + "music", + "sound", + "speaker" + ] + }, + "unicode": "f025", + "label": "Headphones", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 80C149.9 80 62.4 159.4 49.6 262c9.4-3.8 19.6-6 30.4-6c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48c-44.2 0-80-35.8-80-80V384 336 288C0 146.6 114.6 32 256 32s256 114.6 256 256v48 48 16c0 44.2-35.8 80-80 80c-26.5 0-48-21.5-48-48V304c0-26.5 21.5-48 48-48c10.8 0 21 2.1 30.4 6C449.6 159.4 362.1 80 256 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "headphones-simple": { + "aliases": { + "names": [ + "headphones-alt" + ], + "unicodes": { + "secondary": [ + "10f58f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "listen", + "music", + "sound", + "speaker" + ] + }, + "unicode": "f58f", + "label": "Headphones Simple", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766677, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 80C141.1 80 48 173.1 48 288V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V288C0 146.6 114.6 32 256 32s256 114.6 256 256V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V288c0-114.9-93.1-208-208-208zM80 352c0-35.3 28.7-64 64-64h16c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V352zm288-64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32h16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "headset": { + "aliases": { + "unicodes": { + "secondary": [ + "10f590" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "gamer", + "gaming", + "listen", + "live chat", + "microphone", + "shot caller", + "sound", + "support", + "telemarketer" + ] + }, + "unicode": "f590", + "label": "Headset", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48C141.1 48 48 141.1 48 256v40c0 13.3-10.7 24-24 24s-24-10.7-24-24V256C0 114.6 114.6 0 256 0S512 114.6 512 256V400.1c0 48.6-39.4 88-88.1 88L313.6 488c-8.3 14.3-23.8 24-41.6 24H240c-26.5 0-48-21.5-48-48s21.5-48 48-48h32c17.8 0 33.3 9.7 41.6 24l110.4 .1c22.1 0 40-17.9 40-40V256c0-114.9-93.1-208-208-208zM144 208h16c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V272c0-35.3 28.7-64 64-64zm224 0c35.3 0 64 28.7 64 64v48c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V240c0-17.7 14.3-32 32-32h16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart": { + "aliases": { + "unicodes": { + "composite": [ + "1f499", + "1f49a", + "1f49b", + "1f49c", + "1f5a4", + "1f90d", + "1f90e", + "1f9e1", + "2665", + "2764", + "f08a" + ], + "secondary": [ + "10f004" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black", + "black heart", + "blue", + "blue heart", + "brown", + "brown heart", + "card", + "evil", + "favorite", + "game", + "green", + "green heart", + "heart", + "heart suit", + "like", + "love", + "orange", + "orange heart", + "purple", + "purple heart", + "red heart", + "relationship", + "valentine", + "white", + "white heart", + "wicked", + "yellow", + "yellow heart" + ] + }, + "unicode": "f004", + "label": "Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z" + }, + "regular": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M225.8 468.2l-2.5-2.3L48.1 303.2C17.4 274.7 0 234.7 0 192.8v-3.3c0-70.4 50-130.8 119.2-144C158.6 37.9 198.9 47 231 69.6c9 6.4 17.4 13.8 25 22.3c4.2-4.8 8.7-9.2 13.5-13.3c3.7-3.2 7.5-6.2 11.5-9c0 0 0 0 0 0C313.1 47 353.4 37.9 392.8 45.4C462 58.6 512 119.1 512 189.5v3.3c0 41.9-17.4 81.9-48.1 110.4L288.7 465.9l-2.5 2.3c-8.2 7.6-19 11.9-30.2 11.9s-22-4.2-30.2-11.9zM239.1 145c-.4-.3-.7-.7-1-1.1l-17.8-20c0 0-.1-.1-.1-.1c0 0 0 0 0 0c-23.1-25.9-58-37.7-92-31.2C81.6 101.5 48 142.1 48 189.5v3.3c0 28.5 11.9 55.8 32.8 75.2L256 430.7 431.2 268c20.9-19.4 32.8-46.7 32.8-75.2v-3.3c0-47.3-33.6-88-80.1-96.9c-34-6.5-69 5.4-92 31.2c0 0 0 0-.1 .1s0 0-.1 .1l-17.8 20c-.3 .4-.7 .7-1 1.1c-4.5 4.5-10.6 7-16.9 7s-12.4-2.5-16.9-7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "heart-circle-bolt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cardiogram", + "ekg", + "electric", + "heart", + "love", + "pacemaker" + ] + }, + "unicode": "e4fc", + "label": "Heart Circle Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9L411.6 380H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1 .6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e4fd", + "label": "Heart Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM576 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L416 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e4fe", + "label": "Heart Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e4ff", + "label": "Heart Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM576 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-64 0c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16H496c8.8 0 16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e500", + "label": "Heart Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V384H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h48V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e501", + "label": "Heart Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L409.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L432 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-crack": { + "aliases": { + "names": [ + "heart-broken" + ], + "unicodes": { + "composite": [ + "1f494" + ], + "secondary": [ + "10f7a9" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "break", + "breakup", + "broken", + "broken heart", + "crushed", + "dislike", + "dumped", + "grief", + "love", + "lovesick", + "relationship", + "sad" + ] + }, + "unicode": "f7a9", + "label": "Heart Crack", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M119.4 44.1c23.3-3.9 46.8-1.9 68.6 5.3l49.8 77.5-75.4 75.4c-1.5 1.5-2.4 3.6-2.3 5.8s1 4.2 2.6 5.7l112 104c2.9 2.7 7.4 2.9 10.5 .3s3.8-7 1.7-10.4l-60.4-98.1 90.7-75.6c2.6-2.1 3.5-5.7 2.4-8.8L296.8 61.8c28.5-16.7 62.4-23.2 95.7-17.6C461.5 55.6 512 115.2 512 185.1v5.8c0 41.5-17.2 81.2-47.6 109.5L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9L47.6 300.4C17.2 272.1 0 232.4 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-pulse": { + "aliases": { + "names": [ + "heartbeat" + ], + "unicodes": { + "secondary": [ + "10f21e" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ekg", + "electrocardiogram", + "health", + "lifeline", + "vital signs" + ] + }, + "unicode": "f21e", + "label": "Heart Pulse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M228.3 469.1L47.6 300.4c-4.2-3.9-8.2-8.1-11.9-12.4h87c22.6 0 43-13.6 51.7-34.5l10.5-25.2 49.3 109.5c3.8 8.5 12.1 14 21.4 14.1s17.8-5 22-13.3L320 253.7l1.7 3.4c9.5 19 28.9 31 50.1 31H476.3c-3.7 4.3-7.7 8.5-11.9 12.4L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9zM503.7 240h-132c-3 0-5.8-1.7-7.2-4.4l-23.2-46.3c-4.1-8.1-12.4-13.3-21.5-13.3s-17.4 5.1-21.5 13.3l-41.4 82.8L205.9 158.2c-3.9-8.7-12.7-14.3-22.2-14.1s-18.1 5.9-21.8 14.8l-31.8 76.3c-1.2 3-4.2 4.9-7.4 4.9H16c-2.6 0-5 .4-7.3 1.1C3 225.2 0 208.2 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141C165 36.5 211.4 51.4 244 84l12 12 12-12c32.6-32.6 79-47.5 124.6-39.9C461.5 55.6 512 115.2 512 185.1v5.8c0 16.9-2.8 33.5-8.3 49.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helicopter": { + "aliases": { + "unicodes": { + "composite": [ + "1f681" + ], + "secondary": [ + "10f533" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwolf", + "apache", + "chopper", + "flight", + "fly", + "helicopter", + "travel", + "vehicle" + ] + }, + "unicode": "f533", + "label": "Helicopter", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 32c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H384v64h32c88.4 0 160 71.6 160 160v64c0 17.7-14.3 32-32 32H384 320c-20.1 0-39.1-9.5-51.2-25.6l-71.4-95.2c-3.5-4.7-8.3-8.3-13.7-10.5L47.2 198.1c-9.5-3.8-16.7-12-19.2-22L5 83.9C2.4 73.8 10.1 64 20.5 64H48c10.1 0 19.6 4.7 25.6 12.8L112 128H320V64H160c-17.7 0-32-14.3-32-32zM384 320H512V288c0-53-43-96-96-96H384V320zM630.6 425.4c12.5 12.5 12.5 32.8 0 45.3l-3.9 3.9c-24 24-56.6 37.5-90.5 37.5H256c-17.7 0-32-14.3-32-32s14.3-32 32-32H536.2c17 0 33.3-6.7 45.3-18.7l3.9-3.9c12.5-12.5 32.8-12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helicopter-symbol": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chopper", + "helicopter", + "landing pad", + "whirlybird" + ] + }, + "unicode": "e502", + "label": "Helicopter Symbol", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M445.3 224H510C495.6 108.2 403.8 16.4 288 2V66.7C368.4 80.1 431.9 143.6 445.3 224zM510 288H445.3C431.9 368.4 368.4 431.9 288 445.4V510c115.8-14.4 207.6-106.2 222-222zM2 288C16.4 403.8 108.2 495.6 224 510V445.4C143.6 431.9 80.1 368.4 66.7 288H2zm0-64H66.7C80.1 143.6 143.6 80.1 224 66.7V2C108.2 16.4 16.4 108.2 2 224zm206-64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352c0 17.7 14.3 32 32 32s32-14.3 32-32V288h96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H208V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helmet-safety": { + "aliases": { + "names": [ + "hard-hat", + "hat-hard" + ], + "unicodes": { + "secondary": [ + "10f807" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "construction", + "hardhat", + "helmet", + "safety" + ] + }, + "unicode": "f807", + "label": "Helmet Safety", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32c-17.7 0-32 14.3-32 32v2.3 99.6c0 5.6-4.5 10.1-10.1 10.1c-3.6 0-7-1.9-8.8-5.1L157.1 87C83 123.5 32 199.8 32 288v64H544l0-66.4c-.9-87.2-51.7-162.4-125.1-198.6l-48 83.9c-1.8 3.2-5.2 5.1-8.8 5.1c-5.6 0-10.1-4.5-10.1-10.1V66.3 64c0-17.7-14.3-32-32-32H256zM16.6 384C7.4 384 0 391.4 0 400.6c0 4.7 2 9.2 5.8 11.9C27.5 428.4 111.8 480 288 480s260.5-51.6 282.2-67.5c3.8-2.8 5.8-7.2 5.8-11.9c0-9.2-7.4-16.6-16.6-16.6H16.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helmet-un": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "helmet", + "united nations" + ] + }, + "unicode": "e503", + "label": "Helmet Un", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M479.5 224C471.2 98.9 367.2 0 240 0C107.5 0 0 107.5 0 240v56.3C0 344.8 39.2 384 87.7 384H200h14.9L343.5 505.4c4.5 4.2 10.4 6.6 16.5 6.6h96c13.3 0 24-10.7 24-24s-10.7-24-24-24H369.5l-1.5-1.5V288h80 32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.5zM320 417.2l-78-73.7L274.4 288H320V417.2zM285.3 103.1l34.7 52V112c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V208c0 8.8-7.2 16-16 16s-16-7.2-16-16V112c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM160 112v64c0 8.8 7.2 16 16 16s16-7.2 16-16V112c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V112c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "highlighter": { + "aliases": { + "unicodes": { + "secondary": [ + "10f591" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "marker", + "sharpie", + "update", + "write" + ] + }, + "unicode": "f591", + "label": "Highlighter", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M315 315l158.4-215L444.1 70.6 229 229 315 315zm-187 5l0 0V248.3c0-15.3 7.2-29.6 19.5-38.6L420.6 8.4C428 2.9 437 0 446.2 0c11.4 0 22.4 4.5 30.5 12.6l54.8 54.8c8.1 8.1 12.6 19 12.6 30.5c0 9.2-2.9 18.2-8.4 25.6L334.4 396.5c-9 12.3-23.4 19.5-38.6 19.5H224l-25.4 25.4c-12.5 12.5-32.8 12.5-45.3 0l-50.7-50.7c-12.5-12.5-12.5-32.8 0-45.3L128 320zM7 466.3l63-63 70.6 70.6-31 31c-4.5 4.5-10.6 7-17 7H24c-13.3 0-24-10.7-24-24v-4.7c0-6.4 2.5-12.5 7-17z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hill-avalanche": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mudslide", + "snow", + "winter" + ] + }, + "unicode": "e507", + "label": "Hill Avalanche", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M439.7 401.9c34.2 23.1 81.1 19.5 111.4-10.8c34.4-34.4 34.4-90.1 0-124.4c-27.8-27.8-69.5-33.1-102.6-16c-11.8 6.1-16.4 20.6-10.3 32.3s20.6 16.4 32.3 10.3c15.1-7.8 34-5.3 46.6 7.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-81.7-81.7C401.2 261.3 416 236.4 416 208c0-33.9-21.1-62.9-50.9-74.5c1.9-6.8 2.9-14 2.9-21.5c0-44.2-35.8-80-80-80c-27.3 0-51.5 13.7-65.9 34.6C216.3 46.6 197.9 32 176 32c-26.5 0-48 21.5-48 48c0 4 .5 7.9 1.4 11.6L439.7 401.9zM480 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM68.3 87C43.1 61.8 0 79.7 0 115.3V432c0 44.2 35.8 80 80 80H396.7c35.6 0 53.5-43.1 28.3-68.3L68.3 87z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hill-rockslide": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mudslide" + ] + }, + "unicode": "e508", + "label": "Hill Rockslide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M252.4 103.8l27 48c2.8 5 8.2 8.2 13.9 8.2l53.3 0c5.8 0 11.1-3.1 13.9-8.2l27-48c2.7-4.9 2.7-10.8 0-15.7l-27-48c-2.8-5-8.2-8.2-13.9-8.2H293.4c-5.8 0-11.1 3.1-13.9 8.2l-27 48c-2.7 4.9-2.7 10.8 0 15.7zM68.3 87C43.1 61.8 0 79.7 0 115.3V432c0 44.2 35.8 80 80 80H396.7c35.6 0 53.5-43.1 28.3-68.3L68.3 87zM504.2 403.6c4.9 2.7 10.8 2.7 15.7 0l48-27c5-2.8 8.2-8.2 8.2-13.9V309.4c0-5.8-3.1-11.1-8.2-13.9l-48-27c-4.9-2.7-10.8-2.7-15.7 0l-48 27c-5 2.8-8.2 8.2-8.2 13.9v53.3c0 5.8 3.1 11.1 8.2 13.9l48 27zM192 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hippo": { + "aliases": { + "unicodes": { + "composite": [ + "1f99b" + ], + "secondary": [ + "10f6ed" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "fauna", + "hippo", + "hippopotamus", + "hungry", + "mammal" + ] + }, + "unicode": "f6ed", + "label": "Hippo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M407 47c9.4-9.4 24.6-9.4 33.9 0l17.2 17.2c1.9-.1 3.9-.2 5.8-.2h32c11.2 0 21.9 2.3 31.6 6.5L543 55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L564 101.9c7.6 12.2 12 26.7 12 42.1c0 10.2 7.4 18.8 16.7 23c27.9 12.5 47.3 40.5 47.3 73c0 26.2-12.6 49.4-32 64v32c0 8.8-7.2 16-16 16H560c-8.8 0-16-7.2-16-16V320H480v16c0 8.8-7.2 16-16 16H432c-8.8 0-16-7.2-16-16V318.4c-11.8-2.4-22.7-7.4-32-14.4c-1.5-1.1-2.9-2.3-4.3-3.5c-17-14.7-27.7-36.4-27.7-60.5c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 44.7 26.2 83.2 64 101.2V352c0 17.7 14.3 32 32 32h32v64c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V372c-19.8 7.7-41.4 12-64 12s-44.2-4.3-64-12v76c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V329.1L45.9 369.7c-5.4 12.1-19.6 17.6-31.7 12.2S-3.3 362.4 2.1 350.3L24 300.9c5.3-11.9 8-24.7 8-37.7C32 155.7 117.2 68 223.8 64.1l.2-.1h7.2H256h32c41.7 0 83.4 12.1 117.2 25.7c1.7-1.8 3.5-3.6 5.3-5.2L407 81c-9.4-9.4-9.4-24.6 0-33.9zm73 185a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm88 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM480 144a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hips": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f452", + "label": "Hips", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M251.6 157.6c0-1.9-.9-2.8-2.8-2.8h-40.9c-1.6 0-2.7 1.4-2.7 2.8v201.8c0 1.4 1.1 2.8 2.7 2.8h40.9c1.9 0 2.8-.9 2.8-2.8zM156.5 168c-16.1-11.8-36.3-17.9-60.3-18-18.1-.1-34.6 3.7-49.8 11.4V80.2c0-1.8-.9-2.7-2.8-2.7H2.7c-1.8 0-2.7.9-2.7 2.7v279.2c0 1.9.9 2.8 2.7 2.8h41c1.9 0 2.8-.9 2.8-2.8V223.3c0-.8-2.8-27 45.8-27 48.5 0 45.8 26.1 45.8 27v122.6c0 9 7.3 16.3 16.4 16.3h27.3c1.8 0 2.7-.9 2.7-2.8V223.3c0-23.4-9.3-41.8-28-55.3zm478.4 110.1c-6.8-15.7-18.4-27-34.9-34.1l-57.6-25.3c-8.6-3.6-9.2-11.2-2.6-16.1 7.4-5.5 44.3-13.9 84 6.8 1.7 1 4-.3 4-2.4v-44.7c0-1.3-.6-2.1-1.9-2.6-17.7-6.6-36.1-9.9-55.1-9.9-26.5 0-45.3 5.8-58.5 15.4-.5.4-28.4 20-22.7 53.7 3.4 19.6 15.8 34.2 37.2 43.6l53.6 23.5c11.6 5.1 15.2 13.3 12.2 21.2-3.7 9.1-13.2 13.6-36.5 13.6-24.3 0-44.7-8.9-58.4-19.1-2.1-1.4-4.4.2-4.4 2.3v34.4c0 10.4 4.9 17.3 14.6 20.7 15.6 5.5 31.6 8.2 48.2 8.2 12.7 0 25.8-1.2 36.3-4.3.7-.3 36-8.9 45.6-45.8 3.5-13.5 2.4-26.5-3.1-39.1zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zM228.3 72.5c-15.9 0-28.8 12.9-28.9 28.9 0 15.6 12.7 28.9 28.9 28.9s28.9-13.1 28.9-28.9c0-16.2-13-28.9-28.9-28.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hire-a-helper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b0", + "label": "HireAHelper", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hive": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07f", + "label": "Hive Blockchain Network", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M260.353,254.878,131.538,33.1a2.208,2.208,0,0,0-3.829.009L.3,254.887A2.234,2.234,0,0,0,.3,257.122L129.116,478.9a2.208,2.208,0,0,0,3.83-.009L260.358,257.113A2.239,2.239,0,0,0,260.353,254.878Zm39.078-25.713a2.19,2.19,0,0,0,1.9,1.111h66.509a2.226,2.226,0,0,0,1.9-3.341L259.115,33.111a2.187,2.187,0,0,0-1.9-1.111H190.707a2.226,2.226,0,0,0-1.9,3.341ZM511.7,254.886,384.9,33.112A2.2,2.2,0,0,0,382.99,32h-66.6a2.226,2.226,0,0,0-1.906,3.34L440.652,256,314.481,476.66a2.226,2.226,0,0,0,1.906,3.34h66.6a2.2,2.2,0,0,0,1.906-1.112L511.7,257.114A2.243,2.243,0,0,0,511.7,254.886ZM366.016,284.917H299.508a2.187,2.187,0,0,0-1.9,1.111l-108.8,190.631a2.226,2.226,0,0,0,1.9,3.341h66.509a2.187,2.187,0,0,0,1.9-1.111l108.8-190.631A2.226,2.226,0,0,0,366.016,284.917Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hockey-puck": { + "aliases": { + "unicodes": { + "secondary": [ + "10f453" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ice", + "nhl", + "sport" + ] + }, + "unicode": "f453", + "label": "Hockey Puck", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 256C114.6 256 0 213 0 160s114.6-96 256-96s256 43 256 96s-114.6 96-256 96zm192.3 1.8c24.7-9.3 46.9-21 63.7-35.6V352c0 53-114.6 96-256 96S0 405 0 352V222.3c16.8 14.6 39 26.3 63.7 35.6C114.5 276.9 182.5 288 256 288s141.5-11.1 192.3-30.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "holly-berry": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7aa" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "catwoman", + "christmas", + "decoration", + "flora", + "halle", + "holiday", + "ororo munroe", + "plant", + "storm", + "xmas" + ] + }, + "unicode": "f7aa", + "label": "Holly Berry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-80 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM276.8 383.8c1 .1 2.1 .2 3.2 .2c39.8 0 72 32.2 72 72v22.7c0 16.4 16 27.9 31.6 22.8l12.8-4.3c18-6 37.3-6.5 55.6-1.5l19.4 5.3c17.9 4.9 34.4-11.6 29.5-29.5L495.6 452c-5-18.3-4.4-37.6 1.5-55.6l4.3-12.8c5.2-15.5-6.4-31.6-22.8-31.6c-34.6 0-62.7-28.1-62.7-62.7v-32c0-16.4-16-27.9-31.6-22.8l-12.8 4.3c-18 6-37.3 6.5-55.6 1.5l-29.6-8.1c-2.9-.8-5.9-1-8.7-.7c4.2 9.7 5.8 20.8 3.7 32.3L275 298.7c-1.5 8.4-1.4 17 .5 25.3l5.3 23.9c2.8 12.7 1.1 25.2-4 35.9zM127.6 234.5c-15.5-5.2-31.6 6.4-31.6 22.8v32C96 323.9 67.9 352 33.3 352c-16.4 0-27.9 16-22.8 31.6l4.3 12.8c6 18 6.5 37.3 1.5 55.6l-5.3 19.4C6.2 489.4 22.6 505.8 40.5 501L60 495.6c18.3-5 37.6-4.5 55.6 1.5l12.8 4.3c15.5 5.2 31.6-6.4 31.6-22.8v-32c0-34.6 28.1-62.7 62.7-62.7c16.4 0 27.9-16 22.8-31.6l-4.3-12.8c-6-18-6.5-37.3-1.5-55.6l5.3-19.4c4.9-17.9-11.6-34.4-29.5-29.5L196 240.4c-18.3 5-37.6 4.4-55.6-1.5l-12.8-4.3zM384 144a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hooli": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f427", + "label": "Hooli", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8zm57.7-5.3v5.3l-19.4.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3zm408.9-115.2c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zm-29 120.5H640V241.5h-57.9zm-73.7 0h57.9V156.7L508.4 184zm-31-119.4c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6s-1.4 34.3 16.8 52.5 50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9zm-106.2-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.8 110.8V352h57.9v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.4-21.6-38.4-31.4v-31c13.1 14.7 30.5 31.4 53.4 50.3l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5s50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zM65.2 184v63.3c-48.7-54.5-38.9-76-35.2-79.1 13.5-11.4 37.5-8 64.4 2.1zm226.5 120.5c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hornbill": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f592", + "label": "Hornbill", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M76.38 370.3a37.8 37.8 0 1 1-32.07-32.42c-78.28-111.35 52-190.53 52-190.53-5.86 43-8.24 91.16-8.24 91.16-67.31 41.49.93 64.06 39.81 72.87a140.38 140.38 0 0 0 131.66 91.94c1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zm108-327.7A37.57 37.57 0 0 0 181 21.45a37.95 37.95 0 1 0-31.17 54.22c-22.55 29.91-53.83 89.57-52.42 190l21.84-.15c0-.9-.14-1.77-.14-2.68A140.42 140.42 0 0 1 207 132.71c8-37.71 30.7-114.3 73.8-44.29 0 0 48.14 2.38 91.18 8.24 0 0-77.84-128-187.59-54.06zm304.19 134.17a37.94 37.94 0 1 0-53.84-28.7C403 126.13 344.89 99 251.28 100.33l.14 22.5c2.7-.15 5.39-.41 8.14-.41a140.37 140.37 0 0 1 130.49 88.76c39.1 9 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 49-194.61a37.45 37.45 0 0 0 19.31-3.5zM374.06 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15a140.34 140.34 0 0 1-91.39 131.45c-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 51a37.5 37.5 0 0 0 3.64 14 37.93 37.93 0 1 0 33.89-54.29z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "horse": { + "aliases": { + "unicodes": { + "composite": [ + "1f40e" + ], + "secondary": [ + "10f6f0" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "equestrian", + "equus", + "fauna", + "horse", + "mammmal", + "mare", + "neigh", + "pony", + "racehorse", + "racing" + ] + }, + "unicode": "f6f0", + "label": "Horse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M448 238.1V160h16l9.8 19.6c12.5 25.1 42.2 36.4 68.3 26c20.5-8.2 33.9-28 33.9-50.1V80c0-19.1-8.4-36.3-21.7-48H560c8.8 0 16-7.2 16-16s-7.2-16-16-16H480 448C377.3 0 320 57.3 320 128H224 203.2 148.8c-30.7 0-57.6 16.3-72.5 40.8C33.2 174.5 0 211.4 0 256v56c0 13.3 10.7 24 24 24s24-10.7 24-24V256c0-13.4 6.6-25.2 16.7-32.5c1.6 13 6.3 25.4 13.6 36.4l28.2 42.4c8.3 12.4 6.4 28.7-1.2 41.6c-16.5 28-20.6 62.2-10 93.9l17.5 52.4c4.4 13.1 16.6 21.9 30.4 21.9h33.7c21.8 0 37.3-21.4 30.4-42.1l-20.8-62.5c-2.1-6.4-.5-13.4 4.3-18.2l12.7-12.7c13.2-13.2 20.6-31.1 20.6-49.7c0-2.3-.1-4.6-.3-6.9l84 24c4.1 1.2 8.2 2.1 12.3 2.8V480c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V315.7c19.2-19.2 31.5-45.7 32-75.7h0v-1.9zM496 64a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "horse-head": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ab" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "equus", + "fauna", + "mammmal", + "mare", + "neigh", + "pony" + ] + }, + "unicode": "f7ab", + "label": "Horse Head", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 464V316.9c0-108.4 68.3-205.1 170.5-241.3L404.2 15.5C425.6 7.9 448 23.8 448 46.4c0 11-5.5 21.2-14.6 27.3L400 96c48.1 0 91.2 29.8 108.1 74.9l48.6 129.5c11.8 31.4 4.1 66.8-19.6 90.5c-16 16-37.8 25.1-60.5 25.1h-3.4c-26.1 0-50.9-11.6-67.6-31.7l-32.3-38.7c-11.7 4.1-24.2 6.4-37.3 6.4l-.1 0 0 0c-6.3 0-12.5-.5-18.6-1.5c-3.6-.6-7.2-1.4-10.7-2.3l0 0c-28.9-7.8-53.1-26.8-67.8-52.2c-4.4-7.6-14.2-10.3-21.9-5.8s-10.3 14.2-5.8 21.9c24 41.5 68.3 70 119.3 71.9l47.2 70.8c4 6.1 6.2 13.2 6.2 20.4c0 20.3-16.5 36.8-36.8 36.8H112c-26.5 0-48-21.5-48-48zM392 224a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hospital": { + "aliases": { + "names": [ + "hospital-alt", + "hospital-wide" + ], + "unicodes": { + "composite": [ + "1f3e5", + "f47d" + ], + "primary": [ + "f47d" + ], + "secondary": [ + "10f0f8", + "10f47d" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "covid-19", + "doctor", + "emergency room", + "hospital", + "medical center", + "medicine" + ] + }, + "unicode": "f0f8", + "label": "Hospital", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 48c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48V512H368V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H192V48zM48 96H160V512H48c-26.5 0-48-21.5-48-48V320H80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0V224H80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0V144c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v48H560c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H560c-8.8 0-16 7.2-16 16s7.2 16 16 16h80V464c0 26.5-21.5 48-48 48H480V96H592zM312 64c-8.8 0-16 7.2-16 16v24H272c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V152h24c8.8 0 16-7.2 16-16V120c0-8.8-7.2-16-16-16H344V80c0-8.8-7.2-16-16-16H312z" + }, + "regular": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M232 0c-39.8 0-72 32.2-72 72v8H72C32.2 80 0 112.2 0 152V440c0 39.8 32.2 72 72 72h.2 .2 .2 .2 .2H73h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H75h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H77h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H79h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H82h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H85h.2 .2 .2 .2H86h.2 .2 .2 .2H87h.2 .2 .2 .2H88h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H98h.2 .2 .2 .2H99h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2v0H456h8v0H568c39.8 0 72-32.2 72-72V152c0-39.8-32.2-72-72-72H480V72c0-39.8-32.2-72-72-72H232zM480 128h88c13.3 0 24 10.7 24 24v40H536c-13.3 0-24 10.7-24 24s10.7 24 24 24h56v48H536c-13.3 0-24 10.7-24 24s10.7 24 24 24h56V440c0 13.3-10.7 24-24 24H480V336 128zM72 128h88V464h-.1-.2-.2-.2H159h-.2-.2-.2H158h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H154h-.2-.2-.2H153h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H150h-.2-.2-.2H149h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H146h-.2-.2-.2H145h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H142h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H139h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H136h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H133h-.2-.2-.2-.2-.2-.2-.2-.2H131h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H128h-.2-.2-.2-.2-.2-.2-.2-.2H126h-.2-.2-.2-.2-.2-.2-.2-.2H124h-.2-.2-.2-.2-.2-.2-.2-.2H122h-.2-.2-.2-.2-.2-.2-.2-.2H120h-.2-.2-.2-.2-.2-.2-.2-.2H118h-.2-.2-.2-.2-.2-.2-.2-.2H116h-.2-.2-.2-.2-.2-.2-.2-.2H114h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H111h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H108h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H105h-.2-.2-.2-.2H104h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H100h-.2-.2-.2-.2H99h-.2-.2-.2-.2H98h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H88h-.2-.2-.2-.2H87h-.2-.2-.2-.2H86h-.2-.2-.2-.2H85h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H82h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H79h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H77h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H75h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H73h-.2-.2-.2-.2-.2H72c-13.2 0-24-10.7-24-24V336h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H48V240h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H48V152c0-13.3 10.7-24 24-24zM208 72c0-13.3 10.7-24 24-24H408c13.3 0 24 10.7 24 24V336 464H368V400c0-26.5-21.5-48-48-48s-48 21.5-48 48v64H208V72zm88 24v24H272c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V168h24c8.8 0 16-7.2 16-16V136c0-8.8-7.2-16-16-16H344V96c0-8.8-7.2-16-16-16H312c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hospital-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10f80d" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "network", + "patient", + "primary care" + ] + }, + "unicode": "f80d", + "label": "Hospital User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V256H144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v64H144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v80c0 26.5 21.5 48 48 48H265.9c-6.3-10.2-9.9-22.2-9.9-35.1c0-46.9 25.8-87.8 64-109.2V271.8 48c0-26.5-21.5-48-48-48H48zM152 64h16c8.8 0 16 7.2 16 16v24h24c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H184v24c0 8.8-7.2 16-16 16H152c-8.8 0-16-7.2-16-16V152H112c-8.8 0-16-7.2-16-16V120c0-8.8 7.2-16 16-16h24V80c0-8.8 7.2-16 16-16zM512 272a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM288 477.1c0 19.3 15.6 34.9 34.9 34.9H541.1c19.3 0 34.9-15.6 34.9-34.9c0-51.4-41.7-93.1-93.1-93.1H381.1c-51.4 0-93.1 41.7-93.1 93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hot-tub-person": { + "aliases": { + "names": [ + "hot-tub" + ], + "unicodes": { + "secondary": [ + "10f593" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "jacuzzi", + "spa" + ] + }, + "unicode": "f593", + "label": "Hot Tub Person", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5V200c0 13.3 10.7 24 24 24s24-10.7 24-24V186.8c0-34-14.4-66.4-39.7-89.2L295.8 82.8C280.7 69.1 272 49.7 272 29.2V24zM0 320v16V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H277.3c-13.8 0-27.3-4.5-38.4-12.8l-85.3-64C137 166.7 116.8 160 96 160c-53 0-96 43-96 96v64zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16s16 7.2 16 16zm80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm112 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16s16 7.2 16 16zm80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM360 0c-13.3 0-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5V200c0 13.3 10.7 24 24 24s24-10.7 24-24V186.8c0-34-14.4-66.4-39.7-89.2L407.8 82.8C392.7 69.1 384 49.7 384 29.2V24c0-13.3-10.7-24-24-24zM64 128A64 64 0 1 0 64 0a64 64 0 1 0 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hotdog": { + "aliases": { + "unicodes": { + "composite": [ + "1f32d" + ], + "secondary": [ + "10f80f" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bun", + "chili", + "frankfurt", + "frankfurter", + "hot dog", + "hotdog", + "kosher", + "polish", + "sandwich", + "sausage", + "vienna", + "weiner" + ] + }, + "unicode": "f80f", + "label": "Hotdog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.6 23.4c31.2 31.2 31.2 81.9 0 113.1l-352 352c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1l352-352c31.2-31.2 81.9-31.2 113.1 0zM443.3 92.7c-6.2-6.2-16.4-6.2-22.6 0c-12.5 12.5-23.8 15.1-37.5 17.6l-2.5 .4c-13.8 2.5-31.6 5.6-48 22c-16.7 16.7-20.9 36-24.1 50.9l0 0v0l-.2 1c-3.4 15.6-6 26.4-15.7 36.1s-20.5 12.3-36.1 15.7l-1 .2c-14.9 3.2-34.2 7.4-50.9 24.1s-20.9 36-24.1 50.9l-.2 1c-3.4 15.6-6 26.4-15.7 36.1c-9.2 9.2-18 10.8-32.7 13.4l0 0-.9 .2c-15.6 2.8-34.9 6.9-54.4 26.4c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0c12.5-12.5 23.8-15.1 37.5-17.6l2.5-.4c13.8-2.5 31.6-5.6 48-22c16.7-16.7 20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1s20.5-12.3 36.1-15.7l1-.2c14.9-3.2 34.2-7.4 50.9-24.1s20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1c9.2-9.2 18-10.8 32.7-13.4l.9-.2c15.6-2.8 34.9-6.9 54.4-26.4c6.2-6.2 6.2-16.4 0-22.6zM191.2 479.2l288-288L495 207c10.9 10.9 17 25.6 17 41s-6.1 30.1-17 41L289 495c-10.9 10.9-25.6 17-41 17s-30.1-6.1-41-17l-15.8-15.8zM17 305C6.1 294.1 0 279.4 0 264s6.1-30.1 17-41L223 17C233.9 6.1 248.6 0 264 0s30.1 6.1 41 17l15.8 15.8-288 288L17 305z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hotel": { + "aliases": { + "unicodes": { + "composite": [ + "1f3e8" + ], + "secondary": [ + "10f594" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "hotel", + "inn", + "lodging", + "motel", + "resort", + "travel" + ] + }, + "unicode": "f594", + "label": "Hotel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H480c17.7 0 32 14.3 32 32s-14.3 32-32 32V448c17.7 0 32 14.3 32 32s-14.3 32-32 32H304V464c0-26.5-21.5-48-48-48s-48 21.5-48 48v48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64C14.3 64 0 49.7 0 32zm96 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16zM240 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H240zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zM112 192c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H112zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H368zM328 384c13.3 0 24.3-10.9 21-23.8c-10.6-41.5-48.2-72.2-93-72.2s-82.5 30.7-93 72.2c-3.3 12.8 7.8 23.8 21 23.8H328z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hotjar": { + "changes": [ + "5.0.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b1", + "label": "Hotjar", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1688044785, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M361.5 0c0 131.6-80.7 176.8-140.2 209.4c-.6 .3-1.1 .6-1.6 .9c-53.8 30.2-88.7 49.8-89.6 122H32C32 200.8 112.7 155.6 172.2 123C227 93.2 262.5 73 262.5 0h98.9zM301 302.6c54.8-29.8 90.3-50 90.3-123h98c0 131.6-80.7 176.7-140.2 209.4c-54.8 29.8-90.3 50-90.3 123h-98c0-131.6 80.7-176.8 140.2-209.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hourglass": { + "aliases": { + "names": [ + "hourglass-empty" + ], + "unicodes": { + "composite": [ + "23f3", + "f250" + ], + "secondary": [ + "10f254" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "hourglass", + "hourglass not done", + "minute", + "sand", + "stopwatch", + "time", + "timer" + ] + }, + "unicode": "f254", + "label": "Hourglass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H64 320h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V75c0 42.4-16.9 83.1-46.9 113.1L237.3 256l67.9 67.9c30 30 46.9 70.7 46.9 113.1v11c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V437c0-42.4 16.9-83.1 46.9-113.1L146.7 256 78.9 188.1C48.9 158.1 32 117.4 32 75V64C14.3 64 0 49.7 0 32zM96 64V75c0 25.5 10.1 49.9 28.1 67.9L192 210.7l67.9-67.9c18-18 28.1-42.4 28.1-67.9V64H96zm0 384H288V437c0-25.5-10.1-49.9-28.1-67.9L192 301.3l-67.9 67.9c-18 18-28.1 42.4-28.1 67.9v11z" + }, + "regular": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48h8V67c0 40.3 16 79 44.5 107.5L158.1 256 76.5 337.5C48 366 32 404.7 32 445v19H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8V445c0-40.3-16-79-44.5-107.5L225.9 256l81.5-81.5C336 146 352 107.3 352 67V48h8c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM192 289.9l81.5 81.5C293 391 304 417.4 304 445v19H80V445c0-27.6 11-54 30.5-73.5L192 289.9zm0-67.9l-81.5-81.5C91 121 80 94.6 80 67V48H304V67c0 27.6-11 54-30.5 73.5L192 222.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hourglass-end": { + "aliases": { + "names": [ + "hourglass-3" + ], + "unicodes": { + "composite": [ + "231b" + ], + "secondary": [ + "10f253" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "hourglass done", + "minute", + "sand", + "stopwatch", + "time", + "timer" + ] + }, + "unicode": "f253", + "label": "Hourglass End", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767328, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 25.5-10.1 49.9-28.1 67.9L192 210.7l-67.9-67.9C106.1 124.9 96 100.4 96 75z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hourglass-half": { + "aliases": { + "names": [ + "hourglass-2" + ], + "unicodes": { + "secondary": [ + "10f252" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "unicode": "f252", + "label": "Hourglass Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767328, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 19-5.6 37.4-16 53H112c-10.3-15.6-16-34-16-53zm16 309c3.5-5.3 7.6-10.3 12.1-14.9L192 301.3l67.9 67.9c4.6 4.6 8.6 9.6 12.1 14.9H112z" + }, + "regular": { + "lastModified": 1684767328, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H360c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V67c0 40.3-16 79-44.5 107.5L225.9 256l81.5 81.5C336 366 352 404.7 352 445v19h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V445c0-40.3 16-79 44.5-107.5L158.1 256 76.5 174.5C48 146 32 107.3 32 67V48H24C10.7 48 0 37.3 0 24zM110.5 371.5c-3.9 3.9-7.5 8.1-10.7 12.5H284.2c-3.2-4.4-6.8-8.6-10.7-12.5L192 289.9l-81.5 81.5zM284.2 128C297 110.4 304 89 304 67V48H80V67c0 22.1 7 43.4 19.8 61H284.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hourglass-start": { + "aliases": { + "names": [ + "hourglass-1" + ], + "unicodes": { + "secondary": [ + "10f251" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "unicode": "f251", + "label": "Hourglass Start", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767328, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM288 437v11H96V437c0-25.5 10.1-49.9 28.1-67.9L192 301.3l67.9 67.9c18 18 28.1 42.4 28.1 67.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house": { + "aliases": { + "names": [ + "home", + "home-alt", + "home-lg-alt" + ], + "unicodes": { + "composite": [ + "1f3e0", + "f80a", + "f80c" + ], + "primary": [ + "f80a", + "f80c" + ], + "secondary": [ + "10f015", + "10f80a", + "10f80c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "home", + "house", + "main", + "residence" + ] + }, + "unicode": "f015", + "label": "House", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c0 2.7-.2 5.4-.5 8.1V472c0 22.1-17.9 40-40 40H456c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1H416 392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney": { + "aliases": { + "names": [ + "home-lg" + ], + "unicodes": { + "composite": [ + "f80b" + ], + "primary": [ + "f80b" + ], + "secondary": [ + "10f80b" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "chimney", + "house", + "main", + "residence", + "smokestack" + ] + }, + "unicode": "e3af", + "label": "House Chimney", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32H448c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v64 24c0 22.1 17.9 40 40 40h24 32.5c1.4 0 2.8 0 4.2-.1c1.1 .1 2.2 .1 3.3 .1h16c22.1 0 40-17.9 40-40V455.8c.3-2.6 .5-5.3 .5-8.1l-.7-160.2h32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-crack": { + "aliases": { + "names": [ + "house-damage" + ], + "unicodes": { + "secondary": [ + "10f6f1" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "devastation", + "disaster", + "earthquake", + "home", + "insurance" + ] + }, + "unicode": "f6f1", + "label": "House Chimney Crack", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H326.4L288 448l80.8-67.3c7.8-6.5 7.6-18.6-.4-24.9L250.6 263.2c-14.6-11.5-33.8 7-22.8 22L288 368l-85.5 71.2c-6.1 5-7.5 13.8-3.5 20.5L230.4 512H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-medical": { + "aliases": { + "names": [ + "clinic-medical" + ], + "unicodes": { + "secondary": [ + "10f7f2" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "general practitioner", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient" + ] + }, + "unicode": "f7f2", + "label": "House Chimney Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24zM272 192c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h48c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H320V208c0-8.8-7.2-16-16-16H272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10e065" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "home", + "isolation", + "quarantine" + ] + }, + "unicode": "e065", + "label": "House Chimney User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32H448c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM288 160a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM176 400c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H192c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-window": { + "aliases": { + "unicodes": { + "secondary": [ + "10e00d" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "family", + "home", + "residence" + ] + }, + "unicode": "e00d", + "label": "House Chimney Window", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24zM248 192c-13.3 0-24 10.7-24 24v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V216c0-13.3-10.7-24-24-24H248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "home", + "house", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e509", + "label": "House Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "affected", + "home", + "house" + ] + }, + "unicode": "e50a", + "label": "House Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "destroy", + "home", + "house" + ] + }, + "unicode": "e50b", + "label": "House Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-crack": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "devastation", + "disaster", + "earthquake", + "home", + "insurance" + ] + }, + "unicode": "e3b1", + "label": "House Crack", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H230.4l-31.3-52.2c-4.1-6.8-2.6-15.5 3.5-20.5L288 368l-60.2-82.8c-10.9-15 8.2-33.5 22.8-22l117.9 92.6c8 6.3 8.2 18.4 .4 24.9L288 448l38.4 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-fire": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "emergency", + "home" + ] + }, + "unicode": "e50c", + "label": "House Fire", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 350.1l0 1.9H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L447.3 128.1c-12.3-1-25 3-34.8 11.7c-35.4 31.6-65.6 67.7-87.3 102.8C304.3 276.5 288 314.9 288 350.1zM453.5 163.8c19.7 17.8 38.2 37 55.5 57.7c7.9-9.9 16.8-20.7 26.5-29.5c5.6-5.1 14.4-5.1 20 0c24.7 22.7 45.6 52.7 60.4 81.1c14.5 28 24.2 58.8 24.2 79C640 440 568.7 512 480 512c-89.7 0-160-72.1-160-159.8c0-26.4 12.7-60.7 32.4-92.6c20-32.4 48.1-66.1 81.4-95.8c2.8-2.5 6.4-3.8 10-3.7c3.5 0 7 1.3 9.8 3.8zM530 433c30-21 38-63 20-96c-2-4-4-8-7-12l-36 42s-58-74-62-79c-30 37-45 58-45 82c0 49 36 78 81 78c18 0 34-5 49-15z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camp", + "home" + ] + }, + "unicode": "e50d", + "label": "House Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 0c-17.7 0-32 14.3-32 32V192 512h64V192H624c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H512c0-17.7-14.3-32-32-32zM416 159L276.8 39.7c-12-10.3-29.7-10.3-41.7 0l-224 192C1 240.4-2.7 254.5 2 267.1S18.6 288 32 288H64V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v96c0 17.7 14.3 32 32 32h64.7l.2 0h-1V159z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-flood-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "water" + ] + }, + "unicode": "e50e", + "label": "House Flood Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M306.8 6.1C295.6-2 280.4-2 269.2 6.1l-176 128c-11.2 8.2-15.9 22.6-11.6 35.8S98.1 192 112 192h16v73c1.7 1 3.3 2 4.9 3.1c18 12.4 40.1 20.3 59.2 20.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c1.5-1 3-2 4.5-2.9l-.3-73.2H464c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8l-176-128zM269.5 309.9C247 325.4 219.5 336 192 336c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 389.7 159 400 192 400c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.5 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C439.4 325.2 410.9 336 384 336c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0zM384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.5 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-flood-water-circle-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "water" + ] + }, + "unicode": "e50f", + "label": "House Flood Water Circle Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 144A144 144 0 1 0 0 144a144 144 0 1 0 288 0zM140.7 76.7c6.2-6.2 16.4-6.2 22.6 0l56 56c6.2 6.2 6.2 16.4 0 22.6l-56 56c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L169.4 160H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h89.4L140.7 99.3c-6.2-6.2-6.2-16.4 0-22.6zM320 144c0 57.3-27.4 108.2-69.8 140.3c11.8-3.6 23-9.4 33-16.2c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.4 78.1 3.4c2.1 1.7 4.2 3.3 6.5 4.9l-.3-84.4H576c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8l-176-128C407.6-2 392.4-2 381.2 6.1L301 64.4c12.1 23.9 19 50.9 19 79.6zm18.5 165.9c-11.1-7.9-25.9-7.9-37 0C279 325.4 251.5 336 224 336c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C158.5 389.7 191 400 224 400c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C471.4 325.2 442.9 336 416 336c-27.5 0-55-10.6-77.5-26.1zm0 112c-11.1-7.9-25.9-7.9-37 0C279 437.4 251.5 448 224 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C158.5 501.7 191 512 224 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C471.4 437.2 442.9 448 416 448c-27.5 0-55-10.6-77.5-26.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-laptop": { + "aliases": { + "names": [ + "laptop-house" + ], + "unicodes": { + "secondary": [ + "10e066" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "covid-19", + "device", + "office", + "remote", + "work from home" + ] + }, + "unicode": "e066", + "label": "House Laptop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M218.3 8.5c12.3-11.3 31.2-11.3 43.4 0l208 192c6.7 6.2 10.3 14.8 10.3 23.5H336c-19.1 0-36.3 8.4-48 21.7V208c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64V416H112c-26.5 0-48-21.5-48-48V256H32c-13.2 0-25-8.1-29.8-20.3s-1.6-26.2 8.1-35.2l208-192zM352 304V448H544V304H352zm-48-16c0-17.7 14.3-32 32-32H560c17.7 0 32 14.3 32 32V448h32c8.8 0 16 7.2 16 16c0 26.5-21.5 48-48 48H544 352 304c-26.5 0-48-21.5-48-48c0-8.8 7.2-16 16-16h32V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "home", + "house", + "lockdown", + "quarantine" + ] + }, + "unicode": "e510", + "label": "House Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 480c0 11.7 3.1 22.6 8.6 32H392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L490.7 166.3C447.2 181.7 416 223.2 416 272v24.6c-19.1 11.1-32 31.7-32 55.4V480zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "facility", + "general practitioner", + "health", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient" + ] + }, + "unicode": "e3b2", + "label": "House Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM256 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H320v48c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V320H208c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "hospital", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e511", + "label": "House Medical Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm32 0a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "clinic", + "hospital" + ] + }, + "unicode": "e512", + "label": "House Medical Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "destroy", + "hospital" + ] + }, + "unicode": "e513", + "label": "House Medical Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm22.6 144l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L473.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L496 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L518.6 368z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "hospital", + "mash" + ] + }, + "unicode": "e514", + "label": "House Medical Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 0c17.7 0 32 14.3 32 32H624c8.8 0 16 7.2 16 16V176c0 8.8-7.2 16-16 16H512V512H448V192 32c0-17.7 14.3-32 32-32zM276.8 39.7L416 159V512h1l-.2 0H96c-17.7 0-32-14.3-32-32V288H32c-13.4 0-25.4-8.3-30-20.9s-1-26.7 9.2-35.4l224-192c12-10.3 29.7-10.3 41.7 0zM224 208v48H176c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h48c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H288V208c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-signal": { + "aliases": { + "unicodes": { + "secondary": [ + "10e012" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "connect", + "family", + "home", + "residence", + "smart home", + "wifi" + ] + }, + "unicode": "e012", + "label": "House Signal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M357.7 8.5c-12.3-11.3-31.2-11.3-43.4 0l-208 192c-9.4 8.6-12.7 22-8.5 34c87.1 25.3 155.6 94.2 180.3 181.6H464c26.5 0 48-21.5 48-48V256h32c13.2 0 25-8.1 29.8-20.3s1.6-26.2-8.1-35.2l-208-192zM288 208c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H304c-8.8 0-16-7.2-16-16V208zM24 256c-13.3 0-24 10.7-24 24s10.7 24 24 24c101.6 0 184 82.4 184 184c0 13.3 10.7 24 24 24s24-10.7 24-24c0-128.1-103.9-232-232-232zm8 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM0 376c0 13.3 10.7 24 24 24c48.6 0 88 39.4 88 88c0 13.3 10.7 24 24 24s24-10.7 24-24c0-75.1-60.9-136-136-136c-13.3 0-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-tsunami": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "tidal wave", + "wave" + ] + }, + "unicode": "e515", + "label": "House Tsunami", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80.8 136.5C104.9 93.8 152.6 64 209 64c16.9 0 33.1 2.7 48.2 7.7c16.8 5.5 34.9-3.6 40.4-20.4s-3.6-34.9-20.4-40.4C255.8 3.8 232.8 0 209 0C95.2 0 0 88 0 200c0 91.6 53.5 172.1 142.2 194.1c13.4 3.8 27.5 5.9 42.2 5.9c.7 0 1.4 0 2.1-.1c1.8 0 3.7 .1 5.5 .1l0 0c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.5 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C439.4 325.2 410.9 336 384 336c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0c-22.4 15.5-49.9 26.1-77.4 26.1c0 0-.1 0-.1 0c-12.4 0-24-1.5-34.9-4.3C121.6 320.2 96 287 96 248c0-48.5 39.5-88 88.4-88c13.5 0 26.1 3 37.5 8.3c16 7.5 35.1 .6 42.5-15.5s.6-35.1-15.5-42.5C229.3 101.1 207.4 96 184.4 96c-40 0-76.4 15.4-103.6 40.5zm252-18.1c-8.1 6-12.8 15.5-12.8 25.6V265c1.6 1 3.3 2 4.8 3.1c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c5.8 1.4 11.2 3.4 16.2 6.2c.7-2.7 1.1-5.5 1.1-8.4l-.4-144c0-10-4.7-19.4-12.7-25.5l-95.5-72c-11.4-8.6-27.1-8.6-38.5 0l-96 72zM384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.5 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-user": { + "aliases": { + "names": [ + "home-user" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "house" + ] + }, + "unicode": "e1b0", + "label": "House User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24zM352 224a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zm-96 96c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "houzz": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.9", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f27c", + "label": "Houzz", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M275.9 330.7H171.3V480H17V32h109.5v104.5l305.1 85.6V480H275.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hryvnia-sign": { + "aliases": { + "names": [ + "hryvnia" + ], + "unicodes": { + "composite": [ + "20b4" + ], + "secondary": [ + "10f6f2" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hryvnia Sign", + "currency" + ] + }, + "unicode": "f6f2", + "label": "Hryvnia Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M121.9 116.2C138.3 103.1 158.7 96 179.6 96H223c27.1 0 49 21.9 49 49c0 11.5-4 22.4-11.1 31H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H155.5l-50.6 28.9c-1.7 1-3.4 2-5.1 3.1H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H52.3c-2.8 9.9-4.3 20.4-4.3 31c0 62.4 50.6 113 113 113h43.4c35.5 0 70-12.1 97.7-34.3L308 441c13.8-11 16-31.2 5-45s-31.2-16-45-5l-5.9 4.7c-16.4 13.1-36.7 20.2-57.7 20.2H161c-27.1 0-49-21.9-49-49c0-11.5 4-22.4 11.1-31H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H228.5l50.6-28.9c1.7-1 3.4-2 5.1-3.1H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H331.7c2.8-10 4.3-20.4 4.3-31c0-62.4-50.6-113-113-113H179.6c-35.5 0-70 12.1-97.7 34.3L76 71c-13.8 11-16 31.2-5 45s31.2 16 45 5l5.9-4.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "html5": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f13b", + "label": "HTML 5 Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hubspot": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b2", + "label": "HubSpot", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hurricane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f751" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.1", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coriolis effect", + "eye", + "storm", + "tropical cyclone", + "typhoon" + ] + }, + "unicode": "f751", + "label": "Hurricane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 208C0 104.4 75.7 18.5 174.9 2.6C184 1.2 192 8.6 192 17.9V81.2c0 8.4 6.5 15.3 14.7 16.5C307 112.5 384 199 384 303.4c0 103.6-75.7 189.5-174.9 205.4c-9.2 1.5-17.1-5.9-17.1-15.2V430.2c0-8.4-6.5-15.3-14.7-16.5C77 398.9 0 312.4 0 208zm288 48A96 96 0 1 0 96 256a96 96 0 1 0 192 0zm-96-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "i": { + "aliases": { + "unicodes": { + "composite": [ + "69" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter I", + "Latin Small Letter I", + "letter" + ] + }, + "unicode": "49", + "label": "I", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96h96V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V96h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "i-cursor": { + "aliases": { + "unicodes": { + "secondary": [ + "10f246" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "editing", + "i-beam", + "type", + "writing" + ] + }, + "unicode": "f246", + "label": "I Cursor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M.1 29.3C-1.4 47 11.7 62.4 29.3 63.9l8 .7C70.5 67.3 96 95 96 128.3V224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v95.7c0 33.3-25.5 61-58.7 63.8l-8 .7C11.7 449.6-1.4 465 .1 482.7s16.9 30.7 34.5 29.2l8-.7c34.1-2.8 64.2-18.9 85.4-42.9c21.2 24 51.2 40.1 85.4 42.9l8 .7c17.6 1.5 33.1-11.6 34.5-29.2s-11.6-33.1-29.2-34.5l-8-.7C185.5 444.7 160 417 160 383.7V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V128.3c0-33.3 25.5-61 58.7-63.8l8-.7c17.6-1.5 30.7-16.9 29.2-34.5S239-1.4 221.3 .1l-8 .7C179.2 3.6 149.2 19.7 128 43.7c-21.2-24-51.2-40-85.4-42.9l-8-.7C17-1.4 1.6 11.7 .1 29.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ice-cream": { + "aliases": { + "unicodes": { + "composite": [ + "1f368" + ], + "secondary": [ + "10f810" + ] + } + }, + "changes": [ + "5.7.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chocolate", + "cone", + "cream", + "dessert", + "frozen", + "ice", + "ice cream", + "scoop", + "sorbet", + "sweet", + "vanilla", + "yogurt" + ] + }, + "unicode": "f810", + "label": "Ice Cream", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M367.1 160c.6-5.3 .9-10.6 .9-16C368 64.5 303.5 0 224 0S80 64.5 80 144c0 5.4 .3 10.7 .9 16H80c-26.5 0-48 21.5-48 48s21.5 48 48 48h53.5 181H368c26.5 0 48-21.5 48-48s-21.5-48-48-48h-.9zM96 288L200.8 497.7c4.4 8.8 13.3 14.3 23.2 14.3s18.8-5.5 23.2-14.3L352 288H96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "icicles": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ad" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "frozen", + "hanging", + "ice", + "seasonal", + "sharp" + ] + }, + "unicode": "f7ad", + "label": "Icicles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M75.8 304.8L1 35.7c-.7-2.5-1-5-1-7.5C0 12.6 12.6 0 28.2 0H482.4C498.8 0 512 13.2 512 29.6c0 1.6-.1 3.3-.4 4.9L434.6 496.1c-1.5 9.2-9.5 15.9-18.8 15.9c-9.2 0-17.1-6.6-18.7-15.6L336 160 307.2 303.9c-1.9 9.3-10.1 16.1-19.6 16.1c-9.2 0-17.2-6.2-19.4-15.1L240 192 210.6 368.2c-1.5 9.1-9.4 15.8-18.6 15.8s-17.1-6.7-18.6-15.8L144 192 115.9 304.3c-2.3 9.2-10.6 15.7-20.1 15.7c-9.3 0-17.5-6.2-20-15.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "icons": { + "aliases": { + "names": [ + "heart-music-camera-bolt" + ], + "unicodes": { + "secondary": [ + "10f86d" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "emoji", + "heart", + "image", + "music", + "photo", + "symbols" + ] + }, + "unicode": "f86d", + "label": "Icons", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.3 7.3C507.7 13.3 512 22.4 512 32V176c0 26.5-28.7 48-64 48s-64-21.5-64-48s28.7-48 64-48V71L352 90.2V208c0 26.5-28.7 48-64 48s-64-21.5-64-48s28.7-48 64-48V64c0-15.3 10.8-28.4 25.7-31.4l160-32c9.4-1.9 19.1 .6 26.6 6.6zM74.7 304l11.8-17.8c5.9-8.9 15.9-14.2 26.6-14.2h61.7c10.7 0 20.7 5.3 26.6 14.2L213.3 304H240c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V352c0-26.5 21.5-48 48-48H74.7zM192 408a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM478.7 278.3L440.3 368H496c6.7 0 12.6 4.1 15 10.4s.6 13.3-4.4 17.7l-128 112c-5.6 4.9-13.9 5.3-19.9 .9s-8.2-12.4-5.3-19.2L391.7 400H336c-6.7 0-12.6-4.1-15-10.4s-.6-13.3 4.4-17.7l128-112c5.6-4.9 13.9-5.3 19.9-.9s8.2 12.4 5.3 19.2zm-339-59.2c-6.5 6.5-17 6.5-23 0L19.9 119.2c-28-29-26.5-76.9 5-103.9c27-23.5 68.4-19 93.4 6.5l10 10.5 9.5-10.5c25-25.5 65.9-30 93.9-6.5c31 27 32.5 74.9 4.5 103.9l-96.4 99.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "id-badge": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2c1" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "contact", + "identification", + "license", + "profile" + ] + }, + "unicode": "f2c1", + "label": "Id Badge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zm96 320h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM144 64h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M256 48V64c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H256zM0 64C0 28.7 28.7 0 64 0H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM160 320h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "id-card": { + "aliases": { + "names": [ + "drivers-license" + ], + "unicodes": { + "composite": [ + "f2c3" + ], + "secondary": [ + "10f2c2" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "5.8.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "demographics", + "document", + "identification", + "issued", + "profile", + "registration" + ] + }, + "unicode": "f2c2", + "label": "Id Card", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96l576 0c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96zm0 32V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128H0zM64 405.3c0-29.5 23.9-53.3 53.3-53.3H234.7c29.5 0 53.3 23.9 53.3 53.3c0 5.9-4.8 10.7-10.7 10.7H74.7c-5.9 0-10.7-4.8-10.7-10.7zM176 192a64 64 0 1 1 0 128 64 64 0 1 1 0-128zm176 16c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16z" + }, + "regular": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528 160V416c0 8.8-7.2 16-16 16H320c0-44.2-35.8-80-80-80H176c-44.2 0-80 35.8-80 80H64c-8.8 0-16-7.2-16-16V160H528zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM272 256a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zm104-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "id-card-clip": { + "aliases": { + "names": [ + "id-card-alt" + ], + "unicodes": { + "secondary": [ + "10f47f" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "demographics", + "document", + "identification", + "issued", + "profile" + ] + }, + "unicode": "f47f", + "label": "Id Card Clip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 0h64c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H256c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM64 64H192v48c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V64H512c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64zM176 437.3c0 5.9 4.8 10.7 10.7 10.7H389.3c5.9 0 10.7-4.8 10.7-10.7c0-29.5-23.9-53.3-53.3-53.3H229.3c-29.5 0-53.3 23.9-53.3 53.3zM288 352a64 64 0 1 0 0-128 64 64 0 1 0 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ideal": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e013", + "label": "iDeal", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M125.61,165.48a49.07,49.07,0,1,0,49.06,49.06A49.08,49.08,0,0,0,125.61,165.48ZM86.15,425.84h78.94V285.32H86.15Zm151.46-211.6c0-20-10-22.53-18.74-22.53H204.82V237.5h14.05C228.62,237.5,237.61,234.69,237.61,214.24Zm201.69,46V168.93h22.75V237.5h33.69C486.5,113.08,388.61,86.19,299.67,86.19H204.84V169h14c25.6,0,41.5,17.35,41.5,45.26,0,28.81-15.52,46-41.5,46h-14V425.88h94.83c144.61,0,194.94-67.16,196.72-165.64Zm-109.75,0H273.3V169h54.43v22.73H296v10.58h30V225H296V237.5h33.51Zm74.66,0-5.16-17.67H369.31l-5.18,17.67H340.47L368,168.92h32.35l27.53,91.34ZM299.65,32H32V480H299.65c161.85,0,251-79.73,251-224.52C550.62,172,518,32,299.65,32Zm0,426.92H53.07V53.07H299.65c142.1,0,229.9,64.61,229.9,202.41C529.55,389.57,448.55,458.92,299.65,458.92Zm83.86-264.85L376,219.88H392.4l-7.52-25.81Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "igloo": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ae" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dome", + "dwelling", + "eskimo", + "home", + "house", + "ice", + "snow" + ] + }, + "unicode": "f7ae", + "label": "Igloo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 33.8V160H48.5C100.2 82.8 188.1 32 288 32c10.8 0 21.5 .6 32 1.8zM352 160V39.1C424.9 55.7 487.2 99.8 527.5 160H352zM29.9 192H96V320H0c0-46 10.8-89.4 29.9-128zM192 320H128V192H448V320H384v32H576v80c0 26.5-21.5 48-48 48H352V352c0-35.3-28.7-64-64-64s-64 28.7-64 64V480H48c-26.5 0-48-21.5-48-48V352H192V320zm288 0V192h66.1c19.2 38.6 29.9 82 29.9 128H480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "image": { + "aliases": { + "unicodes": { + "secondary": [ + "10f03e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "landscape", + "photo", + "picture" + ] + }, + "unicode": "f03e", + "label": "Image", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h96 32H424c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + }, + "regular": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 80c8.8 0 16 7.2 16 16V415.8l-5-6.5-136-176c-4.5-5.9-11.6-9.3-19-9.3s-14.4 3.4-19 9.3L202 340.7l-30.5-42.7C167 291.7 159.8 288 152 288s-15 3.7-19.5 10.1l-80 112L48 416.3l0-.3V96c0-8.8 7.2-16 16-16H448zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm80 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "image-portrait": { + "aliases": { + "names": [ + "portrait" + ], + "unicodes": { + "secondary": [ + "10f3e0" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "id", + "image", + "photo", + "picture", + "selfie" + ] + }, + "unicode": "f3e0", + "label": "Image Portrait", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767341, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64l0-384zM128 192a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM80 356.6c0-37.9 30.7-68.6 68.6-68.6h86.9c37.9 0 68.6 30.7 68.6 68.6c0 15.1-12.3 27.4-27.4 27.4H107.4C92.3 384 80 371.7 80 356.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "images": { + "aliases": { + "unicodes": { + "secondary": [ + "10f302" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "landscape", + "photo", + "picture" + ] + }, + "unicode": "f302", + "label": "Images", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 32c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160zM396 138.7l96 144c4.9 7.4 5.4 16.8 1.2 24.6S480.9 320 472 320H328 280 200c-9.2 0-17.6-5.3-21.6-13.6s-2.9-18.2 2.9-25.4l64-80c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l17.3 21.6 56-84C360.5 132 368 128 376 128s15.5 4 20 10.7zM192 128a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V344c0 75.1 60.9 136 136 136H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88V120z" + }, + "regular": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 80H512c8.8 0 16 7.2 16 16V320c0 8.8-7.2 16-16 16H490.8L388.1 178.9c-4.4-6.8-12-10.9-20.1-10.9s-15.7 4.1-20.1 10.9l-52.2 79.8-12.4-16.9c-4.5-6.2-11.7-9.8-19.4-9.8s-14.8 3.6-19.4 9.8L175.6 336H160c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16zM96 96V320c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V344c0 75.1 60.9 136 136 136H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88V120zm208 24a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "imdb": { + "changes": [ + "4.7.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d8", + "label": "IMDB", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M89.5 323.6H53.93V186.2H89.5V323.6zM156.1 250.5L165.2 186.2H211.5V323.6H180.5V230.9L167.1 323.6H145.8L132.8 232.9L132.7 323.6H101.5V186.2H147.6C148.1 194.5 150.4 204.3 151.9 215.6L156.1 250.5zM223.7 323.6V186.2H250.3C267.3 186.2 277.3 187.1 283.3 188.6C289.4 190.3 294 192.8 297.2 196.5C300.3 199.8 302.3 203.1 303 208.5C303.9 212.9 304.4 221.6 304.4 234.7V282.9C304.4 295.2 303.7 303.4 302.5 307.6C301.4 311.7 299.4 315 296.5 317.3C293.7 319.7 290.1 321.4 285.8 322.3C281.6 323.1 275.2 323.6 266.7 323.6H223.7zM259.2 209.7V299.1C264.3 299.1 267.5 298.1 268.6 296.8C269.7 294.8 270.4 289.2 270.4 280.1V226.8C270.4 220.6 270.3 216.6 269.7 214.8C269.4 213 268.5 211.8 267.1 210.1C265.7 210.1 263 209.7 259.2 209.7V209.7zM316.5 323.6V186.2H350.6V230.1C353.5 227.7 356.7 225.2 360.1 223.5C363.7 222 368.9 221.1 372.9 221.1C377.7 221.1 381.8 221.9 385.2 223.3C388.6 224.8 391.2 226.8 393.2 229.5C394.9 232.1 395.9 234.8 396.3 237.3C396.7 239.9 396.1 245.3 396.1 253.5V292.1C396.1 300.3 396.3 306.4 395.3 310.5C394.2 314.5 391.5 318.1 387.5 320.1C383.4 324 378.6 325.4 372.9 325.4C368.9 325.4 363.7 324.5 360.2 322.9C356.7 321.1 353.5 318.4 350.6 314.9L348.5 323.6L316.5 323.6zM361.6 302.9C362.3 301.1 362.6 296.9 362.6 290.4V255C362.6 249.4 362.3 245.5 361.5 243.8C360.8 241.9 357.8 241.1 355.7 241.1C353.7 241.1 352.3 241.9 351.6 243.4C351 244.9 350.6 248.8 350.6 255V291.4C350.6 297.5 351 301.4 351.8 303C352.4 304.7 353.9 305.5 355.9 305.5C358.1 305.5 360.1 304.7 361.6 302.9L361.6 302.9zM418.4 32.04C434.1 33.27 447.1 47.28 447.1 63.92V448.1C447.1 464.5 435.2 478.5 418.9 479.1C418.6 479.1 418.4 480 418.1 480H29.88C29.6 480 29.32 479.1 29.04 479.9C13.31 478.5 1.093 466.1 0 449.7L.0186 61.78C1.081 45.88 13.82 33.09 30.26 31.1H417.7C417.9 31.1 418.2 32.01 418.4 32.04L418.4 32.04zM30.27 41.26C19 42.01 10.02 51.01 9.257 62.4V449.7C9.63 455.1 11.91 460.2 15.7 464C19.48 467.9 24.51 470.3 29.89 470.7H418.1C429.6 469.7 438.7 459.1 438.7 448.1V63.91C438.7 58.17 436.6 52.65 432.7 48.45C428.8 44.24 423.4 41.67 417.7 41.26L30.27 41.26z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "inbox": { + "aliases": { + "unicodes": { + "secondary": [ + "10f01c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "desk", + "email", + "mail", + "message" + ] + }, + "unicode": "f01c", + "label": "Inbox", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M121 32C91.6 32 66 52 58.9 80.5L1.9 308.4C.6 313.5 0 318.7 0 323.9V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V323.9c0-5.2-.6-10.4-1.9-15.5l-57-227.9C446 52 420.4 32 391 32H121zm0 64H391l48 192H387.8c-12.1 0-23.2 6.8-28.6 17.7l-14.3 28.6c-5.4 10.8-16.5 17.7-28.6 17.7H195.8c-12.1 0-23.2-6.8-28.6-17.7l-14.3-28.6c-5.4-10.8-16.5-17.7-28.6-17.7H73L121 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "indent": { + "aliases": { + "unicodes": { + "secondary": [ + "10f03c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "align", + "justify", + "paragraph", + "tab" + ] + }, + "unicode": "f03c", + "label": "Indent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM192 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32zm32 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM127.8 268.6L25.8 347.9C15.3 356.1 0 348.6 0 335.3V176.7c0-13.3 15.3-20.8 25.8-12.6l101.9 79.3c8.2 6.4 8.2 18.9 0 25.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "indian-rupee-sign": { + "aliases": { + "names": [ + "indian-rupee", + "inr" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Indian Rupee Sign", + "currency" + ] + }, + "unicode": "e1bc", + "label": "Indian Rupee Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H96h16H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H231.8c9.6 14.4 16.7 30.6 20.7 48H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H252.4c-13.2 58.3-61.9 103.2-122.2 110.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4L13.4 314C2.1 306-2.7 291.5 1.5 278.2S18.1 256 32 256h80c32.8 0 61-19.7 73.3-48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H185.3C173 115.7 144.8 96 112 96H96 32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "industry": { + "aliases": { + "unicodes": { + "secondary": [ + "10f275" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "factory", + "industrial", + "manufacturing", + "mill", + "warehouse" + ] + }, + "unicode": "f275", + "label": "Industry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64V304v48 80c0 26.5 21.5 48 48 48H496c26.5 0 48-21.5 48-48V304 152.2c0-18.2-19.4-29.7-35.4-21.1L352 215.4V152.2c0-18.2-19.4-29.7-35.4-21.1L160 215.4V64c0-17.7-14.3-32-32-32H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "infinity": { + "aliases": { + "unicodes": { + "composite": [ + "221e", + "267e" + ], + "secondary": [ + "10f534" + ] + } + }, + "changes": [ + "5.0.13", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Infinity", + "eternity", + "forever", + "infinity", + "math", + "unbounded", + "universal" + ] + }, + "unicode": "f534", + "label": "Infinity", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 241.1C0 161 65 96 145.1 96c38.5 0 75.4 15.3 102.6 42.5L320 210.7l72.2-72.2C419.5 111.3 456.4 96 494.9 96C575 96 640 161 640 241.1v29.7C640 351 575 416 494.9 416c-38.5 0-75.4-15.3-102.6-42.5L320 301.3l-72.2 72.2C220.5 400.7 183.6 416 145.1 416C65 416 0 351 0 270.9V241.1zM274.7 256l-72.2-72.2c-15.2-15.2-35.9-23.8-57.4-23.8C100.3 160 64 196.3 64 241.1v29.7c0 44.8 36.3 81.1 81.1 81.1c21.5 0 42.2-8.5 57.4-23.8L274.7 256zm90.5 0l72.2 72.2c15.2 15.2 35.9 23.8 57.4 23.8c44.8 0 81.1-36.3 81.1-81.1V241.1c0-44.8-36.3-81.1-81.1-81.1c-21.5 0-42.2 8.5-57.4 23.8L365.3 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "info": { + "aliases": { + "unicodes": { + "secondary": [ + "10f129" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more", + "support" + ] + }, + "unicode": "f129", + "label": "Info", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767248, + "raw": "", + "viewBox": [ + 0, + 0, + 192, + 512 + ], + "width": 192, + "height": 512, + "path": "M48 80a48 48 0 1 1 96 0A48 48 0 1 1 48 80zM0 224c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32V448h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64V256H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "instagram": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16d", + "label": "Instagram", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "instalod": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e081", + "label": "InstaLOD", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M153.384,480H387.113L502.554,275.765,204.229,333.211ZM504.726,240.078,387.113,32H155.669L360.23,267.9ZM124.386,48.809,7.274,256,123.236,461.154,225.627,165.561Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "intercom": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "customer", + "messenger" + ] + }, + "unicode": "f7af", + "label": "Intercom", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zm-108.3 82.1c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zm-74.6-7.5c0-19.8 29.9-19.8 29.9 0v216.5c0 19.8-29.9 19.8-29.9 0V106.6zm-74.7 7.5c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zM59.7 144c0-19.8 29.9-19.8 29.9 0v134.3c0 19.8-29.9 19.8-29.9 0V144zm323.4 227.8c-72.8 63-241.7 65.4-318.1 0-15-12.8 4.4-35.5 19.4-22.7 65.9 55.3 216.1 53.9 279.3 0 14.9-12.9 34.3 9.8 19.4 22.7zm5.2-93.5c0 19.8-29.9 19.8-29.9 0V144c0-19.8 29.9-19.8 29.9 0v134.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "internet-explorer": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "unicode": "f26b", + "label": "Internet-explorer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "invision": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "unicode": "f7b0", + "label": "InVision", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M407.4 32H40.6C18.2 32 0 50.2 0 72.6v366.8C0 461.8 18.2 480 40.6 480h366.8c22.4 0 40.6-18.2 40.6-40.6V72.6c0-22.4-18.2-40.6-40.6-40.6zM176.1 145.6c.4 23.4-22.4 27.3-26.6 27.4-14.9 0-27.1-12-27.1-27 .1-35.2 53.1-35.5 53.7-.4zM332.8 377c-65.6 0-34.1-74-25-106.6 14.1-46.4-45.2-59-59.9.7l-25.8 103.3H177l8.1-32.5c-31.5 51.8-94.6 44.4-94.6-4.3.1-14.3.9-14 23-104.1H81.7l9.7-35.6h76.4c-33.6 133.7-32.6 126.9-32.9 138.2 0 20.9 40.9 13.5 57.4-23.2l19.8-79.4h-32.3l9.7-35.6h68.8l-8.9 40.5c40.5-75.5 127.9-47.8 101.8 38-14.2 51.1-14.6 50.7-14.9 58.8 0 15.5 17.5 22.6 31.8-16.9L386 325c-10.5 36.7-29.4 52-53.2 52z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ioxhost": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f208", + "label": "ioxhost", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "italic": { + "aliases": { + "unicodes": { + "secondary": [ + "10f033" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "emphasis", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f033", + "label": "Italic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M128 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H293.3L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H90.7L224 96H160c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "itch-io": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83a", + "label": "itch.io", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M71.92 34.77C50.2 47.67 7.4 96.84 7 109.73v21.34c0 27.06 25.29 50.84 48.25 50.84 27.57 0 50.54-22.85 50.54-50 0 27.12 22.18 50 49.76 50s49-22.85 49-50c0 27.12 23.59 50 51.16 50h.5c27.57 0 51.16-22.85 51.16-50 0 27.12 21.47 50 49 50s49.76-22.85 49.76-50c0 27.12 23 50 50.54 50 23 0 48.25-23.78 48.25-50.84v-21.34c-.4-12.9-43.2-62.07-64.92-75C372.56 32.4 325.76 32 256 32S91.14 33.1 71.92 34.77zm132.32 134.39c-22 38.4-77.9 38.71-99.85.25-13.17 23.14-43.17 32.07-56 27.66-3.87 40.15-13.67 237.13 17.73 269.15 80 18.67 302.08 18.12 379.76 0 31.65-32.27 21.32-232 17.75-269.15-12.92 4.44-42.88-4.6-56-27.66-22 38.52-77.85 38.1-99.85-.24-7.1 12.49-23.05 28.94-51.76 28.94a57.54 57.54 0 0 1-51.75-28.94zm-41.58 53.77c16.47 0 31.09 0 49.22 19.78a436.91 436.91 0 0 1 88.18 0C318.22 223 332.85 223 349.31 223c52.33 0 65.22 77.53 83.87 144.45 17.26 62.15-5.52 63.67-33.95 63.73-42.15-1.57-65.49-32.18-65.49-62.79-39.25 6.43-101.93 8.79-155.55 0 0 30.61-23.34 61.22-65.49 62.79-28.42-.06-51.2-1.58-33.94-63.73 18.67-67 31.56-144.45 83.88-144.45zM256 270.79s-44.38 40.77-52.35 55.21l29-1.17v25.32c0 1.55 21.34.16 23.33.16 11.65.54 23.31 1 23.31-.16v-25.28l29 1.17c-8-14.48-52.35-55.24-52.35-55.24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "itunes": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b4", + "label": "iTunes", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "itunes-note": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b5", + "label": "Itunes Note", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "j": { + "aliases": { + "unicodes": { + "composite": [ + "6a" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter J", + "Latin Small Letter J", + "letter" + ] + }, + "unicode": "4a", + "label": "J", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M288 32c17.7 0 32 14.3 32 32V320c0 88.4-71.6 160-160 160S0 408.4 0 320V288c0-17.7 14.3-32 32-32s32 14.3 32 32v32c0 53 43 96 96 96s96-43 96-96V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jar": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "jam", + "jelly", + "storage" + ] + }, + "unicode": "e516", + "label": "Jar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767418, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm96 64c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jar-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flour", + "storage" + ] + }, + "unicode": "e517", + "label": "Jar Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767421, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm112 0H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 198 90 224 122.2 224H144h32 21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7c-11.7-13.3-28.9-21.7-48-21.7zm48 117.7c-11.7-13.3-28.9-21.7-48-21.7H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 294 90 320 122.2 320H144h32 21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7zM112 352H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 390 90 416 122.2 416H144v32c0 8.8 7.2 16 16 16s16-7.2 16-16V416h21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7c-11.7-13.3-28.9-21.7-48-21.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "java": { + "changes": [ + "5.0.10", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e4", + "label": "Java", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M277.74 312.9c9.8-6.7 23.4-12.5 23.4-12.5s-38.7 7-77.2 10.2c-47.1 3.9-97.7 4.7-123.1 1.3-60.1-8 33-30.1 33-30.1s-36.1-2.4-80.6 19c-52.5 25.4 130 37 224.5 12.1zm-85.4-32.1c-19-42.7-83.1-80.2 0-145.8C296 53.2 242.84 0 242.84 0c21.5 84.5-75.6 110.1-110.7 162.6-23.9 35.9 11.7 74.4 60.2 118.2zm114.6-176.2c.1 0-175.2 43.8-91.5 140.2 24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3zm-6.1 270.5a12.19 12.19 0 0 1-2 2.6c128.3-33.7 81.1-118.9 19.8-97.3a17.33 17.33 0 0 0-8.2 6.3 70.45 70.45 0 0 1 11-3c31-6.5 75.5 41.5-20.6 91.4zM348 437.4s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2C232.84 509.4 401 461.3 348 437.4zM124.44 396c-78.7 22 47.9 67.4 148.1 24.5a185.89 185.89 0 0 1-28.2-13.8c-44.7 8.5-65.4 9.1-106 4.5-33.5-3.8-13.9-15.2-13.9-15.2zm179.8 97.2c-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6 92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7zM260.64 353c-59.2 11.4-93.5 11.1-136.8 6.6-33.5-3.5-11.6-19.7-11.6-19.7-86.8 28.8 48.2 61.4 169.5 25.9a60.37 60.37 0 0 1-21.1-12.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jedi": { + "aliases": { + "unicodes": { + "secondary": [ + "10f669" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crest", + "force", + "sith", + "skywalker", + "star wars", + "yoda" + ] + }, + "unicode": "f669", + "label": "Jedi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M246 315.7l-21.2-31.9c-2.1-3.2-1.7-7.4 1-10.1s6.9-3.1 10.1-1l29.5 19.7c2.1 1.4 4.9 0 5-2.6L279.7 8c.1-4.5 3.8-8 8.3-8s8.1 3.5 8.3 8l9.4 281.9c.1 2.5 2.9 3.9 5 2.6l29.5-19.7c3.2-2.1 7.4-1.7 10.1 1s3.1 6.9 1 10.1L330 315.7c-1.3 1.9-.2 4.5 2 4.9l37.6 7.5c3.7 .7 6.4 4 6.4 7.8s-2.7 7.1-6.4 7.8L332 351.4c-2.2 .4-3.3 3-2 4.9l21.2 31.9c2.1 3.2 1.7 7.4-1 10.1s-6.9 3.1-10.1 1l-26.3-17.6c-2.2-1.4-5.1 .2-5 2.8l2.1 61.5C370.6 435.2 416 382.9 416 320c0-37-15.7-70.4-40.8-93.7c-7-6.5-6.5-18.6 1-24.4C410.1 175.5 432 134.3 432 88c0-16.8-2.9-33-8.2-48c-4.6-13 10.2-30 21.4-22c53.5 38 92.7 94.8 107.8 160.7c.5 2.1-.2 4.3-1.7 5.9l-28.4 28.4c-4 4-1.2 10.9 4.5 10.9h26c3.4 0 6.2 2.6 6.3 6c.1 3.3 .2 6.6 .2 10c0 17.5-1.7 34.7-4.8 51.3c-.2 1.2-.9 2.4-1.7 3.3l-46.5 46.5c-4 4-1.2 10.9 4.5 10.9H526c4.6 0 7.7 4.8 5.7 9C487.2 450.5 394.8 512 288 512S88.8 450.5 44.3 361c-2.1-4.2 1-9 5.7-9H64.5c5.7 0 8.6-6.9 4.5-10.9L22.6 294.6c-.9-.9-1.5-2-1.7-3.3C17.7 274.7 16 257.5 16 240c0-3.3 .1-6.7 .2-10c.1-3.4 2.9-6 6.3-6h26c5.7 0 8.6-6.9 4.5-10.9L24.6 184.6c-1.5-1.5-2.2-3.8-1.7-5.9C38.1 112.8 77.3 56 130.8 18c11.3-8 26 8.9 21.4 22c-5.3 15-8.2 31.2-8.2 48c0 46.3 21.9 87.5 55.8 113.9c7.5 5.8 8 17.9 1 24.4C175.7 249.6 160 283 160 320c0 62.9 45.4 115.2 105.1 126l2.1-61.5c.1-2.6-2.8-4.2-5-2.8l-26.3 17.6c-3.2 2.1-7.4 1.7-10.1-1s-3.1-6.9-1-10.1L246 356.3c1.3-1.9 .2-4.5-2-4.9l-37.6-7.5c-3.7-.7-6.4-4-6.4-7.8s2.7-7.1 6.4-7.8l37.6-7.5c2.2-.4 3.3-3 2-4.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jedi-order": { + "changes": [ + "5.0.12", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "star wars" + ] + }, + "unicode": "f50e", + "label": "Jedi Order", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M398.5 373.6c95.9-122.1 17.2-233.1 17.2-233.1 45.4 85.8-41.4 170.5-41.4 170.5 105-171.5-60.5-271.5-60.5-271.5 96.9 72.7-10.1 190.7-10.1 190.7 85.8 158.4-68.6 230.1-68.6 230.1s-.4-16.9-2.2-85.7c4.3 4.5 34.5 36.2 34.5 36.2l-24.2-47.4 62.6-9.1-62.6-9.1 20.2-55.5-31.4 45.9c-2.2-87.7-7.8-305.1-7.9-306.9v-2.4 1-1 2.4c0 1-5.6 219-7.9 306.9l-31.4-45.9 20.2 55.5-62.6 9.1 62.6 9.1-24.2 47.4 34.5-36.2c-1.8 68.8-2.2 85.7-2.2 85.7s-154.4-71.7-68.6-230.1c0 0-107-118.1-10.1-190.7 0 0-165.5 99.9-60.5 271.5 0 0-86.8-84.8-41.4-170.5 0 0-78.7 111 17.2 233.1 0 0-26.2-16.1-49.4-77.7 0 0 16.9 183.3 222 185.7h4.1c205-2.4 222-185.7 222-185.7-23.6 61.5-49.9 77.7-49.9 77.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jenkins": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b6", + "label": "Jenkis", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jet-fighter": { + "aliases": { + "names": [ + "fighter-jet" + ], + "unicodes": { + "secondary": [ + "10f0fb" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airforce", + "airplane", + "airport", + "fast", + "fly", + "goose", + "marines", + "maverick", + "military", + "plane", + "quick", + "top gun", + "transportation", + "travel" + ] + }, + "unicode": "f0fb", + "label": "Jet Fighter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767636, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 24c0-13.3 10.7-24 24-24H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H280L384 192H500.4c7.7 0 15.3 1.4 22.5 4.1L625 234.4c9 3.4 15 12 15 21.6s-6 18.2-15 21.6L522.9 315.9c-7.2 2.7-14.8 4.1-22.5 4.1H384L280 464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V320H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H82.7c8.5 0 16.6 3.4 22.6 9.4L160 192h32V48h-8c-13.3 0-24-10.7-24-24zM80 240c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jet-fighter-up": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airforce", + "airplane", + "airport", + "fast", + "fly", + "goose", + "marines", + "maverick", + "military", + "plane", + "quick", + "top gun", + "transportation", + "travel" + ] + }, + "unicode": "e518", + "label": "Jet Fighter Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767636, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M270.7 9.7C268.2 3.8 262.4 0 256 0s-12.2 3.8-14.7 9.7L197.2 112.6c-3.4 8-5.2 16.5-5.2 25.2v77l-144 84V280c0-13.3-10.7-24-24-24s-24 10.7-24 24v56 32 24c0 13.3 10.7 24 24 24s24-10.7 24-24v-8H192v32.7L133.5 468c-3.5 3-5.5 7.4-5.5 12v16c0 8.8 7.2 16 16 16h96V448c0-8.8 7.2-16 16-16s16 7.2 16 16v64h96c8.8 0 16-7.2 16-16V480c0-4.6-2-9-5.5-12L320 416.7V384H464v8c0 13.3 10.7 24 24 24s24-10.7 24-24V368 336 280c0-13.3-10.7-24-24-24s-24 10.7-24 24v18.8l-144-84v-77c0-8.7-1.8-17.2-5.2-25.2L270.7 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jira": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "unicode": "f7b1", + "label": "Jira", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M490 241.7C417.1 169 320.6 71.8 248.5 0 83 164.9 6 241.7 6 241.7c-7.9 7.9-7.9 20.7 0 28.7C138.8 402.7 67.8 331.9 248.5 512c379.4-378 15.7-16.7 241.5-241.7 8-7.9 8-20.7 0-28.6zm-241.5 90l-76-75.7 76-75.7 76 75.7-76 75.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "joget": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b7", + "label": "Joget", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M378.1 45C337.6 19.9 292.6 8 248.2 8 165 8 83.8 49.9 36.9 125.9c-71.9 116.6-35.6 269.3 81 341.2s269.3 35.6 341.2-80.9c71.9-116.6 35.6-269.4-81-341.2zm51.8 323.2c-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6zm-200.8-86.3c-55.5-1.4-81.7-20.8-58.5-48.2s51.1-40.7 68.9-51.2c17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9zm183.8-54.8c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5 31.9-14 13.4-24.6c-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "joint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f595" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blunt", + "cannabis", + "doobie", + "drugs", + "marijuana", + "roach", + "smoke", + "smoking", + "spliff" + ] + }, + "unicode": "f595", + "label": "Joint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M448 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43c0 55.2 21.9 108.1 60.9 147.1l21 21c9 9 14.1 21.2 14.1 33.9v11c0 17.7 14.3 32 32 32s32-14.3 32-32V245c0-29.7-11.8-58.2-32.8-79.2l-21-21C463.2 117.8 448 81.2 448 43V32zM576 256c0 17.7 14.3 32 32 32s32-14.3 32-32V245c0-55.2-21.9-108.1-60.9-147.1l-21-21c-9-9-14.1-21.2-14.1-33.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43c0 29.7 11.8 58.2 32.8 79.2l21 21c27 27 42.2 63.6 42.2 101.8v11zM229.8 360c-4.7-2.3-10-2.7-15.2-2c-37.8 5.6-75.2 14.3-106.9 22.8C81.3 388 58.3 395.1 42 400.4c-8.2 2.7-14.7 4.9-19.2 6.5c-2.3 .8-4 1.4-5.2 1.8l-1.3 .5C6.8 412.5 0 421.4 0 432s6.8 19.5 16.3 22.7l1.3 .5c1.2 .4 3 1.1 5.2 1.8c4.5 1.6 11 3.8 19.2 6.5c16.3 5.4 39.2 12.5 65.7 19.6C160.3 497.3 228.8 512 288 512h67.3c4.1 0 6.3-5.1 3.6-8.3L256.5 380.8c-7.4-8.9-16.5-15.9-26.7-20.8zM445 512h19 51.3c4.1 0 6.3-5.1 3.6-8.3L416.5 380.8C401.3 362.5 378.8 352 355 352H336 288c-1.1 0-2.3 0-3.4 0c-4.1 0-6.2 5.1-3.5 8.3L383.5 483.2C398.7 501.5 421.2 512 445 512zm-3.9-151.7L543.5 483.2c14.6 17.5 35.9 27.9 58.6 28.7c21.1-1.1 37.9-18.6 37.9-39.9V392c0-22.1-17.9-40-40-40H444.7c-4.1 0-6.3 5.1-3.6 8.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "joomla": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1aa", + "label": "Joomla Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "js": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b8", + "label": "JavaScript (JS)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jsfiddle": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1cc", + "label": "jsFiddle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jug-detergent": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "detergent", + "laundry", + "soap", + "wash" + ] + }, + "unicode": "e519", + "label": "Jug Detergent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24V48h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H88C74.7 96 64 85.3 64 72s10.7-24 24-24h8V24zM0 256c0-70.7 57.3-128 128-128H256c70.7 0 128 57.3 128 128V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256zm256 0v96c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "k": { + "aliases": { + "unicodes": { + "composite": [ + "6b" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter K", + "Latin Small Letter K", + "letter" + ] + }, + "unicode": "4b", + "label": "K", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M311 86.3c12.3-12.7 12-32.9-.7-45.2s-32.9-12-45.2 .7l-155.2 160L64 249V64c0-17.7-14.3-32-32-32S0 46.3 0 64V328 448c0 17.7 14.3 32 32 32s32-14.3 32-32V341l64.7-66.7 133 192c10.1 14.5 30 18.1 44.5 8.1s18.1-30 8.1-44.5L174.1 227.4 311 86.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kaaba": { + "aliases": { + "unicodes": { + "composite": [ + "1f54b" + ], + "secondary": [ + "10f66b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "building", + "cube", + "islam", + "kaaba", + "muslim", + "religion" + ] + }, + "unicode": "f66b", + "label": "Kaaba", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M60 120l228 71.2L516 120 288 48.8 60 120zM278.5 1.5c6.2-1.9 12.9-1.9 19.1 0l256 80C566.9 85.6 576 98 576 112v16 0 21.2L292.8 237.7c-3.1 1-6.4 1-9.5 0L0 149.2V128 112C0 98 9.1 85.6 22.5 81.5l256-80zm23.9 266.8L576 182.8v46.5l-52.8 16.5c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5L576 262.8V400c0 14-9.1 26.4-22.5 30.5l-256 80c-6.2 1.9-12.9 1.9-19.1 0l-256-80C9.1 426.4 0 414 0 400V262.8l43.2 13.5c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20L0 229.2V182.8l273.7 85.5c9.3 2.9 19.3 2.9 28.6 0zm-185.5-2.6c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l64 20c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20l-64-20zm352 30.5c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-64 20c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5l64-20zm-224 9.5c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l38.5 12c9.3 2.9 19.3 2.9 28.6 0l38.5-12c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-38.5 12c-3.1 1-6.4 1-9.5 0l-38.5-12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kaggle": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5fa", + "label": "Kaggle", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M304.2 501.5L158.4 320.3 298.2 185c2.6-2.7 1.7-10.5-5.3-10.5h-69.2c-3.5 0-7 1.8-10.5 5.3L80.9 313.5V7.5q0-7.5-7.5-7.5H21.5Q14 0 14 7.5v497q0 7.5 7.5 7.5h51.9q7.5 0 7.5-7.5v-109l30.8-29.3 110.5 140.6c3 3.5 6.5 5.3 10.5 5.3h66.9q5.25 0 6-3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "key": { + "aliases": { + "unicodes": { + "composite": [ + "1f511" + ], + "secondary": [ + "10f084" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "key", + "lock", + "password", + "private", + "secret", + "unlock" + ] + }, + "unicode": "f084", + "label": "Key", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V448h40c13.3 0 24-10.7 24-24V384h40c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zM376 96a40 40 0 1 1 0 80 40 40 0 1 1 0-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "keybase": { + "changes": [ + "5.0.11", + "5.8.0", + "5.10.2", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f5", + "label": "Keybase", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M286.17 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18zm111.92-147.6c-9.5-14.62-39.37-52.45-87.26-73.71q-9.1-4.06-18.38-7.27a78.43 78.43 0 0 0-47.88-104.13c-12.41-4.1-23.33-6-32.41-5.77-.6-2-1.89-11 9.4-35L198.66 32l-5.48 7.56c-8.69 12.06-16.92 23.55-24.34 34.89a51 51 0 0 0-8.29-1.25c-41.53-2.45-39-2.33-41.06-2.33-50.61 0-50.75 52.12-50.75 45.88l-2.36 36.68c-1.61 27 19.75 50.21 47.63 51.85l8.93.54a214 214 0 0 0-46.29 35.54C14 304.66 14 374 14 429.77v33.64l23.32-29.8a148.6 148.6 0 0 0 14.56 37.56c5.78 10.13 14.87 9.45 19.64 7.33 4.21-1.87 10-6.92 3.75-20.11a178.29 178.29 0 0 1-15.76-53.13l46.82-59.83-24.66 74.11c58.23-42.4 157.38-61.76 236.25-38.59 34.2 10.05 67.45.69 84.74-23.84.72-1 1.2-2.16 1.85-3.22a156.09 156.09 0 0 1 2.8 28.43c0 23.3-3.69 52.93-14.88 81.64-2.52 6.46 1.76 14.5 8.6 15.74 7.42 1.57 15.33-3.1 18.37-11.15C429 443 434 414 434 382.32c0-38.58-13-77.46-35.91-110.92zM142.37 128.58l-15.7-.93-1.39 21.79 13.13.78a93 93 0 0 0 .32 19.57l-22.38-1.34a12.28 12.28 0 0 1-11.76-12.79L107 119c1-12.17 13.87-11.27 13.26-11.32l29.11 1.73a144.35 144.35 0 0 0-7 19.17zm148.42 172.18a10.51 10.51 0 0 1-14.35-1.39l-9.68-11.49-34.42 27a8.09 8.09 0 0 1-11.13-1.08l-15.78-18.64a7.38 7.38 0 0 1 1.34-10.34l34.57-27.18-14.14-16.74-17.09 13.45a7.75 7.75 0 0 1-10.59-1s-3.72-4.42-3.8-4.53a7.38 7.38 0 0 1 1.37-10.34L214 225.19s-18.51-22-18.6-22.14a9.56 9.56 0 0 1 1.74-13.42 10.38 10.38 0 0 1 14.3 1.37l81.09 96.32a9.58 9.58 0 0 1-1.74 13.44zM187.44 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "keyboard": { + "aliases": { + "unicodes": { + "composite": [ + "2328" + ], + "secondary": [ + "10f11c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessory", + "computer", + "edit", + "input", + "keyboard", + "text", + "type", + "write" + ] + }, + "unicode": "f11c", + "label": "Keyboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm16 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80-176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V144zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zM160 336c0-8.8 7.2-16 16-16H400c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V336zM272 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM256 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM368 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM352 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V240zM464 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM448 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V240zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16z" + }, + "regular": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 112c-8.8 0-16 7.2-16 16V384c0 8.8 7.2 16 16 16H512c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16H64zM0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM176 320H400c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm-72-72c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H200c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H200c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H280c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H280c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H360c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H360c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H440c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H440c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "keycdn": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ba", + "label": "KeyCDN", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "khanda": { + "aliases": { + "unicodes": { + "composite": [ + "262c" + ], + "secondary": [ + "10f66d" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Adi Shakti", + "chakkar", + "sikh", + "sikhism", + "sword" + ] + }, + "unicode": "f66d", + "label": "Khanda", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M245.8 3.7c5.9-4.9 14.6-4.9 20.5 0l48 40c5.9 4.9 7.5 13.2 3.8 19.9l0 0 0 0 0 0 0 0-.1 .1-.3 .6c-.3 .5-.7 1.3-1.2 2.3c-1 2-2.6 5-4.4 8.6c-.5 .9-.9 1.9-1.4 2.9C344.9 97.4 368 134 368 176s-23.1 78.6-57.3 97.8c.5 1 1 2 1.4 2.9c1.8 3.7 3.3 6.6 4.4 8.6c.5 1 .9 1.8 1.2 2.3l.3 .6 .1 .1 0 0 0 0c3.6 6.7 2 15-3.8 19.9L272 343.5v19.8l35.6-24.5 41.1-28.2c42.8-29.4 68.4-78 68.4-130c0-31.1-9.2-61.6-26.5-87.5l-2.8-4.2c-4-6-3.5-14 1.3-19.5s12.7-7 19.2-3.7L401.1 80c7.2-14.3 7.2-14.3 7.2-14.3l0 0 0 0 .1 0 .3 .2 1 .5c.8 .4 2 1.1 3.5 1.9c2.9 1.7 7 4.1 11.8 7.3c9.6 6.4 22.5 16.1 35.4 29c25.7 25.7 52.7 65.6 52.7 119.3c0 53.1-26.4 100.5-51.2 133.6c-12.6 16.7-25.1 30.3-34.5 39.7c-4.7 4.7-8.7 8.4-11.5 10.9c-1.4 1.3-2.5 2.2-3.3 2.9l-.9 .8-.3 .2-.1 .1 0 0 0 0s0 0-10.2-12.3l10.2 12.3c-5.1 4.3-12.4 4.9-18.2 1.6l-75.6-43-32.7 22.5 45.5 31.3c1.8-.4 3.7-.7 5.7-.7c13.3 0 24 10.7 24 24s-10.7 24-24 24c-12.2 0-22.3-9.1-23.8-21L272 423.4v28.9c9.6 5.5 16 15.9 16 27.7c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-11.8 6.4-22.2 16-27.7V424.1l-40.3 27.7C197.8 463.3 187.9 472 176 472c-13.3 0-24-10.7-24-24s10.7-24 24-24c2.2 0 4.4 .3 6.5 .9l45.8-31.5-32.7-22.5-75.6 43c-5.8 3.3-13 2.7-18.2-1.6L112 400c-10.2 12.3-10.2 12.3-10.3 12.3l0 0 0 0-.1-.1-.3-.2-.9-.8c-.8-.7-1.9-1.7-3.3-2.9c-2.8-2.5-6.7-6.2-11.5-10.9c-9.4-9.4-21.9-23-34.5-39.7C26.4 324.5 0 277.1 0 224c0-53.7 26.9-93.6 52.7-119.3c12.9-12.9 25.8-22.6 35.4-29C93 72.5 97 70 99.9 68.4c1.5-.8 2.6-1.5 3.5-1.9l1-.5 .3-.2 .1 0 0 0 0 0s0 0 7.2 14.3l-7.2-14.3c6.5-3.2 14.3-1.7 19.2 3.7s5.3 13.4 1.3 19.5l-2.8 4.2C105.2 119 96 149.5 96 180.6c0 51.9 25.6 100.6 68.4 130l41.1 28.2L240 362.6V343.5l-42.2-35.2c-5.9-4.9-7.5-13.2-3.8-19.9l0 0 0 0 0 0 .1-.1 .3-.6c.3-.5 .7-1.3 1.2-2.3c1-2 2.6-5 4.4-8.6c.5-.9 .9-1.9 1.4-2.9C167.1 254.6 144 218 144 176s23.1-78.6 57.3-97.8c-.5-1-1-2-1.4-2.9c-1.8-3.7-3.3-6.6-4.4-8.6c-.5-1-.9-1.8-1.2-2.3l-.3-.6-.1-.1 0 0 0 0 0 0c-3.6-6.7-2-15 3.8-19.9l48-40zM220.2 122.9c-17 11.5-28.2 31-28.2 53.1s11.2 41.6 28.2 53.1C227 210.2 232 190.9 232 176s-5-34.2-11.8-53.1zm71.5 106.2c17-11.5 28.2-31 28.2-53.1s-11.2-41.6-28.2-53.1C285 141.8 280 161.1 280 176s5 34.2 11.8 53.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kickstarter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3bb", + "label": "Kickstarter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "kickstarter-k": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3bc", + "label": "Kickstarter K", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "kip-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Kip Sign", + "currency" + ] + }, + "unicode": "e1c4", + "label": "Kip Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M340.8 88.3c13.4-11.5 15-31.7 3.5-45.1s-31.7-15-45.1-3.5L128 186.4V64c0-17.7-14.3-32-32-32S64 46.3 64 64V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V325.6L299.2 472.3c13.4 11.5 33.6 9.9 45.1-3.5s9.9-33.6-3.5-45.1L182.5 288H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H182.5L340.8 88.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kit-medical": { + "aliases": { + "names": [ + "first-aid" + ], + "unicodes": { + "secondary": [ + "10f479" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emergency", + "emt", + "health", + "medical", + "rescue" + ] + }, + "unicode": "f479", + "label": "Kit Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H96V32H64zm64 0V480H448V32H128zM512 480c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H480V480h32zM256 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H320v48c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V288H208c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16h48V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kitchen-set": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chef", + "cook", + "cup", + "kitchen", + "pan", + "pot", + "skillet" + ] + }, + "unicode": "e51a", + "label": "Kitchen Set", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M240 144A96 96 0 1 0 48 144a96 96 0 1 0 192 0zm44.4 32C269.9 240.1 212.5 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0c68.5 0 125.9 47.9 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16H496c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16H284.4zM144 80a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM400 240c13.3 0 24 10.7 24 24v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24zM288 464V352H512V464c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48zM48 320h80 16 32c26.5 0 48 21.5 48 48s-21.5 48-48 48H160c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V336c0-8.8 7.2-16 16-16zm128 64c8.8 0 16-7.2 16-16s-7.2-16-16-16H160v32h16zM24 464H200c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kiwi-bird": { + "aliases": { + "unicodes": { + "secondary": [ + "10f535" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "fauna", + "new zealand" + ] + }, + "unicode": "f535", + "label": "Kiwi Bird", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M291.2 388.4c31.2-18.8 64.7-36.4 101.1-36.4H448c4.6 0 9.1-.2 13.6-.7l85.3 121.9c4 5.7 11.3 8.2 17.9 6.1s11.2-8.3 11.2-15.3V224c0-70.7-57.3-128-128-128H392.3c-36.4 0-69.9-17.6-101.1-36.4C262.3 42.1 228.3 32 192 32C86 32 0 118 0 224c0 71.1 38.6 133.1 96 166.3V456c0 13.3 10.7 24 24 24s24-10.7 24-24V410c15.3 3.9 31.4 6 48 6c5.4 0 10.7-.2 16-.7V456c0 13.3 10.7 24 24 24s24-10.7 24-24V405.1c12.4-4.4 24.2-10 35.2-16.7zM448 200a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "korvue": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42f", + "label": "KORVUE", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "l": { + "aliases": { + "unicodes": { + "composite": [ + "6c" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter L", + "Latin Small Letter L", + "letter" + ] + }, + "unicode": "4c", + "label": "L", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32c17.7 0 32 14.3 32 32V416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "land-mine-on": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bomb", + "danger", + "explosion", + "war" + ] + }, + "unicode": "e51b", + "label": "Land Mine On", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M344 24V168c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM192 320c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32v32H192V320zm-77.3 90.5c8.1-16.3 24.8-26.5 42.9-26.5H482.3c18.2 0 34.8 10.3 42.9 26.5l27.6 55.2C563.5 487 548 512 524.2 512H115.8c-23.8 0-39.3-25-28.6-46.3l27.6-55.2zM36.3 138.3c7.5-10.9 22.5-13.6 33.4-6.1l104 72c10.9 7.5 13.6 22.5 6.1 33.4s-22.5 13.6-33.4 6.1l-104-72c-10.9-7.5-13.6-22.5-6.1-33.4zm534.1-6.1c10.9-7.5 25.8-4.8 33.4 6.1s4.8 25.8-6.1 33.4l-104 72c-10.9 7.5-25.8 4.8-33.4-6.1s-4.8-25.8 6.1-33.4l104-72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "landmark": { + "aliases": { + "unicodes": { + "composite": [ + "1f3db" + ], + "secondary": [ + "10f66f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "classical", + "historic", + "memorable", + "monument", + "museum", + "politics" + ] + }, + "unicode": "f66f", + "label": "Landmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240.1 4.2c9.8-5.6 21.9-5.6 31.8 0l171.8 98.1L448 104l0 .9 47.9 27.4c12.6 7.2 18.8 22 15.1 36s-16.4 23.8-30.9 23.8H32c-14.5 0-27.2-9.8-30.9-23.8s2.5-28.8 15.1-36L64 104.9V104l4.4-1.6L240.1 4.2zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "landmark-dome": { + "aliases": { + "names": [ + "landmark-alt" + ], + "unicodes": { + "secondary": [ + "10f752" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "memorable", + "monument", + "politics" + ] + }, + "unicode": "f752", + "label": "Landmark Dome", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M248 0h16c13.3 0 24 10.7 24 24V34.7C368.4 48.1 431.9 111.6 445.3 192H448c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h2.7C80.1 111.6 143.6 48.1 224 34.7V24c0-13.3 10.7-24 24-24zM64 288h64V416h40V288h64V416h48V288h64V416h40V288h64V420.3c.6 .3 1.2 .7 1.7 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "landmark-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "capitol", + "flag", + "landmark", + "memorial" + ] + }, + "unicode": "e51c", + "label": "Landmark Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 0h80c8.8 0 16 7.2 16 16V80c0 8.8-7.2 16-16 16H272v32H464c17.7 0 32 14.3 32 32s-14.3 32-32 32H48c-17.7 0-32-14.3-32-32s14.3-32 32-32H240V16c0-8.8 7.2-16 16-16h16zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "language": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ab" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dialect", + "idiom", + "localize", + "speech", + "translate", + "vernacular" + ] + }, + "unicode": "f1ab", + "label": "Language", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H256h48 16H576c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H320 304 256 64c-35.3 0-64-28.7-64-64V128zm320 0V384H576V128H320zM178.3 175.9c-3.2-7.2-10.4-11.9-18.3-11.9s-15.1 4.7-18.3 11.9l-64 144c-4.5 10.1 .1 21.9 10.2 26.4s21.9-.1 26.4-10.2l8.9-20.1h73.6l8.9 20.1c4.5 10.1 16.3 14.6 26.4 10.2s14.6-16.3 10.2-26.4l-64-144zM160 233.2L179 276H141l19-42.8zM448 164c11 0 20 9 20 20v4h44 16c11 0 20 9 20 20s-9 20-20 20h-2l-1.6 4.5c-8.9 24.4-22.4 46.6-39.6 65.4c.9 .6 1.8 1.1 2.7 1.6l18.9 11.3c9.5 5.7 12.5 18 6.9 27.4s-18 12.5-27.4 6.9l-18.9-11.3c-4.5-2.7-8.8-5.5-13.1-8.5c-10.6 7.5-21.9 14-34 19.4l-3.6 1.6c-10.1 4.5-21.9-.1-26.4-10.2s.1-21.9 10.2-26.4l3.6-1.6c6.4-2.9 12.6-6.1 18.5-9.8l-12.2-12.2c-7.8-7.8-7.8-20.5 0-28.3s20.5-7.8 28.3 0l14.6 14.6 .5 .5c12.4-13.1 22.5-28.3 29.8-45H448 376c-11 0-20-9-20-20s9-20 20-20h52v-4c0-11 9-20 20-20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bb" + ], + "secondary": [ + "10f109" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "device", + "laptop", + "mac", + "macbook", + "machine", + "pc", + "personal" + ] + }, + "unicode": "f109", + "label": "Laptop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 32C92.7 32 64 60.7 64 96V352h64V96H512V352h64V96c0-35.3-28.7-64-64-64H128zM19.2 384C8.6 384 0 392.6 0 403.2C0 445.6 34.4 480 76.8 480H563.2c42.4 0 76.8-34.4 76.8-76.8c0-10.6-8.6-19.2-19.2-19.2H19.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop-code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5fc" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "develop", + "device", + "mac", + "macbook", + "machine", + "pc" + ] + }, + "unicode": "f5fc", + "label": "Laptop Code", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 96c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64V352H512V96H128V352H64V96zM0 403.2C0 392.6 8.6 384 19.2 384H620.8c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2zM281 209l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-48-48c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM393 175l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop-file": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "education", + "laptop", + "learning", + "remote work" + ] + }, + "unicode": "e51d", + "label": "Laptop File", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 0C92.7 0 64 28.7 64 64V288H19.2C8.6 288 0 296.6 0 307.2C0 349.6 34.4 384 76.8 384H320V288H128V64H448V96h64V64c0-35.3-28.7-64-64-64H128zM512 128H400c-26.5 0-48 21.5-48 48V464c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V256H544c-17.7 0-32-14.3-32-32V128zm32 0v96h96l-96-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f812" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "device", + "ehr", + "electronic health records", + "history" + ] + }, + "unicode": "f812", + "label": "Laptop Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 96c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64V352H512V96H128V352H64V96zM0 403.2C0 392.6 8.6 384 19.2 384H620.8c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2zM288 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H352v48c0 8.8-7.2 16-16 16H304c-8.8 0-16-7.2-16-16V272H240c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h48V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laravel": { + "changes": [ + "5.0.0", + "5.0.3", + "5.11.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3bd", + "label": "Laravel", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.4,115.83a5.72,5.72,0,0,0-.28-.68,8.52,8.52,0,0,0-.53-1.25,6,6,0,0,0-.54-.71,9.36,9.36,0,0,0-.72-.94c-.23-.22-.52-.4-.77-.6a8.84,8.84,0,0,0-.9-.68L404.4,55.55a8,8,0,0,0-8,0L300.12,111h0a8.07,8.07,0,0,0-.88.69,7.68,7.68,0,0,0-.78.6,8.23,8.23,0,0,0-.72.93c-.17.24-.39.45-.54.71a9.7,9.7,0,0,0-.52,1.25c-.08.23-.21.44-.28.68a8.08,8.08,0,0,0-.28,2.08V223.18l-80.22,46.19V63.44a7.8,7.8,0,0,0-.28-2.09c-.06-.24-.2-.45-.28-.68a8.35,8.35,0,0,0-.52-1.24c-.14-.26-.37-.47-.54-.72a9.36,9.36,0,0,0-.72-.94,9.46,9.46,0,0,0-.78-.6,9.8,9.8,0,0,0-.88-.68h0L115.61,1.07a8,8,0,0,0-8,0L11.34,56.49h0a6.52,6.52,0,0,0-.88.69,7.81,7.81,0,0,0-.79.6,8.15,8.15,0,0,0-.71.93c-.18.25-.4.46-.55.72a7.88,7.88,0,0,0-.51,1.24,6.46,6.46,0,0,0-.29.67,8.18,8.18,0,0,0-.28,2.1v329.7a8,8,0,0,0,4,6.95l192.5,110.84a8.83,8.83,0,0,0,1.33.54c.21.08.41.2.63.26a7.92,7.92,0,0,0,4.1,0c.2-.05.37-.16.55-.22a8.6,8.6,0,0,0,1.4-.58L404.4,400.09a8,8,0,0,0,4-6.95V287.88l92.24-53.11a8,8,0,0,0,4-7V117.92A8.63,8.63,0,0,0,504.4,115.83ZM111.6,17.28h0l80.19,46.15-80.2,46.18L31.41,63.44Zm88.25,60V278.6l-46.53,26.79-33.69,19.4V123.5l46.53-26.79Zm0,412.78L23.37,388.5V77.32L57.06,96.7l46.52,26.8V338.68a6.94,6.94,0,0,0,.12.9,8,8,0,0,0,.16,1.18h0a5.92,5.92,0,0,0,.38.9,6.38,6.38,0,0,0,.42,1v0a8.54,8.54,0,0,0,.6.78,7.62,7.62,0,0,0,.66.84l0,0c.23.22.52.38.77.58a8.93,8.93,0,0,0,.86.66l0,0,0,0,92.19,52.18Zm8-106.17-80.06-45.32,84.09-48.41,92.26-53.11,80.13,46.13-58.8,33.56Zm184.52,4.57L215.88,490.11V397.8L346.6,323.2l45.77-26.15Zm0-119.13L358.68,250l-46.53-26.79V131.79l33.69,19.4L392.37,178Zm8-105.28-80.2-46.17,80.2-46.16,80.18,46.15Zm8,105.28V178L455,151.19l33.68-19.4v91.39h0Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "lari-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lari Sign", + "currency" + ] + }, + "unicode": "e1c8", + "label": "Lari Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144 32c17.7 0 32 14.3 32 32V96.7c5.3-.4 10.6-.7 16-.7s10.7 .2 16 .7V64c0-17.7 14.3-32 32-32s32 14.3 32 32v49.4c54.9 25.2 95.8 75.5 108.2 136.2c3.5 17.3-7.7 34.2-25 37.7s-34.2-7.7-37.7-25c-6.1-29.9-22.5-55.9-45.4-74.3V256c0 17.7-14.3 32-32 32s-32-14.3-32-32V161c-5.2-.7-10.6-1-16-1s-10.8 .3-16 1v95c0 17.7-14.3 32-32 32s-32-14.3-32-32V188.1C82.7 211.5 64 247.6 64 288c0 70.7 57.3 128 128 128H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H192 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48.9C18.5 382 0 337.2 0 288c0-77.5 45.9-144.3 112-174.6V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lastfm": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f202", + "label": "last.fm", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "layer-group": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5fd" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "develop", + "layers", + "map", + "stack" + ] + }, + "unicode": "f5fd", + "label": "Layer Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M264.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 149.8C37.4 145.8 32 137.3 32 128s5.4-17.9 13.9-21.8L264.5 5.2zM476.9 209.6l53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 277.8C37.4 273.8 32 265.3 32 256s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0l152-70.2zm-152 198.2l152-70.2 53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 405.8C37.4 401.8 32 393.3 32 384s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "leaf": { + "aliases": { + "unicodes": { + "secondary": [ + "10f06c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "flora", + "nature", + "plant", + "vegan" + ] + }, + "unicode": "f06c", + "label": "Leaf", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 96c-78.6 0-145.1 51.5-167.7 122.5c33.6-17 71.5-26.5 111.7-26.5h88c8.8 0 16 7.2 16 16s-7.2 16-16 16H288 216s0 0 0 0c-16.6 0-32.7 1.9-48.2 5.4c-25.9 5.9-50 16.4-71.4 30.7c0 0 0 0 0 0C38.3 298.8 0 364.9 0 440v16c0 13.3 10.7 24 24 24s24-10.7 24-24V440c0-48.7 20.7-92.5 53.8-123.2C121.6 392.3 190.3 448 272 448l1 0c132.1-.7 239-130.9 239-291.4c0-42.6-7.5-83.1-21.1-119.6c-2.6-6.9-12.7-6.6-16.2-.1C455.9 72.1 418.7 96 376 96L272 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "leanpub": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f212", + "label": "Leanpub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "left-long": { + "aliases": { + "names": [ + "long-arrow-alt-left" + ], + "unicodes": { + "secondary": [ + "10f30a" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "long-arrow-left", + "previous" + ] + }, + "unicode": "f30a", + "label": "Left Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.5 414c-8.8 3.8-19 2-26-4.6l-144-136C2.7 268.9 0 262.6 0 256s2.7-12.9 7.5-17.4l144-136c7-6.6 17.2-8.4 26-4.6s14.5 12.5 14.5 22l0 72 288 0c17.7 0 32 14.3 32 32l0 64c0 17.7-14.3 32-32 32l-288 0 0 72c0 9.6-5.7 18.2-14.5 22z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "left-right": { + "aliases": { + "names": [ + "arrows-alt-h" + ], + "unicodes": { + "composite": [ + "2194" + ], + "secondary": [ + "10f337" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows-h", + "expand", + "horizontal", + "landscape", + "left-right arrow", + "resize", + "wide" + ] + }, + "unicode": "f337", + "label": "Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.3 273.6c4.9-4.5 7.7-10.9 7.7-17.6s-2.8-13-7.7-17.6l-112-104c-7-6.5-17.2-8.2-25.9-4.4s-14.4 12.5-14.4 22l0 56-192 0 0-56c0-9.5-5.7-18.2-14.4-22s-18.9-2.1-25.9 4.4l-112 104C2.8 243 0 249.3 0 256s2.8 13 7.7 17.6l112 104c7 6.5 17.2 8.2 25.9 4.4s14.4-12.5 14.4-22l0-56 192 0 0 56c0 9.5 5.7 18.2 14.4 22s18.9 2.1 25.9-4.4l112-104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lemon": { + "aliases": { + "unicodes": { + "composite": [ + "1f34b" + ], + "secondary": [ + "10f094" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "citrus", + "fruit", + "lemon", + "lemonade", + "lime", + "tart" + ] + }, + "unicode": "f094", + "label": "Lemon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64c-6.6 0-13 1-19 2.9c-22.5 7-48.1 14.9-71 9c-75.2-19.1-156.4 11-213.7 68.3S-7.2 250.8 11.9 326c5.8 22.9-2 48.4-9 71C1 403 0 409.4 0 416c0 35.3 28.7 64 64 64c6.6 0 13-1 19.1-2.9c22.5-7 48.1-14.9 71-9c75.2 19.1 156.4-11 213.7-68.3s87.5-138.5 68.3-213.7c-5.8-22.9 2-48.4 9-71c1.9-6 2.9-12.4 2.9-19.1zM212.5 127.4c-54.6 16-101.1 62.5-117.1 117.1C92.9 253 84 257.8 75.5 255.4S62.2 244 64.6 235.5c19.1-65.1 73.7-119.8 138.9-138.9c8.5-2.5 17.4 2.4 19.9 10.9s-2.4 17.4-10.9 19.9z" + }, + "regular": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 80c-3.2 0-6.2 .4-8.9 1.3C340 86.8 313 91.9 284.8 84.6C227.4 69.7 160.2 92 110.1 142.1S37.7 259.4 52.6 316.8c7.3 28.2 2.2 55.2-3.3 74.3c-.8 2.8-1.3 5.8-1.3 8.9c0 17.7 14.3 32 32 32c3.2 0 6.2-.4 8.9-1.3c19.1-5.5 46.1-10.7 74.3-3.3c57.4 14.9 124.6-7.4 174.7-57.5s72.4-117.3 57.5-174.7c-7.3-28.2-2.2-55.2 3.3-74.3c.8-2.8 1.3-5.8 1.3-8.9c0-17.7-14.3-32-32-32zm0-48c44.2 0 80 35.8 80 80c0 7.7-1.1 15.2-3.1 22.3c-4.6 15.8-7.1 32.9-3 48.9c20.1 77.6-10.9 161.5-70 220.7s-143.1 90.2-220.7 70c-16-4.1-33-1.6-48.9 3c-7.1 2-14.6 3.1-22.3 3.1c-44.2 0-80-35.8-80-80c0-7.7 1.1-15.2 3.1-22.3c4.6-15.8 7.1-32.9 3-48.9C-14 251.3 17 167.3 76.2 108.2S219.3 18 296.8 38.1c16 4.1 33 1.6 48.9-3c7.1-2 14.6-3.1 22.3-3.1zM246.7 167c-52 15.2-96.5 59.7-111.7 111.7c-3.7 12.7-17.1 20-29.8 16.3s-20-17.1-16.3-29.8c19.8-67.7 76.6-124.5 144.3-144.3c12.7-3.7 26.1 3.6 29.8 16.3s-3.6 26.1-16.3 29.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "less": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41d", + "label": "Less", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "less-than": { + "aliases": { + "unicodes": { + "composite": [ + "f536" + ], + "primary": [ + "f536" + ], + "secondary": [ + "103c", + "10f536" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Less-Than Sign", + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "3c", + "label": "Less Than", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M380.6 81.7c7.9 15.8 1.5 35-14.3 42.9L103.6 256 366.3 387.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-320-160C6.8 279.2 0 268.1 0 256s6.8-23.2 17.7-28.6l320-160c15.8-7.9 35-1.5 42.9 14.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "less-than-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f537" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "f537", + "label": "Less Than Equal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M395.9 93.7c16.4-6.6 24.4-25.2 17.8-41.6s-25.2-24.4-41.6-17.8l-320 128C40 167.1 32 178.9 32 192s8 24.9 20.1 29.7l320 128c16.4 6.6 35-1.4 41.6-17.8s-1.4-35-17.8-41.6L150.2 192 395.9 93.7zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "life-ring": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1cd" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coast guard", + "help", + "overboard", + "save", + "support" + ] + }, + "unicode": "f1cd", + "label": "Life Ring", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767636, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M367.2 412.5C335.9 434.9 297.5 448 256 448s-79.9-13.1-111.2-35.5l58-58c15.8 8.6 34 13.5 53.3 13.5s37.4-4.9 53.3-13.5l58 58zm90.7 .8c33.8-43.4 54-98 54-157.3s-20.2-113.9-54-157.3c9-12.5 7.9-30.1-3.4-41.3S425.8 45 413.3 54C369.9 20.2 315.3 0 256 0S142.1 20.2 98.7 54c-12.5-9-30.1-7.9-41.3 3.4S45 86.2 54 98.7C20.2 142.1 0 196.7 0 256s20.2 113.9 54 157.3c-9 12.5-7.9 30.1 3.4 41.3S86.2 467 98.7 458c43.4 33.8 98 54 157.3 54s113.9-20.2 157.3-54c12.5 9 30.1 7.9 41.3-3.4s12.4-28.8 3.4-41.3zm-45.5-46.1l-58-58c8.6-15.8 13.5-34 13.5-53.3s-4.9-37.4-13.5-53.3l58-58C434.9 176.1 448 214.5 448 256s-13.1 79.9-35.5 111.2zM367.2 99.5l-58 58c-15.8-8.6-34-13.5-53.3-13.5s-37.4 4.9-53.3 13.5l-58-58C176.1 77.1 214.5 64 256 64s79.9 13.1 111.2 35.5zM157.5 309.3l-58 58C77.1 335.9 64 297.5 64 256s13.1-79.9 35.5-111.2l58 58c-8.6 15.8-13.5 34-13.5 53.3s4.9 37.4 13.5 53.3zM208 256a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + }, + "regular": { + "lastModified": 1684767636, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M385.1 419.1C349.7 447.2 304.8 464 256 464s-93.7-16.8-129.1-44.9l80.4-80.4c14.3 8.4 31 13.3 48.8 13.3s34.5-4.8 48.8-13.3l80.4 80.4zm68.1 .2C489.9 374.9 512 318.1 512 256s-22.1-118.9-58.8-163.3L465 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L419.3 58.8C374.9 22.1 318.1 0 256 0S137.1 22.1 92.7 58.8L81 47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L58.8 92.7C22.1 137.1 0 193.9 0 256s22.1 118.9 58.8 163.3L47 431c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l11.8-11.8C137.1 489.9 193.9 512 256 512s118.9-22.1 163.3-58.8L431 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-11.8-11.8zm-34.1-34.1l-80.4-80.4c8.4-14.3 13.3-31 13.3-48.8s-4.8-34.5-13.3-48.8l80.4-80.4C447.2 162.3 464 207.2 464 256s-16.8 93.7-44.9 129.1zM385.1 92.9l-80.4 80.4c-14.3-8.4-31-13.3-48.8-13.3s-34.5 4.8-48.8 13.3L126.9 92.9C162.3 64.8 207.2 48 256 48s93.7 16.8 129.1 44.9zM173.3 304.8L92.9 385.1C64.8 349.7 48 304.8 48 256s16.8-93.7 44.9-129.1l80.4 80.4c-8.4 14.3-13.3 31-13.3 48.8s4.8 34.5 13.3 48.8zM208 256a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "lightbulb": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a1" + ], + "secondary": [ + "10f0eb" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + " comic", + " electric", + " idea", + " innovation", + " inspiration", + " light", + " light bulb", + " bulb", + "bulb", + "comic", + "electric", + "energy", + "idea", + "inspiration", + "mechanical" + ] + }, + "unicode": "f0eb", + "label": "Lightbulb", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M272 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C368 78.8 289.2 0 192 0S16 78.8 16 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0c19.8 27.1 39.7 54.4 49.2 86.2H272zM192 512c44.2 0 80-35.8 80-80V416H112v16c0 44.2 35.8 80 80 80zM112 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z" + }, + "regular": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M297.2 248.9C311.6 228.3 320 203.2 320 176c0-70.7-57.3-128-128-128S64 105.3 64 176c0 27.2 8.4 52.3 22.8 72.9c3.7 5.3 8.1 11.3 12.8 17.7l0 0c12.9 17.7 28.3 38.9 39.8 59.8c10.4 19 15.7 38.8 18.3 57.5H109c-2.2-12-5.9-23.7-11.8-34.5c-9.9-18-22.2-34.9-34.5-51.8l0 0 0 0c-5.2-7.1-10.4-14.2-15.4-21.4C27.6 247.9 16 213.3 16 176C16 78.8 94.8 0 192 0s176 78.8 176 176c0 37.3-11.6 71.9-31.4 100.3c-5 7.2-10.2 14.3-15.4 21.4l0 0 0 0c-12.3 16.8-24.6 33.7-34.5 51.8c-5.9 10.8-9.6 22.5-11.8 34.5H226.4c2.6-18.7 7.9-38.6 18.3-57.5c11.5-20.9 26.9-42.1 39.8-59.8l0 0 0 0 0 0c4.7-6.4 9-12.4 12.7-17.7zM192 128c-26.5 0-48 21.5-48 48c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16s-7.2 16-16 16zm0 384c-44.2 0-80-35.8-80-80V416H272v16c0 44.2-35.8 80-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "line": { + "changes": [ + "5.0.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c0", + "label": "Line", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1672840969, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M311 196.8v81.3c0 2.1-1.6 3.7-3.7 3.7h-13c-1.3 0-2.4-.7-3-1.5l-37.3-50.3v48.2c0 2.1-1.6 3.7-3.7 3.7h-13c-2.1 0-3.7-1.6-3.7-3.7V196.9c0-2.1 1.6-3.7 3.7-3.7h12.9c1.1 0 2.4 .6 3 1.6l37.3 50.3V196.9c0-2.1 1.6-3.7 3.7-3.7h13c2.1-.1 3.8 1.6 3.8 3.5zm-93.7-3.7h-13c-2.1 0-3.7 1.6-3.7 3.7v81.3c0 2.1 1.6 3.7 3.7 3.7h13c2.1 0 3.7-1.6 3.7-3.7V196.8c0-1.9-1.6-3.7-3.7-3.7zm-31.4 68.1H150.3V196.8c0-2.1-1.6-3.7-3.7-3.7h-13c-2.1 0-3.7 1.6-3.7 3.7v81.3c0 1 .3 1.8 1 2.5c.7 .6 1.5 1 2.5 1h52.2c2.1 0 3.7-1.6 3.7-3.7v-13c0-1.9-1.6-3.7-3.5-3.7zm193.7-68.1H327.3c-1.9 0-3.7 1.6-3.7 3.7v81.3c0 1.9 1.6 3.7 3.7 3.7h52.2c2.1 0 3.7-1.6 3.7-3.7V265c0-2.1-1.6-3.7-3.7-3.7H344V247.7h35.5c2.1 0 3.7-1.6 3.7-3.7V230.9c0-2.1-1.6-3.7-3.7-3.7H344V213.5h35.5c2.1 0 3.7-1.6 3.7-3.7v-13c-.1-1.9-1.7-3.7-3.7-3.7zM512 93.4V419.4c-.1 51.2-42.1 92.7-93.4 92.6H92.6C41.4 511.9-.1 469.8 0 418.6V92.6C.1 41.4 42.2-.1 93.4 0H419.4c51.2 .1 92.7 42.1 92.6 93.4zM441.6 233.5c0-83.4-83.7-151.3-186.4-151.3s-186.4 67.9-186.4 151.3c0 74.7 66.3 137.4 155.9 149.3c21.8 4.7 19.3 12.7 14.4 42.1c-.8 4.7-3.8 18.4 16.1 10.1s107.3-63.2 146.5-108.2c27-29.7 39.9-59.8 39.9-93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "lines-leaning": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "canted", + "domino", + "falling", + "resilience", + "resilient", + "tipped" + ] + }, + "unicode": "e51e", + "label": "Lines Leaning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M190.4 74.1c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2l-128 384c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l128-384zm70.9-41.7c-17.4-2.9-33.9 8.9-36.8 26.3l-64 384c-2.9 17.4 8.9 33.9 26.3 36.8s33.9-8.9 36.8-26.3l64-384c2.9-17.4-8.9-33.9-26.3-36.8zM352 32c-17.7 0-32 14.3-32 32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "link": { + "aliases": { + "names": [ + "chain" + ], + "unicodes": { + "composite": [ + "1f517" + ], + "secondary": [ + "10f0c1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attach", + "attachment", + "chain", + "connect", + "lin", + "link" + ] + }, + "unicode": "f0c1", + "label": "Link", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "link-slash": { + "aliases": { + "names": [ + "chain-broken", + "chain-slash", + "unlink" + ], + "unicodes": { + "secondary": [ + "10f127" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attachment", + "chain", + "chain-broken", + "remove" + ] + }, + "unicode": "f127", + "label": "Link Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L489.3 358.2l90.5-90.5c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114l-96 96-31.9-25C430.9 239.6 420.1 175.1 377 132c-52.2-52.3-134.5-56.2-191.3-11.7L38.8 5.1zM239 162c30.1-14.9 67.7-9.9 92.8 15.3c20 20 27.5 48.3 21.7 74.5L239 162zM406.6 416.4L220.9 270c-2.1 39.8 12.2 80.1 42.2 110c38.9 38.9 94.4 51 143.6 36.3zm-290-228.5L60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l61.8-61.8-50.6-39.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "linkedin": { + "changes": [ + "1.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin-square" + ] + }, + "unicode": "f08c", + "label": "LinkedIn", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "linkedin-in": { + "changes": [ + "2.0.0", + "5.0.0", + "5.4.1", + "5.8.0", + "5.8.1" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin" + ] + }, + "unicode": "f0e1", + "label": "LinkedIn In", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "linode": { + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b8", + "label": "Linode", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M366.036,186.867l-59.5,36.871-.838,36.871-29.329-19.273-39.384,24.3c2.238,55.211,2.483,59.271,2.51,59.5l-97.2,65.359L127.214,285.748l108.1-62.01L195.09,197.761l-75.417,38.547L98.723,93.015,227.771,43.574,136.432,0,10.737,39.385,38.39,174.3l41.9,32.681L48.445,222.062,69.394,323.457,98.723,351.11,77.774,363.679l16.76,78.769L160.733,512c-10.8-74.842-11.658-78.641-11.725-78.773l77.925-55.3c16.759-12.57,15.083-10.894,15.083-10.894l.838,24.3,33.519,28.491-.838-77.093,46.927-33.519,26.815-18.435-2.514,36.033,25.139,17.6,6.7-74.579,58.657-43.575Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "linux": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "tux" + ] + }, + "unicode": "f17c", + "label": "Linux", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6.2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5.1-1.3.6-3.4 1.5-3.2 2.9.1 1 1.8 1.5 2.8 1.4zM420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7.1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9.6 7.9 1.2 11.8 1.2 8.1 2.5 15.7.8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1.6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3.4-8.2-4.4-17.3-15.5-29.7zM223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8zM183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4.7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1zm-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3-1.4-4.9 0-9 4.2-12.3zm3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6.6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9zm-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7.8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4.6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1.8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7.4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2zm257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6.8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1.3-.2.7-.3 1-.5.8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "lira-sign": { + "aliases": { + "unicodes": { + "composite": [ + "20a4" + ], + "secondary": [ + "10f195" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lira Sign", + "currency" + ] + }, + "unicode": "f195", + "label": "Lira Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H46c-2.2 10.5-6.1 20.6-11.7 29.9L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1c11.6-19.3 18.9-40.7 21.6-62.9H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list": { + "aliases": { + "names": [ + "list-squares" + ], + "unicodes": { + "secondary": [ + "10f03a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f03a", + "label": "List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list-check": { + "aliases": { + "names": [ + "tasks" + ], + "unicodes": { + "secondary": [ + "10f0ae" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "downloading", + "downloads", + "loading", + "progress", + "project management", + "settings", + "to do" + ] + }, + "unicode": "f0ae", + "label": "List Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113C-2.3 103.6-2.3 88.4 7 79s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zM160 416c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-17.7 0-32-14.3-32-32zM48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list-ol": { + "aliases": { + "names": [ + "list-1-2", + "list-numeric" + ], + "unicodes": { + "secondary": [ + "10f0cb" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "numbers", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f0cb", + "label": "List Ol", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 56c0-13.3 10.7-24 24-24H80c13.3 0 24 10.7 24 24V176h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H40c-13.3 0-24-10.7-24-24s10.7-24 24-24H56V80H48C34.7 80 24 69.3 24 56zM86.7 341.2c-6.5-7.4-18.3-6.9-24 1.2L51.5 357.9c-7.7 10.8-22.7 13.3-33.5 5.6s-13.3-22.7-5.6-33.5l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9c21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H32c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6 .3-20.5zM224 64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list-ul": { + "aliases": { + "names": [ + "list-dots" + ], + "unicodes": { + "secondary": [ + "10f0ca" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f0ca", + "label": "List Ul", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 144a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM64 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48-208a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "litecoin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e1d3", + "label": "Litecoin Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M128 64c0-17.7-14.3-32-32-32S64 46.3 64 64V213.6L23.2 225.2c-17 4.9-26.8 22.6-22 39.6s22.6 26.8 39.6 22L64 280.1V448c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V261.9l136.8-39.1c17-4.9 26.8-22.6 22-39.6s-22.6-26.8-39.6-22L128 195.3V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-arrow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f124" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "compass", + "coordinate", + "direction", + "gps", + "map", + "navigation", + "place" + ] + }, + "unicode": "f124", + "label": "Location Arrow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M429.6 92.1c4.9-11.9 2.1-25.6-7-34.7s-22.8-11.9-34.7-7l-352 144c-14.2 5.8-22.2 20.8-19.3 35.8s16.1 25.8 31.4 25.8H224V432c0 15.3 10.8 28.4 25.8 31.4s30-5.1 35.8-19.3l144-352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-crosshairs": { + "aliases": { + "names": [ + "location" + ], + "unicodes": { + "secondary": [ + "10f601" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinate", + "direction", + "gps", + "location", + "map", + "navigation", + "place", + "where" + ] + }, + "unicode": "f601", + "label": "Location Crosshairs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V66.7C368.4 80.1 431.9 143.6 445.3 224H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H445.3C431.9 368.4 368.4 431.9 288 445.3V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.3C143.6 431.9 80.1 368.4 66.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H66.7C80.1 143.6 143.6 80.1 224 66.7V32c0-17.7 14.3-32 32-32zM128 256a128 128 0 1 0 256 0 128 128 0 1 0 -256 0zm128-80a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-dot": { + "aliases": { + "names": [ + "map-marker-alt" + ], + "unicodes": { + "secondary": [ + "10f3c5" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f3c5", + "label": "Location Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-pin": { + "aliases": { + "names": [ + "map-marker" + ], + "unicodes": { + "secondary": [ + "10f041" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f041", + "label": "Location Pin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192c0 87.4-117 243-168.3 307.2c-12.3 15.3-35.1 15.3-47.4 0C117 435 0 279.4 0 192C0 86 86 0 192 0S384 86 384 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-pin-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "map", + "quarantine" + ] + }, + "unicode": "e51f", + "label": "Location Pin Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215.7 499.2c11-13.8 25.1-31.7 40.3-52.3V352c0-23.7 12.9-44.4 32-55.4V272c0-55.6 40.5-101.7 93.6-110.5C367 70 287.7 0 192 0C86 0 0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM400 240c17.7 0 32 14.3 32 32v48H368V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lock": { + "aliases": { + "unicodes": { + "composite": [ + "1f512" + ], + "secondary": [ + "10f023" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "closed", + "lock", + "locked", + "open", + "password", + "private", + "protect", + "security" + ] + }, + "unicode": "f023", + "label": "Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lock-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f3c1" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "private", + "protect", + "security", + "unlock" + ] + }, + "unicode": "f3c1", + "label": "Lock Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M352 144c0-44.2 35.8-80 80-80s80 35.8 80 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32V144C576 64.5 511.5 0 432 0S288 64.5 288 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H352V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "locust": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "horde", + "infestation", + "locust", + "plague", + "swarm" + ] + }, + "unicode": "e520", + "label": "Locust", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h16c98.7 0 180.6 71.4 197 165.4c-9-3.5-18.8-5.4-29-5.4H431.8l-41.8-97.5c-3.4-7.9-10.8-13.4-19.3-14.4s-17 2.7-22.1 9.6l-40.9 55.5-21.7-50.7c-3.3-7.8-10.5-13.2-18.9-14.3s-16.7 2.3-22 8.9l-240 304c-8.2 10.4-6.4 25.5 4 33.7s25.5 6.4 33.7-4l79.4-100.5 43 16.4-40.5 55c-7.9 10.7-5.6 25.7 5.1 33.6s25.7 5.6 33.6-5.1L215.1 400h74.5l-29.3 42.3c-7.5 10.9-4.8 25.8 6.1 33.4s25.8 4.8 33.4-6.1L348 400h80.4l38.8 67.9c6.6 11.5 21.2 15.5 32.7 8.9s15.5-21.2 8.9-32.7L483.6 400H496c44.1 0 79.8-35.7 80-79.7c0-.1 0-.2 0-.3V280C576 143 465 32 328 32H312zm50.5 168l17.1 40H333l29.5-40zm-87.7 38.1l-1.4 1.9H225.1l32.7-41.5 16.9 39.5zM88.8 240C57.4 240 32 265.4 32 296.8c0 15.5 6.3 30 16.9 40.4L126.7 240H88.8zM496 288a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lungs": { + "aliases": { + "unicodes": { + "composite": [ + "1fac1" + ], + "secondary": [ + "10f604" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "breath", + "covid-19", + "exhalation", + "inhalation", + "lungs", + "organ", + "respiration", + "respiratory" + ] + }, + "unicode": "f604", + "label": "Lungs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V164.1c0 16.4 8.4 31.7 22.2 40.5l9.8 6.2V165.3C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8c15.4 22.1 44.3 65.4 71 116.9c26.5 50.9 52.4 112.5 59.6 170.3c.2 1.3 .2 2.6 .2 4v7c0 49.1-39.8 89-89 89c-7.3 0-14.5-.9-21.6-2.7l-72.7-18.2C414 480.5 384 442.1 384 398V325l90.5 57.6c7.5 4.7 17.3 2.5 22.1-4.9s2.5-17.3-4.9-22.1L384 287.1v-.4l-44.1-28.1c-7.3-4.6-13.9-10.1-19.9-16.1c-5.9 6-12.6 11.5-19.9 16.1L256 286.7 161.2 347l-13.5 8.6c0 0 0 0-.1 0c-7.4 4.8-9.6 14.6-4.8 22.1c4.7 7.5 14.6 9.7 22.1 4.9l91.1-58V398c0 44.1-30 82.5-72.7 93.1l-72.7 18.2c-7.1 1.8-14.3 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3 .1-2.7 .2-4c7.2-57.9 33.1-119.4 59.6-170.3c26.8-51.5 55.6-94.8 71-116.9c13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v45.5l9.8-6.2c13.8-8.8 22.2-24.1 22.2-40.5V32c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lungs-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e067" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "flu", + "infection", + "pandemic", + "respiratory", + "sick" + ] + }, + "unicode": "e067", + "label": "Lungs Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V156.2c-8.5-7.6-19.7-12.2-32-12.2s-23.5 4.6-32 12.2V32c0-17.7 14.3-32 32-32zM444.5 195.5c-16.4-16.4-41.8-18.5-60.5-6.1V165.3C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8c15.4 22.1 44.3 65.4 71 116.9c26.5 50.9 52.4 112.5 59.6 170.3c.2 1.3 .2 2.6 .2 4v7c0 49.1-39.8 89-89 89c-7.3 0-14.5-.9-21.6-2.7l-72.7-18.2c-20.9-5.2-38.7-17.1-51.5-32.9c14 1.5 28.5-3 39.2-13.8l-22.6-22.6 22.6 22.6c18.7-18.7 18.7-49.1 0-67.9c-1.1-1.1-1.4-2-1.5-2.5c-.1-.8-.1-1.8 .4-2.9s1.2-1.9 1.8-2.3c.5-.3 1.3-.8 2.9-.8c26.5 0 48-21.5 48-48s-21.5-48-48-48c-1.6 0-2.4-.4-2.9-.8c-.6-.4-1.3-1.2-1.8-2.3s-.5-2.2-.4-2.9c.1-.6 .4-1.4 1.5-2.5c18.7-18.7 18.7-49.1 0-67.9zM421.8 421.8c-6.2 6.2-16.4 6.2-22.6 0C375.9 398.5 336 415 336 448c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C241.5 375.9 225 336 192 336c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C264.1 241.5 304 225 304 192c0-8.8 7.2-16 16-16s16 7.2 16 16c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C398.5 264.1 415 304 448 304c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6zM183.3 491.2l-72.7 18.2c-7.1 1.8-14.3 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3 .1-2.7 .2-4c7.2-57.9 33.1-119.4 59.6-170.3c26.8-51.5 55.6-94.8 71-116.9c13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v24.1c-18.6-12.4-44-10.3-60.5 6.1c-18.7 18.7-18.7 49.1 0 67.9c1.1 1.1 1.4 2 1.5 2.5c.1 .8 .1 1.8-.4 2.9s-1.2 1.9-1.8 2.3c-.5 .3-1.3 .8-2.9 .8c-26.5 0-48 21.5-48 48s21.5 48 48 48c1.6 0 2.4 .4 2.9 .8c.6 .4 1.3 1.2 1.8 2.3s.5 2.2 .4 2.9c-.1 .6-.4 1.4-1.5 2.5c-18.7 18.7-18.7 49.1 0 67.9c10.7 10.7 25.3 15.3 39.2 13.8c-12.8 15.9-30.6 27.7-51.5 32.9zM296 320a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm72 32a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lyft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c3", + "label": "lyft", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "m": { + "aliases": { + "unicodes": { + "composite": [ + "6d" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter M", + "Latin Small Letter M", + "letter" + ] + }, + "unicode": "4d", + "label": "M", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M22.7 33.4c13.5-4.1 28.1 1.1 35.9 12.9L224 294.3 389.4 46.2c7.8-11.7 22.4-17 35.9-12.9S448 49.9 448 64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V169.7L250.6 369.8c-5.9 8.9-15.9 14.2-26.6 14.2s-20.7-5.3-26.6-14.2L64 169.7V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 49.9 9.2 37.5 22.7 33.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magento": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c4", + "label": "Magento", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "magnet": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f2" + ], + "secondary": [ + "10f076" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Attract", + "attraction", + "horseshoe", + "lodestone", + "magnet", + "magnetic", + "tool" + ] + }, + "unicode": "f076", + "label": "Magnet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 160v96C0 379.7 100.3 480 224 480s224-100.3 224-224V160H320v96c0 53-43 96-96 96s-96-43-96-96V160H0zm0-32H128V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64zm320 0H448V64c0-17.7-14.3-32-32-32H352c-17.7 0-32 14.3-32 32v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass": { + "aliases": { + "names": [ + "search" + ], + "unicodes": { + "composite": [ + "1f50d" + ], + "secondary": [ + "10f002" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "glass", + "magnify", + "magnifying", + "magnifying glass tilted left", + "preview", + "search", + "tool", + "zoom" + ] + }, + "unicode": "f002", + "label": "Magnifying Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "find", + "next", + "search" + ] + }, + "unicode": "e521", + "label": "Magnifying Glass Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM241 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31H120c-13.3 0-24 10.7-24 24s10.7 24 24 24H238.1l-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9l-72-72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-chart": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + " data", + " graph", + " intelligence", + "analysis", + "chart", + "market" + ] + }, + "unicode": "e522", + "label": "Magnifying Glass Chart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zm-312 8v64c0 13.3 10.7 24 24 24s24-10.7 24-24l0-64c0-13.3-10.7-24-24-24s-24 10.7-24 24zm80-96V280c0 13.3 10.7 24 24 24s24-10.7 24-24V120c0-13.3-10.7-24-24-24s-24 10.7-24 24zm80 64v96c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-dollar": { + "aliases": { + "names": [ + "search-dollar" + ], + "unicodes": { + "secondary": [ + "10f688" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "money", + "preview", + "zoom" + ] + }, + "unicode": "f688", + "label": "Magnifying Glass Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM228 104c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V312c0 11 9 20 20 20s20-9 20-20V298.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-location": { + "aliases": { + "names": [ + "search-location" + ], + "unicodes": { + "secondary": [ + "10f689" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "preview", + "zoom" + ] + }, + "unicode": "f689", + "label": "Magnifying Glass Location", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM288 176c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 48.8 46.5 111.6 68.6 138.6c6 7.3 16.8 7.3 22.7 0c22.1-27 68.6-89.8 68.6-138.6zm-112 0a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-minus": { + "aliases": { + "names": [ + "search-minus" + ], + "unicodes": { + "secondary": [ + "10f010" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "minify", + "negative", + "smaller", + "zoom", + "zoom out" + ] + }, + "unicode": "f010", + "label": "Magnifying Glass Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM136 184c-13.3 0-24 10.7-24 24s10.7 24 24 24H280c13.3 0 24-10.7 24-24s-10.7-24-24-24H136z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-plus": { + "aliases": { + "names": [ + "search-plus" + ], + "unicodes": { + "secondary": [ + "10f00e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "magnify", + "positive", + "zoom", + "zoom in" + ] + }, + "unicode": "f00e", + "label": "Magnifying Glass Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM184 296c0 13.3 10.7 24 24 24s24-10.7 24-24V232h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H232V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mailchimp": { + "changes": [ + "5.1.0", + "5.7.0", + "5.8.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f59e", + "label": "Mailchimp", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M330.61 243.52a36.15 36.15 0 0 1 9.3 0c1.66-3.83 1.95-10.43.45-17.61-2.23-10.67-5.25-17.14-11.48-16.13s-6.47 8.74-4.24 19.42c1.26 6 3.49 11.14 6 14.32zM277.05 252c4.47 2 7.2 3.26 8.28 2.13 1.89-1.94-3.48-9.39-12.12-13.09a31.44 31.44 0 0 0-30.61 3.68c-3 2.18-5.81 5.22-5.41 7.06.85 3.74 10-2.71 22.6-3.48 7-.44 12.8 1.75 17.26 3.71zm-9 5.13c-9.07 1.42-15 6.53-13.47 10.1.9.34 1.17.81 5.21-.81a37 37 0 0 1 18.72-1.95c2.92.34 4.31.52 4.94-.49 1.46-2.22-5.71-8-15.39-6.85zm54.17 17.1c3.38-6.87-10.9-13.93-14.3-7s10.92 13.88 14.32 6.97zm15.66-20.47c-7.66-.13-7.95 15.8-.26 15.93s7.98-15.81.28-15.96zm-218.79 78.9c-1.32.31-6 1.45-8.47-2.35-5.2-8 11.11-20.38 3-35.77-9.1-17.47-27.82-13.54-35.05-5.54-8.71 9.6-8.72 23.54-5 24.08 4.27.57 4.08-6.47 7.38-11.63a12.83 12.83 0 0 1 17.85-3.72c11.59 7.59 1.37 17.76 2.28 28.62 1.39 16.68 18.42 16.37 21.58 9a2.08 2.08 0 0 0-.2-2.33c.03.89.68-1.3-3.35-.39zm299.72-17.07c-3.35-11.73-2.57-9.22-6.78-20.52 2.45-3.67 15.29-24-3.07-43.25-10.4-10.92-33.9-16.54-41.1-18.54-1.5-11.39 4.65-58.7-21.52-83 20.79-21.55 33.76-45.29 33.73-65.65-.06-39.16-48.15-51-107.42-26.47l-12.55 5.33c-.06-.05-22.71-22.27-23.05-22.57C169.5-18-41.77 216.81 25.78 273.85l14.76 12.51a72.49 72.49 0 0 0-4.1 33.5c3.36 33.4 36 60.42 67.53 60.38 57.73 133.06 267.9 133.28 322.29 3 1.74-4.47 9.11-24.61 9.11-42.38s-10.09-25.27-16.53-25.27zm-316 48.16c-22.82-.61-47.46-21.15-49.91-45.51-6.17-61.31 74.26-75.27 84-12.33 4.54 29.64-4.67 58.49-34.12 57.81zM84.3 249.55C69.14 252.5 55.78 261.09 47.6 273c-4.88-4.07-14-12-15.59-15-13.01-24.85 14.24-73 33.3-100.21C112.42 90.56 186.19 39.68 220.36 48.91c5.55 1.57 23.94 22.89 23.94 22.89s-34.15 18.94-65.8 45.35c-42.66 32.85-74.89 80.59-94.2 132.4zM323.18 350.7s-35.74 5.3-69.51-7.07c6.21-20.16 27 6.1 96.4-13.81 15.29-4.38 35.37-13 51-25.35a102.85 102.85 0 0 1 7.12 24.28c3.66-.66 14.25-.52 11.44 18.1-3.29 19.87-11.73 36-25.93 50.84A106.86 106.86 0 0 1 362.55 421a132.45 132.45 0 0 1-20.34 8.58c-53.51 17.48-108.3-1.74-126-43a66.33 66.33 0 0 1-3.55-9.74c-7.53-27.2-1.14-59.83 18.84-80.37 1.23-1.31 2.48-2.85 2.48-4.79a8.45 8.45 0 0 0-1.92-4.54c-7-10.13-31.19-27.4-26.33-60.83 3.5-24 24.49-40.91 44.07-39.91l5 .29c8.48.5 15.89 1.59 22.88 1.88 11.69.5 22.2-1.19 34.64-11.56 4.2-3.5 7.57-6.54 13.26-7.51a17.45 17.45 0 0 1 13.6 2.24c10 6.64 11.4 22.73 11.92 34.49.29 6.72 1.1 23 1.38 27.63.63 10.67 3.43 12.17 9.11 14 3.19 1.05 6.15 1.83 10.51 3.06 13.21 3.71 21 7.48 26 12.31a16.38 16.38 0 0 1 4.74 9.29c1.56 11.37-8.82 25.4-36.31 38.16-46.71 21.68-93.68 14.45-100.48 13.68-20.15-2.71-31.63 23.32-19.55 41.15 22.64 33.41 122.4 20 151.37-21.35.69-1 .12-1.59-.73-1-41.77 28.58-97.06 38.21-128.46 26-4.77-1.85-14.73-6.44-15.94-16.67 43.6 13.49 71 .74 71 .74s2.03-2.79-.56-2.53zm-68.47-5.7zm-83.4-187.5c16.74-19.35 37.36-36.18 55.83-45.63a.73.73 0 0 1 1 1c-1.46 2.66-4.29 8.34-5.19 12.65a.75.75 0 0 0 1.16.79c11.49-7.83 31.48-16.22 49-17.3a.77.77 0 0 1 .52 1.38 41.86 41.86 0 0 0-7.71 7.74.75.75 0 0 0 .59 1.19c12.31.09 29.66 4.4 41 10.74.76.43.22 1.91-.64 1.72-69.55-15.94-123.08 18.53-134.5 26.83a.76.76 0 0 1-1-1.12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "manat-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Manat Sign", + "currency" + ] + }, + "unicode": "e1d5", + "label": "Manat Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 32c-17.7 0-32 14.3-32 32V98.7C69.2 113.9 0 192.9 0 288V448c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-59.6 40.8-109.8 96-124V448c0 17.7 14.3 32 32 32s32-14.3 32-32V164c55.2 14.2 96 64.3 96 124V448c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-95.1-69.2-174.1-160-189.3V64c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mandalorian": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f50f", + "label": "Mandalorian", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M232.27 511.89c-1-3.26-1.69-15.83-1.39-24.58.55-15.89 1-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-1 .4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-1-11.43a92.38 92.38 0 0 0-.34-12.71c-2-13-3.46-27.7-3.25-33.9s.43-7.15 2.06-9.67c3.05-4.71 6.51-14 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74a109.54 109.54 0 0 1 4.42-15.05c2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71s-4.76 4.8-8.29 7.36c-8.37 6.08-11.7 9.39-12.66 12.58s-1 7.23-.16 7.76c.34.21 1.29 2.4 2.11 4.88a28.83 28.83 0 0 1 .72 15.36c-.39 1.77-1 5.47-1.46 8.23s-1 6.46-1.25 8.22a9.85 9.85 0 0 1-1.55 4.26c-1 1-1.14.91-2.05-.53a14.87 14.87 0 0 1-1.44-4.75c-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-1-21a14.24 14.24 0 0 0 1.67-4.61c0-2.39-2.2-5.32-7.41-9.89-7-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3-2.6 9.11-3 22l-.34 12.19 2 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56s.95 22.75 2 24.71c.36.66.51 1.35.34 1.52s.41 2.09 1.29 4.27a38.14 38.14 0 0 1 2.06 9 91 91 0 0 0 1.71 10.37c2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 58-2 61.21-.12 2-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4-4.79-2.83-9.95.7-3 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73s.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57 0-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-11-1.9-23.85-14.55-6.15-6-12.34-12-13.75-13.19-2.81-2.42-2.79-2-.56-9.63l1.35-4.65-1.69-3a32.22 32.22 0 0 0-2.59-4.07c-1.33-1.51-5.5-10.89-6-13.49a4.24 4.24 0 0 1 .87-3.9c2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1 9.41 5 1.34 4.79 1.37 9.79.1 18.55a101.2 101.2 0 0 0-1 11.11c0 4 .19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52a18.67 18.67 0 0 1 4.72 2.85c11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 8 4.54 10 13.39 1.31 5.65 4 11.14 5.46 11.14a9.38 9.38 0 0 0 3.33-1.39c2-1.22 2.25-1.73 2.25-4.18a132.88 132.88 0 0 0-2-17.84c-.37-1.66-.78-4.06-.93-5.35s-.61-3.85-1-5.69c-2.55-11.16-3.65-15.46-4.1-16-1.55-2-4.08-10.2-4.93-15.92-1.64-11.11-4-14.23-12.91-17.39A43.15 43.15 0 0 1 165.24 78c-1.15-1-4-3.22-6.35-5.06s-4.41-3.53-4.6-3.76a22.7 22.7 0 0 0-2.69-2c-6.24-4.22-8.84-7-11.26-12l-2.44-5-.22-13-.22-13 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2 8.53-.19 10.12 0 11.66 1.56s1.36 6.4-.29 8.5a6.66 6.66 0 0 0-1.34 2.32c0 .58-2.61 4.91-5.42 9a30.39 30.39 0 0 0-2.37 6.82c20.44 13.39 21.55 3.77 14.07 29L194 66.92c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-12-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28a45.3 45.3 0 0 1 7.55-1.68 29.57 29.57 0 0 0 6-1.29c3.65-1.11 4.5-1.17 6.35-.4a29.54 29.54 0 0 0 5.82 1.36 18.18 18.18 0 0 1 6 1.91 22.67 22.67 0 0 0 5 2.17c2.51.68 3 .57 7.05-1.67l4.35-2.4L268.32 5c10.44-.4 10.81-.47 15.26-2.68L288.16 0l2.46 1.43c1.76 1 3.14 2.73 4.85 6 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39a35.76 35.76 0 0 0 2.1 5.91 13.55 13.55 0 0 1 1.31 4c.31 4.33 0 5.3-2.41 6.92-2.17 1.47-7 7.91-7 9.34a14.77 14.77 0 0 1-1.07 3c-5 11.51-6.76 13.56-14.26 17-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26a18.33 18.33 0 0 1-4.09 3.71 13.62 13.62 0 0 0-4.38 4.78 5.89 5.89 0 0 1-2.49 2.91 6.88 6.88 0 0 0-2.45 1.71 67.62 67.62 0 0 1-7 5.38c-3.33 2.34-6.87 5-7.87 6A7.27 7.27 0 0 1 224 100a5.76 5.76 0 0 0-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6a36.45 36.45 0 0 0 1.42 5.88c1.32 3.8 1.31 7.86 0 10.57s-.89 6.65 1.35 9.59c2 2.63 2.16 4.56.71 8.84a33.45 33.45 0 0 0-1.06 8.91c0 4.88.22 6.28 1.46 8.38s1.82 2.48 3.24 2.32c2-.23 2.3-1.05 4.71-12.12 2.18-10 3.71-11.92 13.76-17.08 2.94-1.51 7.46-4 10-5.44s6.79-3.69 9.37-4.91a40.09 40.09 0 0 0 15.22-11.67c7.11-8.79 10-16.22 12.85-33.3a18.37 18.37 0 0 1 2.86-7.73 20.39 20.39 0 0 0 2.89-7.31c1-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8-2.18 3.11-6.46 13-8.76 20.26l-2.29 7.22-7 6.49c-3.83 3.57-8 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 10a14.62 14.62 0 0 0 1.59 7.26 42 42 0 0 1 2.09 4.83 9.28 9.28 0 0 0 1.57 2.89c1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12-4.7 12-1.79 0-4.06 9.27-5.07 20.74-.18 2-.62 5.94-1 8.7s-1 10-1.35 16.05c-.77 12.22-.19 18.77 2 23.15 3.41 6.69.52 12.69-11 22.84l-4 3.49.07 5.19a40.81 40.81 0 0 0 1.14 8.87c4.61 16 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15a61.31 61.31 0 0 1 1.08 7c.17 2 .66 5.33 1.08 7.36.47 2.26.78 11 .79 22.74v19.06l-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3-17.66-3-21.3 0-4.23 1-6 5.28-9.13s4.86-3.14 5.48-.72c.28 1.1 1.45 5.62 2.6 10 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-1 7.07-1.17 12.39-1 28.43.17 19.4-.64 35.73-2 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-71-37.58a101 101 0 0 1-1.73-10.79 100.5 100.5 0 0 0-1.73-10.79 37.53 37.53 0 0 1-1-6.49c-.31-3.19-.91-7.46-1.33-9.48-1-4.79-3.35-19.35-3.42-21.07 0-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29 1-1 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83s-.49 9.87-.67 11.71-.61 9.36-.94 16.72c-.79 17.41-1.94 31.29-2.65 32a.62.62 0 0 1-1-.14zm-87.18-266.59c21.07 12.79 17.84 14.15 28.49 17.66 13 4.29 18.87 7.13 23.15 16.87C111.6 233.28 86.25 255 78.55 268c-31 52-6 101.59 62.75 87.21-14.18 29.23-78 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-68 3-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.3 70.64-78.7 91.18-105.29 61.71z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "map": { + "aliases": { + "unicodes": { + "composite": [ + "1f5fa", + "f278" + ], + "secondary": [ + "10f279" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel", + "world", + "world map" + ] + }, + "unicode": "f279", + "label": "Map", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 476.1L192 421.2V35.9L384 90.8V476.1zm32-1.2V88.4L543.1 37.5c15.8-6.3 32.9 5.3 32.9 22.3V394.6c0 9.8-6 18.6-15.1 22.3L416 474.8zM15.1 95.1L160 37.2V423.6L32.9 474.5C17.1 480.8 0 469.2 0 452.2V117.4c0-9.8 6-18.6 15.1-22.3z" + }, + "regular": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M565.6 36.2C572.1 40.7 576 48.1 576 56V392c0 10-6.2 18.9-15.5 22.4l-168 64c-5.2 2-10.9 2.1-16.1 .3L192.5 417.5l-160 61c-7.4 2.8-15.7 1.8-22.2-2.7S0 463.9 0 456V120c0-10 6.1-18.9 15.5-22.4l168-64c5.2-2 10.9-2.1 16.1-.3L383.5 94.5l160-61c7.4-2.8 15.7-1.8 22.2 2.7zM48 136.5V421.2l120-45.7V90.8L48 136.5zM360 422.7V137.3l-144-48V374.7l144 48zm48-1.5l120-45.7V90.8L408 136.5V421.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "map-location": { + "aliases": { + "names": [ + "map-marked" + ], + "unicodes": { + "secondary": [ + "10f59f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f59f", + "label": "Map Location", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M302.8 312C334.9 271.9 408 174.6 408 120C408 53.7 354.3 0 288 0S168 53.7 168 120c0 54.6 73.1 151.9 105.2 192c7.7 9.6 22 9.6 29.6 0zM416 503l144.9-58c9.1-3.6 15.1-12.5 15.1-22.3V152c0-17-17.1-28.6-32.9-22.3l-116 46.4c-.5 1.2-1 2.5-1.5 3.7c-2.9 6.8-6.1 13.7-9.6 20.6V503zM15.1 187.3C6 191 0 199.8 0 209.6V480.4c0 17 17.1 28.6 32.9 22.3L160 451.8V200.4c-3.5-6.9-6.7-13.8-9.6-20.6c-5.6-13.2-10.4-27.4-12.8-41.5l-122.6 49zM384 255c-20.5 31.3-42.3 59.6-56.2 77c-20.5 25.6-59.1 25.6-79.6 0c-13.9-17.4-35.7-45.7-56.2-77V449.4l192 54.9V255z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "map-location-dot": { + "aliases": { + "names": [ + "map-marked-alt" + ], + "unicodes": { + "secondary": [ + "10f5a0" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f5a0", + "label": "Map Location Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M408 120c0 54.6-73.1 151.9-105.2 192c-7.7 9.6-22 9.6-29.6 0C241.1 271.9 168 174.6 168 120C168 53.7 221.7 0 288 0s120 53.7 120 120zm8 80.4c3.5-6.9 6.7-13.8 9.6-20.6c.5-1.2 1-2.5 1.5-3.7l116-46.4C558.9 123.4 576 135 576 152V422.8c0 9.8-6 18.6-15.1 22.3L416 503V200.4zM137.6 138.3c2.4 14.1 7.2 28.3 12.8 41.5c2.9 6.8 6.1 13.7 9.6 20.6V451.8L32.9 502.7C17.1 509 0 497.4 0 480.4V209.6c0-9.8 6-18.6 15.1-22.3l122.6-49zM327.8 332c13.9-17.4 35.7-45.7 56.2-77V504.3L192 449.4V255c20.5 31.3 42.3 59.6 56.2 77c20.5 25.6 59.1 25.6 79.6 0zM288 152a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "map-pin": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cd" + ], + "secondary": [ + "10f276" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "agree", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "marker", + "navigation", + "pin", + "place", + "position", + "pushpin", + "round pushpin", + "travel" + ] + }, + "unicode": "f276", + "label": "Map Pin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M16 144a144 144 0 1 1 288 0A144 144 0 1 1 16 144zM160 80c8.8 0 16-7.2 16-16s-7.2-16-16-16c-53 0-96 43-96 96c0 8.8 7.2 16 16 16s16-7.2 16-16c0-35.3 28.7-64 64-64zM128 480V317.1c10.4 1.9 21.1 2.9 32 2.9s21.6-1 32-2.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "markdown": { + "changes": [ + "5.2.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f60f", + "label": "Markdown", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M593.8 59.1H46.2C20.7 59.1 0 79.8 0 105.2v301.5c0 25.5 20.7 46.2 46.2 46.2h547.7c25.5 0 46.2-20.7 46.1-46.1V105.2c0-25.4-20.7-46.1-46.2-46.1zM338.5 360.6H277v-120l-61.5 76.9-61.5-76.9v120H92.3V151.4h61.5l61.5 76.9 61.5-76.9h61.5v209.2zm135.3 3.1L381.5 256H443V151.4h61.5V256H566z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "marker": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a1" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "sharpie", + "update", + "write" + ] + }, + "unicode": "f5a1", + "label": "Marker", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M481 31C445.1-4.8 386.9-4.8 351 31l-15 15L322.9 33C294.8 4.9 249.2 4.9 221.1 33L135 119c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L255 66.9c9.4-9.4 24.6-9.4 33.9 0L302.1 80 186.3 195.7 316.3 325.7 481 161c35.9-35.9 35.9-94.1 0-129.9zM293.7 348.3L163.7 218.3 99.5 282.5c-48 48-80.8 109.2-94.1 175.8l-5 25c-1.6 7.9 .9 16 6.6 21.7s13.8 8.1 21.7 6.6l25-5c66.6-13.3 127.8-46.1 175.8-94.1l64.2-64.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars": { + "aliases": { + "unicodes": { + "composite": [ + "2642" + ], + "secondary": [ + "10f222" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "male", + "male sign", + "man" + ] + }, + "unicode": "f222", + "label": "Mars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.8 46.8c3.7-9 12.5-14.8 22.2-14.8H424c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4L321 204.2c19.5 28.4 31 62.7 31 99.8c0 97.2-78.8 176-176 176S0 401.2 0 304s78.8-176 176-176c37 0 71.4 11.4 99.8 31l52.6-52.6L295 73c-6.9-6.9-8.9-17.2-5.2-26.2zM400 80l0 0h0v0zM176 416a112 112 0 1 0 0-224 112 112 0 1 0 0 224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-and-venus": { + "aliases": { + "unicodes": { + "composite": [ + "26a5" + ], + "secondary": [ + "10f224" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Male and Female Sign", + "female", + "gender", + "intersex", + "male", + "transgender" + ] + }, + "unicode": "f224", + "label": "Mars And Venus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M337.8 14.8C341.5 5.8 350.3 0 360 0H472c13.3 0 24 10.7 24 24V136c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-24.7 24.7C407 163.3 416 192.6 416 224c0 80.2-59.1 146.7-136.1 158.2c0 .6 .1 1.2 .1 1.8v.4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .3 .4 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3h24c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l-24 0-24 0v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V486 486v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V485 485v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V484v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V483v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V481v-.1-.1-.1-.1-.1-.1-.1-.1V480v-.1-.1-.1-.1-.1-.1-.1V479v-.1-.1-.1-.1-.1-.1-.1V478v-.1-.1-.1-.1-.1-.1V477v-.1-.1-.1-.1-.1-.1V476v-.1-.1-.1-.1-.1-.1V475v-.1-.2-.2-.2-.2-.2V474v-.2-.2-.2-.2-.2V473v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V470v-.2-.2-.2-.2-.2V469v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V467v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V463v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V459v-.2-.2-.2-.2-.2-.2-.2-.2V457v-.2-.2-.2-.2V456H208c-13.3 0-24-10.7-24-24s10.7-24 24-24h24v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3V403v-.3-.3V402v-.3-.3V401v-.3-.3V400v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.4-.3-.4-.4-.4-.4V393v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V388v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V384c0-.6 0-1.2 .1-1.8C155.1 370.7 96 304.2 96 224c0-88.4 71.6-160 160-160c39.6 0 75.9 14.4 103.8 38.2L382.1 80 343 41c-6.9-6.9-8.9-17.2-5.2-26.2zM448 48l0 0h0v0zM256 488h24c0 13.3-10.7 24-24 24s-24-10.7-24-24h24zm96-264a96 96 0 1 0 -192 0 96 96 0 1 0 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-and-venus-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "violence" + ] + }, + "unicode": "e523", + "label": "Mars And Venus Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M504 0c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l39 39-22.2 22.2C475.9 78.4 439.6 64 400 64c-88.4 0-160 71.6-160 160c0 80.2 59.1 146.7 136.1 158.2c0 .6-.1 1.2-.1 1.8v.4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .3 .4 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3H352c-13.3 0-24 10.7-24 24s10.7 24 24 24h24v.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l24 0H376c0 13.3 10.7 24 24 24s24-10.7 24-24H400l24 0v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V486 486v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V485 485v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V484v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V483v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V481v-.1-.1-.1-.1-.1-.1-.1-.1V480v-.1-.1-.1-.1-.1-.1-.1V479v-.1-.1-.1-.1-.1-.1-.1V478v-.1-.1-.1-.1-.1-.1V477v-.1-.1-.1-.1-.1-.1V476v-.1-.1-.1-.1-.1-.1V475v-.1-.2-.2-.2-.2-.2V474v-.2-.2-.2-.2-.2V473v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V470v-.2-.2-.2-.2-.2V469v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V467v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V463v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V459v-.2-.2-.2-.2-.2-.2-.2-.2V457v-.2-.2-.2-.2V456h24c13.3 0 24-10.7 24-24s-10.7-24-24-24H424v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3V403v-.3-.3V402v-.3-.3V401v-.3-.3V400v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.4-.3-.4-.4-.4-.4V393v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V388v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V384c0-.6 0-1.2-.1-1.8c77-11.6 136.1-78 136.1-158.2c0-31.4-9-60.7-24.7-85.4L560 113.9l39 39c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V24c0-13.3-10.7-24-24-24H504zM400 128a96 96 0 1 1 0 192 96 96 0 1 1 0-192zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.1 3.8 9.9 5.1 15.2 3.6C223.6 310.8 208 269.2 208 224c0-60.8 28.3-115 72.4-150.2L220.3 92.1l-29.4-74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-double": { + "aliases": { + "unicodes": { + "composite": [ + "26a3" + ], + "secondary": [ + "10f227" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Doubled Male Sign", + "gay", + "gender", + "male", + "men" + ] + }, + "unicode": "f227", + "label": "Mars Double", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M312 32c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l33.4 33.4L275.8 159c-28.4-19.5-62.7-31-99.8-31C78.8 128 0 206.8 0 304s78.8 176 176 176s176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L407 185c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H312zm88 48h0v0l0 0zM64 304a112 112 0 1 1 224 0A112 112 0 1 1 64 304zM368 480c97.2 0 176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L599 185c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H504c-9.7 0-18.5 5.8-22.2 14.8c-1.2 2.9-1.8 6-1.8 9l0 .2v.2c0 6.2 2.5 12.2 7 16.8l33.4 33.4L480 146.7V168c0 22.6-13.6 43.1-34.6 51.7c-.8 .3-1.7 .7-2.5 1C465.7 241.2 480 270.9 480 304c0 61.9-50.1 112-112 112c-5.4 0-10.8-.4-16-1.1c-12.9 20.4-29.1 38.3-48.1 53.1c19.8 7.8 41.4 12 64 12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-stroke": { + "aliases": { + "unicodes": { + "composite": [ + "26a6" + ], + "secondary": [ + "10f229" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Male with Stroke Sign", + "gender", + "transgender" + ] + }, + "unicode": "f229", + "label": "Mars Stroke", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M376 0c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l33.4 33.4L370.3 96.4 345 71c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l25.4 25.4L307.8 159c-28.4-19.5-62.7-31-99.8-31c-97.2 0-176 78.8-176 176s78.8 176 176 176s176-78.8 176-176c0-37-11.4-71.4-31-99.8l28.6-28.6L407 201c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-25.4-25.4 22.1-22.1L471 153c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V24c0-13.3-10.7-24-24-24H376zm88 48h0v0l0 0zM96 304a112 112 0 1 1 224 0A112 112 0 1 1 96 304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-stroke-right": { + "aliases": { + "names": [ + "mars-stroke-h" + ], + "unicodes": { + "composite": [ + "26a9" + ], + "secondary": [ + "10f22b" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Horizontal Male with Stroke Sign", + "gender" + ] + }, + "unicode": "f22b", + "label": "Mars Stroke Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224zm174.4-88C370.7 365.8 297.1 432 208 432c-97.2 0-176-78.8-176-176s78.8-176 176-176c89.1 0 162.7 66.2 174.4 152H416V176c0-13.3 10.7-24 24-24s24 10.7 24 24v56h32V176c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V280H464v56c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H382.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-stroke-up": { + "aliases": { + "names": [ + "mars-stroke-v" + ], + "unicodes": { + "composite": [ + "26a8" + ], + "secondary": [ + "10f22a" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Vertical Male with Stroke Sign", + "gender" + ] + }, + "unicode": "f22a", + "label": "Mars Stroke Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M148.7 4.7c6.2-6.2 16.4-6.2 22.6 0l64 64c4.6 4.6 5.9 11.5 3.5 17.4s-8.3 9.9-14.8 9.9H184v24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H184v24c0 .6 0 1.2-.1 1.8c77 11.6 136.1 78 136.1 158.2c0 88.4-71.6 160-160 160S0 440.4 0 352c0-80.2 59.1-146.7 136.1-158.2c0-.6-.1-1.2-.1-1.8V168H104c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V96H96c-6.5 0-12.3-3.9-14.8-9.9s-1.1-12.9 3.5-17.4l64-64zM256 352A96 96 0 1 0 64 352a96 96 0 1 0 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "martini-glass": { + "aliases": { + "names": [ + "glass-martini-alt" + ], + "unicodes": { + "composite": [ + "1f378" + ], + "secondary": [ + "10f57b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "cocktail", + "cocktail glass", + "drink", + "glass", + "liquor" + ] + }, + "unicode": "f57b", + "label": "Martini Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 0C19.1 0 7.4 7.8 2.4 19.8s-2.2 25.7 6.9 34.9L224 269.3V448H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H288V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0H32zM173.3 128l-64-64H402.7l-64 64H173.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "martini-glass-citrus": { + "aliases": { + "names": [ + "cocktail" + ], + "unicodes": { + "secondary": [ + "10f561" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "drink", + "gin", + "glass", + "margarita", + "martini", + "vodka" + ] + }, + "unicode": "f561", + "label": "Martini Glass Citrus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M432 240c53 0 96-43 96-96s-43-96-96-96c-35.5 0-66.6 19.3-83.2 48H296.2C316 40.1 369.3 0 432 0c79.5 0 144 64.5 144 144s-64.5 144-144 144c-27.7 0-53.5-7.8-75.5-21.3l35.4-35.4c12.2 5.6 25.8 8.7 40.1 8.7zM1.8 142.8C5.5 133.8 14.3 128 24 128H392c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-177 177V464h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H208 120c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V345.9L7 169c-6.9-6.9-8.9-17.2-5.2-26.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "martini-glass-empty": { + "aliases": { + "names": [ + "glass-martini" + ], + "unicodes": { + "secondary": [ + "10f000" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "drink", + "liquor" + ] + }, + "unicode": "f000", + "label": "Martini Glass Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 0C19.1 0 7.4 7.8 2.4 19.8s-2.2 25.7 6.9 34.9L224 269.3V448H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H288V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0H32zM256 210.7L109.3 64H402.7L256 210.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mask": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6fa" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carnivale", + "costume", + "disguise", + "halloween", + "secret", + "super hero" + ] + }, + "unicode": "f6fa", + "label": "Mask", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 64C64 64 0 160 0 272S80 448 176 448h8.4c24.2 0 46.4-13.7 57.2-35.4l23.2-46.3c4.4-8.8 13.3-14.3 23.2-14.3s18.8 5.5 23.2 14.3l23.2 46.3c10.8 21.7 33 35.4 57.2 35.4H400c96 0 176-64 176-176s-64-208-288-208zM96 256a64 64 0 1 1 128 0A64 64 0 1 1 96 256zm320-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mask-face": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "filter", + "flu", + "infection", + "pandemic", + "respirator", + "virus" + ] + }, + "unicode": "e1d7", + "label": "Mask Face", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766749, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 64c-27.2 0-53.8 8-76.4 23.1l-37.1 24.8c-15.8 10.5-34.3 16.1-53.3 16.1H144 128 56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l108 27C233.8 435 275.4 448 320 448s86.2-13 121.1-35.5l108-27C602.5 372.1 640 324.1 640 269V184c0-30.9-25.1-56-56-56H512 496h-9.2c-19 0-37.5-5.6-53.3-16.1L396.4 87.1C373.8 72 347.2 64 320 64zM132.3 346.3l-29.8-7.4C70.5 330.9 48 302.1 48 269V184c0-4.4 3.6-8 8-8H96v48c0 45.1 13.4 87.2 36.3 122.3zm405.1-7.4l-29.8 7.4c23-35.2 36.3-77.2 36.3-122.3V176h40c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9zM192 208c0-8.8 7.2-16 16-16H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16zm16 48H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16s7.2-16 16-16zm16 80c0-8.8 7.2-16 16-16H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mask-ventilator": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "gas", + "mask", + "oxygen", + "respirator", + "ventilator" + ] + }, + "unicode": "e524", + "label": "Mask Ventilator", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M159.1 176C139.4 219.2 128 264.7 128 300.8c0 15.9 2.2 31.4 6.3 46l-31.8-7.9C70.5 330.9 48 302.1 48 269V184c0-4.4 3.6-8 8-8H159.1zm26-48H56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l71.3 17.8c22.7 30.5 55.4 54.1 93.8 66.6V393.3c-19.7-16.4-32-40.3-32-66.9c0-49.5 43-134.4 96-134.4c52.5 0 96 84.9 96 134.4c0 26.7-12.4 50.4-32 66.8v76.6c38-12.6 70.6-36 93.5-66.4l71.6-17.9C602.5 372.1 640 324.1 640 269V184c0-30.9-25.1-56-56-56H454.5C419.7 73.8 372.1 32 320 32c-52.6 0-100.2 41.8-134.9 96zm295.6 48H584c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9l-31.8 8c4.2-14.7 6.4-30.1 6.4-46.1c0-36.1-11.6-81.6-31.3-124.8zM288 320V512h64V320c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "masks-theater": { + "aliases": { + "names": [ + "theater-masks" + ], + "unicodes": { + "composite": [ + "1f3ad" + ], + "secondary": [ + "10f630" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "comedy", + "mask", + "perform", + "performing", + "performing arts", + "theater", + "theatre", + "tragedy" + ] + }, + "unicode": "f630", + "label": "Masks Theater", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M74.6 373.2c41.7 36.1 108 82.5 166.1 73.7c6.1-.9 12.1-2.5 18-4.5c-9.2-12.3-17.3-24.4-24.2-35.4c-21.9-35-28.8-75.2-25.9-113.6c-20.6 4.1-39.2 13-54.7 25.4c-6.5 5.2-16.3 1.3-14.8-7c6.4-33.5 33-60.9 68.2-66.3c2.6-.4 5.3-.7 7.9-.8l19.4-131.3c2-13.8 8-32.7 25-45.9C278.2 53.2 310.5 37 363.2 32.2c-.8-.7-1.6-1.4-2.4-2.1C340.6 14.5 288.4-11.5 175.7 5.6S20.5 63 5.7 83.9C0 91.9-.8 102 .6 111.8L24.8 276.1c5.5 37.3 21.5 72.6 49.8 97.2zm87.7-219.6c4.4-3.1 10.8-2 11.8 3.3c.1 .5 .2 1.1 .3 1.6c3.2 21.8-11.6 42-33.1 45.3s-41.5-11.8-44.7-33.5c-.1-.5-.1-1.1-.2-1.6c-.6-5.4 5.2-8.4 10.3-6.7c9 3 18.8 3.9 28.7 2.4s19.1-5.3 26.8-10.8zM261.6 390c29.4 46.9 79.5 110.9 137.6 119.7s124.5-37.5 166.1-73.7c28.3-24.5 44.3-59.8 49.8-97.2l24.2-164.3c1.4-9.8 .6-19.9-5.1-27.9c-14.8-20.9-57.3-61.2-170-78.3S299.4 77.2 279.2 92.8c-7.8 6-11.5 15.4-12.9 25.2L242.1 282.3c-5.5 37.3-.4 75.8 19.6 107.7zM404.5 235.3c-7.7-5.5-16.8-9.3-26.8-10.8s-19.8-.6-28.7 2.4c-5.1 1.7-10.9-1.3-10.3-6.7c.1-.5 .1-1.1 .2-1.6c3.2-21.8 23.2-36.8 44.7-33.5s36.3 23.5 33.1 45.3c-.1 .5-.2 1.1-.3 1.6c-1 5.3-7.4 6.4-11.8 3.3zm136.2 15.5c-1 5.3-7.4 6.4-11.8 3.3c-7.7-5.5-16.8-9.3-26.8-10.8s-19.8-.6-28.7 2.4c-5.1 1.7-10.9-1.3-10.3-6.7c.1-.5 .1-1.1 .2-1.6c3.2-21.8 23.2-36.8 44.7-33.5s36.3 23.5 33.1 45.3c-.1 .5-.2 1.1-.3 1.6zM530 350.2c-19.6 44.7-66.8 72.5-116.8 64.9s-87.1-48.2-93-96.7c-1-8.3 8.9-12.1 15.2-6.7c23.9 20.8 53.6 35.3 87 40.3s66.1 .1 94.9-12.8c7.6-3.4 16 3.2 12.6 10.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mastodon": { + "changes": [ + "5.0.11", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f6", + "label": "Mastodon", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M433 179.11c0-97.2-63.71-125.7-63.71-125.7-62.52-28.7-228.56-28.4-290.48 0 0 0-63.72 28.5-63.72 125.7 0 115.7-6.6 259.4 105.63 289.1 40.51 10.7 75.32 13 103.33 11.4 50.81-2.8 79.32-18.1 79.32-18.1l-1.7-36.9s-36.31 11.4-77.12 10.1c-40.41-1.4-83-4.4-89.63-54a102.54 102.54 0 0 1-.9-13.9c85.63 20.9 158.65 9.1 178.75 6.7 56.12-6.7 105-41.3 111.23-72.9 9.8-49.8 9-121.5 9-121.5zm-75.12 125.2h-46.63v-114.2c0-49.7-64-51.6-64 6.9v62.5h-46.33V197c0-58.5-64-56.6-64-6.9v114.2H90.19c0-122.1-5.2-147.9 18.41-175 25.9-28.9 79.82-30.8 103.83 6.1l11.6 19.5 11.6-19.5c24.11-37.1 78.12-34.8 103.83-6.1 23.71 27.3 18.4 53 18.4 175z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mattress-pillow": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air mattress", + "mattress", + "pillow", + "rest", + "sleep" + ] + }, + "unicode": "e525", + "label": "Mattress Pillow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H256V64zm32 384H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H288V448zM64 160c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "maxcdn": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f136", + "label": "MaxCDN", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "maximize": { + "aliases": { + "names": [ + "expand-arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f31e" + ] + } + }, + "changes": [ + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "fullscreen", + "move", + "resize" + ] + }, + "unicode": "f31e", + "label": "Maximize", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M200 32H56C42.7 32 32 42.7 32 56V200c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l40-40 79 79-79 79L73 295c-6.9-6.9-17.2-8.9-26.2-5.2S32 302.3 32 312V456c0 13.3 10.7 24 24 24H200c9.7 0 18.5-5.8 22.2-14.8s1.7-19.3-5.2-26.2l-40-40 79-79 79 79-40 40c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H456c13.3 0 24-10.7 24-24V312c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2l-40 40-79-79 79-79 40 40c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H312c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l40 40-79 79-79-79 40-40c6.9-6.9 8.9-17.2 5.2-26.2S209.7 32 200 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mdb": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8ca", + "label": "Material Design for Bootstrap", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M17.37 160.41L7 352h43.91l5.59-79.83L84.43 352h44.71l25.54-77.43 4.79 77.43H205l-12.79-191.59H146.7L106 277.74 63.67 160.41zm281 0h-47.9V352h47.9s95 .8 94.2-95.79c-.78-94.21-94.18-95.78-94.18-95.78zm-1.2 146.46V204.78s46 4.27 46.8 50.57-46.78 51.54-46.78 51.54zm238.29-74.24a56.16 56.16 0 0 0 8-38.31c-5.34-35.76-55.08-34.32-55.08-34.32h-51.9v191.58H482s87 4.79 87-63.85c0-43.14-33.52-55.08-33.52-55.08zm-51.9-31.94s13.57-1.59 16 9.59c1.43 6.66-4 12-4 12h-12v-21.57zm-.1 109.46l.1-24.92V267h.08s41.58-4.73 41.19 22.43c-.33 25.65-41.35 20.74-41.35 20.74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "medal": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c5" + ], + "secondary": [ + "10f5a2" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "award", + "medal", + "ribbon", + "sports medal", + "star", + "trophy" + ] + }, + "unicode": "f5a2", + "label": "Medal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M4.1 38.2C1.4 34.2 0 29.4 0 24.6C0 11 11 0 24.6 0H133.9c11.2 0 21.7 5.9 27.4 15.5l68.5 114.1c-48.2 6.1-91.3 28.6-123.4 61.9L4.1 38.2zm503.7 0L405.6 191.5c-32.1-33.3-75.2-55.8-123.4-61.9L350.7 15.5C356.5 5.9 366.9 0 378.1 0H487.4C501 0 512 11 512 24.6c0 4.8-1.4 9.6-4.1 13.6zM80 336a176 176 0 1 1 352 0A176 176 0 1 1 80 336zm184.4-94.9c-3.4-7-13.3-7-16.8 0l-22.4 45.4c-1.4 2.8-4 4.7-7 5.1L168 298.9c-7.7 1.1-10.7 10.5-5.2 16l36.3 35.4c2.2 2.2 3.2 5.2 2.7 8.3l-8.6 49.9c-1.3 7.6 6.7 13.5 13.6 9.9l44.8-23.6c2.7-1.4 6-1.4 8.7 0l44.8 23.6c6.9 3.6 14.9-2.2 13.6-9.9l-8.6-49.9c-.5-3 .5-6.1 2.7-8.3l36.3-35.4c5.6-5.4 2.5-14.8-5.2-16l-50.1-7.3c-3-.4-5.7-2.4-7-5.1l-22.4-45.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "medapps": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c6", + "label": "MedApps", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "medium": { + "aliases": { + "names": [ + "medium-m" + ], + "unicodes": { + "composite": [ + "f3c7" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23a", + "label": "Medium", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M180.5,74.262C80.813,74.262,0,155.633,0,256S80.819,437.738,180.5,437.738,361,356.373,361,256,280.191,74.262,180.5,74.262Zm288.25,10.646c-49.845,0-90.245,76.619-90.245,171.095s40.406,171.1,90.251,171.1,90.251-76.619,90.251-171.1H559C559,161.5,518.6,84.908,468.752,84.908Zm139.506,17.821c-17.526,0-31.735,68.628-31.735,153.274s14.2,153.274,31.735,153.274S640,340.631,640,256C640,171.351,625.785,102.729,608.258,102.729Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "medrt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c8", + "label": "MRT", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "meetup": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2e0", + "label": "Meetup", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "megaport": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5a3", + "label": "Megaport", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M214.5 209.6v66.2l33.5 33.5 33.3-33.3v-66.4l-33.4-33.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm145.1 414.4L367 441.6l-26-19.2v-65.5l-33.4-33.4-33.4 33.4v65.5L248 441.6l-26.1-19.2v-65.5l-33.4-33.4-33.5 33.4v65.5l-26.1 19.2-26.1-19.2v-87l59.5-59.5V188l59.5-59.5V52.9l26.1-19.2L274 52.9v75.6l59.5 59.5v87.6l59.7 59.7v87.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "memory": { + "aliases": { + "unicodes": { + "secondary": [ + "10f538" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "DIMM", + "RAM", + "hardware", + "storage", + "technology" + ] + }, + "unicode": "f538", + "label": "Memory", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128v7.4c0 6.8 4.4 12.6 10.1 16.3C23.3 160.3 32 175.1 32 192s-8.7 31.7-21.9 40.3C4.4 236 0 241.8 0 248.6V320H576V248.6c0-6.8-4.4-12.6-10.1-16.3C552.7 223.7 544 208.9 544 192s8.7-31.7 21.9-40.3c5.7-3.7 10.1-9.5 10.1-16.3V128c0-35.3-28.7-64-64-64H64zM576 352H0v64c0 17.7 14.3 32 32 32H80V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h48c17.7 0 32-14.3 32-32V352zM192 160v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mendeley": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7b3", + "label": "Mendeley", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M624.6 325.2c-12.3-12.4-29.7-19.2-48.4-17.2-43.3-1-49.7-34.9-37.5-98.8 22.8-57.5-14.9-131.5-87.4-130.8-77.4.7-81.7 82-130.9 82-48.1 0-54-81.3-130.9-82-72.9-.8-110.1 73.3-87.4 130.8 12.2 63.9 5.8 97.8-37.5 98.8-21.2-2.3-37 6.5-53 22.5-19.9 19.7-19.3 94.8 42.6 102.6 47.1 5.9 81.6-42.9 61.2-87.8-47.3-103.7 185.9-106.1 146.5-8.2-.1.1-.2.2-.3.4-26.8 42.8 6.8 97.4 58.8 95.2 52.1 2.1 85.4-52.6 58.8-95.2-.1-.2-.2-.3-.3-.4-39.4-97.9 193.8-95.5 146.5 8.2-4.6 10-6.7 21.3-5.7 33 4.9 53.4 68.7 74.1 104.9 35.2 17.8-14.8 23.1-65.6 0-88.3zm-303.9-19.1h-.6c-43.4 0-62.8-37.5-62.8-62.8 0-34.7 28.2-62.8 62.8-62.8h.6c34.7 0 62.8 28.1 62.8 62.8 0 25-19.2 62.8-62.8 62.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "menorah": { + "aliases": { + "unicodes": { + "secondary": [ + "10f676" + ] + } + }, + "changes": [ + "5.3.0", + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candle", + "hanukkah", + "jewish", + "judaism", + "light" + ] + }, + "unicode": "f676", + "label": "Menorah", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M20.8 7.4C22.8 2.9 27.1 0 32 0s9.2 2.9 11.2 7.4L61.3 49.7c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32S0 81.7 0 64V62.8c0-4.5 .9-8.9 2.7-13.1L20.8 7.4zm96 0C118.8 2.9 123.1 0 128 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L116.8 7.4zm77.8 42.4L212.8 7.4C214.8 2.9 219.1 0 224 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM308.8 7.4C310.8 2.9 315.1 0 320 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L308.8 7.4zm77.8 42.4L404.8 7.4C406.8 2.9 411.1 0 416 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM500.8 7.4C502.8 2.9 507.1 0 512 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L500.8 7.4zm77.8 42.4L596.8 7.4C598.8 2.9 603.1 0 608 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM32 128c17.7 0 32 14.3 32 32V288c0 17.7 14.3 32 32 32H288V160c0-17.7 14.3-32 32-32s32 14.3 32 32V320H544c17.7 0 32-14.3 32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32V288c0 53-43 96-96 96H352v64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 160c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V384H96c-53 0-96-43-96-96V160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H96V256 160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H192V256 160c0-17.7 14.3-32 32-32zm192 0c17.7 0 32 14.3 32 32v96 32H384V256 160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H480V256 160c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mercury": { + "aliases": { + "unicodes": { + "composite": [ + "263f" + ], + "secondary": [ + "10f223" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Mercury", + "gender", + "hybrid", + "transgender" + ] + }, + "unicode": "f223", + "label": "Mercury", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M72.1 7C85.8-4 106-1.8 117 12c17.6 22 44.7 36 75 36s57.3-14 75-36c11.1-13.8 31.2-16 45-5s16 31.2 5 45c-7.8 9.7-16.6 18.4-26.4 26.1C337.3 109.7 368 163.3 368 224c0 89.1-66.2 162.7-152 174.4V424h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H216v16c0 13.3-10.7 24-24 24s-24-10.7-24-24V472H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V398.4C82.2 386.7 16 313.1 16 224c0-60.7 30.7-114.3 77.5-145.9C83.7 70.5 74.9 61.7 67.1 52c-11.1-13.8-8.8-33.9 5-45zM80 224a112 112 0 1 0 224 0A112 112 0 1 0 80 224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "message": { + "aliases": { + "names": [ + "comment-alt" + ], + "unicodes": { + "secondary": [ + "10f27a" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f27a", + "label": "Message", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64h96v80c0 6.1 3.4 11.6 8.8 14.3s11.9 2.1 16.8-1.5L309.3 416H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64z" + }, + "regular": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 368c26.5 0 48 21.5 48 48v16l72.5-54.4c8.3-6.2 18.4-9.6 28.8-9.6H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16V352c0 8.8 7.2 16 16 16h96zm48 124l-.2 .2-5.1 3.8-17.1 12.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3V474.7v-6.4V468v-4V416H112 64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H448c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H309.3L208 492z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "meta": { + "changes": [ + "6.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e49b", + "label": "Meta", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 317.9C640 409.2 600.6 466.4 529.7 466.4C467.1 466.4 433.9 431.8 372.8 329.8L341.4 277.2C333.1 264.7 326.9 253 320.2 242.2C300.1 276 273.1 325.2 273.1 325.2C206.1 441.8 168.5 466.4 116.2 466.4C43.42 466.4 0 409.1 0 320.5C0 177.5 79.78 42.4 183.9 42.4C234.1 42.4 277.7 67.08 328.7 131.9C365.8 81.8 406.8 42.4 459.3 42.4C558.4 42.4 640 168.1 640 317.9H640zM287.4 192.2C244.5 130.1 216.5 111.7 183 111.7C121.1 111.7 69.22 217.8 69.22 321.7C69.22 370.2 87.7 397.4 118.8 397.4C149 397.4 167.8 378.4 222 293.6C222 293.6 246.7 254.5 287.4 192.2V192.2zM531.2 397.4C563.4 397.4 578.1 369.9 578.1 322.5C578.1 198.3 523.8 97.08 454.9 97.08C421.7 97.08 393.8 123 360 175.1C369.4 188.9 379.1 204.1 389.3 220.5L426.8 282.9C485.5 377 500.3 397.4 531.2 397.4L531.2 397.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "meteor": { + "aliases": { + "unicodes": { + "composite": [ + "2604" + ], + "secondary": [ + "10f753" + ] + } + }, + "changes": [ + "5.5.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "armageddon", + "asteroid", + "comet", + "shooting star", + "space" + ] + }, + "unicode": "f753", + "label": "Meteor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M493.7 .9L299.4 75.6l2.3-29.3c1-12.8-12.8-21.5-24-15.1L101.3 133.4C38.6 169.7 0 236.6 0 309C0 421.1 90.9 512 203 512c72.4 0 139.4-38.6 175.7-101.3L480.8 234.3c6.5-11.1-2.2-25-15.1-24l-29.3 2.3L511.1 18.3c.6-1.5 .9-3.2 .9-4.8C512 6 506 0 498.5 0c-1.7 0-3.3 .3-4.8 .9zM192 192a128 128 0 1 1 0 256 128 128 0 1 1 0-256zm0 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm16 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microblog": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e01a", + "label": "Micro.blog", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M399.36,362.23c29.49-34.69,47.1-78.34,47.1-125.79C446.46,123.49,346.86,32,224,32S1.54,123.49,1.54,236.44,101.14,440.87,224,440.87a239.28,239.28,0,0,0,79.44-13.44,7.18,7.18,0,0,1,8.12,2.56c18.58,25.09,47.61,42.74,79.89,49.92a4.42,4.42,0,0,0,5.22-3.43,4.37,4.37,0,0,0-.85-3.62,87,87,0,0,1,3.69-110.69ZM329.52,212.4l-57.3,43.49L293,324.75a6.5,6.5,0,0,1-9.94,7.22L224,290.92,164.94,332a6.51,6.51,0,0,1-9.95-7.22l20.79-68.86-57.3-43.49a6.5,6.5,0,0,1,3.8-11.68l71.88-1.51,23.66-67.92a6.5,6.5,0,0,1,12.28,0l23.66,67.92,71.88,1.51a6.5,6.5,0,0,1,3.88,11.68Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "microchip": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2db" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cpu", + "hardware", + "processor", + "technology" + ] + }, + "unicode": "f2db", + "label": "Microchip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64c-35.3 0-64 28.7-64 64H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64c0 35.3 28.7 64 64 64v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448c35.3 0 64-28.7 64-64h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448V280h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448V176h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448c0-35.3-28.7-64-64-64V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H280V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H176V24zM160 128H352c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32zm192 32H160V352H352V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f130" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "audio", + "information", + "podcast", + "public", + "record", + "sing", + "sound", + "voice" + ] + }, + "unicode": "f130", + "label": "Microphone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0C139 0 96 43 96 96V256c0 53 43 96 96 96s96-43 96-96V96c0-53-43-96-96-96zM64 216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H216V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone-lines": { + "aliases": { + "names": [ + "microphone-alt" + ], + "unicodes": { + "composite": [ + "1f399" + ], + "secondary": [ + "10f3c9" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "mic", + "microphone", + "music", + "podcast", + "record", + "sing", + "sound", + "studio", + "studio microphone", + "voice" + ] + }, + "unicode": "f3c9", + "label": "Microphone Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 96V256c0 53 43 96 96 96s96-43 96-96H208c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V192H208c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H208c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96S96 43 96 96zM320 240v16c0 70.7-57.3 128-128 128s-128-57.3-128-128V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H216V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone-lines-slash": { + "aliases": { + "names": [ + "microphone-alt-slash" + ], + "unicodes": { + "secondary": [ + "10f539" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "disable", + "mute", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "unicode": "f539", + "label": "Microphone Lines Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766677, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24 16c0 21.2-5.1 41.1-14.2 58.7L416 300.8V256H358.9l-34.5-27c2.9-3.1 7-5 11.6-5h80V192H336c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H336c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96s-96 43-96 96v54.3L38.8 5.1zm362.5 407l-43.1-33.9C346.1 382 333.3 384 320 384c-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464H248c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4c20.4-2.8 39.7-9.1 57.3-18.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f131" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "disable", + "mute", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "unicode": "f131", + "label": "Microphone Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766677, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 21.2-5.1 41.1-14.2 58.7L416 300.8V96c0-53-43-96-96-96s-96 43-96 96v54.3L38.8 5.1zM344 430.4c20.4-2.8 39.7-9.1 57.3-18.2l-43.1-33.9C346.1 382 333.3 384 320 384c-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464H248c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microscope": { + "aliases": { + "unicodes": { + "composite": [ + "1f52c" + ], + "secondary": [ + "10f610" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "electron", + "lens", + "microscope", + "optics", + "science", + "shrink", + "testing", + "tool" + ] + }, + "unicode": "f610", + "label": "Microscope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32c17.7 0 32 14.3 32 32V288c0 17.7-14.3 32-32 32c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32zM32 448H320c70.7 0 128-57.3 128-128s-57.3-128-128-128V128c106 0 192 86 192 192c0 49.2-18.5 94-48.9 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm80-64H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microsoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ca", + "label": "Microsoft", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mill-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Mill Sign", + "currency" + ] + }, + "unicode": "e1ed", + "label": "Mill Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M302.1 42.8c5.9-16.6-2.7-35-19.4-40.9s-35 2.7-40.9 19.4L208 116.1c-5.7 4-11.1 8.5-16 13.5C171.7 108.9 143.3 96 112 96c-19.5 0-37.8 5-53.7 13.7C52.5 101.4 42.9 96 32 96C14.3 96 0 110.3 0 128v80V416c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-26.5 21.5-48 48-48s48 21.5 48 48v42.5L81.9 469.2c-5.9 16.6 2.7 35 19.4 40.9s35-2.7 40.9-19.4l21.4-60C168.9 441 179.6 448 192 448c17.7 0 32-14.3 32-32V261.5l35.7-100c3.9-1 8.1-1.6 12.3-1.6c26.5 0 48 21.5 48 48V416c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-58.2-44.3-106-101.1-111.5l19.2-53.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "minimize": { + "aliases": { + "names": [ + "compress-arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f78c" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "unicode": "f78c", + "label": "Minimize", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M456 224H312c-13.3 0-24-10.7-24-24V56c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l40 40L442.3 5.7C446 2 450.9 0 456 0s10 2 13.7 5.7l36.7 36.7C510 46 512 50.9 512 56s-2 10-5.7 13.7L433 143l40 40c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8zm0 64c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-40 40 73.4 73.4c3.6 3.6 5.7 8.5 5.7 13.7s-2 10-5.7 13.7l-36.7 36.7C466 510 461.1 512 456 512s-10-2-13.7-5.7L369 433l-40 40c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V312c0-13.3 10.7-24 24-24H456zm-256 0c13.3 0 24 10.7 24 24V456c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-40-40L69.7 506.3C66 510 61.1 512 56 512s-10-2-13.7-5.7L5.7 469.7C2 466 0 461.1 0 456s2-10 5.7-13.7L79 369 39 329c-6.9-6.9-8.9-17.2-5.2-26.2s12.5-14.8 22.2-14.8H200zM56 224c-9.7 0-18.5-5.8-22.2-14.8s-1.7-19.3 5.2-26.2l40-40L5.7 69.7C2 66 0 61.1 0 56s2-10 5.7-13.7L42.3 5.7C46 2 50.9 0 56 0s10 2 13.7 5.7L143 79l40-40c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2V200c0 13.3-10.7 24-24 24H56z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "minus": { + "aliases": { + "names": [ + "subtract" + ], + "unicodes": { + "composite": [ + "2013", + "2212", + "2796" + ], + "secondary": [ + "10f068" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "En Dash", + "Minus Sign", + "collapse", + "delete", + "hide", + "math", + "minify", + "minus", + "negative", + "remove", + "sign", + "trash", + "−" + ] + }, + "unicode": "f068", + "label": "Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mitten": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7b5" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "cold", + "glove", + "hands", + "knitted", + "seasonal", + "warmth" + ] + }, + "unicode": "f7b5", + "label": "Mitten", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 384H64L5.4 178.9C1.8 166.4 0 153.4 0 140.3C0 62.8 62.8 0 140.3 0h3.4c66 0 123.5 44.9 139.5 108.9l31.4 125.8 17.6-20.1C344.8 200.2 362.9 192 382 192h2.8c34.9 0 63.3 28.3 63.3 63.3c0 15.9-6 31.2-16.8 42.9L352 384zM32 448c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mix": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3cb", + "label": "Mix", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mixcloud": { + "changes": [ + "4.5.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f289", + "label": "Mixcloud", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M212.98 346.566H179.789V195.114L185.973 173.47H175.262L137.127 346.566H76.1069L37.7323 173.47H27.276L33.1913 195.114V346.566H0V165H65.6506L102.248 338.096H110.747L147.329 165H212.98L212.98 346.566ZM544.459 283.589L458.434 345.655V307.534L531.329 255.776L458.434 204.017V165.896L544.459 228.231H553.721L640 165.896V204.017L566.866 255.776L640 307.549V345.655L553.721 283.589H544.459ZM430.157 272.311H248.113V239.255H430.157V272.311Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mixer": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e056", + "label": "Mixer", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M114.57,76.07a45.71,45.71,0,0,0-67.51-6.41c-17.58,16.18-19,43.52-4.75,62.77l91.78,123L41.76,379.58c-14.23,19.25-13.11,46.59,4.74,62.77A45.71,45.71,0,0,0,114,435.94L242.89,262.7a12.14,12.14,0,0,0,0-14.23ZM470.24,379.58,377.91,255.45l91.78-123c14.22-19.25,12.83-46.59-4.75-62.77a45.71,45.71,0,0,0-67.51,6.41l-128,172.12a12.14,12.14,0,0,0,0,14.23L398,435.94a45.71,45.71,0,0,0,67.51,6.41C483.35,426.17,484.47,398.83,470.24,379.58Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mizuni": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3cc", + "label": "Mizuni", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mobile": { + "aliases": { + "names": [ + "mobile-android", + "mobile-phone" + ], + "unicodes": { + "composite": [ + "1f4f1" + ], + "secondary": [ + "10f3ce" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "call", + "cell", + "cell phone", + "device", + "mobile", + "mobile phone", + "number", + "phone", + "screen", + "telephone", + "text" + ] + }, + "unicode": "f3ce", + "label": "Mobile", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M80 0C44.7 0 16 28.7 16 64V448c0 35.3 28.7 64 64 64H304c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H80zm80 432h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H160c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-button": { + "aliases": { + "unicodes": { + "secondary": [ + "10f10b" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "device", + "iphone", + "number", + "screen", + "telephone" + ] + }, + "unicode": "f10b", + "label": "Mobile Button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M80 0C44.7 0 16 28.7 16 64V448c0 35.3 28.7 64 64 64H304c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H80zM192 400a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-retro": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cellphone", + "cellular", + "phone" + ] + }, + "unicode": "e527", + "label": "Mobile Retro", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm64 96v64c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 352a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm56-56a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm56-56a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM128 48c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-screen": { + "aliases": { + "names": [ + "mobile-android-alt" + ], + "unicodes": { + "secondary": [ + "10f3cf" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "call", + "cell phone", + "device", + "number", + "screen", + "telephone", + "text" + ] + }, + "unicode": "f3cf", + "label": "Mobile Screen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M16 64C16 28.7 44.7 0 80 0H304c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H80c-35.3 0-64-28.7-64-64V64zM144 448c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H160c-8.8 0-16 7.2-16 16zM304 64H80V384H304V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-screen-button": { + "aliases": { + "names": [ + "mobile-alt" + ], + "unicodes": { + "secondary": [ + "10f3cd" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "device", + "iphone", + "number", + "screen", + "telephone" + ] + }, + "unicode": "f3cd", + "label": "Mobile Screen Button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M16 64C16 28.7 44.7 0 80 0H304c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H80c-35.3 0-64-28.7-64-64V64zM224 448a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM304 64H80V384H304V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "modx": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f285", + "label": "MODX", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "monero": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d0", + "label": "Monero", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "money-bill": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f0d6", + "label": "Money Bill", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM288 160a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-1": { + "aliases": { + "names": [ + "money-bill-alt" + ], + "unicodes": { + "secondary": [ + "10f3d1" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f3d1", + "label": "Money Bill 1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm76-48c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z" + }, + "regular": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 112c0 35.3-28.7 64-64 64V336c35.3 0 64 28.7 64 64H464c0-35.3 28.7-64 64-64V176c-35.3 0-64-28.7-64-64H112zM0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm80-48c0 8.8 7.2 16 16 16v64h-8c-8.8 0-16 7.2-16 16s7.2 16 16 16h24 24c8.8 0 16-7.2 16-16s-7.2-16-16-16h-8V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "money-bill-1-wave": { + "aliases": { + "names": [ + "money-bill-wave-alt" + ], + "unicodes": { + "secondary": [ + "10f53b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53b", + "label": "Money Bill 1 Wave", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM128 416H64V352c35.3 0 64 28.7 64 64zM64 224V160h64c0 35.3-28.7 64-64 64zM448 352c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM384 256c0 61.9-43 112-96 112s-96-50.1-96-112s43-112 96-112s96 50.1 96 112zM252 208c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-transfer": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "conversion", + "deposit", + "money", + "transfer", + "withdrawal" + ] + }, + "unicode": "e528", + "label": "Money Bill Transfer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M535 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l64 64c4.5 4.5 7 10.6 7 17s-2.5 12.5-7 17l-64 64c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23L384 112c-13.3 0-24-10.7-24-24s10.7-24 24-24l174.1 0L535 41zM105 377l-23 23L256 400c13.3 0 24 10.7 24 24s-10.7 24-24 24L81.9 448l23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 441c-4.5-4.5-7-10.6-7-17s2.5-12.5 7-17l64-64c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM96 64H337.9c-3.7 7.2-5.9 15.3-5.9 24c0 28.7 23.3 52 52 52l117.4 0c-4 17 .6 35.5 13.8 48.8c20.3 20.3 53.2 20.3 73.5 0L608 169.5V384c0 35.3-28.7 64-64 64H302.1c3.7-7.2 5.9-15.3 5.9-24c0-28.7-23.3-52-52-52l-117.4 0c4-17-.6-35.5-13.8-48.8c-20.3-20.3-53.2-20.3-73.5 0L32 342.5V128c0-35.3 28.7-64 64-64zm64 64H96v64c35.3 0 64-28.7 64-64zM544 320c-35.3 0-64 28.7-64 64h64V320zM320 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-trend-up": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "bonds", + "inflation", + "market", + "stocks", + "trade" + ] + }, + "unicode": "e529", + "label": "Money Bill Trend Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M470.7 9.4c3 3.1 5.3 6.6 6.9 10.3s2.4 7.8 2.4 12.2l0 .1v0 96c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3L310.6 214.6c-11.8 11.8-30.8 12.6-43.5 1.7L176 138.1 84.8 216.3c-13.4 11.5-33.6 9.9-45.1-3.5s-9.9-33.6 3.5-45.1l112-96c12-10.3 29.7-10.3 41.7 0l89.5 76.7L370.7 64H352c-17.7 0-32-14.3-32-32s14.3-32 32-32h96 0c8.8 0 16.8 3.6 22.6 9.3l.1 .1zM0 304c0-26.5 21.5-48 48-48H464c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V304zM48 416v48H96c0-26.5-21.5-48-48-48zM96 304H48v48c26.5 0 48-21.5 48-48zM464 416c-26.5 0-48 21.5-48 48h48V416zM416 304c0 26.5 21.5 48 48 48V304H416zm-96 80a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-wave": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53a", + "label": "Money Bill Wave", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM288 352c-44.2 0-80-43-80-96s35.8-96 80-96s80 43 80 96s-35.8 96-80 96zM64 352c35.3 0 64 28.7 64 64H64V352zm64-208c0 35.3-28.7 64-64 64V144h64zM512 304v64H448c0-35.3 28.7-64 64-64zM448 96h64v64c-35.3 0-64-28.7-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agribusiness", + "agriculture", + "farming", + "food", + "livelihood", + "subsidy" + ] + }, + "unicode": "e52a", + "label": "Money Bill Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80c0-8.8 7.2-16 16-16zM56 16h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56C42.7 64 32 53.3 32 40s10.7-24 24-24zM24 88H136c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24S10.7 88 24 88zm8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24zM272 16c0-8.8 7.2-16 16-16c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80zM400 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80c0-8.8 7.2-16 16-16zm80 144c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM352 128c8.8 0 16 7.2 16 16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-96 16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM0 304c0-26.5 21.5-48 48-48H464c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V304zM48 416v48H96c0-26.5-21.5-48-48-48zM96 304H48v48c26.5 0 48-21.5 48-48zM464 416c-26.5 0-48 21.5-48 48h48V416zM416 304c0 26.5 21.5 48 48 48V304H416zm-96 80a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bills": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atm", + "cash", + "money", + "moolah" + ] + }, + "unicode": "e1f3", + "label": "Money Bills", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 96V320c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64zm64 160c35.3 0 64 28.7 64 64H160V256zM224 96c0 35.3-28.7 64-64 64V96h64zM576 256v64H512c0-35.3 28.7-64 64-64zM512 96h64v64c-35.3 0-64-28.7-64-64zM288 208a80 80 0 1 1 160 0 80 80 0 1 1 -160 0zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V360c0 66.3 53.7 120 120 120H520c13.3 0 24-10.7 24-24s-10.7-24-24-24H120c-39.8 0-72-32.2-72-72V120z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "buy", + "checkout", + "cheque", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53c", + "label": "Money Check", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm48 160H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zM96 336c0-8.8 7.2-16 16-16H464c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zM376 160h80c13.3 0 24 10.7 24 24v48c0 13.3-10.7 24-24 24H376c-13.3 0-24-10.7-24-24V184c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-check-dollar": { + "aliases": { + "names": [ + "money-check-alt" + ], + "unicodes": { + "secondary": [ + "10f53d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "buy", + "checkout", + "cheque", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53d", + "label": "Money Check Dollar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zM272 192H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16s7.2-16 16-16zM256 304c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16zM164 152v13.9c7.5 1.2 14.6 2.9 21.1 4.7c10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2c-7.9-.1-16 1.8-21.5 5c-4.8 2.8-6.2 5.6-6.2 9.3c0 1.8 .1 3.5 5.3 6.7c6.3 3.8 15.5 6.7 28.3 10.5l.7 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.6 41.6c.3 20.9-10.5 36.1-24.8 45c-7.2 4.5-15.2 7.3-23.2 9V360c0 11-9 20-20 20s-20-9-20-20V345.4c-10.3-2.2-20-5.5-28.2-8.4l0 0 0 0c-2.1-.7-4.1-1.4-6.1-2.1c-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5 .8 4.9 1.7 7.2 2.4c13.6 4.6 24 8.1 35.1 8.5c8.6 .3 16.5-1.6 21.4-4.7c4.1-2.5 6-5.5 5.9-10.5c0-2.9-.8-5-5.9-8.2c-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14c-12.7-7.7-24.6-20.5-24.7-40.7c-.1-21.1 11.8-35.7 25.8-43.9c6.9-4.1 14.5-6.8 22.2-8.5V152c0-11 9-20 20-20s20 9 20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "monument": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a6" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "landmark", + "memorable" + ] + }, + "unicode": "f5a6", + "label": "Monument", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M180.7 4.7c6.2-6.2 16.4-6.2 22.6 0l80 80c2.5 2.5 4.1 5.8 4.6 9.3l40.2 322H55.9L96.1 94c.4-3.5 2-6.8 4.6-9.3l80-80zM152 272c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H152zM32 448H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "moon": { + "aliases": { + "unicodes": { + "composite": [ + "1f319", + "23fe" + ], + "secondary": [ + "10f186" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Power Sleep Symbol", + "contrast", + "crescent", + "crescent moon", + "dark", + "lunar", + "moon", + "night" + ] + }, + "unicode": "f186", + "label": "Moon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z" + }, + "regular": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144.7 98.7c-21 34.1-33.1 74.3-33.1 117.3c0 98 62.8 181.4 150.4 211.7c-12.4 2.8-25.3 4.3-38.6 4.3C126.6 432 48 353.3 48 256c0-68.9 39.4-128.4 96.8-157.3zm62.1-66C91.1 41.2 0 137.9 0 256C0 379.7 100 480 223.5 480c47.8 0 92-15 128.4-40.6c1.9-1.3 3.7-2.7 5.5-4c4.8-3.6 9.4-7.4 13.9-11.4c2.7-2.4 5.3-4.8 7.9-7.3c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-3.7 .6-7.4 1.2-11.1 1.6c-5 .5-10.1 .9-15.3 1c-1.2 0-2.5 0-3.7 0c-.1 0-.2 0-.3 0c-96.8-.2-175.2-78.9-175.2-176c0-54.8 24.9-103.7 64.1-136c1-.9 2.1-1.7 3.2-2.6c4-3.2 8.2-6.2 12.5-9c3.1-2 6.3-4 9.6-5.8c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-3.6-.3-7.1-.5-10.7-.6c-2.7-.1-5.5-.1-8.2-.1c-3.3 0-6.5 .1-9.8 .2c-2.3 .1-4.6 .2-6.9 .4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "mortar-pestle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a7" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crush", + "culinary", + "grind", + "medical", + "mix", + "pharmacy", + "prescription", + "spices" + ] + }, + "unicode": "f5a7", + "label": "Mortar Pestle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767421, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.3 11.1C493.3-1.6 474.5-3.7 461 6.2L252.3 160H397.3L502.6 54.6c11.8-11.8 12.6-30.8 1.6-43.5zM32 192c-17.7 0-32 14.3-32 32s14.3 32 32 32c0 82.5 43.4 147.7 123.9 176.2c-11.1 13.9-19.4 30.3-23.9 48.1C127.6 497.4 142.3 512 160 512H352c17.7 0 32.4-14.6 28.1-31.7c-4.5-17.8-12.8-34.1-23.9-48.1C436.6 403.7 480 338.5 480 256c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mosque": { + "aliases": { + "unicodes": { + "composite": [ + "1f54c" + ], + "secondary": [ + "10f678" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "building", + "islam", + "landmark", + "mosque", + "muslim", + "religion" + ] + }, + "unicode": "f678", + "label": "Mosque", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400 0c5 0 9.8 2.4 12.8 6.4c34.7 46.3 78.1 74.9 133.5 111.5l0 0 0 0c5.2 3.4 10.5 7 16 10.6c28.9 19.2 45.7 51.7 45.7 86.1c0 28.6-11.3 54.5-29.8 73.4H221.8c-18.4-19-29.8-44.9-29.8-73.4c0-34.4 16.7-66.9 45.7-86.1c5.4-3.6 10.8-7.1 16-10.6l0 0 0 0C309.1 81.3 352.5 52.7 387.2 6.4c3-4 7.8-6.4 12.8-6.4zM288 512V440c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H192c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32H608c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H560V440c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H448V454c0-19-8.4-37-23-49.2L400 384l-25 20.8C360.4 417 352 435 352 454v58H288zM70.4 5.2c5.7-4.3 13.5-4.3 19.2 0l16 12C139.8 42.9 160 83.2 160 126v2H0v-2C0 83.2 20.2 42.9 54.4 17.2l16-12zM0 160H160V296.6c-19.1 11.1-32 31.7-32 55.4V480c0 9.6 2.1 18.6 5.8 26.8c-6.6 3.4-14 5.2-21.8 5.2H48c-26.5 0-48-21.5-48-48V176 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mosquito": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "bug", + "mosquito", + "west nile" + ] + }, + "unicode": "e52b", + "label": "Mosquito", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M463.7 505.9c9.8-8.9 10.7-24.3 2.1-34.3l-42.1-49 0-54.7c0-5.5-1.8-10.8-5.1-15.1L352 266.3l0-.3L485.4 387.8C542.4 447.6 640 405.2 640 320.6c0-47.9-34-88.3-79.4-94.2l-153-23.9 40.8-40.9c7.8-7.8 9.4-20.1 3.9-29.8L428.5 90.1l38.2-50.9c8-10.6 6.1-25.9-4.3-34.1s-25.2-6.3-33.2 4.4l-48 63.9c-5.9 7.9-6.6 18.6-1.7 27.2L402.2 140 352 190.3l0-38.2c0-14.9-10.2-27.4-24-31l0-57.2c0-4.4-3.6-8-8-8s-8 3.6-8 8l0 57.2c-13.8 3.6-24 16.1-24 31l0 38.1L237.8 140l22.6-39.5c4.9-8.6 4.2-19.3-1.7-27.2l-48-63.9c-8-10.6-22.8-12.6-33.2-4.4s-12.2 23.5-4.3 34.1l38.2 50.9-23.9 41.7c-5.5 9.7-3.9 22 3.9 29.8l40.8 40.9-153 23.9C34 232.3 0 272.7 0 320.6c0 84.6 97.6 127 154.6 67.1L288 266l0 .3-66.5 86.4c-3.3 4.3-5.1 9.6-5.1 15.1l0 54.7-42.1 49c-8.6 10.1-7.7 25.5 2.1 34.3s24.7 7.9 33.4-2.1l48-55.9c3.8-4.4 5.9-10.2 5.9-16.1l0-55.4L288 344.7l0 63.1c0 17.7 14.3 32 32 32s32-14.3 32-32l0-63.1 24.3 31.6 0 55.4c0 5.9 2.1 11.7 5.9 16.1l48 55.9c8.6 10.1 23.6 11 33.4 2.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mosquito-net": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "malaria", + "mosquito", + "net" + ] + }, + "unicode": "e52c", + "label": "Mosquito Net", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M168.8 462.3c-7.9-4-11.1-13.6-7.2-21.5L192 380.2l0-44.2c0-4.2 1.7-8.3 4.7-11.3L256 265.4V242.2L139.2 344C87.8 395.3 0 358.9 0 286.3c0-41.1 30.6-75.8 71.4-80.9l159.9-23.9-49.6-41.3c-5.1-4.2-7-11.1-4.9-17.4l13.9-41.7-29-58.1c-4-7.9-.7-17.5 7.2-21.5s17.5-.7 21.5 7.2l32 64c1.9 3.8 2.2 8.2 .9 12.2l-12.5 37.6L256 160.5V137.9c0-14.9 10.1-27.3 23.8-31V63.7c0-4.5 3.7-8.2 8.2-8.2s8.2 3.7 8.2 8.2V107c13.7 3.6 23.8 16.1 23.8 31v22.6l45.4-37.8L352.8 85.1c-1.3-4-1-8.4 .9-12.2l32-64c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-29 58.1 13.9 41.7c2.1 6.2 .1 13.1-4.9 17.4l-49.6 41.3 159.9 23.9c22.5 2.8 41.8 14.6 54.7 31.4c-2.7 2.6-5.2 5.4-7.3 8.6c-8.6-12.9-23.3-21.5-40-21.5s-31.4 8.5-40 21.5c-8.6-12.9-23.3-21.5-40-21.5c-21.7 0-40 14.3-45.9 34.1c-10.7 3.2-19.8 10.1-25.9 19.2l-40.2-35v23.1l32.4 32.4c-.3 2-.4 4.1-.4 6.2c0 16.7 8.5 31.4 21.5 40c-4 2.6-7.5 5.9-10.6 9.5L320 310.6v50c0 17.7-14.3 32-32 32s-32-14.3-32-32v-50l-32 32 0 41.4c0 2.5-.6 4.9-1.7 7.2l-32 64c-4 7.9-13.6 11.1-21.5 7.2zM512 256c8.8 0 16 7.2 16 16v16h48V272c0-8.8 7.2-16 16-16s16 7.2 16 16v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H528v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H448v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V400H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V320H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V272c0-8.8 7.2-16 16-16s16 7.2 16 16v16h48V272c0-8.8 7.2-16 16-16zm16 112h48V320H528v48zm0 80h48V400H528v48zM448 320v48h48V320H448zm0 80v48h48V400H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "motorcycle": { + "aliases": { + "unicodes": { + "composite": [ + "1f3cd" + ], + "secondary": [ + "10f21c" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bike", + "machine", + "motorcycle", + "racing", + "transportation", + "vehicle" + ] + }, + "unicode": "f21c", + "label": "Motorcycle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M280 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h57.7l16.4 30.3L256 192l-45.3-45.3c-12-12-28.3-18.7-45.3-18.7H64c-17.7 0-32 14.3-32 32v32h96c88.4 0 160 71.6 160 160c0 11-1.1 21.7-3.2 32h70.4c-2.1-10.3-3.2-21-3.2-32c0-52.2 25-98.6 63.7-127.8l15.4 28.6C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L418.2 128H480c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H459.6c-7.5 0-14.7 2.6-20.5 7.4L391.7 78.9l-14-26c-7-12.9-20.5-21-35.2-21H280zM462.7 311.2l28.2 52.2c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-28.2-52.2c2.3-.3 4.7-.4 7.1-.4c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-15.5 5.5-29.7 14.7-40.8zM187.3 376c-9.5 23.5-32.5 40-59.3 40c-35.3 0-64-28.7-64-64s28.7-64 64-64c26.9 0 49.9 16.5 59.3 40h66.4C242.5 268.8 190.5 224 128 224C57.3 224 0 281.3 0 352s57.3 128 128 128c62.5 0 114.5-44.8 125.8-104H187.3zM128 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mound": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barrier", + "hill", + "pitcher", + "speedbump" + ] + }, + "unicode": "e52d", + "label": "Mound", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M144.1 179.2C173.8 127.7 228.6 96 288 96s114.2 31.7 143.9 83.2L540.4 368c12.3 21.3-3.1 48-27.7 48H63.3c-24.6 0-40-26.6-27.7-48L144.1 179.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mountain": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d4" + ], + "secondary": [ + "10f6fc" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "glacier", + "hiking", + "hill", + "landscape", + "mountain", + "snow", + "snow-capped mountain", + "travel", + "view" + ] + }, + "unicode": "f6fc", + "label": "Mountain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32c12.5 0 24.1 6.4 30.8 17L503.4 394.4c5.6 8.9 8.6 19.2 8.6 29.7c0 30.9-25 55.9-55.9 55.9H55.9C25 480 0 455 0 424.1c0-10.5 3-20.8 8.6-29.7L225.2 49c6.6-10.6 18.3-17 30.8-17zm65 192L256 120.4 176.9 246.5l18.3 24.4c6.4 8.5 19.2 8.5 25.6 0l25.6-34.1c6-8.1 15.5-12.8 25.6-12.8h49z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mountain-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "location", + "rural", + "urban" + ] + }, + "unicode": "e52e", + "label": "Mountain City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M336 0c-26.5 0-48 21.5-48 48v92.1l71.4 118.4c2.5-1.6 5.4-2.5 8.6-2.5h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-3.5l73.8 122.4c12.4 20.6 12.9 46.3 1.2 67.3c-.4 .8-.9 1.6-1.4 2.3H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H568V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H480V48c0-26.5-21.5-48-48-48H336zm32 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16zM352 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V176zm160 96c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V272zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zM224 188.9L283.8 288H223l-48 64-24.6-41.2L224 188.9zm29.4-44.2C247.1 134.3 236 128 224 128s-23.1 6.3-29.4 16.7L5.1 458.9c-6.5 10.8-6.7 24.3-.7 35.3S22 512 34.5 512H413.5c12.5 0 24-6.8 30.1-17.8s5.8-24.5-.7-35.3L253.4 144.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mountain-sun": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "country", + "hiking", + "landscape", + "rural", + "travel", + "view" + ] + }, + "unicode": "e52f", + "label": "Mountain Sun", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M560 160A80 80 0 1 0 560 0a80 80 0 1 0 0 160zM55.9 512H381.1h75H578.9c33.8 0 61.1-27.4 61.1-61.1c0-11.2-3.1-22.2-8.9-31.8l-132-216.3C495 196.1 487.8 192 480 192s-15 4.1-19.1 10.7l-48.2 79L286.8 81c-6.6-10.6-18.3-17-30.8-17s-24.1 6.4-30.8 17L8.6 426.4C3 435.3 0 445.6 0 456.1C0 487 25 512 55.9 512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mug-hot": { + "aliases": { + "unicodes": { + "composite": [ + "2615" + ], + "secondary": [ + "10f7b6" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beverage", + "caliente", + "cocoa", + "coffee", + "cup", + "drink", + "holiday", + "hot", + "hot beverage", + "hot chocolate", + "steam", + "steaming", + "tea", + "warmth" + ] + }, + "unicode": "f7b6", + "label": "Mug Hot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M88 0C74.7 0 64 10.7 64 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C120.5 112.3 128 119.9 128 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C119.5 47.7 112 40.1 112 24c0-13.3-10.7-24-24-24zM32 192c-17.7 0-32 14.3-32 32V416c0 53 43 96 96 96H288c53 0 96-43 96-96h16c61.9 0 112-50.1 112-112s-50.1-112-112-112H352 32zm352 64h16c26.5 0 48 21.5 48 48s-21.5 48-48 48H384V256zM224 24c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C232.5 112.3 240 119.9 240 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C231.5 47.7 224 40.1 224 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mug-saucer": { + "aliases": { + "names": [ + "coffee" + ], + "unicodes": { + "secondary": [ + "10f0f4" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beverage", + "breakfast", + "cafe", + "drink", + "fall", + "morning", + "mug", + "seasonal", + "tea" + ] + }, + "unicode": "f0f4", + "label": "Mug Saucer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767418, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 64c0-17.7 14.3-32 32-32H448h64c70.7 0 128 57.3 128 128s-57.3 128-128 128H480c0 53-43 96-96 96H192c-53 0-96-43-96-96V64zM480 224h32c35.3 0 64-28.7 64-64s-28.7-64-64-64H480V224zM32 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "music": { + "aliases": { + "unicodes": { + "composite": [ + "1f3b5" + ], + "secondary": [ + "10f001" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lyrics", + "melody", + "music", + "musical note", + "note", + "sing", + "sound" + ] + }, + "unicode": "f001", + "label": "Music", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M499.1 6.3c8.1 6 12.9 15.6 12.9 25.7v72V368c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V147L192 223.8V432c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V200 128c0-14.1 9.3-26.6 22.8-30.7l320-96c9.7-2.9 20.2-1.1 28.3 5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "n": { + "aliases": { + "unicodes": { + "composite": [ + "6e" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter N", + "Latin Small Letter N", + "letter", + "nay", + "no" + ] + }, + "unicode": "4e", + "label": "N", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M21.1 33.9c12.7-4.6 26.9-.7 35.5 9.6L320 359.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32V448c0 13.5-8.4 25.5-21.1 30.1s-26.9 .7-35.5-9.6L64 152.4V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 50.5 8.4 38.5 21.1 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "naira-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Naira Sign", + "currency" + ] + }, + "unicode": "e1f6", + "label": "Naira Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M122.6 46.3c-7.8-11.7-22.4-17-35.9-12.9S64 49.9 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320H228.2l97.2 145.8c7.8 11.7 22.4 17 35.9 12.9s22.7-16.5 22.7-30.6V320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V256H262.5L122.6 46.3zM305.1 320H320v22.3L305.1 320zM185.5 256H128V169.7L185.5 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "napster": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d2", + "label": "Napster", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "neos": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f612", + "label": "Neos", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M415.44 512h-95.11L212.12 357.46v91.1L125.69 512H28V29.82L68.47 0h108.05l123.74 176.13V63.45L386.69 0h97.69v461.5zM38.77 35.27V496l72-52.88V194l215.5 307.64h84.79l52.35-38.17h-78.27L69 13zm82.54 466.61l80-58.78v-101l-79.76-114.4v220.94L49 501.89h72.34zM80.63 10.77l310.6 442.57h82.37V10.77h-79.75v317.56L170.91 10.77zM311 191.65l72 102.81V15.93l-72 53v122.72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "network-wired": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6ff" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "connect", + "ethernet", + "internet", + "intranet" + ] + }, + "unicode": "f6ff", + "label": "Network Wired", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 64H384v64H256V64zM240 0c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v32H80c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H240c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H192V288H448v32H400c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H512V288h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V192h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H240zM96 448V384H224v64H96zm320-64H544v64H416V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "neuter": { + "aliases": { + "unicodes": { + "composite": [ + "26b2" + ], + "secondary": [ + "10f22c" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Neuter", + "gender" + ] + }, + "unicode": "f22c", + "label": "Neuter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M80 176a112 112 0 1 1 224 0A112 112 0 1 1 80 176zM224 349.1c81.9-15 144-86.8 144-173.1C368 78.8 289.2 0 192 0S16 78.8 16 176c0 86.3 62.1 158.1 144 173.1V480c0 17.7 14.3 32 32 32s32-14.3 32-32V349.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "newspaper": { + "aliases": { + "unicodes": { + "composite": [ + "1f4f0" + ], + "secondary": [ + "10f1ea" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "article", + "editorial", + "headline", + "journal", + "journalism", + "news", + "newspaper", + "paper", + "press" + ] + }, + "unicode": "f1ea", + "label": "Newspaper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 96c0-35.3 28.7-64 64-64H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H80c-44.2 0-80-35.8-80-80V128c0-17.7 14.3-32 32-32s32 14.3 32 32V400c0 8.8 7.2 16 16 16s16-7.2 16-16V96zm64 24v80c0 13.3 10.7 24 24 24H296c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24H184c-13.3 0-24 10.7-24 24zm208-8c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H384c-8.8 0-16 7.2-16 16zm0 96c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H384c-8.8 0-16 7.2-16 16zM160 304c0 8.8 7.2 16 16 16H432c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm0 96c0 8.8 7.2 16 16 16H432c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z" + }, + "regular": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168 80c-13.3 0-24 10.7-24 24V408c0 8.4-1.4 16.5-4.1 24H440c13.3 0 24-10.7 24-24V104c0-13.3-10.7-24-24-24H168zM72 480c-39.8 0-72-32.2-72-72V112C0 98.7 10.7 88 24 88s24 10.7 24 24V408c0 13.3 10.7 24 24 24s24-10.7 24-24V104c0-39.8 32.2-72 72-72H440c39.8 0 72 32.2 72 72V408c0 39.8-32.2 72-72 72H72zM176 136c0-13.3 10.7-24 24-24h96c13.3 0 24 10.7 24 24v80c0 13.3-10.7 24-24 24H200c-13.3 0-24-10.7-24-24V136zm200-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H376c-13.3 0-24-10.7-24-24s10.7-24 24-24zm0 80h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H376c-13.3 0-24-10.7-24-24s10.7-24 24-24zM200 272H408c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zm0 80H408c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "nfc-directional": { + "changes": [ + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "data", + "near field communication", + "nfc", + "scan", + "signal", + "transfer", + "wireless" + ] + }, + "unicode": "e530", + "label": "NFC Directional", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M211.8 488.6C213.4 491.1 213.9 494.2 213.2 497.1C212.6 500 210.8 502.6 208.3 504.2C205.7 505.8 202.7 506.3 199.7 505.7C138.3 491.8 84.1 455.8 47.53 404.5C10.97 353.2-5.395 290.3 1.57 227.7C8.536 165 38.34 107.2 85.29 65.21C132.2 23.2 193-.0131 256 0C257.5 0 258.1 .2931 260.3 .8627C261.7 1.432 262.1 2.267 264 3.319C265.1 4.371 265.9 5.619 266.5 6.993C267 8.367 267.3 9.839 267.3 11.32V112.3L291.8 86.39C292.8 85.31 294 84.44 295.4 83.84C296.7 83.23 298.2 82.9 299.7 82.86C301.2 82.81 302.6 83.06 304 83.59C305.4 84.12 306.7 84.92 307.8 85.94C308.8 86.96 309.7 88.18 310.3 89.54C310.9 90.89 311.3 92.35 311.3 93.84C311.3 95.32 311.1 96.8 310.6 98.18C310 99.57 309.2 100.8 308.2 101.9L264.2 148.5C263.1 149.6 261.9 150.5 260.5 151.1C259 151.7 257.5 152 255.1 152C254.5 152 252.9 151.7 251.5 151.1C250.1 150.5 248.8 149.6 247.8 148.5L203.7 101.9C201.7 99.74 200.6 96.83 200.7 93.84C200.7 90.84 202 87.1 204.2 85.94C206.4 83.88 209.3 82.77 212.3 82.86C215.3 82.94 218.1 84.21 220.2 86.39L244.7 112.4V22.89C188.3 25.64 134.9 48.73 94.23 87.87C53.58 127 28.49 179.6 23.61 235.8C18.73 292 34.38 348.1 67.68 393.7C100.1 439.2 149.7 471.2 204.7 483.6C207.6 484.3 210.2 486.1 211.8 488.6L211.8 488.6zM171.4 126.1C170.6 127.4 169.5 128.5 168.3 129.3C147.8 143.2 131.1 161.9 119.5 183.8C107.9 205.7 101.8 230.1 101.8 254.9C101.8 279.7 107.9 304.1 119.5 325.1C131.1 347.9 147.8 366.6 168.3 380.5C170.8 382.2 172.5 384.8 173 387.8C173.6 390.7 172.1 393.8 171.3 396.2C169.6 398.7 166.1 400.4 164 400.1C161.1 401.5 158 400.9 155.6 399.2C132 383.2 112.8 361.7 99.46 336.5C86.15 311.4 79.19 283.4 79.19 254.9C79.19 226.5 86.15 198.4 99.46 173.3C112.8 148.1 132 126.6 155.6 110.6C156.8 109.8 158.2 109.2 159.6 108.8C161.1 108.5 162.6 108.5 164.1 108.8C165.5 109 166.9 109.6 168.2 110.4C169.5 111.2 170.5 112.3 171.4 113.5C172.2 114.7 172.8 116.1 173.1 117.6C173.4 119.1 173.4 120.6 173.1 122C172.8 123.5 172.3 124.9 171.4 126.1H171.4zM340.9 383.5C341.7 382.3 342.8 381.2 343.1 380.4V380.3C364.4 366.3 381.1 347.6 392.7 325.7C404.2 303.9 410.2 279.5 410.2 254.8C410.2 230.1 404.2 205.7 392.7 183.8C381.1 161.1 364.4 143.3 343.1 129.3C342.8 128.5 341.7 127.4 340.9 126.2C340.1 124.9 339.5 123.5 339.3 122.1C338.1 120.6 339 119.1 339.3 117.7C339.6 116.2 340.2 114.8 341 113.6C341.9 112.4 342.1 111.3 344.2 110.5C345.4 109.7 346.8 109.2 348.3 108.9C349.8 108.6 351.2 108.6 352.7 108.9C354.2 109.2 355.5 109.8 356.8 110.7C380.2 126.7 399.5 148.2 412.7 173.3C426 198.4 432.1 226.4 432.1 254.8C432.1 283.3 426 311.3 412.7 336.4C399.5 361.5 380.2 383 356.8 399C355.5 399.9 354.2 400.5 352.7 400.8C351.2 401.1 349.8 401.1 348.3 400.8C346.8 400.5 345.4 399.1 344.2 399.2C342.1 398.4 341.9 397.3 341 396.1C340.2 394.9 339.6 393.5 339.3 392C339 390.6 338.1 389.1 339.3 387.6C339.5 386.2 340.1 384.8 340.9 383.5V383.5zM312.3 6.307C368.5 19.04 418.7 50.28 455 95.01C485.4 132.6 504.6 178 510.3 226C515.9 274 507.9 322.7 487.1 366.3C466.2 409.9 433.5 446.8 392.6 472.6C351.7 498.3 304.4 512 256 512C254.5 512 253.1 511.7 251.7 511.1C250.3 510.6 249.1 509.7 248 508.7C246.1 507.6 246.1 506.4 245.6 505C245 503.6 244.7 502.2 244.7 500.7V401.5L220.2 427.5C218.1 429.7 215.3 430.1 212.3 431.1C209.3 431.2 206.4 430 204.2 427.1C202 425.9 200.7 423.1 200.7 420.1C200.6 417.1 201.7 414.2 203.7 412L247.8 365.4C249.1 363.2 252.9 362 255.1 362C259.1 362 262 363.2 264.2 365.4L308.2 412C310.3 414.2 311.4 417.1 311.3 420.1C311.2 423.1 309.9 425.9 307.8 427.1C305.6 430 302.7 431.2 299.7 431.1C296.7 430.1 293.8 429.7 291.8 427.5L267.3 401.6V489.1C323.7 486.3 377.1 463.3 417.8 424.1C458.5 384.1 483.6 332.4 488.5 276.2C493.3 219.1 477.7 163.9 444.4 118.3C411.1 72.75 362.4 40.79 307.4 28.36C305.9 28.03 304.6 27.42 303.3 26.57C302.1 25.71 301.1 24.63 300.3 23.37C299.5 22.12 298.1 20.72 298.7 19.26C298.5 17.8 298.5 16.3 298.8 14.85C299.2 13.41 299.8 12.04 300.6 10.82C301.5 9.61 302.6 8.577 303.8 7.784C305.1 6.99 306.5 6.451 307.9 6.198C309.4 5.945 310.9 5.982 312.3 6.307L312.3 6.307zM353.1 256.1C353.1 287.5 335.6 317.2 303.8 339.6C301.7 341.1 299 341.9 296.4 341.6C293.7 341.4 291.2 340.3 289.4 338.4L219.3 268.6C217.1 266.5 215.1 263.6 215.9 260.6C215.9 257.6 217.1 254.7 219.2 252.6C221.4 250.5 224.2 249.3 227.2 249.3C230.2 249.3 233.1 250.5 235.2 252.6L298.3 315.4C319.1 298.3 330.5 277.5 330.5 256.1C330.5 232.2 316.4 209.1 290.8 191C288.3 189.3 286.7 186.7 286.2 183.7C285.7 180.8 286.3 177.7 288.1 175.3C289.8 172.8 292.4 171.2 295.4 170.7C298.3 170.2 301.4 170.8 303.8 172.6C335.6 195 353.1 224.7 353.1 256.1V256.1zM216.7 341.5C213.7 342 210.7 341.3 208.2 339.6C176.5 317.2 158.1 287.5 158.1 256.1C158.1 224.7 176.5 195 208.2 172.6C210.4 171 213.1 170.3 215.7 170.5C218.4 170.8 220.8 171.9 222.7 173.8L292.8 243.6C294.9 245.7 296.1 248.6 296.1 251.6C296.1 254.6 294.1 257.4 292.8 259.6C290.7 261.7 287.8 262.9 284.9 262.9C281.9 262.9 278.1 261.7 276.9 259.6L213.8 196.7C192.9 214 181.6 234.7 181.6 256.1C181.6 279.1 195.7 303.1 221.3 321.1C223.7 322.9 225.4 325.5 225.9 328.5C226.4 331.4 225.7 334.4 224 336.9C222.3 339.3 219.6 341 216.7 341.5L216.7 341.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "nfc-symbol": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "data", + "near field communication", + "nfc", + "scan", + "signal", + "transfer", + "wireless" + ] + }, + "unicode": "e531", + "label": "Nfc Symbol", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M392.9 32.43C400.6 31.1 408.6 32.89 414.1 37.41C498.2 96.14 544 173.7 544 255.1C544 338.2 498.2 415.9 414.1 474.6C409.3 478.6 402.4 480.5 395.5 479.9C388.5 479.3 382 476.3 377.1 471.4L193.7 288.7C188.1 283.2 185 275.7 184.1 267.8C184.1 260 188.1 252.5 193.6 246.9C199.2 241.4 206.7 238.2 214.5 238.2C222.4 238.2 229.9 241.3 235.4 246.8L400.5 411.2C455.1 366.5 484.8 312 484.8 255.1C484.8 193.5 447.9 132.9 380.9 85.76C374.5 81.24 370.1 74.35 368.8 66.62C367.4 58.89 369.2 50.94 373.8 44.53C378.3 38.12 385.2 33.77 392.9 32.43V32.43zM186.9 479.6C179.2 480.9 171.3 479.1 164.8 474.6C81.67 415.9 35.84 338.2 35.84 255.1C35.84 173.7 81.67 96.14 164.8 37.41C170.5 33.4 177.4 31.53 184.4 32.12C191.3 32.71 197.8 35.72 202.7 40.63L386.1 223.3C391.7 228.8 394.8 236.3 394.8 244.2C394.9 251.1 391.8 259.5 386.2 265.1C380.7 270.6 373.2 273.8 365.3 273.8C357.5 273.8 349.1 270.7 344.4 265.2L179.3 100.7C124.7 145.9 95.03 199.9 95.03 255.1C95.03 318.5 131.9 379.1 198.1 426.2C205.4 430.8 209.7 437.6 211.1 445.4C212.4 453.1 210.6 461.1 206.1 467.5C201.6 473.9 194.7 478.2 186.9 479.6V479.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "nimblr": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5a8", + "label": "Nimblr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M246.6 299.29c15.57 0 27.15 11.46 27.15 27s-11.62 27-27.15 27c-15.7 0-27.15-11.57-27.15-27s11.55-27 27.15-27zM113 326.25c0-15.61 11.68-27 27.15-27s27.15 11.46 27.15 27-11.47 27-27.15 27c-15.44 0-27.15-11.31-27.15-27M191.76 159C157 159 89.45 178.77 59.25 227L14 0v335.48C14 433.13 93.61 512 191.76 512s177.76-78.95 177.76-176.52S290.13 159 191.76 159zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59s59.24-131.59 132.51-131.59 132.51 58.86 132.51 131.54S265 467.07 191.76 467.07z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "node": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f419", + "label": "Node.js", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "node-js": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d3", + "label": "Node.js JS", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "not-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "f53e", + "label": "Not Equal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M369.8 37.4c14.7 9.8 18.7 29.7 8.9 44.4L337.1 144H400c17.7 0 32 14.3 32 32s-14.3 32-32 32H294.5l-64 96H400c17.7 0 32 14.3 32 32s-14.3 32-32 32H187.8l-65.2 97.7c-9.8 14.7-29.7 18.7-44.4 8.9s-18.7-29.7-8.9-44.4L110.9 368H48c-17.7 0-32-14.3-32-32s14.3-32 32-32H153.5l64-96H48c-17.7 0-32-14.3-32-32s14.3-32 32-32H260.2l65.2-97.7c9.8-14.7 29.7-18.7 44.4-8.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "notdef": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "missing" + ] + }, + "unicode": "e1fe", + "label": "Notdef", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 390.3L153.5 256 64 121.7V390.3zM102.5 448H281.5L192 313.7 102.5 448zm128-192L320 390.3V121.7L230.5 256zM281.5 64H102.5L192 198.3 281.5 64zM0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "note-sticky": { + "aliases": { + "names": [ + "sticky-note" + ], + "unicodes": { + "composite": [ + "f24a" + ], + "secondary": [ + "10f249" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "message", + "note", + "paper", + "reminder", + "sticker" + ] + }, + "unicode": "f249", + "label": "Note Sticky", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H288V368c0-26.5 21.5-48 48-48H448V96c0-35.3-28.7-64-64-64H64zM448 352H402.7 336c-8.8 0-16 7.2-16 16v66.7V480l32-32 64-64 32-32z" + }, + "regular": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H288V352c0-17.7 14.3-32 32-32h80V96c0-8.8-7.2-16-16-16H64zM288 480H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V320v5.5c0 17-6.7 33.3-18.7 45.3l-90.5 90.5c-12 12-28.3 18.7-45.3 18.7H288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "notes-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f481" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "doctor", + "ehr", + "health", + "history", + "records" + ] + }, + "unicode": "f481", + "label": "Notes Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 352V96c0-35.3 28.7-64 64-64H416c35.3 0 64 28.7 64 64V293.5c0 17-6.7 33.3-18.7 45.3l-58.5 58.5c-12 12-28.3 18.7-45.3 18.7H160c-35.3 0-64-28.7-64-64zM272 128c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V256h48c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H320V144c0-8.8-7.2-16-16-16H272zm24 336c13.3 0 24 10.7 24 24s-10.7 24-24 24H136C60.9 512 0 451.1 0 376V152c0-13.3 10.7-24 24-24s24 10.7 24 24l0 224c0 48.6 39.4 88 88 88H296z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "npm": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d4", + "label": "npm", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ns8": { + "changes": [ + "5.0.0", + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d5", + "label": "NS8", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M104.324,269.172h26.067V242.994H104.324Zm52.466-26.178-.055-26.178v-.941a39.325,39.325,0,0,0-78.644.941v.166h26.4v-.166a12.98,12.98,0,0,1,25.956,0v26.178Zm52.356,25.846a91.1,91.1,0,0,1-91.1,91.1h-.609a91.1,91.1,0,0,1-91.1-91.1H0v.166A117.33,117.33,0,0,0,117.44,386.28h.775A117.331,117.331,0,0,0,235.49,268.84V242.828H209.146Zm-157.233,0a65.362,65.362,0,0,0,130.723,0H156.292a39.023,39.023,0,0,1-78.035,0V242.883H51.968v-26.62A65.42,65.42,0,0,1,182.8,217.48v25.293h26.344V217.48a91.761,91.761,0,0,0-183.522,0v25.4H51.913Zm418.4-71.173c13.67,0,24.573,6.642,30.052,18.264l.719,1.549,23.245-11.511-.609-1.439c-8.025-19.26-28.5-31.27-53.407-31.27-23.134,0-43.611,11.4-50.972,28.447-.123,26.876-.158,23.9,0,24.85,4.7,11.013,14.555,19.37,28.668,24.241a102.033,102.033,0,0,0,19.813,3.984c5.479.72,10.626,1.384,15.829,3.1,6.364,2.1,10.46,5.257,12.84,9.851v9.851c-3.708,7.527-13.781,12.342-25.791,12.342-14.334,0-25.956-6.918-31.933-19.039l-.72-1.494L415.026,280.9l.553,1.439c7.915,19.426,29.609,32.044,55.289,32.044,23.632,0,44.608-11.4,52.3-28.447l.166-25.9-.166-.664c-4.87-11.014-15.219-19.647-28.944-24.241-7.693-2.712-14.335-3.6-20.7-4.427a83.777,83.777,0,0,1-14.832-2.878c-6.31-1.937-10.4-5.092-12.619-9.63v-8.412C449.45,202.427,458.969,197.667,470.315,197.667ZM287.568,311.344h26.067v-68.4H287.568Zm352.266-53.3c-2.933-6.254-8.3-12.01-15.441-16.714A37.99,37.99,0,0,0,637.4,226l.166-25.347-.166-.664C630.038,184,610.667,173.26,589.25,173.26S548.461,184,541.1,199.992l-.166,25.347.166.664a39.643,39.643,0,0,0,13.006,15.331c-7.2,4.7-12.508,10.46-15.441,16.714l-.166,28.889.166.72c7.582,15.994,27.893,26.731,50.585,26.731s43.057-10.737,50.584-26.731l.166-28.89Zm-73.22-50.806c3.6-6.31,12.563-10.516,22.58-10.516s19.038,4.206,22.636,10.516v13.725c-3.542,6.2-12.563,10.349-22.636,10.349s-19.094-4.15-22.58-10.349Zm47.319,72.169c-3.764,6.641-13.338,10.9-24.683,10.9-11.125,0-20.976-4.372-24.684-10.9V263.25c3.708-6.309,13.5-10.515,24.684-10.515,11.345,0,20.919,4.15,24.683,10.515ZM376.4,265.962l-59.827-89.713h-29v40.623h26.51v.387l62.539,94.085H402.3V176.249H376.4Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "nutritionix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d6", + "label": "Nutritionix", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "o": { + "aliases": { + "unicodes": { + "composite": [ + "6f" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter O", + "Latin Small Letter O", + "letter" + ] + }, + "unicode": "4f", + "label": "O", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96a160 160 0 1 0 0 320 160 160 0 1 0 0-320zM448 256A224 224 0 1 1 0 256a224 224 0 1 1 448 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "object-group": { + "aliases": { + "unicodes": { + "secondary": [ + "10f247" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "combine", + "copy", + "design", + "merge", + "select" + ] + }, + "unicode": "f247", + "label": "Object Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 119.4C12.9 108.4 0 87.7 0 64C0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32H456.6C467.6 12.9 488.3 0 512 0c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V392.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V119.4zM456.6 96H119.4c-5.6 9.7-13.7 17.8-23.4 23.4V392.6c9.7 5.6 17.8 13.7 23.4 23.4H456.6c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4zM128 160c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160zM256 320h32c35.3 0 64-28.7 64-64V224h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V320z" + }, + "regular": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 115.8C38.2 107 32 94.2 32 80c0-26.5 21.5-48 48-48c14.2 0 27 6.2 35.8 16H460.2c8.8-9.8 21.6-16 35.8-16c26.5 0 48 21.5 48 48c0 14.2-6.2 27-16 35.8V396.2c9.8 8.8 16 21.6 16 35.8c0 26.5-21.5 48-48 48c-14.2 0-27-6.2-35.8-16H115.8c-8.8 9.8-21.6 16-35.8 16c-26.5 0-48-21.5-48-48c0-14.2 6.2-27 16-35.8V115.8zM125.3 96c-4.8 13.6-15.6 24.4-29.3 29.3V386.7c13.6 4.8 24.4 15.6 29.3 29.3H450.7c4.8-13.6 15.6-24.4 29.3-29.3V125.3c-13.6-4.8-24.4-15.6-29.3-29.3H125.3zm2.7 64c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160zM256 320h32c35.3 0 64-28.7 64-64V224h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "object-ungroup": { + "aliases": { + "unicodes": { + "secondary": [ + "10f248" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "design", + "merge", + "select", + "separate" + ] + }, + "unicode": "f248", + "label": "Object Ungroup", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 119.4C12.9 108.4 0 87.7 0 64C0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32H328.6C339.6 12.9 360.3 0 384 0c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V232.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V119.4zM119.4 96c-5.6 9.7-13.7 17.8-23.4 23.4V232.6c9.7 5.6 17.8 13.7 23.4 23.4H328.6c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4H119.4zm192 384c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V352h64v40.6c9.7 5.6 17.8 13.7 23.4 23.4H520.6c5.6-9.7 13.7-17.8 23.4-23.4V279.4c-9.7-5.6-17.8-13.7-23.4-23.4h-46c-5.4-15.4-14.6-28.9-26.5-39.6V192h72.6c11.1-19.1 31.7-32 55.4-32c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V392.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H311.4z" + }, + "regular": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48.2 66.8c-.1-.8-.2-1.7-.2-2.5c0-.1 0-.1 0-.2c0-8.8 7.2-16 16-16c.9 0 1.9 .1 2.8 .2C74.3 49.5 80 56.1 80 64c0 8.8-7.2 16-16 16c-7.9 0-14.5-5.7-15.8-13.2zM0 64c0 26.9 16.5 49.9 40 59.3V228.7C16.5 238.1 0 261.1 0 288c0 35.3 28.7 64 64 64c26.9 0 49.9-16.5 59.3-40H324.7c9.5 23.5 32.5 40 59.3 40c35.3 0 64-28.7 64-64c0-26.9-16.5-49.9-40-59.3V123.3c23.5-9.5 40-32.5 40-59.3c0-35.3-28.7-64-64-64c-26.9 0-49.9 16.5-59.3 40H123.3C113.9 16.5 90.9 0 64 0C28.7 0 0 28.7 0 64zm368 0a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM324.7 88c6.5 16 19.3 28.9 35.3 35.3V228.7c-16 6.5-28.9 19.3-35.3 35.3H123.3c-6.5-16-19.3-28.9-35.3-35.3V123.3c16-6.5 28.9-19.3 35.3-35.3H324.7zM384 272a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM80 288c0 7.9-5.7 14.5-13.2 15.8c-.8 .1-1.7 .2-2.5 .2l-.2 0c-8.8 0-16-7.2-16-16c0-.9 .1-1.9 .2-2.8C49.5 277.7 56.1 272 64 272c8.8 0 16 7.2 16 16zm391.3-40h45.4c6.5 16 19.3 28.9 35.3 35.3V388.7c-16 6.5-28.9 19.3-35.3 35.3H315.3c-6.5-16-19.3-28.9-35.3-35.3V352H232v36.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64c26.9 0 49.9-16.5 59.3-40H516.7c9.5 23.5 32.5 40 59.3 40c35.3 0 64-28.7 64-64c0-26.9-16.5-49.9-40-59.3V283.3c23.5-9.5 40-32.5 40-59.3c0-35.3-28.7-64-64-64c-26.9 0-49.9 16.5-59.3 40H448v16.4c9.8 8.8 17.8 19.5 23.3 31.6zm88.9-26.7a16 16 0 1 1 31.5 5.5 16 16 0 1 1 -31.5-5.5zM271.8 450.7a16 16 0 1 1 -31.5-5.5 16 16 0 1 1 31.5 5.5zm301.5 13c-7.5-1.3-13.2-7.9-13.2-15.8c0-8.8 7.2-16 16-16c7.9 0 14.5 5.7 15.8 13.2l0 .1c.1 .9 .2 1.8 .2 2.7c0 8.8-7.2 16-16 16c-.9 0-1.9-.1-2.8-.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "octopus-deploy": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e082", + "label": "Octopus Deploy", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M455.6,349.2c-45.891-39.09-36.67-77.877-16.095-128.11C475.16,134.04,415.967,34.14,329.93,8.3,237.04-19.6,134.252,24.341,99.677,117.147a180.862,180.862,0,0,0-10.988,73.544c1.733,29.543,14.717,52.97,24.09,80.3,17.2,50.161-28.1,92.743-66.662,117.582-46.806,30.2-36.319,39.857-8.428,41.858,23.378,1.68,44.478-4.548,65.265-15.045,9.2-4.647,40.687-18.931,45.13-28.588C135.9,413.388,111.122,459.5,126.621,488.9c19.1,36.229,67.112-31.77,76.709-45.812,8.591-12.572,42.963-81.279,63.627-46.926,18.865,31.361,8.6,76.391,35.738,104.622,32.854,34.2,51.155-18.312,51.412-44.221.163-16.411-6.1-95.852,29.9-59.944C405.428,418,436.912,467.8,472.568,463.642c38.736-4.516-22.123-67.967-28.262-78.695,5.393,4.279,53.665,34.128,53.818,9.52C498.234,375.678,468.039,359.8,455.6,349.2Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "odnoklassniki": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f263", + "label": "Odnoklassniki", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "odysee": { + "changes": [ + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5c6", + "label": "Odysee", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1667828915, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.7 463c-42.3 30.8-94.4 49-150.7 49C144.9 512 50.3 441.2 14.9 342.2c2.4 1.7 5.9 3.6 7.9 4.4c16.3 7.4 40.1-5.4 62.9-28.7c6.9-6.9 14.4-12.4 22.8-17.3c18.3-11.9 37.6-20.8 58.4-27.2c0 0 22.3 34.2 43.1 74.8s-22.3 54-27.2 54c-.3 0-.8 0-1.5-.1c-11-.5-70-3-56 51.1c14.9 57.4 97.5 36.6 139.6 8.9s31.7-118.3 31.7-118.3c41.1-6.4 54 37.1 57.9 59.4c.8 4.6 1.1 9.9 1.4 15.5c1.1 21.2 2.3 45.6 35.3 46.4c5.3 0 10.6-.8 15.5-2zm-95.3-23.7c-2-.5-3.5-2.5-3-5c1-2.5 3-3.5 5-3s3.5 3 3 5s-2.5 3.5-5 3zm-207-95.6c1.5-.5 3.5 1 4 3c0 2-1 4-3 4c-1.5 .5-3.5-1-4-3c-.5-1.5 1-3.5 3-4zM451.8 421C489.3 376.4 512 318.8 512 256c0-67.5-26.1-128.9-68.8-174.7c-.1 23.5-6.1 48.2-16.8 69.2c-11.9 20.3-49 58.9-69.8 78.7c-.7 .3-1.1 .9-1.5 1.4c-.2 .2-.3 .4-.5 .6c-5 6.9-4 16.8 3 21.8c21.3 15.8 56.4 45.6 59.4 72.8c3.5 34.9 27.9 75.6 34.2 86.2l0 0c.8 1.3 1.3 2.1 1.4 2.4c0 2.2-.4 4.3-.8 6.5zM390.7 251c-.5 3 1 5.9 4 6.4s5.9-1 6.4-4s-1-5.9-4-6.4c-3-1-5.9 1-6.4 4zm61.4-60.9l-11.4 5.4-3 12.9-5.4-11.4-12.9-3 11.4-5.4 3-12.9 5.4 11.4 12.9 3zM395.5 41.3c-16.2 8.2-22.1 32.8-29 61.4l0 0c-.3 1.4-.7 2.8-1 4.2c-9.5 38.5-30.6 37.6-41.7 37.2c-1.1 0-2-.1-2.9-.1c-5.1 0-6-4-8.9-17.1c-2.6-12.1-6.9-32-17.9-63.6C271.4-2.5 211.4 13.9 165.9 41.1C110.6 74.2 131.5 143 146.1 190.5c.7 2.2 1.4 4.4 2 6.6c-4 4-13.8 7.5-26 11.9c-12.1 4.3-26.6 9.5-40.3 16.9C47.9 243.9 11.5 274.9 2 288.5C.7 277.8 0 267 0 256C0 114.6 114.6 0 256 0c51.4 0 99.4 15.2 139.5 41.3zM58.9 189.6c-1.5-2-4.5-3-6.4-1.5s-3 4.5-1.5 6.4s4.5 3 6.4 1.5c2.5-1.5 3-4.5 1.5-6.4zM327.3 64.9c2-1.5 5-.5 6.4 1.5c1.5 2.5 1 5.4-1.5 6.4c-2 1.5-5 .5-6.4-1.5s-.5-5 1.5-6.4zM95.1 105c-.5 1.5 .5 3 2 3c1.5 .5 3-.5 3-2c.5-1.5-.5-3-2-3s-3 .5-3 2zm84.7-.5c-3.5-43.1 37.1-54 37.1-54c44.1-15.4 56 5.9 66.4 37.6s3 42.6-38.6 58.9s-61.9-4.5-64.9-42.6zm89.6 14.9h1c2.5 0 5-2 5-5c2-6.9 1-14.4-2-20.8c-1.5-2-4-3.5-6.4-2.5c-3 1-4.5 4-3.5 6.9c2 4.5 3 9.9 1.5 14.9c-.5 3 1.5 5.9 4.5 6.4zm-9.9-41.6c-2 0-4-1-5-3s-2-3.5-3-5c-2-2-2-5.4 0-7.4s5.4-2 7.4 0c2 2.5 3.5 5 5 7.4s.5 5.9-2.5 7.4c-.6 0-1 .2-1.3 .3c-.2 .1-.4 .2-.6 .2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "oil-can": { + "aliases": { + "unicodes": { + "secondary": [ + "10f613" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "crude", + "gasoline", + "grease", + "lubricate", + "petroleum" + ] + }, + "unicode": "f613", + "label": "Oil Can", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 128c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32H144 96 48c-26.5 0-48 21.5-48 48v64.8c0 19 11.2 36.2 28.5 43.9l67.5 30V368c0 26.5 21.5 48 48 48H403.1c18.4 0 35.8-7.9 48-21.7L633.5 187.7c12.3-13.9-.3-35.4-18.4-31.5L448 192l-50.5-25.2c-8.9-4.4-18.7-6.8-28.6-6.8H288V128h32zM96 208v86.1L48 272.8V208H96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "oil-well": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drill", + "oil", + "rig" + ] + }, + "unicode": "e532", + "label": "Oil Well", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528.3 61.3c-11.4-42.7-55.3-68-98-56.6L414.9 8.8C397.8 13.4 387.7 31 392.3 48l24.5 91.4L308.5 167.5l-6.3-18.1C297.7 136.6 285.6 128 272 128s-25.7 8.6-30.2 21.4l-13.6 39L96 222.6V184c0-13.3-10.7-24-24-24s-24 10.7-24 24V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H406.7L340 257.5l-62.2 16.1L305.3 352H238.7L265 277l-74.6 19.3L137.3 448H96V288.8l337.4-87.5 25.2 94c4.6 17.1 22.1 27.2 39.2 22.6l15.5-4.1c42.7-11.4 68-55.3 56.6-98L528.3 61.3zM205.1 448l11.2-32H327.7l11.2 32H205.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "old-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "politics", + "star wars" + ] + }, + "unicode": "f510", + "label": "Old Republic", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "om": { + "aliases": { + "unicodes": { + "composite": [ + "1f549" + ], + "secondary": [ + "10f679" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hindu", + "buddhism", + "hinduism", + "jainism", + "mantra", + "om", + "religion" + ] + }, + "unicode": "f679", + "label": "Om", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M379.3 4.7c-6.2-6.2-16.4-6.2-22.6 0l-16 16c-6.2 6.2-6.2 16.4 0 22.6l16 16c6.2 6.2 16.4 6.2 22.6 0l16-16c6.2-6.2 6.2-16.4 0-22.6l-16-16zM115.2 169.6c8-6 17.9-9.6 28.8-9.6c26.5 0 48 21.5 48 48s-21.5 48-48 48H109.8c-7.6 0-13.8 6.2-13.8 13.8c0 1.5 .2 2.9 .7 4.4l8 24c4.4 13.1 16.6 21.9 30.4 21.9H144h16c35.3 0 64 28.7 64 64s-28.7 64-64 64c-50.8 0-82.7-21.5-102.2-42.8c-9.9-10.8-16.6-21.6-20.9-29.7c-2.1-4-3.6-7.3-4.5-9.6c-.5-1.1-.8-2-1-2.5l-.2-.5 0-.1c-2.6-7.8-10.7-12.3-18.7-10.5C4.4 354.2-.9 361.8 .1 370L16 368C.1 370 .1 370 .1 370l0 0 0 0 0 .1 .1 .4c0 .3 .1 .8 .2 1.3c.2 1.1 .4 2.7 .8 4.6c.8 3.9 2 9.4 3.9 15.9c3.8 13 10.3 30.4 21.3 48C48.7 476.2 89.4 512 160 512c70.7 0 128-57.3 128-128c0-23.3-6.2-45.2-17.1-64h22.6c25.5 0 49.9-10.1 67.9-28.1l26.5-26.5c6-6 14.1-9.4 22.6-9.4H416c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32c-25.7 0-41.4-12.5-51.2-25.6c-5-6.7-8.4-13.4-10.5-18.6c-1.1-2.5-1.8-4.6-2.2-6c-.2-.7-.4-1.2-.5-1.5l-.1-.3 0 0c0 0 0 0 0 0c-1.9-7.3-8.6-12.4-16.2-12.1c-7.6 .3-13.9 5.9-15.1 13.4L336 368c-15.8-2.6-15.8-2.6-15.8-2.6l0 0 0 0 0 .1-.1 .3c0 .3-.1 .6-.2 1.1c-.1 .9-.3 2.1-.4 3.6c-.3 3-.6 7.3-.6 12.4c0 10.1 1.1 23.9 5.8 38.1c4.8 14.3 13.4 29.3 28.6 40.7C368.7 473.3 389.3 480 416 480c53 0 96-43 96-96V288c0-53-43-96-96-96h-5.5c-25.5 0-49.9 10.1-67.9 28.1l-26.5 26.5c-6 6-14.1 9.4-22.6 9.4H245.2c6.9-14.5 10.8-30.8 10.8-48c0-61.9-50.1-112-112-112c-25.2 0-48.5 8.3-67.2 22.4c-14.1 10.6-17 30.7-6.4 44.8s30.7 17 44.8 6.4zM280.9 66.7c-6-4-14-3.5-19.5 1.3s-7 12.7-3.7 19.2L272 80c-14.3 7.2-14.3 7.2-14.3 7.2l0 0 0 0 0 .1 .1 .2 .4 .7c.3 .6 .8 1.4 1.4 2.4c1.2 2 2.9 4.8 5.1 8.2c4.4 6.7 11.1 15.5 20 24.4C302.4 141.1 330.3 160 368 160c31.2 0 56.6-10.4 73.9-20.2c8.7-5 15.6-9.9 20.4-13.8c2.4-1.9 4.3-3.6 5.7-4.9c.7-.6 1.3-1.2 1.7-1.6l.6-.5 .2-.2 .1-.1 0 0 0 0c0 0 0 0-22.6-22.6l22.6 22.6c12.5-12.5 12.5-32.8 0-45.3c-12.4-12.4-32.6-12.5-45.1-.2c-.1 .1-.2 .2-.5 .4c-.5 .5-1.5 1.3-2.8 2.4c-2.7 2.2-6.8 5.2-12.1 8.2C399.4 90.4 384.8 96 368 96c-20.8 0-42.4-7-59.5-14.6c-8.4-3.7-15.4-7.5-20.3-10.3c-2.4-1.4-4.3-2.5-5.6-3.3c-.6-.4-1.1-.7-1.4-.9l-.3-.2 0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "opencart": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23d", + "label": "OpenCart", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "openid": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f19b", + "label": "OpenID", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "opera": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f26a", + "label": "Opera", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "optin-monster": { + "changes": [ + "4.4.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23c", + "label": "Optin Monster", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M572.6 421.4c5.6-9.5 4.7-15.2-5.4-11.6-3-4.9-7-9.5-11.1-13.8 2.9-9.7-.7-14.2-10.8-9.2-4.6-3.2-10.3-6.5-15.9-9.2 0-15.1-11.6-11.6-17.6-5.7-10.4-1.5-18.7-.3-26.8 5.7.3-6.5.3-13 .3-19.7 12.6 0 40.2-11 45.9-36.2 1.4-6.8 1.6-13.8-.3-21.9-3-13.5-14.3-21.3-25.1-25.7-.8-5.9-7.6-14.3-14.9-15.9s-12.4 4.9-14.1 10.3c-8.5 0-19.2 2.8-21.1 8.4-5.4-.5-11.1-1.4-16.8-1.9 2.7-1.9 5.4-3.5 8.4-4.6 5.4-9.2 14.6-11.4 25.7-11.6V256c19.5-.5 43-5.9 53.8-18.1 12.7-13.8 14.6-37.3 12.4-55.1-2.4-17.3-9.7-37.6-24.6-48.1-8.4-5.9-21.6-.8-22.7 9.5-2.2 19.6 1.2 30-38.6 25.1-10.3-23.8-24.6-44.6-42.7-60C341 49.6 242.9 55.5 166.4 71.7c19.7 4.6 41.1 8.6 59.7 16.5-26.2 2.4-52.7 11.3-76.2 23.2-32.8 17-44 29.9-56.7 42.4 14.9-2.2 28.9-5.1 43.8-3.8-9.7 5.4-18.4 12.2-26.5 20-25.8.9-23.8-5.3-26.2-25.9-1.1-10.5-14.3-15.4-22.7-9.7-28.1 19.9-33.5 79.9-12.2 103.5 10.8 12.2 35.1 17.3 54.9 17.8-.3 1.1-.3 1.9-.3 2.7 10.8.5 19.5 2.7 24.6 11.6 3 1.1 5.7 2.7 8.1 4.6-5.4.5-11.1 1.4-16.5 1.9-3.3-6.6-13.7-8.1-21.1-8.1-1.6-5.7-6.5-12.2-14.1-10.3-6.8 1.9-14.1 10-14.9 15.9-22.5 9.5-30.1 26.8-25.1 47.6 5.3 24.8 33 36.2 45.9 36.2v19.7c-6.6-5-14.3-7.5-26.8-5.7-5.5-5.5-17.3-10.1-17.3 5.7-5.9 2.7-11.4 5.9-15.9 9.2-9.8-4.9-13.6-1.7-11.1 9.2-4.1 4.3-7.8 8.6-11.1 13.8-10.2-3.7-11 2.2-5.4 11.6-1.1 3.5-1.6 7-1.9 10.8-.5 31.6 44.6 64 73.5 65.1 17.3.5 34.6-8.4 43-23.5 113.2 4.9 226.7 4.1 340.2 0 8.1 15.1 25.4 24.3 42.7 23.5 29.2-1.1 74.3-33.5 73.5-65.1.2-3.7-.7-7.2-1.7-10.7zm-73.8-254c1.1-3 2.4-8.4 2.4-14.6 0-5.9 6.8-8.1 14.1-.8 11.1 11.6 14.9 40.5 13.8 51.1-4.1-13.6-13-29-30.3-35.7zm-4.6 6.7c19.5 6.2 28.6 27.6 29.7 48.9-1.1 2.7-3 5.4-4.9 7.6-5.7 5.9-15.4 10-26.2 12.2 4.3-21.3.3-47.3-12.7-63 4.9-.8 10.9-2.4 14.1-5.7zm-24.1 6.8c13.8 11.9 20 39.2 14.1 63.5-4.1.5-8.1.8-11.6.8-1.9-21.9-6.8-44-14.3-64.6 3.7.3 8.1.3 11.8.3zM47.5 203c-1.1-10.5 2.4-39.5 13.8-51.1 7-7.3 14.1-5.1 14.1.8 0 6.2 1.4 11.6 2.4 14.6-17.3 6.8-26.2 22.2-30.3 35.7zm9.7 27.6c-1.9-2.2-3.5-4.9-4.9-7.6 1.4-21.3 10.3-42.7 29.7-48.9 3.2 3.2 9.2 4.9 14.1 5.7-13 15.7-17 41.6-12.7 63-10.8-2.2-20.5-6-26.2-12.2zm47.9 14.6c-4.1 0-8.1-.3-12.7-.8-4.6-18.6-1.9-38.9 5.4-53v.3l12.2-5.1c4.9-1.9 9.7-3.8 14.9-4.9-10.7 19.7-17.4 41.3-19.8 63.5zm184-162.7c41.9 0 76.2 34 76.2 75.9 0 42.2-34.3 76.2-76.2 76.2s-76.2-34-76.2-76.2c0-41.8 34.3-75.9 76.2-75.9zm115.6 174.3c-.3 17.8-7 48.9-23 57-13.2 6.6-6.5-7.5-16.5-58.1 13.3.3 26.6.3 39.5 1.1zm-54-1.6c.8 4.9 3.8 40.3-1.6 41.9-11.6 3.5-40 4.3-51.1-1.1-4.1-3-4.6-35.9-4.3-41.1v.3c18.9-.3 38.1-.3 57 0zM278.3 309c-13 3.5-41.6 4.1-54.6-1.6-6.5-2.7-3.8-42.4-1.9-51.6 19.2-.5 38.4-.5 57.8-.8v.3c1.1 8.3 3.3 51.2-1.3 53.7zm-106.5-51.1c12.2-.8 24.6-1.4 36.8-1.6-2.4 15.4-3 43.5-4.9 52.2-1.1 6.8-4.3 6.8-9.7 4.3-21.9-9.8-27.6-35.2-22.2-54.9zm-35.4 31.3c7.8-1.1 15.7-1.9 23.5-2.7 1.6 6.2 3.8 11.9 7 17.6 10 17 44 35.7 45.1 7 6.2 14.9 40.8 12.2 54.9 10.8 15.7-1.4 23.8-1.4 26.8-14.3 12.4 4.3 30.8 4.1 44 3 11.3-.8 20.8-.5 24.6-8.9 1.1 5.1 1.9 11.6 4.6 16.8 10.8 21.3 37.3 1.4 46.8-31.6 8.6.8 17.6 1.9 26.5 2.7-.4 1.3-3.8 7.3 7.3 11.6-47.6 47-95.7 87.8-163.2 107-63.2-20.8-112.1-59.5-155.9-106.5 9.6-3.4 10.4-8.8 8-12.5zm-21.6 172.5c-3.8 17.8-21.9 29.7-39.7 28.9-19.2-.8-46.5-17-59.2-36.5-2.7-31.1 43.8-61.3 66.2-54.6 14.9 4.3 27.8 30.8 33.5 54 0 3-.3 5.7-.8 8.2zm-8.7-66c-.5-13.5-.5-27-.3-40.5h.3c2.7-1.6 5.7-3.8 7.8-6.5 6.5-1.6 13-5.1 15.1-9.2 3.3-7.1-7-7.5-5.4-12.4 2.7-1.1 5.7-2.2 7.8-3.5 29.2 29.2 58.6 56.5 97.3 77-36.8 11.3-72.4 27.6-105.9 47-1.2-18.6-7.7-35.9-16.7-51.9zm337.6 64.6c-103 3.5-206.2 4.1-309.4 0 0 .3 0 .3-.3.3v-.3h.3c35.1-21.6 72.2-39.2 112.4-50.8 11.6 5.1 23 9.5 34.9 13.2 2.2.8 2.2.8 4.3 0 14.3-4.1 28.4-9.2 42.2-15.4 41.5 11.7 78.8 31.7 115.6 53zm10.5-12.4c-35.9-19.5-73-35.9-111.9-47.6 38.1-20 71.9-47.3 103.5-76.7 2.2 1.4 4.6 2.4 7.6 3.2 0 .8.3 1.9.5 2.4-4.6 2.7-7.8 6.2-5.9 10.3 2.2 3.8 8.6 7.6 15.1 8.9 2.4 2.7 5.1 5.1 8.1 6.8 0 13.8-.3 27.6-.8 41.3l.3-.3c-9.3 15.9-15.5 37-16.5 51.7zm105.9 6.2c-12.7 19.5-40 35.7-59.2 36.5-19.3.9-40.5-13.2-40.5-37 5.7-23.2 18.9-49.7 33.5-54 22.7-6.9 69.2 23.4 66.2 54.5zM372.9 75.2c-3.8-72.1-100.8-79.7-126-23.5 44.6-24.3 90.3-15.7 126 23.5zM74.8 407.1c-15.7 1.6-49.5 25.4-49.5 43.2 0 11.6 15.7 19.5 32.2 14.9 12.2-3.2 31.1-17.6 35.9-27.3 6-11.6-3.7-32.7-18.6-30.8zm215.9-176.2c28.6 0 51.9-21.6 51.9-48.4 0-36.1-40.5-58.1-72.2-44.3 9.5 3 16.5 11.6 16.5 21.6 0 23.3-33.3 32-46.5 11.3-7.3 34.1 19.4 59.8 50.3 59.8zM68 474.1c.5 6.5 12.2 12.7 21.6 9.5 6.8-2.7 14.6-10.5 17.3-16.2 3-7-1.1-20-9.7-18.4-8.9 1.6-29.7 16.7-29.2 25.1zm433.2-67c-14.9-1.9-24.6 19.2-18.9 30.8 4.9 9.7 24.1 24.1 36.2 27.3 16.5 4.6 32.2-3.2 32.2-14.9 0-17.8-33.8-41.6-49.5-43.2zM478.8 449c-8.4-1.6-12.4 11.3-9.5 18.4 2.4 5.7 10.3 13.5 17.3 16.2 9.2 3.2 21.1-3 21.3-9.5.9-8.4-20.2-23.5-29.1-25.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "orcid": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8d2", + "label": "ORCID", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M294.75 188.19h-45.92V342h47.47c67.62 0 83.12-51.34 83.12-76.91 0-41.64-26.54-76.9-84.67-76.9zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-80.79 360.76h-29.84v-207.5h29.84zm-14.92-231.14a19.57 19.57 0 1 1 19.57-19.57 19.64 19.64 0 0 1-19.57 19.57zM300 369h-81V161.26h80.6c76.73 0 110.44 54.83 110.44 103.85C410 318.39 368.38 369 300 369z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "osi": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41a", + "label": "Open Source Initiative", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M8 266.44C10.3 130.64 105.4 34 221.8 18.34c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7q-26.7-69.45-53.4-139c-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8a71.47 71.47 0 0 0-64.5-82.2c-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4q-26.85 69.9-53.7 139.9c-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119-24.9-49.2-25.2-87.7-26.8-108.7zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3q22.35-58.65 45-117.3c1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6a91.64 91.64 0 0 1 45.2 90.4c-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6q22.8 58.8 45.2 117.7c1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161-13.7-117.5-119.4-214.8-255.5-198-106.1 13-195.3 102.5-197.1 225.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "otter": { + "aliases": { + "unicodes": { + "composite": [ + "1f9a6" + ], + "secondary": [ + "10f700" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "badger", + "fauna", + "fishing", + "fur", + "mammal", + "marten", + "otter", + "playful" + ] + }, + "unicode": "f700", + "label": "Otter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M181.5 197.1l12.9 6.4c5.9 3 12.4 4.5 19.1 4.5c23.5 0 42.6-19.1 42.6-42.6V144c0-35.3-28.7-64-64-64H128c-35.3 0-64 28.7-64 64v21.4c0 23.5 19.1 42.6 42.6 42.6c6.6 0 13.1-1.5 19.1-4.5l12.9-6.4 8.4-4.2L135.1 185c-4.5-3-7.1-8-7.1-13.3V168c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24v3.7c0 5.3-2.7 10.3-7.1 13.3l-11.8 7.9 8.4 4.2zm-8.6 49.4L160 240l-12.9 6.4c-12.6 6.3-26.5 9.6-40.5 9.6c-3.6 0-7.1-.2-10.6-.6v.6c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384V336 320c0-23.7 12.9-44.4 32-55.4c9.4-5.4 20.3-8.6 32-8.6V240c0-26.5 21.5-48 48-48c8.8 0 16 7.2 16 16v32 16 48c0 8.8 7.2 16 16 16s16-7.2 16-16V204.3c0-48.2-30.8-91-76.6-106.3l-8.5-2.8c-8-2.7-12.6-11.1-10.4-19.3s10.3-13.2 18.6-11.6l19.9 4C576 86.1 640 164.2 640 254.9l0 1.1h0c0 123.7-100.3 224-224 224h-1.1H256h-.6C132 480 32 380 32 256.6V256 216.8c-10.1-14.6-16-32.3-16-51.4V144l0-1.4C6.7 139.3 0 130.5 0 120c0-13.3 10.7-24 24-24h2.8C44.8 58.2 83.3 32 128 32h64c44.7 0 83.2 26.2 101.2 64H296c13.3 0 24 10.7 24 24c0 10.5-6.7 19.3-16 22.6l0 1.4v21.4c0 1.4 0 2.8-.1 4.3c12-6.2 25.7-9.6 40.1-9.6h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-13.3 0-24 10.7-24 24v8h56.4c-15.2 17-24.4 39.4-24.4 64H320c-42.3 0-78.2-27.4-91-65.3c-5.1 .9-10.3 1.3-15.6 1.3c-14.1 0-27.9-3.3-40.5-9.6zM96 128a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm112 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "outdent": { + "aliases": { + "names": [ + "dedent" + ], + "unicodes": { + "secondary": [ + "10f03b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "align", + "justify", + "paragraph", + "tab" + ] + }, + "unicode": "f03b", + "label": "Outdent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM192 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32zm32 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM.2 268.6c-8.2-6.4-8.2-18.9 0-25.3l101.9-79.3c10.5-8.2 25.8-.7 25.8 12.6V335.3c0 13.3-15.3 20.8-25.8 12.6L.2 268.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "p": { + "aliases": { + "unicodes": { + "composite": [ + "70" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter P", + "Latin Small Letter P", + "letter" + ] + }, + "unicode": "50", + "label": "P", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32h96c88.4 0 160 71.6 160 160s-71.6 160-160 160H64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V320 96zM64 288h96c53 0 96-43 96-96s-43-96-96-96H64V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "padlet": { + "changes": [ + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e4a0", + "label": "Padlet", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M297.9 0L298 .001C305.6 .1078 312.4 4.72 315.5 11.78L447.5 320.3L447.8 320.2L448 320.6L445.2 330.6L402.3 488.6C398.6 504.8 382.6 514.9 366.5 511.2L298.1 495.6L229.6 511.2C213.5 514.9 197.5 504.8 193.8 488.6L150.9 330.6L148.2 320.6L148.3 320.2L280.4 11.78C283.4 4.797 290.3 .1837 297.9 .0006L297.9 0zM160.1 322.1L291.1 361.2L298 483.7L305.9 362.2L436.5 322.9L436.7 322.8L305.7 347.9L297.1 27.72L291.9 347.9L160.1 322.1zM426 222.6L520.4 181.6H594.2L437.2 429.2L468.8 320.2L426 222.6zM597.5 181.4L638.9 257.6C642.9 265.1 635 273.5 627.3 269.8L579.7 247.1L597.5 181.4zM127.3 318.5L158.7 430L1.61 154.5C-4.292 144.1 7.128 132.5 17.55 138.3L169.4 222.5L127.3 318.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "page4": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d7", + "label": "page4 Corporation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pagelines": { + "changes": [ + "4.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "flora", + "leaf", + "leaves", + "nature", + "plant", + "tree" + ] + }, + "unicode": "f18c", + "label": "Pagelines", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pager": { + "aliases": { + "unicodes": { + "composite": [ + "1f4df" + ], + "secondary": [ + "10f815" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beeper", + "cell phone", + "communication", + "page", + "pager" + ] + }, + "unicode": "f815", + "label": "Pager", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zm64 32v64c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 320c-13.3 0-24 10.7-24 24s10.7 24 24 24h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H80zm136 0c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paint-roller": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5aa" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "pigment", + "watercolor" + ] + }, + "unicode": "f5aa", + "label": "Paint Roller", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H352c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM160 352c0-17.7 14.3-32 32-32V304c0-44.2 35.8-80 80-80H416c17.7 0 32-14.3 32-32V160 69.5c37.3 13.2 64 48.7 64 90.5v32c0 53-43 96-96 96H272c-8.8 0-16 7.2-16 16v16c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paintbrush": { + "aliases": { + "names": [ + "paint-brush" + ], + "unicodes": { + "composite": [ + "1f58c" + ], + "secondary": [ + "10f1fc" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "paintbrush", + "painting", + "pigment", + "watercolor" + ] + }, + "unicode": "f1fc", + "label": "Paintbrush", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S517.7-4.4 499.1 9.6L262.4 187.2c-24 18-38.2 46.1-38.4 76.1L339.3 367.1zm-19.6 25.4l-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9 .2 7.8 .6 11.6C98.4 429.1 86.4 448 68.8 448H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H208c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "palette": { + "aliases": { + "unicodes": { + "composite": [ + "1f3a8" + ], + "secondary": [ + "10f53f" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "artist palette", + "brush", + "color", + "fill", + "museum", + "paint", + "painting", + "palette", + "pigment", + "watercolor" + ] + }, + "unicode": "f53f", + "label": "Palette", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256c0 .9 0 1.8 0 2.7c-.4 36.5-33.6 61.3-70.1 61.3H344c-26.5 0-48 21.5-48 48c0 3.4 .4 6.7 1 9.9c2.1 10.2 6.5 20 10.8 29.9c6.1 13.8 12.1 27.5 12.1 42c0 31.8-21.6 60.7-53.4 62c-3.5 .1-7 .2-10.6 .2C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "palfed": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d8", + "label": "Palfed", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pallet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f482" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "inventory", + "shipping", + "warehouse" + ] + }, + "unicode": "f482", + "label": "Pallet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 320 544h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H576V384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H544 320 96 32zm96 64H288v64H128V384zm224 0H512v64H352V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "panorama": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "landscape", + "photo", + "wide" + ] + }, + "unicode": "e209", + "label": "Panorama", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M45.6 32C20.4 32 0 52.4 0 77.6V434.4C0 459.6 20.4 480 45.6 480c5.1 0 10-.8 14.7-2.4C74.6 472.8 177.6 440 320 440s245.4 32.8 259.6 37.6c4.7 1.6 9.7 2.4 14.7 2.4c25.2 0 45.6-20.4 45.6-45.6V77.6C640 52.4 619.6 32 594.4 32c-5 0-10 .8-14.7 2.4C565.4 39.2 462.4 72 320 72S74.6 39.2 60.4 34.4C55.6 32.8 50.7 32 45.6 32zM96 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm272 0c7.9 0 15.4 3.9 19.8 10.5L512.3 353c5.4 8 5.6 18.4 .4 26.5s-14.7 12.3-24.2 10.7C442.7 382.4 385.2 376 320 376c-65.6 0-123.4 6.5-169.3 14.4c-9.8 1.7-19.7-2.9-24.7-11.5s-4.3-19.4 1.9-27.2L197.3 265c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l26.4 33.1 87-127.6c4.5-6.6 11.9-10.5 19.8-10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paper-plane": { + "aliases": { + "unicodes": { + "composite": [ + "f1d9" + ], + "secondary": [ + "10f1d8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "float", + "fold", + "mail", + "paper", + "send" + ] + }, + "unicode": "f1d8", + "label": "Paper Plane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z" + }, + "regular": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376V479.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "paperclip": { + "aliases": { + "unicodes": { + "composite": [ + "1f4ce" + ], + "secondary": [ + "10f0c6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attach", + "attachment", + "connect", + "link", + "papercli", + "paperclip" + ] + }, + "unicode": "f0c6", + "label": "Paperclip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M364.2 83.8c-24.4-24.4-64-24.4-88.4 0l-184 184c-42.1 42.1-42.1 110.3 0 152.4s110.3 42.1 152.4 0l152-152c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-152 152c-64 64-167.6 64-231.6 0s-64-167.6 0-231.6l184-184c46.3-46.3 121.3-46.3 167.6 0s46.3 121.3 0 167.6l-176 176c-28.6 28.6-75 28.6-103.6 0s-28.6-75 0-103.6l144-144c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-144 144c-6.7 6.7-6.7 17.7 0 24.4s17.7 6.7 24.4 0l176-176c24.4-24.4 24.4-64 0-88.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "parachute-box": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4cd" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "goods", + "relief", + "rescue", + "supplies" + ] + }, + "unicode": "f4cd", + "label": "Parachute Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M383.5 192c.3-5.3 .5-10.6 .5-16c0-51-15.9-96-40.2-127.6C319.5 16.9 288.2 0 256 0s-63.5 16.9-87.8 48.4C143.9 80 128 125 128 176c0 5.4 .2 10.7 .5 16H240V320H208c-7 0-13.7 1.5-19.7 4.2L68.2 192H96.5c-.3-5.3-.5-10.6-.5-16c0-64 22.2-121.2 57.1-159.3C62 49.3 18.6 122.6 4.2 173.6C1.5 183.1 9 192 18.9 192h6L165.2 346.3c-3.3 6.5-5.2 13.9-5.2 21.7v96c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V368c0-7.8-1.9-15.2-5.2-21.7L487.1 192h6c9.9 0 17.4-8.9 14.7-18.4C493.4 122.6 450 49.3 358.9 16.7C393.8 54.8 416 112.1 416 176c0 5.4-.2 10.7-.5 16h28.3L323.7 324.2c-6-2.7-12.7-4.2-19.7-4.2H272V192H383.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paragraph": { + "aliases": { + "unicodes": { + "composite": [ + "b6" + ], + "secondary": [ + "10f1dd" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pilcrow Sign", + "edit", + "format", + "text", + "writing" + ] + }, + "unicode": "f1dd", + "label": "Paragraph", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 32h64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H384l0 352c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-352H288V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H192c-88.4 0-160-71.6-160-160s71.6-160 160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "passport": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ab" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "id", + "identification", + "issued", + "travel" + ] + }, + "unicode": "f5ab", + "label": "Passport", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM183 278.8c-27.9-13.2-48.4-39.4-53.7-70.8h39.1c1.6 30.4 7.7 53.8 14.6 70.8zm41.3 9.2l-.3 0-.3 0c-2.4-3.5-5.7-8.9-9.1-16.5c-6-13.6-12.4-34.3-14.2-63.5h47.1c-1.8 29.2-8.1 49.9-14.2 63.5c-3.4 7.6-6.7 13-9.1 16.5zm40.7-9.2c6.8-17.1 12.9-40.4 14.6-70.8h39.1c-5.3 31.4-25.8 57.6-53.7 70.8zM279.6 176c-1.6-30.4-7.7-53.8-14.6-70.8c27.9 13.2 48.4 39.4 53.7 70.8H279.6zM223.7 96l.3 0 .3 0c2.4 3.5 5.7 8.9 9.1 16.5c6 13.6 12.4 34.3 14.2 63.5H200.5c1.8-29.2 8.1-49.9 14.2-63.5c3.4-7.6 6.7-13 9.1-16.5zM183 105.2c-6.8 17.1-12.9 40.4-14.6 70.8H129.3c5.3-31.4 25.8-57.6 53.7-70.8zM352 192A128 128 0 1 0 96 192a128 128 0 1 0 256 0zM112 384c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paste": { + "aliases": { + "names": [ + "file-clipboard" + ], + "unicodes": { + "secondary": [ + "10f0ea" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "copy", + "document", + "paper" + ] + }, + "unicode": "f0ea", + "label": "Paste", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 0c-23.7 0-44.4 12.9-55.4 32H48C21.5 32 0 53.5 0 80V400c0 26.5 21.5 48 48 48H192V176c0-44.2 35.8-80 80-80h48V80c0-26.5-21.5-48-48-48H215.4C204.4 12.9 183.7 0 160 0zM272 128c-26.5 0-48 21.5-48 48V448v16c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V256H416c-17.7 0-32-14.3-32-32V128H320 272zM160 40a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm256 88v96h96l-96-96z" + }, + "regular": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M80 96v16c0 17.7 14.3 32 32 32h60.8c16.6-28.7 47.6-48 83.2-48h62c-7.1-27.6-32.2-48-62-48H215.4C211.6 20.9 188.2 0 160 0s-51.6 20.9-55.4 48H64C28.7 48 0 76.7 0 112V384c0 35.3 28.7 64 64 64h96V400H64c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H80zm64-40a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM256 464c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H384v48c0 17.7 14.3 32 32 32h48V448c0 8.8-7.2 16-16 16H256zm192 48c35.3 0 64-28.7 64-64V227.9c0-12.7-5.1-24.9-14.1-33.9l-51.9-51.9c-9-9-21.2-14.1-33.9-14.1H256c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "patreon": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d9", + "label": "Patreon", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pause": { + "aliases": { + "unicodes": { + "composite": [ + "23f8" + ], + "secondary": [ + "10f04c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "double", + "hold", + "pause", + "pause button", + "vertical", + "wait" + ] + }, + "unicode": "f04c", + "label": "Pause", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112V400c0 26.5 21.5 48 48 48H80c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zm192 0c-26.5 0-48 21.5-48 48V400c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paw": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "cat", + "dog", + "pet", + "print" + ] + }, + "unicode": "f1b0", + "label": "Paw", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paypal": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1ed", + "label": "Paypal", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "peace": { + "aliases": { + "unicodes": { + "composite": [ + "262e" + ], + "secondary": [ + "10f67c" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "peace", + "peace symbol", + "serenity", + "tranquility", + "truce", + "war" + ] + }, + "unicode": "f67c", + "label": "Peace", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 445.3V323.5l-94.3 77.1c26.1 22.8 58.5 38.7 94.3 44.7zM89.2 351.1L224 240.8V66.7C133.2 81.9 64 160.9 64 256c0 34.6 9.2 67.1 25.2 95.1zm293.1 49.5L288 323.5V445.3c35.7-6 68.1-21.9 94.3-44.7zm40.6-49.5c16-28 25.2-60.5 25.2-95.1c0-95.1-69.2-174.1-160-189.3V240.8L422.8 351.1zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen": { + "aliases": { + "unicodes": { + "composite": [ + "1f58a" + ], + "secondary": [ + "10f304" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ballpoint", + "design", + "edit", + "pen", + "update", + "write" + ] + }, + "unicode": "f304", + "label": "Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M362.7 19.3L314.3 67.7 444.3 197.7l48.4-48.4c25-25 25-65.5 0-90.5L453.3 19.3c-25-25-65.5-25-90.5 0zm-71 71L58.6 323.5c-10.4 10.4-18 23.3-22.2 37.4L1 481.2C-1.5 489.7 .8 498.8 7 505s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L421.7 220.3 291.7 90.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-clip": { + "aliases": { + "names": [ + "pen-alt" + ], + "unicodes": { + "secondary": [ + "10f305" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "update", + "write" + ] + }, + "unicode": "f305", + "label": "Pen Clip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M453.3 19.3l39.4 39.4c25 25 25 65.5 0 90.5l-52.1 52.1 0 0-1-1 0 0-16-16-96-96-17-17 52.1-52.1c25-25 65.5-25 90.5 0zM241 114.9c-9.4-9.4-24.6-9.4-33.9 0L105 217c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L173.1 81c28.1-28.1 73.7-28.1 101.8 0L288 94.1l17 17 96 96 16 16 1 1-17 17L229.5 412.5c-48 48-109.2 80.8-175.8 94.1l-25 5c-7.9 1.6-16-.9-21.7-6.6s-8.1-13.8-6.6-21.7l5-25c13.3-66.6 46.1-127.8 94.1-175.8L254.1 128 241 114.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-fancy": { + "aliases": { + "unicodes": { + "composite": [ + "1f58b", + "2712" + ], + "secondary": [ + "10f5ac" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black nib", + "design", + "edit", + "fountain", + "fountain pen", + "nib", + "pen", + "update", + "write" + ] + }, + "unicode": "f5ac", + "label": "Pen Fancy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M373.5 27.1C388.5 9.9 410.2 0 433 0c43.6 0 79 35.4 79 79c0 22.8-9.9 44.6-27.1 59.6L277.7 319l-10.3-10.3-64-64L193 234.3 373.5 27.1zM170.3 256.9l10.4 10.4 64 64 10.4 10.4-19.2 83.4c-3.9 17.1-16.9 30.7-33.8 35.4L24.4 510.3l95.4-95.4c2.6 .7 5.4 1.1 8.3 1.1c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32c0 2.9 .4 5.6 1.1 8.3L1.7 487.6 51.5 310c4.7-16.9 18.3-29.9 35.4-33.8l83.4-19.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-nib": { + "aliases": { + "unicodes": { + "composite": [ + "2711" + ], + "secondary": [ + "10f5ad" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "fountain pen", + "update", + "write" + ] + }, + "unicode": "f5ad", + "label": "Pen Nib", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M368.4 18.3L312.7 74.1 437.9 199.3l55.7-55.7c21.9-21.9 21.9-57.3 0-79.2L447.6 18.3c-21.9-21.9-57.3-21.9-79.2 0zM288 94.6l-9.2 2.8L134.7 140.6c-19.9 6-35.7 21.2-42.3 41L3.8 445.8c-3.8 11.3-1 23.9 7.3 32.4L164.7 324.7c-3-6.3-4.7-13.3-4.7-20.7c0-26.5 21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48c-7.4 0-14.4-1.7-20.7-4.7L33.7 500.9c8.6 8.3 21.1 11.2 32.4 7.3l264.3-88.6c19.7-6.6 35-22.4 41-42.3l43.2-144.1 2.8-9.2L288 94.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-ruler": { + "aliases": { + "names": [ + "pencil-ruler" + ], + "unicodes": { + "secondary": [ + "10f5ae" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "draw", + "pencil" + ] + }, + "unicode": "f5ae", + "label": "Pen Ruler", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M469.3 19.3l23.4 23.4c25 25 25 65.5 0 90.5l-56.4 56.4L322.3 75.7l56.4-56.4c25-25 65.5-25 90.5 0zM44.9 353.2L299.7 98.3 413.7 212.3 158.8 467.1c-6.7 6.7-15.1 11.6-24.2 14.2l-104 29.7c-8.4 2.4-17.4 .1-23.6-6.1s-8.5-15.2-6.1-23.6l29.7-104c2.6-9.2 7.5-17.5 14.2-24.2zM249.4 103.4L103.4 249.4 16 161.9c-18.7-18.7-18.7-49.1 0-67.9L94.1 16c18.7-18.7 49.1-18.7 67.9 0l19.8 19.8c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1l45.1 45.1zM408.6 262.6l45.1 45.1c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1L496 350.1c18.7 18.7 18.7 49.1 0 67.9L417.9 496c-18.7 18.7-49.1 18.7-67.9 0l-87.4-87.4L408.6 262.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-to-square": { + "aliases": { + "names": [ + "edit" + ], + "unicodes": { + "secondary": [ + "10f044" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pen", + "pencil", + "update", + "write" + ] + }, + "unicode": "f044", + "label": "Pen To Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z" + }, + "regular": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M441 58.9L453.1 71c9.4 9.4 9.4 24.6 0 33.9L424 134.1 377.9 88 407 58.9c9.4-9.4 24.6-9.4 33.9 0zM209.8 256.2L344 121.9 390.1 168 255.8 302.2c-2.9 2.9-6.5 5-10.4 6.1l-58.5 16.7 16.7-58.5c1.1-3.9 3.2-7.5 6.1-10.4zM373.1 25L175.8 222.2c-8.7 8.7-15 19.4-18.3 31.1l-28.6 100c-2.4 8.4-.1 17.4 6.1 23.6s15.2 8.5 23.6 6.1l100-28.6c11.8-3.4 22.5-9.7 31.1-18.3L487 138.9c28.1-28.1 28.1-73.7 0-101.8L474.9 25C446.8-3.1 401.2-3.1 373.1 25zM88 64C39.4 64 0 103.4 0 152V424c0 48.6 39.4 88 88 88H360c48.6 0 88-39.4 88-88V312c0-13.3-10.7-24-24-24s-24 10.7-24 24V424c0 22.1-17.9 40-40 40H88c-22.1 0-40-17.9-40-40V152c0-22.1 17.9-40 40-40H200c13.3 0 24-10.7 24-24s-10.7-24-24-24H88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "pencil": { + "aliases": { + "names": [ + "pencil-alt" + ], + "unicodes": { + "composite": [ + "270f", + "f040" + ], + "primary": [ + "f040" + ], + "secondary": [ + "10f040", + "10f303" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lower Left Pencil", + "design", + "draw", + "edit", + "lead", + "pencil", + "update", + "write" + ] + }, + "unicode": "f303", + "label": "Pencil", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M410.3 231l11.3-11.3-33.9-33.9-62.1-62.1L291.7 89.8l-11.3 11.3-22.6 22.6L58.6 322.9c-10.4 10.4-18 23.3-22.2 37.4L1 480.7c-2.5 8.4-.2 17.5 6.1 23.7s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L387.7 253.7 410.3 231zM160 399.4l-9.1 22.7c-4 3.1-8.5 5.4-13.3 6.9L59.4 452l23-78.1c1.4-4.9 3.8-9.4 6.9-13.3l22.7-9.1v32c0 8.8 7.2 16 16 16h32zM362.7 18.7L348.3 33.2 325.7 55.8 314.3 67.1l33.9 33.9 62.1 62.1 33.9 33.9 11.3-11.3 22.6-22.6 14.5-14.5c25-25 25-65.5 0-90.5L453.3 18.7c-25-25-65.5-25-90.5 0zm-47.4 168l-144 144c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l144-144c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-arrows": { + "aliases": { + "names": [ + "people-arrows-left-right" + ], + "unicodes": { + "secondary": [ + "10e068" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "distance", + "isolation", + "separate", + "social distancing", + "users-people" + ] + }, + "unicode": "e068", + "label": "People Arrows", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64a64 64 0 1 1 128 0A64 64 0 1 1 64 64zM25.9 233.4C29.3 191.9 64 160 105.6 160h44.8c27 0 51 13.4 65.5 34.1c-2.7 1.9-5.2 4-7.5 6.3l-64 64c-21.9 21.9-21.9 57.3 0 79.2L192 391.2V464c0 26.5-21.5 48-48 48H112c-26.5 0-48-21.5-48-48V348.3c-26.5-9.5-44.7-35.8-42.2-65.6l4.1-49.3zM448 64a64 64 0 1 1 128 0A64 64 0 1 1 448 64zM431.6 200.4c-2.3-2.3-4.9-4.4-7.5-6.3c14.5-20.7 38.6-34.1 65.5-34.1h44.8c41.6 0 76.3 31.9 79.7 73.4l4.1 49.3c2.5 29.8-15.7 56.1-42.2 65.6V464c0 26.5-21.5 48-48 48H496c-26.5 0-48-21.5-48-48V391.2l47.6-47.6c21.9-21.9 21.9-57.3 0-79.2l-64-64zM272 240v32h96V240c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l64 64c9.4 9.4 9.4 24.6 0 33.9l-64 64c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V336H272v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-carry-box": { + "aliases": { + "names": [ + "people-carry" + ], + "unicodes": { + "secondary": [ + "10f4ce" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4ce", + "label": "People Carry Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 48a48 48 0 1 1 96 0A48 48 0 1 1 80 48zm64 193.7v65.1l51 51c7.1 7.1 11.8 16.2 13.4 26.1l15.2 90.9c2.9 17.4-8.9 33.9-26.3 36.8s-33.9-8.9-36.8-26.3l-14.3-85.9L66.8 320C54.8 308 48 291.7 48 274.7V186.6c0-32.4 26.2-58.6 58.6-58.6c24.1 0 46.5 12 59.9 32l47.4 71.1 10.1 5V160c0-17.7 14.3-32 32-32H384c17.7 0 32 14.3 32 32v76.2l10.1-5L473.5 160c13.3-20 35.8-32 59.9-32c32.4 0 58.6 26.2 58.6 58.6v88.1c0 17-6.7 33.3-18.7 45.3l-79.4 79.4-14.3 85.9c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l15.2-90.9c1.6-9.9 6.3-19 13.4-26.1l51-51V241.7l-19 28.5c-4.6 7-11 12.6-18.5 16.3l-59.6 29.8c-2.4 1.3-4.9 2.2-7.6 2.8c-2.6 .6-5.3 .9-7.9 .8H256.7c-2.5 .1-5-.2-7.5-.7c-2.9-.6-5.6-1.6-8.1-3l-59.5-29.8c-7.5-3.7-13.8-9.4-18.5-16.3l-19-28.5zM2.3 468.1L50.1 348.6l49.2 49.2-37.6 94c-6.6 16.4-25.2 24.4-41.6 17.8S-4.3 484.5 2.3 468.1zM512 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm77.9 348.6l47.8 119.5c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8l-37.6-94 49.2-49.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-group": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "family", + "group", + "team" + ] + }, + "unicode": "e533", + "label": "People Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M72 88a56 56 0 1 1 112 0A56 56 0 1 1 72 88zM64 245.7C54 256.9 48 271.8 48 288s6 31.1 16 42.3V245.7zm144.4-49.3C178.7 222.7 160 261.2 160 304c0 34.3 12 65.8 32 90.5V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V389.2C26.2 371.2 0 332.7 0 288c0-61.9 50.1-112 112-112h32c24 0 46.2 7.5 64.4 20.3zM448 416V394.5c20-24.7 32-56.2 32-90.5c0-42.8-18.7-81.3-48.4-107.7C449.8 183.5 472 176 496 176h32c61.9 0 112 50.1 112 112c0 44.7-26.2 83.2-64 101.2V416c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32zm8-328a56 56 0 1 1 112 0A56 56 0 1 1 456 88zM576 245.7v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM320 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM240 304c0 16.2 6 31 16 42.3V261.7c-10 11.3-16 26.1-16 42.3zm144-42.3v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM448 304c0 44.7-26.2 83.2-64 101.2V448c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V405.2c-37.8-18-64-56.5-64-101.2c0-61.9 50.1-112 112-112h32c61.9 0 112 50.1 112 112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "group", + "need" + ] + }, + "unicode": "e534", + "label": "People Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M360 72a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zM144 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM496 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM200 313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8L264 217.5V272c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V217.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L440 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H486.2c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3H310.2c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6H134.2c-32.4 0-62.1 17.8-77.5 46.3L18.9 340.6c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L88 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V313.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-pulling": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forced return", + "yanking" + ] + }, + "unicode": "e535", + "label": "People Pulling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80 96A48 48 0 1 0 80 0a48 48 0 1 0 0 96zM64 128c-35.3 0-64 28.7-64 64V320c0 17.7 14.3 32 32 32c9.8 0 18.5-4.4 24.4-11.2L80.4 485.3c2.9 17.4 19.4 29.2 36.8 26.3s29.2-19.4 26.3-36.8L123.1 352h15.7l30 134.9c3.8 17.3 20.9 28.1 38.2 24.3s28.1-20.9 24.3-38.2l-57.3-258 116.3 53.8c.5 .3 1.1 .5 1.6 .7c8.6 3.6 18 3.1 25.9-.7c3.4-1.6 6.6-3.9 9.3-6.7c3.1-3.2 5.5-7 7.1-11.4c.1-.3 .2-.7 .3-1l2.5-7.5c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L537 232.7l-15.3-36.8C504.5 154.8 464.3 128 419.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-24.4 10.9-44.6 29-58.1 51.6L157.3 136.9C144.7 131 130.9 128 117 128H64zM464 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM349.7 335.6l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L372.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-robbery": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "criminal", + "hands up", + "looting", + "robbery", + "steal" + ] + }, + "unicode": "e536", + "label": "People Robbery", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M488.2 59.1C478.1 99.6 441.7 128 400 128s-78.1-28.4-88.2-68.9L303 24.2C298.8 7.1 281.4-3.3 264.2 1S236.7 22.6 241 39.8l8.7 34.9c11 44 40.2 79.6 78.3 99.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V174.3c38.1-20 67.3-55.6 78.3-99.6L559 39.8c4.3-17.1-6.1-34.5-23.3-38.8S501.2 7.1 497 24.2l-8.7 34.9zM400 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM80 96A48 48 0 1 0 80 0a48 48 0 1 0 0 96zm-8 32c-35.3 0-64 28.7-64 64v96l0 .6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352H88V480c0 17.7 14.3 32 32 32s32-14.3 32-32V252.7l13 20.5c5.9 9.2 16.1 14.9 27 14.9h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H209.6l-37.4-58.9C157.6 142 132.1 128 104.7 128H72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-roof": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "family", + "group", + "manage", + "people", + "safe", + "shelter" + ] + }, + "unicode": "e537", + "label": "People Roof", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M335.5 4l288 160c15.4 8.6 21 28.1 12.4 43.5s-28.1 21-43.5 12.4L320 68.6 47.5 220c-15.4 8.6-34.9 3-43.5-12.4s-3-34.9 12.4-43.5L304.5 4c9.7-5.4 21.4-5.4 31.1 0zM320 160a40 40 0 1 1 0 80 40 40 0 1 1 0-80zM144 256a40 40 0 1 1 0 80 40 40 0 1 1 0-80zm312 40a40 40 0 1 1 80 0 40 40 0 1 1 -80 0zM226.9 491.4L200 441.5V480c0 17.7-14.3 32-32 32H120c-17.7 0-32-14.3-32-32V441.5L61.1 491.4c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l37.9-70.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c16.3 0 31.9 4.5 45.4 12.6l33.6-62.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c32.4 0 62.1 17.8 77.5 46.3l33.6 62.3c13.5-8.1 29.1-12.6 45.4-12.6h19.5c32.4 0 62.1 17.8 77.5 46.3l37.9 70.3c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8L552 441.5V480c0 17.7-14.3 32-32 32H472c-17.7 0-32-14.3-32-32V441.5l-26.9 49.9c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l36.3-67.5c-1.7-1.7-3.2-3.6-4.3-5.8L376 345.5V400c0 17.7-14.3 32-32 32H296c-17.7 0-32-14.3-32-32V345.5l-26.9 49.9c-1.2 2.2-2.6 4.1-4.3 5.8l36.3 67.5c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pepper-hot": { + "aliases": { + "unicodes": { + "composite": [ + "1f336" + ], + "secondary": [ + "10f816" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buffalo wings", + "capsicum", + "chili", + "chilli", + "habanero", + "hot", + "hot pepper", + "jalapeno", + "mexican", + "pepper", + "spicy", + "tabasco", + "vegetable" + ] + }, + "unicode": "f816", + "label": "Pepper Hot", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M428.3 3c11.6-6.4 26.2-2.3 32.6 9.3l4.8 8.7c19.3 34.7 19.8 75.7 3.4 110C495.8 159.6 512 197.9 512 240c0 18.5-3.1 36.3-8.9 52.8c-6.1 17.3-28.5 16.3-36.8-.1l-11.7-23.4c-4.1-8.1-12.4-13.3-21.5-13.3H360c-13.3 0-24-10.7-24-24V152c0-13.3-10.7-24-24-24l-17.1 0c-21.3 0-30-23.9-10.8-32.9C304.7 85.4 327.7 80 352 80c28.3 0 54.8 7.3 77.8 20.2c5.5-18.2 3.7-38.4-6-55.8L419 35.7c-6.4-11.6-2.3-26.2 9.3-32.6zM171.2 345.5L264 160l40 0v80c0 26.5 21.5 48 48 48h76.2l23.9 47.8C372.3 443.9 244.3 512 103.2 512H44.4C19.9 512 0 492.1 0 467.6c0-20.8 14.5-38.8 34.8-43.3l49.8-11.1c37.6-8.4 69.5-33.2 86.7-67.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "perbyte": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e083", + "label": "PerByte", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M305.314,284.578H246.6V383.3h58.711q24.423,0,38.193-13.77t13.77-36.11q0-21.826-14.032-35.335T305.314,284.578ZM149.435,128.7H90.724v98.723h58.711q24.42,0,38.19-13.773t13.77-36.107q0-21.826-14.029-35.338T149.435,128.7ZM366.647,32H81.353A81.445,81.445,0,0,0,0,113.352V398.647A81.445,81.445,0,0,0,81.353,480H366.647A81.445,81.445,0,0,0,448,398.647V113.352A81.445,81.445,0,0,0,366.647,32Zm63.635,366.647a63.706,63.706,0,0,1-63.635,63.635H81.353a63.706,63.706,0,0,1-63.635-63.635V113.352A63.706,63.706,0,0,1,81.353,49.718H366.647a63.706,63.706,0,0,1,63.635,63.634ZM305.314,128.7H246.6v98.723h58.711q24.423,0,38.193-13.773t13.77-36.107q0-21.826-14.032-35.338T305.314,128.7Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "percent": { + "aliases": { + "names": [ + "percentage" + ], + "unicodes": { + "composite": [ + "f295", + "f541" + ], + "primary": [ + "f295", + "f541" + ], + "secondary": [ + "1025", + "10f295", + "10f541" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Percent Sign", + "discount", + "fraction", + "proportion", + "rate", + "ratio" + ] + }, + "unicode": "25", + "label": "Percent", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l320-320zM128 128A64 64 0 1 0 0 128a64 64 0 1 0 128 0zM384 384a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "periscope": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3da", + "label": "Periscope", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "person": { + "aliases": { + "names": [ + "male" + ], + "unicodes": { + "composite": [ + "1f9cd" + ], + "secondary": [ + "10f183" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "man", + "person standing", + "stand", + "standing", + "woman" + ] + }, + "unicode": "f183", + "label": "Person", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-arrow-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ground", + "indigenous", + "native" + ] + }, + "unicode": "e538", + "label": "Person Arrow Down To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 352V352h16v96H184zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H152h80H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V448zM464 64V306.7l-25.4-25.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L528 306.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-arrow-up-from-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "population", + "rise" + ] + }, + "unicode": "e539", + "label": "Person Arrow Up From Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 352V352h16v96H184zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H152h80H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V448zM598.6 121.4l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L464 141.3 464 384c0 17.7 14.3 32 32 32s32-14.3 32-32V141.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-biking": { + "aliases": { + "names": [ + "biking" + ], + "unicodes": { + "composite": [ + "1f6b4" + ], + "secondary": [ + "10f84a" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicycle", + "bike", + "biking", + "cyclist", + "pedal", + "person biking", + "summer", + "wheel" + ] + }, + "unicode": "f84a", + "label": "Person Biking", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm27.2 64l-61.8-48.8c-17.3-13.6-41.7-13.8-59.1-.3l-83.1 64.2c-30.7 23.8-28.5 70.8 4.3 91.6L288 305.1V416c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-10.7-5.3-20.7-14.2-26.6L295 232.9l60.3-48.5L396 217c5.7 4.5 12.7 7 20 7h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H427.2zM56 384a72 72 0 1 1 144 0A72 72 0 1 1 56 384zm200 0A128 128 0 1 0 0 384a128 128 0 1 0 256 0zm184 0a72 72 0 1 1 144 0 72 72 0 1 1 -144 0zm200 0a128 128 0 1 0 -256 0 128 128 0 1 0 256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-booth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f756" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "changing room", + "curtain", + "vote", + "voting" + ] + }, + "unicode": "f756", + "label": "Person Booth", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V192h64V32zm320 0c0-17.7-14.3-32-32-32s-32 14.3-32 32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V32zM224 512c17.7 0 32-14.3 32-32V320H192V480c0 17.7 14.3 32 32 32zM320 0c-9.3 0-18.1 4-24.2 11s-8.8 16.3-7.5 25.5l31.2 218.6L288.6 409.7c-3.5 17.3 7.8 34.2 25.1 37.7s34.2-7.8 37.7-25.1l.7-3.6c1.3 16.4 15.1 29.4 31.9 29.4c17.7 0 32-14.3 32-32c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM112 80A48 48 0 1 0 16 80a48 48 0 1 0 96 0zm0 261.3V269.3l4.7 4.7c9 9 21.2 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H157.3l-41.6-41.6c-14.3-14.3-33.8-22.4-54-22.4C27.6 160 0 187.6 0 221.6v55.7l0 .9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V384l32 42.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V421.3c0-10.4-3.4-20.5-9.6-28.8L112 341.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-breastfeeding": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baby", + "child", + "infant", + "mother", + "nutrition", + "sustenance" + ] + }, + "unicode": "e53a", + "label": "Person Breastfeeding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0a80 80 0 1 1 0 160A80 80 0 1 1 224 0zM436.8 382.8L373.5 462c-16.6 20.7-46.8 24.1-67.5 7.5c-17.6-14.1-22.7-38.1-13.5-57.7l-.8-.1c-38.9-5.6-74.3-25.1-99.7-54.8V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 .8 0 1.6 .1 2.4l101.4 50.7c23.7 11.9 33.3 40.7 21.5 64.4s-40.7 33.3-64.4 21.5L27.2 427.3c-1.1-.5-2.2-1.1-3.3-1.7c-4.9-2.8-9.2-6.4-12.6-10.6c-4.6-5.4-7.8-11.7-9.6-18.4c-3.3-12-1.9-25.2 4.8-36.6c.6-1.1 1.3-2.2 2-3.2L75.6 256.1c26.7-40.1 71.7-64.1 119.8-64.1h75.2c46.5 0 90.1 22.5 117.2 60.3l50.7 70.9c2.2 3 4 6.1 5.5 9.4c2.9 6.7 4.3 13.8 4 20.8c-.3 10.6-4.2 21-11.2 29.4zM320 332a44 44 0 1 0 -88 0 44 44 0 1 0 88 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "accident", + "crash", + "explode", + "violence" + ] + }, + "unicode": "e53b", + "label": "Person Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 384V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H465.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L408 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-cane": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aging", + "cane", + "elderly", + "old", + "staff" + ] + }, + "unicode": "e53c", + "label": "Person Cane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M272 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm-8 187.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1l-73.7-88.9c-18.2-22-45.3-34.7-73.9-34.7H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3zM352 376c0-4.4 3.6-8 8-8s8 3.6 8 8V488c0 13.3 10.7 24 24 24s24-10.7 24-24V376c0-30.9-25.1-56-56-56s-56 25.1-56 56v8c0 13.3 10.7 24 24 24s24-10.7 24-24v-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-chalkboard": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "instructor", + "keynote", + "lesson", + "presentation", + "teacher" + ] + }, + "unicode": "e53d", + "label": "Person Chalkboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 384V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V192h56 64 16c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V64H576V256H384V224H320v48c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48v80H243.1 177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "approved", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e53e", + "label": "Person Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zm136 16a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "alert", + "lost", + "missing" + ] + }, + "unicode": "e53f", + "label": "Person Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "remove" + ] + }, + "unicode": "e540", + "label": "Person Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zm136 16a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm224 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H496c8.8 0 16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "found" + ] + }, + "unicode": "e541", + "label": "Person Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16V384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H448V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lost", + "missing" + ] + }, + "unicode": "e542", + "label": "Person Circle Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM368 321.6V328c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9c0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3c15.1-7.9 24.5-23.6 24.5-40.6c0-25.4-20.6-45.9-45.9-45.9H409.6c-23 0-41.6 18.6-41.6 41.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dead", + "removed" + ] + }, + "unicode": "e543", + "label": "Person Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-digging": { + "aliases": { + "names": [ + "digging" + ], + "unicodes": { + "secondary": [ + "10f85e" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bury", + "construction", + "debris", + "dig", + "men at work" + ] + }, + "unicode": "f85e", + "label": "Person Digging", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M208 64a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM9.8 214.8c5.1-12.2 19.1-18 31.4-12.9L60.7 210l22.9-38.1C99.9 144.6 129.3 128 161 128c51.4 0 97 32.9 113.3 81.7l34.6 103.7 79.3 33.1 34.2-45.6c6.4-8.5 16.6-13.3 27.2-12.8s20.3 6.4 25.8 15.5l96 160c5.9 9.9 6.1 22.2 .4 32.2s-16.3 16.2-27.8 16.2H288c-11.1 0-21.4-5.7-27.2-15.2s-6.4-21.2-1.4-31.1l16-32c5.4-10.8 16.5-17.7 28.6-17.7h32l22.5-30L22.8 246.2c-12.2-5.1-18-19.1-12.9-31.4zm82.8 91.8l112 48c11.8 5 19.4 16.6 19.4 29.4v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V405.1l-60.6-26-37 111c-5.6 16.8-23.7 25.8-40.5 20.2S-3.9 486.6 1.6 469.9l48-144 11-33 32 13.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-dots-from-line": { + "aliases": { + "names": [ + "diagnoses" + ], + "unicodes": { + "secondary": [ + "10f470" + ] + } + }, + "changes": [ + "5.0.7", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "diagnosis" + ] + }, + "unicode": "f470", + "label": "Person Dots From Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 176A88 88 0 1 0 288 0a88 88 0 1 0 0 176zM78.7 372.9c15-12.5 50-34.4 97.3-50.1V432H400V322.7c47.3 15.8 82.3 37.7 97.3 50.1c20.4 17 50.6 14.2 67.6-6.1s14.2-50.6-6.1-67.6c-12-10-30.1-22.5-53.2-35C497.2 278.4 481.7 288 464 288c-26.5 0-48-21.5-48-48c0-4.3 .6-8.4 1.6-12.4C379.1 215.9 335.3 208 288 208c-60.2 0-114.9 12.9-160 29.9c0 .7 0 1.4 0 2.1c0 26.5-21.5 48-48 48c-11.8 0-22.7-4.3-31-11.4c-13.1 8.1-23.7 15.9-31.7 22.5c-20.4 17-23.1 47.2-6.1 67.6s47.2 23.1 67.6 6.1zM24 464c-13.3 0-24 10.7-24 24s10.7 24 24 24H552c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM224 280a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM96 240a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm368 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-dress": { + "aliases": { + "names": [ + "female" + ], + "unicodes": { + "secondary": [ + "10f182" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "man", + "skirt", + "woman" + ] + }, + "unicode": "f182", + "label": "Person Dress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM88 384H70.2c-10.9 0-18.6-10.7-15.2-21.1L93.3 248.1 59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2c20.3-33.7 56.7-54.3 96-54.3h11.6c39.3 0 75.7 20.6 96 54.3l53.6 89.2c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9l-33.9-56.3L265 362.9c3.5 10.4-4.3 21.1-15.2 21.1H232v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H152v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-dress-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "accident", + "crash", + "explode", + "violence" + ] + }, + "unicode": "e544", + "label": "Person Dress Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M528 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM390.2 384H408v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h16v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h17.8c10.9 0 18.6-10.7 15.2-21.1L546.7 248.1l33.9 56.3c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-53.6-89.2c-20.2-33.7-56.7-54.3-96-54.3H474.2c-39.3 0-75.7 20.6-96 54.3l-53.6 89.2c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l33.9-56.3L375 362.9c-3.5 10.4 4.3 21.1 15.2 21.1zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-drowning": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drown", + "emergency", + "swim" + ] + }, + "unicode": "e545", + "label": "Person Drowning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 64c0-17.7-14.3-32-32-32s-32 14.3-32 32V96.2c0 54.1 23.5 104 62.2 138.3l-21 146.7c7.8 2.1 15.5 3.3 22.8 3.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c12.4 8.5 26.1 14.8 39.7 18l17.7-97.6c10.7-1.2 21.3-3.1 31.9-5.5l105-23.9c17.2-3.9 28-21.1 24.1-38.3s-21.1-28-38.3-24.1L400 216.6c-41 9.3-83.7 7.5-123.7-5.2c-50.2-16-84.3-62.6-84.3-115.3V64zM320 192a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM306.5 389.9c-11.1-7.9-25.9-7.9-37 0C247 405.4 219.5 416 192 416c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 469.7 159 480 192 480c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.5 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 405.2 410.9 416 384 416c-27.5 0-55-10.6-77.5-26.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-falling": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "fall", + "trip" + ] + }, + "unicode": "e546", + "label": "Person Falling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 0c17.7 0 32 14.3 32 32l0 9.8c0 54.6-27.9 104.6-72.5 133.6l.2 .3L304.5 256l87.5 0c15.1 0 29.3 7.1 38.4 19.2l43.2 57.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4L384 320l-96 0h-1.4l92.3 142.6c9.6 14.8 5.4 34.6-9.5 44.3s-34.6 5.4-44.3-9.5L164.5 249.2c-2.9 9.2-4.5 19-4.5 29l0 73.8c0 17.7-14.3 32-32 32s-32-14.3-32-32V278.2c0-65.1 39.6-123.7 100.1-147.9C232.3 115.8 256 80.8 256 41.8l0-9.8c0-17.7 14.3-32 32-32zM112 32a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-falling-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "crash", + "death", + "fall", + "homicide", + "murder" + ] + }, + "unicode": "e547", + "label": "Person Falling Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 9.8c0 39-23.7 74-59.9 88.4C71.6 154.5 32 213 32 278.2V352c0 17.7 14.3 32 32 32s32-14.3 32-32l0-73.8c0-10 1.6-19.8 4.5-29L261.1 497.4c9.6 14.8 29.4 19.1 44.3 9.5s19.1-29.4 9.5-44.3L222.6 320H224l80 0 38.4 51.2c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8l-43.2-57.6C341.3 263.1 327.1 256 312 256l-71.5 0-56.8-80.2-.2-.3c44.7-29 72.5-79 72.5-133.6l0-9.8zM96 80A48 48 0 1 0 0 80a48 48 0 1 0 96 0zM464 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 78.7-12.2c6.5-1 11.7-5.9 13.1-12.2s-1.1-13-6.5-16.7l-65.6-45.1L603 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L508.3 92.1l-29.4-74C476.4 12 470.6 8 464 8s-12.4 4-14.9 10.1l-29.4 74L343.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1-65.6 45.1c-5.4 3.7-8 10.3-6.5 16.7c.1 .3 .1 .6 .2 .8l19.4 0c20.1 0 39.2 7.5 53.8 20.8l18.4 2.9L383 265.3l36.2 48.3c2.1 2.8 3.9 5.7 5.5 8.6L464 286.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-half-dress": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "man", + "restroom", + "transgender", + "woman" + ] + }, + "unicode": "e548", + "label": "Person Half Dress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm8 352V128h6.9c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352h0zM58.2 182.3c19.9-33.1 55.3-53.5 93.8-54.3V384h0v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H70.2c-10.9 0-18.6-10.7-15.2-21.1L93.3 248.1 59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-harassing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "scream", + "shame", + "shout", + "yell" + ] + }, + "unicode": "e549", + "label": "Person Harassing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM59.4 304.5L88 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1l-73.7-88.9c-18.2-22-45.3-34.7-73.9-34.7H145.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9zM480 240a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM464 344v58.7l-41.4-41.4c-7.3-7.3-17.6-10.6-27.8-9s-18.9 8.1-23.5 17.3l-48 96c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3L408.8 438l54.7 54.7c12.4 12.4 29.1 19.3 46.6 19.3c36.4 0 65.9-29.5 65.9-65.9V344c0-30.9-25.1-56-56-56s-56 25.1-56 56zM288 48c0 8.8 7.2 16 16 16h56c8.8 0 16-7.2 16-16s-7.2-16-16-16H304c-8.8 0-16 7.2-16 16zm-.8 49.7c-7.9-4-17.5-.7-21.5 7.2s-.7 17.5 7.2 21.5l48 24c7.9 4 17.5 .7 21.5-7.2s.7-17.5-7.2-21.5l-48-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-hiking": { + "aliases": { + "names": [ + "hiking" + ], + "unicodes": { + "secondary": [ + "10f6ec" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autumn", + "fall", + "hike", + "mountain", + "outdoors", + "summer", + "walk" + ] + }, + "unicode": "f6ec", + "label": "Person Hiking", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm51.3 182.7L224.2 307l49.7 49.7c9 9 14.1 21.2 14.1 33.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V397.3l-73.9-73.9c-15.8-15.8-22.2-38.6-16.9-60.3l20.4-84c8.3-34.1 42.7-54.9 76.7-46.4c19 4.8 35.6 16.4 46.4 32.7L305.1 208H336V184c0-13.3 10.7-24 24-24s24 10.7 24 24v55.8c0 .1 0 .2 0 .2s0 .2 0 .2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V272H296.6c-16 0-31-8-39.9-21.4l-13.3-20zM81.1 471.9L117.3 334c3 4.2 6.4 8.2 10.1 11.9l41.9 41.9L142.9 488.1c-4.5 17.1-22 27.3-39.1 22.8s-27.3-22-22.8-39.1zm55.5-346L101.4 266.5c-3 12.1-14.9 19.9-27.2 17.9l-47.9-8c-14-2.3-22.9-16.3-19.2-30L31.9 155c9.5-34.8 41.1-59 77.2-59h4.2c15.6 0 27.1 14.7 23.3 29.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-military-pointing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "army", + "customs", + "guard" + ] + }, + "unicode": "e54a", + "label": "Person Military Pointing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M246.9 14.1C234 15.2 224 26 224 39c0 13.8 11.2 25 25 25H400c8.8 0 16-7.2 16-16V17.4C416 8 408 .7 398.7 1.4L246.9 14.1zM240 112c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H241.6c-1 5.2-1.6 10.5-1.6 16zM72 224c-22.1 0-40 17.9-40 40s17.9 40 40 40H224v89.4L386.8 230.5c-13.3-4.3-27.3-6.5-41.6-6.5H240 72zm345.7 20.9L246.6 416H416V369.7l53.6 90.6c11.2 19 35.8 25.3 54.8 14.1s25.3-35.8 14.1-54.8L462.3 290.8c-11.2-18.9-26.6-34.5-44.6-45.9zM224 448v32c0 17.7 14.3 32 32 32H384c17.7 0 32-14.3 32-32V448H224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-military-rifle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "armed forces", + "army", + "military", + "rifle", + "war" + ] + }, + "unicode": "e54b", + "label": "Person Military Rifle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 39c0-13 10-23.8 22.9-24.9L334.7 1.4C344 .7 352 8 352 17.4V48c0 8.8-7.2 16-16 16H185c-13.8 0-25-11.2-25-25zm17.6 57H334.4c1 5.2 1.6 10.5 1.6 16c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-5.5 .6-10.8 1.6-16zm228 364.3L352 369.7V480c0 1.3-.1 2.5-.2 3.8L177.5 234.9c16.6-7.1 34.6-10.9 53.3-10.9h50.4c15.9 0 31.3 2.8 45.8 7.9L421.9 67.7c-7.7-4.4-10.3-14.2-5.9-21.9s14.2-10.3 21.9-5.9l13.9 8 13.9 8c7.7 4.4 10.3 14.2 5.9 21.9L416 173.9l1.6 .9c15.3 8.8 20.6 28.4 11.7 43.7L392.6 282c2 2.8 3.9 5.8 5.7 8.8l76.1 128.8c11.2 19 4.9 43.5-14.1 54.8s-43.5 4.9-54.8-14.1zM320 512H192c-17.7 0-32-14.3-32-32V369.7l-53.6 90.6c-11.2 19-35.8 25.3-54.8 14.1s-25.3-35.8-14.1-54.8l76.1-128.8c9.4-15.8 21.7-29.3 36-40L331.1 510c-3.5 1.3-7.2 2-11.1 2zM296 320a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-military-to-person": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "civilian", + "coordination", + "military" + ] + }, + "unicode": "e54c", + "label": "Person Military To Person", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M71 12.5c-8.6 1-15 8.2-15 16.8c0 9.3 7.5 16.8 16.7 16.9H184.1c8.8-.1 15.9-7.2 15.9-16V16c0-9.5-8.3-17-17.8-15.9L71 12.5zM189.5 78.1H66.5C64.9 83.8 64 89.8 64 96c0 35.3 28.7 64 64 64s64-28.7 64-64c0-6.2-.9-12.2-2.5-17.9zM32 256v32c0 17.7 14.3 32 32 32H192c1.8 0 3.5-.1 5.2-.4L53 208.6C40.1 220.3 32 237.2 32 256zm190.2 42.5c1.1-3.3 1.8-6.8 1.8-10.5V256c0-35.3-28.7-64-64-64H96c-3.7 0-7.4 .3-10.9 .9L222.2 298.5zM384 160a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32H448c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H352zM215.8 450.1c5.2-4.6 8.2-11.1 8.2-18.1s-3-13.5-8.2-18.1l-64-56c-7.1-6.2-17.1-7.7-25.7-3.8S112 366.6 112 376v32l-88 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l88 0v32c0 9.4 5.5 18 14.1 21.9s18.6 2.4 25.7-3.8l64-56zM288 431.9c0 6.9 2.9 13.5 8.1 18.1l64 56.4c7.1 6.2 17.1 7.8 25.7 3.9s14.1-12.4 14.1-21.9l0-32.4 88 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-88 0 0-32c0-9.4-5.5-18-14.1-21.9s-18.6-2.4-25.7 3.8l-64 56c-5.2 4.5-8.2 11.1-8.2 18z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-praying": { + "aliases": { + "names": [ + "pray" + ], + "unicodes": { + "composite": [ + "1f6d0" + ], + "secondary": [ + "10f683" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "kneel", + "place of worship", + "religion", + "thank", + "worship" + ] + }, + "unicode": "f683", + "label": "Person Praying", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 64A64 64 0 1 0 224 64a64 64 0 1 0 128 0zM232.7 264l22.9 31.5c6.5 8.9 16.3 14.7 27.2 16.1s21.9-1.7 30.4-8.7l88-72c17.1-14 19.6-39.2 5.6-56.3s-39.2-19.6-56.3-5.6l-55.2 45.2-26.2-36C253.6 156.7 228.6 144 202 144c-30.9 0-59.2 17.1-73.6 44.4L79.8 280.9c-20.2 38.5-9.4 85.9 25.6 111.8L158.6 432H72c-22.1 0-40 17.9-40 40s17.9 40 40 40H280c17.3 0 32.6-11.1 38-27.5s-.3-34.4-14.2-44.7L187.7 354l45-90z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-pregnant": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baby", + "birth", + "child", + "pregnant", + "pregnant woman", + "woman" + ] + }, + "unicode": "e31e", + "label": "Person Pregnant", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM120 383c-13.8-3.6-24-16.1-24-31V296.9l-4.6 7.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c15-24.9 40.3-41.5 68.7-45.6c4.1-.6 8.2-1 12.5-1h1.1 12.5H192c1.4 0 2.8 .1 4.1 .3c35.7 2.9 65.4 29.3 72.1 65l6.1 32.5c44.3 8.6 77.7 47.5 77.7 94.3v32c0 17.7-14.3 32-32 32H304 264v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384h-8-8v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V383z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-rays": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focus", + "shine" + ] + }, + "unicode": "e54d", + "label": "Person Rays", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767533, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L328 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H248zM7 7C16.4-2.3 31.6-2.3 41 7l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 41C-2.3 31.6-2.3 16.4 7 7zM471 7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L471 7zM7 505c-9.4-9.4-9.4-24.6 0-33.9l80-80c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L41 505c-9.4 9.4-24.6 9.4-33.9 0zm464 0l-80-80c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-rifle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "army", + "combatant", + "gun", + "military", + "rifle", + "war" + ] + }, + "unicode": "e54e", + "label": "Person Rifle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M265.2 192c25.4 0 49.8 7.1 70.8 19.9V512H144V337.7L90.4 428.3c-11.2 19-35.8 25.3-54.8 14.1s-25.3-35.8-14.1-54.8L97.7 258.8c24.5-41.4 69-66.8 117.1-66.8h50.4zM160 80a80 80 0 1 1 160 0A80 80 0 1 1 160 80zM448 0c8.8 0 16 7.2 16 16V132.3c9.6 5.5 16 15.9 16 27.7V269.3l16-5.3V208c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v84.5c0 6.9-4.4 13-10.9 15.2L480 325.3V352h48c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H484l23 92.1c2.5 10.1-5.1 19.9-15.5 19.9H432c-8.8 0-16-7.2-16-16V400H400c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32V160c0-11.8 6.4-22.2 16-27.7V32c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-running": { + "aliases": { + "names": [ + "running" + ], + "unicodes": { + "composite": [ + "1f3c3" + ], + "secondary": [ + "10f70c" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "flee", + "marathon", + "person running", + "race", + "running" + ] + }, + "unicode": "f70c", + "label": "Person Running", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM125.7 175.5c9.9-9.9 23.4-15.5 37.5-15.5c1.9 0 3.8 .1 5.6 .3L137.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9-25.4 88.8c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l28.7-100.4c5.9-20.6-2.6-42.6-20.7-53.9L238 299l30.9-82.4 5.1 12.3C289 264.7 323.9 288 362.7 288H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H362.7c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15c-11.1-3.4-22.7-5.2-34.4-5.2c-31 0-60.8 12.3-82.7 34.3L57.4 153.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l23.1-23.1zM91.2 352H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h69.6c19 0 36.2-11.2 43.9-28.5L157 361.6l-9.5-6c-17.5-10.9-30.5-26.8-37.9-44.9L91.2 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-shelter": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "house", + "inside", + "roof", + "safe", + "safety", + "shelter" + ] + }, + "unicode": "e54f", + "label": "Person Shelter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M271.9 4.2c-9.8-5.6-21.9-5.6-31.8 0l-224 128C6.2 137.9 0 148.5 0 160V480c0 17.7 14.3 32 32 32s32-14.3 32-32V178.6L256 68.9 448 178.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-11.5-6.2-22.1-16.1-27.8l-224-128zM256 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zm-8 280V400h16v88c0 13.3 10.7 24 24 24s24-10.7 24-24V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H246.2c-32.4 0-62.1 17.8-77.5 46.3l-37.9 70.3c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L200 313.5V488c0 13.3 10.7 24 24 24s24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-skating": { + "aliases": { + "names": [ + "skating" + ], + "unicodes": { + "secondary": [ + "10f7c5" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "figure skating", + "ice", + "olympics", + "rink", + "skate", + "winter" + ] + }, + "unicode": "f7c5", + "label": "Person Skating", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM128 128c0-17.7 14.3-32 32-32H319.4c43.6 0 64.6 53.4 32.8 83.1l-74.4 69.4 60.2 60.2c9 9 14.1 21.2 14.1 33.9V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V349.3l-77.9-77.8c-26.6-26.6-24.6-70.3 4.3-94.4l20.4-17H160c-17.7 0-32-14.3-32-32zM81.4 353.4l86.9-86.9c4.6 10 11 19.3 19.3 27.5l21.8 21.8-82.7 82.7c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3zm322.5 95.1c8.6 2.1 13.8 10.8 11.6 19.4l-.4 1.7c-6.2 24.9-28.6 42.4-54.3 42.4H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h88.8c11 0 20.6-7.5 23.3-18.2l.4-1.7c2.1-8.6 10.8-13.8 19.4-11.6zM135.2 478.3l-6.2 3.1c-21.6 10.8-47.6 6.6-64.6-10.5L4.7 411.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l59.6 59.6c7.3 7.3 18.5 9.1 27.7 4.5l6.2-3.1c7.9-4 17.5-.7 21.5 7.2s.7 17.5-7.2 21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-skiing": { + "aliases": { + "names": [ + "skiing" + ], + "unicodes": { + "composite": [ + "26f7" + ], + "secondary": [ + "10f7c9" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "downhill", + "olympics", + "ski", + "skier", + "snow", + "winter" + ] + }, + "unicode": "f7c9", + "label": "Person Skiing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M380.7 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM2.7 268.9c6.1-11.8 20.6-16.3 32.4-10.2L232.7 361.3l46.2-69.2-75.1-75.1c-14.6-14.6-20.4-33.9-18.4-52.1l108.8 52 39.3 39.3c16.2 16.2 18.7 41.5 6 60.6L289.8 391l128.7 66.8c13.6 7.1 29.8 7.2 43.6 .3l15.2-7.6c11.9-5.9 26.3-1.1 32.2 10.7s1.1 26.3-10.7 32.2l-15.2 7.6c-27.5 13.7-59.9 13.5-87.2-.7L12.9 301.3C1.2 295.2-3.4 280.7 2.7 268.9zM118.9 65.6L137 74.2l8.7-17.4c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-8.5 16.9 54.7 26.2c1.5-.7 3.1-1.4 4.7-2.1l83.4-33.4c34.2-13.7 72.8 4.2 84.5 39.2l17.1 51.2 52.1 26.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-58.1-29c-11.4-5.7-20-15.7-24.1-27.8l-5.8-17.3-27.3 12.1-6.8 3-6.7-3.2L151.5 116.7l-9.2 18.4c-4 7.9-13.6 11.1-21.5 7.2s-11.1-13.6-7.2-21.5l9-18-17.6-8.4c-8-3.8-11.3-13.4-7.5-21.3s13.4-11.3 21.3-7.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-skiing-nordic": { + "aliases": { + "names": [ + "skiing-nordic" + ], + "unicodes": { + "secondary": [ + "10f7ca" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cross country", + "olympics", + "winter" + ] + }, + "unicode": "f7ca", + "label": "Person Skiing Nordic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M336 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM227.2 160c1.9 0 3.8 .1 5.6 .3L201.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9L291.3 464H202.8l41.1-88.1-32.4-20.3c-7.8-4.9-14.7-10.7-20.6-17.3L132.2 464H99.7l54.2-257.6c4.6-1.5 9-4.1 12.7-7.8l23.1-23.1c9.9-9.9 23.4-15.5 37.5-15.5zM121.4 198.6c.4 .4 .8 .8 1.3 1.2L67 464H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H159.3c.4 0 .9 0 1.3 0H319.3c.5 0 1 0 1.4 0H504c39.8 0 72-32.2 72-72v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24v8c0 13.3-10.7 24-24 24H434.6l27.6-179.3c10.5-5.2 17.8-16.1 17.8-28.7c0-17.7-14.3-32-32-32H426.7c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15c-11.1-3.4-22.7-5.2-34.4-5.2c-31 0-60.8 12.3-82.7 34.3l-23.1 23.1c-12.5 12.5-12.5 32.8 0 45.3zm308 89.4L402.3 464H357.8l21.6-75.6c5.9-20.6-2.6-42.6-20.7-53.9L302 299l30.9-82.4 5.1 12.3C353 264.7 387.9 288 426.7 288h2.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-snowboarding": { + "aliases": { + "names": [ + "snowboarding" + ], + "unicodes": { + "composite": [ + "1f3c2" + ], + "secondary": [ + "10f7ce" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "olympics", + "ski", + "snow", + "snowboard", + "snowboarder", + "winter" + ] + }, + "unicode": "f7ce", + "label": "Person Snowboarding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M209.7 3.4c15.8-7.9 35-1.5 42.9 14.3l25 50 42.4 8.5c19.5 3.9 37.8 12.3 53.5 24.5l126.1 98.1c14 10.9 16.5 31 5.6 44.9s-31 16.5-44.9 5.6l-72.1-56.1-71.5 31.8 33.1 27.6c23.2 19.3 33.5 50 26.7 79.4l-17.4 75.2c-2.2 9.4-8.2 16.8-16.1 21l86.5 33.1c4.6 1.8 9.4 2.6 14.3 2.6H472c13.3 0 24 10.7 24 24s-10.7 24-24 24H443.8c-10.8 0-21.4-2-31.5-5.8L60.1 371.3c-11.5-4.4-22-11.2-30.8-20L7 329c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.4 22.4c4 4 8.7 7.1 14 9.1l22.4 8.6c-.8-1.6-1.5-3.2-2.1-4.9c-5.6-16.8 3.5-34.9 20.2-40.5L192 264.9l0-53.2c0-24.2 13.7-46.4 35.4-57.2l45.2-22.6-7.5-1.5c-19.4-3.9-35.9-16.5-44.7-34.1l-25-50c-7.9-15.8-1.5-35 14.3-42.9zM139 350.1l159 60.9c-2.1-5.6-2.6-11.9-1.1-18.2l17.4-75.2c1.4-5.9-.7-12-5.3-15.9l-52.8-44 0 18.8c0 20.7-13.2 39-32.8 45.5L139 350.1zM432 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-swimming": { + "aliases": { + "names": [ + "swimmer" + ], + "unicodes": { + "composite": [ + "1f3ca" + ], + "secondary": [ + "10f5c4" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ocean", + "person swimming", + "pool", + "sea", + "swim", + "water" + ] + }, + "unicode": "f5c4", + "label": "Person Swimming", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309.5 178.4L447.9 297.1c-1.6 .9-3.2 2-4.8 3c-18 12.4-40.1 20.3-59.2 20.3c-19.6 0-40.8-7.7-59.2-20.3c-22.1-15.5-51.6-15.5-73.7 0c-17.1 11.8-38 20.3-59.2 20.3c-10.1 0-21.1-2.2-31.9-6.2C163.1 193.2 262.2 96 384 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-26.9 0-52.3 6.6-74.5 18.4zM160 160A64 64 0 1 1 32 160a64 64 0 1 1 128 0zM306.5 325.9C329 341.4 356.5 352 384 352c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 405.7 417 416 384 416c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 341.2 165.1 352 192 352c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-through-window": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "door", + "exit", + "forced entry", + "leave", + "robbery", + "steal", + "window" + ] + }, + "unicode": "e5a9", + "label": "Person Through Window", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64l224 0 0 9.8c0 39-23.7 74-59.9 88.4C167.6 186.5 128 245 128 310.2l0 73.8s0 0 0 0H64V64zm288 0l224 0V384H508.3l-3.7-4.5-75.2-90.2c-9.1-10.9-22.6-17.3-36.9-17.3l-71.1 0-41-63.1c-.3-.5-.6-1-1-1.4c44.7-29 72.5-79 72.5-133.6l0-9.8zm73 320H379.2l42.7 64H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48V400c0 26.5 21.5 48 48 48H308.2l33.2 49.8c9.8 14.7 29.7 18.7 44.4 8.9s18.7-29.7 8.9-44.4L310.5 336l74.6 0 40 48zm-159.5 0H192s0 0 0 0l0-73.8c0-10.2 1.6-20.1 4.7-29.5L265.5 384zM192 128a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking": { + "aliases": { + "names": [ + "walking" + ], + "unicodes": { + "composite": [ + "1f6b6" + ], + "secondary": [ + "10f554" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crosswalk", + "exercise", + "hike", + "move", + "person walking", + "walk", + "walking" + ] + }, + "unicode": "f554", + "label": "Person Walking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM126.5 199.3c-1 .4-1.9 .8-2.9 1.2l-8 3.5c-16.4 7.3-29 21.2-34.7 38.2l-2.6 7.8c-5.6 16.8-23.7 25.8-40.5 20.2s-25.8-23.7-20.2-40.5l2.6-7.8c11.4-34.1 36.6-61.9 69.4-76.5l8-3.5c20.8-9.2 43.3-14 66.1-14c44.6 0 84.8 26.8 101.9 67.9L281 232.7l21.4 10.7c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L247 287.3c-10.3-5.2-18.4-13.8-22.8-24.5l-9.6-23-19.3 65.5 49.5 54c5.4 5.9 9.2 13 11.2 20.8l23 92.1c4.3 17.1-6.1 34.5-23.3 38.8s-34.5-6.1-38.8-23.3l-22-88.1-70.7-77.1c-14.8-16.1-20.3-38.6-14.7-59.7l16.9-63.5zM68.7 398l25-62.4c2.1 3 4.5 5.8 7 8.6l40.7 44.4-14.5 36.2c-2.4 6-6 11.5-10.6 16.1L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L68.7 398z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-arrow-loop-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "population return", + "return" + ] + }, + "unicode": "e551", + "label": "Person Walking Arrow Loop Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zm347.7 119c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L461.3 384H480c88.4 0 160-71.6 160-160s-71.6-160-160-160L352 64c-17.7 0-32 14.3-32 32s14.3 32 32 32l128 0c53 0 96 43 96 96s-43 96-96 96H461.3l25.4-25.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3l80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "internally displaced", + "leave", + "refugee" + ] + }, + "unicode": "e552", + "label": "Person Walking Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM550.6 153.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L530.7 224H384c-17.7 0-32 14.3-32 32s14.3 32 32 32H530.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3l-80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-dashed-line-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "refugee" + ] + }, + "unicode": "e553", + "label": "Person Walking Dashed Line Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM550.6 153.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L530.7 224H384c-17.7 0-32 14.3-32 32s14.3 32 32 32H530.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3l-80-80zM392 0c-13.3 0-24 10.7-24 24V72c0 13.3 10.7 24 24 24s24-10.7 24-24V24c0-13.3-10.7-24-24-24zm24 152c0-13.3-10.7-24-24-24s-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24V152zM392 320c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24V344c0-13.3-10.7-24-24-24zm24 120c0-13.3-10.7-24-24-24s-24 10.7-24 24v48c0 13.3 10.7 24 24 24s24-10.7 24-24V440z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-luggage": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "baggage", + "briefcase", + "carry-on", + "deployment", + "rolling" + ] + }, + "unicode": "e554", + "label": "Person Walking Luggage", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M432 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM347.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L505 232.7l-15.3-36.8C472.5 154.8 432.3 128 387.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L340.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM256 274.1c-7.7-4.4-17.4-1.8-21.9 5.9l-32 55.4L147.7 304c-15.3-8.8-34.9-3.6-43.7 11.7L40 426.6c-8.8 15.3-3.6 34.9 11.7 43.7l55.4 32c15.3 8.8 34.9 3.6 43.7-11.7l64-110.9c1.5-2.6 2.6-5.2 3.3-8L261.9 296c4.4-7.7 1.8-17.4-5.9-21.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-with-cane": { + "aliases": { + "names": [ + "blind" + ], + "unicodes": { + "secondary": [ + "10f29d" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "cane" + ] + }, + "unicode": "f29d", + "label": "Person Walking With Cane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8.4 32c-36.4 0-69.6 20.5-85.9 53.1L35.4 273.7c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3L128 231.6v43.2c0 17 6.7 33.3 18.7 45.3L224 397.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V390.6c0-12.7-5.1-24.9-14.1-33.9L224 306.7V213.3l70.4 93.9c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8L268.8 166.4C250.7 142.2 222.2 128 192 128H167.6zM128.3 346.8L97 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l22-88.2-52.8-52.8zM450.8 505.1c5 7.3 15 9.1 22.3 4s9.1-15 4-22.3L358.9 316.1c-2.8 3.8-6.1 7.3-10.1 10.3c-5 3.8-10.5 6.4-16.2 7.9L450.8 505.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "peseta-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Peseta Sign", + "currency" + ] + }, + "unicode": "e221", + "label": "Peseta Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64v96c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 96V448c0 17.7 14.3 32 32 32s32-14.3 32-32V352h96c77.4 0 142-55 156.8-128H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-3.2C334 87 269.4 32 192 32H64zM282.5 160H96V96h96c41.8 0 77.4 26.7 90.5 64zM96 224H282.5c-13.2 37.3-48.7 64-90.5 64H96V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "peso-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Peso Sign", + "currency" + ] + }, + "unicode": "e222", + "label": "Peso Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64v64c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 32c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c68.4 0 127.7-39 156.8-96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.7c.5-5.3 .7-10.6 .7-16s-.2-10.7-.7-16h.7c17.7 0 32-14.3 32-32s-14.3-32-32-32H332.8C303.7 71 244.4 32 176 32H64zm190.4 96H96V96h80c30.5 0 58.2 12.2 78.4 32zM96 192H286.9c.7 5.2 1.1 10.6 1.1 16s-.4 10.8-1.1 16H96V192zm158.4 96c-20.2 19.8-47.9 32-78.4 32H96V288H254.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phabricator": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3db", + "label": "Phabricator", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "phoenix-framework": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3dc", + "label": "Phoenix Framework", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "phoenix-squadron": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f511", + "label": "Phoenix Squadron", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 63.38C142.49 27.25 201.55 7.31 260.51 8.81c29.58-.38 59.11 5.37 86.91 15.33-24.13-4.63-49-6.34-73.38-2.45C231.17 27 191 48.84 162.21 80.87c5.67-1 10.78-3.67 16-5.86 18.14-7.87 37.49-13.26 57.23-14.83 19.74-2.13 39.64-.43 59.28 1.92-14.42 2.79-29.12 4.57-43 9.59-34.43 11.07-65.27 33.16-86.3 62.63-13.8 19.71-23.63 42.86-24.67 67.13-.35 16.49 5.22 34.81 19.83 44a53.27 53.27 0 0 0 37.52 6.74c15.45-2.46 30.07-8.64 43.6-16.33 11.52-6.82 22.67-14.55 32-24.25 3.79-3.22 2.53-8.45 2.62-12.79-2.12-.34-4.38-1.11-6.3.3a203 203 0 0 1-35.82 15.37c-20 6.17-42.16 8.46-62.1.78 12.79 1.73 26.06.31 37.74-5.44 20.23-9.72 36.81-25.2 54.44-38.77a526.57 526.57 0 0 1 88.9-55.31c25.71-12 52.94-22.78 81.57-24.12-15.63 13.72-32.15 26.52-46.78 41.38-14.51 14-27.46 29.5-40.11 45.18-3.52 4.6-8.95 6.94-13.58 10.16a150.7 150.7 0 0 0-51.89 60.1c-9.33 19.68-14.5 41.85-11.77 63.65 1.94 13.69 8.71 27.59 20.9 34.91 12.9 8 29.05 8.07 43.48 5.1 32.8-7.45 61.43-28.89 81-55.84 20.44-27.52 30.52-62.2 29.16-96.35-.52-7.5-1.57-15-1.66-22.49 8 19.48 14.82 39.71 16.65 60.83 2 14.28.75 28.76-1.62 42.9-1.91 11-5.67 21.51-7.78 32.43a165 165 0 0 0 39.34-81.07 183.64 183.64 0 0 0-14.21-104.64c20.78 32 32.34 69.58 35.71 107.48.49 12.73.49 25.51 0 38.23A243.21 243.21 0 0 1 482 371.34c-26.12 47.34-68 85.63-117.19 108-78.29 36.23-174.68 31.32-248-14.68A248.34 248.34 0 0 1 25.36 366 238.34 238.34 0 0 1 0 273.08v-31.34C3.93 172 40.87 105.82 96 63.38m222 80.33a79.13 79.13 0 0 0 16-4.48c5-1.77 9.24-5.94 10.32-11.22-8.96 4.99-17.98 9.92-26.32 15.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "phone": { + "aliases": { + "unicodes": { + "composite": [ + "1f4de", + "1f57b" + ], + "secondary": [ + "10f095" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left Hand Telephone Receiver", + "call", + "earphone", + "number", + "phone", + "receiver", + "support", + "telephone", + "telephone receiver", + "voice" + ] + }, + "unicode": "f095", + "label": "Phone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phone-flip": { + "aliases": { + "names": [ + "phone-alt" + ], + "unicodes": { + "composite": [ + "1f57d" + ], + "secondary": [ + "10f879" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Hand Telephone Receiver", + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f879", + "label": "Phone Flip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767391, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M347.1 24.6c7.7-18.6 28-28.5 47.4-23.2l88 24C499.9 30.2 512 46 512 64c0 247.4-200.6 448-448 448c-18 0-33.8-12.1-38.6-29.5l-24-88c-5.3-19.4 4.6-39.7 23.2-47.4l96-40c16.3-6.8 35.2-2.1 46.3 11.6L207.3 368c70.4-33.3 127.4-90.3 160.7-160.7L318.7 167c-13.7-11.2-18.4-30-11.6-46.3l40-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phone-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f3dd" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "cancel", + "earphone", + "mute", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f3dd", + "label": "Phone Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M228.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C76.1 30.2 64 46 64 64c0 107.4 37.8 206 100.8 283.1L9.2 469.1c-10.4 8.2-12.3 23.3-4.1 33.7s23.3 12.3 33.7 4.1l592-464c10.4-8.2 12.3-23.3 4.1-33.7s-23.3-12.3-33.7-4.1L253 278c-17.8-21.5-32.9-45.2-45-70.7L257.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96zm96.8 319l-91.3 72C310.7 476 407.1 512 512 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L368.7 368c-15-7.1-29.3-15.2-43-24.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phone-volume": { + "aliases": { + "names": [ + "volume-control-phone" + ], + "unicodes": { + "secondary": [ + "10f2a0" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.0.3", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "sound", + "support", + "telephone", + "voice", + "volume-control-phone" + ] + }, + "unicode": "f2a0", + "label": "Phone Volume", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M280 0C408.1 0 512 103.9 512 232c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-101.6-82.4-184-184-184c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm-32-72c0-13.3 10.7-24 24-24c75.1 0 136 60.9 136 136c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-48.6-39.4-88-88-88c-13.3 0-24-10.7-24-24zM117.5 1.4c19.4-5.3 39.7 4.6 47.4 23.2l40 96c6.8 16.3 2.1 35.2-11.6 46.3L144 207.3c33.3 70.4 90.3 127.4 160.7 160.7L345 318.7c11.2-13.7 30-18.4 46.3-11.6l96 40c18.6 7.7 28.5 28 23.2 47.4l-24 88C481.8 499.9 466 512 448 512C200.6 512 0 311.4 0 64C0 46 12.1 30.2 29.5 25.4l88-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "photo-film": { + "aliases": { + "names": [ + "photo-video" + ], + "unicodes": { + "secondary": [ + "10f87c" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "av", + "film", + "image", + "library", + "media" + ] + }, + "unicode": "f87c", + "label": "Photo Film", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0H576c35.3 0 64 28.7 64 64V288c0 35.3-28.7 64-64 64H256c-35.3 0-64-28.7-64-64V64c0-35.3 28.7-64 64-64zM476 106.7C471.5 100 464 96 456 96s-15.5 4-20 10.7l-56 84L362.7 169c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h80 48H552c8.9 0 17-4.9 21.2-12.7s3.7-17.3-1.2-24.6l-96-144zM336 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM64 128h96V384v32c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V384H512v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64zm8 64c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H72zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V312c0-8.8-7.2-16-16-16H72zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V416c0-8.8-7.2-16-16-16H72zm336 16v16c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V416c0-8.8-7.2-16-16-16H424c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "php": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f457", + "label": "PHP", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper": { + "changes": [ + "4.6.0", + "5.0.0", + "5.0.10", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2ae", + "label": "Pied Piper Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M455.93,23.2C429.23,30,387.79,51.69,341.35,90.66A206,206,0,0,0,240,64C125.13,64,32,157.12,32,272s93.13,208,208,208,208-93.13,208-208a207.25,207.25,0,0,0-58.75-144.81,155.35,155.35,0,0,0-17,27.4A176.16,176.16,0,0,1,417.1,272c0,97.66-79.44,177.11-177.09,177.11a175.81,175.81,0,0,1-87.63-23.4c82.94-107.33,150.79-37.77,184.31-226.65,5.79-32.62,28-94.26,126.23-160.18C471,33.45,465.35,20.8,455.93,23.2ZM125,406.4A176.66,176.66,0,0,1,62.9,272C62.9,174.34,142.35,94.9,240,94.9a174,174,0,0,1,76.63,17.75C250.64,174.76,189.77,265.52,125,406.4Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper-alt": { + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a8", + "label": "Alternate Pied Piper Logo (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10zM555.5 0l-.6 1.1-.3.9.6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4l24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9l2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper-hat": { + "changes": [ + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing" + ] + }, + "unicode": "f4e5", + "label": "Pied Piper Hat (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper-pp": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a7", + "label": "Pied Piper PP Logo (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "piggy-bank": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4d3" + ] + } + }, + "changes": [ + "5.0.9", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "save", + "savings" + ] + }, + "unicode": "f4d3", + "label": "Piggy Bank", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 96l0 .7c-5.3-.4-10.6-.7-16-.7H256c-16.5 0-32.5 2.1-47.8 6c-.1-2-.2-4-.2-6c0-53 43-96 96-96s96 43 96 96zm-16 32c3.5 0 7 .1 10.4 .3c4.2 .3 8.4 .7 12.6 1.3C424.6 109.1 450.8 96 480 96h11.5c10.4 0 18 9.8 15.5 19.9l-13.8 55.2c15.8 14.8 28.7 32.8 37.5 52.9H544c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H512c-9.1 12.1-19.9 22.9-32 32v64c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H256v32c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V416c-34.9-26.2-58.7-66.3-63.2-112H68c-37.6 0-68-30.4-68-68s30.4-68 68-68h4c13.3 0 24 10.7 24 24s-10.7 24-24 24H68c-11 0-20 9-20 20s9 20 20 20H99.2c12.1-59.8 57.7-107.5 116.3-122.8c12.9-3.4 26.5-5.2 40.5-5.2H384zm64 136a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pills": { + "aliases": { + "unicodes": { + "secondary": [ + "10f484" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "prescription", + "tablets" + ] + }, + "unicode": "f484", + "label": "Pills", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 96c-26.5 0-48 21.5-48 48V256h96V144c0-26.5-21.5-48-48-48zM0 144C0 82.1 50.1 32 112 32s112 50.1 112 112V368c0 61.9-50.1 112-112 112S0 429.9 0 368V144zM554.9 399.4c-7.1 12.3-23.7 13.1-33.8 3.1L333.5 214.9c-10-10-9.3-26.7 3.1-33.8C360 167.7 387.1 160 416 160c88.4 0 160 71.6 160 160c0 28.9-7.7 56-21.1 79.4zm-59.5 59.5C472 472.3 444.9 480 416 480c-88.4 0-160-71.6-160-160c0-28.9 7.7-56 21.1-79.4c7.1-12.3 23.7-13.1 33.8-3.1L498.5 425.1c10 10 9.3 26.7-3.1 33.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pinterest": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f0d2", + "label": "Pinterest", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pinterest-p": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f231", + "label": "Pinterest P", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pix": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e43a", + "label": "Pix", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M242.4 292.5C247.8 287.1 257.1 287.1 262.5 292.5L339.5 369.5C353.7 383.7 372.6 391.5 392.6 391.5H407.7L310.6 488.6C280.3 518.1 231.1 518.1 200.8 488.6L103.3 391.2H112.6C132.6 391.2 151.5 383.4 165.7 369.2L242.4 292.5zM262.5 218.9C256.1 224.4 247.9 224.5 242.4 218.9L165.7 142.2C151.5 127.1 132.6 120.2 112.6 120.2H103.3L200.7 22.76C231.1-7.586 280.3-7.586 310.6 22.76L407.8 119.9H392.6C372.6 119.9 353.7 127.7 339.5 141.9L262.5 218.9zM112.6 142.7C126.4 142.7 139.1 148.3 149.7 158.1L226.4 234.8C233.6 241.1 243 245.6 252.5 245.6C261.9 245.6 271.3 241.1 278.5 234.8L355.5 157.8C365.3 148.1 378.8 142.5 392.6 142.5H430.3L488.6 200.8C518.9 231.1 518.9 280.3 488.6 310.6L430.3 368.9H392.6C378.8 368.9 365.3 363.3 355.5 353.5L278.5 276.5C264.6 262.6 240.3 262.6 226.4 276.6L149.7 353.2C139.1 363 126.4 368.6 112.6 368.6H80.78L22.76 310.6C-7.586 280.3-7.586 231.1 22.76 200.8L80.78 142.7H112.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pizza-slice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f818" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cheese", + "chicago", + "italian", + "mozzarella", + "new york", + "pepperoni", + "pie", + "slice", + "teenage mutant ninja turtles", + "tomato" + ] + }, + "unicode": "f818", + "label": "Pizza Slice", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767421, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M169.7 .9c-22.8-1.6-41.9 14-47.5 34.7L110.4 80c.5 0 1.1 0 1.6 0c176.7 0 320 143.3 320 320c0 .5 0 1.1 0 1.6l44.4-11.8c20.8-5.5 36.3-24.7 34.7-47.5C498.5 159.5 352.5 13.5 169.7 .9zM399.8 410.2c.1-3.4 .2-6.8 .2-10.2c0-159.1-128.9-288-288-288c-3.4 0-6.8 .1-10.2 .2L.5 491.9c-1.5 5.5 .1 11.4 4.1 15.4s9.9 5.6 15.4 4.1L399.8 410.2zM176 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64 128a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM96 384a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "place-of-worship": { + "aliases": { + "unicodes": { + "secondary": [ + "10f67f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "church", + "holy", + "mosque", + "synagogue" + ] + }, + "unicode": "f67f", + "label": "Place Of Worship", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 109.3V217.6L183.3 242c-14.5 8.7-23.3 24.3-23.3 41.2V512h96V416c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V283.2c0-16.9-8.8-32.5-23.3-41.2L416 217.6V109.3c0-8.5-3.4-16.6-9.4-22.6L331.3 11.3c-6.2-6.2-16.4-6.2-22.6 0L233.4 86.6c-6 6-9.4 14.1-9.4 22.6zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6L24.9 330.3zM592 512c26.5 0 48-21.5 48-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512h80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f072" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "destination", + "fly", + "location", + "mode", + "travel", + "trip" + ] + }, + "unicode": "f072", + "label": "Plane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767636, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M482.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64l-116.6 0L265.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6L112 320 68.8 377.6c-3 4-7.8 6.4-12.8 6.4l-42 0c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L32 256 .5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-7.8 6.3-14 14-14l42 0c5 0 9.8 2.4 12.8 6.4L112 192l102.9 0-49-171.6C162.9 10.2 170.6 0 181.2 0l56.2 0c11.5 0 22.1 6.2 27.8 16.1L365.7 192l116.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-arrival": { + "aliases": { + "unicodes": { + "composite": [ + "1f6ec" + ], + "secondary": [ + "10f5af" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aeroplane", + "airplane", + "airplane arrival", + "airport", + "arrivals", + "arriving", + "destination", + "fly", + "land", + "landing", + "location", + "mode", + "travel", + "trip" + ] + }, + "unicode": "f5af", + "label": "Plane Arrival", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M.3 166.9L0 68C0 57.7 9.5 50.1 19.5 52.3l35.6 7.9c10.6 2.3 19.2 9.9 23 20L96 128l127.3 37.6L181.8 20.4C178.9 10.2 186.6 0 197.2 0h40.1c11.6 0 22.2 6.2 27.9 16.3l109 193.8 107.2 31.7c15.9 4.7 30.8 12.5 43.7 22.8l34.4 27.6c24 19.2 18.1 57.3-10.7 68.2c-41.2 15.6-86.2 18.1-128.8 7L121.7 289.8c-11.1-2.9-21.2-8.7-29.3-16.9L9.5 189.4c-5.9-6-9.3-14-9.3-22.5zM32 448H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm96-80a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm128-16a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "flight", + "fly", + "not affected", + "ok", + "okay", + "travel" + ] + }, + "unicode": "e555", + "label": "Plane Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "airplane", + "airport", + "flight", + "fly", + "travel" + ] + }, + "unicode": "e556", + "label": "Plane Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "destroy", + "flight", + "fly", + "travel" + ] + }, + "unicode": "e557", + "label": "Plane Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767636, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-departure": { + "aliases": { + "unicodes": { + "composite": [ + "1f6eb" + ], + "secondary": [ + "10f5b0" + ] + } + }, + "changes": [ + "5.1.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aeroplane", + "airplane", + "airplane departure", + "airport", + "check-in", + "departing", + "departure", + "departures", + "destination", + "fly", + "location", + "mode", + "take off", + "taking off", + "travel", + "trip" + ] + }, + "unicode": "f5b0", + "label": "Plane Departure", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M381 114.9L186.1 41.8c-16.7-6.2-35.2-5.3-51.1 2.7L89.1 67.4C78 73 77.2 88.5 87.6 95.2l146.9 94.5L136 240 77.8 214.1c-8.7-3.9-18.8-3.7-27.3 .6L18.3 230.8c-9.3 4.7-11.8 16.8-5 24.7l73.1 85.3c6.1 7.1 15 11.2 24.3 11.2H248.4c5 0 9.9-1.2 14.3-3.4L535.6 212.2c46.5-23.3 82.5-63.3 100.8-112C645.9 75 627.2 48 600.2 48H542.8c-20.2 0-40.2 4.8-58.2 14L381 114.9zM0 480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "closed", + "flight", + "fly", + "lockdown", + "quarantine", + "travel" + ] + }, + "unicode": "e558", + "label": "Plane Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7v84.6l101.8 58.2C418 247.6 416 259.6 416 272v24.6c-17.9 10.4-30.3 29.1-31.8 50.9L320 329.1V400l57.6 43.2c4 3 6.4 7.8 6.4 12.8v24 18c0 7.8-6.3 14-14 14c-1.3 0-2.6-.2-3.9-.5L256 480 145.9 511.5c-1.3 .4-2.6 .5-3.9 .5c-7.8 0-14-6.3-14-14V456c0-5 2.4-9.8 6.4-12.8L192 400l0-70.9-171.6 49C10.2 381.1 0 373.4 0 362.8V297.3c0-5.7 3.1-11 8.1-13.9L192 178.3V93.7zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e069" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane mode", + "airport", + "canceled", + "covid-19", + "delayed", + "grounded", + "travel" + ] + }, + "unicode": "e069", + "label": "Plane Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M514.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64H440.6L630.8 469.1c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2S28.4-3.1 38.8 5.1L238.1 161.3 197.8 20.4C194.9 10.2 202.6 0 213.2 0h56.2c11.5 0 22.1 6.2 27.8 16.1L397.7 192l116.6 0zM41.5 128.7l321 252.9L297.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6H144l-43.2 57.6c-3 4-7.8 6.4-12.8 6.4H46c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L64 256 32.5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-6.2 4-11.4 9.5-13.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-up": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "internet", + "signal", + "sky", + "wifi", + "wireless" + ] + }, + "unicode": "e22d", + "label": "Plane Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7l0 66.3L497.8 278.5c8.9 5.9 14.2 15.9 14.2 26.6v56.7c0 10.9-10.7 18.6-21.1 15.2L320 320v80l57.6 43.2c4 3 6.4 7.8 6.4 12.8v42c0 7.8-6.3 14-14 14c-1.3 0-2.6-.2-3.9-.5L256 480 145.9 511.5c-1.3 .4-2.6 .5-3.9 .5c-7.8 0-14-6.3-14-14V456c0-5 2.4-9.8 6.4-12.8L192 400V320L21.1 377C10.7 380.4 0 372.7 0 361.8V305.1c0-10.7 5.3-20.7 14.2-26.6L192 160V93.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plant-wilt": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drought", + "planting", + "vegetation", + "wilt" + ] + }, + "unicode": "e5aa", + "label": "Plant Wilt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 120c0-30.9 25.1-56 56-56s56 25.1 56 56v13c-29.3 10-48 34.5-48 70.1c0 27.9 25.3 74.8 66 111.6c3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6c0-35.6-18.7-60.2-48-70.1V120C464 53.7 410.3 0 344 0S224 53.7 224 120v21.8C207.3 133 188.2 128 168 128c-66.3 0-120 53.7-120 120v13c-29.3 10-48 34.5-48 70.1C0 359 25.3 405.9 66 442.7c3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6c0-35.6-18.7-60.2-48-70.1V248c0-30.9 25.1-56 56-56s56 25.1 56 56v32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V280 248 120z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plate-wheat": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bowl", + "hunger", + "rations", + "wheat" + ] + }, + "unicode": "e55a", + "label": "Plate Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16zM56 64h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24zM24 136H136c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24zM272 48c0-8.8 7.2-16 16-16c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48zM400 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16zm80 160v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM352 176c8.8 0 16 7.2 16 16v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80zm-96 16v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM3.5 347.6C1.6 332.9 13 320 27.8 320H484.2c14.8 0 26.2 12.9 24.4 27.6C502.3 397.8 464.2 437 416 446v2c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-2c-48.2-9-86.3-48.2-92.5-98.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "play": { + "aliases": { + "unicodes": { + "composite": [ + "25b6" + ], + "secondary": [ + "10f04b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "audio", + "music", + "play", + "play button", + "playing", + "right", + "sound", + "start", + "triangle", + "video" + ] + }, + "unicode": "f04b", + "label": "Play", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "playstation": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3df", + "label": "PlayStation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "plug": { + "aliases": { + "unicodes": { + "composite": [ + "1f50c" + ], + "secondary": [ + "10f1e6" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "electric", + "electric plug", + "electricity", + "online", + "plug", + "power" + ] + }, + "unicode": "f1e6", + "label": "Plug", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8C297 398 352 333.4 352 256V224c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-bolt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55b", + "label": "Plug Circle Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9L411.6 380H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1 .6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "not affected", + "ok", + "okay", + "plug", + "power" + ] + }, + "unicode": "e55c", + "label": "Plug Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM576 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L416 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55d", + "label": "Plug Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55e", + "label": "Plug Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM576 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-64 0c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16H496c8.8 0 16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55f", + "label": "Plug Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V384H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h48V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "electric", + "electricity", + "outage", + "plug", + "power" + ] + }, + "unicode": "e560", + "label": "Plug Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L409.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L432 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plus": { + "aliases": { + "names": [ + "add" + ], + "unicodes": { + "composite": [ + "2795", + "f067" + ], + "primary": [ + "f067" + ], + "secondary": [ + "102b", + "10f067" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "+", + "Plus Sign", + "add", + "create", + "expand", + "math", + "new", + "plus", + "positive", + "shape", + "sign" + ] + }, + "unicode": "2b", + "label": "Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plus-minus": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Plus-Minus Sign", + "add", + "math", + "subtract" + ] + }, + "unicode": "e43c", + "label": "Plus Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M224 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V144H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H160V320c0 17.7 14.3 32 32 32s32-14.3 32-32V208H336c17.7 0 32-14.3 32-32s-14.3-32-32-32H224V32zM0 480c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "podcast": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2ce" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "broadcast", + "music", + "sound" + ] + }, + "unicode": "f2ce", + "label": "Podcast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M319.4 372c48.5-31.3 80.6-85.9 80.6-148c0-97.2-78.8-176-176-176S48 126.8 48 224c0 62.1 32.1 116.6 80.6 148c1.2 17.3 4 38 7.2 57.1l.2 1C56 395.8 0 316.5 0 224C0 100.3 100.3 0 224 0S448 100.3 448 224c0 92.5-56 171.9-136 206.1l.2-1.1c3.1-19.2 6-39.8 7.2-57zm-2.3-38.1c-1.6-5.7-3.9-11.1-7-16.2c-5.8-9.7-13.5-17-21.9-22.4c19.5-17.6 31.8-43 31.8-71.3c0-53-43-96-96-96s-96 43-96 96c0 28.3 12.3 53.8 31.8 71.3c-8.4 5.4-16.1 12.7-21.9 22.4c-3.1 5.1-5.4 10.5-7 16.2C99.8 307.5 80 268 80 224c0-79.5 64.5-144 144-144s144 64.5 144 144c0 44-19.8 83.5-50.9 109.9zM224 312c32.9 0 64 8.6 64 43.8c0 33-12.9 104.1-20.6 132.9c-5.1 19-24.5 23.4-43.4 23.4s-38.2-4.4-43.4-23.4c-7.8-28.5-20.6-99.7-20.6-132.8c0-35.1 31.1-43.8 64-43.8zm0-144a56 56 0 1 1 0 112 56 56 0 1 1 0-112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "poo": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a9" + ], + "secondary": [ + "10f2fe" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crap", + "dung", + "face", + "monster", + "pile of poo", + "poo", + "poop", + "shit", + "smile", + "turd" + ] + }, + "unicode": "f2fe", + "label": "Poo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M268.9 .9c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.4c2.8 8.2 4.3 16.9 4.3 26.1c0 44.1-35.7 79.9-79.8 80H160c-35.3 0-64 28.7-64 64c0 19.1 8.4 36.3 21.7 48H104c-39.8 0-72 32.2-72 72c0 23.2 11 43.8 28 57c-34.1 5.7-60 35.3-60 71c0 39.8 32.2 72 72 72H440c39.8 0 72-32.2 72-72c0-35.7-25.9-65.3-60-71c17-13.2 28-33.8 28-57c0-39.8-32.2-72-72-72H394.3c13.3-11.7 21.7-28.9 21.7-48c0-35.3-28.7-64-64-64h-5.5c3.5-10 5.5-20.8 5.5-32c0-48.6-36.2-88.8-83.1-95.1zM192 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm64 108.3c0 2.4-.7 4.8-2.2 6.7c-8.2 10.5-39.5 45-93.8 45s-85.6-34.6-93.8-45c-1.5-1.9-2.2-4.3-2.2-6.7c0-6.8 5.5-12.3 12.3-12.3H339.7c6.8 0 12.3 5.5 12.3 12.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "poo-storm": { + "aliases": { + "names": [ + "poo-bolt" + ], + "unicodes": { + "secondary": [ + "10f75a" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "cloud", + "euphemism", + "lightning", + "mess", + "poop", + "shit", + "turd" + ] + }, + "unicode": "f75a", + "label": "Poo Storm", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M236.9 .2c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.3c2.8 8.2 4.3 16.9 4.3 26.1c0 21.7-8.5 37.2-21.9 47.6c-13.8 10.8-34 17-57.8 17H128c-35.3 0-64 28.7-64 64c0 12.2 3.4 23.5 9.3 33.2C31.7 216.2 0 252.4 0 296c0 41 28 75.4 65.8 85.2c-5.3-18.5 1-38.5 16.2-50.7l160-128c17.6-14.1 42.6-14 60.2 .2s22.8 38.6 12.8 58.8L285.7 320H304c20.4 0 38.5 12.9 45.3 32.1c3.7 10.6 3.5 21.8 0 31.9H360c48.6 0 88-39.4 88-88c0-43.6-31.7-79.8-73.3-86.8c5.9-9.7 9.3-21.1 9.3-33.2c0-35.3-28.7-64-64-64h-1.4c.9-5.4 1.4-10.9 1.4-16.6c0-48.7-36.1-88.9-83.1-95.2zm45.1 227.4c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8s8.3 10.7 15.1 10.7h70.1L129.7 488.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1 .1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H233.9l52.4-104.8c3.4-6.7 1.6-14.9-4.3-19.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "poop": { + "aliases": { + "unicodes": { + "secondary": [ + "10f619" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "crap", + "poop", + "shit", + "smile", + "turd" + ] + }, + "unicode": "f619", + "label": "Poop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M254.4 6.6c3.5-4.3 9-6.5 14.5-5.7C315.8 7.2 352 47.4 352 96c0 11.2-1.9 22-5.5 32H352c35.3 0 64 28.7 64 64c0 19.1-8.4 36.3-21.7 48H408c39.8 0 72 32.2 72 72c0 23.2-11 43.8-28 57c34.1 5.7 60 35.3 60 71c0 39.8-32.2 72-72 72H72c-39.8 0-72-32.2-72-72c0-35.7 25.9-65.3 60-71c-17-13.2-28-33.8-28-57c0-39.8 32.2-72 72-72h13.7C104.4 228.3 96 211.1 96 192c0-35.3 28.7-64 64-64h16.2c44.1-.1 79.8-35.9 79.8-80c0-9.2-1.5-17.9-4.3-26.1c-1.8-5.2-.8-11.1 2.8-15.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "power-off": { + "aliases": { + "unicodes": { + "composite": [ + "23fb" + ], + "secondary": [ + "10f011" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Power Symbol", + "cancel", + "computer", + "on", + "reboot", + "restart" + ] + }, + "unicode": "f011", + "label": "Power Off", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V256c0 17.7 14.3 32 32 32s32-14.3 32-32V32zM143.5 120.6c13.6-11.3 15.4-31.5 4.1-45.1s-31.5-15.4-45.1-4.1C49.7 115.4 16 181.8 16 256c0 132.5 107.5 240 240 240s240-107.5 240-240c0-74.2-33.8-140.6-86.6-184.6c-13.6-11.3-33.8-9.4-45.1 4.1s-9.4 33.8 4.1 45.1c38.9 32.3 63.5 81 63.5 135.4c0 97.2-78.8 176-176 176s-176-78.8-176-176c0-54.4 24.7-103.1 63.5-135.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "prescription": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5b1" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "unicode": "f5b1", + "label": "Prescription", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32V192v96c0 17.7 14.3 32 32 32s32-14.3 32-32V224h50.7l128 128L137.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 397.3 393.4 502.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L333.3 352 438.6 246.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 306.7l-85.8-85.8C251.4 209.1 288 164.8 288 112C288 50.1 237.9 0 176 0H32zM176 160H64V64H176c26.5 0 48 21.5 48 48s-21.5 48-48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "prescription-bottle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f485" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "unicode": "f485", + "label": "Prescription Bottle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H352c17.7 0 32 14.3 32 32V64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64V32zm32 96H352V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V416H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V320H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V224H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "prescription-bottle-medical": { + "aliases": { + "names": [ + "prescription-bottle-alt" + ], + "unicodes": { + "secondary": [ + "10f486" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "unicode": "f486", + "label": "Prescription Bottle Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H352c17.7 0 32 14.3 32 32V64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64V32zm32 96H352V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zM160 240v48H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V352h48c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H224V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "print": { + "aliases": { + "unicodes": { + "composite": [ + "1f5a8", + "1f5b6", + "2399" + ], + "secondary": [ + "10f02f" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Print Screen Symbol", + "Printer Icon", + "business", + "computer", + "copy", + "document", + "office", + "paper", + "printer" + ] + }, + "unicode": "f02f", + "label": "Print", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767341, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 0C92.7 0 64 28.7 64 64v96h64V64H354.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0H128zM384 352v32 64H128V384 368 352H384zm64 32h32c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32H64v64c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V384zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "product-hunt": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f288", + "label": "Product Hunt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pump-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06a" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anti-bacterial", + "clean", + "covid-19", + "disinfect", + "hygiene", + "medical grade", + "sanitizer", + "soap" + ] + }, + "unicode": "e06a", + "label": "Pump Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 32v96H256V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L372.7 55.4c-15-15-35.4-23.4-56.6-23.4H256c0-17.7-14.3-32-32-32H160c-17.7 0-32 14.3-32 32zM117.4 160c-33.3 0-61 25.5-63.8 58.7L35 442.7C31.9 480 61.3 512 98.8 512H285.2c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7H117.4zM216 280v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H216v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V360H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V280c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pump-soap": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06b" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anti-bacterial", + "clean", + "covid-19", + "disinfect", + "hygiene", + "sanitizer", + "soap" + ] + }, + "unicode": "e06b", + "label": "Pump Soap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 32v96H256V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L372.7 55.4c-15-15-35.4-23.4-56.6-23.4H256c0-17.7-14.3-32-32-32H160c-17.7 0-32 14.3-32 32zM117.4 160c-33.3 0-61 25.5-63.8 58.7L35 442.7C31.9 480 61.3 512 98.8 512H285.2c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7H117.4zM256 360c0 35.3-28.7 56-64 56s-64-20.7-64-56c0-32.5 37-80.9 50.9-97.9c3.2-3.9 8.1-6.1 13.1-6.1s9.9 2.2 13.1 6.1C219 279.1 256 327.5 256 360z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pushed": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e1", + "label": "Pushed", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "puzzle-piece": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e9" + ], + "secondary": [ + "10f12e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "add-on", + "addon", + "clue", + "game", + "interlocking", + "jigsaw", + "piece", + "puzzle", + "puzzle piece", + "section" + ] + }, + "unicode": "f12e", + "label": "Puzzle Piece", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 104.8c0-9.2-5.8-17.3-13.2-22.8C167.2 73.3 160 61.3 160 48c0-26.5 28.7-48 64-48s64 21.5 64 48c0 13.3-7.2 25.3-18.8 34c-7.4 5.5-13.2 13.6-13.2 22.8v0c0 12.8 10.4 23.2 23.2 23.2H336c26.5 0 48 21.5 48 48v56.8c0 12.8 10.4 23.2 23.2 23.2v0c9.2 0 17.3-5.8 22.8-13.2c8.7-11.6 20.7-18.8 34-18.8c26.5 0 48 28.7 48 64s-21.5 64-48 64c-13.3 0-25.3-7.2-34-18.8c-5.5-7.4-13.6-13.2-22.8-13.2v0c-12.8 0-23.2 10.4-23.2 23.2V464c0 26.5-21.5 48-48 48H279.2c-12.8 0-23.2-10.4-23.2-23.2v0c0-9.2 5.8-17.3 13.2-22.8c11.6-8.7 18.8-20.7 18.8-34c0-26.5-28.7-48-64-48s-64 21.5-64 48c0 13.3 7.2 25.3 18.8 34c7.4 5.5 13.2 13.6 13.2 22.8v0c0 12.8-10.4 23.2-23.2 23.2H48c-26.5 0-48-21.5-48-48V343.2C0 330.4 10.4 320 23.2 320v0c9.2 0 17.3 5.8 22.8 13.2C54.7 344.8 66.7 352 80 352c26.5 0 48-28.7 48-64s-21.5-64-48-64c-13.3 0-25.3 7.2-34 18.8C40.5 250.2 32.4 256 23.2 256v0C10.4 256 0 245.6 0 232.8V176c0-26.5 21.5-48 48-48H168.8c12.8 0 23.2-10.4 23.2-23.2v0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "python": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e2", + "label": "Python", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "q": { + "aliases": { + "unicodes": { + "composite": [ + "71" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Q", + "Latin Small Letter Q", + "letter" + ] + }, + "unicode": "51", + "label": "Q", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 256c0 88.4 71.6 160 160 160c28.9 0 56-7.7 79.4-21.1l-72-86.4c-11.3-13.6-9.5-33.8 4.1-45.1s33.8-9.5 45.1 4.1l70.9 85.1C371.9 325.8 384 292.3 384 256c0-88.4-71.6-160-160-160S64 167.6 64 256zM344.9 444.6C310 467 268.5 480 224 480C100.3 480 0 379.7 0 256S100.3 32 224 32s224 100.3 224 224c0 56.1-20.6 107.4-54.7 146.7l47.3 56.8c11.3 13.6 9.5 33.8-4.1 45.1s-33.8 9.5-45.1-4.1l-46.6-55.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "qq": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d6", + "label": "QQ", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "qrcode": { + "aliases": { + "unicodes": { + "secondary": [ + "10f029" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barcode", + "info", + "information", + "scan" + ] + }, + "unicode": "f029", + "label": "Qrcode", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80zM64 96v64h64V96H64zM0 336c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V336zm64 16v64h64V352H64zM304 32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H304c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48zm80 64H320v64h64V96zM256 304c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s7.2-16 16-16s16 7.2 16 16v96c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s-7.2-16-16-16s-16 7.2-16 16v64c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V304zM368 480a16 16 0 1 1 0-32 16 16 0 1 1 0 32zm64 0a16 16 0 1 1 0-32 16 16 0 1 1 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "question": { + "aliases": { + "unicodes": { + "composite": [ + "2753", + "2754", + "f128" + ], + "primary": [ + "f128" + ], + "secondary": [ + "103f", + "10f128" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "?", + "Question Mark", + "help", + "information", + "mark", + "outlined", + "punctuation", + "question", + "red question mark", + "support", + "unknown", + "white question mark" + ] + }, + "unicode": "3f", + "label": "Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M80 160c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64v3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1c-25.2 16.2-40.4 44.1-40.4 74V320c0 17.7 14.3 32 32 32s32-14.3 32-32v-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7V160c0-70.7-57.3-128-128-128H144C73.3 32 16 89.3 16 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "quinscape": { + "changes": [ + "5.0.5", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f459", + "label": "QuinScape", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.6 474.6h-1a158.1 158.1 0 0 1 0-316.2c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C501.1 117.5 391.6 8 256.5 8S12 117.5 12 252.6s109.5 244.6 244.5 244.6a237.36 237.36 0 0 0 70.4-10.1c-5.2-3.5-8.9-8.1-13.3-12.5zm-.1-.1l.4.1zm78.4-168.9a99.2 99.2 0 1 0 99.2 99.2 99.18 99.18 0 0 0-99.2-99.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "quora": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2c4", + "label": "Quora", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "quote-left": { + "aliases": { + "names": [ + "quote-left-alt" + ], + "unicodes": { + "composite": [ + "201c" + ], + "secondary": [ + "10f10d" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left Double Quotation Mark", + "mention", + "note", + "phrase", + "text", + "type" + ] + }, + "unicode": "f10d", + "label": "Quote Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "quote-right": { + "aliases": { + "names": [ + "quote-right-alt" + ], + "unicodes": { + "composite": [ + "201d" + ], + "secondary": [ + "10f10e" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Double Quotation Mark", + "mention", + "note", + "phrase", + "text", + "type" + ] + }, + "unicode": "f10e", + "label": "Quote Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "r": { + "aliases": { + "unicodes": { + "composite": [ + "72" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter R", + "Latin Small Letter R", + "letter" + ] + }, + "unicode": "52", + "label": "R", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V288 448c0 17.7 14.3 32 32 32s32-14.3 32-32V320h95.3L261.8 466.4c10.1 14.5 30.1 18 44.6 7.9s18-30.1 7.9-44.6L230.1 309.5C282.8 288.1 320 236.4 320 176c0-79.5-64.5-144-144-144H64zM176 256H64V96H176c44.2 0 80 35.8 80 80s-35.8 80-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "r-project": { + "changes": [ + "5.0.11", + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f7", + "label": "R Project", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "radiation": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7b9" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "danger", + "dangerous", + "deadly", + "hazard", + "nuclear", + "radioactive", + "warning" + ] + }, + "unicode": "f7b9", + "label": "Radiation", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M216 186.7c-23.9 13.8-40 39.7-40 69.3L32 256C14.3 256-.2 241.6 2 224.1C10.7 154 47.8 92.7 101.3 52c14.1-10.7 33.8-5.3 42.7 10l72 124.7zM256 336c14.6 0 28.2-3.9 40-10.7l72 124.8c8.8 15.3 3.7 35.1-12.6 41.9c-30.6 12.9-64.2 20-99.4 20s-68.9-7.1-99.4-20c-16.3-6.9-21.4-26.6-12.6-41.9l72-124.8c11.8 6.8 25.4 10.7 40 10.7zm224-80l-144 0c0-29.6-16.1-55.5-40-69.3L368 62c8.8-15.3 28.6-20.7 42.7-10c53.6 40.7 90.6 102 99.4 172.1c2.2 17.5-12.4 31.9-30 31.9zM256 208a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "radio": { + "aliases": { + "unicodes": { + "composite": [ + "1f4fb" + ], + "secondary": [ + "10f8d7" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "am", + "broadcast", + "fm", + "frequency", + "music", + "news", + "radio", + "receiver", + "transmitter", + "tuner", + "video" + ] + }, + "unicode": "f8d7", + "label": "Radio", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M494.8 47c12.7-3.7 20-17.1 16.3-29.8S494-2.8 481.2 1L51.7 126.9c-9.4 2.7-17.9 7.3-25.1 13.2C10.5 151.7 0 170.6 0 192v4V304 448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H218.5L494.8 47zM368 240a80 80 0 1 1 0 160 80 80 0 1 1 0-160zM80 256c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16zM64 320c0-8.8 7.2-16 16-16H208c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm16 64c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rainbow": { + "aliases": { + "unicodes": { + "composite": [ + "1f308" + ], + "secondary": [ + "10f75b" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gold", + "leprechaun", + "prism", + "rain", + "rainbow", + "sky" + ] + }, + "unicode": "f75b", + "label": "Rainbow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96C178.6 96 64 210.6 64 352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C0 175.3 143.3 32 320 32s320 143.3 320 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C576 210.6 461.4 96 320 96zm0 192c-35.3 0-64 28.7-64 64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-70.7 57.3-128 128-128s128 57.3 128 128v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-35.3-28.7-64-64-64zM160 352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-123.7 100.3-224 224-224s224 100.3 224 224v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-88.4-71.6-160-160-160s-160 71.6-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ranking-star": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "first place", + "podium", + "rank", + "win" + ] + }, + "unicode": "e561", + "label": "Ranking Star", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M353.8 54.1L330.2 6.3c-3.9-8.3-16.1-8.6-20.4 0L286.2 54.1l-52.3 7.5c-9.3 1.4-13.3 12.9-6.4 19.8l38 37-9 52.1c-1.4 9.3 8.2 16.5 16.8 12.2l46.9-24.8 46.6 24.4c8.6 4.3 18.3-2.9 16.8-12.2l-9-52.1 38-36.6c6.8-6.8 2.9-18.3-6.4-19.8l-52.3-7.5zM256 256c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H384c17.7 0 32-14.3 32-32V288c0-17.7-14.3-32-32-32H256zM32 320c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zm416 96v64c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V416c0-17.7-14.3-32-32-32H480c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "raspberry-pi": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7bb", + "label": "Raspberry Pi", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 407, + 512 + ], + "width": 407, + "height": 512, + "path": "M372 232.5l-3.7-6.5c.1-46.4-21.4-65.3-46.5-79.7 7.6-2 15.4-3.6 17.6-13.2 13.1-3.3 15.8-9.4 17.1-15.8 3.4-2.3 14.8-8.7 13.6-19.7 6.4-4.4 10-10.1 8.1-18.1 6.9-7.5 8.7-13.7 5.8-19.4 8.3-10.3 4.6-15.6 1.1-20.9 6.2-11.2.7-23.2-16.6-21.2-6.9-10.1-21.9-7.8-24.2-7.8-2.6-3.2-6-6-16.5-4.7-6.8-6.1-14.4-5-22.3-2.1-9.3-7.3-15.5-1.4-22.6.8C271.6.6 269 5.5 263.5 7.6c-12.3-2.6-16.1 3-22 8.9l-6.9-.1c-18.6 10.8-27.8 32.8-31.1 44.1-3.3-11.3-12.5-33.3-31.1-44.1l-6.9.1c-5.9-5.9-9.7-11.5-22-8.9-5.6-2-8.1-7-19.4-3.4-4.6-1.4-8.9-4.4-13.9-4.3-2.6.1-5.5 1-8.7 3.5-7.9-3-15.5-4-22.3 2.1-10.5-1.3-14 1.4-16.5 4.7-2.3 0-17.3-2.3-24.2 7.8C21.2 16 15.8 28 22 39.2c-3.5 5.4-7.2 10.7 1.1 20.9-2.9 5.7-1.1 11.9 5.8 19.4-1.8 8 1.8 13.7 8.1 18.1-1.2 11 10.2 17.4 13.6 19.7 1.3 6.4 4 12.4 17.1 15.8 2.2 9.5 10 11.2 17.6 13.2-25.1 14.4-46.6 33.3-46.5 79.7l-3.7 6.5c-28.8 17.2-54.7 72.7-14.2 117.7 2.6 14.1 7.1 24.2 11 35.4 5.9 45.2 44.5 66.3 54.6 68.8 14.9 11.2 30.8 21.8 52.2 29.2C159 504.2 181 512 203 512h1c22.1 0 44-7.8 64.2-28.4 21.5-7.4 37.3-18 52.2-29.2 10.2-2.5 48.7-23.6 54.6-68.8 3.9-11.2 8.4-21.3 11-35.4 40.6-45.1 14.7-100.5-14-117.7zm-22.2-8c-1.5 18.7-98.9-65.1-82.1-67.9 45.7-7.5 83.6 19.2 82.1 67.9zm-43 93.1c-24.5 15.8-59.8 5.6-78.8-22.8s-14.6-64.2 9.9-80c24.5-15.8 59.8-5.6 78.8 22.8s14.6 64.2-9.9 80zM238.9 29.3c.8 4.2 1.8 6.8 2.9 7.6 5.4-5.8 9.8-11.7 16.8-17.3 0 3.3-1.7 6.8 2.5 9.4 3.7-5 8.8-9.5 15.5-13.3-3.2 5.6-.6 7.3 1.2 9.6 5.1-4.4 10-8.8 19.4-12.3-2.6 3.1-6.2 6.2-2.4 9.8 5.3-3.3 10.6-6.6 23.1-8.9-2.8 3.1-8.7 6.3-5.1 9.4 6.6-2.5 14-4.4 22.1-5.4-3.9 3.2-7.1 6.3-3.9 8.8 7.1-2.2 16.9-5.1 26.4-2.6l-6 6.1c-.7.8 14.1.6 23.9.8-3.6 5-7.2 9.7-9.3 18.2 1 1 5.8.4 10.4 0-4.7 9.9-12.8 12.3-14.7 16.6 2.9 2.2 6.8 1.6 11.2.1-3.4 6.9-10.4 11.7-16 17.3 1.4 1 3.9 1.6 9.7.9-5.2 5.5-11.4 10.5-18.8 15 1.3 1.5 5.8 1.5 10 1.6-6.7 6.5-15.3 9.9-23.4 14.2 4 2.7 6.9 2.1 10 2.1-5.7 4.7-15.4 7.1-24.4 10 1.7 2.7 3.4 3.4 7.1 4.1-9.5 5.3-23.2 2.9-27 5.6.9 2.7 3.6 4.4 6.7 5.8-15.4.9-57.3-.6-65.4-32.3 15.7-17.3 44.4-37.5 93.7-62.6-38.4 12.8-73 30-102 53.5-34.3-15.9-10.8-55.9 5.8-71.8zm-34.4 114.6c24.2-.3 54.1 17.8 54 34.7-.1 15-21 27.1-53.8 26.9-32.1-.4-53.7-15.2-53.6-29.8 0-11.9 26.2-32.5 53.4-31.8zm-123-12.8c3.7-.7 5.4-1.5 7.1-4.1-9-2.8-18.7-5.3-24.4-10 3.1 0 6 .7 10-2.1-8.1-4.3-16.7-7.7-23.4-14.2 4.2-.1 8.7 0 10-1.6-7.4-4.5-13.6-9.5-18.8-15 5.8.7 8.3.1 9.7-.9-5.6-5.6-12.7-10.4-16-17.3 4.3 1.5 8.3 2 11.2-.1-1.9-4.2-10-6.7-14.7-16.6 4.6.4 9.4 1 10.4 0-2.1-8.5-5.8-13.3-9.3-18.2 9.8-.1 24.6 0 23.9-.8l-6-6.1c9.5-2.5 19.3.4 26.4 2.6 3.2-2.5-.1-5.6-3.9-8.8 8.1 1.1 15.4 2.9 22.1 5.4 3.5-3.1-2.3-6.3-5.1-9.4 12.5 2.3 17.8 5.6 23.1 8.9 3.8-3.6.2-6.7-2.4-9.8 9.4 3.4 14.3 7.9 19.4 12.3 1.7-2.3 4.4-4 1.2-9.6 6.7 3.8 11.8 8.3 15.5 13.3 4.1-2.6 2.5-6.2 2.5-9.4 7 5.6 11.4 11.5 16.8 17.3 1.1-.8 2-3.4 2.9-7.6 16.6 15.9 40.1 55.9 6 71.8-29-23.5-63.6-40.7-102-53.5 49.3 25 78 45.3 93.7 62.6-8 31.8-50 33.2-65.4 32.3 3.1-1.4 5.8-3.2 6.7-5.8-4-2.8-17.6-.4-27.2-5.6zm60.1 24.1c16.8 2.8-80.6 86.5-82.1 67.9-1.5-48.7 36.5-75.5 82.1-67.9zM38.2 342c-23.7-18.8-31.3-73.7 12.6-98.3 26.5-7 9 107.8-12.6 98.3zm91 98.2c-13.3 7.9-45.8 4.7-68.8-27.9-15.5-27.4-13.5-55.2-2.6-63.4 16.3-9.8 41.5 3.4 60.9 25.6 16.9 20 24.6 55.3 10.5 65.7zm-26.4-119.7c-24.5-15.8-28.9-51.6-9.9-80s54.3-38.6 78.8-22.8 28.9 51.6 9.9 80c-19.1 28.4-54.4 38.6-78.8 22.8zM205 496c-29.4 1.2-58.2-23.7-57.8-32.3-.4-12.7 35.8-22.6 59.3-22 23.7-1 55.6 7.5 55.7 18.9.5 11-28.8 35.9-57.2 35.4zm58.9-124.9c.2 29.7-26.2 53.8-58.8 54-32.6.2-59.2-23.8-59.4-53.4v-.6c-.2-29.7 26.2-53.8 58.8-54 32.6-.2 59.2 23.8 59.4 53.4v.6zm82.2 42.7c-25.3 34.6-59.6 35.9-72.3 26.3-13.3-12.4-3.2-50.9 15.1-72 20.9-23.3 43.3-38.5 58.9-26.6 10.5 10.3 16.7 49.1-1.7 72.3zm22.9-73.2c-21.5 9.4-39-105.3-12.6-98.3 43.9 24.7 36.3 79.6 12.6 98.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ravelry": { + "changes": [ + "4.7.0", + "5.0.0", + "5.15.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d9", + "label": "Ravelry", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498.252,234.223c-1.208-10.34-1.7-20.826-3.746-31a310.306,310.306,0,0,0-9.622-36.6,184.068,184.068,0,0,0-30.874-57.5,251.154,251.154,0,0,0-18.818-21.689,237.362,237.362,0,0,0-47.113-36.116A240.8,240.8,0,0,0,331.356,26.65c-11.018-3.1-22.272-5.431-33.515-7.615-6.78-1.314-13.749-1.667-20.627-2.482-.316-.036-.6-.358-.9-.553q-16.143.009-32.288.006c-2.41.389-4.808.925-7.236,1.15a179.331,179.331,0,0,0-34.256,7.1,221.5,221.5,0,0,0-39.768,16.355,281.385,281.385,0,0,0-38.08,24.158c-6.167,4.61-12.268,9.36-17.974,14.518C96.539,88.494,86.34,97.72,76.785,107.555a243.878,243.878,0,0,0-33.648,43.95,206.488,206.488,0,0,0-20.494,44.6,198.2,198.2,0,0,0-7.691,34.759A201.13,201.13,0,0,0,13.4,266.385a299.716,299.716,0,0,0,4.425,40.24,226.865,226.865,0,0,0,16.73,53.3,210.543,210.543,0,0,0,24,39.528,213.589,213.589,0,0,0,26.358,28.416A251.313,251.313,0,0,0,126.7,458.455a287.831,287.831,0,0,0,55.9,25.277,269.5,269.5,0,0,0,40.641,9.835c6.071,1.01,12.275,1.253,18.412,1.873a4.149,4.149,0,0,1,1.19.56h32.289c2.507-.389,5-.937,7.527-1.143,16.336-1.332,32.107-5.335,47.489-10.717A219.992,219.992,0,0,0,379.1,460.322c9.749-6.447,19.395-13.077,28.737-20.1,5.785-4.348,10.988-9.5,16.3-14.457,3.964-3.7,7.764-7.578,11.51-11.5a232.162,232.162,0,0,0,31.427-41.639c9.542-16.045,17.355-32.905,22.3-50.926,2.859-10.413,4.947-21.045,7.017-31.652,1.032-5.279,1.251-10.723,1.87-16.087.036-.317.358-.6.552-.9V236.005A9.757,9.757,0,0,1,498.252,234.223Zm-161.117-1.15s-16.572-2.98-28.47-2.98c-27.2,0-33.57,14.9-33.57,37.04V360.8H201.582V170.062H275.1v31.931c8.924-26.822,26.771-36.189,62.04-36.189Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "react": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41b", + "label": "React", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "reacteurope": { + "changes": [ + "5.5.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f75d", + "label": "ReactEurope", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M250.6 211.74l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm63.7 0l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.2-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm-91.3 50.5h-3.4c-4.8 0-3.8 4-3.8 12.1 0 4.7-2.3 6.1-5.8 6.1s-5.8-1.4-5.8-6.1v-36.6c0-4.7 2.3-6.1 5.8-6.1s5.8 1.4 5.8 6.1c0 7.2-.7 10.5 3.8 10.5h3.4c4.7-.1 3.8-3.9 3.8-12.3 0-9.9-6.7-14.1-16.8-14.1h-.2c-10.1 0-16.8 4.2-16.8 14.1V276c0 10.4 6.7 14.1 16.8 14.1h.2c10.1 0 16.8-3.8 16.8-14.1 0-9.86 1.1-13.76-3.8-13.76zm-80.7 17.4h-14.7v-19.3H139c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-11.4v-18.3H142c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-21.7c-2.4-.1-3.7 1.3-3.7 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h21.9c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8zm-42-18.5c4.6-2 7.3-6 7.3-12.4v-11.9c0-10.1-6.7-14.1-16.8-14.1H77.4c-2.5 0-3.8 1.3-3.8 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5 0 3.8-1.3 3.8-3.8v-22.9h5.6l7.4 23.5a4.1 4.1 0 0 0 4.3 3.2h3.3c2.8 0 4-1.8 3.2-4.4zm-3.8-14c0 4.8-2.5 6.1-6.1 6.1h-5.8v-20.9h5.8c3.6 0 6.1 1.3 6.1 6.1zM176 226a3.82 3.82 0 0 0-4.2-3.4h-6.9a3.68 3.68 0 0 0-4 3.4l-11 59.2c-.5 2.7.9 4.1 3.4 4.1h3a3.74 3.74 0 0 0 4.1-3.5l1.8-11.3h12.2l1.8 11.3a3.74 3.74 0 0 0 4.1 3.5h3.5c2.6 0 3.9-1.4 3.4-4.1zm-12.3 39.3l4.7-29.7 4.7 29.7zm89.3 20.2v-53.2h7.5c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-25.8c-2.5 0-3.8 1.3-3.8 3.8v2.1c0 2.5 1.3 3.8 3.8 3.8h7.3v53.2c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5.04 3.8-1.3 3.8-3.76zm248-.8h-19.4V258h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9H501a1.81 1.81 0 0 0 2-1.9v-.8a1.84 1.84 0 0 0-2-1.96zm-93.1-62.9h-.8c-10.1 0-15.3 4.7-15.3 14.1V276c0 9.3 5.2 14.1 15.3 14.1h.8c10.1 0 15.3-4.8 15.3-14.1v-40.1c0-9.36-5.2-14.06-15.3-14.06zm10.2 52.4c-.1 8-3 11.1-10.5 11.1s-10.5-3.1-10.5-11.1v-36.6c0-7.9 3-11.1 10.5-11.1s10.5 3.2 10.5 11.1zm-46.5-14.5c6.1-1.6 9.2-6.1 9.2-13.3v-9.7c0-9.4-5.2-14.1-15.3-14.1h-13.7a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.9h11.6l10.4 27.2a2.32 2.32 0 0 0 2.3 1.5h1.5c1.4 0 2-1 1.5-2.3zm-6.4-3.9H355v-28.5h10.2c7.5 0 10.5 3.1 10.5 11.1v6.4c0 7.84-3 11.04-10.5 11.04zm85.9-33.1h-13.7a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.1h10.6c10.1 0 15.3-4.8 15.3-14.1v-10.5c0-9.4-5.2-14.1-15.3-14.1zm10.2 22.8c0 7.9-3 11.1-10.5 11.1h-10.2v-29.2h10.2c7.5-.1 10.5 3.1 10.5 11zM259.5 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm227.6-136.1a364.42 364.42 0 0 0-35.6-11.3c19.6-78 11.6-134.7-22.3-153.9C394.7-12.66 343.3 11 291 61.94q5.1 4.95 10.2 10.2c82.5-80 119.6-53.5 120.9-52.8 22.4 12.7 36 55.8 15.5 137.8a587.83 587.83 0 0 0-84.6-13C281.1 43.64 212.4 2 170.8 2 140 2 127 23 123.2 29.74c-18.1 32-13.3 84.2.1 133.8-70.5 20.3-120.7 54.1-120.3 95 .5 59.6 103.2 87.8 122.1 92.8-20.5 81.9-10.1 135.6 22.3 153.9 28 15.8 75.1 6 138.2-55.2q-5.1-4.95-10.2-10.2c-82.5 80-119.7 53.5-120.9 52.8-22.3-12.6-36-55.6-15.5-137.9 12.4 2.9 41.8 9.5 84.6 13 71.9 100.4 140.6 142 182.1 142 30.8 0 43.8-21 47.6-27.7 18-31.9 13.3-84.1-.1-133.8 152.3-43.8 156.2-130.2 33.9-176.3zM135.9 36.84c2.9-5.1 11.9-20.3 34.9-20.3 36.8 0 98.8 39.6 163.3 126.2a714 714 0 0 0-93.9.9 547.76 547.76 0 0 1 42.2-52.4Q277.3 86 272.2 81a598.25 598.25 0 0 0-50.7 64.2 569.69 569.69 0 0 0-84.4 14.6c-.2-1.4-24.3-82.2-1.2-123zm304.8 438.3c-2.9 5.1-11.8 20.3-34.9 20.3-36.7 0-98.7-39.4-163.3-126.2a695.38 695.38 0 0 0 93.9-.9 547.76 547.76 0 0 1-42.2 52.4q5.1 5.25 10.2 10.2a588.47 588.47 0 0 0 50.7-64.2c47.3-4.7 80.3-13.5 84.4-14.6 22.7 84.4 4.5 117 1.2 123zm9.1-138.6c-3.6-11.9-7.7-24.1-12.4-36.4a12.67 12.67 0 0 1-10.7-5.7l-.1.1a19.61 19.61 0 0 1-5.4 3.6c5.7 14.3 10.6 28.4 14.7 42.2a535.3 535.3 0 0 1-72 13c3.5-5.3 17.2-26.2 32.2-54.2a24.6 24.6 0 0 1-6-3.2c-1.1 1.2-3.6 4.2-10.9 4.2-6.2 11.2-17.4 30.9-33.9 55.2a711.91 711.91 0 0 1-112.4 1c-7.9-11.2-21.5-31.1-36.8-57.8a21 21 0 0 1-3-1.5c-1.9 1.6-3.9 3.2-12.6 3.2 6.3 11.2 17.5 30.7 33.8 54.6a548.81 548.81 0 0 1-72.2-11.7q5.85-21 14.1-42.9c-3.2 0-5.4.2-8.4-1a17.58 17.58 0 0 1-6.9 1c-4.9 13.4-9.1 26.5-12.7 39.4C-31.7 297-12.1 216 126.7 175.64c3.6 11.9 7.7 24.1 12.4 36.4 10.4 0 12.9 3.4 14.4 5.3a12 12 0 0 1 2.3-2.2c-5.8-14.7-10.9-29.2-15.2-43.3 7-1.8 32.4-8.4 72-13-15.9 24.3-26.7 43.9-32.8 55.3a14.22 14.22 0 0 1 6.4 8 23.42 23.42 0 0 1 10.2-8.4c6.5-11.7 17.9-31.9 34.8-56.9a711.72 711.72 0 0 1 112.4-1c31.5 44.6 28.9 48.1 42.5 64.5a21.42 21.42 0 0 1 10.4-7.4c-6.4-11.4-17.6-31-34.3-55.5 40.4 4.1 65 10 72.2 11.7-4 14.4-8.9 29.2-14.6 44.2a20.74 20.74 0 0 1 6.8 4.3l.1.1a12.72 12.72 0 0 1 8.9-5.6c4.9-13.4 9.2-26.6 12.8-39.5a359.71 359.71 0 0 1 34.5 11c106.1 39.9 74 87.9 72.6 90.4-19.8 35.1-80.1 55.2-105.7 62.5zm-114.4-114h-1.2a1.74 1.74 0 0 0-1.9 1.9v49.8c0 7.9-2.6 11.1-10.1 11.1s-10.1-3.1-10.1-11.1v-49.8a1.69 1.69 0 0 0-1.9-1.9H309a1.81 1.81 0 0 0-2 1.9v51.5c0 9.6 5 14.1 15.1 14.1h.4c10.1 0 15.1-4.6 15.1-14.1v-51.5a2 2 0 0 0-2.2-1.9zM321.7 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm-31.1 7.4l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm5.1-30.8h-19.4v-26.7h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h22.5a1.77 1.77 0 0 0 2-1.9v-.8a1.83 1.83 0 0 0-2-2.06zm-7.4-99.4L286 192l-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "readme": { + "changes": [ + "5.0.9", + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4d5", + "label": "ReadMe", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "rebel": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d0", + "label": "Rebel Alliance", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "receipt": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fe" + ], + "secondary": [ + "10f543" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accounting", + "bookkeeping", + "check", + "evidence", + "invoice", + "money", + "pay", + "proof", + "receipt", + "table" + ] + }, + "unicode": "f543", + "label": "Receipt", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M14 2.2C22.5-1.7 32.5-.3 39.6 5.8L80 40.4 120.4 5.8c9-7.7 22.3-7.7 31.2 0L192 40.4 232.4 5.8c9-7.7 22.3-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6s14 12.4 14 21.8V488c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6L304 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L192 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6 39.6 506.2c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488V24C0 14.6 5.5 6.1 14 2.2zM96 144c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96zM80 352c0 8.8 7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zM96 240c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "record-vinyl": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8d9" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LP", + "album", + "analog", + "music", + "phonograph", + "sound" + ] + }, + "unicode": "f8d9", + "label": "Record Vinyl", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766677, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256-96a96 96 0 1 1 0 192 96 96 0 1 1 0-192zm0 224a128 128 0 1 0 0-256 128 128 0 1 0 0 256zm0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rectangle-ad": { + "aliases": { + "names": [ + "ad" + ], + "unicodes": { + "secondary": [ + "10f641" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "advertisement", + "media", + "newspaper", + "promotion", + "publicity" + ] + }, + "unicode": "f641", + "label": "Rectangle Ad", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM229.5 173.3l72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7L253.2 328H162.8l-5.4 10.7c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zM208 237.7L186.8 280h42.3L208 237.7zM392 256a24 24 0 1 0 0 48 24 24 0 1 0 0-48zm24-43.9V184c0-13.3 10.7-24 24-24s24 10.7 24 24v96 48c0 13.3-10.7 24-24 24c-6.6 0-12.6-2.7-17-7c-9.4 4.5-19.9 7-31 7c-39.8 0-72-32.2-72-72s32.2-72 72-72c8.4 0 16.5 1.4 24 4.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rectangle-list": { + "aliases": { + "names": [ + "list-alt" + ], + "unicodes": { + "secondary": [ + "10f022" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f022", + "label": "Rectangle List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM128 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm32-128a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM128 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm96-248c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224z" + }, + "regular": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H512c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64zM0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm96 64a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm104 0c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm-72-64a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM96 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "rectangle-xmark": { + "aliases": { + "names": [ + "rectangle-times", + "times-rectangle", + "window-close" + ], + "unicodes": { + "composite": [ + "f2d4" + ], + "secondary": [ + "10f410" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "cancel", + "computer", + "development" + ] + }, + "unicode": "f410", + "label": "Rectangle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + }, + "regular": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64zM0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm175 79c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "recycle": { + "aliases": { + "unicodes": { + "composite": [ + "2672", + "267a", + "267b" + ], + "secondary": [ + "10f1b8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Recycling Symbol For Generic Materials", + "Universal Recycling Symbol", + "Waste", + "compost", + "garbage", + "recycle", + "recycling symbol", + "reuse", + "trash" + ] + }, + "unicode": "f1b8", + "label": "Recycle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.7 45.1C192.2 17 223 0 256 0s63.8 17 81.3 45.1l38.6 61.7 27-15.6c8.4-4.9 18.9-4.2 26.6 1.7s11.1 15.9 8.6 25.3l-23.4 87.4c-3.4 12.8-16.6 20.4-29.4 17l-87.4-23.4c-9.4-2.5-16.3-10.4-17.6-20s3.4-19.1 11.8-23.9l28.4-16.4L283 79c-5.8-9.3-16-15-27-15s-21.2 5.7-27 15l-17.5 28c-9.2 14.8-28.6 19.5-43.6 10.5c-15.3-9.2-20.2-29.2-10.7-44.4l17.5-28zM429.5 251.9c15-9 34.4-4.3 43.6 10.5l24.4 39.1c9.4 15.1 14.4 32.4 14.6 50.2c.3 53.1-42.7 96.4-95.8 96.4L320 448v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2v32l96.2 0c17.6 0 31.9-14.4 31.8-32c0-5.9-1.7-11.7-4.8-16.7l-24.4-39.1c-9.5-15.2-4.7-35.2 10.7-44.4zm-364.6-31L36 204.2c-8.4-4.9-13.1-14.3-11.8-23.9s8.2-17.5 17.6-20l87.4-23.4c12.8-3.4 26 4.2 29.4 17L182 241.2c2.5 9.4-.9 19.3-8.6 25.3s-18.2 6.6-26.6 1.7l-26.5-15.3L68.8 335.3c-3.1 5-4.8 10.8-4.8 16.7c-.1 17.6 14.2 32 31.8 32l32.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32.2 0C42.7 448-.3 404.8 0 351.6c.1-17.8 5.1-35.1 14.6-50.2l50.3-80.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "red-river": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e3", + "label": "red river", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "reddit": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a1", + "label": "reddit Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "reddit-alien": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f281", + "label": "reddit Alien", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "redhat": { + "changes": [ + "5.6.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f7bc", + "label": "Redhat", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.52 285.56c33.65 0 82.34-6.94 82.34-47 .22-6.74.86-1.82-20.88-96.24-4.62-19.15-8.68-27.84-42.31-44.65-26.09-13.34-82.92-35.37-99.73-35.37-15.66 0-20.2 20.17-38.87 20.17-18 0-31.31-15.06-48.12-15.06-16.14 0-26.66 11-34.78 33.62-27.5 77.55-26.28 74.27-26.12 78.27 0 24.8 97.64 106.11 228.47 106.11M429 254.84c4.65 22 4.65 24.35 4.65 27.25 0 37.66-42.33 58.56-98 58.56-125.74.08-235.91-73.65-235.91-122.33a49.55 49.55 0 0 1 4.06-19.72C58.56 200.86 0 208.93 0 260.63c0 84.67 200.63 189 359.49 189 121.79 0 152.51-55.08 152.51-98.58 0-34.21-29.59-73.05-82.93-96.24" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "registered": { + "aliases": { + "unicodes": { + "composite": [ + "ae" + ], + "secondary": [ + "10f25d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copyright", + "mark", + "r", + "registered", + "trademark" + ] + }, + "unicode": "f25d", + "label": "Registered", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM160 152c0-13.3 10.7-24 24-24h88c44.2 0 80 35.8 80 80c0 28-14.4 52.7-36.3 67l34.1 75.1c5.5 12.1 .1 26.3-11.9 31.8s-26.3 .1-31.8-11.9L268.9 288H208v72c0 13.3-10.7 24-24 24s-24-10.7-24-24V264 152zm48 88h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H208v64z" + }, + "regular": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM160 152V264v96c0 13.3 10.7 24 24 24s24-10.7 24-24V288h60.9l37.2 81.9c5.5 12.1 19.7 17.4 31.8 11.9s17.4-19.7 11.9-31.8L315.7 275c21.8-14.3 36.3-39 36.3-67c0-44.2-35.8-80-80-80H184c-13.3 0-24 10.7-24 24zm48 88V176h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "renren": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f18b", + "label": "Renren", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "repeat": { + "aliases": { + "unicodes": { + "composite": [ + "1f501" + ], + "secondary": [ + "10f363" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "clockwise", + "flip", + "reload", + "repeat", + "repeat button", + "rewind", + "switch" + ] + }, + "unicode": "f363", + "label": "Repeat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 17.7 14.3 32 32 32s32-14.3 32-32c0-53 43-96 96-96H320v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9S320 19.1 320 32V64H160C71.6 64 0 135.6 0 224zm512 64c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 53-43 96-96 96H192V352c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V448H352c88.4 0 160-71.6 160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "reply": { + "aliases": { + "names": [ + "mail-reply" + ], + "unicodes": { + "composite": [ + "f112" + ], + "secondary": [ + "10f3e5" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mail", + "message", + "respond" + ] + }, + "unicode": "f3e5", + "label": "Reply", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M205 34.8c11.5 5.1 19 16.6 19 29.2v64H336c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96H224v64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "reply-all": { + "aliases": { + "names": [ + "mail-reply-all" + ], + "unicodes": { + "secondary": [ + "10f122" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mail", + "message", + "respond" + ] + }, + "unicode": "f122", + "label": "Reply All", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M209.4 39.5c-9.1-9.6-24.3-10-33.9-.9L33.8 173.2c-19.9 18.9-19.9 50.7 0 69.6L175.5 377.4c9.6 9.1 24.8 8.7 33.9-.9s8.7-24.8-.9-33.9L66.8 208 208.5 73.4c9.6-9.1 10-24.3 .9-33.9zM352 64c0-12.6-7.4-24.1-19-29.2s-25-3-34.4 5.4l-160 144c-6.7 6.1-10.6 14.7-10.6 23.8s3.9 17.7 10.6 23.8l160 144c9.4 8.5 22.9 10.6 34.4 5.4s19-16.6 19-29.2V288h32c53 0 96 43 96 96c0 30.4-12.8 47.9-22.2 56.7c-5.5 5.1-9.8 12-9.8 19.5c0 10.9 8.8 19.7 19.7 19.7c2.8 0 5.6-.6 8.1-1.9C494.5 467.9 576 417.3 576 304c0-97.2-78.8-176-176-176H352V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "replyd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e6", + "label": "replyd", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "republican": { + "aliases": { + "unicodes": { + "secondary": [ + "10f75e" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "conservative", + "election", + "elephant", + "politics", + "republican party", + "right", + "right-wing", + "usa" + ] + }, + "unicode": "f75e", + "label": "Republican", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 192C0 103.6 71.6 32 160 32H384c88.4 0 160 71.6 160 160v64H0V192zm415.9-64c-2.4 0-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L466 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4zm-138.3 3.4c-1.1-2.1-3.3-3.4-5.7-3.4s-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L322 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6zM127.9 128c-2.4 0-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L178 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4zm.1 160H320h96 32 64 32v32 80c0 8.8 7.2 16 16 16s16-7.2 16-16V352c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80s-80-35.8-80-80V352H448v32 64c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V384H128v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V384 288H128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "researchgate": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f8", + "label": "Researchgate", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "resolving": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e7", + "label": "Resolving", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "restroom": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7bd" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "toilet", + "water closet", + "wc" + ] + }, + "unicode": "f7bd", + "label": "Restroom", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 48a48 48 0 1 1 96 0A48 48 0 1 1 80 48zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V325.2c-8.1 9.2-21.1 13.2-33.5 9.4c-16.9-5.3-26.3-23.2-21-40.1l30.9-99.1C44.9 155.3 82 128 124 128h8c42 0 79.1 27.3 91.6 67.4l30.9 99.1c5.3 16.9-4.1 34.8-21 40.1c-12.4 3.9-25.4-.2-33.5-9.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H120zM320 0c13.3 0 24 10.7 24 24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24zM464 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM440 480V384H422.2c-10.9 0-18.6-10.7-15.2-21.1l9-26.9c-3.2 0-6.4-.5-9.5-1.5c-16.9-5.3-26.3-23.2-21-40.1l29.7-95.2C428.4 156.9 467.6 128 512 128s83.6 28.9 96.8 71.2l29.7 95.2c5.3 16.9-4.1 34.8-21 40.1c-3.2 1-6.4 1.5-9.5 1.5l9 26.9c3.5 10.4-4.3 21.1-15.2 21.1H584v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H504v96c0 17.7-14.3 32-32 32s-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "retweet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f079" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refresh", + "reload", + "share", + "swap" + ] + }, + "unicode": "f079", + "label": "Retweet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M272 416c17.7 0 32-14.3 32-32s-14.3-32-32-32H160c-17.7 0-32-14.3-32-32V192h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8l32 0 0 128c0 53 43 96 96 96H272zM304 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l112 0c17.7 0 32 14.3 32 32l0 128H416c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8l-32 0V192c0-53-43-96-96-96L304 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rev": { + "changes": [ + "5.1.0", + "5.1.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5b2", + "label": "Rev.io", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.67 274.89a65.57 65.57 0 1 1-65.56-65.56 65.64 65.64 0 0 1 65.56 65.56zm139.55-5.05h-.13a204.69 204.69 0 0 0-74.32-153l-45.38 26.2a157.07 157.07 0 0 1 71.81 131.84C381.2 361.5 310.73 432 224.11 432S67 361.5 67 274.88c0-81.88 63-149.27 143-156.43v39.12l108.77-62.79L210 32v38.32c-106.7 7.25-191 96-191 204.57 0 111.59 89.12 202.29 200.06 205v.11h210.16V269.84z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ribbon": { + "aliases": { + "unicodes": { + "composite": [ + "1f397" + ], + "secondary": [ + "10f4d6" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "cause", + "celebration", + "lapel", + "pin", + "reminder", + "reminder ribbon", + "ribbon" + ] + }, + "unicode": "f4d6", + "label": "Ribbon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M333.2 322.8l0 0-133.9-146 0 0L146 118.6c7.8-5.1 37-22.6 78-22.6s70.2 17.4 78 22.6L245.7 180l85.6 93.4 27.4-29.8c16.3-17.7 25.3-40.9 25.3-65V149.1c0-19-5.6-37.5-16.1-53.3L327.8 35.6C312.9 13.4 287.9 0 261.2 0h-76c-25.8 0-50.1 12.5-65.1 33.5L81.9 87C70.3 103.2 64 122.8 64 142.8V164c0 23.2 8.4 45.6 23.6 63.1l56 64.2 0 0 83.3 95.6 0 0 91.8 105.3c10 11.5 26.8 14.3 40 6.8l54.5-31.1c17.8-10.2 21.6-34.3 7.7-49.4l-87.7-95.7zM205.2 410.6l-83.3-95.6L27.1 418.5c-13.9 15.1-10.1 39.2 7.7 49.4l55.1 31.5c13 7.4 29.3 4.9 39.4-6.1l75.9-82.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-from-bracket": { + "aliases": { + "names": [ + "sign-out-alt" + ], + "unicodes": { + "secondary": [ + "10f2f5" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "exit", + "leave", + "log out", + "logout", + "sign-out" + ] + }, + "unicode": "f2f5", + "label": "Right From Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M377.9 105.9L500.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L377.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1-128 0c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM160 96L96 96c-17.7 0-32 14.3-32 32l0 256c0 17.7 14.3 32 32 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-53 0-96-43-96-96L0 128C0 75 43 32 96 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-left": { + "aliases": { + "names": [ + "exchange-alt" + ], + "unicodes": { + "secondary": [ + "10f362" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "exchange", + "reciprocate", + "return", + "swap", + "transfer" + ] + }, + "unicode": "f362", + "label": "Right Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 96l320 0V32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H160v64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64H480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-long": { + "aliases": { + "names": [ + "long-arrow-alt-right" + ], + "unicodes": { + "secondary": [ + "10f30b" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "long-arrow-right", + "next" + ] + }, + "unicode": "f30b", + "label": "Right Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M334.5 414c8.8 3.8 19 2 26-4.6l144-136c4.8-4.5 7.5-10.8 7.5-17.4s-2.7-12.9-7.5-17.4l-144-136c-7-6.6-17.2-8.4-26-4.6s-14.5 12.5-14.5 22l0 72L32 192c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32l288 0 0 72c0 9.6 5.7 18.2 14.5 22z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-to-bracket": { + "aliases": { + "names": [ + "sign-in-alt" + ], + "unicodes": { + "secondary": [ + "10f2f6" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "enter", + "join", + "log in", + "login", + "sign in", + "sign up", + "sign-in", + "signin", + "signup" + ] + }, + "unicode": "f2f6", + "label": "Right To Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M217.9 105.9L340.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L217.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1L32 320c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM352 416l64 0c17.7 0 32-14.3 32-32l0-256c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64 0c53 0 96 43 96 96l0 256c0 53-43 96-96 96l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ring": { + "aliases": { + "unicodes": { + "secondary": [ + "10f70b" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "Gollum", + "band", + "binding", + "d&d", + "dnd", + "engagement", + "fantasy", + "gold", + "jewelry", + "marriage", + "precious" + ] + }, + "unicode": "f70b", + "label": "Ring", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 208c0 7.8 4.4 18.7 17.1 30.3C126.5 214.1 188.9 200 256 200s129.5 14.1 174.9 38.3C443.6 226.7 448 215.8 448 208c0-12.3-10.8-32-47.9-50.6C364.9 139.8 314 128 256 128s-108.9 11.8-144.1 29.4C74.8 176 64 195.7 64 208zm192 40c-47 0-89.3 7.6-122.9 19.7C166.3 280.2 208.8 288 256 288s89.7-7.8 122.9-20.3C345.3 255.6 303 248 256 248zM0 208c0-49.6 39.4-85.8 83.3-107.8C129.1 77.3 190.3 64 256 64s126.9 13.3 172.7 36.2c43.9 22 83.3 58.2 83.3 107.8v96c0 49.6-39.4 85.8-83.3 107.8C382.9 434.7 321.7 448 256 448s-126.9-13.3-172.7-36.2C39.4 389.8 0 353.6 0 304V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road": { + "aliases": { + "unicodes": { + "composite": [ + "1f6e3" + ], + "secondary": [ + "10f018" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "highway", + "map", + "motorway", + "pavement", + "road", + "route", + "street", + "travel" + ] + }, + "unicode": "f018", + "label": "Road", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32H181.2c-27.1 0-51.3 17.1-60.3 42.6L3.1 407.2C1.1 413 0 419.2 0 425.4C0 455.5 24.5 480 54.6 480H256V416c0-17.7 14.3-32 32-32s32 14.3 32 32v64H521.4c30.2 0 54.6-24.5 54.6-54.6c0-6.2-1.1-12.4-3.1-18.2L455.1 74.6C446 49.1 421.9 32 394.8 32H320V96c0 17.7-14.3 32-32 32s-32-14.3-32-32V32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-barrier": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "border", + "no entry", + "roadblock" + ] + }, + "unicode": "e562", + "label": "Road Barrier", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V266.3L149.2 96H64V64c0-17.7-14.3-32-32-32zM405.2 96H330.8l-5.4 10.7L234.8 288h74.3l5.4-10.7L405.2 96zM362.8 288h74.3l5.4-10.7L533.2 96H458.8l-5.4 10.7L362.8 288zM202.8 96l-5.4 10.7L106.8 288h74.3l5.4-10.7L277.2 96H202.8zm288 192H576V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v53.7L490.8 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-bridge": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "infrastructure", + "road", + "travel" + ] + }, + "unicode": "e563", + "label": "Road Bridge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M352 0H608c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM480 200c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V224c0-13.3-10.7-24-24-24zm24 184c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V384zM480 40c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V64c0-13.3-10.7-24-24-24zM32 96H288v64H248v64h40v96c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V416c0-53-43-96-96-96V224H72V160H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm168 64H120v64h80V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "freeway", + "highway", + "not affected", + "ok", + "okay", + "pavement", + "road" + ] + }, + "unicode": "e564", + "label": "Road Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "freeway", + "highway", + "pavement", + "road" + ] + }, + "unicode": "e565", + "label": "Road Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "freeway", + "highway", + "pavement", + "road" + ] + }, + "unicode": "e566", + "label": "Road Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm22.6 144l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L473.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L496 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L518.6 368z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "freeway", + "highway", + "lockdown", + "pavement", + "quarantine", + "road" + ] + }, + "unicode": "e567", + "label": "Road Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 32H213.2c-27.1 0-51.3 17.1-60.3 42.6L35.1 407.2c-2.1 5.9-3.1 12-3.1 18.2C32 455.5 56.5 480 86.6 480H288V416c0-17.7 14.3-32 32-32s32 14.3 32 32v64h32V352c0-23.7 12.9-44.4 32-55.4V272c0-58.3 44.6-106.2 101.5-111.5L487.1 74.6C478 49.1 453.9 32 426.8 32H352V96c0 17.7-14.3 32-32 32s-32-14.3-32-32V32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32zm176 16c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-spikes": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barrier", + "roadblock", + "spikes" + ] + }, + "unicode": "e568", + "label": "Road Spikes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 116.8c0-15.8 20.5-22 29.3-8.9L192 256V116.8c0-15.8 20.5-22 29.3-8.9L320 256V116.8c0-15.8 20.5-22 29.3-8.9L448 256V116.8c0-15.8 20.5-22 29.3-8.9L606.8 302.2c14.2 21.3-1.1 49.7-26.6 49.7H512 448 384 320 256 192 64V116.8zM32 384H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "robot": { + "aliases": { + "unicodes": { + "composite": [ + "1f916" + ], + "secondary": [ + "10f544" + ] + } + }, + "changes": [ + "5.0.13", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "automate", + "computer", + "cyborg", + "face", + "monster", + "robot" + ] + }, + "unicode": "f544", + "label": "Robot", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V96H472c39.8 0 72 32.2 72 72V440c0 39.8-32.2 72-72 72H168c-39.8 0-72-32.2-72-72V168c0-39.8 32.2-72 72-72H288V32c0-17.7 14.3-32 32-32zM208 384c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H208zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H304zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H400zM264 256a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zm152 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM48 224H64V416H48c-26.5 0-48-21.5-48-48V272c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H576V224h16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rocket": { + "aliases": { + "unicodes": { + "secondary": [ + "10f135" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.7.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aircraft", + "app", + "jet", + "launch", + "nasa", + "space" + ] + }, + "unicode": "f135", + "label": "Rocket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767636, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M156.6 384.9L125.7 354c-8.5-8.5-11.5-20.8-7.7-32.2c3-8.9 7-20.5 11.8-33.8L24 288c-8.6 0-16.6-4.6-20.9-12.1s-4.2-16.7 .2-24.1l52.5-88.5c13-21.9 36.5-35.3 61.9-35.3l82.3 0c2.4-4 4.8-7.7 7.2-11.3C289.1-4.1 411.1-8.1 483.9 5.3c11.6 2.1 20.6 11.2 22.8 22.8c13.4 72.9 9.3 194.8-111.4 276.7c-3.5 2.4-7.3 4.8-11.3 7.2v82.3c0 25.4-13.4 49-35.3 61.9l-88.5 52.5c-7.4 4.4-16.6 4.5-24.1 .2s-12.1-12.2-12.1-20.9V380.8c-14.1 4.9-26.4 8.9-35.7 11.9c-11.2 3.6-23.4 .5-31.8-7.8zM384 168a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rocketchat": { + "changes": [ + "5.0.0", + "5.4.2", + "5.8.0", + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e8", + "label": "Rocket.Chat", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M284.046,224.8a34.114,34.114,0,1,0,34.317,34.113A34.217,34.217,0,0,0,284.046,224.8Zm-110.45,0a34.114,34.114,0,1,0,34.317,34.113A34.217,34.217,0,0,0,173.6,224.8Zm220.923,0a34.114,34.114,0,1,0,34.317,34.113A34.215,34.215,0,0,0,394.519,224.8Zm153.807-55.319c-15.535-24.172-37.31-45.57-64.681-63.618-52.886-34.817-122.374-54-195.666-54a405.975,405.975,0,0,0-72.032,6.357,238.524,238.524,0,0,0-49.51-36.588C99.684-11.7,40.859.711,11.135,11.421A14.291,14.291,0,0,0,5.58,34.782C26.542,56.458,61.222,99.3,52.7,138.252c-33.142,33.9-51.112,74.776-51.112,117.337,0,43.372,17.97,84.248,51.112,118.148,8.526,38.956-26.154,81.816-47.116,103.491a14.284,14.284,0,0,0,5.555,23.34c29.724,10.709,88.549,23.147,155.324-10.2a238.679,238.679,0,0,0,49.51-36.589A405.972,405.972,0,0,0,288,460.14c73.313,0,142.8-19.159,195.667-53.975,27.371-18.049,49.145-39.426,64.679-63.619,17.309-26.923,26.07-55.916,26.07-86.125C574.394,225.4,565.634,196.43,548.326,169.485ZM284.987,409.9a345.65,345.65,0,0,1-89.446-11.5l-20.129,19.393a184.366,184.366,0,0,1-37.138,27.585,145.767,145.767,0,0,1-52.522,14.87c.983-1.771,1.881-3.563,2.842-5.356q30.258-55.68,16.325-100.078c-32.992-25.962-52.778-59.2-52.778-95.4,0-83.1,104.254-150.469,232.846-150.469s232.867,67.373,232.867,150.469C517.854,342.525,413.6,409.9,284.987,409.9Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "rockrms": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e9", + "label": "Rockrms", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "rotate": { + "aliases": { + "names": [ + "sync-alt" + ], + "unicodes": { + "composite": [ + "1f504" + ], + "secondary": [ + "10f2f1" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anticlockwise", + "arrow", + "counterclockwise", + "counterclockwise arrows button", + "exchange", + "refresh", + "reload", + "rotate", + "swap", + "withershins" + ] + }, + "unicode": "f2f1", + "label": "Rotate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M142.9 142.9c62.2-62.2 162.7-62.5 225.3-1L327 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H463.5c0 0 0 0 0 0H472c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L413.4 96.6c-87.6-86.5-228.7-86.2-315.8 1C73.2 122 55.6 150.7 44.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5c7.7-21.8 20.2-42.3 37.8-59.8zM16 312v7.6 .7V440c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l41.6-41.6c87.6 86.5 228.7 86.2 315.8-1c24.4-24.4 42.1-53.1 52.9-83.7c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.2 62.2-162.7 62.5-225.3 1L185 329c6.9-6.9 8.9-17.2 5.2-26.2s-12.5-14.8-22.2-14.8H48.4h-.7H40c-13.3 0-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rotate-left": { + "aliases": { + "names": [ + "rotate-back", + "rotate-backward", + "undo-alt" + ], + "unicodes": { + "secondary": [ + "10f2ea" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "exchange", + "oops", + "return", + "swap" + ] + }, + "unicode": "f2ea", + "label": "Rotate Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48.5 224H40c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2L98.6 96.6c87.6-86.5 228.7-86.2 315.8 1c87.5 87.5 87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3c-62.2-62.2-162.7-62.5-225.3-1L185 183c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8H48.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rotate-right": { + "aliases": { + "names": [ + "redo-alt", + "rotate-forward" + ], + "unicodes": { + "secondary": [ + "10f2f9" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "refresh", + "reload", + "repeat" + ] + }, + "unicode": "f2f9", + "label": "Rotate Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M463.5 224H472c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L413.4 96.6c-87.6-86.5-228.7-86.2-315.8 1c-87.5 87.5-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3c62.2-62.2 162.7-62.5 225.3-1L327 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H463.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "route": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4d7" + ] + } + }, + "changes": [ + "5.0.9", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "navigation", + "travel" + ] + }, + "unicode": "f4d7", + "label": "Route", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 96c0 50.2-59.1 125.1-84.6 155c-3.8 4.4-9.4 6.1-14.5 5H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c53 0 96 43 96 96s-43 96-96 96H139.6c8.7-9.9 19.3-22.6 30-36.8c6.3-8.4 12.8-17.6 19-27.2H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-53 0-96-43-96-96s43-96 96-96h39.8c-21-31.5-39.8-67.7-39.8-96c0-53 43-96 96-96s96 43 96 96zM117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8C59.8 473 0 402.5 0 352c0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9c-10.7 14.7-21.7 28-30.8 38.5l-.6 .7zM128 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rss": { + "aliases": { + "names": [ + "feed" + ], + "unicodes": { + "secondary": [ + "10f09e" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed", + "journal", + "news", + "writing" + ] + }, + "unicode": "f09e", + "label": "Rss", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32c229.8 0 416 186.2 416 416c0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96C14.3 96 0 81.7 0 64zM0 416a64 64 0 1 1 128 0A64 64 0 1 1 0 416zM32 160c159.1 0 288 128.9 288 288c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruble-sign": { + "aliases": { + "names": [ + "rouble", + "rub", + "ruble" + ], + "unicodes": { + "composite": [ + "20bd" + ], + "secondary": [ + "10f158" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ruble Sign", + "currency" + ] + }, + "unicode": "f158", + "label": "Ruble Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32C78.3 32 64 46.3 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V416H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V320H240c79.5 0 144-64.5 144-144s-64.5-144-144-144H96zM240 256H128V96H240c44.2 0 80 35.8 80 80s-35.8 80-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rug": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blanket", + "carpet", + "rug", + "textile" + ] + }, + "unicode": "e569", + "label": "Rug", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M24 64H56 80V88v88 80 80 88 24H56 24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V360H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V280H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V200H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V112H24C10.7 112 0 101.3 0 88S10.7 64 24 64zm88 0H528V448H112V64zM640 88c0 13.3-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H584 560V424 336 256 176 88 64h24 32c13.3 0 24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cf" + ], + "secondary": [ + "10f545" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning", + "ruler", + "straight edge", + "straight ruler" + ] + }, + "unicode": "f545", + "label": "Ruler", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.9 494.1c-18.7 18.7-49.1 18.7-67.9 0L17.9 401.9c-18.7-18.7-18.7-49.1 0-67.9l50.7-50.7 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 50.7-50.7c18.7-18.7 49.1-18.7 67.9 0l92.1 92.1c18.7 18.7 18.7 49.1 0 67.9L177.9 494.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler-combined": { + "aliases": { + "unicodes": { + "secondary": [ + "10f546" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "unicode": "f546", + "label": "Ruler Combined", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.2 468.9C2.7 493.1 23.1 512 48 512l96 0 320 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-64-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-64-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-48c0-26.5-21.5-48-48-48L48 0C21.5 0 0 21.5 0 48L0 368l0 96c0 1.7 .1 3.3 .2 4.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler-horizontal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f547" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "unicode": "f547", + "label": "Ruler Horizontal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 336c0 26.5 21.5 48 48 48l544 0c26.5 0 48-21.5 48-48l0-160c0-26.5-21.5-48-48-48l-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0c-26.5 0-48 21.5-48 48L0 336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f548" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "unicode": "f548", + "label": "Ruler Vertical", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H208c26.5 0 48 21.5 48 48V96H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rupee-sign": { + "aliases": { + "names": [ + "rupee" + ], + "unicodes": { + "composite": [ + "20a8" + ], + "secondary": [ + "10f156" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rupee Sign", + "currency" + ] + }, + "unicode": "f156", + "label": "Rupee Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256zm256.5 16.4c-.9 6 0 8.7 .4 9.8c.4 1.1 1.4 2.6 4.2 4.9c7.2 5.7 18.7 10 37.9 16.8l1.3 .5c16 5.6 38.7 13.6 55.7 28.1c9.5 8.1 17.9 18.6 23.1 32.3c5.1 13.7 6.1 28.5 3.8 44c-4.2 28.1-20.5 49.3-43.8 60.9c-22.1 11-48.1 12.5-73.2 8l-.2 0 0 0c-9.3-1.8-20.5-5.7-29.3-9c-6-2.3-12.6-4.9-17.7-6.9l0 0c-2.5-1-4.6-1.8-6.3-2.5c-16.5-6.4-24.6-25-18.2-41.4s24.9-24.6 41.4-18.2c2.6 1 5.2 2 7.9 3.1l0 0c4.8 1.9 9.8 3.9 15.4 6c8.8 3.3 15.3 5.4 18.7 6c15.7 2.8 26.7 .8 32.9-2.3c5-2.5 8-6 9.1-13c1-6.9 .2-10.5-.5-12.3c-.6-1.7-1.8-3.6-4.5-5.9c-6.9-5.8-18.2-10.4-36.9-17l-3-1.1c-15.5-5.4-37-13-53.3-25.9c-9.5-7.5-18.3-17.6-23.7-31c-5.5-13.4-6.6-28-4.4-43.2c8.4-57.1 67-78 116.9-68.9c6.9 1.3 27.3 5.8 35.4 8.4c16.9 5.2 26.3 23.2 21.1 40.1s-23.2 26.3-40.1 21.1c-4.7-1.4-22.3-5.5-27.9-6.5c-14.6-2.7-25.8-.4-32.6 3.2c-6.3 3.3-8.9 7.6-9.5 12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rupiah-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e23d", + "label": "Rupiah Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256zm256-96h80c61.9 0 112 50.1 112 112s-50.1 112-112 112H352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352 192c0-17.7 14.3-32 32-32zm80 160c26.5 0 48-21.5 48-48s-21.5-48-48-48H352v96h48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rust": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07a", + "label": "Rust", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M508.52,249.75,486.7,236.24c-.17-2-.34-3.93-.55-5.88l18.72-17.5a7.35,7.35,0,0,0-2.44-12.25l-24-9c-.54-1.88-1.08-3.78-1.67-5.64l15-20.83a7.35,7.35,0,0,0-4.79-11.54l-25.42-4.15c-.9-1.73-1.79-3.45-2.73-5.15l10.68-23.42a7.35,7.35,0,0,0-6.95-10.39l-25.82.91q-1.79-2.22-3.61-4.4L439,81.84A7.36,7.36,0,0,0,430.16,73L405,78.93q-2.17-1.83-4.4-3.61l.91-25.82a7.35,7.35,0,0,0-10.39-7L367.7,53.23c-1.7-.94-3.43-1.84-5.15-2.73L358.4,25.08a7.35,7.35,0,0,0-11.54-4.79L326,35.26c-1.86-.59-3.75-1.13-5.64-1.67l-9-24a7.35,7.35,0,0,0-12.25-2.44l-17.5,18.72c-1.95-.21-3.91-.38-5.88-.55L262.25,3.48a7.35,7.35,0,0,0-12.5,0L236.24,25.3c-2,.17-3.93.34-5.88.55L212.86,7.13a7.35,7.35,0,0,0-12.25,2.44l-9,24c-1.89.55-3.79,1.08-5.66,1.68l-20.82-15a7.35,7.35,0,0,0-11.54,4.79l-4.15,25.41c-1.73.9-3.45,1.79-5.16,2.73L120.88,42.55a7.35,7.35,0,0,0-10.39,7l.92,25.81c-1.49,1.19-3,2.39-4.42,3.61L81.84,73A7.36,7.36,0,0,0,73,81.84L78.93,107c-1.23,1.45-2.43,2.93-3.62,4.41l-25.81-.91a7.42,7.42,0,0,0-6.37,3.26,7.35,7.35,0,0,0-.57,7.13l10.66,23.41c-.94,1.7-1.83,3.43-2.73,5.16L25.08,153.6a7.35,7.35,0,0,0-4.79,11.54l15,20.82c-.59,1.87-1.13,3.77-1.68,5.66l-24,9a7.35,7.35,0,0,0-2.44,12.25l18.72,17.5c-.21,1.95-.38,3.91-.55,5.88L3.48,249.75a7.35,7.35,0,0,0,0,12.5L25.3,275.76c.17,2,.34,3.92.55,5.87L7.13,299.13a7.35,7.35,0,0,0,2.44,12.25l24,9c.55,1.89,1.08,3.78,1.68,5.65l-15,20.83a7.35,7.35,0,0,0,4.79,11.54l25.42,4.15c.9,1.72,1.79,3.45,2.73,5.14L42.56,391.12a7.35,7.35,0,0,0,.57,7.13,7.13,7.13,0,0,0,6.37,3.26l25.83-.91q1.77,2.22,3.6,4.4L73,430.16A7.36,7.36,0,0,0,81.84,439L107,433.07q2.18,1.83,4.41,3.61l-.92,25.82a7.35,7.35,0,0,0,10.39,6.95l23.43-10.68c1.69.94,3.42,1.83,5.14,2.73l4.15,25.42a7.34,7.34,0,0,0,11.54,4.78l20.83-15c1.86.6,3.76,1.13,5.65,1.68l9,24a7.36,7.36,0,0,0,12.25,2.44l17.5-18.72c1.95.21,3.92.38,5.88.55l13.51,21.82a7.35,7.35,0,0,0,12.5,0l13.51-21.82c2-.17,3.93-.34,5.88-.56l17.5,18.73a7.36,7.36,0,0,0,12.25-2.44l9-24c1.89-.55,3.78-1.08,5.65-1.68l20.82,15a7.34,7.34,0,0,0,11.54-4.78l4.15-25.42c1.72-.9,3.45-1.79,5.15-2.73l23.42,10.68a7.35,7.35,0,0,0,10.39-6.95l-.91-25.82q2.22-1.79,4.4-3.61L430.16,439a7.36,7.36,0,0,0,8.84-8.84L433.07,405q1.83-2.17,3.61-4.4l25.82.91a7.23,7.23,0,0,0,6.37-3.26,7.35,7.35,0,0,0,.58-7.13L458.77,367.7c.94-1.7,1.83-3.43,2.73-5.15l25.42-4.15a7.35,7.35,0,0,0,4.79-11.54l-15-20.83c.59-1.87,1.13-3.76,1.67-5.65l24-9a7.35,7.35,0,0,0,2.44-12.25l-18.72-17.5c.21-1.95.38-3.91.55-5.87l21.82-13.51a7.35,7.35,0,0,0,0-12.5Zm-151,129.08A13.91,13.91,0,0,0,341,389.51l-7.64,35.67A187.51,187.51,0,0,1,177,424.44l-7.64-35.66a13.87,13.87,0,0,0-16.46-10.68l-31.51,6.76a187.38,187.38,0,0,1-16.26-19.21H258.3c1.72,0,2.89-.29,2.89-1.91V309.55c0-1.57-1.17-1.91-2.89-1.91H213.47l.05-34.35H262c4.41,0,23.66,1.28,29.79,25.87,1.91,7.55,6.17,32.14,9.06,40,2.89,8.82,14.6,26.46,27.1,26.46H407a187.3,187.3,0,0,1-17.34,20.09Zm25.77,34.49A15.24,15.24,0,1,1,368,398.08h.44A15.23,15.23,0,0,1,383.24,413.32Zm-225.62-.68a15.24,15.24,0,1,1-15.25-15.25h.45A15.25,15.25,0,0,1,157.62,412.64ZM69.57,234.15l32.83-14.6a13.88,13.88,0,0,0,7.06-18.33L102.69,186h26.56V305.73H75.65A187.65,187.65,0,0,1,69.57,234.15ZM58.31,198.09a15.24,15.24,0,0,1,15.23-15.25H74a15.24,15.24,0,1,1-15.67,15.24Zm155.16,24.49.05-35.32h63.26c3.28,0,23.07,3.77,23.07,18.62,0,12.29-15.19,16.7-27.68,16.7ZM399,306.71c-9.8,1.13-20.63-4.12-22-10.09-5.78-32.49-15.39-39.4-30.57-51.4,18.86-11.95,38.46-29.64,38.46-53.26,0-25.52-17.49-41.59-29.4-49.48-16.76-11-35.28-13.23-40.27-13.23H116.32A187.49,187.49,0,0,1,221.21,70.06l23.47,24.6a13.82,13.82,0,0,0,19.6.44l26.26-25a187.51,187.51,0,0,1,128.37,91.43l-18,40.57A14,14,0,0,0,408,220.43l34.59,15.33a187.12,187.12,0,0,1,.4,32.54H423.71c-1.91,0-2.69,1.27-2.69,3.13v8.82C421,301,409.31,305.58,399,306.71ZM240,60.21A15.24,15.24,0,0,1,255.21,45h.45A15.24,15.24,0,1,1,240,60.21ZM436.84,214a15.24,15.24,0,1,1,0-30.48h.44a15.24,15.24,0,0,1-.44,30.48Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "s": { + "aliases": { + "unicodes": { + "composite": [ + "73" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter S", + "Latin Small Letter S", + "letter" + ] + }, + "unicode": "53", + "label": "S", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M99.1 105.4C79 114 68.2 127.2 65.2 144.8c-2.4 14.1-.7 23.2 2 29.4c2.8 6.3 7.9 12.4 16.7 18.6c19.2 13.4 48.3 22.1 84.9 32.5c1 .3 1.9 .6 2.9 .8c32.7 9.3 72 20.6 100.9 40.7c15.7 10.9 29.9 25.5 38.6 45.1c8.8 19.8 10.8 42 6.6 66.3c-7.3 42.5-35.3 71.7-71.8 87.3c-35.4 15.2-79.1 17.9-123.7 10.9l-.2 0 0 0c-24-3.9-62.7-17.1-87.6-25.6c-4.8-1.7-9.2-3.1-12.8-4.3C5.1 440.8-3.9 422.7 1.6 405.9s23.7-25.8 40.5-20.3c4.9 1.6 10.2 3.4 15.9 5.4c25.4 8.6 56.4 19.2 74.4 22.1c36.8 5.7 67.5 2.5 88.5-6.5c20.1-8.6 30.8-21.8 33.9-39.4c2.4-14.1 .7-23.2-2-29.4c-2.8-6.3-7.9-12.4-16.7-18.6c-19.2-13.4-48.3-22.1-84.9-32.5c-1-.3-1.9-.6-2.9-.8c-32.7-9.3-72-20.6-100.9-40.7c-15.7-10.9-29.9-25.5-38.6-45.1c-8.8-19.8-10.8-42-6.6-66.3l31.5 5.5L2.1 133.9C9.4 91.4 37.4 62.2 73.9 46.6c35.4-15.2 79.1-17.9 123.7-10.9c13 2 52.4 9.6 66.6 13.4c17.1 4.5 27.2 22.1 22.7 39.2s-22.1 27.2-39.2 22.7c-11.2-3-48.1-10.2-60.1-12l4.9-31.5-4.9 31.5c-36.9-5.8-67.5-2.5-88.6 6.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sack-dollar": { + "aliases": { + "unicodes": { + "composite": [ + "1f4b0" + ], + "secondary": [ + "10f81d" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "burlap", + "cash", + "dollar", + "money", + "money bag", + "moneybag", + "robber", + "santa", + "usd" + ] + }, + "unicode": "f81d", + "label": "Sack Dollar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 96H192L144.6 24.9C137.5 14.2 145.1 0 157.9 0H354.1c12.8 0 20.4 14.2 13.3 24.9L320 96zM192 128H320c3.8 2.5 8.1 5.3 13 8.4C389.7 172.7 512 250.9 512 416c0 53-43 96-96 96H96c-53 0-96-43-96-96C0 250.9 122.3 172.7 179 136.4l0 0 0 0c4.8-3.1 9.2-5.9 13-8.4zm84 88c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V424c0 11 9 20 20 20s20-9 20-20V410.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l0 0-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sack-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "burlap", + "rations" + ] + }, + "unicode": "e56a", + "label": "Sack Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96H320l47.4-71.1C374.5 14.2 366.9 0 354.1 0H157.9c-12.8 0-20.4 14.2-13.3 24.9L192 96zm128 32H192c-3.8 2.5-8.1 5.3-13 8.4l0 0 0 0C122.3 172.7 0 250.9 0 416c0 53 43 96 96 96H416c53 0 96-43 96-96c0-165.1-122.3-243.3-179-279.6c-4.8-3.1-9.2-5.9-13-8.4zM289.9 336l47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "safari": { + "changes": [ + "4.4.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "f267", + "label": "Safari", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M274.69,274.69l-37.38-37.38L166,346ZM256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8ZM411.85,182.79l14.78-6.13A8,8,0,0,1,437.08,181h0a8,8,0,0,1-4.33,10.46L418,197.57a8,8,0,0,1-10.45-4.33h0A8,8,0,0,1,411.85,182.79ZM314.43,94l6.12-14.78A8,8,0,0,1,331,74.92h0a8,8,0,0,1,4.33,10.45l-6.13,14.78a8,8,0,0,1-10.45,4.33h0A8,8,0,0,1,314.43,94ZM256,60h0a8,8,0,0,1,8,8V84a8,8,0,0,1-8,8h0a8,8,0,0,1-8-8V68A8,8,0,0,1,256,60ZM181,74.92a8,8,0,0,1,10.46,4.33L197.57,94a8,8,0,1,1-14.78,6.12l-6.13-14.78A8,8,0,0,1,181,74.92Zm-63.58,42.49h0a8,8,0,0,1,11.31,0L140,128.72A8,8,0,0,1,140,140h0a8,8,0,0,1-11.31,0l-11.31-11.31A8,8,0,0,1,117.41,117.41ZM60,256h0a8,8,0,0,1,8-8H84a8,8,0,0,1,8,8h0a8,8,0,0,1-8,8H68A8,8,0,0,1,60,256Zm40.15,73.21-14.78,6.13A8,8,0,0,1,74.92,331h0a8,8,0,0,1,4.33-10.46L94,314.43a8,8,0,0,1,10.45,4.33h0A8,8,0,0,1,100.15,329.21Zm4.33-136h0A8,8,0,0,1,94,197.57l-14.78-6.12A8,8,0,0,1,74.92,181h0a8,8,0,0,1,10.45-4.33l14.78,6.13A8,8,0,0,1,104.48,193.24ZM197.57,418l-6.12,14.78a8,8,0,0,1-14.79-6.12l6.13-14.78A8,8,0,1,1,197.57,418ZM264,444a8,8,0,0,1-8,8h0a8,8,0,0,1-8-8V428a8,8,0,0,1,8-8h0a8,8,0,0,1,8,8Zm67-6.92h0a8,8,0,0,1-10.46-4.33L314.43,418a8,8,0,0,1,4.33-10.45h0a8,8,0,0,1,10.45,4.33l6.13,14.78A8,8,0,0,1,331,437.08Zm63.58-42.49h0a8,8,0,0,1-11.31,0L372,383.28A8,8,0,0,1,372,372h0a8,8,0,0,1,11.31,0l11.31,11.31A8,8,0,0,1,394.59,394.59ZM286.25,286.25,110.34,401.66,225.75,225.75,401.66,110.34ZM437.08,331h0a8,8,0,0,1-10.45,4.33l-14.78-6.13a8,8,0,0,1-4.33-10.45h0A8,8,0,0,1,418,314.43l14.78,6.12A8,8,0,0,1,437.08,331ZM444,264H428a8,8,0,0,1-8-8h0a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8h0A8,8,0,0,1,444,264Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sailboat": { + "changes": [ + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dinghy", + "mast", + "sailboat", + "sailing", + "yacht" + ] + }, + "unicode": "e445", + "label": "Sailboat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 16c0-7 4.5-13.2 11.2-15.3s13.9 .4 17.9 6.1l224 320c3.4 4.9 3.8 11.3 1.1 16.6s-8.2 8.6-14.2 8.6H272c-8.8 0-16-7.2-16-16V16zM212.1 96.5c7 1.9 11.9 8.2 11.9 15.5V336c0 8.8-7.2 16-16 16H80c-5.7 0-11-3-13.8-8s-2.9-11-.1-16l128-224c3.6-6.3 11-9.4 18-7.5zM5.7 404.3C2.8 394.1 10.5 384 21.1 384H554.9c10.6 0 18.3 10.1 15.4 20.3l-4 14.3C550.7 473.9 500.4 512 443 512H133C75.6 512 25.3 473.9 9.7 418.7l-4-14.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "salesforce": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83b", + "label": "Salesforce", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M248.89 245.64h-26.35c.69-5.16 3.32-14.12 13.64-14.12 6.75 0 11.97 3.82 12.71 14.12zm136.66-13.88c-.47 0-14.11-1.77-14.11 20s13.63 20 14.11 20c13 0 14.11-13.54 14.11-20 0-21.76-13.66-20-14.11-20zm-243.22 23.76a8.63 8.63 0 0 0-3.29 7.29c0 4.78 2.08 6.05 3.29 7.05 4.7 3.7 15.07 2.12 20.93.95v-16.94c-5.32-1.07-16.73-1.96-20.93 1.65zM640 232c0 87.58-80 154.39-165.36 136.43-18.37 33-70.73 70.75-132.2 41.63-41.16 96.05-177.89 92.18-213.81-5.17C8.91 428.78-50.19 266.52 53.36 205.61 18.61 126.18 76 32 167.67 32a124.24 124.24 0 0 1 98.56 48.7c20.7-21.4 49.4-34.81 81.15-34.81 42.34 0 79 23.52 98.8 58.57C539 63.78 640 132.69 640 232zm-519.55 31.8c0-11.76-11.69-15.17-17.87-17.17-5.27-2.11-13.41-3.51-13.41-8.94 0-9.46 17-6.66 25.17-2.12 0 0 1.17.71 1.64-.47.24-.7 2.36-6.58 2.59-7.29a1.13 1.13 0 0 0-.7-1.41c-12.33-7.63-40.7-8.51-40.7 12.7 0 12.46 11.49 15.44 17.88 17.17 4.72 1.58 13.17 3 13.17 8.7 0 4-3.53 7.06-9.17 7.06a31.76 31.76 0 0 1-19-6.35c-.47-.23-1.42-.71-1.65.71l-2.4 7.47c-.47.94.23 1.18.23 1.41 1.75 1.4 10.3 6.59 22.82 6.59 13.17 0 21.4-7.06 21.4-18.11zm32-42.58c-10.13 0-18.66 3.17-21.4 5.18a1 1 0 0 0-.24 1.41l2.59 7.06a1 1 0 0 0 1.18.7c.65 0 6.8-4 16.93-4 4 0 7.06.71 9.18 2.36 3.6 2.8 3.06 8.29 3.06 10.58-4.79-.3-19.11-3.44-29.41 3.76a16.92 16.92 0 0 0-7.34 14.54c0 5.9 1.51 10.4 6.59 14.35 12.24 8.16 36.28 2 38.1 1.41 1.58-.32 3.53-.66 3.53-1.88v-33.88c.04-4.61.32-21.64-22.78-21.64zM199 200.24a1.11 1.11 0 0 0-1.18-1.18H188a1.11 1.11 0 0 0-1.17 1.18v79a1.11 1.11 0 0 0 1.17 1.18h9.88a1.11 1.11 0 0 0 1.18-1.18zm55.75 28.93c-2.1-2.31-6.79-7.53-17.65-7.53-3.51 0-14.16.23-20.7 8.94-6.35 7.63-6.58 18.11-6.58 21.41 0 3.12.15 14.26 7.06 21.17 2.64 2.91 9.06 8.23 22.81 8.23 10.82 0 16.47-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.35-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.94-16.7h37.17a1.23 1.23 0 0 0 1.17-.94c-.29 0 2.07-14.7-6.09-24.23zm36.69 52.69c13.17 0 21.41-7.06 21.41-18.11 0-11.76-11.7-15.17-17.88-17.17-4.14-1.66-13.41-3.38-13.41-8.94 0-3.76 3.29-6.35 8.47-6.35a38.11 38.11 0 0 1 16.7 4.23s1.18.71 1.65-.47c.23-.7 2.35-6.58 2.58-7.29a1.13 1.13 0 0 0-.7-1.41c-7.91-4.9-16.74-4.94-20.23-4.94-12 0-20.46 7.29-20.46 17.64 0 12.46 11.48 15.44 17.87 17.17 6.11 2 13.17 3.26 13.17 8.7 0 4-3.52 7.06-9.17 7.06a31.8 31.8 0 0 1-19-6.35 1 1 0 0 0-1.65.71l-2.35 7.52c-.47.94.23 1.18.23 1.41 1.72 1.4 10.33 6.59 22.79 6.59zM357.09 224c0-.71-.24-1.18-1.18-1.18h-11.76c0-.14.94-8.94 4.47-12.47 4.16-4.15 11.76-1.64 12-1.64 1.17.47 1.41 0 1.64-.47l2.83-7.77c.7-.94 0-1.17-.24-1.41-5.09-2-17.35-2.87-24.46 4.24-5.48 5.48-7 13.92-8 19.52h-8.47a1.28 1.28 0 0 0-1.17 1.18l-1.42 7.76c0 .7.24 1.17 1.18 1.17h8.23c-8.51 47.9-8.75 50.21-10.35 55.52-1.08 3.62-3.29 6.9-5.88 7.76-.09 0-3.88 1.68-9.64-.24 0 0-.94-.47-1.41.71-.24.71-2.59 6.82-2.83 7.53s0 1.41.47 1.41c5.11 2 13 1.77 17.88 0 6.28-2.28 9.72-7.89 11.53-12.94 2.75-7.71 2.81-9.79 11.76-59.74h12.23a1.29 1.29 0 0 0 1.18-1.18zm53.39 16c-.56-1.68-5.1-18.11-25.17-18.11-15.25 0-23 10-25.16 18.11-1 3-3.18 14 0 23.52.09.3 4.41 18.12 25.16 18.12 14.95 0 22.9-9.61 25.17-18.12 3.21-9.61 1.01-20.52 0-23.52zm45.4-16.7c-5-1.65-16.62-1.9-22.11 5.41v-4.47a1.11 1.11 0 0 0-1.18-1.17h-9.4a1.11 1.11 0 0 0-1.18 1.17v55.28a1.12 1.12 0 0 0 1.18 1.18h9.64a1.12 1.12 0 0 0 1.18-1.18v-27.77c0-2.91.05-11.37 4.46-15.05 4.9-4.9 12-3.36 13.41-3.06a1.57 1.57 0 0 0 1.41-.94 74 74 0 0 0 3.06-8 1.16 1.16 0 0 0-.47-1.41zm46.81 54.1l-2.12-7.29c-.47-1.18-1.41-.71-1.41-.71-4.23 1.82-10.15 1.89-11.29 1.89-4.64 0-17.17-1.13-17.17-19.76 0-6.23 1.85-19.76 16.47-19.76a34.85 34.85 0 0 1 11.52 1.65s.94.47 1.18-.71c.94-2.59 1.64-4.47 2.59-7.53.23-.94-.47-1.17-.71-1.17-11.59-3.87-22.34-2.53-27.76 0-1.59.74-16.23 6.49-16.23 27.52 0 2.9-.58 30.11 28.94 30.11a44.45 44.45 0 0 0 15.52-2.83 1.3 1.3 0 0 0 .47-1.42zm53.87-39.52c-.8-3-5.37-16.23-22.35-16.23-16 0-23.52 10.11-25.64 18.59a38.58 38.58 0 0 0-1.65 11.76c0 25.87 18.84 29.4 29.88 29.4 10.82 0 16.46-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.36-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.93-16.7h37.16a1.25 1.25 0 0 0 1.18-.94c-.24-.01.94-7.07-1.41-15.54zm-23.29-6.35c-10.33 0-13 9-13.64 14.12H546c-.88-11.92-7.62-14.13-12.73-14.13z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sass": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41e", + "label": "Sass", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M301.84 378.92c-.3.6-.6 1.08 0 0zm249.13-87a131.16 131.16 0 0 0-58 13.5c-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.29 5.9a122.83 122.83 0 0 0-5.3 19.1c-2.3 11.7-25.79 53.5-39.09 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.29-6.7-24 2.5-25.3 5.9-2.7 11.4-5.3 19.1-33.89 77.3-42.08 95.4c-4.2 9.2-7.8 16.6-10.4 21.6-.4.8-.7 1.3-.9 1.7.3-.5.5-1 .5-.8-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2s-1.4 2-1.4 2 10.1-42.4-19.39-42.4c-18.4 0-44 20.2-56.58 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.79-38.2-101.87-65.2-99.07-116.5 1-18.7 7.5-67.8 127.07-127.4 98-48.8 176.35-35.4 189.84-5.6 19.4 42.5-41.89 121.6-143.66 133-38.79 4.3-59.18-10.7-64.28-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.79 28.9 18.7 6.1 64.18 9.5 119.17-11.8 61.78-23.8 109.87-90.1 95.77-145.6C386.52 18.32 293-.18 204.57 31.22c-52.69 18.7-109.67 48.1-150.66 86.4-48.69 45.6-56.48 85.3-53.28 101.9 11.39 58.9 92.57 97.3 125.06 125.7-1.6.9-3.1 1.7-4.5 2.5-16.29 8.1-78.18 40.5-93.67 74.7-17.5 38.8 2.9 66.6 16.29 70.4 41.79 11.6 84.58-9.3 107.57-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.29-4.9 16.39-9.4 23.49-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.49 5 15.39 5 13.8 0 20-11.4 26.89-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.39 0 18.79-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.59-46 16.2-31.8 31.69-71.5 31.69-71.5a201.24 201.24 0 0 0 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2a.31.31 0 0 0 .1.2c-3 4-6.4 8.3-9.9 12.5-12.79 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.69 2.5 11.5-.8 19.6-3.6 23.5-5.4a82.2 82.2 0 0 0 20.19-10.6c12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5C434.8 301.72 450.1 270 450.1 270a201.24 201.24 0 0 0 6.2 25.8c2.4 8.1 7.09 17 11.39 25.7-18.59 15.1-30.09 32.6-34.09 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5a79.46 79.46 0 0 0 21.59-11.1c12.5-9.2 24.59-22.1 23.79-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.09-10.2 62.09-7.2 55.68 6.5 66.58 41.3 64.48 55.8s-13.8 22.6-17.7 25-5.1 3.3-4.8 5.1c.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.19-11.8 30.29-38.7 1.6-34-31.09-71.4-89-71.1zm-429.18 144.7c-18.39 20.1-44.19 27.7-55.28 21.3C54.61 451 59.31 421.42 82 400c13.8-13 31.59-25 43.39-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.29 30.4.3 57.2-19.1 78.3zm134.36-91.4c-6.4 15.7-19.89 55.7-28.09 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.09-11.3 21.19-14.9 23.79-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.89-13.9 0 .5.1 1 .1 1.6-.13 17.9-17.32 30-25.12 34.8zm85.58-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.59-15.3 19-24.5a36.18 36.18 0 0 1 1.9 10.8c-.1 22.5-16.2 30.9-25.89 34.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "satellite": { + "aliases": { + "unicodes": { + "composite": [ + "1f6f0" + ], + "secondary": [ + "10f7bf" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communications", + "hardware", + "orbit", + "satellite", + "space" + ] + }, + "unicode": "f7bf", + "label": "Satellite", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M233 7c-9.4-9.4-24.6-9.4-33.9 0l-96 96c-9.4 9.4-9.4 24.6 0 33.9l89.4 89.4-15.5 15.5C152.3 230.4 124.9 224 96 224c-31.7 0-61.5 7.7-87.8 21.2c-9 4.7-10.3 16.7-3.1 23.8L112.7 376.7 96.3 393.1c-2.6-.7-5.4-1.1-8.3-1.1c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32c0-2.9-.4-5.6-1.1-8.3l16.4-16.4L242.9 506.9c7.2 7.2 19.2 5.9 23.8-3.1C280.3 477.5 288 447.7 288 416c0-28.9-6.4-56.3-17.8-80.9l15.5-15.5L375 409c9.4 9.4 24.6 9.4 33.9 0l96-96c9.4-9.4 9.4-24.6 0-33.9l-89.4-89.4 55-55c12.5-12.5 12.5-32.8 0-45.3l-48-48c-12.5-12.5-32.8-12.5-45.3 0l-55 55L233 7zm159 351l-72.4-72.4 62.1-62.1L454.1 296 392 358.1zM226.3 192.4L153.9 120 216 57.9l72.4 72.4-62.1 62.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "satellite-dish": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e1" + ], + "secondary": [ + "10f7c0" + ] + } + }, + "changes": [ + "5.6.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "SETI", + "antenna", + "communications", + "dish", + "hardware", + "radar", + "receiver", + "satellite", + "satellite antenna", + "saucer", + "signal", + "space" + ] + }, + "unicode": "f7c0", + "label": "Satellite Dish", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 32c0-17.7 14.3-32 32-32C383.1 0 512 128.9 512 288c0 17.7-14.3 32-32 32s-32-14.3-32-32C448 164.3 347.7 64 224 64c-17.7 0-32-14.3-32-32zM60.6 220.6L164.7 324.7l28.4-28.4c-.7-2.6-1.1-5.4-1.1-8.3c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32c-2.9 0-5.6-.4-8.3-1.1l-28.4 28.4L291.4 451.4c14.5 14.5 11.8 38.8-7.3 46.3C260.5 506.9 234.9 512 208 512C93.1 512 0 418.9 0 304c0-26.9 5.1-52.5 14.4-76.1c7.5-19 31.8-21.8 46.3-7.3zM224 96c106 0 192 86 192 192c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-70.7-57.3-128-128-128c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scale-balanced": { + "aliases": { + "names": [ + "balance-scale" + ], + "unicodes": { + "composite": [ + "2696" + ], + "secondary": [ + "10f24e" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Libra", + "balance", + "balance scale", + "balanced", + "justice", + "law", + "legal", + "measure", + "rule", + "scale", + "weight", + "zodiac" + ] + }, + "unicode": "f24e", + "label": "Scale Balanced", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288H584.4L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320H199.3L126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scale-unbalanced": { + "aliases": { + "names": [ + "balance-scale-left" + ], + "unicodes": { + "secondary": [ + "10f515" + ] + } + }, + "changes": [ + "5.0.13", + "5.9.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "justice", + "legal", + "measure", + "unbalanced", + "weight" + ] + }, + "unicode": "f515", + "label": "Scale Unbalanced", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M522.1 62.4c16.8-5.6 25.8-23.7 20.2-40.5S518.6-3.9 501.9 1.6l-113 37.7C375 15.8 349.3 0 320 0c-44.2 0-80 35.8-80 80c0 3 .2 5.9 .5 8.8L117.9 129.6c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l135.5-45.2c4.5 3.2 9.3 5.9 14.4 8.2V480c0 17.7 14.3 32 32 32H512c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V153.3c21-9.2 37.2-27 44.2-49l125.9-42zM439.6 288L512 163.8 584.4 288H439.6zM512 384c62.9 0 115.2-34 126-78.9c2.6-11-1-22.3-6.7-32.1L536.1 109.8c-5-8.6-14.2-13.8-24.1-13.8s-19.1 5.3-24.1 13.8L392.7 273.1c-5.7 9.8-9.3 21.1-6.7 32.1C396.8 350 449.1 384 512 384zM129.2 291.8L201.6 416H56.7l72.4-124.2zM3.2 433.1C14 478 66.3 512 129.2 512s115.2-34 126-78.9c2.6-11-1-22.3-6.7-32.1L153.2 237.8c-5-8.6-14.2-13.8-24.1-13.8s-19.1 5.3-24.1 13.8L9.9 401.1c-5.7 9.8-9.3 21.1-6.7 32.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scale-unbalanced-flip": { + "aliases": { + "names": [ + "balance-scale-right" + ], + "unicodes": { + "secondary": [ + "10f516" + ] + } + }, + "changes": [ + "5.0.13", + "5.9.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "justice", + "legal", + "measure", + "unbalanced", + "weight" + ] + }, + "unicode": "f516", + "label": "Scale Unbalanced Flip", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M117.9 62.4c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l113 37.7C265 15.8 290.7 0 320 0c44.2 0 80 35.8 80 80c0 3-.2 5.9-.5 8.8l122.6 40.9c16.8 5.6 25.8 23.7 20.2 40.5s-23.7 25.8-40.5 20.2L366.4 145.2c-4.5 3.2-9.3 5.9-14.4 8.2V480c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-21-9.2-37.2-27-44.2-49l-125.9-42zM200.4 288L128 163.8 55.6 288H200.4zM128 384C65.1 384 12.8 350 2 305.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C243.2 350 190.9 384 128 384zm382.8-92.2L438.4 416H583.3L510.8 291.8zm126 141.3C626 478 573.7 512 510.8 512s-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "schlix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ea", + "label": "SCHLIX", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "school": { + "aliases": { + "unicodes": { + "composite": [ + "1f3eb" + ], + "secondary": [ + "10f549" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "education", + "learn", + "school", + "student", + "teacher" + ] + }, + "unicode": "f549", + "label": "School", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM256 416c0-35.3 28.7-64 64-64s64 28.7 64 64v96H256V416zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H512c-8.8 0-16-7.2-16-16V208zM96 320h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H512c-8.8 0-16-7.2-16-16V336zM232 176a88 88 0 1 1 176 0 88 88 0 1 1 -176 0zm88-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "not affected", + "ok", + "okay", + "schoolhouse" + ] + }, + "unicode": "e56b", + "label": "School Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-99.3-43.3c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "schoolhouse" + ] + }, + "unicode": "e56c", + "label": "School Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "schoolhouse" + ] + }, + "unicode": "e56d", + "label": "School Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm22.6-144l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L518.6 368z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "educate", + "flag", + "school", + "schoolhouse" + ] + }, + "unicode": "e56e", + "label": "School Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0H400c8.8 0 16 7.2 16 16V80c0 8.8-7.2 16-16 16H320.7l89.6 64H512c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H336V400c0-26.5-21.5-48-48-48s-48 21.5-48 48V512H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64H165.7L256 95.5V32c0-17.7 14.3-32 32-32zm48 240a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM80 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm368 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H464c-8.8 0-16 7.2-16 16zM80 352c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H80zm384 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H464z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "quarantine", + "schoolhouse" + ] + }, + "unicode": "e56f", + "label": "School Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M302.2 5.4c10.7-7.2 24.8-7.2 35.5 0L473.7 96H592c26.5 0 48 21.5 48 48V272c0-61.9-50.1-112-112-112s-112 50.1-112 112v24.6c-19.1 11.1-32 31.7-32 55.4H320.3l-.3 0c-35.3 0-64 28.7-64 64v96h64v0H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48H166.3L302.2 5.4zM80 208v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zm0 128v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zm240-72a88 88 0 1 0 0-176 88 88 0 1 0 0 176zm16-120v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H320c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16s16 7.2 16 16zm192 96c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scissors": { + "aliases": { + "names": [ + "cut" + ], + "unicodes": { + "composite": [ + "2700", + "2702", + "2704" + ], + "secondary": [ + "10f0c4" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Safety Scissors", + "White Scissors", + "clip", + "cutting", + "scissors", + "snip", + "tool" + ] + }, + "unicode": "f0c4", + "label": "Scissors", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 192l-39.5-39.5c4.9-12.6 7.5-26.2 7.5-40.5C224 50.1 173.9 0 112 0S0 50.1 0 112s50.1 112 112 112c14.3 0 27.9-2.7 40.5-7.5L192 256l-39.5 39.5c-12.6-4.9-26.2-7.5-40.5-7.5C50.1 288 0 338.1 0 400s50.1 112 112 112s112-50.1 112-112c0-14.3-2.7-27.9-7.5-40.5L499.2 76.8c7.1-7.1 7.1-18.5 0-25.6c-28.3-28.3-74.1-28.3-102.4 0L256 192zm22.6 150.6L396.8 460.8c28.3 28.3 74.1 28.3 102.4 0c7.1-7.1 7.1-18.5 0-25.6L342.6 278.6l-64 64zM64 112a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm48 240a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "screenpal": { + "changes": [ + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e570", + "label": "Screenpal", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M233.5 22.49C233.5 10.07 243.6 0 256 0C268.4 0 278.5 10.07 278.5 22.49C278.5 34.91 268.4 44.98 256 44.98C243.6 44.98 233.5 34.91 233.5 22.49zM313.4 259C313.4 290.7 287.7 316.4 256 316.4C224.3 316.4 198.6 290.7 198.6 259C198.6 227.3 224.3 201.6 256 201.6C287.7 201.6 313.4 227.3 313.4 259zM337.2 350C359.5 330.1 373.7 302.7 377.1 273H496.6C493.1 334.4 466.2 392.2 421.4 434.4C376.7 476.6 317.5 500.2 256 500.2C194.5 500.2 135.3 476.6 90.56 434.4C45.83 392.2 18.94 334.4 15.39 273H135.1C138.5 302.7 152.7 330.1 175 350C197.3 369.9 226.2 380.9 256.1 380.9C285.1 380.9 314.8 369.9 337.2 350zM73.14 140.3C73.54 152.7 63.81 163.1 51.39 163.5C38.97 163.9 28.59 154.2 28.18 141.8C27.78 129.3 37.52 118.9 49.94 118.5C62.35 118.1 72.74 127.9 73.14 140.3zM438.9 141C438.9 128.6 448.9 118.5 461.4 118.5C473.8 118.5 483.8 128.6 483.8 141C483.8 153.5 473.8 163.5 461.4 163.5C448.9 163.5 438.9 153.5 438.9 141zM317.9 95.27C300.6 109.1 278.7 118.1 256 118.1C233.3 118.1 211.4 109.1 194.1 95.27C176.8 80.55 165.3 60.18 161.7 37.78C176.8 31.37 192.5 26.52 208.6 23.31C208.6 35.88 213.6 47.93 222.5 56.82C231.4 65.7 243.4 70.7 256 70.7C268.6 70.7 280.6 65.7 289.5 56.82C298.4 47.93 303.4 35.88 303.4 23.31C319.5 26.52 335.2 31.37 350.3 37.78C346.7 60.18 335.2 80.55 317.9 95.27H317.9zM82.78 231C61.42 238.6 38.06 238.4 16.86 230.4C18.82 214.1 22.46 198.1 27.71 182.5C33.1 185.6 39.05 187.6 45.22 188.5C51.39 189.3 57.67 188.9 63.68 187.3C69.69 185.6 75.33 182.9 80.27 179.1C85.21 175.3 89.36 170.6 92.47 165.2C95.58 159.8 97.61 153.8 98.42 147.7C99.23 141.5 98.83 135.2 97.22 129.2C95.61 123.2 92.83 117.6 89.04 112.6C85.25 107.7 80.53 103.5 75.14 100.4C85.96 88.11 98.01 76.94 111.1 67.07C128.7 81.42 140.6 101.6 144.7 123.9C148.8 146.2 144.8 169.3 133.5 188.9C122.1 208.5 104.1 223.4 82.78 231V231zM429.2 231.1C407.9 223.5 389.9 208.5 378.5 188.9C367.2 169.3 363.3 146.2 367.4 123.9C371.5 101.7 383.4 81.54 400.9 67.19C414 77.04 426.1 88.21 436.9 100.5C426.2 106.9 418.5 117.2 415.4 129.3C412.2 141.3 413.1 154.1 420.2 164.9C426.4 175.7 436.6 183.6 448.6 186.9C460.6 190.2 473.5 188.6 484.3 182.6C489.6 198.1 493.2 214.2 495.2 230.4C473.1 238.5 450.6 238.7 429.2 231.1L429.2 231.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "screwdriver": { + "aliases": { + "unicodes": { + "composite": [ + "1fa9b" + ], + "secondary": [ + "10f54a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "mechanic", + "repair", + "screw", + "screwdriver", + "settings", + "tool" + ] + }, + "unicode": "f54a", + "label": "Screwdriver", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M465 7c-8.5-8.5-22-9.4-31.6-2.1l-104 80c-5.9 4.5-9.4 11.6-9.4 19v54.1l-85.6 85.6c6.7 4.2 13 9.3 18.8 15.1s10.9 12.2 15.1 18.8L353.9 192H408c7.5 0 14.5-3.5 19-9.4l80-104c7.4-9.6 6.5-23.1-2.1-31.6L465 7zM121.4 281.4l-112 112c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l112-112c30.2-30.2 30.2-79.1 0-109.3s-79.1-30.2-109.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "screwdriver-wrench": { + "aliases": { + "names": [ + "tools" + ], + "unicodes": { + "secondary": [ + "10f7d9" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "repair", + "screwdriver", + "settings", + "tools", + "wrench" + ] + }, + "unicode": "f7d9", + "label": "Screwdriver Wrench", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4h54.1l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109V104c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7H352c-8.8 0-16-7.2-16-16V102.6c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scribd": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f28a", + "label": "Scribd", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "scroll": { + "aliases": { + "unicodes": { + "composite": [ + "1f4dc" + ], + "secondary": [ + "10f70e" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "announcement", + "d&d", + "dnd", + "fantasy", + "paper", + "script", + "scroll" + ] + }, + "unicode": "f70e", + "label": "Scroll", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 80v48c0 17.7 14.3 32 32 32H48 96V80c0-26.5-21.5-48-48-48S0 53.5 0 80zM112 32c10 13.4 16 30 16 48V384c0 35.3 28.7 64 64 64s64-28.7 64-64v-5.3c0-32.4 26.3-58.7 58.7-58.7H480V128c0-53-43-96-96-96H112zM464 480c61.9 0 112-50.1 112-112c0-8.8-7.2-16-16-16H314.7c-14.7 0-26.7 11.9-26.7 26.7V384c0 53-43 96-96 96H368h96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scroll-torah": { + "aliases": { + "names": [ + "torah" + ], + "unicodes": { + "secondary": [ + "10f6a0" + ] + } + }, + "changes": [ + "5.3.0", + "5.7.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "jewish", + "judaism", + "religion", + "scroll" + ] + }, + "unicode": "f6a0", + "label": "Scroll Torah", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767393, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 480V32C96 14.3 74.5 0 48 0S0 14.3 0 32V480c0 17.7 21.5 32 48 32s48-14.3 48-32zM512 32H128V480H512V32zM592 0c-26.5 0-48 14.3-48 32V480c0 17.7 21.5 32 48 32s48-14.3 48-32V32c0-17.7-21.5-32-48-32zM196 313.7c0-3.2 .9-6.4 2.5-9.2L226.7 256l-28.3-48.5c-1.6-2.8-2.5-6-2.5-9.2c0-10.1 8.2-18.3 18.3-18.3H271l31.4-53.9c3.6-6.3 10.3-10.1 17.6-10.1s13.9 3.8 17.6 10.1L369 180h56.7c10.1 0 18.3 8.2 18.3 18.3c0 3.2-.9 6.4-2.5 9.2L413.3 256l28.3 48.5c1.6 2.8 2.5 6 2.5 9.2c0 10.1-8.2 18.3-18.3 18.3H369l-31.4 53.9c-3.6 6.3-10.3 10.1-17.6 10.1s-13.9-3.8-17.6-10.1L271 332H214.3c-10.1 0-18.3-8.2-18.3-18.3zm124 54.7L341.2 332H298.8L320 368.4zM254.5 256l30.3 52h70.4l30.3-52-30.3-52H284.8l-30.3 52zm144.9 23.8L383 308h32.8l-16.4-28.2zM415.8 204H383l16.4 28.2L415.8 204zM320 143.6L298.8 180h42.4L320 143.6zM224.2 204l16.4 28.2L257 204H224.2zM257 308l-16.4-28.2L224.2 308H257z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sd-card": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7c2" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "memory", + "photo", + "save" + ] + }, + "unicode": "f7c2", + "label": "Sd Card", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767341, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 0H141.3C124.3 0 108 6.7 96 18.7L18.7 96C6.7 108 0 124.3 0 141.3V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zM160 88v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24zm80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24zm80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "searchengin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3eb", + "label": "Searchengin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "section": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Section Sign", + "law", + "legal", + "silcrow" + ] + }, + "unicode": "e447", + "label": "Section", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M64.9 96C67.1 84.4 73.7 76.2 86 70.6c13.8-6.2 34.8-8.9 61.2-4.5c8.8 1.4 36.1 7.1 44.1 9.3c17 4.8 34.7-5.1 39.5-22.2s-5.1-34.7-22.2-39.5c-11.1-3.1-41-9.2-50.9-10.8C123-2.7 88.3-.6 59.7 12.3C29.9 25.8 7.5 50.9 1.6 86.5c-.1 .5-.2 1.1-.2 1.6c-2.2 19.7 .3 37.9 8.1 54.1c7.7 16.1 19.4 28 32 36.9c.6 .5 1.3 .9 2 1.4C22.3 194.2 6.5 215.1 1.7 243c-.1 .6-.2 1.1-.2 1.7c-2.3 19.3 .4 37.1 8.4 53c7.9 15.6 19.8 27 32.3 35.5c22.4 15.2 51.9 24 75.4 31l0 0 3.7 1.1c27.2 8.2 46.9 14.6 59.4 23.8c5.5 4 8.2 7.6 9.5 10.9c1.3 3.2 2.6 8.6 .9 18.1c-1.7 10.1-7.7 18-20.7 23.5c-14 6-35.4 8.5-62 4.4c-12.8-2.1-35.1-9.7-54.1-16.2l0 0c-4.3-1.5-8.5-2.9-12.3-4.2C25.3 420 7.2 429.1 1.6 445.8s3.5 34.9 20.3 40.5c2.6 .8 5.7 1.9 9.2 3.1c18.6 6.3 48.5 16.6 67.3 19.6l0 0 .2 0c34.5 5.4 68.8 3.4 97.2-8.7c29.4-12.6 52.5-36.5 58.5-71.5c3.3-19.3 1.9-37.4-5-53.9c-6.3-15-16.4-26.4-27.6-35.2c16.5-13.9 28.5-33.2 32.6-58.2c3.2-19.8 1.9-38.3-4.8-55.1c-6.7-16.8-17.8-29.4-30.2-39c-22.8-17.6-53.6-27.4-77.7-35l-1.4-.5c-27.4-8.7-47.8-15.3-61.5-25c-6.1-4.4-9.5-8.5-11.4-12.4c-1.8-3.7-3.2-9.3-2.3-18.5zm76.7 208.5c-.2-.1-.4-.1-.6-.2l-1.4-.4c-27.4-8.2-47.9-14.5-61.7-23.8c-6.2-4.2-9.3-7.9-11-11.3c-1.5-3-2.9-7.7-2.1-15.7c1.9-9.7 7.9-17.3 20.5-22.7c14-6 35.4-8.5 62.1-4.3l16.4 2.6c6.3 2.9 11.7 6 16.2 9.5c5.5 4.2 8.4 8.2 10 12.2c1.6 4 2.8 10.4 1.1 20.9c-2.4 14.7-12.8 26.4-37.1 31l-12.4 2.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "seedling": { + "aliases": { + "names": [ + "sprout" + ], + "unicodes": { + "composite": [ + "1f331" + ], + "secondary": [ + "10f4d8" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "environment", + "flora", + "grow", + "plant", + "sapling", + "seedling", + "vegan", + "young" + ] + }, + "unicode": "f4d8", + "label": "Seedling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768130, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 32c0 113.6-84.6 207.5-194.2 222c-7.1-53.4-30.6-101.6-65.3-139.3C290.8 46.3 364 0 448 0h32c17.7 0 32 14.3 32 32zM0 96C0 78.3 14.3 64 32 64H64c123.7 0 224 100.3 224 224v32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V320C100.3 320 0 219.7 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sellcast": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eercast" + ] + }, + "unicode": "f2da", + "label": "Sellcast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sellsy": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f213", + "label": "Sellsy", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "server": { + "aliases": { + "unicodes": { + "secondary": [ + "10f233" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "database", + "hardware", + "network" + ] + }, + "unicode": "f233", + "label": "Server", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V352c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "servicestack": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ec", + "label": "Servicestack", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shapes": { + "aliases": { + "names": [ + "triangle-circle-square" + ], + "unicodes": { + "secondary": [ + "10f61f" + ] + } + }, + "changes": [ + "5.2.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "build", + "circle", + "square", + "triangle" + ] + }, + "unicode": "f61f", + "label": "Shapes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M315.4 15.5C309.7 5.9 299.2 0 288 0s-21.7 5.9-27.4 15.5l-96 160c-5.9 9.9-6.1 22.2-.4 32.2s16.3 16.2 27.8 16.2H384c11.5 0 22.2-6.2 27.8-16.2s5.5-22.3-.4-32.2l-96-160zM288 312V456c0 22.1 17.9 40 40 40H472c22.1 0 40-17.9 40-40V312c0-22.1-17.9-40-40-40H328c-22.1 0-40 17.9-40 40zM128 512a128 128 0 1 0 0-256 128 128 0 1 0 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "share": { + "aliases": { + "names": [ + "arrow-turn-right", + "mail-forward" + ], + "unicodes": { + "secondary": [ + "10f064" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f064", + "label": "Share", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M307 34.8c-11.5 5.1-19 16.6-19 29.2v64H176C78.8 128 0 206.8 0 304C0 417.3 81.5 467.9 100.2 478.1c2.5 1.4 5.3 1.9 8.1 1.9c10.9 0 19.7-8.9 19.7-19.7c0-7.5-4.3-14.4-9.8-19.5C108.8 431.9 96 414.4 96 384c0-53 43-96 96-96h96v64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144c-9.4-8.5-22.9-10.6-34.4-5.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "share-from-square": { + "aliases": { + "names": [ + "share-square" + ], + "unicodes": { + "composite": [ + "f045" + ], + "secondary": [ + "10f14d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f14d", + "label": "Share From Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M352 224H305.5c-45 0-81.5 36.5-81.5 81.5c0 22.3 10.3 34.3 19.2 40.5c6.8 4.7 12.8 12 12.8 20.3c0 9.8-8 17.8-17.8 17.8h-2.5c-2.4 0-4.8-.4-7.1-1.4C210.8 374.8 128 333.4 128 240c0-79.5 64.5-144 144-144h80V34.7C352 15.5 367.5 0 386.7 0c8.6 0 16.8 3.2 23.2 8.9L548.1 133.3c7.6 6.8 11.9 16.5 11.9 26.7s-4.3 19.9-11.9 26.7l-139 125.1c-5.9 5.3-13.5 8.2-21.4 8.2H384c-17.7 0-32-14.3-32-32V224zM80 96c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16H400c8.8 0 16-7.2 16-16V384c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V112C0 67.8 35.8 32 80 32h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H80z" + }, + "regular": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 255.4V240 208c0-8.8-7.2-16-16-16H352 336 289.5c-50.9 0-93.9 33.5-108.3 79.6c-3.3-9.4-5.2-19.8-5.2-31.6c0-61.9 50.1-112 112-112h48 16 32c8.8 0 16-7.2 16-16V80 64.6L506 160 400 255.4zM336 240h16v48c0 17.7 14.3 32 32 32h3.7c7.9 0 15.5-2.9 21.4-8.2l139-125.1c7.6-6.8 11.9-16.5 11.9-26.7s-4.3-19.9-11.9-26.7L409.9 8.9C403.5 3.2 395.3 0 386.7 0C367.5 0 352 15.5 352 34.7V80H336 304 288c-88.4 0-160 71.6-160 160c0 60.4 34.6 99.1 63.9 120.9c5.9 4.4 11.5 8.1 16.7 11.2c4.4 2.7 8.5 4.9 11.9 6.6c3.4 1.7 6.2 3 8.2 3.9c2.2 1 4.6 1.4 7.1 1.4h2.5c9.8 0 17.8-8 17.8-17.8c0-7.8-5.3-14.7-11.6-19.5l0 0c-.4-.3-.7-.5-1.1-.8c-1.7-1.1-3.4-2.5-5-4.1c-.8-.8-1.7-1.6-2.5-2.6s-1.6-1.9-2.4-2.9c-1.8-2.5-3.5-5.3-5-8.5c-2.6-6-4.3-13.3-4.3-22.4c0-36.1 29.3-65.5 65.5-65.5H304h32zM72 32C32.2 32 0 64.2 0 104V440c0 39.8 32.2 72 72 72H408c39.8 0 72-32.2 72-72V376c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24V104c0-13.3 10.7-24 24-24h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "share-nodes": { + "aliases": { + "names": [ + "share-alt" + ], + "unicodes": { + "secondary": [ + "10f1e0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f1e0", + "label": "Share Nodes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sheet-plastic": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "plastic", + "plastic wrap", + "protect", + "tarp", + "tarpaulin", + "waterproof" + ] + }, + "unicode": "e571", + "label": "Sheet Plastic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 448c0 35.3 28.7 64 64 64H224V384c0-17.7 14.3-32 32-32H384V64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V448zM171.3 75.3l-96 96c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l96-96c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zm96 32l-160 160c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l160-160c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zM384 384H256V512L384 384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shekel-sign": { + "aliases": { + "names": [ + "ils", + "shekel", + "sheqel", + "sheqel-sign" + ], + "unicodes": { + "composite": [ + "20aa" + ], + "secondary": [ + "10f20b" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "New Sheqel Sign", + "currency", + "ils", + "money" + ] + }, + "unicode": "f20b", + "label": "Shekel Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V96H192c35.3 0 64 28.7 64 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-70.7-57.3-128-128-128H32zM320 480c70.7 0 128-57.3 128-128V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352c0 35.3-28.7 64-64 64H192V192c0-17.7-14.3-32-32-32s-32 14.3-32 32V448c0 17.7 14.3 32 32 32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield": { + "aliases": { + "names": [ + "shield-blank" + ], + "unicodes": { + "composite": [ + "1f6e1" + ], + "secondary": [ + "10f132" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "armor", + "award", + "block", + "cleric", + "defend", + "defense", + "holy", + "paladin", + "protect", + "safety", + "security", + "shield", + "weapon", + "winner" + ] + }, + "unicode": "f132", + "label": "Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.6 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-cat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "feline", + "pet", + "protect", + "safety", + "veterinary" + ] + }, + "unicode": "e572", + "label": "Shield Cat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2L269.4 2.9zM160 154.4c0-5.8 4.7-10.4 10.4-10.4h.2c3.4 0 6.5 1.6 8.5 4.3l40 53.3c3 4 7.8 6.4 12.8 6.4h48c5 0 9.8-2.4 12.8-6.4l40-53.3c2-2.7 5.2-4.3 8.5-4.3h.2c5.8 0 10.4 4.7 10.4 10.4V272c0 53-43 96-96 96s-96-43-96-96V154.4zM216 288a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm96-16a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-dog": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "canine", + "pet", + "protect", + "safety", + "veterinary" + ] + }, + "unicode": "e573", + "label": "Shield Dog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2L269.4 2.9zM160.9 286.2c4.8 1.2 9.9 1.8 15.1 1.8c35.3 0 64-28.7 64-64V160h44.2c12.1 0 23.2 6.8 28.6 17.7L320 192h64c8.8 0 16 7.2 16 16v32c0 44.2-35.8 80-80 80H272v50.7c0 7.3-5.9 13.3-13.3 13.3c-1.8 0-3.6-.4-5.2-1.1l-98.7-42.3c-6.6-2.8-10.8-9.3-10.8-16.4c0-2.8 .6-5.5 1.9-8l15-30zM160 160h40 8v32 32c0 17.7-14.3 32-32 32s-32-14.3-32-32V176c0-8.8 7.2-16 16-16zm128 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-halved": { + "aliases": { + "names": [ + "shield-alt" + ], + "unicodes": { + "secondary": [ + "10f3ed" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "armor", + "award", + "block", + "cleric", + "defend", + "defense", + "holy", + "paladin", + "security", + "shield", + "weapon", + "winner" + ] + }, + "unicode": "f3ed", + "label": "Shield Halved", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c4.6 0 9.2 1 13.4 2.9L457.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.6 363.2c-16.7 8-36.1 8-52.8 0C57.3 420.7 16.5 239.2 16 140c-.1-26.2 16.3-47.9 38.3-57.2L242.7 2.9C246.8 1 251.4 0 256 0zm0 66.8V444.8C394 378 431.1 230.1 432 141.4L256 66.8l0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-heart": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "love", + "protect", + "safe", + "safety", + "shield" + ] + }, + "unicode": "e574", + "label": "Shield Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2L269.4 2.9zM144 221.3c0-33.8 27.4-61.3 61.3-61.3c16.2 0 31.8 6.5 43.3 17.9l7.4 7.4 7.4-7.4c11.5-11.5 27.1-17.9 43.3-17.9c33.8 0 61.3 27.4 61.3 61.3c0 16.2-6.5 31.8-17.9 43.3l-82.7 82.7c-6.2 6.2-16.4 6.2-22.6 0l-82.7-82.7c-11.5-11.5-17.9-27.1-17.9-43.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06c" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibodies", + "barrier", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "protect", + "safety", + "vaccine" + ] + }, + "unicode": "e06c", + "label": "Shield Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M269.4 2.9C265.2 1 260.7 0 256 0s-9.2 1-13.4 2.9L54.3 82.8c-22 9.3-38.4 31-38.3 57.2c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C454.7 420.7 495.5 239.2 496 140c.1-26.2-16.3-47.9-38.3-57.2L269.4 2.9zM256 112c8.8 0 16 7.2 16 16c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C334.5 200.1 351 240 384 240c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C311.9 334.5 272 351 272 384c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C177.5 311.9 161 272 128 272c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C200.1 177.5 240 161 240 128c0-8.8 7.2-16 16-16zM232 256a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm72 32a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ship": { + "aliases": { + "unicodes": { + "composite": [ + "1f6a2" + ], + "secondary": [ + "10f21a" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boat", + "passenger", + "sea", + "ship", + "water" + ] + }, + "unicode": "f21a", + "label": "Ship", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 32c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32V64h48c26.5 0 48 21.5 48 48V240l44.4 14.8c23.1 7.7 29.5 37.5 11.5 53.9l-101 92.6c-16.2 9.4-34.7 15.1-50.9 15.1c-19.6 0-40.8-7.7-59.2-20.3c-22.1-15.5-51.6-15.5-73.7 0c-17.1 11.8-38 20.3-59.2 20.3c-16.2 0-34.7-5.7-50.9-15.1l-101-92.6c-18-16.5-11.6-46.2 11.5-53.9L96 240V112c0-26.5 21.5-48 48-48h48V32zM160 218.7l107.8-35.9c13.1-4.4 27.3-4.4 40.5 0L416 218.7V128H160v90.7zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shirt": { + "aliases": { + "names": [ + "t-shirt", + "tshirt" + ], + "unicodes": { + "composite": [ + "1f455" + ], + "secondary": [ + "10f553" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "fashion", + "garment", + "shirt", + "short sleeve", + "t-shirt", + "tshirt" + ] + }, + "unicode": "f553", + "label": "Shirt", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M211.8 0c7.8 0 14.3 5.7 16.7 13.2C240.8 51.9 277.1 80 320 80s79.2-28.1 91.5-66.8C413.9 5.7 420.4 0 428.2 0h12.6c22.5 0 44.2 7.9 61.5 22.3L628.5 127.4c6.6 5.5 10.7 13.5 11.4 22.1s-2.1 17.1-7.8 23.6l-56 64c-11.4 13.1-31.2 14.6-44.6 3.5L480 197.7V448c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64V197.7l-51.5 42.9c-13.3 11.1-33.1 9.6-44.6-3.5l-56-64c-5.7-6.5-8.5-15-7.8-23.6s4.8-16.6 11.4-22.1L137.7 22.3C155 7.9 176.7 0 199.2 0h12.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shirtsinbulk": { + "changes": [ + "4.3.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f214", + "label": "Shirts in Bulk", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100 410.3l30.6 13.4 4.4-9.9-30.6-13.4zm39.4 17.5l30.6 13.4 4.4-9.9-30.6-13.4zm172.1-14l4.4 9.9 30.6-13.4-4.4-9.9zM179.1 445l30.3 13.7 4.4-9.9-30.3-13.4zM60.4 392.8L91 406.2l4.4-9.6-30.6-13.7zm211.4 38.5l4.4 9.9 30.6-13.4-4.4-9.9zm-39.3 17.5l4.4 9.9 30.6-13.7-4.4-9.6zm118.4-52.2l4.4 9.6 30.6-13.4-4.4-9.9zM170 46.6h-33.5v10.5H170zm-47.2 0H89.2v10.5h33.5zm-47.3 0H42.3v10.5h33.3zm141.5 0h-33.2v10.5H217zm94.5 0H278v10.5h33.5zm47.3 0h-33.5v10.5h33.5zm-94.6 0H231v10.5h33.2zm141.5 0h-33.3v10.5h33.3zM52.8 351.1H42v33.5h10.8zm70-215.9H89.2v10.5h33.5zm-70 10.6h22.8v-10.5H42v33.5h10.8zm168.9 228.6c50.5 0 91.3-40.8 91.3-91.3 0-50.2-40.8-91.3-91.3-91.3-50.2 0-91.3 41.1-91.3 91.3 0 50.5 41.1 91.3 91.3 91.3zm-48.2-111.1c0-25.4 29.5-31.8 49.6-31.8 16.9 0 29.2 5.8 44.3 12l-8.8 16.9h-.9c-6.4-9.9-24.8-13.1-35.6-13.1-9 0-29.8 1.8-29.8 14.9 0 21.6 78.5-10.2 78.5 37.9 0 25.4-31.5 31.2-51 31.2-18.1 0-32.4-2.9-47.2-12.2l9-18.4h.9c6.1 12.2 23.6 14.9 35.9 14.9 8.7 0 32.7-1.2 32.7-14.3 0-26.1-77.6 6.3-77.6-38zM52.8 178.4H42V212h10.8zm342.4 206.2H406v-33.5h-10.8zM52.8 307.9H42v33.5h10.8zM0 3.7v406l221.7 98.6L448 409.7V3.7zm418.8 387.1L222 476.5 29.2 390.8V120.7h389.7v270.1zm0-299.3H29.2V32.9h389.7v58.6zm-366 130.1H42v33.5h10.8zm0 43.2H42v33.5h10.8zM170 135.2h-33.5v10.5H170zm225.2 163.1H406v-33.5h-10.8zm0-43.2H406v-33.5h-10.8zM217 135.2h-33.2v10.5H217zM395.2 212H406v-33.5h-10.8zm0 129.5H406V308h-10.8zm-131-206.3H231v10.5h33.2zm47.3 0H278v10.5h33.5zm83.7 33.6H406v-33.5h-33.5v10.5h22.8zm-36.4-33.6h-33.5v10.5h33.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shoe-prints": { + "aliases": { + "unicodes": { + "secondary": [ + "10f54b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "feet", + "footprints", + "steps", + "walk" + ] + }, + "unicode": "f54b", + "label": "Shoe Prints", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M416 0C352.3 0 256 32 256 32V160c48 0 76 16 104 32s56 32 104 32c56.4 0 176-16 176-96S512 0 416 0zM128 96c0 35.3 28.7 64 64 64h32V32H192c-35.3 0-64 28.7-64 64zM288 512c96 0 224-48 224-128s-119.6-96-176-96c-48 0-76 16-104 32s-56 32-104 32V480s96.3 32 160 32zM0 416c0 35.3 28.7 64 64 64H96V352H64c-35.3 0-64 28.7-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shop": { + "aliases": { + "names": [ + "store-alt" + ], + "unicodes": { + "secondary": [ + "10f54f" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "market", + "purchase", + "shopping", + "store" + ] + }, + "unicode": "f54f", + "label": "Shop", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M36.8 192H603.2c20.3 0 36.8-16.5 36.8-36.8c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM64 224V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V384 224H320V384H128V224H64zm448 0V480c0 17.7 14.3 32 32 32s32-14.3 32-32V224H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shop-lock": { + "changes": [ + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "closed", + "lock", + "lockdown", + "market", + "purchase", + "quarantine", + "shop", + "shopping", + "store" + ] + }, + "unicode": "e4a5", + "label": "Shop Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M36.8 192H449.6c20.2-19.8 47.9-32 78.4-32c30.5 0 58.1 12.2 78.3 31.9c18.9-1.6 33.7-17.4 33.7-36.7c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM384 224H320V384H128V224H64V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V384 352 224zm144 16c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shop-slash": { + "aliases": { + "names": [ + "store-alt-slash" + ], + "unicodes": { + "secondary": [ + "10e070" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "closed", + "covid-19", + "purchase", + "shopping" + ] + }, + "unicode": "e070", + "label": "Shop Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-54.8-43V224H512V376L384 275.7V224H320v1.5L277.2 192H603.2c20.3 0 36.8-16.5 36.8-36.8c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L74.1 32.8 38.8 5.1zM36.8 192h85L21 112.5 6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM320 384H128V224H64V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V398.5l-64-50.4V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shopify": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e057", + "label": "Shopify", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M388.32,104.1a4.66,4.66,0,0,0-4.4-4c-2,0-37.23-.8-37.23-.8s-21.61-20.82-29.62-28.83V503.2L442.76,472S388.72,106.5,388.32,104.1ZM288.65,70.47a116.67,116.67,0,0,0-7.21-17.61C271,32.85,255.42,22,237,22a15,15,0,0,0-4,.4c-.4-.8-1.2-1.2-1.6-2C223.4,11.63,213,7.63,200.58,8c-24,.8-48,18-67.25,48.83-13.61,21.62-24,48.84-26.82,70.06-27.62,8.4-46.83,14.41-47.23,14.81-14,4.4-14.41,4.8-16,18-1.2,10-38,291.82-38,291.82L307.86,504V65.67a41.66,41.66,0,0,0-4.4.4S297.86,67.67,288.65,70.47ZM233.41,87.69c-16,4.8-33.63,10.4-50.84,15.61,4.8-18.82,14.41-37.63,25.62-50,4.4-4.4,10.41-9.61,17.21-12.81C232.21,54.86,233.81,74.48,233.41,87.69ZM200.58,24.44A27.49,27.49,0,0,1,215,28c-6.4,3.2-12.81,8.41-18.81,14.41-15.21,16.42-26.82,42-31.62,66.45-14.42,4.41-28.83,8.81-42,12.81C131.33,83.28,163.75,25.24,200.58,24.44ZM154.15,244.61c1.6,25.61,69.25,31.22,73.25,91.66,2.8,47.64-25.22,80.06-65.65,82.47-48.83,3.2-75.65-25.62-75.65-25.62l10.4-44s26.82,20.42,48.44,18.82c14-.8,19.22-12.41,18.81-20.42-2-33.62-57.24-31.62-60.84-86.86-3.2-46.44,27.22-93.27,94.47-97.68,26-1.6,39.23,4.81,39.23,4.81L221.4,225.39s-17.21-8-37.63-6.4C154.15,221,153.75,239.8,154.15,244.61ZM249.42,82.88c0-12-1.6-29.22-7.21-43.63,18.42,3.6,27.22,24,31.23,36.43Q262.63,78.68,249.42,82.88Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shopware": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5b5", + "label": "Shopware", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M403.5 455.41A246.17 246.17 0 0 1 256 504C118.81 504 8 393 8 256 8 118.81 119 8 256 8a247.39 247.39 0 0 1 165.7 63.5 3.57 3.57 0 0 1-2.86 6.18A418.62 418.62 0 0 0 362.13 74c-129.36 0-222.4 53.47-222.4 155.35 0 109 92.13 145.88 176.83 178.73 33.64 13 65.4 25.36 87 41.59a3.58 3.58 0 0 1 0 5.72zM503 233.09a3.64 3.64 0 0 0-1.27-2.44c-51.76-43-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93a3.57 3.57 0 0 0 5-1.82A249 249 0 0 0 503 233.09z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shower": { + "aliases": { + "unicodes": { + "composite": [ + "1f6bf" + ], + "secondary": [ + "10f2cc" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bath", + "clean", + "faucet", + "shower", + "water" + ] + }, + "unicode": "f2cc", + "label": "Shower", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 131.9C64 112.1 80.1 96 99.9 96c9.5 0 18.6 3.8 25.4 10.5l16.2 16.2c-21 38.9-17.4 87.5 10.9 123L151 247c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L345 121c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-1.3 1.3c-35.5-28.3-84.2-31.9-123-10.9L170.5 61.3C151.8 42.5 126.4 32 99.9 32C44.7 32 0 76.7 0 131.9V448c0 17.7 14.3 32 32 32s32-14.3 32-32V131.9zM256 352a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm32-32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shrimp": { + "aliases": { + "unicodes": { + "composite": [ + "1f990" + ] + } + }, + "changes": [ + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "crustacean", + "prawn", + "seafood", + "shellfish", + "shrimp", + "tail" + ] + }, + "unicode": "e448", + "label": "Shrimp", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96s28.7 64 64 64h1c3.7 88.9 77 160 167 160h56V128H264 88.8 64c-17.7 0-32-14.3-32-32s14.3-32 32-32H464c8.8 0 16-7.2 16-16s-7.2-16-16-16H64zM224 456c0 13.3 10.7 24 24 24h72V407.8l-64.1-22.4c-12.5-4.4-26.2 2.2-30.6 14.7s2.2 26.2 14.7 30.6l4.5 1.6C233 433.9 224 443.9 224 456zm128 23.3c36.4-3.3 69.5-17.6 96.1-39.6l-86.5-34.6c-3 1.8-6.2 3.2-9.6 4.3v69.9zM472.6 415c24.6-30.3 39.4-68.9 39.4-111c0-12.3-1.3-24.3-3.7-35.9L382.8 355.1c.8 3.4 1.2 7 1.2 10.6c0 4.6-.7 9-1.9 13.1L472.6 415zM336 128H320V320h18.3c9.9 0 19.1 3.2 26.6 8.5l133.5-92.4C471.8 172.6 409.1 128 336 128zM168 192a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shuffle": { + "aliases": { + "names": [ + "random" + ], + "unicodes": { + "composite": [ + "1f500" + ], + "secondary": [ + "10f074" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "crossed", + "shuffle", + "shuffle tracks button", + "sort", + "swap", + "switch", + "transfer" + ] + }, + "unicode": "f074", + "label": "Shuffle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M403.8 34.4c12-5 25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160H352c-10.1 0-19.6 4.7-25.6 12.8L284 229.3 244 176l31.2-41.6C293.3 110.2 321.8 96 352 96h32V64c0-12.9 7.8-24.6 19.8-29.6zM164 282.7L204 336l-31.2 41.6C154.7 401.8 126.2 416 96 416H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c10.1 0 19.6-4.7 25.6-12.8L164 282.7zm274.6 188c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V416H352c-30.2 0-58.7-14.2-76.8-38.4L121.6 172.8c-6-8.1-15.5-12.8-25.6-12.8H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c30.2 0 58.7 14.2 76.8 38.4L326.4 339.2c6 8.1 15.5 12.8 25.6 12.8h32V320c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shuttle-space": { + "aliases": { + "names": [ + "space-shuttle" + ], + "unicodes": { + "secondary": [ + "10f197" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "astronaut", + "machine", + "nasa", + "rocket", + "space", + "transportation" + ] + }, + "unicode": "f197", + "label": "Shuttle Space", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M130 480c40.6 0 80.4-11 115.2-31.9L352 384l-224 0 0 96h2zM352 128L245.2 63.9C210.4 43 170.6 32 130 32h-2v96l224 0zM96 128l0-96H80C53.5 32 32 53.5 32 80v48h8c-22.1 0-40 17.9-40 40v16V328v16c0 22.1 17.9 40 40 40H32v48c0 26.5 21.5 48 48 48H96l0-96h8c26.2 0 49.4-12.6 64-32H456c69.3 0 135-22.7 179.2-81.6c6.4-8.5 6.4-20.3 0-28.8C591 182.7 525.3 160 456 160H168c-14.6-19.4-37.8-32-64-32l-8 0zM512 243.6v24.9c0 19.6-15.9 35.6-35.6 35.6c-2.5 0-4.4-2-4.4-4.4V212.4c0-2.5 2-4.4 4.4-4.4c19.6 0 35.6 15.9 35.6 35.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sign-hanging": { + "aliases": { + "names": [ + "sign" + ], + "unicodes": { + "secondary": [ + "10f4d9" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "real estate", + "signage", + "wayfinding" + ] + }, + "unicode": "f4d9", + "label": "Sign Hanging", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 0c17.7 0 32 14.3 32 32V64l352 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-352 0V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V128H32C14.3 128 0 113.7 0 96S14.3 64 32 64H64V32C64 14.3 78.3 0 96 0zm96 160H448c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "signal": { + "aliases": { + "names": [ + "signal-5", + "signal-perfect" + ], + "unicodes": { + "composite": [ + "1f4f6" + ], + "secondary": [ + "10f012" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antenna", + "antenna bars", + "bar", + "bars", + "cell", + "graph", + "mobile", + "online", + "phone", + "reception", + "status" + ] + }, + "unicode": "f012", + "label": "Signal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M576 0c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM448 96c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V128c0-17.7 14.3-32 32-32zM352 224V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32zM192 288c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32zM96 416v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V416c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "signature": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5b7" + ] + } + }, + "changes": [ + "5.1.0", + "5.6.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "cursive", + "name", + "writing" + ] + }, + "unicode": "f5b7", + "label": "Signature", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 128c0-17.7 14.3-32 32-32s32 14.3 32 32v7.8c0 27.7-2.4 55.3-7.1 82.5l-84.4 25.3c-40.6 12.2-68.4 49.6-68.4 92v71.9c0 40 32.5 72.5 72.5 72.5c26 0 50-13.9 62.9-36.5l13.9-24.3c26.8-47 46.5-97.7 58.4-150.5l94.4-28.3-12.5 37.5c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l18-53.9c3.8-11.3 .9-23.8-7.4-32.4s-20.7-11.8-32.2-8.4L316.4 198.1c2.4-20.7 3.6-41.4 3.6-62.3V128c0-53-43-96-96-96s-96 43-96 96v32c0 17.7 14.3 32 32 32s32-14.3 32-32V128zm-9.2 177l49-14.7c-10.4 33.8-24.5 66.4-42.1 97.2l-13.9 24.3c-1.5 2.6-4.3 4.3-7.4 4.3c-4.7 0-8.5-3.8-8.5-8.5V335.6c0-14.1 9.3-26.6 22.8-30.7zM24 368c-13.3 0-24 10.7-24 24s10.7 24 24 24H64.3c-.2-2.8-.3-5.6-.3-8.5V368H24zm592 48c13.3 0 24-10.7 24-24s-10.7-24-24-24H305.9c-6.7 16.3-14.2 32.3-22.3 48H616z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "signs-post": { + "aliases": { + "names": [ + "map-signs" + ], + "unicodes": { + "secondary": [ + "10f277" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "directory", + "map", + "signage", + "wayfinding" + ] + }, + "unicode": "f277", + "label": "Signs Post", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 32H64C46.3 32 32 46.3 32 64v64c0 17.7 14.3 32 32 32H441.4c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7H288c0-17.7-14.3-32-32-32s-32 14.3-32 32zM480 256c0-17.7-14.3-32-32-32H288V192H224v32H70.6c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7H448c17.7 0 32-14.3 32-32V256zM288 480V384H224v96c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sim-card": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7c4" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hard drive", + "hardware", + "portable", + "storage", + "technology", + "tiny" + ] + }, + "unicode": "f7c4", + "label": "Sim Card", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767341, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0H242.7c17 0 33.3 6.7 45.3 18.7L365.3 96c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0zM96 192c-17.7 0-32 14.3-32 32v32h64V192H96zM64 352h80 96 80V288H240 144 64v64zM320 224c0-17.7-14.3-32-32-32H256v64h64V224zM160 192v64h64V192H160zM288 448c17.7 0 32-14.3 32-32V384H256v64h32zM160 384v64h64V384H160zM64 416c0 17.7 14.3 32 32 32h32V384H64v32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "simplybuilt": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f215", + "label": "SimplyBuilt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sink": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06d" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "faucet", + "kitchen", + "wash" + ] + }, + "unicode": "e06d", + "label": "Sink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 96c0-17.7 14.3-32 32-32s32 14.3 32 32s14.3 32 32 32s32-14.3 32-32c0-53-43-96-96-96s-96 43-96 96V288H160V264c0-30.9-25.1-56-56-56H56c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c4.4 0 8 3.6 8 8v24H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H256 480c17.7 0 32-14.3 32-32s-14.3-32-32-32H400V264c0-4.4 3.6-8 8-8h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H408c-30.9 0-56 25.1-56 56v24H288V96zM480 416V384H32v32c0 53 43 96 96 96H384c53 0 96-43 96-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sistrix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ee", + "label": "SISTRIX", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sitemap": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0e8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directory", + "hierarchy", + "ia", + "information architecture", + "organization" + ] + }, + "unicode": "f0e8", + "label": "Sitemap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M208 80c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-8v40H464c30.9 0 56 25.1 56 56v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H464c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V288c0-4.4-3.6-8-8-8H312v40h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H256c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V280H112c-4.4 0-8 3.6-8 8v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V288c0-30.9 25.1-56 56-56H264V192h-8c-26.5 0-48-21.5-48-48V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sith": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f512", + "label": "Sith", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sitrox": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e44a", + "label": "Sitrox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M212.439 0.00846128V0H448V128H64C64 57.6008 141.755 0.475338 212.439 0.00846128ZM237.256 192V192.007C307.135 192.475 384 249.6 384 320H210.809V319.995C140.915 319.563 64 262.424 64 192H237.256ZM235.565 511.993C306.251 511.521 384 454.399 384 384H0V512H235.565V511.993Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sketch": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "unicode": "f7c6", + "label": "Sketch", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M27.5 162.2L9 187.1h90.5l6.9-130.7-78.9 105.8zM396.3 45.7L267.7 32l135.7 147.2-7.1-133.5zM112.2 218.3l-11.2-22H9.9L234.8 458zm2-31.2h284l-81.5-88.5L256.3 33zm297.3 9.1L277.6 458l224.8-261.7h-90.9zM415.4 69L406 56.4l.9 17.3 6.1 113.4h90.3zM113.5 93.5l-4.6 85.6L244.7 32 116.1 45.7zm287.7 102.7h-290l42.4 82.9L256.3 480l144.9-283.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "skull": { + "aliases": { + "unicodes": { + "composite": [ + "1f480" + ], + "secondary": [ + "10f54c" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bones", + "death", + "face", + "fairy tale", + "monster", + "skeleton", + "skull", + "x-ray", + "yorick" + ] + }, + "unicode": "f54c", + "label": "Skull", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 398.9c58.5-41.1 96-104.1 96-174.9C512 100.3 397.4 0 256 0S0 100.3 0 224c0 70.7 37.5 133.8 96 174.9c0 .4 0 .7 0 1.1v64c0 26.5 21.5 48 48 48h48V464c0-8.8 7.2-16 16-16s16 7.2 16 16v48h64V464c0-8.8 7.2-16 16-16s16 7.2 16 16v48h48c26.5 0 48-21.5 48-48V400c0-.4 0-.7 0-1.1zM96 256a64 64 0 1 1 128 0A64 64 0 1 1 96 256zm256-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "skull-crossbones": { + "aliases": { + "unicodes": { + "composite": [ + "1f571", + "2620" + ], + "secondary": [ + "10f714" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Skull and Crossbones", + "Dungeons & Dragons", + "alert", + "bones", + "crossbones", + "d&d", + "danger", + "dangerous area", + "dead", + "deadly", + "death", + "dnd", + "face", + "fantasy", + "halloween", + "holiday", + "jolly-roger", + "monster", + "pirate", + "poison", + "skeleton", + "skull", + "skull and crossbones", + "warning" + ] + }, + "unicode": "f714", + "label": "Skull Crossbones", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767582, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 128c0 44.4-25.4 83.5-64 106.4V256c0 17.7-14.3 32-32 32H176c-17.7 0-32-14.3-32-32V234.4c-38.6-23-64-62.1-64-106.4C80 57.3 144.5 0 224 0s144 57.3 144 128zM168 176a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm144-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM3.4 273.7c7.9-15.8 27.1-22.2 42.9-14.3L224 348.2l177.7-88.8c15.8-7.9 35-1.5 42.9 14.3s1.5 35-14.3 42.9L295.6 384l134.8 67.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L224 419.8 46.3 508.6c-15.8 7.9-35 1.5-42.9-14.3s-1.5-35 14.3-42.9L152.4 384 17.7 316.6C1.9 308.7-4.5 289.5 3.4 273.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "skyatlas": { + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f216", + "label": "skyatlas", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "skype": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f17e", + "label": "Skype", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "slack": { + "aliases": { + "names": [ + "slack-hash" + ], + "unicodes": { + "composite": [ + "f3ef" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "hash", + "hashtag" + ] + }, + "unicode": "f198", + "label": "Slack Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f715" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "close", + "mute", + "off", + "stop", + "x" + ] + }, + "unicode": "f715", + "label": "Slash", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M5.1 9.2C13.3-1.2 28.4-3.1 38.8 5.1l592 464c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sleigh": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7cc" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "claus", + "fly", + "holiday", + "santa", + "sled", + "snow", + "xmas" + ] + }, + "unicode": "f7cc", + "label": "Sleigh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96V256c0 53 43 96 96 96v32h64V352H384v32h64V352c53 0 96-43 96-96V160c17.7 0 32-14.3 32-32s-14.3-32-32-32H512 480c-17.7 0-32 14.3-32 32v41.3c0 30.2-24.5 54.7-54.7 54.7c-75.5 0-145.6-38.9-185.6-102.9l-4.3-6.9C174.2 67.6 125 37.6 70.7 32.7c-2.2-.5-4.4-.7-6.7-.7H55 32zM640 384c0-17.7-14.3-32-32-32s-32 14.3-32 32v8c0 13.3-10.7 24-24 24H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H552c48.6 0 88-39.4 88-88v-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sliders": { + "aliases": { + "names": [ + "sliders-h" + ], + "unicodes": { + "secondary": [ + "10f1de" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adjust", + "settings", + "sliders", + "toggle" + ] + }, + "unicode": "f1de", + "label": "Sliders", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 416c0 17.7 14.3 32 32 32l54.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48L480 448c17.7 0 32-14.3 32-32s-14.3-32-32-32l-246.7 0c-12.3-28.3-40.5-48-73.3-48s-61 19.7-73.3 48L32 384c-17.7 0-32 14.3-32 32zm128 0a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32-80c-32.8 0-61 19.7-73.3 48L32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l246.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48l54.7 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-54.7 0c-12.3-28.3-40.5-48-73.3-48zM192 128a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm73.3-64C253 35.7 224.8 16 192 16s-61 19.7-73.3 48L32 64C14.3 64 0 78.3 0 96s14.3 32 32 32l86.7 0c12.3 28.3 40.5 48 73.3 48s61-19.7 73.3-48L480 128c17.7 0 32-14.3 32-32s-14.3-32-32-32L265.3 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "slideshare": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1e7", + "label": "Slideshare", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M187.7 153.7c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7s61.7-26 61.7-57.7c0-32-27.7-57.7-61.7-57.7zm143.4 0c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7 34.3 0 61.7-26 61.7-57.7.1-32-27.4-57.7-61.7-57.7zm156.6 90l-6 4.3V49.7c0-27.4-20.6-49.7-46-49.7H76.6c-25.4 0-46 22.3-46 49.7V248c-2-1.4-4.3-2.9-6.3-4.3-15.1-10.6-25.1 4-16 17.7 18.3 22.6 53.1 50.3 106.3 72C58.3 525.1 252 555.7 248.9 457.5c0-.7.3-56.6.3-96.6 5.1 1.1 9.4 2.3 13.7 3.1 0 39.7.3 92.8.3 93.5-3.1 98.3 190.6 67.7 134.3-124 53.1-21.7 88-49.4 106.3-72 9.1-13.8-.9-28.3-16.1-17.8zm-30.5 19.2c-68.9 37.4-128.3 31.1-160.6 29.7-23.7-.9-32.6 9.1-33.7 24.9-10.3-7.7-18.6-15.5-20.3-17.1-5.1-5.4-13.7-8-27.1-7.7-31.7 1.1-89.7 7.4-157.4-28V72.3c0-34.9 8.9-45.7 40.6-45.7h317.7c30.3 0 40.9 12.9 40.9 45.7v190.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "smog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f75f" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dragon", + "fog", + "haze", + "pollution", + "smoke", + "weather" + ] + }, + "unicode": "f75f", + "label": "Smog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 144c0 79.5 64.5 144 144 144H299.3c22.6 19.9 52.2 32 84.7 32s62.1-12.1 84.7-32H496c61.9 0 112-50.1 112-112s-50.1-112-112-112c-10.7 0-21 1.5-30.8 4.3C443.8 27.7 401.1 0 352 0c-32.6 0-62.4 12.2-85.1 32.3C242.1 12.1 210.5 0 176 0C96.5 0 32 64.5 32 144zM616 368H280c-13.3 0-24 10.7-24 24s10.7 24 24 24H616c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-64 96H440c-13.3 0-24 10.7-24 24s10.7 24 24 24H552c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-192 0H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24zM224 392c0-13.3-10.7-24-24-24H96c-13.3 0-24 10.7-24 24s10.7 24 24 24H200c13.3 0 24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "smoking": { + "aliases": { + "unicodes": { + "composite": [ + "1f6ac" + ], + "secondary": [ + "10f48d" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancer", + "cigarette", + "nicotine", + "smoking", + "smoking status", + "tobacco" + ] + }, + "unicode": "f48d", + "label": "Smoking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M448 32V43c0 38.2 15.2 74.8 42.2 101.8l21 21c21 21 32.8 49.5 32.8 79.2v11c0 17.7-14.3 32-32 32s-32-14.3-32-32V245c0-12.7-5.1-24.9-14.1-33.9l-21-21C405.9 151.1 384 98.1 384 43V32c0-17.7 14.3-32 32-32s32 14.3 32 32zM576 256V245c0-38.2-15.2-74.8-42.2-101.8l-21-21c-21-21-32.8-49.5-32.8-79.2V32c0-17.7 14.3-32 32-32s32 14.3 32 32V43c0 12.7 5.1 24.9 14.1 33.9l21 21c39 39 60.9 91.9 60.9 147.1v11c0 17.7-14.3 32-32 32s-32-14.3-32-32zM0 416c0-35.3 28.7-64 64-64H416c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H64c-35.3 0-64-28.7-64-64V416zm224 0v32H384V416H224zm288-64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "snapchat": { + "aliases": { + "names": [ + "snapchat-ghost" + ], + "unicodes": { + "composite": [ + "f2ac" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2ab", + "label": "Snapchat", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M496.926,366.6c-3.373-9.176-9.8-14.086-17.112-18.153-1.376-.806-2.641-1.451-3.72-1.947-2.182-1.128-4.414-2.22-6.634-3.373-22.8-12.09-40.609-27.341-52.959-45.42a102.889,102.889,0,0,1-9.089-16.12c-1.054-3.013-1-4.724-.248-6.287a10.221,10.221,0,0,1,2.914-3.038c3.918-2.591,7.96-5.22,10.7-6.993,4.885-3.162,8.754-5.667,11.246-7.44,9.362-6.547,15.909-13.5,20-21.278a42.371,42.371,0,0,0,2.1-35.191c-6.2-16.318-21.613-26.449-40.287-26.449a55.543,55.543,0,0,0-11.718,1.24c-1.029.224-2.059.459-3.063.72.174-11.16-.074-22.94-1.066-34.534-3.522-40.758-17.794-62.123-32.674-79.16A130.167,130.167,0,0,0,332.1,36.443C309.515,23.547,283.91,17,256,17S202.6,23.547,180,36.443a129.735,129.735,0,0,0-33.281,26.783c-14.88,17.038-29.152,38.44-32.673,79.161-.992,11.594-1.24,23.435-1.079,34.533-1-.26-2.021-.5-3.051-.719a55.461,55.461,0,0,0-11.717-1.24c-18.687,0-34.125,10.131-40.3,26.449a42.423,42.423,0,0,0,2.046,35.228c4.105,7.774,10.652,14.731,20.014,21.278,2.48,1.736,6.361,4.24,11.246,7.44,2.641,1.711,6.5,4.216,10.28,6.72a11.054,11.054,0,0,1,3.3,3.311c.794,1.624.818,3.373-.36,6.6a102.02,102.02,0,0,1-8.94,15.785c-12.077,17.669-29.363,32.648-51.434,44.639C32.355,348.608,20.2,352.75,15.069,366.7c-3.868,10.528-1.339,22.506,8.494,32.6a49.137,49.137,0,0,0,12.4,9.387,134.337,134.337,0,0,0,30.342,12.139,20.024,20.024,0,0,1,6.126,2.741c3.583,3.137,3.075,7.861,7.849,14.78a34.468,34.468,0,0,0,8.977,9.127c10.019,6.919,21.278,7.353,33.207,7.811,10.776.41,22.989.881,36.939,5.481,5.778,1.91,11.78,5.605,18.736,9.92C194.842,480.951,217.707,495,255.973,495s61.292-14.123,78.118-24.428c6.907-4.24,12.872-7.9,18.489-9.758,13.949-4.613,26.163-5.072,36.939-5.481,11.928-.459,23.187-.893,33.206-7.812a34.584,34.584,0,0,0,10.218-11.16c3.434-5.84,3.348-9.919,6.572-12.771a18.971,18.971,0,0,1,5.753-2.629A134.893,134.893,0,0,0,476.02,408.71a48.344,48.344,0,0,0,13.019-10.193l.124-.149C498.389,388.5,500.708,376.867,496.926,366.6Zm-34.013,18.277c-20.745,11.458-34.533,10.23-45.259,17.137-9.114,5.865-3.72,18.513-10.342,23.076-8.134,5.617-32.177-.4-63.239,9.858-25.618,8.469-41.961,32.822-88.038,32.822s-62.036-24.3-88.076-32.884c-31-10.255-55.092-4.241-63.239-9.858-6.609-4.563-1.24-17.211-10.341-23.076-10.739-6.907-24.527-5.679-45.26-17.075-13.206-7.291-5.716-11.8-1.314-13.937,75.143-36.381,87.133-92.552,87.666-96.719.645-5.046,1.364-9.014-4.191-14.148-5.369-4.96-29.189-19.7-35.8-24.316-10.937-7.638-15.748-15.264-12.2-24.638,2.48-6.485,8.531-8.928,14.879-8.928a27.643,27.643,0,0,1,5.965.67c12,2.6,23.659,8.617,30.392,10.242a10.749,10.749,0,0,0,2.48.335c3.6,0,4.86-1.811,4.612-5.927-.768-13.132-2.628-38.725-.558-62.644,2.84-32.909,13.442-49.215,26.04-63.636,6.051-6.932,34.484-36.976,88.857-36.976s82.88,29.92,88.931,36.827c12.611,14.421,23.225,30.727,26.04,63.636,2.071,23.919.285,49.525-.558,62.644-.285,4.327,1.017,5.927,4.613,5.927a10.648,10.648,0,0,0,2.48-.335c6.745-1.624,18.4-7.638,30.4-10.242a27.641,27.641,0,0,1,5.964-.67c6.386,0,12.4,2.48,14.88,8.928,3.546,9.374-1.24,17-12.189,24.639-6.609,4.612-30.429,19.343-35.8,24.315-5.568,5.134-4.836,9.1-4.191,14.149.533,4.228,12.511,60.4,87.666,96.718C468.629,373.011,476.119,377.524,462.913,384.877Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "snowflake": { + "aliases": { + "unicodes": { + "composite": [ + "2744", + "2746" + ], + "secondary": [ + "10f2dc" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Heavy Chevron Snowflake", + "cold", + "precipitation", + "rain", + "snow", + "snowfall", + "snowflake", + "winter" + ] + }, + "unicode": "f2dc", + "label": "Snowflake", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V62.1l15-15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-49 49v70.3l61.4-35.8 17.7-66.1c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4l-5.2 19.3 23.6-13.8c15.3-8.9 34.9-3.7 43.8 11.5s3.8 34.9-11.5 43.8l-25.3 14.8 21.7 5.8c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-67.7-18.1L287.5 256l60.9 35.5 67.7-18.1c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4l-21.7 5.8 25.3 14.8c15.3 8.9 20.4 28.5 11.5 43.8s-28.5 20.4-43.8 11.5l-23.6-13.8 5.2 19.3c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-17.7-66.1L256 311.7v70.3l49 49c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V449.9l-15 15c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l49-49V311.7l-61.4 35.8-17.7 66.1c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4l5.2-19.3L48.1 395.6c-15.3 8.9-34.9 3.7-43.8-11.5s-3.7-34.9 11.5-43.8l25.3-14.8-21.7-5.8c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l67.7 18.1L160.5 256 99.6 220.5 31.9 238.6c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4l21.7-5.8L15.9 171.6C.6 162.7-4.5 143.1 4.4 127.9s28.5-20.4 43.8-11.5l23.6 13.8-5.2-19.3c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l17.7 66.1L192 200.3V129.9L143 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l15 15V32c0-17.7 14.3-32 32-32z" + }, + "regular": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c13.3 0 24 10.7 24 24V70.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-57 57v76.5l66.2-38.2 20.9-77.8c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4L373 142.2l37.1-21.4c11.5-6.6 26.2-2.7 32.8 8.8s2.7 26.2-8.8 32.8L397 183.8l31.5 8.4c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-77.8-20.9L272 256l66.2 38.2 77.8-20.9c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4L397 328.2l37.1 21.4c11.5 6.6 15.4 21.3 8.8 32.8s-21.3 15.4-32.8 8.8L373 369.8l8.4 31.5c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-20.9-77.8L248 297.6v76.5l57 57c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V441.9l-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57V297.6l-66.2 38.2-20.9 77.8c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4L75 369.8 37.9 391.2c-11.5 6.6-26.2 2.7-32.8-8.8s-2.7-26.2 8.8-32.8L51 328.2l-31.5-8.4c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l77.8 20.9L176 256l-66.2-38.2L31.9 238.6c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4L51 183.8 13.9 162.4c-11.5-6.6-15.4-21.3-8.8-32.8s21.3-15.4 32.8-8.8L75 142.2l-8.4-31.5c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l20.9 77.8L200 214.4V137.9L143 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23V24c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "snowman": { + "aliases": { + "unicodes": { + "composite": [ + "2603", + "26c4" + ], + "secondary": [ + "10f7d0" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "decoration", + "frost", + "frosty", + "holiday", + "snow", + "snowman", + "snowman without snow" + ] + }, + "unicode": "f7d0", + "label": "Snowman", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.1 140.6c-2 3.9-1.6 8.6 1.2 12c7 8.5 12.9 18.1 17.2 28.4L408 160.2V120c0-13.3 10.7-24 24-24s24 10.7 24 24v19.6l22.5-9.7c12.2-5.2 26.3 .4 31.5 12.6s-.4 26.3-12.6 31.5l-56 24-73.6 31.5c-.5 9.5-2.1 18.6-4.8 27.3c-1.2 3.8-.1 8 2.8 10.8C396.7 296.9 416 338.2 416 384c0 44.7-18.3 85-47.8 114.1c-9.9 9.7-23.7 13.9-37.5 13.9H181.3c-13.9 0-27.7-4.2-37.5-13.9C114.3 469 96 428.7 96 384c0-45.8 19.3-87.1 50.1-116.3c2.9-2.8 4-6.9 2.8-10.8c-2.7-8.7-4.3-17.9-4.8-27.3L70.5 198.1l-56-24C2.4 168.8-3.3 154.7 1.9 142.5s19.3-17.8 31.5-12.6L56 139.6V120c0-13.3 10.7-24 24-24s24 10.7 24 24v40.2L152.6 181c4.3-10.3 10.1-19.9 17.2-28.4c2.8-3.4 3.3-8.1 1.2-12C164 127.2 160 112.1 160 96c0-53 43-96 96-96s96 43 96 96c0 16.1-4 31.2-10.9 44.6zM224 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm48 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm-16 80a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm16 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zM288 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-48 24v3.2c0 3.2 .8 6.3 2.3 9l9 16.9c.9 1.7 2.7 2.8 4.7 2.8s3.8-1.1 4.7-2.8l9-16.9c1.5-2.8 2.3-5.9 2.3-9V120c0-8.8-7.2-16-16-16s-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "snowplow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7d2" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean up", + "cold", + "road", + "storm", + "winter" + ] + }, + "unicode": "f7d2", + "label": "Snowplow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M298.9 64l68.6 160H256l-64-64V64H298.9zM445.1 242.7l-87.4-204C347.6 15.3 324.5 0 298.9 0H176c-26.5 0-48 21.5-48 48V160H96c-17.7 0-32 14.3-32 32V298.8C26.2 316.8 0 355.3 0 400c0 61.9 50.1 112 112 112H368c61.9 0 112-50.1 112-112c0-17.2-3.9-33.5-10.8-48H512v50.7c0 17 6.7 33.3 18.7 45.3l54.6 54.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L576 402.7V320 235.2L633 164c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5l-57 71.2c-9.1 11.3-14 25.4-14 40V288H448V256.7c.1-2.4-.2-4.8-.6-7.1s-1.2-4.7-2.2-6.8zM368 352c26.5 0 48 21.5 48 48s-21.5 48-48 48H112c-26.5 0-48-21.5-48-48s21.5-48 48-48H368zM144 400a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm216 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm-56-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM200 424a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "soap": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fc" + ], + "secondary": [ + "10e06e" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "bathing", + "bubbles", + "clean", + "cleaning", + "covid-19", + "hygiene", + "lather", + "soap", + "soapdish", + "wash" + ] + }, + "unicode": "e06e", + "label": "Soap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM416 32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0 160c0 27.6-11.7 52.5-30.4 70.1C422.1 275.7 448 310.8 448 352c0 53-43 96-96 96H160c-53 0-96-43-96-96s43-96 96-96h88.4c-15.2-17-24.4-39.4-24.4-64H96c-53 0-96 43-96 96V416c0 53 43 96 96 96H416c53 0 96-43 96-96V288c0-53-43-96-96-96zM160 288c-35.3 0-64 28.7-64 64s28.7 64 64 64H352c35.3 0 64-28.7 64-64s-28.7-64-64-64H320 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "socks": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e6" + ], + "secondary": [ + "10f696" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "business socks", + "business time", + "clothing", + "feet", + "flight of the conchords", + "socks", + "stocking", + "wednesday" + ] + }, + "unicode": "f696", + "label": "Socks", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175.2 476.6c-9.7-18-15.2-38.7-15.2-60.6c0-40.3 19-78.2 51.2-102.4l64-48c8.1-6 12.8-15.5 12.8-25.6V96H128V240c0 20.1-9.5 39.1-25.6 51.2l-64 48C14.2 357.3 0 385.8 0 416c0 53 43 96 96 96c20.8 0 41-6.7 57.6-19.2l21.6-16.2zM128 64H288V48c0-14.5 3.9-28.2 10.7-39.9C291 3 281.9 0 272 0H176c-26.5 0-48 21.5-48 48V64zM320 96V240c0 20.1-9.5 39.1-25.6 51.2l-64 48C206.2 357.3 192 385.8 192 416c0 53 43 96 96 96c20.8 0 41-6.7 57.6-19.2l115.2-86.4C493 382.2 512 344.3 512 304V96H320zM512 64V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48V64H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "solar-panel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ba" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "eco-friendly", + "energy", + "green", + "sun" + ] + }, + "unicode": "f5ba", + "label": "Solar Panel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M122.2 0C91.7 0 65.5 21.5 59.5 51.4L8.3 307.4C.4 347 30.6 384 71 384H288v64H224c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V384H569c40.4 0 70.7-36.9 62.8-76.6l-51.2-256C574.5 21.5 548.3 0 517.8 0H122.2zM260.9 64H379.1l10.4 104h-139L260.9 64zM202.3 168H101.4L122.2 64h90.4L202.3 168zM91.8 216H197.5L187.1 320H71L91.8 216zm153.9 0H394.3l10.4 104-169.4 0 10.4-104zm196.8 0H548.2L569 320h-116L442.5 216zm96-48H437.7L427.3 64h90.4l31.4-6.3L517.8 64l20.8 104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sort": { + "aliases": { + "names": [ + "unsorted" + ], + "unicodes": { + "secondary": [ + "10f0dc" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "filter", + "order" + ] + }, + "unicode": "f0dc", + "label": "Sort", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 41.4c12.5-12.5 32.8-12.5 45.3 0l128 128c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l128-128zm0 429.3l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128c-12.5 12.5-32.8 12.5-45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sort-down": { + "aliases": { + "names": [ + "sort-desc" + ], + "unicodes": { + "secondary": [ + "10f0dd" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "descending", + "filter", + "order", + "sort-desc" + ] + }, + "unicode": "f0dd", + "label": "Sort Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sort-up": { + "aliases": { + "names": [ + "sort-asc" + ], + "unicodes": { + "secondary": [ + "10f0de" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "ascending", + "filter", + "order", + "sort-asc" + ] + }, + "unicode": "f0de", + "label": "Sort Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "soundcloud": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1be", + "label": "SoundCloud", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sourcetree": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7d3", + "label": "Sourcetree", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M427.2 203c0-112.1-90.9-203-203-203C112.1-.2 21.2 90.6 21 202.6A202.86 202.86 0 0 0 161.5 396v101.7a14.3 14.3 0 0 0 14.3 14.3h96.4a14.3 14.3 0 0 0 14.3-14.3V396.1A203.18 203.18 0 0 0 427.2 203zm-271.6 0c0-90.8 137.3-90.8 137.3 0-.1 89.9-137.3 91-137.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bb" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flora", + "massage", + "mindfulness", + "plant", + "wellness" + ] + }, + "unicode": "f5bb", + "label": "Spa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M183.1 235.3c33.7 20.7 62.9 48.1 85.8 80.5c7 9.9 13.4 20.3 19.1 31c5.7-10.8 12.1-21.1 19.1-31c22.9-32.4 52.1-59.8 85.8-80.5C437.6 207.8 490.1 192 546 192h9.9c11.1 0 20.1 9 20.1 20.1C576 360.1 456.1 480 308.1 480H288 267.9C119.9 480 0 360.1 0 212.1C0 201 9 192 20.1 192H30c55.9 0 108.4 15.8 153.1 43.3zM301.5 37.6c15.7 16.9 61.1 71.8 84.4 164.6c-38 21.6-71.4 50.8-97.9 85.6c-26.5-34.8-59.9-63.9-97.9-85.6c23.2-92.8 68.6-147.7 84.4-164.6C278 33.9 282.9 32 288 32s10 1.9 13.5 5.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "space-awesome": { + "changes": [ + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "adventure", + "rocket", + "ship", + "shuttle" + ] + }, + "unicode": "e5ac", + "label": "Space Awesome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 256H128V512H0V352H32V320H64V288H96V256zM512 352V512H384V256H416V288H448V320H480V352H512zM320 64H352V448H320V416H192V448H160V64H192V32H224V0H288V32H320V64zM288 128H224V192H288V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spaghetti-monster-flying": { + "aliases": { + "names": [ + "pastafarianism" + ], + "unicodes": { + "secondary": [ + "10f67b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agnosticism", + "atheism", + "flying spaghetti monster", + "fsm" + ] + }, + "unicode": "f67b", + "label": "Spaghetti Monster Flying", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 64a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 0c0 16.2-6 31.1-16 42.3l15.6 31.2c18.7-6 39.9-9.5 64.4-9.5s45.8 3.5 64.4 9.5L400 106.3C390 95.1 384 80.2 384 64c0-35.3 28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64c-1.7 0-3.4-.1-5.1-.2L427.8 158c21.1 13.6 37.7 30.2 51.4 46.4c7.1 8.3 13.5 16.6 19.3 24l1.4 1.8c6.3 8.1 11.6 14.8 16.7 20.4C527.3 262.3 532.7 264 536 264c2.5 0 4.3-.6 7.1-3.3c3.7-3.5 7.1-8.8 12.5-17.4l.6-.9c4.6-7.4 11-17.6 19.4-25.7c9.7-9.3 22.9-16.7 40.4-16.7c13.3 0 24 10.7 24 24s-10.7 24-24 24c-2.5 0-4.3 .6-7.1 3.3c-3.7 3.5-7.1 8.8-12.5 17.4l-.6 .9c-4.6 7.4-11 17.6-19.4 25.7c-9.7 9.3-22.9 16.7-40.4 16.7c-18.5 0-32.9-8.5-44.3-18.6c-3.1 4-6.6 8.3-10.5 12.7c1.4 4.3 2.8 8.5 4 12.5c.9 3 1.8 5.8 2.6 8.6c3 9.8 5.5 18.2 8.6 25.9c3.9 9.8 7.4 15.4 10.8 18.5c2.6 2.4 5.9 4.3 12.8 4.3c8.7 0 16.9-4.2 33.7-13.2c15-8 35.7-18.8 62.3-18.8c13.3 0 24 10.7 24 24s-10.7 24-24 24c-13.4 0-24.7 5.2-39.7 13.2c-1 .6-2.1 1.1-3.2 1.7C559.9 414 541.4 424 520 424c-18.4 0-33.6-6.1-45.5-17.2c-11.1-10.3-17.9-23.7-22.7-36c-3.6-9-6.7-19.1-9.5-28.5c-16.4 12.3-36.1 23.6-58.9 31.3c3.6 10.8 8.4 23.5 14.4 36.2c7.5 15.9 16.2 30.4 25.8 40.5C433 460.5 441.2 464 448 464c13.3 0 24 10.7 24 24s-10.7 24-24 24c-25.2 0-45-13.5-59.5-28.8c-14.5-15.4-25.7-34.9-34.2-53c-8-17-14.1-33.8-18.3-46.9c-5.2 .4-10.6 .6-16 .6s-10.8-.2-16-.6c-4.2 13-10.3 29.9-18.3 46.9c-8.5 18.1-19.8 37.6-34.2 53C237 498.5 217.2 512 192 512c-13.3 0-24-10.7-24-24s10.7-24 24-24c6.8 0 15-3.5 24.5-13.7c9.5-10.1 18.3-24.6 25.8-40.5c5.9-12.6 10.7-25.4 14.4-36.2c-22.8-7.7-42.5-19-58.9-31.3c-2.9 9.4-6 19.5-9.5 28.5c-4.8 12.2-11.6 25.6-22.7 36C153.6 417.9 138.4 424 120 424c-21.4 0-39.9-10-53.1-17.1l0 0c-1.1-.6-2.2-1.2-3.2-1.7c-15-8-26.3-13.2-39.7-13.2c-13.3 0-24-10.7-24-24s10.7-24 24-24c26.6 0 47.3 10.8 62.3 18.8c16.8 9 25 13.2 33.7 13.2c6.8 0 10.2-1.9 12.8-4.3c3.4-3.2 7-8.8 10.8-18.5c3-7.7 5.6-16.1 8.6-25.9c.8-2.7 1.7-5.6 2.6-8.6c1.2-4 2.6-8.2 4-12.5c-3.9-4.5-7.4-8.8-10.5-12.7C136.9 303.5 122.5 312 104 312c-17.5 0-30.7-7.4-40.4-16.7c-8.4-8.1-14.8-18.3-19.4-25.7l-.6-.9c-5.4-8.6-8.8-13.9-12.5-17.4c-2.8-2.7-4.6-3.3-7.1-3.3c-13.3 0-24-10.7-24-24s10.7-24 24-24c17.5 0 30.7 7.4 40.4 16.7c8.4 8.1 14.8 18.3 19.4 25.7l.6 .9c5.4 8.6 8.8 13.9 12.5 17.4c2.8 2.7 4.6 3.3 7.1 3.3c3.3 0 8.7-1.7 19.4-13.4c5.1-5.6 10.4-12.3 16.7-20.4l1.4-1.8c5.8-7.4 12.2-15.7 19.3-24c13.8-16.2 30.3-32.8 51.4-46.4l-15.1-30.2c-1.7 .1-3.4 .2-5.1 .2c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm208 0a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "speakap": { + "changes": [ + "5.0.0", + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f3", + "label": "Speakap", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 391.78C-15.41 303.59-8 167.42 80.64 87.64s224.8-73 304.21 15.24 72 224.36-16.64 304.14c-18.74 16.87 64 43.09 42 52.26-82.06 34.21-253.91 35-346.23-67.5zm213.31-211.6l38.5-40.86c-9.61-8.89-32-26.83-76.17-27.6-52.33-.91-95.86 28.3-96.77 80-.2 11.33.29 36.72 29.42 54.83 34.46 21.42 86.52 21.51 86 52.26-.37 21.28-26.42 25.81-38.59 25.6-3-.05-30.23-.46-47.61-24.62l-40 42.61c28.16 27 59 32.62 83.49 33.05 10.23.18 96.42.33 97.84-81 .28-15.81-2.07-39.72-28.86-56.59-34.36-21.64-85-19.45-84.43-49.75.41-23.25 31-25.37 37.53-25.26.43 0 26.62.26 39.62 17.37z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "speaker-deck": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83c", + "label": "Speaker Deck", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M213.86 296H100a100 100 0 0 1 0-200h132.84a40 40 0 0 1 0 80H98c-26.47 0-26.45 40 0 40h113.82a100 100 0 0 1 0 200H40a40 40 0 0 1 0-80h173.86c26.48 0 26.46-40 0-40zM298 416a120.21 120.21 0 0 0 51.11-80h64.55a19.83 19.83 0 0 0 19.66-20V196a19.83 19.83 0 0 0-19.66-20H296.42a60.77 60.77 0 0 0 0-80h136.93c43.44 0 78.65 35.82 78.65 80v160c0 44.18-35.21 80-78.65 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spell-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f891" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dictionary", + "edit", + "editor", + "grammar", + "text" + ] + }, + "unicode": "f891", + "label": "Spell Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 0C99.1 0 87.4 7.8 82.5 19.7l-66.7 160-13.3 32c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L66.7 224h90.7l5.1 12.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-13.3-32-66.7-160C136.6 7.8 124.9 0 112 0zm18.7 160H93.3L112 115.2 130.7 160zM256 32v96 96c0 17.7 14.3 32 32 32h80c44.2 0 80-35.8 80-80c0-23.1-9.8-43.8-25.4-58.4c6-11.2 9.4-24 9.4-37.6c0-44.2-35.8-80-80-80H288c-17.7 0-32 14.3-32 32zm96 64H320V64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-32 64h32 16c8.8 0 16 7.2 16 16s-7.2 16-16 16H320V160zM566.6 310.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L352 434.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l192-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spider": { + "aliases": { + "unicodes": { + "composite": [ + "1f577" + ], + "secondary": [ + "10f717" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arachnid", + "bug", + "charlotte", + "crawl", + "eight", + "halloween", + "insect", + "spider" + ] + }, + "unicode": "f717", + "label": "Spider", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M158.4 32.6c4.8-12.4-1.4-26.3-13.8-31s-26.3 1.4-31 13.8L81.1 100c-7.9 20.7-3 44.1 12.7 59.7l57.4 57.4L70.8 190.3c-2.4-.8-4.3-2.7-5.1-5.1L46.8 128.4C42.6 115.8 29 109 16.4 113.2S-3 131 1.2 143.6l18.9 56.8c5.6 16.7 18.7 29.8 35.4 35.4L116.1 256 55.6 276.2c-16.7 5.6-29.8 18.7-35.4 35.4L1.2 368.4C-3 381 3.8 394.6 16.4 398.8s26.2-2.6 30.4-15.2l18.9-56.8c.8-2.4 2.7-4.3 5.1-5.1l80.4-26.8L93.7 352.3C78.1 368 73.1 391.4 81.1 412l32.5 84.6c4.8 12.4 18.6 18.5 31 13.8s18.5-18.6 13.8-31l-32.5-84.6c-1.1-3-.4-6.3 1.8-8.5L160 353.9c1 52.1 43.6 94.1 96 94.1s95-41.9 96-94.1l32.3 32.3c2.2 2.2 2.9 5.6 1.8 8.5l-32.5 84.6c-4.8 12.4 1.4 26.3 13.8 31s26.3-1.4 31-13.8L430.9 412c7.9-20.7 3-44.1-12.7-59.7l-57.4-57.4 80.4 26.8c2.4 .8 4.3 2.7 5.1 5.1l18.9 56.8c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-18.9-56.8c-5.6-16.7-18.7-29.8-35.4-35.4L395.9 256l60.5-20.2c16.7-5.6 29.8-18.7 35.4-35.4l18.9-56.8c4.2-12.6-2.6-26.2-15.2-30.4s-26.2 2.6-30.4 15.2l-18.9 56.8c-.8 2.4-2.7 4.3-5.1 5.1l-80.4 26.8 57.4-57.4c15.6-15.6 20.6-39 12.7-59.7L398.4 15.4C393.6 3 379.8-3.2 367.4 1.6s-18.5 18.6-13.8 31l32.5 84.6c1.1 3 .4 6.3-1.8 8.5L336 174.1V160c0-31.8-18.6-59.3-45.5-72.2c-9.1-4.4-18.5 3.3-18.5 13.4V112c0 8.8-7.2 16-16 16s-16-7.2-16-16V101.2c0-10.1-9.4-17.7-18.5-13.4C194.6 100.7 176 128.2 176 160v14.1l-48.3-48.3c-2.2-2.2-2.9-5.6-1.8-8.5l32.5-84.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spinner": { + "aliases": { + "unicodes": { + "secondary": [ + "10f110" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle", + "loading", + "progress" + ] + }, + "unicode": "f110", + "label": "Spinner", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M304 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 416a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM48 304a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm464-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM142.9 437A48 48 0 1 0 75 369.1 48 48 0 1 0 142.9 437zm0-294.2A48 48 0 1 0 75 75a48 48 0 1 0 67.9 67.9zM369.1 437A48 48 0 1 0 437 369.1 48 48 0 1 0 369.1 437z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "splotch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bc" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ink", + "blob", + "blotch", + "glob", + "stain" + ] + }, + "unicode": "f5bc", + "label": "Splotch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208.5 62.3l28.1-36.9C248.8 9.4 267.8 0 288 0c28.5 0 53.6 18.7 61.8 46l17.8 59.4c10.3 34.4 36.1 62 69.8 74.6l39.8 14.9c20.9 7.9 34.8 27.9 34.8 50.2c0 16.9-7.9 32.8-21.5 42.9l-67.3 50.5c-24.3 18.2-37.2 47.9-33.8 78.1l2.5 22.7c4.3 38.7-26 72.6-65 72.6c-14.8 0-29.3-5.1-40.8-14.3l-55.4-44.3c-4.5-3.6-9.3-6.7-14.5-9.2c-15.8-7.9-33.7-10.4-51-7.3L82.4 451.9C47.8 458.2 16 431.6 16 396.5c0-13.2 4.7-26 13.1-36.2l11.2-13.4c14.6-17.4 22.6-39.4 22.6-62.1c0-18.8-5.5-37.2-15.8-53L8.8 173.5C3.1 164.7 0 154.4 0 143.9c0-33.4 30.1-58.8 63-53.2l51.3 8.7c35.9 6.1 72.2-8.2 94.2-37.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spoon": { + "aliases": { + "names": [ + "utensil-spoon" + ], + "unicodes": { + "composite": [ + "1f944", + "f1b1" + ], + "secondary": [ + "10f2e5" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cutlery", + "dining", + "scoop", + "silverware", + "spoon", + "tableware" + ] + }, + "unicode": "f2e5", + "label": "Spoon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767421, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M245.8 220.9c-14.5-17.6-21.8-39.2-21.8-60.8C224 80 320 0 416 0c53 0 96 43 96 96c0 96-80 192-160.2 192c-21.6 0-43.2-7.3-60.8-21.8L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L245.8 220.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spotify": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1bc", + "label": "Spotify", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spray-can": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bd" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Paint", + "aerosol", + "design", + "graffiti", + "tag" + ] + }, + "unicode": "f5bd", + "label": "Spray Can", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 0h64c17.7 0 32 14.3 32 32v96H96V32c0-17.7 14.3-32 32-32zM0 256c0-53 43-96 96-96H224c53 0 96 43 96 96V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V256zm240 80A80 80 0 1 0 80 336a80 80 0 1 0 160 0zM256 64a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM384 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM448 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM384 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spray-can-sparkles": { + "aliases": { + "names": [ + "air-freshener" + ], + "unicodes": { + "secondary": [ + "10f5d0" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "car", + "clean", + "deodorize", + "fresh", + "pine", + "scent" + ] + }, + "unicode": "f5d0", + "label": "Spray Can Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 32v96H224V32c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zm0 128c-53 0-96 43-96 96V464c0 26.5 21.5 48 48 48H272c26.5 0 48-21.5 48-48V256c0-53-43-96-96-96H96zm64 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160zM384 48c0-1.4-1-3-2.2-3.6L352 32 339.6 2.2C339 1 337.4 0 336 0s-3 1-3.6 2.2L320 32 290.2 44.4C289 45 288 46.6 288 48c0 1.4 1 3 2.2 3.6L320 64l12.4 29.8C333 95 334.6 96 336 96s3-1 3.6-2.2L352 64l29.8-12.4C383 51 384 49.4 384 48zm76.4 45.8C461 95 462.6 96 464 96s3-1 3.6-2.2L480 64l29.8-12.4C511 51 512 49.4 512 48c0-1.4-1-3-2.2-3.6L480 32 467.6 2.2C467 1 465.4 0 464 0s-3 1-3.6 2.2L448 32 418.2 44.4C417 45 416 46.6 416 48c0 1.4 1 3 2.2 3.6L448 64l12.4 29.8zm7.2 100.4c-.6-1.2-2.2-2.2-3.6-2.2s-3 1-3.6 2.2L448 224l-29.8 12.4c-1.2 .6-2.2 2.2-2.2 3.6c0 1.4 1 3 2.2 3.6L448 256l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L480 256l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6c0-1.4-1-3-2.2-3.6L480 224l-12.4-29.8zM448 144c0-1.4-1-3-2.2-3.6L416 128 403.6 98.2C403 97 401.4 96 400 96s-3 1-3.6 2.2L384 128l-29.8 12.4c-1.2 .6-2.2 2.2-2.2 3.6c0 1.4 1 3 2.2 3.6L384 160l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L416 160l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square": { + "aliases": { + "unicodes": { + "composite": [ + "25a0", + "25fb", + "25fc", + "f096" + ], + "secondary": [ + "10f0c8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Square", + "black medium square", + "block", + "box", + "geometric", + "shape", + "square", + "white medium square" + ] + }, + "unicode": "f0c8", + "label": "Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96z" + }, + "regular": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H384zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-arrow-up-right": { + "aliases": { + "names": [ + "external-link-square" + ], + "unicodes": { + "secondary": [ + "10f14c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diagonal", + "new", + "open", + "send", + "share" + ] + }, + "unicode": "f14c", + "label": "Square Arrow Up Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM160 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h94.1L119 327c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l135-135V328c0 13.3 10.7 24 24 24s24-10.7 24-24V168c0-13.3-10.7-24-24-24H160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-behance": { + "aliases": { + "names": [ + "behance-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b5", + "label": "Behance Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-caret-down": { + "aliases": { + "names": [ + "caret-square-down" + ], + "unicodes": { + "secondary": [ + "10f150" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-down", + "dropdown", + "expand", + "menu", + "more", + "triangle" + ] + }, + "unicode": "f150", + "label": "Square Caret Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 480c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0zM224 352c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4l208 0c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7z" + }, + "regular": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 432c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0zm64-16c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320zM224 352c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4l208 0c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-caret-left": { + "aliases": { + "names": [ + "caret-square-left" + ], + "unicodes": { + "secondary": [ + "10f191" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "caret-square-o-left", + "previous", + "triangle" + ] + }, + "unicode": "f191", + "label": "Square Caret Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416zM128 256c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22l0 208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6z" + }, + "regular": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 416c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320zm16 64c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480zm64-224c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22l0 208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-caret-right": { + "aliases": { + "names": [ + "caret-square-right" + ], + "unicodes": { + "secondary": [ + "10f152" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-right", + "forward", + "next", + "triangle" + ] + }, + "unicode": "f152", + "label": "Square Caret Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM320 256c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4s-14.4-12.5-14.4-22l0-208c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6z" + }, + "regular": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 96c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320zM384 32c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0zM320 256c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4s-14.4-12.5-14.4-22l0-208c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-caret-up": { + "aliases": { + "names": [ + "caret-square-up" + ], + "unicodes": { + "secondary": [ + "10f151" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-up", + "collapse", + "triangle", + "upload" + ] + }, + "unicode": "f151", + "label": "Square Caret Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM224 160c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9s-12.5 14.4-22 14.4H120c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7z" + }, + "regular": { + "lastModified": 1684766331, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm224 64c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9s-12.5 14.4-22 14.4l-208 0c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-check": { + "aliases": { + "names": [ + "check-square" + ], + "unicodes": { + "composite": [ + "2611", + "2705", + "f046" + ], + "secondary": [ + "10f14a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "box", + "button", + "check", + "check box with check", + "check mark button", + "checkmark", + "confirm", + "correct", + "done", + "mark", + "ok", + "select", + "success", + "tick", + "todo", + "yes", + "✓" + ] + }, + "unicode": "f14a", + "label": "Square Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + }, + "regular": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64zM0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-dribbble": { + "aliases": { + "names": [ + "dribbble-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f397", + "label": "Dribbble Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-envelope": { + "aliases": { + "names": [ + "envelope-square" + ], + "unicodes": { + "secondary": [ + "10f199" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f199", + "label": "Square Envelope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM218 271.7L64.2 172.4C66 156.4 79.5 144 96 144H352c16.5 0 30 12.4 31.8 28.4L230 271.7c-1.8 1.2-3.9 1.8-6 1.8s-4.2-.6-6-1.8zm29.4 26.9L384 210.4V336c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V210.4l136.6 88.2c7 4.5 15.1 6.9 23.4 6.9s16.4-2.4 23.4-6.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-facebook": { + "aliases": { + "names": [ + "facebook-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.2", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "unicode": "f082", + "label": "Facebook Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-font-awesome": { + "changes": [ + "5.0.0", + "5.0.1", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5ad", + "label": "Font Awesome in Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384.5,32.5h-320c-35.3,0-64,28.7-64,64v320c0,35.3,28.7,64,64,64h320c35.3,0,64-28.7,64-64v-320 C448.5,61.2,419.8,32.5,384.5,32.5z M336.5,312.5c-31.6,11.2-41.2,16-59.8,16c-31.4,0-43.2-16-74.6-16c-10.2,0-18.2,1.6-25.6,4v-32 c7.4-2.2,15.4-4,25.6-4c31.2,0,43.2,16,74.6,16c10.2,0,17.8-1.4,27.8-4.6v-96c-10,3.2-17.6,4.6-27.8,4.6c-31.4,0-43.2-16-74.6-16 c-25.4,0-37.4,10.4-57.6,14.4v153.6c0,8.8-7.2,16-16,16c-8.8,0-16-7.2-16-16v-192c0-8.8,7.2-16,16-16c8.8,0,16,7.2,16,16v6.4 c20.2-4,32.2-14.4,57.6-14.4c31.2,0,43.2,16,74.6,16c18.6,0,28.2-4.8,59.8-16V312.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-font-awesome-stroke": { + "aliases": { + "names": [ + "font-awesome-alt" + ] + }, + "changes": [ + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f35c", + "label": "Font Awesome in Square with Stroke Outline", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.6,152c-25.4,0-37.4,10.4-57.6,14.4V160c0-8.8-7.2-16-16-16s-16,7.2-16,16v192c0,0.8,0.1,1.6,0.2,2.4 c0.1,0.4,0.1,0.8,0.2,1.2c1.6,7.1,8,12.4,15.6,12.4s14-5.3,15.6-12.4c0.1-0.4,0.2-0.8,0.2-1.2c0.1-0.8,0.2-1.6,0.2-2.4V198.4 c4-0.8,7.7-1.8,11.2-3c14.3-4.7,26-11.4,46.4-11.4c31.4,0,43.2,16,74.6,16c8.9,0,15.9-1.1,24.2-3.5c1.2-0.3,2.4-0.7,3.6-1.1v96 c-10,3.2-17.6,4.6-27.8,4.6c-31.4,0-43.4-16-74.6-16c-10.2,0-18.2,1.8-25.6,4v32c7.4-2.4,15.4-4,25.6-4c31.4,0,43.2,16,74.6,16 c18.6,0,28.2-4.8,59.8-16V152c-31.6,11.2-41.2,16-59.8,16C244.8,168,232.8,152,201.6,152z M384,32H64C28.7,32,0,60.7,0,96v320 c0,35.3,28.7,64,64,64h320c35.3,0,64-28.7,64-64V96C448,60.7,419.3,32,384,32z M416,416c0,17.6-14.4,32-32,32H64 c-17.6,0-32-14.4-32-32V96c0-17.6,14.4-32,32-32h320c17.6,0,32,14.4,32,32V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-full": { + "aliases": { + "unicodes": { + "composite": [ + "1f7e5", + "1f7e6", + "1f7e7", + "1f7e8", + "1f7e9", + "1f7ea", + "1f7eb", + "2b1b", + "2b1c" + ], + "secondary": [ + "10f45c" + ] + } + }, + "changes": [ + "5.0.5", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black large square", + "block", + "blue", + "blue square", + "box", + "brown", + "brown square", + "geometric", + "green", + "green square", + "orange", + "orange square", + "purple", + "purple square", + "red", + "red square", + "shape", + "square", + "white large square", + "yellow", + "yellow square" + ] + }, + "unicode": "f45c", + "label": "Square Full", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 0H512V512H0V0z" + }, + "regular": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 48V464H48V48H464zM48 0H0V48 464v48H48 464h48V464 48 0H464 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-git": { + "aliases": { + "names": [ + "git-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.8.2", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d2", + "label": "Git Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100.59 334.24c48.57 3.31 58.95 2.11 58.95 11.94 0 20-65.55 20.06-65.55 1.52.01-5.09 3.29-9.4 6.6-13.46zm27.95-116.64c-32.29 0-33.75 44.47-.75 44.47 32.51 0 31.71-44.47.75-44.47zM448 80v352a48 48 0 0 1-48 48H48a48 48 0 0 1-48-48V80a48 48 0 0 1 48-48h352a48 48 0 0 1 48 48zm-227 69.31c0 14.49 8.38 22.88 22.86 22.88 14.74 0 23.13-8.39 23.13-22.88S258.62 127 243.88 127c-14.48 0-22.88 7.84-22.88 22.31zM199.18 195h-49.55c-25-6.55-81.56-4.85-81.56 46.75 0 18.8 9.4 32 21.85 38.11C74.23 294.23 66.8 301 66.8 310.6c0 6.87 2.79 13.22 11.18 16.76-8.9 8.4-14 14.48-14 25.92C64 373.35 81.53 385 127.52 385c44.22 0 69.87-16.51 69.87-45.73 0-36.67-28.23-35.32-94.77-39.38l8.38-13.43c17 4.74 74.19 6.23 74.19-42.43 0-11.69-4.83-19.82-9.4-25.67l23.38-1.78zm84.34 109.84l-13-1.78c-3.82-.51-4.07-1-4.07-5.09V192.52h-52.6l-2.79 20.57c15.75 5.55 17 4.86 17 10.17V298c0 5.62-.31 4.58-17 6.87v20.06h72.42zM384 315l-6.87-22.37c-40.93 15.37-37.85-12.41-37.85-16.73v-60.72h37.85v-25.41h-35.82c-2.87 0-2 2.52-2-38.63h-24.18c-2.79 27.7-11.68 38.88-34 41.42v22.62c20.47 0 19.82-.85 19.82 2.54v66.57c0 28.72 11.43 40.91 41.67 40.91 14.45 0 30.45-4.83 41.38-10.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-github": { + "aliases": { + "names": [ + "github-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "unicode": "f092", + "label": "GitHub Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-gitlab": { + "aliases": { + "names": [ + "gitlab-square" + ] + }, + "changes": [ + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5ae", + "label": "Square Gitlab", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 32H400C426.5 32 448 53.5 448 80V432C448 458.5 426.5 480 400 480H48C21.5 480 0 458.5 0 432V80C0 53.5 21.5 32 48 32zM382.1 224.9L337.5 108.5C336.6 106.2 334.9 104.2 332.9 102.9C331.3 101.9 329.5 101.3 327.7 101.1C325.9 100.9 324 101.2 322.3 101.8C320.6 102.5 319 103.5 317.8 104.9C316.6 106.3 315.7 107.9 315.2 109.7L285 201.9H162.1L132.9 109.7C132.4 107.9 131.4 106.3 130.2 104.9C128.1 103.6 127.4 102.5 125.7 101.9C123.1 101.2 122.1 100.1 120.3 101.1C118.5 101.3 116.7 101.9 115.1 102.9C113.1 104.2 111.5 106.2 110.6 108.5L65.94 224.9L65.47 226.1C59.05 242.9 58.26 261.3 63.22 278.6C68.18 295.9 78.62 311.1 92.97 321.9L93.14 322L93.52 322.3L161.4 373.2L215.6 414.1C217.1 415.1 220.9 416.9 223.9 416.9C226.9 416.9 229.9 415.1 232.3 414.1L286.4 373.2L354.8 322L355 321.9C369.4 311 379.8 295.8 384.8 278.6C389.7 261.3 388.1 242.9 382.5 226.1L382.1 224.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-google-plus": { + "aliases": { + "names": [ + "google-plus-square" + ] + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "unicode": "f0d4", + "label": "Google Plus Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-h": { + "aliases": { + "names": [ + "h-square" + ], + "unicodes": { + "secondary": [ + "10f0fd" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "emergency", + "hospital", + "hotel", + "letter", + "map" + ] + }, + "unicode": "f0fd", + "label": "Square H", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM336 152V256 360c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H160l0 80c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-208c0-13.3 10.7-24 24-24s24 10.7 24 24v80H288V152c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-hacker-news": { + "aliases": { + "names": [ + "hacker-news-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3af", + "label": "Hacker News Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-instagram": { + "aliases": { + "names": [ + "instagram-square" + ] + }, + "changes": [ + "5.12.1", + "5.14.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e055", + "label": "Instagram Square", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224,202.66A53.34,53.34,0,1,0,277.36,256,53.38,53.38,0,0,0,224,202.66Zm124.71-41a54,54,0,0,0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31,6.43a54,54,0,0,0-30.41,30.41c-8.28,21-6.43,71.05-6.43,94.33S91,329.26,99.32,350.33a54,54,0,0,0,30.41,30.41c21,8.29,71,6.43,94.31,6.43s73.24,1.93,94.3-6.43a54,54,0,0,0,30.41-30.41c8.35-21,6.43-71.05,6.43-94.33S357.1,182.74,348.75,161.67ZM224,338a82,82,0,1,1,82-82A81.9,81.9,0,0,1,224,338Zm85.38-148.3a19.14,19.14,0,1,1,19.13-19.14A19.1,19.1,0,0,1,309.42,189.74ZM400,32H48A48,48,0,0,0,0,80V432a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V80A48,48,0,0,0,400,32ZM382.88,322c-1.29,25.63-7.14,48.34-25.85,67s-41.4,24.63-67,25.85c-26.41,1.49-105.59,1.49-132,0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61,0-132,1.29-25.63,7.07-48.34,25.85-67s41.47-24.56,67-25.78c26.41-1.49,105.59-1.49,132,0,25.63,1.29,48.33,7.15,67,25.85s24.63,41.42,25.85,67.05C384.37,216.44,384.37,295.56,382.88,322Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-js": { + "aliases": { + "names": [ + "js-square" + ] + }, + "changes": [ + "5.0.0", + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b9", + "label": "JavaScript (JS) Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-lastfm": { + "aliases": { + "names": [ + "lastfm-square" + ] + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.0.11", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f203", + "label": "last.fm Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-minus": { + "aliases": { + "names": [ + "minus-square" + ], + "unicodes": { + "composite": [ + "f147" + ], + "secondary": [ + "10f146" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "delete", + "hide", + "minify", + "negative", + "remove", + "shape", + "trash" + ] + }, + "unicode": "f146", + "label": "Square Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm88 200H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + }, + "regular": { + "lastModified": 1684767553, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64zM0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM152 232H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-nfi": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "non-food item", + "supplies" + ] + }, + "unicode": "e576", + "label": "Square Nfi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm75.7 64.6C68.8 162.5 64 168.8 64 176V336c0 8.8 7.2 16 16 16s16-7.2 16-16V233.8l66.3 110.5c3.7 6.2 11.1 9.1 18 7.2s11.7-8.2 11.7-15.4V176c0-8.8-7.2-16-16-16s-16 7.2-16 16V278.2L93.7 167.8c-3.7-6.2-11.1-9.1-18-7.2zM224 176v64 96c0 8.8 7.2 16 16 16s16-7.2 16-16V256h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H256V192h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H240c-8.8 0-16 7.2-16 16zm160 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V336c0 8.8 7.2 16 16 16s16-7.2 16-16V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-odnoklassniki": { + "aliases": { + "names": [ + "odnoklassniki-square" + ] + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f264", + "label": "Odnoklassniki Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-parking": { + "aliases": { + "names": [ + "parking" + ], + "unicodes": { + "composite": [ + "1f17f" + ], + "secondary": [ + "10f540" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "car", + "garage", + "meter", + "parking" + ] + }, + "unicode": "f540", + "label": "Square Parking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM192 256h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H192v64zm48 64H192v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 168c0-22.1 17.9-40 40-40h72c53 0 96 43 96 96s-43 96-96 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-pen": { + "aliases": { + "names": [ + "pen-square", + "pencil-square" + ], + "unicodes": { + "secondary": [ + "10f14b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pencil-square", + "update", + "write" + ] + }, + "unicode": "f14b", + "label": "Square Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM325.8 139.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-21.4 21.4-71-71 21.4-21.4c15.6-15.6 40.9-15.6 56.6 0zM119.9 289L225.1 183.8l71 71L190.9 359.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-person-confined": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "captivity", + "confined" + ] + }, + "unicode": "e577", + "label": "Square Person Confined", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm96 112a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm80 104c0-30.9 25.1-56 56-56s56 25.1 56 56V350.1c0 36.4-29.5 65.9-65.9 65.9c-17.5 0-34.3-6.9-46.6-19.3L184.8 342l-28.1 56.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l48-96c4.6-9.2 13.3-15.6 23.5-17.3s20.5 1.7 27.8 9L240 306.7V248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-phone": { + "aliases": { + "names": [ + "phone-square" + ], + "unicodes": { + "secondary": [ + "10f098" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f098", + "label": "Square Phone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm90.7 96.7c9.7-2.6 19.9 2.3 23.7 11.6l20 48c3.4 8.2 1 17.6-5.8 23.2L168 231.7c16.6 35.2 45.1 63.7 80.3 80.3l20.2-24.7c5.6-6.8 15-9.2 23.2-5.8l48 20c9.3 3.9 14.2 14 11.6 23.7l-12 44C336.9 378 329 384 320 384C196.3 384 96 283.7 96 160c0-9 6-16.9 14.7-19.3l44-12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-phone-flip": { + "aliases": { + "names": [ + "phone-square-alt" + ], + "unicodes": { + "secondary": [ + "10f87b" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f87b", + "label": "Square Phone Flip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767392, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zm-90.7 96.7c-9.7-2.6-19.9 2.3-23.7 11.6l-20 48c-3.4 8.2-1 17.6 5.8 23.2L280 231.7c-16.6 35.2-45.1 63.7-80.3 80.3l-20.2-24.7c-5.6-6.8-15-9.2-23.2-5.8l-48 20c-9.3 3.9-14.2 14-11.6 23.7l12 44C111.1 378 119 384 128 384c123.7 0 224-100.3 224-224c0-9-6-16.9-14.7-19.3l-44-12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-pied-piper": { + "aliases": { + "names": [ + "pied-piper-square" + ] + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e01e", + "label": "Pied Piper Square Logo (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-pinterest": { + "aliases": { + "names": [ + "pinterest-square" + ] + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f0d3", + "label": "Pinterest Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-plus": { + "aliases": { + "names": [ + "plus-square" + ], + "unicodes": { + "composite": [ + "f196" + ], + "secondary": [ + "10f0fe" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "unicode": "f0fe", + "label": "Square Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM200 344V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H248v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + }, + "regular": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64zM0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM200 344V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H248v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-poll-horizontal": { + "aliases": { + "names": [ + "poll-h" + ], + "unicodes": { + "secondary": [ + "10f682" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "results", + "survey", + "trend", + "vote", + "voting" + ] + }, + "unicode": "f682", + "label": "Square Poll Horizontal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM256 160c0 17.7-14.3 32-32 32l-96 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l96 0c17.7 0 32 14.3 32 32zm64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l192 0zM192 352c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l32 0c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-poll-vertical": { + "aliases": { + "names": [ + "poll" + ], + "unicodes": { + "secondary": [ + "10f681" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "results", + "survey", + "trend", + "vote", + "voting" + ] + }, + "unicode": "f681", + "label": "Square Poll Vertical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 192c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm64-64c0-17.7 14.3-32 32-32s32 14.3 32 32V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V160zM320 288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-reddit": { + "aliases": { + "names": [ + "reddit-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a2", + "label": "reddit Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-root-variable": { + "aliases": { + "names": [ + "square-root-alt" + ], + "unicodes": { + "secondary": [ + "10f698" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "calculus", + "division", + "math" + ] + }, + "unicode": "f698", + "label": "Square Root Variable", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M282.6 78.1c8-27.3 33-46.1 61.4-46.1H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H344L238.7 457c-3.6 12.3-14.1 21.2-26.8 22.8s-25.1-4.6-31.5-15.6L77.6 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H77.6c22.8 0 43.8 12.1 55.3 31.8l65.2 111.8L282.6 78.1zM393.4 233.4c12.5-12.5 32.8-12.5 45.3 0L480 274.7l41.4-41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 320l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 365.3l-41.4 41.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L434.7 320l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-rss": { + "aliases": { + "names": [ + "rss-square" + ], + "unicodes": { + "secondary": [ + "10f143" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed", + "journal", + "news", + "writing" + ] + }, + "unicode": "f143", + "label": "Square Rss", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 136c0-13.3 10.7-24 24-24c137 0 248 111 248 248c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-110.5-89.5-200-200-200c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24c83.9 0 152 68.1 152 152c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-57.4-46.6-104-104-104c-13.3 0-24-10.7-24-24zm0 120a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-share-nodes": { + "aliases": { + "names": [ + "share-alt-square" + ], + "unicodes": { + "secondary": [ + "10f1e1" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f1e1", + "label": "Square Share Nodes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM384 160c0 35.3-28.7 64-64 64c-15.4 0-29.5-5.4-40.6-14.5L194.1 256l85.3 46.5c11-9.1 25.2-14.5 40.6-14.5c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-2.5 .1-4.9 .4-7.3L174.5 300c-11.7 12.3-28.2 20-46.5 20c-35.3 0-64-28.7-64-64s28.7-64 64-64c18.3 0 34.8 7.7 46.5 20l81.9-44.7c-.3-2.4-.4-4.9-.4-7.3c0-35.3 28.7-64 64-64s64 28.7 64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-snapchat": { + "aliases": { + "names": [ + "snapchat-square" + ] + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2ad", + "label": "Snapchat Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384,32H64A64,64,0,0,0,0,96V416a64,64,0,0,0,64,64H384a64,64,0,0,0,64-64V96A64,64,0,0,0,384,32Zm-3.907,319.309-.083.1a32.364,32.364,0,0,1-8.717,6.823,90.26,90.26,0,0,1-20.586,8.2,12.694,12.694,0,0,0-3.852,1.76c-2.158,1.909-2.1,4.64-4.4,8.55a23.137,23.137,0,0,1-6.84,7.471c-6.707,4.632-14.244,4.923-22.23,5.23-7.214.274-15.39.581-24.729,3.669-3.761,1.245-7.753,3.694-12.377,6.533-11.265,6.9-26.68,16.353-52.3,16.353s-40.925-9.4-52.106-16.279c-4.657-2.888-8.675-5.362-12.543-6.64-9.339-3.08-17.516-3.4-24.729-3.67-7.986-.307-15.523-.6-22.231-5.229a23.085,23.085,0,0,1-6.01-6.11c-3.2-4.632-2.855-7.8-5.254-9.895a13.428,13.428,0,0,0-4.1-1.834,89.986,89.986,0,0,1-20.313-8.127,32.905,32.905,0,0,1-8.3-6.284c-6.583-6.757-8.276-14.776-5.686-21.824,3.436-9.338,11.571-12.111,19.4-16.262,14.776-8.027,26.348-18.055,34.433-29.884a68.236,68.236,0,0,0,5.985-10.567c.789-2.158.772-3.329.241-4.416a7.386,7.386,0,0,0-2.208-2.217c-2.532-1.676-5.113-3.353-6.882-4.5-3.27-2.141-5.868-3.818-7.529-4.98-6.267-4.383-10.65-9.04-13.4-14.245a28.4,28.4,0,0,1-1.369-23.584c4.134-10.924,14.469-17.706,26.978-17.706a37.141,37.141,0,0,1,7.845.83c.689.15,1.37.307,2.042.482-.108-7.43.058-15.357.722-23.119,2.358-27.261,11.912-41.589,21.874-52.994a86.836,86.836,0,0,1,22.28-17.931C188.254,100.383,205.312,96,224,96s35.828,4.383,50.944,13.016a87.169,87.169,0,0,1,22.239,17.9c9.961,11.406,19.516,25.709,21.874,52.995a231.194,231.194,0,0,1,.713,23.118c.673-.174,1.362-.332,2.051-.481a37.131,37.131,0,0,1,7.844-.83c12.5,0,22.82,6.782,26.971,17.706a28.37,28.37,0,0,1-1.4,23.559c-2.74,5.2-7.123,9.861-13.39,14.244-1.668,1.187-4.258,2.864-7.529,4.981-1.835,1.187-4.541,2.947-7.164,4.682a6.856,6.856,0,0,0-1.951,2.034c-.506,1.046-.539,2.191.166,4.208a69.015,69.015,0,0,0,6.085,10.792c8.268,12.1,20.188,22.313,35.454,30.407,1.486.772,2.98,1.5,4.441,2.258.722.332,1.569.763,2.491,1.3,4.9,2.723,9.2,6.01,11.455,12.153C387.821,336.915,386.269,344.7,380.093,351.309Zm-16.719-18.461c-50.313-24.314-58.332-61.918-58.689-64.749-.431-3.379-.921-6.035,2.806-9.472,3.594-3.328,19.541-13.19,23.965-16.278,7.33-5.114,10.534-10.219,8.16-16.495-1.66-4.316-5.686-5.976-9.961-5.976a18.5,18.5,0,0,0-3.993.448c-8.035,1.743-15.838,5.769-20.354,6.857a7.1,7.1,0,0,1-1.66.224c-2.408,0-3.279-1.071-3.088-3.968.564-8.783,1.759-25.925.373-41.937-1.884-22.032-8.99-32.948-17.432-42.6-4.051-4.624-23.135-24.654-59.536-24.654S168.53,134.359,164.479,139c-8.434,9.654-15.531,20.57-17.432,42.6-1.386,16.013-.141,33.147.373,41.937.166,2.756-.68,3.968-3.088,3.968a7.1,7.1,0,0,1-1.66-.224c-4.507-1.087-12.31-5.113-20.346-6.856a18.494,18.494,0,0,0-3.993-.449c-4.25,0-8.3,1.636-9.961,5.977-2.374,6.276.847,11.381,8.168,16.494,4.425,3.088,20.371,12.958,23.966,16.279,3.719,3.437,3.237,6.093,2.805,9.471-.356,2.79-8.384,40.394-58.689,64.749-2.946,1.428-7.96,4.45.88,9.331,13.88,7.628,23.111,6.807,30.3,11.43,6.093,3.927,2.5,12.394,6.923,15.449,5.454,3.76,21.583-.266,42.335,6.6,17.433,5.744,28.116,22.015,58.963,22.015s41.788-16.3,58.938-21.973c20.795-6.865,36.89-2.839,42.336-6.6,4.433-3.055.822-11.522,6.923-15.448,7.181-4.624,16.411-3.8,30.3-11.472C371.36,337.355,366.346,334.333,363.374,332.848Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-steam": { + "aliases": { + "names": [ + "steam-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b7", + "label": "Steam Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-threads": { + "changes": [ + "6.4.1", + "6.4.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e619", + "label": "Square Threads", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1690904784, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM294.2 244.3c19.5 9.3 33.7 23.5 41.2 40.9c10.4 24.3 11.4 63.9-20.2 95.4c-24.2 24.1-53.5 35-95.1 35.3h-.2c-46.8-.3-82.8-16.1-106.9-46.8C91.5 341.8 80.4 303.7 80 256v-.1-.1c.4-47.7 11.5-85.7 33-113.1c24.2-30.7 60.2-46.5 106.9-46.8h.2c46.9 .3 83.3 16 108.2 46.6c12.3 15.1 21.3 33.3 27 54.4l-26.9 7.2c-4.7-17.2-11.9-31.9-21.4-43.6c-19.4-23.9-48.7-36.1-87-36.4c-38 .3-66.8 12.5-85.5 36.2c-17.5 22.3-26.6 54.4-26.9 95.5c.3 41.1 9.4 73.3 26.9 95.5c18.7 23.8 47.4 36 85.5 36.2c34.3-.3 56.9-8.4 75.8-27.3c21.5-21.5 21.1-47.9 14.2-64c-4-9.4-11.4-17.3-21.3-23.3c-2.4 18-7.9 32.2-16.5 43.2c-11.4 14.5-27.7 22.4-48.4 23.5c-15.7 .9-30.8-2.9-42.6-10.7c-13.9-9.2-22-23.2-22.9-39.5c-1.7-32.2 23.8-55.3 63.5-57.6c14.1-.8 27.3-.2 39.5 1.9c-1.6-9.9-4.9-17.7-9.8-23.4c-6.7-7.8-17.1-11.8-30.8-11.9h-.4c-11 0-26 3.1-35.6 17.6l-23-15.8c12.8-19.4 33.6-30.1 58.5-30.1h.6c41.8 .3 66.6 26.3 69.1 71.8c1.4 .6 2.8 1.2 4.2 1.9l.1 .5zm-71.8 67.5c17-.9 36.4-7.6 39.7-48.8c-8.8-1.9-18.6-2.9-29-2.9c-3.2 0-6.4 .1-9.6 .3c-28.6 1.6-38.1 15.5-37.4 27.9c.9 16.7 19 24.5 36.4 23.6l-.1-.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-tumblr": { + "aliases": { + "names": [ + "tumblr-square" + ] + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f174", + "label": "Tumblr Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-twitter": { + "aliases": { + "names": [ + "twitter-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.1.2", + "6.4.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "unicode": "f081", + "label": "Square Twitter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1690904784, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM351.3 199.3v0c0 86.7-66 186.6-186.6 186.6c-37.2 0-71.7-10.8-100.7-29.4c5.3 .6 10.4 .8 15.8 .8c30.7 0 58.9-10.4 81.4-28c-28.8-.6-53-19.5-61.3-45.5c10.1 1.5 19.2 1.5 29.6-1.2c-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3c-9-6-16.4-14.1-21.5-23.6s-7.8-20.2-7.7-31c0-12.2 3.2-23.4 8.9-33.1c32.3 39.8 80.8 65.8 135.2 68.6c-9.3-44.5 24-80.6 64-80.6c18.9 0 35.9 7.9 47.9 20.7c14.8-2.8 29-8.3 41.6-15.8c-4.9 15.2-15.2 28-28.8 36.1c13.2-1.4 26-5.1 37.8-10.2c-8.9 13.1-20.1 24.7-32.9 34c.2 2.8 .2 5.7 .2 8.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-up-right": { + "aliases": { + "names": [ + "external-link-square-alt" + ], + "unicodes": { + "composite": [ + "2197" + ], + "secondary": [ + "10f360" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "diagonal", + "direction", + "external-link-square", + "intercardinal", + "new", + "northeast", + "open", + "share", + "up-right arrow" + ] + }, + "unicode": "f360", + "label": "Square Up Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766332, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM320 313.4V176c0-8.8-7.2-16-16-16H166.6c-12.5 0-22.6 10.1-22.6 22.6c0 6 2.4 11.8 6.6 16L184 232l-66.3 66.3C114 302 112 306.9 112 312s2 10 5.7 13.7l36.7 36.7c3.6 3.6 8.5 5.7 13.7 5.7s10-2 13.7-5.7L248 296l33.4 33.4c4.2 4.2 10 6.6 16 6.6c12.5 0 22.6-10.1 22.6-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-viadeo": { + "aliases": { + "names": [ + "viadeo-square" + ] + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.7.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2aa", + "label": "Viadeo Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-vimeo": { + "aliases": { + "names": [ + "vimeo-square" + ] + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f194", + "label": "Vimeo Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-virus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coronavirus", + "covid-19", + "disease", + "flu", + "infection", + "pandemic" + ] + }, + "unicode": "e578", + "label": "Square Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM223.8 93.7c13.3 0 24 10.7 24 24c0 29.3 35.4 43.9 56.1 23.2c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-20.7 20.7-6 56.1 23.2 56.1c13.3 0 24 10.7 24 24s-10.7 24-24 24c-29.3 0-43.9 35.4-23.2 56.1c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-20.7-20.7-56.1-6-56.1 23.2c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-29.3-35.4-43.9-56.1-23.2c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9c20.7-20.7 6-56.1-23.2-56.1c-13.3 0-24-10.7-24-24s10.7-24 24-24c29.3 0 43.9-35.4 23.2-56.1c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0c20.7 20.7 56.1 6 56.1-23.2c0-13.3 10.7-24 24-24zM192 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm88 32a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-whatsapp": { + "aliases": { + "names": [ + "whatsapp-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40c", + "label": "What's App Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-x-twitter": { + "changes": [ + "6.4.2" + ], + "ligatures": [], + "search": { + "terms": [ + " elon", + " x", + "twitter" + ] + }, + "unicode": "e61a", + "label": "Square X Twitter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1690904784, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm297.1 84L257.3 234.6 379.4 396H283.8L209 298.1 123.3 396H75.8l111-126.9L69.7 116h98l67.7 89.5L313.6 116h47.5zM323.3 367.6L153.4 142.9H125.1L296.9 367.6h26.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-xing": { + "aliases": { + "names": [ + "xing-square" + ] + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f169", + "label": "Xing Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-xmark": { + "aliases": { + "names": [ + "times-square", + "xmark-square" + ], + "unicodes": { + "composite": [ + "274e" + ], + "secondary": [ + "10f2d3" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "cross mark button", + "incorrect", + "mark", + "notice", + "notification", + "notify", + "problem", + "square", + "window", + "wrong", + "x", + "×" + ] + }, + "unicode": "f2d3", + "label": "Square Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm79 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-youtube": { + "aliases": { + "names": [ + "youtube-square" + ], + "unicodes": { + "composite": [ + "f166" + ] + } + }, + "changes": [ + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f431", + "label": "YouTube Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "squarespace": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5be", + "label": "Squarespace", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stack-exchange": { + "changes": [ + "4.0.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f18d", + "label": "Stack Exchange", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stack-overflow": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16c", + "label": "Stack Overflow", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M290.7 311L95 269.7 86.8 309l195.7 41zm51-87L188.2 95.7l-25.5 30.8 153.5 128.3zm-31.2 39.7L129.2 179l-16.7 36.5L293.7 300zM262 32l-32 24 119.3 160.3 32-24zm20.5 328h-200v39.7h200zm39.7 80H42.7V320h-40v160h359.5V320h-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stackpath": { + "changes": [ + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f842", + "label": "Stackpath", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M244.6 232.4c0 8.5-4.26 20.49-21.34 20.49h-19.61v-41.47h19.61c17.13 0 21.34 12.36 21.34 20.98zM448 32v448H0V32zM151.3 287.84c0-21.24-12.12-34.54-46.72-44.85-20.57-7.41-26-10.91-26-18.63s7-14.61 20.41-14.61c14.09 0 20.79 8.45 20.79 18.35h30.7l.19-.57c.5-19.57-15.06-41.65-51.12-41.65-23.37 0-52.55 10.75-52.55 38.29 0 19.4 9.25 31.29 50.74 44.37 17.26 6.15 21.91 10.4 21.91 19.48 0 15.2-19.13 14.23-19.47 14.23-20.4 0-25.65-9.1-25.65-21.9h-30.8l-.18.56c-.68 31.32 28.38 45.22 56.63 45.22 29.98 0 51.12-13.55 51.12-38.29zm125.38-55.63c0-25.3-18.43-45.46-53.42-45.46h-51.78v138.18h32.17v-47.36h19.61c30.25 0 53.42-15.95 53.42-45.36zM297.94 325L347 186.78h-31.09L268 325zm106.52-138.22h-31.09L325.46 325h29.94z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "staff-snake": { + "aliases": { + "names": [ + "rod-asclepius", + "rod-snake", + "staff-aesculapius" + ] + }, + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "asclepius", + "asklepian", + "health", + "serpent", + "wellness" + ] + }, + "unicode": "e579", + "label": "Staff Snake", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M222.6 43.2l-.1 4.8H288c53 0 96 43 96 96s-43 96-96 96H248V160h40c8.8 0 16-7.2 16-16s-7.2-16-16-16H248 220l-4.5 144H256c53 0 96 43 96 96s-43 96-96 96H240V384h16c8.8 0 16-7.2 16-16s-7.2-16-16-16H213l-3.1 99.5L208.5 495l0 1c-.3 8.9-7.6 16-16.5 16s-16.2-7.1-16.5-16l0-1-1-31H136c-22.1 0-40-17.9-40-40s17.9-40 40-40h36l-1-32H152c-53 0-96-43-96-96c0-47.6 34.6-87.1 80-94.7V256c0 8.8 7.2 16 16 16h16.5L164 128H136 122.6c-9 18.9-28.3 32-50.6 32H56c-30.9 0-56-25.1-56-56S25.1 48 56 48h8 8 89.5l-.1-4.8L161 32c0-.7 0-1.3 0-1.9c.5-16.6 14.1-30 31-30s30.5 13.4 31 30c0 .6 0 1.3 0 1.9l-.4 11.2zM64 112a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stairs": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "steps", + "up" + ] + }, + "unicode": "e289", + "label": "Stairs", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 64c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v96c0 17.7-14.3 32-32 32H320v96c0 17.7-14.3 32-32 32H192v96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96V320c0-17.7 14.3-32 32-32h96V192c0-17.7 14.3-32 32-32h96V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stamp": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bf" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "certificate", + "imprint", + "rubber", + "seal" + ] + }, + "unicode": "f5bf", + "label": "Stamp", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M312 201.8c0-17.4 9.2-33.2 19.9-47C344.5 138.5 352 118.1 352 96c0-53-43-96-96-96s-96 43-96 96c0 22.1 7.5 42.5 20.1 58.8c10.7 13.8 19.9 29.6 19.9 47c0 29.9-24.3 54.2-54.2 54.2H112C50.1 256 0 306.1 0 368c0 20.9 13.4 38.7 32 45.3V464c0 26.5 21.5 48 48 48H432c26.5 0 48-21.5 48-48V413.3c18.6-6.6 32-24.4 32-45.3c0-61.9-50.1-112-112-112H366.2c-29.9 0-54.2-24.3-54.2-54.2zM416 416v32H96V416H416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stapler": { + "changes": [ + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "desktop", + "milton", + "office", + "paperclip", + "staple" + ] + }, + "unicode": "e5af", + "label": "Stapler", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 299.3V304 432c0 26.5-21.5 48-48 48H512 448 64c-17.7 0-32-14.3-32-32s14.3-32 32-32H448V368H96c-17.7 0-32-14.3-32-32V219.4L33.8 214C14.2 210.5 0 193.5 0 173.7c0-8.9 2.9-17.5 8.2-24.6l35.6-47.5C76.7 57.8 128.2 32 182.9 32c27 0 53.6 6.3 77.8 18.4L586.9 213.5C619.5 229.7 640 263 640 299.3zM448 304V288L128 230.9V304H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "star": { + "aliases": { + "unicodes": { + "composite": [ + "2b50", + "f006" + ], + "secondary": [ + "10f005" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "favorite", + "important", + "night", + "rating", + "score", + "star" + ] + }, + "unicode": "f005", + "label": "Star", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z" + }, + "regular": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M287.9 0c9.2 0 17.6 5.2 21.6 13.5l68.6 141.3 153.2 22.6c9 1.3 16.5 7.6 19.3 16.3s.5 18.1-5.9 24.5L433.6 328.4l26.2 155.6c1.5 9-2.2 18.1-9.6 23.5s-17.3 6-25.3 1.7l-137-73.2L151 509.1c-8.1 4.3-17.9 3.7-25.3-1.7s-11.2-14.5-9.7-23.5l26.2-155.6L31.1 218.2c-6.5-6.4-8.7-15.9-5.9-24.5s10.3-14.9 19.3-16.3l153.2-22.6L266.3 13.5C270.4 5.2 278.7 0 287.9 0zm0 79L235.4 187.2c-3.5 7.1-10.2 12.1-18.1 13.3L99 217.9 184.9 303c5.5 5.5 8.1 13.3 6.8 21L171.4 443.7l105.2-56.2c7.1-3.8 15.6-3.8 22.6 0l105.2 56.2L384.2 324.1c-1.3-7.7 1.2-15.5 6.8-21l85.9-85.1L358.6 200.5c-7.8-1.2-14.6-6.1-18.1-13.3L287.9 79z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "star-and-crescent": { + "aliases": { + "unicodes": { + "composite": [ + "262a" + ], + "secondary": [ + "10f699" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "islam", + "muslim", + "religion", + "star and crescent" + ] + }, + "unicode": "f699", + "label": "Star And Crescent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767603, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 114.6 114.6 0 256 0c33 0 64.6 6.3 93.6 17.7c7.4 2.9 11.5 10.7 9.8 18.4s-8.8 13-16.7 12.4c-4.8-.3-9.7-.5-14.6-.5c-114.9 0-208 93.1-208 208s93.1 208 208 208c4.9 0 9.8-.2 14.6-.5c7.9-.5 15 4.7 16.7 12.4s-2.4 15.5-9.8 18.4C320.6 505.7 289 512 256 512C114.6 512 0 397.4 0 256zM375.4 137.4c3.5-7.1 13.7-7.1 17.2 0l31.5 63.8c1.4 2.8 4.1 4.8 7.2 5.3l70.4 10.2c7.9 1.1 11 10.8 5.3 16.4l-50.9 49.6c-2.3 2.2-3.3 5.4-2.8 8.5l12 70.1c1.3 7.8-6.9 13.8-13.9 10.1l-63-33.1c-2.8-1.5-6.1-1.5-8.9 0l-63 33.1c-7 3.7-15.3-2.3-13.9-10.1l12-70.1c.5-3.1-.5-6.3-2.8-8.5L261 233.1c-5.7-5.6-2.6-15.2 5.3-16.4l70.4-10.2c3.1-.5 5.8-2.4 7.2-5.3l31.5-63.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "star-half": { + "aliases": { + "unicodes": { + "composite": [ + "f123" + ], + "secondary": [ + "10f089" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "unicode": "f089", + "label": "Star Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0c-12.2 .1-23.3 7-28.6 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3L288 439.8V0zM429.9 512c1.1 .1 2.1 .1 3.2 0h-3.2z" + }, + "regular": { + "lastModified": 1684767551, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M293.3 .6c10.9 2.5 18.6 12.2 18.6 23.4V408.7c0 8.9-4.9 17-12.7 21.2L151 509.1c-8.1 4.3-17.9 3.7-25.3-1.7s-11.2-14.5-9.7-23.5l26.2-155.6L31.1 218.2c-6.5-6.4-8.7-15.9-5.9-24.5s10.3-14.9 19.3-16.3l153.2-22.6L266.3 13.5c4.9-10.1 16.1-15.4 27-12.9zM263.9 128.4l-28.6 58.8c-3.5 7.1-10.2 12.1-18.1 13.3L99 217.9 184.9 303c5.5 5.5 8.1 13.3 6.8 21L171.4 443.7l92.5-49.4V128.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "star-half-stroke": { + "aliases": { + "names": [ + "star-half-alt" + ], + "unicodes": { + "secondary": [ + "10f5c0" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "unicode": "f5c0", + "label": "Star Half Stroke", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 376.4l.1-.1 26.4 14.1 85.2 45.5-16.5-97.6-4.8-28.7 20.7-20.5 70.1-69.3-96.1-14.2-29.3-4.3-12.9-26.6L320.1 86.9l-.1 .3V376.4zm175.1 98.3c2 12-3 24.2-12.9 31.3s-23 8-33.8 2.3L320.1 439.8 191.8 508.3C181 514 167.9 513.1 158 506s-14.9-19.3-12.9-31.3L169.8 329 65.6 225.9c-8.6-8.5-11.7-21.2-7.9-32.7s13.7-19.9 25.7-21.7L227 150.3 291.4 18c5.4-11 16.5-18 28.8-18s23.4 7 28.8 18l64.3 132.3 143.6 21.2c12 1.8 22 10.2 25.7 21.7s.7 24.2-7.9 32.7L470.5 329l24.6 145.7z" + }, + "regular": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M341.5 13.5C337.5 5.2 329.1 0 319.9 0s-17.6 5.2-21.6 13.5L229.7 154.8 76.5 177.5c-9 1.3-16.5 7.6-19.3 16.3s-.5 18.1 5.9 24.5L174.2 328.4 148 483.9c-1.5 9 2.2 18.1 9.7 23.5s17.3 6 25.3 1.7l137-73.2 137 73.2c8.1 4.3 17.9 3.7 25.3-1.7s11.2-14.5 9.7-23.5L465.6 328.4 576.8 218.2c6.5-6.4 8.7-15.9 5.9-24.5s-10.3-14.9-19.3-16.3L410.1 154.8 341.5 13.5zM320 384.7V79.1l52.5 108.1c3.5 7.1 10.2 12.1 18.1 13.3l118.3 17.5L423 303c-5.5 5.5-8.1 13.3-6.8 21l20.2 119.6L331.2 387.5c-3.5-1.9-7.4-2.8-11.2-2.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "star-of-david": { + "aliases": { + "unicodes": { + "composite": [ + "2721" + ], + "secondary": [ + "10f69a" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "David", + "Jew", + "Jewish", + "jewish", + "judaism", + "religion", + "star", + "star of David" + ] + }, + "unicode": "f69a", + "label": "Star Of David", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M404.2 309.5L383.1 344h42.3l-21.1-34.5zM371.4 256l-54-88H194.6l-54 88 54 88H317.4l54-88zm65.7 0l53.4 87c3.6 5.9 5.5 12.7 5.5 19.6c0 20.7-16.8 37.4-37.4 37.4H348.7l-56.2 91.5C284.8 504.3 270.9 512 256 512s-28.8-7.7-36.6-20.5L163.3 400H53.4C32.8 400 16 383.2 16 362.6c0-6.9 1.9-13.7 5.5-19.6l53.4-87L21.5 169c-3.6-5.9-5.5-12.7-5.5-19.6C16 128.8 32.8 112 53.4 112H163.3l56.2-91.5C227.2 7.7 241.1 0 256 0s28.8 7.7 36.6 20.5L348.7 112H458.6c20.7 0 37.4 16.8 37.4 37.4c0 6.9-1.9 13.7-5.5 19.6l-53.4 87zm-54-88l21.1 34.5L425.4 168H383.1zM283 112L256 68l-27 44h54zM128.9 168H86.6l21.1 34.5L128.9 168zM107.8 309.5L86.6 344h42.3l-21.1-34.5zM229 400l27 44 27-44H229z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "star-of-life": { + "aliases": { + "unicodes": { + "secondary": [ + "10f621" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "emt", + "first aid", + "health", + "medical" + ] + }, + "unicode": "f621", + "label": "Star Of Life", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V172.9l122-70.4c15.3-8.8 34.9-3.6 43.7 11.7l16 27.7c8.8 15.3 3.6 34.9-11.7 43.7L352 256l122 70.4c15.3 8.8 20.5 28.4 11.7 43.7l-16 27.7c-8.8 15.3-28.4 20.6-43.7 11.7L304 339.1V480c0 17.7-14.3 32-32 32H240c-17.7 0-32-14.3-32-32V339.1L86 409.6c-15.3 8.8-34.9 3.6-43.7-11.7l-16-27.7c-8.8-15.3-3.6-34.9 11.7-43.7L160 256 38 185.6c-15.3-8.8-20.5-28.4-11.7-43.7l16-27.7C51.1 98.8 70.7 93.6 86 102.4l122 70.4V32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "staylinked": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f5", + "label": "StayLinked", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 440, + 512 + ], + "width": 440, + "height": 512, + "path": "M382.7 292.5l2.7 2.7-170-167.3c-3.5-3.5-9.7-3.7-13.8-.5L144.3 171c-4.2 3.2-4.6 8.7-1.1 12.2l68.1 64.3c3.6 3.5 9.9 3.7 14 .5l.1-.1c4.1-3.2 10.4-3 14 .5l84 81.3c3.6 3.5 3.2 9-.9 12.2l-93.2 74c-4.2 3.3-10.5 3.1-14.2-.4L63.2 268c-3.5-3.5-9.7-3.7-13.9-.5L3.5 302.4c-4.2 3.2-4.7 8.7-1.2 12.2L211 510.7s7.4 6.8 17.3-.8l198-163.9c4-3.2 4.4-8.7.7-12.2zm54.5-83.4L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7 171.7 165.1c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "steam": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b6", + "label": "Steam", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "steam-symbol": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f6", + "label": "Steam Symbol", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sterling-sign": { + "aliases": { + "names": [ + "gbp", + "pound-sign" + ], + "unicodes": { + "composite": [ + "a3" + ], + "secondary": [ + "10f154" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pound Sign", + "currency" + ] + }, + "unicode": "f154", + "label": "Sterling Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v44.5c0 17.4-4.7 34.5-13.7 49.4L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1C104.1 390 112 361.5 112 332.5V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stethoscope": { + "aliases": { + "unicodes": { + "composite": [ + "1fa7a" + ], + "secondary": [ + "10f0f1" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "diagnosis", + "doctor", + "general practitioner", + "heart", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient", + "stethoscope" + ] + }, + "unicode": "f0f1", + "label": "Stethoscope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M142.4 21.9c5.6 16.8-3.5 34.9-20.2 40.5L96 71.1V192c0 53 43 96 96 96s96-43 96-96V71.1l-26.1-8.7c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l26.1 8.7C334.4 19.1 352 43.5 352 71.1V192c0 77.2-54.6 141.6-127.3 156.7C231 404.6 278.4 448 336 448c61.9 0 112-50.1 112-112V265.3c-28.3-12.3-48-40.5-48-73.3c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V336c0 97.2-78.8 176-176 176c-92.9 0-168.9-71.9-175.5-163.1C87.2 334.2 32 269.6 32 192V71.1c0-27.5 17.6-52 43.8-60.7l26.1-8.7c16.8-5.6 34.9 3.5 40.5 20.2zM480 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sticker-mule": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f7", + "label": "Sticker Mule", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M561.7 199.6c-1.3.3.3 0 0 0zm-6.2-77.4c-7.7-22.3-5.1-7.2-13.4-36.9-1.6-6.5-3.6-14.5-6.2-20-4.4-8.7-4.6-7.5-4.6-9.5 0-5.3 30.7-45.3 19-46.9-5.7-.6-12.2 11.6-20.6 17-8.6 4.2-8 5-10.3 5-2.6 0-5.7-3-6.2-5-2-5.7 1.9-25.9-3.6-25.9-3.6 0-12.3 24.8-17 25.8-5.2 1.3-27.9-11.4-75.1 18-25.3 13.2-86.9 65.2-87 65.3-6.7 4.7-20 4.7-35.5 16-44.4 30.1-109.6 9.4-110.7 9-110.6-26.8-128-15.2-159 11.5-20.8 17.9-23.7 36.5-24.2 38.9-4.2 20.4 5.2 48.3 6.7 64.3 1.8 19.3-2.7 17.7 7.7 98.3.5 1 4.1 0 5.1 1.5 0 8.4-3.8 12.1-4.1 13-1.5 4.5-1.5 10.5 0 16 2.3 8.2 8.2 37.2 8.2 46.9 0 41.8.4 44 2.6 49.4 3.9 10 12.5 9.1 17 12 3.1 3.5-.5 8.5 1 12.5.5 2 3.6 4 6.2 5 9.2 3.6 27 .3 29.9-2.5 1.6-1.5.5-4.5 3.1-5 5.1 0 10.8-.5 14.4-2.5 5.1-2.5 4.1-6 1.5-10.5-.4-.8-7-13.3-9.8-16-2.1-2-5.1-3-7.2-4.5-5.8-4.9-10.3-19.4-10.3-19.5-4.6-19.4-10.3-46.3-4.1-66.8 4.6-17.2 39.5-87.7 39.6-87.8 4.1-6.5 17-11.5 27.3-7 6 1.9 19.3 22 65.4 30.9 47.9 8.7 97.4-2 112.2-2 2.8 2-1.9 13-.5 38.9 0 26.4-.4 13.7-4.1 29.9-2.2 9.7 3.4 23.2-1.5 46.9-1.4 9.8-9.9 32.7-8.2 43.4.5 1 1 2 1.5 3.5.5 4.5 1.5 8.5 4.6 10 7.3 3.6 12-3.5 9.8 11.5-.7 3.1-2.6 12 1.5 15 4.4 3.7 30.6 3.4 36.5.5 2.6-1.5 1.6-4.5 6.4-7.4 1.9-.9 11.3-.4 11.3-6.5.3-1.8-9.2-19.9-9.3-20-2.6-3.5-9.2-4.5-11.3-8-6.9-10.1-1.7-52.6.5-59.4 3-11 5.6-22.4 8.7-32.4 11-42.5 10.3-50.6 16.5-68.3.8-1.8 6.4-23.1 10.3-29.9 9.3-17 21.7-32.4 33.5-47.4 18-22.9 34-46.9 52-69.8 6.1-7 8.2-13.7 18-8 10.8 5.7 21.6 7 31.9 17 14.6 12.8 10.2 18.2 11.8 22.9 1.5 5 7.7 10.5 14.9 9.5 10.4-2 13-2.5 13.4-2.5 2.6-.5 5.7-5 7.2-8 3.1-5.5 7.2-9 7.2-16.5 0-7.7-.4-2.8-20.6-52.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stop": { + "aliases": { + "unicodes": { + "composite": [ + "23f9" + ], + "secondary": [ + "10f04d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "square", + "stop", + "stop button" + ] + }, + "unicode": "f04d", + "label": "Stop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stopwatch": { + "aliases": { + "unicodes": { + "composite": [ + "23f1" + ], + "secondary": [ + "10f2f2" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clock", + "reminder", + "stopwatch", + "time" + ] + }, + "unicode": "f2f2", + "label": "Stopwatch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767328, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M176 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16V98.4C92.3 113.8 16 200 16 304c0 114.9 93.1 208 208 208s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L355.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32s-14.3-32-32-32H224 176zm72 192V320c0 13.3-10.7 24-24 24s-24-10.7-24-24V192c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stopwatch-20": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06f" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ABCs", + "countdown", + "covid-19", + "happy birthday", + "i will survive", + "reminder", + "seconds", + "time", + "timer" + ] + }, + "unicode": "e06f", + "label": "Stopwatch 20", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767327, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M176 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16V98.4C92.3 113.8 16 200 16 304c0 114.9 93.1 208 208 208s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L355.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32s-14.3-32-32-32H176zM288 204c28.7 0 52 23.3 52 52v96c0 28.7-23.3 52-52 52s-52-23.3-52-52V256c0-28.7 23.3-52 52-52zm-12 52v96c0 6.6 5.4 12 12 12s12-5.4 12-12V256c0-6.6-5.4-12-12-12s-12 5.4-12 12zM159.5 244c-5.4 0-10.2 3.5-11.9 8.6l-.6 1.7c-3.5 10.5-14.8 16.1-25.3 12.6s-16.1-14.8-12.6-25.3l.6-1.7c7.2-21.5 27.2-35.9 49.8-35.9c29 0 52.5 23.5 52.5 52.5v2.2c0 13.4-4.9 26.4-13.8 36.4l-39 43.9c-6.2 7-10 15.7-10.9 24.9H192c11 0 20 9 20 20s-9 20-20 20H128c-11 0-20-9-20-20V368.3c0-20.6 7.5-40.4 21.2-55.8l39-43.9c2.4-2.7 3.7-6.2 3.7-9.8v-2.2c0-6.9-5.6-12.5-12.5-12.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "store": { + "aliases": { + "unicodes": { + "secondary": [ + "10f54e" + ] + } + }, + "changes": [ + "5.0.13", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "market", + "purchase", + "shopping", + "store" + ] + }, + "unicode": "f54e", + "label": "Store", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M547.6 103.8L490.3 13.1C485.2 5 476.1 0 466.4 0H109.6C99.9 0 90.8 5 85.7 13.1L28.3 103.8c-29.6 46.8-3.4 111.9 51.9 119.4c4 .5 8.1 .8 12.1 .8c26.1 0 49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29c26.1 0 49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29c26.2 0 49.3-11.4 65.2-29c16 17.6 39.1 29 65.2 29c4.1 0 8.1-.3 12.1-.8c55.5-7.4 81.8-72.5 52.1-119.4zM499.7 254.9l-.1 0c-5.3 .7-10.7 1.1-16.2 1.1c-12.4 0-24.3-1.9-35.4-5.3V384H128V250.6c-11.2 3.5-23.2 5.4-35.6 5.4c-5.5 0-11-.4-16.3-1.1l-.1 0c-4.1-.6-8.1-1.3-12-2.3V384v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V384 252.6c-4 1-8 1.8-12.3 2.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "store-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e071" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "closed", + "covid-19", + "purchase", + "shopping" + ] + }, + "unicode": "e071", + "label": "Store Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.8-68V384 252.6c-4 1-8 1.8-12.3 2.3l-.1 0c-5.3 .7-10.7 1.1-16.2 1.1c-12.4 0-24.3-1.9-35.4-5.3V350.9L301.2 210.7c7-4.4 13.3-9.7 18.8-15.7c15.9 17.6 39.1 29 65.2 29c26.2 0 49.3-11.4 65.2-29c16 17.6 39.1 29 65.2 29c4.1 0 8.1-.3 12.1-.8c55.5-7.4 81.8-72.5 52.1-119.4L522.3 13.1C517.2 5 508.1 0 498.4 0H141.6c-9.7 0-18.8 5-23.9 13.1l-22.7 36L38.8 5.1zm73.4 218.1c4 .5 8.1 .8 12.1 .8c11 0 21.4-2 31-5.6L48.9 134.5c-6.1 40.6 19.5 82.8 63.3 88.7zM160 384V250.6c-11.2 3.5-23.2 5.4-35.6 5.4c-5.5 0-11-.4-16.3-1.1l-.1 0c-4.1-.6-8.1-1.3-12-2.3V384v64c0 35.3 28.7 64 64 64H480c12.9 0 24.8-3.8 34.9-10.3L365.5 384H160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "strava": { + "changes": [ + "5.0.0", + "5.0.1", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f428", + "label": "Strava", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M158.4 0L7 292h89.2l62.2-116.1L220.1 292h88.5zm150.2 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "street-view": { + "aliases": { + "unicodes": { + "secondary": [ + "10f21d" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "location", + "map", + "navigation" + ] + }, + "unicode": "f21d", + "label": "Street View", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767489, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 64A64 64 0 1 0 192 64a64 64 0 1 0 128 0zm-96 96c-35.3 0-64 28.7-64 64v48c0 17.7 14.3 32 32 32h1.8l11.1 99.5c1.8 16.2 15.5 28.5 31.8 28.5h38.7c16.3 0 30-12.3 31.8-28.5L318.2 304H320c17.7 0 32-14.3 32-32V224c0-35.3-28.7-64-64-64H224zM132.3 394.2c13-2.4 21.7-14.9 19.3-27.9s-14.9-21.7-27.9-19.3c-32.4 5.9-60.9 14.2-82 24.8c-10.5 5.3-20.3 11.7-27.8 19.6C6.4 399.5 0 410.5 0 424c0 21.4 15.5 36.1 29.1 45c14.7 9.6 34.3 17.3 56.4 23.4C130.2 504.7 190.4 512 256 512s125.8-7.3 170.4-19.6c22.1-6.1 41.8-13.8 56.4-23.4c13.7-8.9 29.1-23.6 29.1-45c0-13.5-6.4-24.5-14-32.6c-7.5-7.9-17.3-14.3-27.8-19.6c-21-10.6-49.5-18.9-82-24.8c-13-2.4-25.5 6.3-27.9 19.3s6.3 25.5 19.3 27.9c30.2 5.5 53.7 12.8 69 20.5c3.2 1.6 5.8 3.1 7.9 4.5c3.6 2.4 3.6 7.2 0 9.6c-8.8 5.7-23.1 11.8-43 17.3C374.3 457 318.5 464 256 464s-118.3-7-157.7-17.9c-19.9-5.5-34.2-11.6-43-17.3c-3.6-2.4-3.6-7.2 0-9.6c2.1-1.4 4.8-2.9 7.9-4.5c15.3-7.7 38.8-14.9 69-20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "strikethrough": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0cc" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f0cc", + "label": "Strikethrough", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M161.3 144c3.2-17.2 14-30.1 33.7-38.6c21.1-9 51.8-12.3 88.6-6.5c11.9 1.9 48.8 9.1 60.1 12c17.1 4.5 34.6-5.6 39.2-22.7s-5.6-34.6-22.7-39.2c-14.3-3.8-53.6-11.4-66.6-13.4c-44.7-7-88.3-4.2-123.7 10.9c-36.5 15.6-64.4 44.8-71.8 87.3c-.1 .6-.2 1.1-.2 1.7c-2.8 23.9 .5 45.6 10.1 64.6c4.5 9 10.2 16.9 16.7 23.9H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H270.1c-.1 0-.3-.1-.4-.1l-1.1-.3c-36-10.8-65.2-19.6-85.2-33.1c-9.3-6.3-15-12.6-18.2-19.1c-3.1-6.1-5.2-14.6-3.8-27.4zM348.9 337.2c2.7 6.5 4.4 15.8 1.9 30.1c-3 17.6-13.8 30.8-33.9 39.4c-21.1 9-51.7 12.3-88.5 6.5c-18-2.9-49.1-13.5-74.4-22.1c-5.6-1.9-11-3.7-15.9-5.4c-16.8-5.6-34.9 3.5-40.5 20.3s3.5 34.9 20.3 40.5c3.6 1.2 7.9 2.7 12.7 4.3l0 0 0 0c24.9 8.5 63.6 21.7 87.6 25.6l0 0 .2 0c44.7 7 88.3 4.2 123.7-10.9c36.5-15.6 64.4-44.8 71.8-87.3c3.6-21 2.7-40.4-3.1-58.1H335.1c7 5.6 11.4 11.2 13.9 17.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stripe": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f429", + "label": "Stripe", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M165 144.7l-43.3 9.2-.2 142.4c0 26.3 19.8 43.3 46.1 43.3 14.6 0 25.3-2.7 31.2-5.9v-33.8c-5.7 2.3-33.7 10.5-33.7-15.7V221h33.7v-37.8h-33.7zm89.1 51.6l-2.7-13.1H213v153.2h44.3V233.3c10.5-13.8 28.2-11.1 33.9-9.3v-40.8c-6-2.1-26.7-6-37.1 13.1zm92.3-72.3l-44.6 9.5v36.2l44.6-9.5zM44.9 228.3c0-6.9 5.8-9.6 15.1-9.7 13.5 0 30.7 4.1 44.2 11.4v-41.8c-14.7-5.8-29.4-8.1-44.1-8.1-36 0-60 18.8-60 50.2 0 49.2 67.5 41.2 67.5 62.4 0 8.2-7.1 10.9-17 10.9-14.7 0-33.7-6.1-48.6-14.2v40c16.5 7.1 33.2 10.1 48.5 10.1 36.9 0 62.3-15.8 62.3-47.8 0-52.9-67.9-43.4-67.9-63.4zM640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9zm-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7zm-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8zm-126.7 33.7h44.6V183.2h-44.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stripe-s": { + "changes": [ + "5.0.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42a", + "label": "Stripe S", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M155.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C298.3 7.2 251.1 0 203.8 0 88.1 0 11 60.4 11 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5a396.09 396.09 0 0 0 156 32.4c118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stroopwafel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f551" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caramel", + "cookie", + "dessert", + "sweets", + "waffle" + ] + }, + "unicode": "f551", + "label": "Stroopwafel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM312.6 63.7c-6.2-6.2-16.4-6.2-22.6 0L256 97.6 222.1 63.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l33.9 33.9-45.3 45.3-56.6-56.6c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l56.6 56.6-45.3 45.3L86.3 199.4c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L97.6 256 63.7 289.9c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l33.9-33.9 45.3 45.3-56.6 56.6c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56.6-56.6 45.3 45.3-33.9 33.9c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L256 414.4l33.9 33.9c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-33.9-33.9 45.3-45.3 56.6 56.6c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-56.6-56.6 45.3-45.3 33.9 33.9c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L414.4 256l33.9-33.9c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-33.9 33.9-45.3-45.3 56.6-56.6c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-56.6 56.6-45.3-45.3 33.9-33.9c6.2-6.2 6.2-16.4 0-22.6zM142.9 256l45.3-45.3L233.4 256l-45.3 45.3L142.9 256zm67.9 67.9L256 278.6l45.3 45.3L256 369.1l-45.3-45.3zM278.6 256l45.3-45.3L369.1 256l-45.3 45.3L278.6 256zm22.6-67.9L256 233.4l-45.3-45.3L256 142.9l45.3 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stubber": { + "changes": [ + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5c7", + "label": "Stubber", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1667828915, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M136.5 294.2l58.8 22.9c9.1-36.8 25.4-61.1 55-61.1c49.4 0 71.4 63.6 142.4 63.6c15.6 0 35.9-2.8 55.3-13.3V368c0 61.8-50.4 112-112.3 112H0l41.8-56L0 368l41.7-56L0 256.1l41.8-56L0 144.1 41.8 88 0 32H335.7C397.6 32 448 82.3 448 144.1v51.3c-9.2 36.3-25.9 60.6-55 60.6c-49.6 0-71.6-63.5-142.4-63.5c-35.9 0-95.2 14.6-114.1 101.6h0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "studiovinari": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f8", + "label": "Studio Vinari", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stumbleupon": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a4", + "label": "StumbleUpon Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stumbleupon-circle": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a3", + "label": "StumbleUpon Circle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "subscript": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f12c", + "label": "Subscript", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64C14.3 64 0 78.3 0 96s14.3 32 32 32H47.3l89.6 128L47.3 384H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H304.7L215.1 256l89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H288c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64H32zM480 320c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 361.5 404.3 368 416 368v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "suitcase": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f3" + ], + "secondary": [ + "10f0f2" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "packing", + "suitcase", + "travel", + "trip" + ] + }, + "unicode": "f0f2", + "label": "Suitcase", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 56V96H336V56c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8zM128 96V56c0-30.9 25.1-56 56-56H328c30.9 0 56 25.1 56 56V96v32V480H128V128 96zM64 96H96V480H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64zM448 480H416V96h32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "suitcase-medical": { + "aliases": { + "names": [ + "medkit" + ], + "unicodes": { + "secondary": [ + "10f0fa" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "first aid", + "firstaid", + "health", + "help", + "medical", + "supply", + "support" + ] + }, + "unicode": "f0fa", + "label": "Suitcase Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96v32V480H384V128 96 56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM96 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H96V96zM416 480h32c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H416V480zM224 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V320H176c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "suitcase-rolling": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5c1" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "suitcase", + "travel", + "trip" + ] + }, + "unicode": "f5c1", + "label": "Suitcase Rolling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144 56c0-4.4 3.6-8 8-8h80c4.4 0 8 3.6 8 8v72H144V56zm176 72H288V56c0-30.9-25.1-56-56-56H152C121.1 0 96 25.1 96 56v72H64c-35.3 0-64 28.7-64 64V416c0 35.3 28.7 64 64 64c0 17.7 14.3 32 32 32s32-14.3 32-32H256c0 17.7 14.3 32 32 32s32-14.3 32-32c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64zM112 224H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 128H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sun": { + "aliases": { + "unicodes": { + "composite": [ + "2600" + ], + "secondary": [ + "10f185" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bright", + "brighten", + "contrast", + "day", + "lighter", + "rays", + "sol", + "solar", + "star", + "sun", + "sunny", + "weather" + ] + }, + "unicode": "f185", + "label": "Sun", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M361.5 1.2c5 2.1 8.6 6.6 9.6 11.9L391 121l107.9 19.8c5.3 1 9.8 4.6 11.9 9.6s1.5 10.7-1.6 15.2L446.9 256l62.3 90.3c3.1 4.5 3.7 10.2 1.6 15.2s-6.6 8.6-11.9 9.6L391 391 371.1 498.9c-1 5.3-4.6 9.8-9.6 11.9s-10.7 1.5-15.2-1.6L256 446.9l-90.3 62.3c-4.5 3.1-10.2 3.7-15.2 1.6s-8.6-6.6-9.6-11.9L121 391 13.1 371.1c-5.3-1-9.8-4.6-11.9-9.6s-1.5-10.7 1.6-15.2L65.1 256 2.8 165.7c-3.1-4.5-3.7-10.2-1.6-15.2s6.6-8.6 11.9-9.6L121 121 140.9 13.1c1-5.3 4.6-9.8 9.6-11.9s10.7-1.5 15.2 1.6L256 65.1 346.3 2.8c4.5-3.1 10.2-3.7 15.2-1.6zM160 256a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zm224 0a128 128 0 1 0 -256 0 128 128 0 1 0 256 0z" + }, + "regular": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M375.7 19.7c-1.5-8-6.9-14.7-14.4-17.8s-16.1-2.2-22.8 2.4L256 61.1 173.5 4.2c-6.7-4.6-15.3-5.5-22.8-2.4s-12.9 9.8-14.4 17.8l-18.1 98.5L19.7 136.3c-8 1.5-14.7 6.9-17.8 14.4s-2.2 16.1 2.4 22.8L61.1 256 4.2 338.5c-4.6 6.7-5.5 15.3-2.4 22.8s9.8 13 17.8 14.4l98.5 18.1 18.1 98.5c1.5 8 6.9 14.7 14.4 17.8s16.1 2.2 22.8-2.4L256 450.9l82.5 56.9c6.7 4.6 15.3 5.5 22.8 2.4s12.9-9.8 14.4-17.8l18.1-98.5 98.5-18.1c8-1.5 14.7-6.9 17.8-14.4s2.2-16.1-2.4-22.8L450.9 256l56.9-82.5c4.6-6.7 5.5-15.3 2.4-22.8s-9.8-12.9-17.8-14.4l-98.5-18.1L375.7 19.7zM269.6 110l65.6-45.2 14.4 78.3c1.8 9.8 9.5 17.5 19.3 19.3l78.3 14.4L402 242.4c-5.7 8.2-5.7 19 0 27.2l45.2 65.6-78.3 14.4c-9.8 1.8-17.5 9.5-19.3 19.3l-14.4 78.3L269.6 402c-8.2-5.7-19-5.7-27.2 0l-65.6 45.2-14.4-78.3c-1.8-9.8-9.5-17.5-19.3-19.3L64.8 335.2 110 269.6c5.7-8.2 5.7-19 0-27.2L64.8 176.8l78.3-14.4c9.8-1.8 17.5-9.5 19.3-19.3l14.4-78.3L242.4 110c8.2 5.7 19 5.7 27.2 0zM256 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM192 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "sun-plant-wilt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arid", + "droop", + "drought" + ] + }, + "unicode": "e57a", + "label": "Sun Plant Wilt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 0c-6.3 0-12 3.7-14.6 9.5L120.6 64.9 63.9 43.2c-5.9-2.3-12.6-.8-17 3.6s-5.9 11.1-3.6 17l21.7 56.7L9.5 145.4C3.7 148 0 153.7 0 160s3.7 12 9.5 14.6l55.4 24.8L43.2 256.1c-2.3 5.9-.8 12.6 3.6 17s11.1 5.9 17 3.6l56.7-21.7 24.8 55.4c2.6 5.8 8.3 9.5 14.6 9.5s12-3.7 14.6-9.5l24.8-55.4 56.7 21.7c5.9 2.3 12.6 .8 17-3.6s5.9-11.1 3.6-17l-21.7-56.7 55.4-24.8c5.8-2.6 9.5-8.3 9.5-14.6s-3.7-12-9.5-14.6l-55.4-24.8 21.7-56.7c2.3-5.9 .8-12.6-3.6-17s-11.1-5.9-17-3.6L199.4 64.9 174.6 9.5C172 3.7 166.3 0 160 0zm0 96a64 64 0 1 1 0 128 64 64 0 1 1 0-128zm32 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm312 16c0-17.7 14.3-32 32-32s32 14.3 32 32v53.4c-14.8 7.7-24 23.1-24 44.6c0 16.8 16 44 37.4 67.2c5.8 6.2 15.5 6.2 21.2 0C624 318 640 290.7 640 274c0-21.5-9.2-37-24-44.6V176c0-44.2-35.8-80-80-80s-80 35.8-80 80v22.7c-9.8-4.3-20.6-6.7-32-6.7c-44.2 0-80 35.8-80 80v21.4c-14.8 7.7-24 23.1-24 44.6c0 16.8 16 44 37.4 67.2c5.8 6.2 15.5 6.2 21.2 0C400 382 416 354.7 416 338c0-21.5-9.2-37-24-44.6V272c0-17.7 14.3-32 32-32s32 14.3 32 32v8V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H504V280v-8V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "superpowers": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2dd", + "label": "Superpowers", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "superscript": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "exponential", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f12b", + "label": "Superscript", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 73.5 404.3 80 416 80v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32V32zM32 64C14.3 64 0 78.3 0 96s14.3 32 32 32H47.3l89.6 128L47.3 384H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H304.7L215.1 256l89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H288c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "supple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f9", + "label": "Supple", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "suse": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f7d6", + "label": "Suse", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M471.08 102.66s-.3 18.3-.3 20.3c-9.1-3-74.4-24.1-135.7-26.3-51.9-1.8-122.8-4.3-223 57.3-19.4 12.4-73.9 46.1-99.6 109.7C7 277-.12 307 7 335.06a111 111 0 0 0 16.5 35.7c17.4 25 46.6 41.6 78.1 44.4 44.4 3.9 78.1-16 90-53.3 8.2-25.8 0-63.6-31.5-82.9-25.6-15.7-53.3-12.1-69.2-1.6-13.9 9.2-21.8 23.5-21.6 39.2.3 27.8 24.3 42.6 41.5 42.6a49 49 0 0 0 15.8-2.7c6.5-1.8 13.3-6.5 13.3-14.9 0-12.1-11.6-14.8-16.8-13.9-2.9.5-4.5 2-11.8 2.4-2-.2-12-3.1-12-14V316c.2-12.3 13.2-18 25.5-16.9 32.3 2.8 47.7 40.7 28.5 65.7-18.3 23.7-76.6 23.2-99.7-20.4-26-49.2 12.7-111.2 87-98.4 33.2 5.7 83.6 35.5 102.4 104.3h45.9c-5.7-17.6-8.9-68.3 42.7-68.3 56.7 0 63.9 39.9 79.8 68.3H460c-12.8-18.3-21.7-38.7-18.9-55.8 5.6-33.8 39.7-18.4 82.4-17.4 66.5.4 102.1-27 103.1-28 3.7-3.1 6.5-15.8 7-17.7 1.3-5.1-3.2-2.4-3.2-2.4-8.7 5.2-30.5 15.2-50.9 15.6-25.3.5-76.2-25.4-81.6-28.2-.3-.4.1 1.2-11-25.5 88.4 58.3 118.3 40.5 145.2 21.7.8-.6 4.3-2.9 3.6-5.7-13.8-48.1-22.4-62.7-34.5-69.6-37-21.6-125-34.7-129.2-35.3.1-.1-.9-.3-.9.7zm60.4 72.8a37.54 37.54 0 0 1 38.9-36.3c33.4 1.2 48.8 42.3 24.4 65.2-24.2 22.7-64.4 4.6-63.3-28.9zm38.6-25.3a26.27 26.27 0 1 0 25.4 27.2 26.19 26.19 0 0 0-25.4-27.2zm4.3 28.8c-15.4 0-15.4-15.6 0-15.6s15.4 15.64 0 15.64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "swatchbook": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5c3" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pantone", + "color", + "design", + "hue", + "palette" + ] + }, + "unicode": "f5c3", + "label": "Swatchbook", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H160c17.7 0 32 14.3 32 32V416c0 53-43 96-96 96s-96-43-96-96V32zM223.6 425.9c.3-3.3 .4-6.6 .4-9.9V154l75.4-75.4c12.5-12.5 32.8-12.5 45.3 0l90.5 90.5c12.5 12.5 12.5 32.8 0 45.3L223.6 425.9zM182.8 512l192-192H480c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H182.8zM128 64H64v64h64V64zM64 192v64h64V192H64zM96 440a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "swift": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8e1", + "label": "Swift", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 156.09c0-4.51-.08-9-.2-13.52a196.31 196.31 0 0 0-2.58-29.42 99.62 99.62 0 0 0-9.22-28A94.08 94.08 0 0 0 394.84 44a99.17 99.17 0 0 0-28-9.22 195 195 0 0 0-29.43-2.59c-4.51-.12-9-.17-13.52-.2H124.14c-4.51 0-9 .08-13.52.2-2.45.07-4.91.15-7.37.27a171.68 171.68 0 0 0-22.06 2.32 103.06 103.06 0 0 0-21.21 6.1q-3.46 1.45-6.81 3.12a94.66 94.66 0 0 0-18.39 12.32c-1.88 1.61-3.69 3.28-5.43 5A93.86 93.86 0 0 0 12 85.17a99.45 99.45 0 0 0-9.22 28 196.31 196.31 0 0 0-2.54 29.4c-.13 4.51-.18 9-.21 13.52v199.83c0 4.51.08 9 .21 13.51a196.08 196.08 0 0 0 2.58 29.42 99.3 99.3 0 0 0 9.22 28A94.31 94.31 0 0 0 53.17 468a99.47 99.47 0 0 0 28 9.21 195 195 0 0 0 29.43 2.59c4.5.12 9 .17 13.52.2H323.91c4.51 0 9-.08 13.52-.2a196.59 196.59 0 0 0 29.44-2.59 99.57 99.57 0 0 0 28-9.21A94.22 94.22 0 0 0 436 426.84a99.3 99.3 0 0 0 9.22-28 194.79 194.79 0 0 0 2.59-29.42c.12-4.5.17-9 .2-13.51V172.14c-.01-5.35-.01-10.7-.01-16.05zm-69.88 241c-20-38.93-57.23-29.27-76.31-19.47-1.72 1-3.48 2-5.25 3l-.42.25c-39.5 21-92.53 22.54-145.85-.38A234.64 234.64 0 0 1 45 290.12a230.63 230.63 0 0 0 39.17 23.37c56.36 26.4 113 24.49 153 0-57-43.85-104.6-101-141.09-147.22a197.09 197.09 0 0 1-18.78-25.9c43.7 40 112.7 90.22 137.48 104.12-52.57-55.49-98.89-123.94-96.72-121.74 82.79 83.42 159.18 130.59 159.18 130.59 2.88 1.58 5 2.85 6.73 4a127.44 127.44 0 0 0 4.16-12.47c13.22-48.33-1.66-103.58-35.31-149.2C329.61 141.75 375 229.34 356.4 303.42c-.44 1.73-.95 3.4-1.44 5.09 38.52 47.4 28.04 98.17 23.13 88.59z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "symfony": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83d", + "label": "Symfony", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm133.74 143.54c-11.47.41-19.4-6.45-19.77-16.87-.27-9.18 6.68-13.44 6.53-18.85-.23-6.55-10.16-6.82-12.87-6.67-39.78 1.29-48.59 57-58.89 113.85 21.43 3.15 36.65-.72 45.14-6.22 12-7.75-3.34-15.72-1.42-24.56 4-18.16 32.55-19 32 5.3-.36 17.86-25.92 41.81-77.6 35.7-10.76 59.52-18.35 115-58.2 161.72-29 34.46-58.4 39.82-71.58 40.26-24.65.85-41-12.31-41.58-29.84-.56-17 14.45-26.26 24.31-26.59 21.89-.75 30.12 25.67 14.88 34-12.09 9.71.11 12.61 2.05 12.55 10.42-.36 17.34-5.51 22.18-9 24-20 33.24-54.86 45.35-118.35 8.19-49.66 17-78 18.23-82-16.93-12.75-27.08-28.55-49.85-34.72-15.61-4.23-25.12-.63-31.81 7.83-7.92 10-5.29 23 2.37 30.7l12.63 14c15.51 17.93 24 31.87 20.8 50.62-5.06 29.93-40.72 52.9-82.88 39.94-36-11.11-42.7-36.56-38.38-50.62 7.51-24.15 42.36-11.72 34.62 13.6-2.79 8.6-4.92 8.68-6.28 13.07-4.56 14.77 41.85 28.4 51-1.39 4.47-14.52-5.3-21.71-22.25-39.85-28.47-31.75-16-65.49 2.95-79.67C204.23 140.13 251.94 197 262 205.29c37.17-109 100.53-105.46 102.43-105.53 25.16-.81 44.19 10.59 44.83 28.65.25 7.69-4.17 22.59-19.52 23.13z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "synagogue": { + "aliases": { + "unicodes": { + "composite": [ + "1f54d" + ], + "secondary": [ + "10f69b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Jew", + "Jewish", + "building", + "jewish", + "judaism", + "religion", + "star of david", + "synagogue", + "temple" + ] + }, + "unicode": "f69b", + "label": "Synagogue", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M309.8 3.7c5.9-4.9 14.6-4.9 20.5 0l121 100.8C469.5 119.7 480 142.2 480 166V280.1 512H464 352V416c0-17.7-14.3-32-32-32s-32 14.3-32 32v96H176 160V280.1 166c0-23.7 10.5-46.3 28.8-61.5L309.8 3.7zM512 512V244.5l28.1-31.2c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3l63.8 70.9c7.9 8.8 12.3 20.3 12.3 32.1V448c0 35.3-28.7 64-64 64H512zM128 244.5V512H64c-35.3 0-64-28.7-64-64V316.3c0-11.9 4.4-23.3 12.3-32.1l63.8-70.9c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3L128 244.5zM327 124.3c-3.1-5.4-10.9-5.4-13.9 0l-15.9 28.1-32.3-.3c-6.2-.1-10.1 6.7-7 12.1L274.3 192l-16.4 27.8c-3.2 5.4 .7 12.1 7 12.1l32.3-.3L313 259.7c3.1 5.4 10.9 5.4 13.9 0l15.9-28.1 32.3 .3c6.2 .1 10.1-6.7 7-12.1L365.7 192l16.4-27.8c3.2-5.4-.7-12.1-7-12.1l-32.3 .3L327 124.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "syringe": { + "aliases": { + "unicodes": { + "composite": [ + "1f489" + ], + "secondary": [ + "10f48e" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "immunizations", + "medical", + "medicine", + "needle", + "shot", + "sick", + "syringe", + "vaccinate", + "vaccine" + ] + }, + "unicode": "f48e", + "label": "Syringe", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766749, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M441 7l32 32 32 32c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15L417.9 128l55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-72-72L295 73c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l55 55L422.1 56 407 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0zM210.3 155.7l61.1-61.1c.3 .3 .6 .7 1 1l16 16 56 56 56 56 16 16c.3 .3 .6 .6 1 1l-191 191c-10.5 10.5-24.7 16.4-39.6 16.4H97.9L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57V325.3c0-14.9 5.9-29.1 16.4-39.6l43.3-43.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "t": { + "aliases": { + "unicodes": { + "composite": [ + "74" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter T", + "Latin Small Letter T", + "letter" + ] + }, + "unicode": "54", + "label": "T", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H160V448c0 17.7 14.3 32 32 32s32-14.3 32-32V96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H192 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0ce" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "excel", + "spreadsheet" + ] + }, + "unicode": "f0ce", + "label": "Table", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 256V160H224v96H64zm0 64H224v96H64V320zm224 96V320H448v96H288zM448 256H288V160H448v96zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-cells": { + "aliases": { + "names": [ + "th" + ], + "unicodes": { + "secondary": [ + "10f00a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "unicode": "f00a", + "label": "Table Cells", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm88 64v64H64V96h88zm56 0h88v64H208V96zm240 0v64H360V96h88zM64 224h88v64H64V224zm232 0v64H208V224h88zm64 0h88v64H360V224zM152 352v64H64V352h88zm56 0h88v64H208V352zm240 0v64H360V352h88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-cells-large": { + "aliases": { + "names": [ + "th-large" + ], + "unicodes": { + "secondary": [ + "10f009" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "unicode": "f009", + "label": "Table Cells Large", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 96V224H288V96H448zm0 192V416H288V288H448zM224 224H64V96H224V224zM64 288H224V416H64V288zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-columns": { + "aliases": { + "names": [ + "columns" + ], + "unicodes": { + "secondary": [ + "10f0db" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "dashboard", + "organize", + "panes", + "split" + ] + }, + "unicode": "f0db", + "label": "Table Columns", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 64V416H224V160H64zm384 0H288V416H448V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-list": { + "aliases": { + "names": [ + "th-list" + ], + "unicodes": { + "secondary": [ + "10f00b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f00b", + "label": "Table List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 0v64h64V96H64zm384 0H192v64H448V96zM64 224v64h64V224H64zm384 0H192v64H448V224zM64 352v64h64V352H64zm384 0H192v64H448V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-tennis-paddle-ball": { + "aliases": { + "names": [ + "ping-pong-paddle-ball", + "table-tennis" + ], + "unicodes": { + "composite": [ + "1f3d3" + ], + "secondary": [ + "10f45d" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "bat", + "game", + "paddle", + "ping pong", + "table tennis" + ] + }, + "unicode": "f45d", + "label": "Table Tennis Paddle Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 288c-50.1 0-93.6 28.8-114.6 70.8L132.9 126.3l.6-.6 60.1-60.1c87.5-87.5 229.3-87.5 316.8 0c67.1 67.1 82.7 166.3 46.8 248.3C535.8 297.6 509 288 480 288zM113.3 151.9L354.1 392.7c-1.4 7.5-2.1 15.3-2.1 23.3c0 23.2 6.2 44.9 16.9 63.7c-3 .2-6.1 .3-9.2 .3H357c-33.9 0-66.5-13.5-90.5-37.5l-9.8-9.8c-13.1-13.1-34.6-12.4-46.8 1.7L152.2 501c-5.8 6.7-14.2 10.7-23 11s-17.5-3.1-23.8-9.4l-32-32c-6.3-6.3-9.7-14.9-9.4-23.8s4.3-17.2 11-23l66.6-57.7c14-12.2 14.8-33.7 1.7-46.8l-9.8-9.8c-24-24-37.5-56.6-37.5-90.5v-2.7c0-22.8 6.1-44.9 17.3-64.3zM480 320a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablet": { + "aliases": { + "names": [ + "tablet-android" + ], + "unicodes": { + "secondary": [ + "10f3fb" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "device", + "kindle", + "screen" + ] + }, + "unicode": "f3fb", + "label": "Tablet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767341, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM176 432h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablet-button": { + "aliases": { + "unicodes": { + "secondary": [ + "10f10a" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "unicode": "f10a", + "label": "Tablet Button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM224 400a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablet-screen-button": { + "aliases": { + "names": [ + "tablet-alt" + ], + "unicodes": { + "secondary": [ + "10f3fa" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "unicode": "f3fa", + "label": "Tablet Screen Button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM256 448a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 64H64V384H384V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablets": { + "aliases": { + "unicodes": { + "secondary": [ + "10f490" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "pills", + "prescription" + ] + }, + "unicode": "f490", + "label": "Tablets", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M614.3 247c16.3-25 25.7-54.9 25.7-87C640 71.6 568.4 0 480 0c-32.1 0-61.9 9.4-87 25.7c-7.9 5.2-8.5 16.2-1.8 22.9L591.4 248.8c6.7 6.7 17.8 6.2 22.9-1.8zM567 294.3c7.9-5.2 8.5-16.2 1.8-22.9L368.6 71.2c-6.7-6.7-17.8-6.2-22.9 1.8c-16.3 25-25.7 54.9-25.7 87c0 88.4 71.6 160 160 160c32.1 0 61.9-9.4 87-25.7zM301.5 368H18.5c-9.5 0-16.9 8.2-15 17.5C18.9 457.8 83.1 512 160 512s141.1-54.2 156.5-126.5c2-9.3-5.5-17.5-15-17.5zm0-32c9.5 0 16.9-8.2 15-17.5C301.1 246.2 236.9 192 160 192S18.9 246.2 3.5 318.5c-2 9.3 5.5 17.5 15 17.5H301.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tachograph-digital": { + "aliases": { + "names": [ + "digital-tachograph" + ], + "unicodes": { + "secondary": [ + "10f566" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "distance", + "speed", + "tachometer" + ] + }, + "unicode": "f566", + "label": "Tachograph Digital", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767343, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm32 64H320c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32zM64 368c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm320 0c0-8.8 7.2-16 16-16H560c8.8 0 16 7.2 16 16s-7.2 16-16 16H400c-8.8 0-16-7.2-16-16zM80 288a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tag": { + "aliases": { + "unicodes": { + "composite": [ + "1f3f7" + ], + "secondary": [ + "10f02b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "labe", + "label", + "price", + "shopping" + ] + }, + "unicode": "f02b", + "label": "Tag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 80V229.5c0 17 6.7 33.3 18.7 45.3l176 176c25 25 65.5 25 90.5 0L418.7 317.3c25-25 25-65.5 0-90.5l-176-176c-12-12-28.3-18.7-45.3-18.7H48C21.5 32 0 53.5 0 80zm112 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tags": { + "aliases": { + "unicodes": { + "secondary": [ + "10f02c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "label", + "price", + "shopping" + ] + }, + "unicode": "f02c", + "label": "Tags", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M345 39.1L472.8 168.4c52.4 53 52.4 138.2 0 191.2L360.8 472.9c-9.3 9.4-24.5 9.5-33.9 .2s-9.5-24.5-.2-33.9L438.6 325.9c33.9-34.3 33.9-89.4 0-123.7L310.9 72.9c-9.3-9.4-9.2-24.6 .2-33.9s24.6-9.2 33.9 .2zM0 229.5V80C0 53.5 21.5 32 48 32H197.5c17 0 33.3 6.7 45.3 18.7l168 168c25 25 25 65.5 0 90.5L277.3 442.7c-25 25-65.5 25-90.5 0l-168-168C6.7 262.7 0 246.5 0 229.5zM144 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tape": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4db" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "package", + "sticky" + ] + }, + "unicode": "f4db", + "label": "Tape", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M380.8 416c41.5-40.7 67.2-97.3 67.2-160C448 132.3 347.7 32 224 32S0 132.3 0 256S100.3 480 224 480H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H380.8zM224 160a96 96 0 1 1 0 192 96 96 0 1 1 0-192zm64 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tarp": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "tarp", + "tent", + "waterproof" + ] + }, + "unicode": "e57b", + "label": "Tarp", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M576 128c0-35.3-28.7-64-64-64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64l352 0 0-128c0-17.7 14.3-32 32-32H576V128zM448 448L576 320H448l0 128zM96 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tarp-droplet": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "tarp", + "tent", + "waterproof" + ] + }, + "unicode": "e57c", + "label": "Tarp Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 160c-35.3 0-64-26.9-64-60c0-24 33.7-70.1 52.2-93.5c6.1-7.7 17.5-7.7 23.6 0C318.3 29.9 352 76 352 100c0 33.1-28.7 60-64 60zM64 128H197.5c13.2 37.3 48.7 64 90.5 64s77.4-26.7 90.5-64H512c35.3 0 64 28.7 64 64V352H448c-17.7 0-32 14.3-32 32l0 128L64 512c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64zM448 512l0-128H576L448 512zM96 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "taxi": { + "aliases": { + "names": [ + "cab" + ], + "unicodes": { + "composite": [ + "1f696" + ], + "secondary": [ + "10f1ba" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cab", + "cabbie", + "car", + "car service", + "lyft", + "machine", + "oncoming", + "oncoming taxi", + "taxi", + "transportation", + "travel", + "uber", + "vehicle" + ] + }, + "unicode": "f1ba", + "label": "Taxi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 0c-17.7 0-32 14.3-32 32V64c0 .1 0 .1 0 .2c-38.6 2.2-72.3 27.3-85.2 64.1L39.6 228.8C16.4 238.4 0 261.3 0 288V432v48c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V432H416v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V432 288c0-26.7-16.4-49.6-39.6-59.2L437.2 128.3c-12.9-36.8-46.6-62-85.2-64.1c0-.1 0-.1 0-.2V32c0-17.7-14.3-32-32-32H192zM165.4 128H346.6c13.6 0 25.7 8.6 30.2 21.4L402.9 224H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zM96 288a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm288 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "teamspeak": { + "changes": [ + "5.0.11", + "5.1.0", + "5.8.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f9", + "label": "Teamspeak", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1678906824, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M152.8 37.2c-32.2 38.1-56.1 82.6-69.9 130.5c0 .2-.1 .3-.1 .5C43.5 184.4 16 223 16 268c0 59.6 48.4 108 108 108s108-48.4 108-108c0-53.5-38.9-97.9-90-106.5c15.7-41.8 40.4-79.6 72.3-110.7c1.8-1.6 4-2.6 6.3-3.1c37.2-11.5 76.7-13.3 114.8-5.2C454.7 67.6 534 180.7 517.1 301.3c-8.4 62.6-38.6 112.7-87.7 151.4c-50.1 39.7-107.5 54.3-170.2 52.2l-24-1c12.4 2.8 25 4.9 37.6 6.3c40.7 4.2 81.4 2.1 120.1-12.5c94-35.5 149.3-102.3 162.9-202.5c4.8-52.6-5.8-105.4-30.8-152C454.6 11.3 290.8-38.4 159 32c-2.4 1.4-4.5 3.1-6.3 5.2zM309.4 433.9c-2.1 11.5-4.2 21.9-14.6 31.3c53.2-1 123.2-29.2 161.8-97.1c39.7-69.9 37.6-139.9-6.3-207.8C413.8 105 360.5 77.9 293.7 73.7c1.5 2.3 3.2 4.4 5.2 6.3l5.2 6.3c25.1 31.3 37.6 67.9 42.8 107.5c2.1 15.7-1 30.3-13.6 41.8c-4.2 3.1-5.2 6.3-4.2 10.4l7.3 17.7L365.7 318c5.2 11.5 4.2 19.8-6.3 28.2c-3.2 2.5-6.7 4.6-10.4 6.3l-18.8 8.4 3.1 13.6c3.1 6.3 1 12.5-3.1 17.7c-2.5 2.4-3.8 5.9-3.1 9.4c2.1 11.5-2.1 19.8-12.5 25.1c-2.1 1-4.2 5.2-5.2 7.3zm-133.6-3.1c16.7 11.5 34.5 20.9 53.2 26.1c24 5.2 41.8-6.3 44.9-30.3c1-8.4 5.2-14.6 12.5-17.7c7.3-4.2 8.4-7.3 2.1-13.6l-9.4-8.4 13.6-4.2c6.3-2.1 7.3-5.2 5.2-11.5c-1.4-3-2.4-6.2-3.1-9.4c-3.1-14.6-2.1-15.7 11.5-18.8c8.4-3.1 15.7-6.3 21.9-12.5c3.1-2.1 3.1-4.2 1-8.4l-16.7-30.3c-1-1.9-2.1-3.8-3.1-5.7c-6.4-11.7-13-23.6-15.7-37.1c-2.1-9.4-1-17.7 8.4-24c5.2-4.2 8.4-9.4 8.4-16.7c-.4-10.1-1.5-20.3-3.1-30.3c-6.3-37.6-23-68.9-51.2-95c-5.2-4.2-9.4-6.3-16.7-4.2L203.9 91.5c2 1.2 4 2.4 6 3.6l0 0c6.3 3.7 12.2 7.3 17 12.1c30.3 26.1 41.8 61.6 45.9 100.2c1 8.4 0 16.7-7.3 21.9c-8.4 5.2-10.4 12.5-7.3 20.9c4.9 13.2 10.4 26 16.7 38.6L291.6 318c-6.3 8.4-13.6 11.5-21.9 14.6c-12.5 3.1-14.6 7.3-10.4 20.9c.6 1.5 1.4 2.8 2.1 4.2c2.1 5.2 1 8.4-4.2 10.4l-12.5 3.1 5.2 4.2 4.2 4.2c4.2 5.2 4.2 8.4-2.1 10.4c-7.3 4.2-11.5 9.4-11.5 17.7c0 12.5-7.3 19.8-18.8 24c-3.8 1-7.6 1.5-11.5 1l-34.5-2.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "teeth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f62e" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "dental", + "dentist", + "gums", + "mouth", + "smile", + "tooth" + ] + }, + "unicode": "f62e", + "label": "Teeth", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 75 43 32 96 32H480c53 0 96 43 96 96V384c0 53-43 96-96 96H96c-53 0-96-43-96-96V128zm176 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176c0-26.5-21.5-48-48-48s-48 21.5-48 48zm176-48c-26.5 0-48 21.5-48 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176c0-26.5-21.5-48-48-48zM48 208v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V208c0-26.5-21.5-48-48-48s-48 21.5-48 48zM96 384c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H72c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48zm80-48c0 26.5 21.5 48 48 48s48-21.5 48-48V312c0-13.3-10.7-24-24-24H200c-13.3 0-24 10.7-24 24v24zm176 48c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H328c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48zm80-176v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V208c0-26.5-21.5-48-48-48s-48 21.5-48 48zm48 176c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H456c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "teeth-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f62f" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dental", + "dentist", + "gums bite", + "mouth", + "smile", + "tooth" + ] + }, + "unicode": "f62f", + "label": "Teeth Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 32C43 32 0 75 0 128v64c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-53-43-96-96-96H96zM224 96c26.5 0 48 21.5 48 48v56c0 13.3-10.7 24-24 24H200c-13.3 0-24-10.7-24-24V144c0-26.5 21.5-48 48-48zm80 48c0-26.5 21.5-48 48-48s48 21.5 48 48v56c0 13.3-10.7 24-24 24H328c-13.3 0-24-10.7-24-24V144zM96 128c26.5 0 48 21.5 48 48v24c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24V176c0-26.5 21.5-48 48-48zm336 48c0-26.5 21.5-48 48-48s48 21.5 48 48v24c0 13.3-10.7 24-24 24H456c-13.3 0-24-10.7-24-24V176zM96 480H480c53 0 96-43 96-96V352c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v32c0 53 43 96 96 96zm0-64c-26.5 0-48-21.5-48-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48zm80-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48zm176 48c-26.5 0-48-21.5-48-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48zm80-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "telegram": { + "aliases": { + "names": [ + "telegram-plane" + ], + "unicodes": { + "composite": [ + "f3fe" + ], + "secondary": [ + "10f3fe" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2c6", + "label": "Telegram", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248,8C111.033,8,0,119.033,0,256S111.033,504,248,504,496,392.967,496,256,384.967,8,248,8ZM362.952,176.66c-3.732,39.215-19.881,134.378-28.1,178.3-3.476,18.584-10.322,24.816-16.948,25.425-14.4,1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25,5.342-39.5,3.652-3.793,67.107-61.51,68.335-66.746.153-.655.3-3.1-1.154-4.384s-3.59-.849-5.135-.5q-3.283.746-104.608,69.142-14.845,10.194-26.894,9.934c-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291q.84-6.7,18.45-13.7,108.446-47.248,144.628-62.3c68.872-28.647,83.183-33.623,92.511-33.789,2.052-.034,6.639.474,9.61,2.885a10.452,10.452,0,0,1,3.53,6.716A43.765,43.765,0,0,1,362.952,176.66Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "temperature-arrow-down": { + "aliases": { + "names": [ + "temperature-down" + ], + "unicodes": { + "secondary": [ + "10e03f" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air conditioner", + "cold", + "heater", + "mercury", + "thermometer", + "winter" + ] + }, + "unicode": "e03f", + "label": "Temperature Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M128 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C249.8 332.6 256 349.5 256 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9c8.2-10.6 15.3-25.2 15.3-42.5V112zM176 0C114.1 0 64 50.1 64 112V276.4c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C43.2 304.2 32 334.8 32 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.2-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C288 50.1 237.9 0 176 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V272c0-8.8-7.2-16-16-16s-16 7.2-16 16v50.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48zm336-64H480V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352H384c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c6 6 14.1 9.4 22.6 9.4s16.6-3.4 22.6-9.4l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-arrow-up": { + "aliases": { + "names": [ + "temperature-up" + ], + "unicodes": { + "secondary": [ + "10e040" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air conditioner", + "cold", + "heater", + "mercury", + "thermometer", + "winter" + ] + }, + "unicode": "e040", + "label": "Temperature Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M128 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C249.8 332.6 256 349.5 256 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9c8.2-10.6 15.3-25.2 15.3-42.5V112zM176 0C114.1 0 64 50.1 64 112V276.4c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C43.2 304.2 32 334.8 32 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.2-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C288 50.1 237.9 0 176 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16V322.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48zM480 160h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-empty": { + "aliases": { + "names": [ + "temperature-0", + "thermometer-0", + "thermometer-empty" + ], + "unicodes": { + "secondary": [ + "10f2cb" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2cb", + "label": "Temperature Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C233.8 332.6 240 349.5 240 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9c8.2-10.6 15.3-25.2 15.3-42.5V112zM160 0C98.1 0 48 50.2 48 112V276.5c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C27.2 304.2 16 334.8 16 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.2-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C272 50.2 221.9 0 160 0zm0 416a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-full": { + "aliases": { + "names": [ + "temperature-4", + "thermometer-4", + "thermometer-full" + ], + "unicodes": { + "secondary": [ + "10f2c7" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fever", + "hot", + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2c7", + "label": "Temperature Full", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM48 112C48 50.2 98.1 0 160 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM208 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V112c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-half": { + "aliases": { + "names": [ + "temperature-2", + "thermometer-2", + "thermometer-half" + ], + "unicodes": { + "composite": [ + "1f321" + ], + "secondary": [ + "10f2c9" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature", + "thermometer", + "weather" + ] + }, + "unicode": "f2c9", + "label": "Temperature Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM48 112C48 50.2 98.1 0 160 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM208 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V208c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-high": { + "aliases": { + "unicodes": { + "secondary": [ + "10f769" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cook", + "covid-19", + "mercury", + "summer", + "thermometer", + "warm" + ] + }, + "unicode": "f769", + "label": "Temperature High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0 128A96 96 0 1 0 416 0a96 96 0 1 0 0 192zM96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.2 32 112V276.5c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.2-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.2 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16V322.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-low": { + "aliases": { + "unicodes": { + "secondary": [ + "10f76b" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "cool", + "covid-19", + "mercury", + "thermometer", + "winter" + ] + }, + "unicode": "f76b", + "label": "Temperature Low", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM320 96a96 96 0 1 1 192 0A96 96 0 1 1 320 96zM144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-quarter": { + "aliases": { + "names": [ + "temperature-1", + "thermometer-1", + "thermometer-quarter" + ], + "unicodes": { + "secondary": [ + "10f2ca" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2ca", + "label": "Temperature Quarter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM48 112C48 50.2 98.1 0 160 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM208 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-three-quarters": { + "aliases": { + "names": [ + "temperature-3", + "thermometer-3", + "thermometer-three-quarters" + ], + "unicodes": { + "secondary": [ + "10f2c8" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2c8", + "label": "Temperature Three Quarters", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C86.2 332.6 80 349.5 80 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM48 112C48 50.2 98.1 0 160 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S16 447.5 16 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM208 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V144c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tencent-weibo": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d5", + "label": "Tencent Weibo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "tenge-sign": { + "aliases": { + "names": [ + "tenge" + ], + "unicodes": { + "composite": [ + "20b8" + ], + "secondary": [ + "10f7d7" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Tenge Sign", + "currency" + ] + }, + "unicode": "f7d7", + "label": "Tenge Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM0 192c0-17.7 14.3-32 32-32H192 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H224V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V224H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bivouac", + "campground", + "refugee", + "shelter", + "tent" + ] + }, + "unicode": "e57d", + "label": "Tent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M269.4 6C280.5-2 295.5-2 306.6 6l224 160c7.4 5.3 12.2 13.5 13.2 22.5l32 288c1 9-1.9 18.1-8 24.9s-14.7 10.7-23.8 10.7H416L288 288V512H32c-9.1 0-17.8-3.9-23.8-10.7s-9-15.8-8-24.9l32-288c1-9 5.8-17.2 13.2-22.5L269.4 6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrow-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "permanent", + "refugee", + "shelter" + ] + }, + "unicode": "e57e", + "label": "Tent Arrow Down To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M241.8 111.9c8.9 9.9 8.1 25-1.8 33.9l-80 72c-9.1 8.2-23 8.2-32.1 0l-80-72c-9.9-8.9-10.7-24-1.8-33.9s24-10.7 33.9-1.8l39.9 36L120 24c0-13.3 10.7-24 24-24s24 10.7 24 24l0 122.1 39.9-36c9.9-8.9 25-8.1 33.9 1.8zm122.8 22.6c11.5-8.7 27.3-8.7 38.8 0l168 128c6.6 5 11 12.5 12.3 20.7l24 160 .7 4.7c17.5 .2 31.6 14.4 31.6 32c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H159.6l.7-4.7 24-160c1.2-8.2 5.6-15.7 12.3-20.7l168-128zM384 448h76.8L384 320V448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrow-left-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "transition" + ] + }, + "unicode": "e57f", + "label": "Tent Arrow Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M488.1 6.2c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9L489.5 72 86.5 72l33.5-30.2c9.9-8.9 10.7-24 1.8-33.9S97.8-2.7 87.9 6.2l-80 72C2.9 82.7 0 89.2 0 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L86.5 120l402.9 0-33.5 30.2c-9.9 8.9-10.7 24-1.8 33.9s24 10.7 33.9 1.8l80-72c5.1-4.6 7.9-11 7.9-17.8s-2.9-13.3-7.9-17.8l-80-72zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512H288V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrow-turn-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "temporary" + ] + }, + "unicode": "e580", + "label": "Tent Arrow Turn Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M120.1 41.8c9.9-8.9 10.7-24 1.8-33.9S97.8-2.7 87.9 6.2l-80 72C2.9 82.7 0 89.2 0 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L86.5 120 456 120c39.8 0 72 32.2 72 72v40c0 13.3 10.7 24 24 24s24-10.7 24-24V192c0-66.3-53.7-120-120-120L86.5 72l33.5-30.2zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512H288V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrows-down": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "spontaneous" + ] + }, + "unicode": "e581", + "label": "Tent Arrows Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M209.8 111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36L136 24c0-13.3-10.7-24-24-24S88 10.7 88 24l0 122.1-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm352 0c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V146.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512H288V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tents": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bivouac", + "campground", + "refugee", + "shelter", + "tent" + ] + }, + "unicode": "e582", + "label": "Tents", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M396.6 6.5L235.8 129.1c9.6 1.8 18.9 5.8 27 12l168 128c13.2 10.1 22 24.9 24.5 41.4l6.2 41.5H608c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128c-11.5-8.7-27.3-8.7-38.8 0zm-153.2 160c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S22.7 512 32 512H224V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "terminal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f120" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code", + "coding", + "command", + "console", + "development", + "prompt", + "terminal" + ] + }, + "unicode": "f120", + "label": "Terminal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767552, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M9.4 86.6C-3.1 74.1-3.1 53.9 9.4 41.4s32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256 9.4 86.6zM256 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "text-height": { + "aliases": { + "unicodes": { + "secondary": [ + "10f034" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f034", + "label": "Text Height", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767248, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 128V96h64l0 320H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H192l0-320h64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V80c0-26.5-21.5-48-48-48H160 48C21.5 32 0 53.5 0 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32zM502.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32V352H416c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H512V160h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "text-slash": { + "aliases": { + "names": [ + "remove-format" + ], + "unicodes": { + "secondary": [ + "10f87d" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "font", + "format", + "remove", + "style", + "text" + ] + }, + "unicode": "f87d", + "label": "Text Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L355.7 253.5 400.2 96H503L497 120.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l11-44.1C577.6 61.3 554.7 32 523.5 32H376.1h-.3H204.5c-22 0-41.2 15-46.6 36.4l-6.3 25.2L38.8 5.1zm168 131.7c.1-.3 .2-.7 .3-1L217 96H333.7L301.3 210.8l-94.5-74.1zM243.3 416H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H309.8l17.6-62.1L272.9 311 243.3 416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "text-width": { + "aliases": { + "unicodes": { + "secondary": [ + "10f035" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f035", + "label": "Text Width", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 128V96H192l0 128H176c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H256l0-128H384v32c0 17.7 14.3 32 32 32s32-14.3 32-32V80c0-26.5-21.5-48-48-48H224 48C21.5 32 0 53.5 0 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32zM9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V416H320v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32H128V320c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "the-red-yeti": { + "changes": [ + "5.3.0", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f69d", + "label": "The Red Yeti", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.23 241.7l20.7 7.1c-9.6-23.9-23.9-37-31.7-44.8l7.1-18.2c.2 0 12.3-27.8-2.5-30.7-.6-11.3-6.6-27-18.4-27-7.6-10.6-17.7-12.3-30.7-5.9a122.2 122.2 0 0 0-25.3 16.5c-5.3-6.4-3 .4-3-29.8-37.1-24.3-45.4-11.7-74.8 3l.5.5a239.36 239.36 0 0 0-68.4-13.3c-5.5-8.7-18.6-19.1-25.1-25.1l24.8 7.1c-5.5-5.5-26.8-12.9-34.2-15.2 18.2-4.1 29.8-20.8 42.5-33-34.9-10.1-67.9-5.9-97.9 11.8l12-44.2L182 0c-31.6 24.2-33 41.9-33.7 45.5-.9-2.4-6.3-19.6-15.2-27a35.12 35.12 0 0 0-.5 25.3c3 8.4 5.9 14.8 8.4 18.9-16-3.3-28.3-4.9-49.2 0h-3.7l33 14.3a194.26 194.26 0 0 0-46.7 67.4l-1.7 8.4 1.7 1.7 7.6-4.7c-3.3 11.6-5.3 19.4-6.6 25.8a200.18 200.18 0 0 0-27.8 40.3c-15 1-31.8 10.8-40.3 14.3l3 3.4 28.8 1c-.5 1-.7 2.2-1.2 3.2-7.3 6.4-39.8 37.7-33 80.7l20.2-22.4c.5 1.7.7 3.4 1.2 5.2 0 25.5.4 89.6 64.9 150.5 43.6 40 96 60.2 157.5 60.2 121.7 0 223-87.3 223-211.5 6.8-9.7-1.2 3 16.7-25.1l13 14.3 2.5-.5A181.84 181.84 0 0 0 495 255a44.74 44.74 0 0 0-6.8-13.3zM398 111.2l-.5 21.9c5.5 18.1 16.9 17.2 22.4 17.2l-3.4-4.7 22.4-5.4a242.44 242.44 0 0 1-27 0c12.8-2.1 33.3-29 43-11.3 3.4 7.6 6.4 17.2 9.3 27.8l1.7-5.9a56.38 56.38 0 0 1-1.7-15.2c5.4.5 8.8 3.4 9.3 10.1.5 6.4 1.7 14.8 3.4 25.3l4.7-11.3c4.6 0 4.5-3.6-2.5 20.7-20.9-8.7-35.1-8.4-46.5-8.4l18.2-16c-25.3 8.2-33 10.8-54.8 20.9-1.1-5.4-5-13.5-16-19.9-3.2 3.8-2.8.9-.7 14.8h-2.5a62.32 62.32 0 0 0-8.4-23.1l4.2-3.4c8.4-7.1 11.8-14.3 10.6-21.9-.5-6.4-5.4-13.5-13.5-20.7 5.6-3.4 15.2-.4 28.3 8.5zm-39.6-10.1c2.7 1.9 11.4 5.4 18.9 17.2 4.2 8.4 4 9.8 3.4 11.1-.5 2.4-.5 4.3-3 7.1-1.7 2.5-5.4 4.7-11.8 7.6-7.6-13-16.5-23.6-27.8-31.2zM91 143.1l1.2-1.7c1.2-2.9 4.2-7.6 9.3-15.2l2.5-3.4-13 12.3 5.4-4.7-10.1 9.3-4.2 1.2c12.3-24.1 23.1-41.3 32.5-50.2 9.3-9.3 16-16 20.2-19.4l-6.4 1.2c-11.3-4.2-19.4-7.1-24.8-8.4 2.5-.5 3.7-.5 3.2-.5 10.3 0 17.5.5 20.9 1.2a52.35 52.35 0 0 0 16 2.5l.5-1.7-8.4-35.8 13.5 29a42.89 42.89 0 0 0 5.9-14.3c1.7-6.4 5.4-13 10.1-19.4s7.6-10.6 9.3-11.3a234.68 234.68 0 0 0-6.4 25.3l-1.7 7.1-.5 4.7 2.5 2.5C190.4 39.9 214 34 239.8 34.5l21.1.5c-11.8 13.5-27.8 21.9-48.5 24.8a201.26 201.26 0 0 1-23.4 2.9l-.2-.5-2.5-1.2a20.75 20.75 0 0 0-14 2c-2.5-.2-4.9-.5-7.1-.7l-2.5 1.7.5 1.2c2 .2 3.9.5 6.2.7l-2 3.4 3.4-.5-10.6 11.3c-4.2 3-5.4 6.4-4.2 9.3l5.4-3.4h1.2a39.4 39.4 0 0 1 25.3-15.2v-3c6.4.5 13 1 19.4 1.2 6.4 0 8.4.5 5.4 1.2a189.6 189.6 0 0 1 20.7 13.5c13.5 10.1 23.6 21.9 30 35.4 8.8 18.2 13.5 37.1 13.5 56.6a141.13 141.13 0 0 1-3 28.3 209.91 209.91 0 0 1-16 46l2.5.5c18.2-19.7 41.9-16 49.2-16l-6.4 5.9 22.4 17.7-1.7 30.7c-5.4-12.3-16.5-21.1-33-27.8 16.5 14.8 23.6 21.1 21.9 20.2-4.8-2.8-3.5-1.9-10.8-3.7 4.1 4.1 17.5 18.8 18.2 20.7l.2.2-.2.2c0 1.8 1.6-1.2-14 22.9-75.2-15.3-106.27-42.7-141.2-63.2l11.8 1.2c-11.8-18.5-15.6-17.7-38.4-26.1L149 225c-8.8-3-18.2-3-28.3.5l7.6-10.6-1.2-1.7c-14.9 4.3-19.8 9.2-22.6 11.3-1.1-5.5-2.8-12.4-12.3-28.8l-1.2 27-13.2-5c1.5-25.2 5.4-50.5 13.2-74.6zm276.5 330c-49.9 25-56.1 22.4-59 23.9-29.8-11.8-50.9-31.7-63.5-58.8l30 16.5c-9.8-9.3-18.3-16.5-38.4-44.3l11.8 23.1-17.7-7.6c14.2 21.1 23.5 51.7 66.6 73.5-120.8 24.2-199-72.1-200.9-74.3a262.57 262.57 0 0 0 35.4 24.8c3.4 1.7 7.1 2.5 10.1 1.2l-16-20.7c9.2 4.2 9.5 4.5 69.1 29-42.5-20.7-73.8-40.8-93.2-60.2-.5 6.4-1.2 10.1-1.2 10.1a80.25 80.25 0 0 1 20.7 26.6c-39-18.9-57.6-47.6-71.3-82.6 49.9 55.1 118.9 37.5 120.5 37.1 34.8 16.4 69.9 23.6 113.9 10.6 3.3 0 20.3 17 25.3 39.1l4.2-3-2.5-23.6c9 9 24.9 22.6 34.4 13-15.6-5.3-23.5-9.5-29.5-31.7 4.6 4.2 7.6 9 27.8 15l1.2-1.2-10.5-14.2c11.7-4.8-3.5 1 32-10.8 4.3 34.3 9 49.2.7 89.5zm115.3-214.4l-2.5.5 3 9.3c-3.5 5.9-23.7 44.3-71.6 79.7-39.5 29.8-76.6 39.1-80.9 40.3l-7.6-7.1-1.2 3 14.3 16-7.1-4.7 3.4 4.2h-1.2l-21.9-13.5 9.3 26.6-19-27.9-1.2 2.5 7.6 29c-6.1-8.2-21-32.6-56.8-39.6l32.5 21.2a214.82 214.82 0 0 1-93.2-6.4c-4.2-1.2-8.9-2.5-13.5-4.2l1.2-3-44.8-22.4 26.1 22.4c-57.7 9.1-113-25.4-126.4-83.4l-2.5-16.4-22.27 22.3c19.5-57.5 25.6-57.9 51.4-70.1-9.1-5.3-1.6-3.3-38.4-9.3 15.8-5.8 33-15.4 73 5.2a18.5 18.5 0 0 1 3.7-1.7c.6-3.2.4-.8 1-11.8 3.9 10 3.6 8.7 3 9.3l1.7.5c12.7-6.5 8.9-4.5 17-8.9l-5.4 13.5 22.3-5.8-8.4 8.4 2.5 2.5c4.5-1.8 30.3 3.4 40.8 16l-23.6-2.5c39.4 23 51.5 54 55.8 69.6l1.7-1.2c-2.8-22.3-12.4-33.9-16-40.1 4.2 5 39.2 34.6 110.4 46-11.3-.5-23.1 5.4-34.9 18.9l46.7-20.2-9.3 21.9c7.6-10.1 14.8-23.6 21.2-39.6v-.5l1.2-3-1.2 16c13.5-41.8 25.3-78.5 35.4-109.7l13.5-27.8v-2l-5.4-4.2h10.1l5.9 4.2 2.5-1.2-3.4-16 12.3 18.9 41.8-20.2-14.8 13 .5 2.9 17.7-.5a184 184 0 0 1 33 4.2l-23.6 2.5-1.2 3 26.6 23.1a254.21 254.21 0 0 1 27 32c-11.2-3.3-10.3-3.4-21.2-3.4l12.3 32.5zm-6.1-71.3l-3.9 13-14.3-11.8zm-254.8 7.1c1.7 10.6 4.7 17.7 8.8 21.9-9.3 6.6-27.5 13.9-46.5 16l.5 1.2a50.22 50.22 0 0 0 24.8-2.5l-7.1 13c4.2-1.7 10.1-7.1 17.7-14.8 11.9-5.5 12.7-5.1 20.2-16-12.7-6.4-15.7-13.7-18.4-18.8zm3.7-102.3c-6.4-3.4-10.6 3-12.3 18.9s2.5 29.5 11.8 39.6 18.2 10.6 26.1 3 3.4-23.6-11.3-47.7a39.57 39.57 0 0 0-14.27-13.8zm-4.7 46.3c5.4 2.2 10.5 1.9 12.3-10.6v-4.7l-1.2.5c-4.3-3.1-2.5-4.5-1.7-6.2l.5-.5c-.9-1.2-5-8.1-12.5 4.7-.5-13.5.5-21.9 3-24.8 1.2-2.5 4.7-1.2 11.3 4.2 6.4 5.4 11.3 16 15.2 32.5 6.5 28-19.8 26.2-26.9 4.9zm-45-5.5c1.6.3 9.3-1.1 9.3-14.8h-.5c-5.4-1.1-2.2-5.5-.7-5.9-1.7-3-3.4-4.2-5.4-4.7-8.1 0-11.6 12.7-8.1 21.2a7.51 7.51 0 0 0 5.43 4.2zM216 82.9l-2.5.5.5 3a48.94 48.94 0 0 1 26.1 5.9c-2.5-5.5-10-14.3-28.3-14.3l.5 2.5zm-71.8 49.4c21.7 16.8 16.5 21.4 46.5 23.6l-2.9-4.7a42.67 42.67 0 0 0 14.8-28.3c1.7-16-1.2-29.5-8.8-41.3l13-7.6a2.26 2.26 0 0 0-.5-1.7 14.21 14.21 0 0 0-13.5 1.7c-12.7 6.7-28 20.9-29 22.4-1.7 1.7-3.4 5.9-5.4 13.5a99.61 99.61 0 0 0-2.9 23.6c-4.7-8-10.5-6.4-19.9-5.9l7.1 7.6c-16.5 0-23.3 15.4-23.6 16 6.8 0 4.6-7.6 30-12.3-4.3-6.3-3.3-5-4.9-6.6zm18.7-18.7c1.2-7.6 3.4-13 6.4-17.2 5.4-6.4 10.6-10.1 16-11.8 4.2-1.7 7.1 1.2 10.1 9.3a72.14 72.14 0 0 1 3 25.3c-.5 9.3-3.4 17.2-8.4 23.1-2.9 3.4-5.4 5.9-6.4 7.6a39.21 39.21 0 0 1-11.3-.5l-7.1-3.4-5.4-6.4c.8-10 1.3-18.8 3.1-26zm42 56.1c-34.8 14.4-34.7 14-36.1 14.3-20.8 4.7-19-24.4-18.9-24.8l5.9-1.2-.5-2.5c-20.2-2.6-31 4.2-32.5 4.9.5.5 3 3.4 5.9 9.3 4.2-6.4 8.8-10.1 15.2-10.6a83.47 83.47 0 0 0 1.7 33.7c.1.5 2.6 17.4 27.5 24.1 11.3 3 27 1.2 48.9-5.4l-9.2.5c-4.2-14.8-6.4-24.8-5.9-29.5 11.3-8.8 21.9-11.3 30.7-7.6h2.5l-11.8-7.6-7.1.5c-5.9 1.2-12.3 4.2-19.4 8.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "themeco": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5c6", + "label": "Themeco", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M202.9 8.43c9.9-5.73 26-5.82 35.95-.21L430 115.85c10 5.6 18 19.44 18 30.86V364c0 11.44-8.06 25.29-18 31L238.81 503.74c-9.93 5.66-26 5.57-35.85-.21L17.86 395.12C8 389.34 0 375.38 0 364V146.71c0-11.44 8-25.36 17.91-31.08zm-77.4 199.83c-15.94 0-31.89.14-47.83.14v101.45H96.8V280h28.7c49.71 0 49.56-71.74 0-71.74zm140.14 100.29l-30.73-34.64c37-7.51 34.8-65.23-10.87-65.51-16.09 0-32.17-.14-48.26-.14v101.59h19.13v-33.91h18.41l29.56 33.91h22.76zm-41.59-82.32c23.34 0 23.26 32.46 0 32.46h-29.13v-32.46zm-95.56-1.6c21.18 0 21.11 38.85 0 38.85H96.18v-38.84zm192.65-18.25c-68.46 0-71 105.8 0 105.8 69.48-.01 69.41-105.8 0-105.8zm0 17.39c44.12 0 44.8 70.86 0 70.86s-44.43-70.86 0-70.86z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "themeisle": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b2", + "label": "ThemeIsle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "thermometer": { + "aliases": { + "unicodes": { + "secondary": [ + "10f491" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f491", + "label": "Thermometer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 382.1V293.3c0-14.9 5.9-29.1 16.4-39.6l27.3-27.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 45.5-45.5C355.2 10.9 381.4 0 408.8 0C465.8 0 512 46.2 512 103.2c0 27.4-10.9 53.6-30.2 73L258.3 399.6c-10.5 10.5-24.7 16.4-39.6 16.4H129.9L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l89-89z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "think-peaks": { + "changes": [ + "5.4.2", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f731", + "label": "Think Peaks", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M465.4 409.4l87.1-150.2-32-.3-55.1 95L259.2 0 23 407.4l32 .3L259.2 55.6zm-355.3-44.1h32.1l117.4-202.5L463 511.9l32.5.1-235.8-404.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "threads": { + "changes": [ + "6.4.1", + "6.4.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e618", + "label": "Threads", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1690904784, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M331.5 235.7c2.2 .9 4.2 1.9 6.3 2.8c29.2 14.1 50.6 35.2 61.8 61.4c15.7 36.5 17.2 95.8-30.3 143.2c-36.2 36.2-80.3 52.5-142.6 53h-.3c-70.2-.5-124.1-24.1-160.4-70.2c-32.3-41-48.9-98.1-49.5-169.6V256v-.2C17 184.3 33.6 127.2 65.9 86.2C102.2 40.1 156.2 16.5 226.4 16h.3c70.3 .5 124.9 24 162.3 69.9c18.4 22.7 32 50 40.6 81.7l-40.4 10.8c-7.1-25.8-17.8-47.8-32.2-65.4c-29.2-35.8-73-54.2-130.5-54.6c-57 .5-100.1 18.8-128.2 54.4C72.1 146.1 58.5 194.3 58 256c.5 61.7 14.1 109.9 40.3 143.3c28 35.6 71.2 53.9 128.2 54.4c51.4-.4 85.4-12.6 113.7-40.9c32.3-32.2 31.7-71.8 21.4-95.9c-6.1-14.2-17.1-26-31.9-34.9c-3.7 26.9-11.8 48.3-24.7 64.8c-17.1 21.8-41.4 33.6-72.7 35.3c-23.6 1.3-46.3-4.4-63.9-16c-20.8-13.8-33-34.8-34.3-59.3c-2.5-48.3 35.7-83 95.2-86.4c21.1-1.2 40.9-.3 59.2 2.8c-2.4-14.8-7.3-26.6-14.6-35.2c-10-11.7-25.6-17.7-46.2-17.8H227c-16.6 0-39 4.6-53.3 26.3l-34.4-23.6c19.2-29.1 50.3-45.1 87.8-45.1h.8c62.6 .4 99.9 39.5 103.7 107.7l-.2 .2zm-156 68.8c1.3 25.1 28.4 36.8 54.6 35.3c25.6-1.4 54.6-11.4 59.5-73.2c-13.2-2.9-27.8-4.4-43.4-4.4c-4.8 0-9.6 .1-14.4 .4c-42.9 2.4-57.2 23.2-56.2 41.8l-.1 .1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "thumbs-down": { + "aliases": { + "unicodes": { + "composite": [ + "1f44e", + "f088" + ], + "secondary": [ + "10f165" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "-1", + "disagree", + "disapprove", + "dislike", + "down", + "hand", + "social", + "thumb", + "thumbs down", + "thumbs-o-down" + ] + }, + "unicode": "f165", + "label": "Thumbs Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2H464c26.5 0 48-21.5 48-48c0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48H294.5c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7V192v48 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 384H96c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H32C14.3 96 0 110.3 0 128V352c0 17.7 14.3 32 32 32z" + }, + "regular": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5c-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13L448 288c8.8 0 16-7.2 16-16c0-6.8-4.3-12.7-10.4-15c-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6c0-7.8-5.6-14.3-13-15.7c-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9c0-6.7-4.2-12.6-10.2-14.9c-11.5-4.5-17.7-16.9-14.4-28.8c.4-1.3 .6-2.8 .6-4.3c0-8.8-7.2-16-16-16H286.5c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8H384c34.7 0 62.9 27.6 64 62c14.6 11.7 24 29.7 24 50c0 4.5-.5 8.8-1.3 13c15.4 11.7 25.3 30.2 25.3 51c0 6.5-1 12.8-2.8 18.7C504.8 238.3 512 254.3 512 272c0 35.3-28.6 64-64 64l-92.3 0c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89zM32 384c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "thumbs-up": { + "aliases": { + "unicodes": { + "composite": [ + "1f44d", + "f087" + ], + "secondary": [ + "10f164" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "+1", + "agree", + "approve", + "favorite", + "hand", + "like", + "ok", + "okay", + "social", + "success", + "thumb", + "thumbs up", + "thumbs-o-up", + "up", + "yes", + "you got it dude" + ] + }, + "unicode": "f164", + "label": "Thumbs Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2H464c26.5 0 48 21.5 48 48c0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1c4.4 7.3 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48H294.5c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3V320 272 247.1c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192H96c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32z" + }, + "regular": { + "lastModified": 1684766193, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5c-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13L448 224c8.8 0 16 7.2 16 16c0 6.8-4.3 12.7-10.4 15c-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6c0 7.8-5.6 14.3-13 15.7c-8.2 1.6-15.1 7.3-18 15.1s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9c0 6.7-4.2 12.6-10.2 14.9c-11.5 4.5-17.7 16.9-14.4 28.8c.4 1.3 .6 2.8 .6 4.3c0 8.8-7.2 16-16 16H286.5c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8H384c34.7 0 62.9-27.6 64-62c14.6-11.7 24-29.7 24-50c0-4.5-.5-8.8-1.3-13c15.4-11.7 25.3-30.2 25.3-51c0-6.5-1-12.8-2.8-18.7C504.8 273.7 512 257.7 512 240c0-35.3-28.6-64-64-64l-92.3 0c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89zM32 192c-17.7 0-32 14.3-32 32V448c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "thumbtack": { + "aliases": { + "names": [ + "thumb-tack" + ], + "unicodes": { + "composite": [ + "1f4cc", + "1f588" + ], + "secondary": [ + "10f08d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Pushpin", + "coordinates", + "location", + "marker", + "pin", + "pushpin", + "thumb-tack" + ] + }, + "unicode": "f08d", + "label": "Thumbtack", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ticket": { + "aliases": { + "unicodes": { + "composite": [ + "1f39f" + ], + "secondary": [ + "10f145" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admission", + "admission tickets", + "movie", + "pass", + "support", + "ticket" + ] + }, + "unicode": "f145", + "label": "Ticket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128v64c0 8.8 7.4 15.7 15.7 18.6C34.5 217.1 48 235 48 256s-13.5 38.9-32.3 45.4C7.4 304.3 0 311.2 0 320v64c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V320c0-8.8-7.4-15.7-15.7-18.6C541.5 294.9 528 277 528 256s13.5-38.9 32.3-45.4c8.3-2.9 15.7-9.8 15.7-18.6V128c0-35.3-28.7-64-64-64H64zm64 112l0 160c0 8.8 7.2 16 16 16H432c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H144c-8.8 0-16 7.2-16 16zM96 160c0-17.7 14.3-32 32-32H448c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ticket-simple": { + "aliases": { + "names": [ + "ticket-alt" + ], + "unicodes": { + "secondary": [ + "10f3ff" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "movie", + "pass", + "support", + "ticket" + ] + }, + "unicode": "f3ff", + "label": "Ticket Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64v64c0 8.8-7.4 15.7-15.7 18.6C541.5 217.1 528 235 528 256s13.5 38.9 32.3 45.4c8.3 2.9 15.7 9.8 15.7 18.6v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320c0-8.8 7.4-15.7 15.7-18.6C34.5 294.9 48 277 48 256s-13.5-38.9-32.3-45.4C7.4 207.7 0 200.8 0 192V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tiktok": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07b", + "label": "TikTok", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "timeline": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chronological", + "deadline", + "history", + "linear" + ] + }, + "unicode": "e29c", + "label": "Timeline", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm32 97.3c28.3-12.3 48-40.5 48-73.3c0-44.2-35.8-80-80-80S48 51.8 48 96c0 32.8 19.7 61 48 73.3V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H288v54.7c-28.3 12.3-48 40.5-48 73.3c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V288H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H544V169.3c28.3-12.3 48-40.5 48-73.3c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 32.8 19.7 61 48 73.3V224H160V169.3zM488 96a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM320 392a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toggle-off": { + "aliases": { + "unicodes": { + "secondary": [ + "10f204" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "button", + "off", + "on", + "switch" + ] + }, + "unicode": "f204", + "label": "Toggle Off", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128H192c-70.7 0-128-57.3-128-128s57.3-128 128-128H384zM576 256c0-106-86-192-192-192H192C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192zM192 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toggle-on": { + "aliases": { + "unicodes": { + "secondary": [ + "10f205" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "button", + "off", + "on", + "switch" + ] + }, + "unicode": "f205", + "label": "Toggle On", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 64C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192s-86-192-192-192H192zm192 96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet": { + "aliases": { + "unicodes": { + "composite": [ + "1f6bd" + ], + "secondary": [ + "10f7d8" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "flush", + "john", + "loo", + "pee", + "plumbing", + "poop", + "porcelain", + "potty", + "restroom", + "throne", + "toile", + "toilet", + "washroom", + "waste", + "wc" + ] + }, + "unicode": "f7d8", + "label": "Toilet", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48h8V196.9c-1.9 1.4-3.8 2.9-5.6 4.4C10.9 214.5 0 232.9 0 256c0 46.9 14.3 84.1 37 112.5c14.2 17.7 31.1 31.3 48.5 41.8L65.6 469.9c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3H352c10.3 0 19.9-4.9 26-13.3s7.7-19.1 4.4-28.8l-19.8-59.5c17.4-10.5 34.3-24.1 48.5-41.8c22.7-28.4 37-65.5 37-112.5c0-23.1-10.9-41.5-26.4-54.6c-1.8-1.5-3.7-3-5.6-4.4V48h8c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM384 256.3c0 1-.3 2.6-3.8 5.6c-4.8 4.1-14 9-29.3 13.4C320.5 284 276.1 288 224 288s-96.5-4-126.9-12.8c-15.3-4.4-24.5-9.3-29.3-13.4c-3.5-3-3.8-4.6-3.8-5.6l0-.3 0-.1c0-1 0-2.5 3.8-5.8c4.8-4.1 14-9 29.3-13.4C127.5 228 171.9 224 224 224s96.5 4 126.9 12.8c15.3 4.4 24.5 9.3 29.3 13.4c3.8 3.2 3.8 4.8 3.8 5.8l0 .1 0 .3zM328.2 384l-.2 .5 0-.5h.2zM112 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet-paper": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fb" + ], + "secondary": [ + "10f71e" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "halloween", + "holiday", + "lavatory", + "paper towels", + "prank", + "privy", + "restroom", + "roll", + "roll of paper", + "toilet", + "toilet paper", + "wipe" + ] + }, + "unicode": "f71e", + "label": "Toilet Paper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M444.2 0C397.2 49.6 384 126.5 384 192c0 158.8-27.3 247-42.7 283.9c-10 24-33.2 36.1-55.4 36.1H48c-11.5 0-22.2-6.2-27.8-16.2s-5.6-22.3 .4-32.2c9.8-17.7 15.4-38.2 20.5-57.7C52.3 362.8 64 293.5 64 192C64 86 107 0 160 0H444.2zM512 384c-53 0-96-86-96-192S459 0 512 0s96 86 96 192s-43 192-96 192zm0-128c17.7 0 32-28.7 32-64s-14.3-64-32-64s-32 28.7-32 64s14.3 64 32 64zM144 208a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm64 0a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm80-16a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet-paper-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e072" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "halloween", + "holiday", + "lavatory", + "leaves", + "prank", + "privy", + "restroom", + "roll", + "toilet", + "trouble", + "ut oh", + "wipe" + ] + }, + "unicode": "e072", + "label": "Toilet Paper Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-109.7-86C569.9 374 608 291.9 608 192C608 86 565 0 512 0s-96 86-96 192c0 49.1 9.2 93.9 24.4 127.9l-59-46.2c1.6-24.8 2.6-52 2.6-81.6c0-65.5 13.2-142.4 60.2-192H160c-24.8 0-47.4 18.8-64.4 49.6L38.8 5.1zM367.3 385.4L66.5 148.4C64.9 162.4 64 177 64 192c0 101.5-11.7 170.8-23 213.9c-5.1 19.4-10.7 39.9-20.5 57.7c-5.9 9.9-6.1 22.1-.4 32.2S36.5 512 48 512H285.9c22.3 0 45.4-12.1 55.4-36.1c7.4-17.7 17.5-47.2 26-90.6zM544 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet-portable": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "outhouse", + "toilet" + ] + }, + "unicode": "e583", + "label": "Toilet Portable", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 32V64H320V32c0-17.7-14.3-32-32-32H32C14.3 0 0 14.3 0 32zM24 96H0v24V488c0 13.3 10.7 24 24 24s24-10.7 24-24v-8H272v8c0 13.3 10.7 24 24 24s24-10.7 24-24V120 96H296 24zM256 240v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V240c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilets-portable": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "outhouse", + "toilet" + ] + }, + "unicode": "e584", + "label": "Toilets Portable", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 0H224c17.7 0 32 14.3 32 32V64H0V32C0 14.3 14.3 0 32 0zM0 96H24 232h24v24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H48v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V120 96zM192 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V240c0-8.8-7.2-16-16-16zM352 0H544c17.7 0 32 14.3 32 32V64H320V32c0-17.7 14.3-32 32-32zM320 96h24H552h24v24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H368v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V120 96zM512 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V240c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toolbox": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f0" + ], + "secondary": [ + "10f552" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "chest", + "container", + "fix", + "mechanic", + "repair", + "settings", + "tool", + "toolbox", + "tools" + ] + }, + "unicode": "f552", + "label": "Toolbox", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 88v40H336V88c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8zm-48 40V88c0-30.9 25.1-56 56-56H328c30.9 0 56 25.1 56 56v40h28.1c12.7 0 24.9 5.1 33.9 14.1l51.9 51.9c9 9 14.1 21.2 14.1 33.9V304H384V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v16H192V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v16H0V227.9c0-12.7 5.1-24.9 14.1-33.9l51.9-51.9c9-9 21.2-14.1 33.9-14.1H128zM0 416V336H128v16c0 17.7 14.3 32 32 32s32-14.3 32-32V336H320v16c0 17.7 14.3 32 32 32s32-14.3 32-32V336H512v80c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tooth": { + "aliases": { + "unicodes": { + "composite": [ + "1f9b7" + ], + "secondary": [ + "10f5c9" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicuspid", + "dental", + "dentist", + "molar", + "mouth", + "teeth", + "tooth" + ] + }, + "unicode": "f5c9", + "label": "Tooth", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M186.1 52.1C169.3 39.1 148.7 32 127.5 32C74.7 32 32 74.7 32 127.5v6.2c0 15.8 3.7 31.3 10.7 45.5l23.5 47.1c4.5 8.9 7.6 18.4 9.4 28.2l36.7 205.8c2 11.2 11.6 19.4 22.9 19.8s21.4-7.4 24-18.4l28.9-121.3C192.2 323.7 207 312 224 312s31.8 11.7 35.8 28.3l28.9 121.3c2.6 11.1 12.7 18.8 24 18.4s20.9-8.6 22.9-19.8l36.7-205.8c1.8-9.8 4.9-19.3 9.4-28.2l23.5-47.1c7.1-14.1 10.7-29.7 10.7-45.5v-2.1c0-55-44.6-99.6-99.6-99.6c-24.1 0-47.4 8.8-65.6 24.6l-3.2 2.8 19.5 15.2c7 5.4 8.2 15.5 2.8 22.5s-15.5 8.2-22.5 2.8l-24.4-19-37-28.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "torii-gate": { + "aliases": { + "unicodes": { + "composite": [ + "26e9" + ], + "secondary": [ + "10f6a1" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "religion", + "shinto", + "shinto shrine", + "shintoism", + "shrine" + ] + }, + "unicode": "f6a1", + "label": "Torii Gate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766828, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 80c0 26.5 21.5 48 48 48H64v64h64V128h96v64h64V128h96v64h64V128h16c26.5 0 48-21.5 48-48V13.4C512 6 506 0 498.6 0c-1.7 0-3.4 .3-5 1l-49 19.6C425.7 28.1 405.5 32 385.2 32H126.8c-20.4 0-40.5-3.9-59.4-11.4L18.4 1c-1.6-.6-3.3-1-5-1C6 0 0 6 0 13.4V80zM64 288V480c0 17.7 14.3 32 32 32s32-14.3 32-32V288H384V480c0 17.7 14.3 32 32 32s32-14.3 32-32V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tornado": { + "aliases": { + "unicodes": { + "composite": [ + "1f32a" + ], + "secondary": [ + "10f76f" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "cyclone", + "dorothy", + "landspout", + "tornado", + "toto", + "twister", + "vortext", + "waterspout", + "weather", + "whirlwind" + ] + }, + "unicode": "f76f", + "label": "Tornado", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32V45.6C0 62.7 1.7 79.6 5 96H357.8c3.2-6.9 7.5-13.3 13-18.8l38.6-38.6c4.2-4.2 6.6-10 6.6-16C416 10.1 405.9 0 393.4 0H32C14.3 0 0 14.3 0 32zm352.2 96H13.6c12.2 35.9 32.3 68.7 58.8 96H412l-47.2-62.9c-7.3-9.7-11.6-21.2-12.6-33.1zm-226 138.2l116.4 68.5c8.2 4.8 15.8 10.7 22.5 17.3H445c2-9.8 3-19.9 3-30.1c0-23-5.3-45.5-15.3-65.9H110.2c5.2 3.6 10.5 7 16 10.2zM288 384c10.3 21.4 13.8 45.5 9.9 69l-5.9 35.7c-2 12.2 7.4 23.4 19.8 23.4c5.3 0 10.4-2.1 14.2-5.9l78.2-78.2c12.8-12.8 23.1-27.7 30.4-43.9H288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tower-broadcast": { + "aliases": { + "names": [ + "broadcast-tower" + ], + "unicodes": { + "secondary": [ + "10f519" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwaves", + "antenna", + "communication", + "emergency", + "radio", + "reception", + "waves" + ] + }, + "unicode": "f519", + "label": "Tower Broadcast", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80.3 44C69.8 69.9 64 98.2 64 128s5.8 58.1 16.3 84c6.6 16.4-1.3 35-17.7 41.7s-35-1.3-41.7-17.7C7.4 202.6 0 166.1 0 128S7.4 53.4 20.9 20C27.6 3.6 46.2-4.3 62.6 2.3S86.9 27.6 80.3 44zM555.1 20C568.6 53.4 576 89.9 576 128s-7.4 74.6-20.9 108c-6.6 16.4-25.3 24.3-41.7 17.7S489.1 228.4 495.7 212c10.5-25.9 16.3-54.2 16.3-84s-5.8-58.1-16.3-84C489.1 27.6 497 9 513.4 2.3s35 1.3 41.7 17.7zM352 128c0 23.7-12.9 44.4-32 55.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V183.4c-19.1-11.1-32-31.7-32-55.4c0-35.3 28.7-64 64-64s64 28.7 64 64zM170.6 76.8C163.8 92.4 160 109.7 160 128s3.8 35.6 10.6 51.2c7.1 16.2-.3 35.1-16.5 42.1s-35.1-.3-42.1-16.5c-10.3-23.6-16-49.6-16-76.8s5.7-53.2 16-76.8c7.1-16.2 25.9-23.6 42.1-16.5s23.6 25.9 16.5 42.1zM464 51.2c10.3 23.6 16 49.6 16 76.8s-5.7 53.2-16 76.8c-7.1 16.2-25.9 23.6-42.1 16.5s-23.6-25.9-16.5-42.1c6.8-15.6 10.6-32.9 10.6-51.2s-3.8-35.6-10.6-51.2c-7.1-16.2 .3-35.1 16.5-42.1s35.1 .3 42.1 16.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tower-cell": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwaves", + "antenna", + "communication", + "radio", + "reception", + "waves" + ] + }, + "unicode": "e585", + "label": "Tower Cell", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M62.6 2.3C46.2-4.3 27.6 3.6 20.9 20C7.4 53.4 0 89.9 0 128s7.4 74.6 20.9 108c6.6 16.4 25.3 24.3 41.7 17.7S86.9 228.4 80.3 212C69.8 186.1 64 157.8 64 128s5.8-58.1 16.3-84C86.9 27.6 79 9 62.6 2.3zm450.8 0C497 9 489.1 27.6 495.7 44C506.2 69.9 512 98.2 512 128s-5.8 58.1-16.3 84c-6.6 16.4 1.3 35 17.7 41.7s35-1.3 41.7-17.7c13.5-33.4 20.9-69.9 20.9-108s-7.4-74.6-20.9-108C548.4 3.6 529.8-4.3 513.4 2.3zM340.1 165.2c7.5-10.5 11.9-23.3 11.9-37.2c0-35.3-28.7-64-64-64s-64 28.7-64 64c0 13.9 4.4 26.7 11.9 37.2L98.9 466.8c-7.3 16.1-.2 35.1 15.9 42.4s35.1 .2 42.4-15.9L177.7 448H398.3l20.6 45.2c7.3 16.1 26.3 23.2 42.4 15.9s23.2-26.3 15.9-42.4L340.1 165.2zM369.2 384H206.8l14.5-32H354.7l14.5 32zM288 205.3L325.6 288H250.4L288 205.3zM163.3 73.6c5.3-12.1-.2-26.3-12.4-31.6s-26.3 .2-31.6 12.4C109.5 77 104 101.9 104 128s5.5 51 15.3 73.6c5.3 12.1 19.5 17.7 31.6 12.4s17.7-19.5 12.4-31.6C156 165.8 152 147.4 152 128s4-37.8 11.3-54.4zM456.7 54.4c-5.3-12.1-19.5-17.7-31.6-12.4s-17.7 19.5-12.4 31.6C420 90.2 424 108.6 424 128s-4 37.8-11.3 54.4c-5.3 12.1 .2 26.3 12.4 31.6s26.3-.2 31.6-12.4C466.5 179 472 154.1 472 128s-5.5-51-15.3-73.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tower-observation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fire tower", + "view" + ] + }, + "unicode": "e586", + "label": "Tower Observation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M241.7 3.4c9-4.5 19.6-4.5 28.6 0l160 80c15.8 7.9 22.2 27.1 14.3 42.9C439 137.5 427.7 144 416 144v80c0 17.7-14.3 32-32 32h-4.9l32 192H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H384.5c-.4 0-.8 0-1.1 0H128.6c-.4 0-.8 0-1.1 0H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l32-192H128c-17.7 0-32-14.3-32-32V144c-11.7 0-23-6.5-28.6-17.7c-7.9-15.8-1.5-35 14.3-42.9l160-80zM314.5 448L256 399.2 197.5 448h117zM197.8 256l-4.7 28.3L256 336.8l62.9-52.5L314.2 256H197.8zm-13.9 83.2l-11.2 67L218.5 368l-34.6-28.8zM293.5 368l45.8 38.1-11.2-67L293.5 368zM176 128c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tractor": { + "aliases": { + "unicodes": { + "composite": [ + "1f69c" + ], + "secondary": [ + "10f722" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "farm", + "tractor", + "vehicle" + ] + }, + "unicode": "f722", + "label": "Tractor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 64c0-35.3 28.7-64 64-64H266.3c26.2 0 49.7 15.9 59.4 40.2L373.7 160H480V126.2c0-24.8 5.8-49.3 16.9-71.6l2.5-5c7.9-15.8 27.1-22.2 42.9-14.3s22.2 27.1 14.3 42.9l-2.5 5c-6.7 13.3-10.1 28-10.1 42.9V160h56c22.1 0 40 17.9 40 40v45.4c0 16.5-8.5 31.9-22.6 40.7l-43.3 27.1c-14.2-5.9-29.8-9.2-46.1-9.2c-39.3 0-74.1 18.9-96 48H352c0 17.7-14.3 32-32 32h-8.2c-1.7 4.8-3.7 9.5-5.8 14.1l5.8 5.8c12.5 12.5 12.5 32.8 0 45.3l-22.6 22.6c-12.5 12.5-32.8 12.5-45.3 0l-5.8-5.8c-4.6 2.2-9.3 4.1-14.1 5.8V480c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32v-8.2c-4.8-1.7-9.5-3.7-14.1-5.8l-5.8 5.8c-12.5 12.5-32.8 12.5-45.3 0L40.2 449.1c-12.5-12.5-12.5-32.8 0-45.3l5.8-5.8c-2.2-4.6-4.1-9.3-5.8-14.1H32c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32h8.2c1.7-4.8 3.7-9.5 5.8-14.1l-5.8-5.8c-12.5-12.5-12.5-32.8 0-45.3l22.6-22.6c9-9 21.9-11.5 33.1-7.6V192 160 64zm170.3 0H160v96h32H304.7L266.3 64zM176 256a80 80 0 1 0 0 160 80 80 0 1 0 0-160zM528 448a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0 64c-48.6 0-88-39.4-88-88c0-29.8 14.8-56.1 37.4-72c14.3-10.1 31.8-16 50.6-16c2.7 0 5.3 .1 7.9 .3c44.9 4 80.1 41.7 80.1 87.7c0 48.6-39.4 88-88 88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trade-federation": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f513", + "label": "Trade Federation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8.8c-137 0-248 111-248 248s111 248 248 248 248-111 248-248-111-248-248-248zm0 482.8c-129.7 0-234.8-105.1-234.8-234.8S118.3 22 248 22s234.8 105.1 234.8 234.8S377.7 491.6 248 491.6zm155.1-328.5v-46.8H209.3V198H54.2l36.7 46h117.7v196.8h48.8V245h83.3v-47h-83.3v-34.8h145.7zm-73.3 45.1v23.9h-82.9v197.4h-26.8V232.1H96.3l-20.1-23.9h143.9v-80.6h171.8V152h-145v56.2zm-161.3-69l-12.4-20.7 2.1 23.8-23.5 5.4 23.3 5.4-2.1 24 12.3-20.5 22.2 9.5-15.7-18.1 15.8-18.1zm-29.6-19.7l9.3-11.5-12.7 5.9-8-12.4 1.7 13.9-14.3 3.8 13.7 2.7-.8 14.7 6.8-12.2 13.8 5.3zm165.4 145.2l-13.1 5.6-7.3-12.2 1.3 14.2-13.9 3.2 13.9 3.2-1.2 14.2 7.3-12.2 13.1 5.5-9.4-10.7zm106.9-77.2l-20.9 9.1-12-19.6 2.2 22.7-22.3 5.4 22.2 4.9-1.8 22.9 11.5-19.6 21.2 8.8-15.1-17zM248 29.9c-125.3 0-226.9 101.6-226.9 226.9S122.7 483.7 248 483.7s226.9-101.6 226.9-226.9S373.3 29.9 248 29.9zM342.6 196v51h-83.3v195.7h-52.7V245.9H89.9l-40-49.9h157.4v-81.6h197.8v50.7H259.4V196zM248 43.2c60.3 0 114.8 25 153.6 65.2H202.5V190H45.1C73.1 104.8 153.4 43.2 248 43.2zm0 427.1c-117.9 0-213.6-95.6-213.6-213.5 0-21.2 3.1-41.8 8.9-61.1L87.1 252h114.7v196.8h64.6V253h83.3v-62.7h-83.2v-19.2h145.6v-50.8c30.8 37 49.3 84.6 49.3 136.5.1 117.9-95.5 213.5-213.4 213.5zM178.8 275l-11-21.4 1.7 24.5-23.7 3.9 23.8 5.9-3.7 23.8 13-20.9 21.5 10.8-15.8-18.8 16.9-17.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "trademark": { + "aliases": { + "unicodes": { + "composite": [ + "2122" + ], + "secondary": [ + "10f25c" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copyright", + "mark", + "register", + "symbol", + "tm", + "trade mark", + "trademark" + ] + }, + "unicode": "f25c", + "label": "Trademark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M345.6 108.8c-8.3-11-22.7-15.5-35.7-11.2S288 114.2 288 128V384c0 17.7 14.3 32 32 32s32-14.3 32-32V224l86.4 115.2c6 8.1 15.5 12.8 25.6 12.8s19.6-4.7 25.6-12.8L576 224V384c0 17.7 14.3 32 32 32s32-14.3 32-32V128c0-13.8-8.8-26-21.9-30.4s-27.5 .1-35.7 11.2L464 266.7 345.6 108.8zM0 128c0 17.7 14.3 32 32 32H96V384c0 17.7 14.3 32 32 32s32-14.3 32-32V160h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32C14.3 96 0 110.3 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "traffic-light": { + "aliases": { + "unicodes": { + "composite": [ + "1f6a6" + ], + "secondary": [ + "10f637" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "direction", + "light", + "road", + "signal", + "traffic", + "travel", + "vertical traffic light" + ] + }, + "unicode": "f637", + "label": "Traffic Light", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767488, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 88.4 71.6 160 160 160s160-71.6 160-160V64c0-35.3-28.7-64-64-64H64zm96 416a48 48 0 1 1 0-96 48 48 0 1 1 0 96zm48-176a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zm-48-80a48 48 0 1 1 0-96 48 48 0 1 1 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trailer": { + "aliases": { + "unicodes": { + "secondary": [ + "10e041" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "haul", + "moving", + "travel" + ] + }, + "unicode": "e041", + "label": "Trailer", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 32C21.5 32 0 53.5 0 80V336c0 26.5 21.5 48 48 48H65.1c7.8-54.3 54.4-96 110.9-96s103.1 41.7 110.9 96H488h8H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H544V80c0-26.5-21.5-48-48-48H48zM80 96c8.8 0 16 7.2 16 16l0 131.2c-11.4 5.9-22.2 12.9-32 21V112c0-8.8 7.2-16 16-16zm96 128c-5.4 0-10.7 .2-16 .7L160 112c0-8.8 7.2-16 16-16s16 7.2 16 16l0 112.7c-5.3-.5-10.6-.7-16-.7zm80 19.2L256 112c0-8.8 7.2-16 16-16s16 7.2 16 16l0 152.2c-9.8-8.1-20.6-15.2-32-21zM368 96c8.8 0 16 7.2 16 16l0 192c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16zm112 16l0 192c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16s16 7.2 16 16zM176 480a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-112a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "train": { + "aliases": { + "unicodes": { + "composite": [ + "1f686" + ], + "secondary": [ + "10f238" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullet", + "commute", + "locomotive", + "railway", + "subway", + "train" + ] + }, + "unicode": "f238", + "label": "Train", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V352c0 48 35.2 87.7 81.1 94.9l-46 46C28.1 499.9 33.1 512 43 512H82.7c8.5 0 16.6-3.4 22.6-9.4L160 448H288l54.6 54.6c6 6 14.1 9.4 22.6 9.4H405c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96H96zM64 96c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96zM224 288a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "train-subway": { + "aliases": { + "names": [ + "subway" + ], + "unicodes": { + "secondary": [ + "10f239" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "machine", + "railway", + "train", + "transportation", + "vehicle" + ] + }, + "unicode": "f239", + "label": "Train Subway", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V352c0 48 35.2 87.7 81.1 94.9l-46 46C28.1 499.9 33.1 512 43 512H82.7c8.5 0 16.6-3.4 22.6-9.4L160 448H288l54.6 54.6c6 6 14.1 9.4 22.6 9.4H405c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96H96zM64 128c0-17.7 14.3-32 32-32h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM272 96h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H272c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32zM64 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm288-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "train-tram": { + "aliases": { + "unicodes": { + "composite": [ + "1f68a" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crossing", + "machine", + "mountains", + "seasonal", + "tram", + "transportation", + "trolleybus" + ] + }, + "unicode": "e5b4", + "label": "Train Tram", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M86.8 48c-12.2 0-23.6 5.5-31.2 15L42.7 79C34.5 89.3 19.4 91 9 82.7S-3 59.4 5.3 49L18 33C34.7 12.2 60 0 86.8 0H361.2c26.7 0 52 12.2 68.7 33l12.8 16c8.3 10.4 6.6 25.5-3.8 33.7s-25.5 6.6-33.7-3.7L392.5 63c-7.6-9.5-19.1-15-31.2-15H248V96h40c53 0 96 43 96 96V352c0 30.6-14.3 57.8-36.6 75.4l65.5 65.5c7.1 7.1 2.1 19.1-7.9 19.1H365.3c-8.5 0-16.6-3.4-22.6-9.4L288 448H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H43c-10 0-15-12.1-7.9-19.1l65.5-65.5C78.3 409.8 64 382.6 64 352V192c0-53 43-96 96-96h40V48H86.8zM160 160c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32H160zm32 192a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "transgender": { + "aliases": { + "names": [ + "transgender-alt" + ], + "unicodes": { + "composite": [ + "26a7" + ], + "secondary": [ + "10f225" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "female", + "gender", + "intersex", + "male", + "transgender", + "transgender symbol" + ] + }, + "unicode": "f225", + "label": "Transgender", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M112 0c6.5 0 12.3 3.9 14.8 9.9s1.1 12.9-3.5 17.4l-31 31L112 78.1l7-7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-7 7 15.2 15.2C187.7 107.6 220.5 96 256 96s68.3 11.6 94.9 31.2l68.8-68.8-31-31c-4.6-4.6-5.9-11.5-3.5-17.4s8.3-9.9 14.8-9.9h96c8.8 0 16 7.2 16 16v96c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5l-31-31-68.8 68.8C404.4 187.7 416 220.5 416 256c0 80.2-59 146.6-136 158.2V432h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v8c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V414.2C155 402.6 96 336.2 96 256c0-35.5 11.6-68.3 31.2-94.9L112 145.9l-7 7c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l7-7L58.3 92.3l-31 31c-4.6 4.6-11.5 5.9-17.4 3.5S0 118.5 0 112V16C0 7.2 7.2 0 16 0h96zM352 256a96 96 0 1 0 -192 0 96 96 0 1 0 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1f8" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove" + ] + }, + "unicode": "f1f8", + "label": "Trash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M135.2 17.7L128 32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320l-7.2-14.3C307.4 6.8 296.3 0 284.2 0H163.8c-12.1 0-23.2 6.8-28.6 17.7zM416 128H32L53.2 467c1.6 25.3 22.6 45 47.9 45H346.9c25.3 0 46.3-19.7 47.9-45L416 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trash-arrow-up": { + "aliases": { + "names": [ + "trash-restore" + ], + "unicodes": { + "secondary": [ + "10f829" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "delete", + "garbage", + "hide", + "oops", + "remove", + "undo" + ] + }, + "unicode": "f829", + "label": "Trash Arrow Up", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0zM32 128H416L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32 128zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trash-can": { + "aliases": { + "names": [ + "trash-alt" + ], + "unicodes": { + "composite": [ + "f014" + ], + "secondary": [ + "10f2ed" + ] + } + }, + "changes": [ + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove", + "trash-o" + ] + }, + "unicode": "f2ed", + "label": "Trash Can", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M135.2 17.7C140.6 6.8 151.7 0 163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm96 64c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16z" + }, + "regular": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M170.5 51.6L151.5 80h145l-19-28.4c-1.5-2.2-4-3.6-6.7-3.6H177.1c-2.7 0-5.2 1.3-6.7 3.6zm147-26.6L354.2 80H368h48 8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V432c0 44.2-35.8 80-80 80H112c-44.2 0-80-35.8-80-80V128H24c-13.3 0-24-10.7-24-24S10.7 80 24 80h8H80 93.8l36.7-55.1C140.9 9.4 158.4 0 177.1 0h93.7c18.7 0 36.2 9.4 46.6 24.9zM80 128V432c0 17.7 14.3 32 32 32H336c17.7 0 32-14.3 32-32V128H80zm80 64V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "trash-can-arrow-up": { + "aliases": { + "names": [ + "trash-restore-alt" + ], + "unicodes": { + "secondary": [ + "10f82a" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "delete", + "garbage", + "hide", + "oops", + "remove", + "undo" + ] + }, + "unicode": "f82a", + "label": "Trash Can Arrow Up", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tree": { + "aliases": { + "unicodes": { + "composite": [ + "1f332" + ], + "secondary": [ + "10f1bb" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bark", + "evergreen tree", + "fall", + "flora", + "forest", + "nature", + "plant", + "seasonal", + "tree" + ] + }, + "unicode": "f1bb", + "label": "Tree", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M210.6 5.9L62 169.4c-3.9 4.2-6 9.8-6 15.5C56 197.7 66.3 208 79.1 208H104L30.6 281.4c-4.2 4.2-6.6 10-6.6 16C24 309.9 34.1 320 46.6 320H80L5.4 409.5C1.9 413.7 0 419 0 424.5c0 13 10.5 23.5 23.5 23.5H192v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448H424.5c13 0 23.5-10.5 23.5-23.5c0-5.5-1.9-10.8-5.4-15L368 320h33.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L344 208h24.9c12.7 0 23.1-10.3 23.1-23.1c0-5.7-2.1-11.3-6-15.5L237.4 5.9C234 2.1 229.1 0 224 0s-10 2.1-13.4 5.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tree-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "urban" + ] + }, + "unicode": "e587", + "label": "Tree City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48V192h40V120c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H432 336c-26.5 0-48-21.5-48-48V48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H368zM352 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H528zM512 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H528c-8.8 0-16 7.2-16 16zM224 160c0 6-1 11-2 16c20 14 34 38 34 64c0 45-36 80-80 80H160V480c0 18-15 32-32 32c-18 0-32-14-32-32V320H80c-45 0-80-35-80-80c0-26 13-50 33-64c-1-5-1-10-1-16c0-53 42-96 96-96c53 0 96 43 96 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trello": { + "changes": [ + "3.2.0", + "5.0.0", + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "unicode": "f181", + "label": "Trello", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M392.3 32H56.1C25.1 32 0 57.1 0 88c-.1 0 0-4 0 336 0 30.9 25.1 56 56 56h336.2c30.8-.2 55.7-25.2 55.7-56V88c.1-30.8-24.8-55.8-55.6-56zM197 371.3c-.2 14.7-12.1 26.6-26.9 26.6H87.4c-14.8.1-26.9-11.8-27-26.6V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v254.2zm193.1-112c0 14.8-12 26.9-26.9 26.9h-81c-14.8 0-26.9-12-26.9-26.9V117.2c0-14.8 12-26.9 26.8-26.9h81.1c14.8 0 26.9 12 26.9 26.9v142.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "triangle-exclamation": { + "aliases": { + "names": [ + "exclamation-triangle", + "warning" + ], + "unicodes": { + "composite": [ + "26a0" + ], + "secondary": [ + "10f071" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warnin", + "warning" + ] + }, + "unicode": "f071", + "label": "Triangle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trophy": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c6" + ], + "secondary": [ + "10f091" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "cup", + "game", + "prize", + "trophy", + "winner" + ] + }, + "unicode": "f091", + "label": "Trophy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 0H176c-26.5 0-48.1 21.8-47.1 48.2c.2 5.3 .4 10.6 .7 15.8H24C10.7 64 0 74.7 0 88c0 92.6 33.5 157 78.5 200.7c44.3 43.1 98.3 64.8 138.1 75.8c23.4 6.5 39.4 26 39.4 45.6c0 20.9-17 37.9-37.9 37.9H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H357.9C337 448 320 431 320 410.1c0-19.6 15.9-39.2 39.4-45.6c39.9-11 93.9-32.7 138.2-75.8C542.5 245 576 180.6 576 88c0-13.3-10.7-24-24-24H446.4c.3-5.2 .5-10.4 .7-15.8C448.1 21.8 426.5 0 400 0zM48.9 112h84.4c9.1 90.1 29.2 150.3 51.9 190.6c-24.9-11-50.8-26.5-73.2-48.3c-32-31.1-58-76-63-142.3zM464.1 254.3c-22.4 21.8-48.3 37.3-73.2 48.3c22.7-40.3 42.8-100.5 51.9-190.6h84.4c-5.1 66.3-31.1 111.2-63 142.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trowel": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "build", + "construction", + "tool" + ] + }, + "unicode": "e589", + "label": "Trowel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767441, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M343.9 213.4L245.3 312l65.4 65.4c7.9 7.9 11.1 19.4 8.4 30.3s-10.8 19.6-21.5 22.9l-256 80c-11.4 3.5-23.8 .5-32.2-7.9S-2.1 481.8 1.5 470.5l80-256c3.3-10.7 12-18.9 22.9-21.5s22.4 .5 30.3 8.4L200 266.7l98.6-98.6c-14.3-14.6-14.2-38 .3-52.5l95.4-95.4c26.9-26.9 70.5-26.9 97.5 0s26.9 70.5 0 97.5l-95.4 95.4c-14.5 14.5-37.9 14.6-52.5 .3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trowel-bricks": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "build", + "construction", + "reconstruction", + "tool" + ] + }, + "unicode": "e58a", + "label": "Trowel Bricks", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767444, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240.8 4.8C250.3 10.6 256 20.9 256 32v72h89c3.6-13.8 16.1-24 31-24h88c26.5 0 48 21.5 48 48s-21.5 48-48 48H376c-14.9 0-27.4-10.2-31-24H256v72c0 11.1-5.7 21.4-15.2 27.2s-21.2 6.4-31.1 1.4l-192-96C6.8 151.2 0 140.1 0 128s6.8-23.2 17.7-28.6l192-96c9.9-5 21.7-4.4 31.1 1.4zM288 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V256zM32 384h96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32zm192 0H480c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck": { + "aliases": { + "unicodes": { + "composite": [ + "1f69a", + "26df" + ], + "secondary": [ + "10f0d1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Truck", + "cargo", + "delivery", + "delivery truck", + "shipping", + "truck", + "vehicle" + ] + }, + "unicode": "f0d1", + "label": "Truck", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H48zM416 160h50.7L544 237.3V256H416V160zM112 416a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm368-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "access", + "fast", + "shipping", + "transport" + ] + }, + "unicode": "e58b", + "label": "Truck Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM257 95c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39H96c-13.3 0-24 10.7-24 24s10.7 24 24 24H262.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9L257 95z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-droplet": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "thirst", + "truck", + "water", + "water supply" + ] + }, + "unicode": "e58c", + "label": "Truck Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM208 272c39.8 0 72-29.6 72-66c0-27-39.4-82.9-59.9-110.3c-6.1-8.2-18.1-8.2-24.2 0C175.4 123 136 179 136 206c0 36.5 32.2 66 72 66z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-fast": { + "aliases": { + "names": [ + "shipping-fast" + ], + "unicodes": { + "secondary": [ + "10f48b" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "express", + "fedex", + "mail", + "overnight", + "package", + "ups" + ] + }, + "unicode": "f48b", + "label": "Truck Fast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M112 0C85.5 0 64 21.5 64 48V96H16c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 272c8.8 0 16 7.2 16 16s-7.2 16-16 16H64 48c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 240c8.8 0 16 7.2 16 16s-7.2 16-16 16H64 16c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 208c8.8 0 16 7.2 16 16s-7.2 16-16 16H64V416c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H112zM544 237.3V256H416V160h50.7L544 237.3zM160 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm272 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-field": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "supplies", + "truck" + ] + }, + "unicode": "e58d", + "label": "Truck Field", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 96c0-35.3 28.7-64 64-64H320c23.7 0 44.4 12.9 55.4 32h51.8c25.3 0 48.2 14.9 58.5 38l52.8 118.8c.5 1.1 .9 2.1 1.3 3.2H544c35.3 0 64 28.7 64 64v32c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V288c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32V96zM384 224h85.9l-42.7-96H384v96zM160 432a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-field-un": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "supplies", + "truck", + "united nations" + ] + }, + "unicode": "e58e", + "label": "Truck Field Un", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 32C60.7 32 32 60.7 32 96v32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32v32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288c0-35.3-28.7-64-64-64h-4.2c-.4-1.1-.9-2.1-1.3-3.2L485.7 102c-10.3-23.1-33.2-38-58.5-38H375.4C364.4 44.9 343.7 32 320 32H96zm288 96h43.2l42.7 96H384V128zM112 384a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm368-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM253.3 135.1l34.7 52V144c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V144c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM128 144v64c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V144c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-front": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "shuttle", + "truck", + "van" + ] + }, + "unicode": "e2b7", + "label": "Truck Front", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 80C0 35.8 35.8 0 80 0H432c44.2 0 80 35.8 80 80V368c0 26.2-12.6 49.4-32 64v48c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V432C12.6 417.4 0 394.2 0 368V80zm129.9 72.2L112 224H400l-17.9-71.8C378.5 138 365.7 128 351 128H161c-14.7 0-27.5 10-31 24.2zM128 320a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-medical": { + "aliases": { + "names": [ + "ambulance" + ], + "unicodes": { + "composite": [ + "1f691" + ], + "secondary": [ + "10f0f9" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ambulance", + "clinic", + "covid-19", + "emergency", + "emt", + "er", + "help", + "hospital", + "mobile", + "support", + "vehicle" + ] + }, + "unicode": "f0f9", + "label": "Truck Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM176 80v48l-48 0c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V192h48c8.8 0 16-7.2 16-16V144c0-8.8-7.2-16-16-16H240V80c0-8.8-7.2-16-16-16H192c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-monster": { + "aliases": { + "unicodes": { + "secondary": [ + "10f63b" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "offroad", + "vehicle", + "wheel" + ] + }, + "unicode": "f63b", + "label": "Truck Monster", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 64v64H416L368 64H288zM419.2 25.6L496 128h80c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64H288c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H224V48c0-26.5 21.5-48 48-48h96c20.1 0 39.1 9.5 51.2 25.6zM152 256h16c12.1 0 22.1 8.9 23.8 20.6c7.6 2.2 14.9 5.3 21.7 9c9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.3 31.3c3.7 6.8 6.8 14.1 9 21.7c11.6 1.7 20.6 11.7 20.6 23.8v16c0 12.1-8.9 22.1-20.6 23.8c-2.2 7.6-5.3 14.9-9 21.7c7 9.4 6.3 22.8-2.3 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2c-6.8 3.7-14.1 6.8-21.7 9C190.1 503.1 180.1 512 168 512H152c-12.1 0-22.1-8.9-23.8-20.6c-7.6-2.2-14.9-5.3-21.7-9c-9.4 7.1-22.8 6.3-31.3-2.2L63.8 468.9c-8.6-8.6-9.3-21.9-2.3-31.3c-3.7-6.9-6.8-14.1-9-21.8C40.9 414.1 32 404.1 32 392V376c0-12.1 8.9-22.1 20.6-23.8c2.2-7.6 5.3-14.9 9-21.8c-7-9.4-6.3-22.8 2.3-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3c6.8-3.7 14.1-6.8 21.7-9c1.7-11.6 11.7-20.6 23.8-20.6zm8 176a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM448.2 276.6c1.7-11.6 11.7-20.6 23.8-20.6h16c12.1 0 22.1 8.9 23.8 20.6c7.6 2.2 14.9 5.3 21.8 9c9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.2 31.3c3.7 6.8 6.8 14.1 9 21.7c11.6 1.7 20.6 11.7 20.6 23.8v16c0 12.1-8.9 22.1-20.6 23.8c-2.2 7.6-5.3 14.9-9 21.7c7 9.4 6.3 22.8-2.2 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2c-6.9 3.7-14.1 6.8-21.8 9C510.1 503.1 500.1 512 488 512H472c-12.1 0-22.1-8.9-23.8-20.6c-7.6-2.2-14.9-5.3-21.7-9c-9.4 7.1-22.8 6.3-31.3-2.2l-11.3-11.3c-8.6-8.6-9.3-21.9-2.2-31.3c-3.7-6.9-6.8-14.1-9-21.8C360.9 414.1 352 404.1 352 392V376c0-12.1 8.9-22.1 20.6-23.8c2.2-7.6 5.3-14.9 9-21.8c-7-9.4-6.3-22.8 2.2-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3c6.8-3.7 14.1-6.8 21.7-9zM528 384a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-moving": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4df" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "inventory", + "rental", + "vehicle" + ] + }, + "unicode": "f4df", + "label": "Truck Moving", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V304v80 16c0 44.2 35.8 80 80 80c26.2 0 49.4-12.6 64-32c14.6 19.4 37.8 32 64 32c44.2 0 80-35.8 80-80c0-5.5-.6-10.8-1.6-16H416h33.6c-1 5.2-1.6 10.5-1.6 16c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H608c17.7 0 32-14.3 32-32V288 272 261.7c0-9.2-3.2-18.2-9-25.3l-58.8-71.8c-10.6-13-26.5-20.5-43.3-20.5H480V96c0-35.3-28.7-64-64-64H64zM585 256H480V192h48.8c2.4 0 4.7 1.1 6.2 2.9L585 256zM528 368a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM176 400a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM80 368a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-pickup": { + "aliases": { + "unicodes": { + "composite": [ + "1f6fb" + ], + "secondary": [ + "10f63c" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "pick-up", + "pickup", + "pickup truck", + "truck", + "vehicle" + ] + }, + "unicode": "f63c", + "label": "Truck Pickup", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M368.6 96l76.8 96H288V96h80.6zM224 80V192H64c-17.7 0-32 14.3-32 32v64c-17.7 0-32 14.3-32 32s14.3 32 32 32H65.1c-.7 5.2-1.1 10.6-1.1 16c0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16h66.3c-.7 5.2-1.1 10.6-1.1 16c0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16H608c17.7 0 32-14.3 32-32s-14.3-32-32-32V224c0-17.7-14.3-32-32-32H527.4L418.6 56c-12.1-15.2-30.5-24-50-24H272c-26.5 0-48 21.5-48 48zm0 288a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zm288 0a48 48 0 1 1 -96 0 48 48 0 1 1 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-plane": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "plane", + "transportation", + "truck", + "vehicle" + ] + }, + "unicode": "e58f", + "label": "Truck Plane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767637, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M200 0c-30.6 0-56 54.7-56 86.1V192.5L7.8 274.3C2.9 277.2 0 282.4 0 288v64c0 5.1 2.4 9.8 6.4 12.8s9.3 3.9 14.1 2.5l123.4-37v81.2l-50 40c-3.8 3-6 7.6-6 12.5v32c0 5.1 2.5 10 6.6 13s9.5 3.8 14.4 2.2L200 480.9 290.4 511c-1.6-4.7-2.4-9.8-2.4-15V463.4c-18.2-10.5-30.7-29.7-31.9-51.8l-.1-.1V408 325.5 184l0-1.1 0 0V86.1C256 54.7 231.5 0 200 0zm88 176V400c0 20.9 13.4 38.7 32 45.3V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V448H544v40c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V445.3c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48zm79.8 78.7c3.3-8.7 11.2-14.7 20.5-14.7H539.7c9.2 0 17.2 6 20.5 14.7L576 304H352l15.8-49.3zM568 352a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM336 376a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-ramp-box": { + "aliases": { + "names": [ + "truck-loading" + ], + "unicodes": { + "secondary": [ + "10f4de" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "cargo", + "delivery", + "inventory", + "moving", + "rental", + "vehicle" + ] + }, + "unicode": "f4de", + "label": "Truck Ramp Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 0V400c0 61.9-50.1 112-112 112c-61 0-110.5-48.7-112-109.3L48.4 502.9c-17.1 4.6-34.6-5.4-39.3-22.5s5.4-34.6 22.5-39.3L352 353.8V64c0-35.3 28.7-64 64-64H640zM576 400a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM23.1 207.7c-4.6-17.1 5.6-34.6 22.6-39.2l46.4-12.4 20.7 77.3c2.3 8.5 11.1 13.6 19.6 11.3l30.9-8.3c8.5-2.3 13.6-11.1 11.3-19.6l-20.7-77.3 46.4-12.4c17.1-4.6 34.6 5.6 39.2 22.6l41.4 154.5c4.6 17.1-5.6 34.6-22.6 39.2L103.7 384.9c-17.1 4.6-34.6-5.6-39.2-22.6L23.1 207.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tty": { + "aliases": { + "names": [ + "teletype" + ], + "unicodes": { + "secondary": [ + "10f1e4" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communication", + "deaf", + "telephone", + "teletypewriter", + "text" + ] + }, + "unicode": "f1e4", + "label": "Tty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767390, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M38.3 241.3L15.1 200.6c-9.2-16.2-8.4-36.5 4.5-50C61.4 106.8 144.7 48 256 48s194.6 58.8 236.4 102.6c12.9 13.5 13.7 33.8 4.5 50l-23.1 40.7c-7.5 13.2-23.3 19.3-37.8 14.6l-81.1-26.6c-13.1-4.3-22-16.6-22-30.4V144c-49.6-18.1-104-18.1-153.6 0v54.8c0 13.8-8.9 26.1-22 30.4L76.1 255.8c-14.5 4.7-30.3-1.4-37.8-14.6zM32 336c0-8.8 7.2-16 16-16H80c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H48c-8.8 0-16-7.2-16-16V336zm0 96c0-8.8 7.2-16 16-16H80c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H48c-8.8 0-16-7.2-16-16V432zM144 320h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V336zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H336c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H432c-8.8 0-16-7.2-16-16V336zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H432c-8.8 0-16-7.2-16-16V432c0-8.8 7.2-16 16-16zM128 432c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16V432z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tumblr": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f173", + "label": "Tumblr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "turkish-lira-sign": { + "aliases": { + "names": [ + "try", + "turkish-lira" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Turkish Lira Sign", + "currency" + ] + }, + "unicode": "e2bb", + "label": "Turkish Lira Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766474, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32c17.7 0 32 14.3 32 32V99.3L247.2 65.2c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 165.9v29.4l119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 261.9V416h63.8c68.2 0 124.4-53.5 127.8-121.6l.4-8c.9-17.7 15.9-31.2 33.6-30.4s31.2 15.9 30.4 33.6l-.4 8C378.5 399.8 294.1 480 191.8 480H96c-17.7 0-32-14.3-32-32V280.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 213.6V184.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 117.6V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "turn-down": { + "aliases": { + "names": [ + "level-down-alt" + ], + "unicodes": { + "composite": [ + "2935" + ], + "secondary": [ + "10f3be" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "down", + "level-down", + "right arrow curving down" + ] + }, + "unicode": "f3be", + "label": "Turn Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M350 334.5c3.8 8.8 2 19-4.6 26l-136 144c-4.5 4.8-10.8 7.5-17.4 7.5s-12.9-2.7-17.4-7.5l-136-144c-6.6-7-8.4-17.2-4.6-26s12.5-14.5 22-14.5h88l0-192c0-17.7-14.3-32-32-32H32C14.3 96 0 81.7 0 64V32C0 14.3 14.3 0 32 0l80 0c70.7 0 128 57.3 128 128l0 192h88c9.6 0 18.2 5.7 22 14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "turn-up": { + "aliases": { + "names": [ + "level-up-alt" + ], + "unicodes": { + "composite": [ + "2934" + ], + "secondary": [ + "10f3bf" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "level-up", + "right arrow curving up" + ] + }, + "unicode": "f3bf", + "label": "Turn Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M350 177.5c3.8-8.8 2-19-4.6-26l-136-144C204.9 2.7 198.6 0 192 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26s12.5 14.5 22 14.5h88l0 192c0 17.7-14.3 32-32 32H32c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32l80 0c70.7 0 128-57.3 128-128l0-192h88c9.6 0 18.2-5.7 22-14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tv": { + "aliases": { + "names": [ + "television", + "tv-alt" + ], + "unicodes": { + "composite": [ + "f8e5" + ], + "primary": [ + "f8e5" + ], + "secondary": [ + "10f26c", + "10f8e5" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "display", + "monitor", + "television" + ] + }, + "unicode": "f26c", + "label": "Tv", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64V352H576V64H64zM0 64C0 28.7 28.7 0 64 0H576c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM128 448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "twitch": { + "changes": [ + "4.2.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1e8", + "label": "Twitch", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M391.17,103.47H352.54v109.7h38.63ZM285,103H246.37V212.75H285ZM120.83,0,24.31,91.42V420.58H140.14V512l96.53-91.42h77.25L487.69,256V0ZM449.07,237.75l-77.22,73.12H294.61l-67.6,64v-64H140.14V36.58H449.07Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "twitter": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "unicode": "f099", + "label": "Twitter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "typo3": { + "changes": [ + "5.0.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42b", + "label": "Typo3", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M178.7 78.4c0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C7 246 113.8 480 191.1 480c36.3 0 97.3-59.5 146.7-139-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9zM301.5 32c-30.1 0-41.7 5.4-41.7 36.3 0 66.4 53.8 198.5 101.7 198.5 26.3 0 78.8-99.7 78.8-182.3 0-40.9-67-52.5-138.8-52.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "u": { + "aliases": { + "unicodes": { + "composite": [ + "75" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter U", + "Latin Small Letter U", + "letter" + ] + }, + "unicode": "55", + "label": "U", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V288c0 70.7 57.3 128 128 128s128-57.3 128-128V64c0-17.7 14.3-32 32-32s32 14.3 32 32V288c0 106-86 192-192 192S0 394 0 288V64C0 46.3 14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "uber": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f402", + "label": "Uber", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ubuntu": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f7df", + "label": "Ubuntu", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm52.7 93c8.8-15.2 28.3-20.5 43.5-11.7 15.3 8.8 20.5 28.3 11.7 43.6-8.8 15.2-28.3 20.5-43.5 11.7-15.3-8.9-20.5-28.4-11.7-43.6zM87.4 287.9c-17.6 0-31.9-14.3-31.9-31.9 0-17.6 14.3-31.9 31.9-31.9 17.6 0 31.9 14.3 31.9 31.9 0 17.6-14.3 31.9-31.9 31.9zm28.1 3.1c22.3-17.9 22.4-51.9 0-69.9 8.6-32.8 29.1-60.7 56.5-79.1l23.7 39.6c-51.5 36.3-51.5 112.5 0 148.8L172 370c-27.4-18.3-47.8-46.3-56.5-79zm228.7 131.7c-15.3 8.8-34.7 3.6-43.5-11.7-8.8-15.3-3.6-34.8 11.7-43.6 15.2-8.8 34.7-3.6 43.5 11.7 8.8 15.3 3.6 34.8-11.7 43.6zm.3-69.5c-26.7-10.3-56.1 6.6-60.5 35-5.2 1.4-48.9 14.3-96.7-9.4l22.5-40.3c57 26.5 123.4-11.7 128.9-74.4l46.1.7c-2.3 34.5-17.3 65.5-40.3 88.4zm-5.9-105.3c-5.4-62-71.3-101.2-128.9-74.4l-22.5-40.3c47.9-23.7 91.5-10.8 96.7-9.4 4.4 28.3 33.8 45.3 60.5 35 23.1 22.9 38 53.9 40.2 88.5l-46 .6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "uikit": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f403", + "label": "UIkit", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "umbraco": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8e8", + "label": "Umbraco", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 510, + 512 + ], + "width": 510, + "height": 512, + "path": "M255.35 8C118.36 7.83 7.14 118.72 7 255.68c-.07 137 111 248.2 248 248.27 136.85 0 247.82-110.7 248-247.67S392.34 8.17 255.35 8zm145 266q-1.14 40.68-14 65t-43.51 35q-30.61 10.7-85.45 10.47h-4.6q-54.78.22-85.44-10.47t-43.52-35q-12.85-24.36-14-65a224.81 224.81 0 0 1 0-30.71 418.37 418.37 0 0 1 3.6-43.88c1.88-13.39 3.57-22.58 5.4-32 1-4.88 1.28-6.42 1.82-8.45a5.09 5.09 0 0 1 4.9-3.89h.69l32 5a5.07 5.07 0 0 1 4.16 5 5 5 0 0 1 0 .77l-1.7 8.78q-2.41 13.25-4.84 33.68a380.62 380.62 0 0 0-2.64 42.15q-.28 40.43 8.13 59.83a43.87 43.87 0 0 0 31.31 25.18A243 243 0 0 0 250 340.6h10.25a242.64 242.64 0 0 0 57.27-5.16 43.86 43.86 0 0 0 31.15-25.23q8.53-19.42 8.13-59.78a388 388 0 0 0-2.6-42.15q-2.48-20.38-4.89-33.68l-1.69-8.78a5 5 0 0 1 0-.77 5 5 0 0 1 4.2-5l32-5h.82a5 5 0 0 1 4.9 3.89c.55 2.05.81 3.57 1.83 8.45 1.82 9.62 3.52 18.78 5.39 32a415.71 415.71 0 0 1 3.61 43.88 228.06 228.06 0 0 1-.04 30.73z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "umbrella": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0e9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "rain", + "storm", + "wet" + ] + }, + "unicode": "f0e9", + "label": "Umbrella", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0c17.7 0 32 14.3 32 32V49.7C451.8 63.4 557.7 161 573.9 285.9c2 15.6-17.3 24.4-27.8 12.7C532.1 283 504.8 272 480 272c-38.7 0-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C359 299.5 326.7 272 288 272s-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C167 299.5 134.7 272 96 272c-24.8 0-52.1 11-66.1 26.7C19.4 310.4 .1 301.5 2.1 285.9C18.3 161 124.2 63.4 256 49.7V32c0-17.7 14.3-32 32-32zm0 304c12.3 0 23.5 4.6 32 12.2V430.6c0 45-36.5 81.4-81.4 81.4c-30.8 0-59-17.4-72.8-45l-2.3-4.7c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l2.3 4.7c3 5.9 9 9.6 15.6 9.6c9.6 0 17.4-7.8 17.4-17.4V316.2c8.5-7.6 19.7-12.2 32-12.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "umbrella-beach": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d6" + ], + "secondary": [ + "10f5ca" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beach", + "beach with umbrella", + "protection", + "recreation", + "sand", + "shade", + "summer", + "sun", + "umbrella" + ] + }, + "unicode": "f5ca", + "label": "Umbrella Beach", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M346.3 271.8l-60.1-21.9L214 448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H282.1l64.1-176.2zm121.1-.2l-3.3 9.1 67.7 24.6c18.1 6.6 38-4.2 39.6-23.4c6.5-78.5-23.9-155.5-80.8-208.5c2 8 3.2 16.3 3.4 24.8l.2 6c1.8 57-7.3 113.8-26.8 167.4zM462 99.1c-1.1-34.4-22.5-64.8-54.4-77.4c-.9-.4-1.9-.7-2.8-1.1c-33-11.7-69.8-2.4-93.1 23.8l-4 4.5C272.4 88.3 245 134.2 226.8 184l-3.3 9.1L434 269.7l3.3-9.1c18.1-49.8 26.6-102.5 24.9-155.5l-.2-6zM107.2 112.9c-11.1 15.7-2.8 36.8 15.3 43.4l71 25.8 3.3-9.1c19.5-53.6 49.1-103 87.1-145.5l4-4.5c6.2-6.9 13.1-13 20.5-18.2c-79.6 2.5-154.7 42.2-201.2 108z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "uncharted": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e084", + "label": "Uncharted Software", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M171.73,232.813A5.381,5.381,0,0,0,176.7,229.5,48.081,48.081,0,0,1,191.6,204.244c1.243-.828,1.657-2.484,1.657-4.141a4.22,4.22,0,0,0-2.071-3.312L74.429,128.473,148.958,85a9.941,9.941,0,0,0,4.968-8.281,9.108,9.108,0,0,0-4.968-8.281L126.6,55.6a9.748,9.748,0,0,0-9.523,0l-100.2,57.966a9.943,9.943,0,0,0-4.969,8.281V236.954a9.109,9.109,0,0,0,4.969,8.281L39.235,258.07a8.829,8.829,0,0,0,4.968,1.242,9.4,9.4,0,0,0,6.625-2.484,10.8,10.8,0,0,0,2.9-7.039V164.5L169.66,232.4A4.5,4.5,0,0,0,171.73,232.813ZM323.272,377.73a12.478,12.478,0,0,0-4.969,1.242l-74.528,43.062V287.882c0-2.9-2.9-5.8-6.211-4.555a53.036,53.036,0,0,1-28.984.414,4.86,4.86,0,0,0-6.21,4.555V421.619l-74.529-43.061a8.83,8.83,0,0,0-4.969-1.242,9.631,9.631,0,0,0-9.523,9.523v26.085a9.107,9.107,0,0,0,4.969,8.281l100.2,57.553A8.829,8.829,0,0,0,223.486,480a11.027,11.027,0,0,0,4.969-1.242l100.2-57.553a9.941,9.941,0,0,0,4.968-8.281V386.839C332.8,382.285,328.24,377.73,323.272,377.73ZM286.007,78a23,23,0,1,0-23-23A23,23,0,0,0,286.007,78Zm63.627-10.086a23,23,0,1,0,23,23A23,23,0,0,0,349.634,67.914ZM412.816,151.6a23,23,0,1,0-23-23A23,23,0,0,0,412.816,151.6Zm-63.182-9.2a23,23,0,1,0,23,23A23,23,0,0,0,349.634,142.4Zm-63.627,83.244a23,23,0,1,0-23-23A23,23,0,0,0,286.007,225.648Zm-62.074,36.358a23,23,0,1,0-23-23A23,23,0,0,0,223.933,262.006Zm188.883-82.358a23,23,0,1,0,23,23A23,23,0,0,0,412.816,179.648Zm0,72.272a23,23,0,1,0,23,23A23,23,0,0,0,412.816,251.92Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "underline": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0cd" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "emphasis", + "format", + "text", + "writing" + ] + }, + "unicode": "f0cd", + "label": "Underline", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M16 64c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H128V224c0 53 43 96 96 96s96-43 96-96V96H304c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H384V224c0 88.4-71.6 160-160 160s-160-71.6-160-160V96H48C30.3 96 16 81.7 16 64zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "uniregistry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f404", + "label": "Uniregistry", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480zm-89.1-193.1v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4zm20.5 57H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8zm-17.7-34.7H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3zm-2.8-69.3H0v17.3h102.9zm0-173.2H0v4.9h102.9zm0-34.7H0v2.5h102.9zm0 69.3H0v7.4h102.9zm0 104H0v14.8h102.9zm0-69.3H0v9.9h102.9zm0 34.6H0V183h102.9zm166.2 160.9h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3zm12-185.7H384V136H281.1zm0 37.2H384v-12.4H281.1zm0-74.3H384v-7.4H281.1zm0-76.7v2.5H384V32zm-203 410.9h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7zm203-371.3H384v-4.9H281.1zm0 148.5H384v-14.8H281.1zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2zm188.8-37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8zm53.5-81.7c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1zm0-29.7H384v-17.3H281.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "unity": { + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e049", + "label": "Unity 3D", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M243.583 91.6027L323.695 138.384C326.575 140.026 326.68 144.583 323.695 146.225L228.503 201.854C225.623 203.55 222.22 203.444 219.549 201.854L124.357 146.225C121.425 144.636 121.373 139.973 124.357 138.384L204.417 91.6027V0L0 119.417V358.252L78.3843 312.477V218.914C78.3319 215.576 82.2066 213.192 85.0865 214.993L180.279 270.622C183.159 272.318 184.782 275.338 184.782 278.464V389.669C184.834 393.007 180.959 395.391 178.079 393.589L97.9673 346.808L19.583 392.583L224 512L428.417 392.583L350.033 346.808L269.921 393.589C267.093 395.338 263.114 393.06 263.218 389.669V278.464C263.218 275.126 265.051 272.159 267.721 270.622L362.914 214.993C365.741 213.245 369.72 215.47 369.616 218.914V312.477L448 358.252V119.417L243.583 0V91.6027Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "universal-access": { + "aliases": { + "unicodes": { + "secondary": [ + "10f29a" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f29a", + "label": "Universal Access", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm161.5-86.1c-12.2-5.2-26.3 .4-31.5 12.6s.4 26.3 12.6 31.5l11.9 5.1c17.3 7.4 35.2 12.9 53.6 16.3v50.1c0 4.3-.7 8.6-2.1 12.6l-28.7 86.1c-4.2 12.6 2.6 26.2 15.2 30.4s26.2-2.6 30.4-15.2l24.4-73.2c1.3-3.8 4.8-6.4 8.8-6.4s7.6 2.6 8.8 6.4l24.4 73.2c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-28.7-86.1c-1.4-4.1-2.1-8.3-2.1-12.6V235.5c18.4-3.5 36.3-8.9 53.6-16.3l11.9-5.1c12.2-5.2 17.8-19.3 12.6-31.5s-19.3-17.8-31.5-12.6L338.7 175c-26.1 11.2-54.2 17-82.7 17s-56.5-5.8-82.7-17l-11.9-5.1zM256 160a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "unlock": { + "aliases": { + "unicodes": { + "composite": [ + "1f513" + ], + "secondary": [ + "10f09c" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "private", + "protect", + "unlock", + "unlocked" + ] + }, + "unicode": "f09c", + "label": "Unlock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 144c0-44.2 35.8-80 80-80c31.9 0 59.4 18.6 72.3 45.7c7.6 16 26.7 22.8 42.6 15.2s22.8-26.7 15.2-42.6C331 33.7 281.5 0 224 0C144.5 0 80 64.5 80 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H144V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "unlock-keyhole": { + "aliases": { + "names": [ + "unlock-alt" + ], + "unicodes": { + "secondary": [ + "10f13e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "password", + "private", + "protect" + ] + }, + "unicode": "f13e", + "label": "Unlock Keyhole", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 64c-44.2 0-80 35.8-80 80v48H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80V144C80 64.5 144.5 0 224 0c57.5 0 107 33.7 130.1 82.3c7.6 16 .8 35.1-15.2 42.6s-35.1 .8-42.6-15.2C283.4 82.6 255.9 64 224 64zm32 320c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "unsplash": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07c", + "label": "Unsplash", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448,230.17V480H0V230.17H141.13V355.09H306.87V230.17ZM306.87,32H141.13V156.91H306.87Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "untappd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f405", + "label": "Untappd", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "up-down": { + "aliases": { + "names": [ + "arrows-alt-v" + ], + "unicodes": { + "composite": [ + "2195", + "2b0d" + ], + "secondary": [ + "10f338" + ] + } + }, + "changes": [ + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Up Down Black Arrow", + "arrow", + "arrows-v", + "expand", + "portrait", + "resize", + "tall", + "up-down arrow", + "vertical" + ] + }, + "unicode": "f338", + "label": "Up Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M145.6 7.7C141 2.8 134.7 0 128 0s-13 2.8-17.6 7.7l-104 112c-6.5 7-8.2 17.2-4.4 25.9S14.5 160 24 160H80V352H24c-9.5 0-18.2 5.7-22 14.4s-2.1 18.9 4.4 25.9l104 112c4.5 4.9 10.9 7.7 17.6 7.7s13-2.8 17.6-7.7l104-112c6.5-7 8.2-17.2 4.4-25.9s-12.5-14.4-22-14.4H176V160h56c9.5 0 18.2-5.7 22-14.4s2.1-18.9-4.4-25.9l-104-112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-down-left-right": { + "aliases": { + "names": [ + "arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f0b2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "bigger", + "enlarge", + "expand", + "fullscreen", + "move", + "position", + "reorder", + "resize" + ] + }, + "unicode": "f0b2", + "label": "Up Down Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32v96H128V192c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V288h96v96H192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H288V288h96v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32H288V128h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-long": { + "aliases": { + "names": [ + "long-arrow-alt-up" + ], + "unicodes": { + "secondary": [ + "10f30c" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-up", + "upload" + ] + }, + "unicode": "f30c", + "label": "Up Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766329, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M318 177.5c3.8-8.8 2-19-4.6-26l-136-144C172.9 2.7 166.6 0 160 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26S14.4 192 24 192H96l0 288c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32l0-288h72c9.6 0 18.2-5.7 22-14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-right-and-down-left-from-center": { + "aliases": { + "names": [ + "expand-alt" + ], + "unicodes": { + "secondary": [ + "10f424" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "bigger", + "enlarge", + "fullscreen", + "resize" + ] + }, + "unicode": "f424", + "label": "Up Right And Down Left From Center", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766328, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M344 0H488c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-87 87c-9.4 9.4-24.6 9.4-33.9 0l-32-32c-9.4-9.4-9.4-24.6 0-33.9l87-87L327 41c-6.9-6.9-8.9-17.2-5.2-26.2S334.3 0 344 0zM168 512H24c-13.3 0-24-10.7-24-24V344c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39 87-87c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-right-from-square": { + "aliases": { + "names": [ + "external-link-alt" + ], + "unicodes": { + "secondary": [ + "10f35d" + ] + } + }, + "changes": [ + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "external-link", + "new", + "open", + "share" + ] + }, + "unicode": "f35d", + "label": "Up Right From Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766330, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32H352zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "upload": { + "aliases": { + "unicodes": { + "secondary": [ + "10f093" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hard drive", + "import", + "publish" + ] + }, + "unicode": "f093", + "label": "Upload", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767342, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 109.3V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3l-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L288 109.3zM64 352H192c0 35.3 28.7 64 64 64s64-28.7 64-64H448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V416c0-35.3 28.7-64 64-64zM432 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ups": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "United Parcel Service", + "package", + "shipping" + ] + }, + "unicode": "f7e0", + "label": "UPS", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M103.2 303c-5.2 3.6-32.6 13.1-32.6-19V180H37.9v102.6c0 74.9 80.2 51.1 97.9 39V180h-32.6zM4 74.82v220.9c0 103.7 74.9 135.2 187.7 184.1 112.4-48.9 187.7-80.2 187.7-184.1V74.82c-116.3-61.6-281.8-49.6-375.4 0zm358.1 220.9c0 86.6-53.2 113.6-170.4 165.3-117.5-51.8-170.5-78.7-170.5-165.3v-126.4c102.3-93.8 231.6-100 340.9-89.8zm-209.6-107.4v212.8h32.7v-68.7c24.4 7.3 71.7-2.6 71.7-78.5 0-97.4-80.7-80.92-104.4-65.6zm32.7 117.3v-100.3c8.4-4.2 38.4-12.7 38.4 49.3 0 67.9-36.4 51.8-38.4 51zm79.1-86.4c.1 47.3 51.6 42.5 52.2 70.4.6 23.5-30.4 23-50.8 4.9v30.1c36.2 21.5 81.9 8.1 83.2-33.5 1.7-51.5-54.1-46.6-53.4-73.2.6-20.3 30.6-20.5 48.5-2.2v-28.4c-28.5-22-79.9-9.2-79.7 31.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "usb": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f287", + "label": "USB", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "user": { + "aliases": { + "unicodes": { + "composite": [ + "1f464", + "f2c0" + ], + "secondary": [ + "10f007" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adult", + "bust", + "bust in silhouette", + "gender-neutral", + "person", + "profile", + "silhouette", + "unspecified gender", + "users-people" + ] + }, + "unicode": "f007", + "label": "User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z" + }, + "regular": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M304 128a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM49.3 464H398.7c-8.9-63.3-63.3-112-129-112H178.3c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "user-astronaut": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fb" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "clothing", + "cosmonaut", + "nasa", + "space", + "suit" + ] + }, + "unicode": "f4fb", + "label": "User Astronaut", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M370.7 96.1C346.1 39.5 289.7 0 224 0S101.9 39.5 77.3 96.1C60.9 97.5 48 111.2 48 128v64c0 16.8 12.9 30.5 29.3 31.9C101.9 280.5 158.3 320 224 320s122.1-39.5 146.7-96.1c16.4-1.4 29.3-15.1 29.3-31.9V128c0-16.8-12.9-30.5-29.3-31.9zM336 144v16c0 53-43 96-96 96H208c-53 0-96-43-96-96V144c0-26.5 21.5-48 48-48H288c26.5 0 48 21.5 48 48zM189.3 162.7l-6-21.2c-.9-3.3-3.9-5.5-7.3-5.5s-6.4 2.2-7.3 5.5l-6 21.2-21.2 6c-3.3 .9-5.5 3.9-5.5 7.3s2.2 6.4 5.5 7.3l21.2 6 6 21.2c.9 3.3 3.9 5.5 7.3 5.5s6.4-2.2 7.3-5.5l6-21.2 21.2-6c3.3-.9 5.5-3.9 5.5-7.3s-2.2-6.4-5.5-7.3l-21.2-6zM112.7 316.5C46.7 342.6 0 407 0 482.3C0 498.7 13.3 512 29.7 512H128V448c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64l98.3 0c16.4 0 29.7-13.3 29.7-29.7c0-75.3-46.7-139.7-112.7-165.8C303.9 338.8 265.5 352 224 352s-79.9-13.2-111.3-35.5zM176 448c-8.8 0-16 7.2-16 16v48h32V464c0-8.8-7.2-16-16-16zm96 32a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fc" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fc", + "label": "User Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM625 177L497 305c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L591 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-clock": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fd" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fd", + "label": "User Clock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767619, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c20.6 0 40.4 3.5 58.8 9.9C323 331 320 349.1 320 368c0 59.5 29.5 112.1 74.8 144H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H512V304c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-doctor": { + "aliases": { + "names": [ + "user-md" + ], + "unicodes": { + "secondary": [ + "10f0f0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.3", + "5.0.7", + "5.0.11", + "6.0.0-beta1", + "6.0.0-beta2", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "health", + "job", + "medical", + "nurse", + "occupation", + "physician", + "profile", + "surgeon", + "worker" + ] + }, + "unicode": "f0f0", + "label": "User Doctor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-96 55.2C54 332.9 0 401.3 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7c0-81-54-149.4-128-171.1V362c27.6 7.1 48 32.2 48 62v40c0 8.8-7.2 16-16 16H336c-8.8 0-16-7.2-16-16s7.2-16 16-16V424c0-17.7-14.3-32-32-32s-32 14.3-32 32v24c8.8 0 16 7.2 16 16s-7.2 16-16 16H256c-8.8 0-16-7.2-16-16V424c0-29.8 20.4-54.9 48-62V304.9c-6-.6-12.1-.9-18.3-.9H178.3c-6.2 0-12.3 .3-18.3 .9v65.4c23.1 6.9 40 28.3 40 53.7c0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.4 16.9-46.8 40-53.7V311.2zM144 448a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-gear": { + "aliases": { + "names": [ + "user-cog" + ], + "unicodes": { + "secondary": [ + "10f4fe" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fe", + "label": "User Gear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c11.8 0 23.4 1.2 34.5 3.3c-2.1 18.5 7.4 35.6 21.8 44.8c-16.6 10.6-26.7 31.6-20 53.3c4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7v.9c0 9.2 2.7 18.5 7.9 26.3H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM436 218.2c0-7 4.5-13.3 11.3-14.8c10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8v30.6c7.9 3.4 15.4 7.7 22.3 12.8l24.9-14.3c6.1-3.5 13.7-2.7 18.5 2.4c7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-25 14.4c.4 4 .7 8.1 .7 12.3s-.2 8.2-.7 12.3l25 14.4c6.1 3.5 9.2 10.5 7.2 17.2c-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4l-24.9-14.3c-6.9 5.1-14.3 9.4-22.3 12.8l0 30.6c0 7-4.5 13.3-11.3 14.8c-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8V454.8c-8-3.4-15.6-7.7-22.5-12.9l-24.7 14.3c-6.1 3.5-13.7 2.7-18.5-2.4c-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l24.8-14.3c-.4-4.1-.7-8.2-.7-12.4s.2-8.3 .7-12.4L343.8 325c-6.1-3.5-9.2-10.5-7.2-17.2c3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l24.8 14.3c6.9-5.1 14.5-9.4 22.5-12.9V218.2zm92.1 133.5a48.1 48.1 0 1 0 -96.1 0 48.1 48.1 0 1 0 96.1 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-graduate": { + "aliases": { + "unicodes": { + "secondary": [ + "10f501" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f501", + "label": "User Graduate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M219.3 .5c3.1-.6 6.3-.6 9.4 0l200 40C439.9 42.7 448 52.6 448 64s-8.1 21.3-19.3 23.5L352 102.9V160c0 70.7-57.3 128-128 128s-128-57.3-128-128V102.9L48 93.3v65.1l15.7 78.4c.9 4.7-.3 9.6-3.3 13.3s-7.6 5.9-12.4 5.9H16c-4.8 0-9.3-2.1-12.4-5.9s-4.3-8.6-3.3-13.3L16 158.4V86.6C6.5 83.3 0 74.3 0 64C0 52.6 8.1 42.7 19.3 40.5l200-40zM111.9 327.7c10.5-3.4 21.8 .4 29.4 8.5l71 75.5c6.3 6.7 17 6.7 23.3 0l71-75.5c7.6-8.1 18.9-11.9 29.4-8.5C401 348.6 448 409.4 448 481.3c0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-71.9 47-132.7 111.9-153.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-group": { + "aliases": { + "names": [ + "user-friends" + ], + "unicodes": { + "composite": [ + "1f465" + ], + "secondary": [ + "10f500" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bust", + "busts in silhouette", + "silhouette", + "users-people" + ] + }, + "unicode": "f500", + "label": "User Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM609.3 512H471.4c5.4-9.4 8.6-20.3 8.6-32v-8c0-60.7-27.1-115.2-69.8-151.8c2.4-.1 4.7-.2 7.1-.2h61.4C567.8 320 640 392.2 640 481.3c0 17-13.8 30.7-30.7 30.7zM432 256c-31 0-59-12.6-79.3-32.9C372.4 196.5 384 163.6 384 128c0-26.8-6.6-52.1-18.3-74.3C384.3 40.1 407.2 32 432 32c61.9 0 112 50.1 112 112s-50.1 112-112 112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-injured": { + "aliases": { + "unicodes": { + "secondary": [ + "10f728" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f728", + "label": "User Injured", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767619, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240 80H342.7c-7.9-19.5-20.4-36.5-36.2-49.9L240 80zm37.7-68.2C261.3 4.2 243.2 0 224 0c-53.7 0-99.7 33.1-118.7 80h81.4l91-68.2zM224 256c70.7 0 128-57.3 128-128c0-5.4-.3-10.8-1-16H97c-.7 5.2-1 10.6-1 16c0 70.7 57.3 128 128 128zM124 312.4c-9.7 3.1-19.1 7-28 11.7V512H243.7L181.5 408.2 124 312.4zm33-7.2L204.3 384H272c44.2 0 80 35.8 80 80c0 18-6 34.6-16 48h82.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3c-7.2 0-14.3 .4-21.3 1.3zM0 482.3C0 498.7 13.3 512 29.7 512H64V345.4C24.9 378.1 0 427.3 0 482.3zM320 464c0-26.5-21.5-48-48-48H223.5l57.1 95.2C303 507.2 320 487.6 320 464z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-large": { + "aliases": { + "names": [ + "user-alt" + ], + "unicodes": { + "secondary": [ + "10f406" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f406", + "label": "User Large", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767619, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 288A144 144 0 1 0 256 0a144 144 0 1 0 0 288zm-94.7 32C72.2 320 0 392.2 0 481.3c0 17 13.8 30.7 30.7 30.7H481.3c17 0 30.7-13.8 30.7-30.7C512 392.2 439.8 320 350.7 320H161.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-large-slash": { + "aliases": { + "names": [ + "user-alt-slash" + ], + "unicodes": { + "secondary": [ + "10f4fa" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fa", + "label": "User Large Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L381.9 274c48.5-23.2 82.1-72.7 82.1-130C464 64.5 399.5 0 320 0C250.4 0 192.4 49.3 178.9 114.9L38.8 5.1zM545.5 512H528L284.3 320h-59C136.2 320 64 392.2 64 481.3c0 17 13.8 30.7 30.7 30.7H545.3l.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-lock": { + "aliases": { + "unicodes": { + "secondary": [ + "10f502" + ] + } + }, + "changes": [ + "5.0.11", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f502", + "label": "User Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H392.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-2.1 .1-4.2 .3-6.3c-31-26-71-41.7-114.6-41.7H178.3zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f503" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "negative", + "remove" + ] + }, + "unicode": "f503", + "label": "User Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM472 200H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H472c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-ninja": { + "aliases": { + "unicodes": { + "composite": [ + "1f977" + ], + "secondary": [ + "10f504" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assassin", + "avatar", + "dangerous", + "deadly", + "fighter", + "hidden", + "ninja", + "sneaky", + "stealth" + ] + }, + "unicode": "f504", + "label": "User Ninja", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256c-57.2 0-105.6-37.5-122-89.3c-1.1 1.3-2.2 2.6-3.5 3.8c-15.8 15.8-38.8 20.7-53.6 22.1c-8.1 .8-14.6-5.7-13.8-13.8c1.4-14.7 6.3-37.8 22.1-53.6c5.8-5.8 12.6-10.1 19.6-13.4c-7-3.2-13.8-7.6-19.6-13.4C37.4 82.7 32.6 59.7 31.1 44.9c-.8-8.1 5.7-14.6 13.8-13.8c14.7 1.4 37.8 6.3 53.6 22.1c4.8 4.8 8.7 10.4 11.7 16.1C131.4 28.2 174.4 0 224 0c70.7 0 128 57.3 128 128s-57.3 128-128 128zM0 482.3C0 399.5 56.4 330 132.8 309.9c6-1.6 12.2 .9 15.9 5.8l62.5 83.3c6.4 8.5 19.2 8.5 25.6 0l62.5-83.3c3.7-4.9 9.9-7.4 15.9-5.8C391.6 330 448 399.5 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM160 96c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-nurse": { + "aliases": { + "unicodes": { + "secondary": [ + "10f82f" + ] + } + }, + "changes": [ + "5.7.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "health", + "md", + "medical", + "midwife", + "physician", + "practitioner", + "surgeon", + "worker" + ] + }, + "unicode": "f82f", + "label": "User Nurse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767619, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 128V70.2c0-13.3 8.3-25.3 20.8-30l96-36c7.2-2.7 15.2-2.7 22.5 0l96 36c12.5 4.7 20.8 16.6 20.8 30V128h-.3c.2 2.6 .3 5.3 .3 8v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V136c0-2.7 .1-5.4 .3-8H96zm48 48c0 44.2 35.8 80 80 80s80-35.8 80-80V160H144v16zM111.9 327.7c10.5-3.4 21.8 .4 29.4 8.5l71 75.5c6.3 6.7 17 6.7 23.3 0l71-75.5c7.6-8.1 18.9-11.9 29.4-8.5C401 348.6 448 409.4 448 481.3c0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-71.9 47-132.7 111.9-153.6zM208 48V64H192c-4.4 0-8 3.6-8 8V88c0 4.4 3.6 8 8 8h16v16c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8V96h16c4.4 0 8-3.6 8-8V72c0-4.4-3.6-8-8-8H240V48c0-4.4-3.6-8-8-8H216c-4.4 0-8 3.6-8 8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-pen": { + "aliases": { + "names": [ + "user-edit" + ], + "unicodes": { + "secondary": [ + "10f4ff" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4ff", + "label": "User Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H322.8c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7l40.3-40.3c-32.1-31-75.7-50.1-123.9-50.1H178.3zm435.5-68.3c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM375.9 417c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L576.1 358.7l-71-71L375.9 417z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f234" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "avatar", + "positive", + "sign up", + "signup", + "team" + ] + }, + "unicode": "f234", + "label": "User Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM504 312V248H440c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V136c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H552v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-secret": { + "aliases": { + "unicodes": { + "composite": [ + "1f575" + ], + "secondary": [ + "10f21b" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "detective", + "sleuth", + "spy", + "users-people" + ] + }, + "unicode": "f21b", + "label": "User Secret", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 16c-6.7 0-10.8-2.8-15.5-6.1C201.9 5.4 194 0 176 0c-30.5 0-52 43.7-66 89.4C62.7 98.1 32 112.2 32 128c0 14.3 25 27.1 64.6 35.9c-.4 4-.6 8-.6 12.1c0 17 3.3 33.2 9.3 48H45.4C38 224 32 230 32 237.4c0 1.7 .3 3.4 1 5l38.8 96.9C28.2 371.8 0 423.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7c0-58.5-28.2-110.4-71.7-143L415 242.4c.6-1.6 1-3.3 1-5c0-7.4-6-13.4-13.4-13.4H342.7c6-14.8 9.3-31 9.3-48c0-4.1-.2-8.1-.6-12.1C391 155.1 416 142.3 416 128c0-15.8-30.7-29.9-78-38.6C324 43.7 302.5 0 272 0c-18 0-25.9 5.4-32.5 9.9c-4.8 3.3-8.8 6.1-15.5 6.1zm56 208H267.6c-16.5 0-31.1-10.6-36.3-26.2c-2.3-7-12.2-7-14.5 0c-5.2 15.6-19.9 26.2-36.3 26.2H168c-22.1 0-40-17.9-40-40V169.6c28.2 4.1 61 6.4 96 6.4s67.8-2.3 96-6.4V184c0 22.1-17.9 40-40 40zm-88 96l16 32L176 480 128 288l64 32zm128-32L272 480 240 352l16-32 64-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-shield": { + "aliases": { + "unicodes": { + "secondary": [ + "10f505" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protect", + "safety" + ] + }, + "unicode": "f505", + "label": "User Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c1.8 0 3.5-.2 5.3-.5c-76.3-55.1-99.8-141-103.1-200.2c-16.1-4.8-33.1-7.3-50.7-7.3H178.3zm308.8-78.3l-120 48C358 277.4 352 286.2 352 296c0 63.3 25.9 168.8 134.8 214.2c5.9 2.5 12.6 2.5 18.5 0C614.1 464.8 640 359.3 640 296c0-9.8-6-18.6-15.1-22.3l-120-48c-5.7-2.3-12.1-2.3-17.8 0zM591.4 312c-3.9 50.7-27.2 116.7-95.4 149.7V273.8L591.4 312z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f506" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ban", + "delete", + "remove" + ] + }, + "unicode": "f506", + "label": "User Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L353.3 251.6C407.9 237 448 187.2 448 128C448 57.3 390.7 0 320 0C250.2 0 193.5 55.8 192 125.2L38.8 5.1zM264.3 304.3C170.5 309.4 96 387.2 96 482.3c0 16.4 13.3 29.7 29.7 29.7H514.3c3.9 0 7.6-.7 11-2.1l-261-205.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-tag": { + "aliases": { + "unicodes": { + "secondary": [ + "10f507" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f507", + "label": "User Tag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c10 0 18.8-4.9 24.2-12.5l-99.2-99.2c-14.9-14.9-23.3-35.1-23.3-56.1v-33c-15.9-4.7-32.8-7.2-50.3-7.2H178.3zM384 224c-17.7 0-32 14.3-32 32v82.7c0 17 6.7 33.3 18.7 45.3L478.1 491.3c18.7 18.7 49.1 18.7 67.9 0l73.4-73.4c18.7-18.7 18.7-49.1 0-67.9L512 242.7c-12-12-28.3-18.7-45.3-18.7H384zm24 80a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-tie": { + "aliases": { + "unicodes": { + "secondary": [ + "10f508" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "business", + "clothing", + "formal", + "professional", + "suit" + ] + }, + "unicode": "f508", + "label": "User Tie", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 1 224 0a128 128 0 1 1 0 256zM209.1 359.2l-18.6-31c-6.4-10.7 1.3-24.2 13.7-24.2H224h19.7c12.4 0 20.1 13.6 13.7 24.2l-18.6 31 33.4 123.9 36-146.9c2-8.1 9.8-13.4 17.9-11.3c70.1 17.6 121.9 81 121.9 156.4c0 17-13.8 30.7-30.7 30.7H285.5c-2.1 0-4-.4-5.8-1.1l.3 1.1H168l.3-1.1c-1.8 .7-3.8 1.1-5.8 1.1H30.7C13.8 512 0 498.2 0 481.3c0-75.5 51.9-138.9 121.9-156.4c8.1-2 15.9 3.3 17.9 11.3l36 146.9 33.4-123.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-xmark": { + "aliases": { + "names": [ + "user-times" + ], + "unicodes": { + "secondary": [ + "10f235" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "delete", + "remove", + "x" + ] + }, + "unicode": "f235", + "label": "User Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM471 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f0c0", + "label": "Users", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0H21.3C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7h42.7C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3H405.3zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 485.3C128 411.7 187.7 352 261.3 352H378.7C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7H154.7c-14.7 0-26.7-11.9-26.7-26.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-between-lines": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covered", + "group", + "people" + ] + }, + "unicode": "e591", + "label": "Users Between Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H24C10.7 48 0 37.3 0 24zM0 488c0-13.3 10.7-24 24-24H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zM83.2 160a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM32 320c0-35.3 28.7-64 64-64h96c12.2 0 23.7 3.4 33.4 9.4c-37.2 15.1-65.6 47.2-75.8 86.6H64c-17.7 0-32-14.3-32-32zm461.6 32c-10.3-40.1-39.6-72.6-77.7-87.4c9.4-5.5 20.4-8.6 32.1-8.6h96c35.3 0 64 28.7 64 64c0 17.7-14.3 32-32 32H493.6zM391.2 290.4c32.1 7.4 58.1 30.9 68.9 61.6c3.5 10 5.5 20.8 5.5 32c0 17.7-14.3 32-32 32h-224c-17.7 0-32-14.3-32-32c0-11.2 1.9-22 5.5-32c10.5-29.7 35.3-52.8 66.1-60.9c7.8-2.1 16-3.1 24.5-3.1h96c7.4 0 14.7 .8 21.6 2.4zm44-130.4a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM321.6 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-gear": { + "aliases": { + "names": [ + "users-cog" + ], + "unicodes": { + "secondary": [ + "10f509" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f509", + "label": "Users Gear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767619, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 160A80 80 0 1 0 144 0a80 80 0 1 0 0 160zm368 0A80 80 0 1 0 512 0a80 80 0 1 0 0 160zM0 298.7C0 310.4 9.6 320 21.3 320H234.7c.2 0 .4 0 .7 0c-26.6-23.5-43.3-57.8-43.3-96c0-7.6 .7-15 1.9-22.3c-13.6-6.3-28.7-9.7-44.6-9.7H106.7C47.8 192 0 239.8 0 298.7zM320 320c24 0 45.9-8.8 62.7-23.3c2.5-3.7 5.2-7.3 8-10.7c2.7-3.3 5.7-6.1 9-8.3C410 262.3 416 243.9 416 224c0-53-43-96-96-96s-96 43-96 96s43 96 96 96zm65.4 60.2c-10.3-5.9-18.1-16.2-20.8-28.2H261.3C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7H455.2c-2.1-5.2-3.2-10.9-3.2-16.4v-3c-1.3-.7-2.7-1.5-4-2.3l-2.6 1.5c-16.8 9.7-40.5 8-54.7-9.7c-4.5-5.6-8.6-11.5-12.4-17.6l-.1-.2-.1-.2-2.4-4.1-.1-.2-.1-.2c-3.4-6.2-6.4-12.6-9-19.3c-8.2-21.2 2.2-42.6 19-52.3l2.7-1.5c0-.8 0-1.5 0-2.3s0-1.5 0-2.3l-2.7-1.5zM533.3 192H490.7c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 17.4-3.5 33.9-9.7 49c2.5 .9 4.9 2 7.1 3.3l2.6 1.5c1.3-.8 2.6-1.6 4-2.3v-3c0-19.4 13.3-39.1 35.8-42.6c7.9-1.2 16-1.9 24.2-1.9s16.3 .6 24.2 1.9c22.5 3.5 35.8 23.2 35.8 42.6v3c1.3 .7 2.7 1.5 4 2.3l2.6-1.5c16.8-9.7 40.5-8 54.7 9.7c2.3 2.8 4.5 5.8 6.6 8.7c-2.1-57.1-49-102.7-106.6-102.7zm91.3 163.9c6.3-3.6 9.5-11.1 6.8-18c-2.1-5.5-4.6-10.8-7.4-15.9l-2.3-4c-3.1-5.1-6.5-9.9-10.2-14.5c-4.6-5.7-12.7-6.7-19-3L574.4 311c-8.9-7.6-19.1-13.6-30.4-17.6v-21c0-7.3-4.9-13.8-12.1-14.9c-6.5-1-13.1-1.5-19.9-1.5s-13.4 .5-19.9 1.5c-7.2 1.1-12.1 7.6-12.1 14.9v21c-11.2 4-21.5 10-30.4 17.6l-18.2-10.5c-6.3-3.6-14.4-2.6-19 3c-3.7 4.6-7.1 9.5-10.2 14.6l-2.3 3.9c-2.8 5.1-5.3 10.4-7.4 15.9c-2.6 6.8 .5 14.3 6.8 17.9l18.2 10.5c-1 5.7-1.6 11.6-1.6 17.6s.6 11.9 1.6 17.5l-18.2 10.5c-6.3 3.6-9.5 11.1-6.8 17.9c2.1 5.5 4.6 10.7 7.4 15.8l2.4 4.1c3 5.1 6.4 9.9 10.1 14.5c4.6 5.7 12.7 6.7 19 3L449.6 457c8.9 7.6 19.2 13.6 30.4 17.6v21c0 7.3 4.9 13.8 12.1 14.9c6.5 1 13.1 1.5 19.9 1.5s13.4-.5 19.9-1.5c7.2-1.1 12.1-7.6 12.1-14.9v-21c11.2-4 21.5-10 30.4-17.6l18.2 10.5c6.3 3.6 14.4 2.6 19-3c3.7-4.6 7.1-9.4 10.1-14.5l2.4-4.2c2.8-5.1 5.3-10.3 7.4-15.8c2.6-6.8-.5-14.3-6.8-17.9l-18.2-10.5c1-5.7 1.6-11.6 1.6-17.5s-.6-11.9-1.6-17.6l18.2-10.5zM472 384a40 40 0 1 1 80 0 40 40 0 1 1 -80 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "group", + "need", + "people" + ] + }, + "unicode": "e592", + "label": "Users Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M211.2 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM32 256c0 17.7 14.3 32 32 32h85.6c10.1-39.4 38.6-71.5 75.8-86.6c-9.7-6-21.2-9.4-33.4-9.4H96c-35.3 0-64 28.7-64 64zm461.6 32H576c17.7 0 32-14.3 32-32c0-35.3-28.7-64-64-64H448c-11.7 0-22.7 3.1-32.1 8.6c38.1 14.8 67.4 47.3 77.7 87.4zM391.2 226.4c-6.9-1.6-14.2-2.4-21.6-2.4h-96c-8.5 0-16.7 1.1-24.5 3.1c-30.8 8.1-55.6 31.1-66.1 60.9c-3.5 10-5.5 20.8-5.5 32c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32c0-11.2-1.9-22-5.5-32c-10.8-30.7-36.8-54.2-68.9-61.6zM563.2 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM321.6 192a80 80 0 1 0 0-160 80 80 0 1 0 0 160zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-rays": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focused", + "group", + "people" + ] + }, + "unicode": "e593", + "label": "Users Rays", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M41 7C31.6-2.3 16.4-2.3 7 7S-2.3 31.6 7 41l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L41 7zM599 7L527 79c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0zM7 505c9.4 9.4 24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L7 471c-9.4 9.4-9.4 24.6 0 33.9zm592 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-72-72c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l72 72zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM212.1 336c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-.5-1.4-1-2.7-1.6-4c-9.4-22.3-29.8-38.9-54.3-43c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-.8 .1-1.7 .3-2.5 .5c-24.9 5.1-45.1 23-53.4 46.5zM175.8 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-26.5 32C119.9 256 96 279.9 96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3zm368 80c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6h56.1zM464 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-rectangle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "focus", + "group", + "people", + "reached" + ] + }, + "unicode": "e594", + "label": "Users Rectangle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H544c53 0 96-43 96-96V96c0-53-43-96-96-96H96zM64 96c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96zm159.8 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3C119.9 256 96 279.9 96 309.3zM461.2 336h56.1c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6zM372 289c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-8.6-24.3-29.9-42.6-55.9-47zM512 176a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e073" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "e073", + "label": "Users Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767621, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.6 320H618.7c11.8 0 21.3-9.6 21.3-21.3C640 239.8 592.2 192 533.3 192H490.7c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 30.2-10.5 58-28 79.9l-25.2-19.7C408.1 267.7 416 246.8 416 224c0-53-43-96-96-96c-31.1 0-58.7 14.8-76.3 37.7l-40.6-31.8c13-14.2 20.9-33.1 20.9-53.9c0-44.2-35.8-80-80-80C116.3 0 91.9 14.1 77.5 35.5L38.8 5.1zM106.7 192C47.8 192 0 239.8 0 298.7C0 310.4 9.6 320 21.3 320H234.7c.2 0 .4 0 .7 0c-20.6-18.2-35.2-42.8-40.8-70.8L121.8 192H106.7zM261.3 352C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7H485.3c10.5 0 19.5-6 23.9-14.8L324.9 352H261.3zM512 160A80 80 0 1 0 512 0a80 80 0 1 0 0 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-viewfinder": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "focus", + "group", + "people", + "targeted" + ] + }, + "unicode": "e595", + "label": "Users Viewfinder", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767620, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 48h88c13.3 0 24-10.7 24-24s-10.7-24-24-24H32C14.3 0 0 14.3 0 32V136c0 13.3 10.7 24 24 24s24-10.7 24-24V48zM175.8 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-26.5 32C119.9 256 96 279.9 96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3zm368 80c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6h56.1zm-89.4 0c-8.6-24.3-29.9-42.6-55.9-47c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24zM464 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-80-32a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM504 48h88v88c0 13.3 10.7 24 24 24s24-10.7 24-24V32c0-17.7-14.3-32-32-32H504c-13.3 0-24 10.7-24 24s10.7 24 24 24zM48 464V376c0-13.3-10.7-24-24-24s-24 10.7-24 24V480c0 17.7 14.3 32 32 32H136c13.3 0 24-10.7 24-24s-10.7-24-24-24H48zm456 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H608c17.7 0 32-14.3 32-32V376c0-13.3-10.7-24-24-24s-24 10.7-24 24v88H504z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "usps": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "package", + "shipping", + "usa" + ] + }, + "unicode": "f7e1", + "label": "United States Postal Service", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M460.3 241.7c25.8-41.3 15.2-48.8-11.7-48.8h-27c-.1 0-1.5-1.4-10.9 8-11.2 5.6-37.9 6.3-37.9 8.7 0 4.5 70.3-3.1 88.1 0 9.5 1.5-1.5 20.4-4.4 32-.5 4.5 2.4 2.3 3.8.1zm-112.1 22.6c64-21.3 97.3-23.9 102-26.2 4.4-2.9-4.4-6.6-26.2-5.8-51.7 2.2-137.6 37.1-172.6 53.9l-30.7-93.3h196.6c-2.7-28.2-152.9-22.6-337.9-22.6L27 415.8c196.4-97.3 258.9-130.3 321.2-151.5zM94.7 96c253.3 53.7 330 65.7 332.1 85.2 36.4 0 45.9 0 52.4 6.6 21.1 19.7-14.6 67.7-14.6 67.7-4.4 2.9-406.4 160.2-406.4 160.2h423.1L549 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ussunnah": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f407", + "label": "us-Sunnah Foundation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1677678764, + "raw": "", + "viewBox": [ + 0, + 0, + 482, + 512 + ], + "width": 482, + "height": 512, + "path": "M481.9 268.1A240.9 240.9 0 1 1 .1 268a240.9 240.9 0 1 1 481.9 0zM24.5 268a216.5 216.5 0 1 0 432.9 0A216.5 216.5 0 1 0 24.5 268zm385.9 63.3c-12.7 0-21.6-1.9-26.7-5.9c-5.5-4.3-8.2-12.3-8.2-23.8V205.1c0-6.5-5.2-20.2-15.7-41.2c7 0 17-9.1 30-27.2V284.5c0 11 2.4 19.4 7 25.3c3.7 4.7 10.1 8.9 19 12.6c1.2 .4 2.6 .9 4.1 1.4c2.9 .9 6.3 2.1 10.3 3.5c-1.8 2.7-8.3 4-19.9 4zm-219 0c-1.3 2.4-3.6 5.5-6.8 9.4l-18.5 22.5c-1-6.1-4-13-9.3-20.6s-9.7-11.4-13.4-11.4h-8.3H53.6c3.3-5.3 4.9-8.8 4.9-10.8c0-2-.8-5.3-2.4-9.7c-1.5-4.4-2.4-8.5-2.4-12.4c0-7.4 2.1-13.9 6.3-19.3L80 253.4l-7.1-17.7L89 215.9l6.7 16.8 8-10.3c-1.8 6.4-2.6 12.3-2.6 17.7c0 4.2 2.8 13.3 8.3 27.3l16.2 40.7H135h8 .3c2.8 .4 7.7 5 14.6 13.9c1.8 2.4 4.3 5.8 7.7 10.2c1.4 1.9 2.9 3.9 4.6 6.1c1.3-2.3 2-4.6 2-7.1c0-2-1.3-6.6-4-13.4L163 304.1c-4-10.6-6.1-17.7-6.1-21.3c0-6.3 1.9-12.3 5.8-17.9c.5-.6 1-1.3 1.5-1.9c4.4-5.6 8.8-11.1 13.3-16.5c-1.1 4.6-1.7 8.7-1.7 12c0 3.7 1.7 9.9 5.1 18.8l7.9 20.4c1.9 4.7 3 8.2 3.7 10.3h17.6 8.3l-.9-2.6c-1.4-3.9-4-7-7.7-9.3l15.6-20.1 12.3 32h13.4L245 292.2c-1.5-3.9-4-7-7.7-9.3L253 262.8 270.3 308h13.4l-11.4-29.4c-1.5-3.9-4-7-7.7-9.3l15.6-20L302.6 308h10.3 8.3 7.6c1.5 0 3-1.1 4.5-3.1s2.2-4.1 2.2-6.3V205.1c0-6.5-4.5-20.3-13.7-41.2c5.4 0 14.1-9.1 26.2-27.2V300.2c0 7.2 .6 12 1.7 14.6c1.6 3.4 5.3 6.2 11.1 8.2c-3.9 5.6-8.7 8.5-14.5 8.5H321.1h-8.3H210.5h-19zM93.4 287.3c-2.7-6.7-4-11.7-4-15c-.6 1.2-2.4 3.7-5.4 7.6c-1.4 1.9-2.2 3.7-2.2 5.3c0 2.6 .8 5.7 2.2 9.3l5.6 13.9h0c5 0 9 0 11.9-.1l-8.2-20.9zm13.5-72.4c-3-5.2-7-9.3-11.9-11.9c-3.5-1.9-5.3-4.3-5.3-7.4c0-2.4 4.6-8.6 14-18.3c.2 3.8 1.9 7.6 4.9 11.2c3.1 3.6 4.6 7 4.6 10.1c0 2.6-2.1 8-6.2 16.3zm-27.6 0c-3-5.2-7-9.3-11.9-11.9c-3.5-1.9-5.3-4.3-5.3-7.4c0-2.4 4.6-8.6 14-18.3c.2 3.8 1.9 7.6 4.9 11.2c3.1 3.6 4.6 7 4.6 10.1c0 2.6-2.1 8-6.2 16.3zm87 27.5c-3-5.2-7-9.3-11.9-11.9c-3.5-1.9-5.3-4.3-5.3-7.4c0-2.4 4.6-8.6 14-18.3c.2 3.8 1.9 7.6 4.9 11.2c3.1 3.6 4.6 7 4.6 10.1c0 2.6-2.1 8-6.2 16.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "utensils": { + "aliases": { + "names": [ + "cutlery" + ], + "unicodes": { + "composite": [ + "1f374", + "f0f5" + ], + "secondary": [ + "10f2e7" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cooking", + "cutlery", + "dining", + "dinner", + "eat", + "food", + "fork", + "fork and knife", + "knife", + "restaurant" + ] + }, + "unicode": "f2e7", + "label": "Utensils", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 0C400 0 288 32 288 176V288c0 35.3 28.7 64 64 64h32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352 240 32c0-17.7-14.3-32-32-32zM64 16C64 7.8 57.9 1 49.7 .1S34.2 4.6 32.4 12.5L2.1 148.8C.7 155.1 0 161.5 0 167.9c0 45.9 35.1 83.6 80 87.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V255.6c44.9-4.1 80-41.8 80-87.7c0-6.4-.7-12.8-2.1-19.1L191.6 12.5c-1.8-8-9.3-13.3-17.4-12.4S160 7.8 160 16V150.2c0 5.4-4.4 9.8-9.8 9.8c-5.1 0-9.3-3.9-9.8-9L127.9 14.6C127.2 6.3 120.3 0 112 0s-15.2 6.3-15.9 14.6L83.7 151c-.5 5.1-4.7 9-9.8 9c-5.4 0-9.8-4.4-9.8-9.8V16zm48.3 152l-.3 0-.3 0 .3-.7 .3 .7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "v": { + "aliases": { + "unicodes": { + "composite": [ + "76" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter V", + "Latin Small Letter V", + "letter" + ] + }, + "unicode": "56", + "label": "V", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M19.7 34.5c16.3-6.8 35 .9 41.8 17.2L192 364.8 322.5 51.7c6.8-16.3 25.5-24 41.8-17.2s24 25.5 17.2 41.8l-160 384c-5 11.9-16.6 19.7-29.5 19.7s-24.6-7.8-29.5-19.7L2.5 76.3c-6.8-16.3 .9-35 17.2-41.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vaadin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f408", + "label": "Vaadin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "van-shuttle": { + "aliases": { + "names": [ + "shuttle-van" + ], + "unicodes": { + "composite": [ + "1f690" + ], + "secondary": [ + "10f5b6" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airport", + "bus", + "machine", + "minibus", + "public-transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f5b6", + "label": "Van Shuttle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767650, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 104v88h96V96H72c-4.4 0-8 3.6-8 8zm482 88L465.1 96H384v96H546zm-226 0V96H224v96h96zM592 384H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V104C0 64.2 32.2 32 72 32H192 352 465.1c18.9 0 36.8 8.3 49 22.8L625 186.5c9.7 11.5 15 26.1 15 41.2V336c0 26.5-21.5 48-48 48zm-64 0a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM160 432a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vault": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "important", + "lock", + "money", + "safe" + ] + }, + "unicode": "e2c5", + "label": "Vault", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V416c0 35.3 28.7 64 64 64H80l16 32h64l16-32H400l16 32h64l16-32h16c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM224 320a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-240a160 160 0 1 1 0 320 160 160 0 1 1 0-320zM480 221.3V336c0 8.8-7.2 16-16 16s-16-7.2-16-16V221.3c-18.6-6.6-32-24.4-32-45.3c0-26.5 21.5-48 48-48s48 21.5 48 48c0 20.9-13.4 38.7-32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vector-square": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5cb" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object", + "render", + "shape" + ] + }, + "unicode": "f5cb", + "label": "Vector Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767367, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 80h32v32H368V80zM352 32c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H352zM96 160c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32V160zM48 400H80v32H48V400zm320 32V400h32v32H368zM48 112V80H80v32H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "venus": { + "aliases": { + "unicodes": { + "composite": [ + "2640" + ], + "secondary": [ + "10f221" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "female", + "female sign", + "gender", + "woman" + ] + }, + "unicode": "f221", + "label": "Venus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M80 176a112 112 0 1 1 224 0A112 112 0 1 1 80 176zM224 349.1c81.9-15 144-86.8 144-173.1C368 78.8 289.2 0 192 0S16 78.8 16 176c0 86.3 62.1 158.1 144 173.1V384H128c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H224V349.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "venus-double": { + "aliases": { + "unicodes": { + "composite": [ + "26a2" + ], + "secondary": [ + "10f226" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Doubled Female Sign", + "female", + "gender", + "lesbian" + ] + }, + "unicode": "f226", + "label": "Venus Double", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 288a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM368 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H224v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H128c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1C78.1 334.1 16 262.3 16 176C16 78.8 94.8 0 192 0s176 78.8 176 176zM344 318c14.6-15.6 26.8-33.4 36-53c18.8 14.4 42.4 23 68 23c61.9 0 112-50.1 112-112s-50.1-112-112-112c-25.6 0-49.1 8.6-68 23c-9.3-19.5-21.5-37.4-36-53C373.1 12.6 409.1 0 448 0c97.2 0 176 78.8 176 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H480v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H384c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1c-26.6-4.9-51.1-15.7-72-31.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "venus-mars": { + "aliases": { + "unicodes": { + "composite": [ + "26a4" + ], + "secondary": [ + "10f228" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Interlocked Female and Male Sign", + "female", + "gender", + "heterosexual", + "male" + ] + }, + "unicode": "f228", + "label": "Venus Mars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M176 288a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM352 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H208v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1C62.1 334.1 0 262.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176zM271.9 360.6c19.3-10.1 36.9-23.1 52.1-38.4c20 18.5 46.7 29.8 76.1 29.8c61.9 0 112-50.1 112-112s-50.1-112-112-112c-7.2 0-14.3 .7-21.1 2c-4.9-21.5-13-41.7-24-60.2C369.3 66 384.4 64 400 64c37 0 71.4 11.4 99.8 31l20.6-20.6L487 41c-6.9-6.9-8.9-17.2-5.2-26.2S494.3 0 504 0H616c13.3 0 24 10.7 24 24V136c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4L545 140.2c19.5 28.4 31 62.7 31 99.8c0 97.2-78.8 176-176 176c-50.5 0-96-21.3-128.1-55.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vest": { + "aliases": { + "unicodes": { + "secondary": [ + "10e085" + ] + } + }, + "changes": [ + "5.15.0", + "5.15.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biker", + "fashion", + "style" + ] + }, + "unicode": "e085", + "label": "Vest", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M207.1 237.4L151.2 69.7C168.6 79.7 192.6 88 224 88s55.4-8.3 72.8-18.3L226.5 280.6c-1.6 4.9-2.5 10-2.5 15.2V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V270.5c0-9.5-2.8-18.7-8.1-26.6l-47.9-71.8c-5.3-7.9-8.1-17.1-8.1-26.6V128 54.3 48c0-26.5-21.5-48-48-48h-4.5c-.2 0-.4 0-.6 0c-.4 0-.8 0-1.2 0C311 0 295.7 9.7 285.7 18.8C276.4 27.2 257.2 40 224 40s-52.4-12.8-61.7-21.2C152.3 9.7 137 0 118.3 0c-.4 0-.8 0-1.2 0c-.2 0-.4 0-.6 0H112C85.5 0 64 21.5 64 48v6.3V128v17.5c0 9.5-2.8 18.7-8.1 26.6L8.1 243.9C2.8 251.8 0 261.1 0 270.5V464c0 26.5 21.5 48 48 48H176c9.9 0 19-3 26.7-8.1C195.9 492.2 192 478.5 192 464V295.8c0-8.6 1.4-17.1 4.1-25.3l11-33.1zM347.3 356.7l48 48c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-48-48c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0zm-294.6 48l48-48c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-48 48c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vest-patches": { + "aliases": { + "unicodes": { + "secondary": [ + "10e086" + ] + } + }, + "changes": [ + "5.15.0", + "5.15.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biker", + "fashion", + "style" + ] + }, + "unicode": "e086", + "label": "Vest Patches", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M151.2 69.7l55.9 167.7-11 33.1c-2.7 8.2-4.1 16.7-4.1 25.3V464c0 14.5 3.9 28.2 10.7 39.9C195 509 185.9 512 176 512H48c-26.5 0-48-21.5-48-48V270.5c0-9.5 2.8-18.7 8.1-26.6l47.9-71.8c5.3-7.9 8.1-17.1 8.1-26.6V128 54.3 48C64 21.5 85.5 0 112 0h4.5c.2 0 .4 0 .6 0c.4 0 .8 0 1.2 0c18.8 0 34.1 9.7 44.1 18.8C171.6 27.2 190.8 40 224 40s52.4-12.8 61.7-21.2C295.7 9.7 311 0 329.7 0c.4 0 .8 0 1.2 0c.2 0 .4 0 .6 0H336c26.5 0 48 21.5 48 48v6.3V128v17.5c0 9.5 2.8 18.7 8.1 26.6l47.9 71.8c5.3 7.9 8.1 17.1 8.1 26.6V464c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V295.8c0-5.2 .8-10.3 2.5-15.2L296.8 69.7C279.4 79.7 255.4 88 224 88s-55.4-8.3-72.8-18.3zM96 456a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM63.5 255.5c-4.7 4.7-4.7 12.3 0 17L79 288 63.5 303.5c-4.7 4.7-4.7 12.3 0 17s12.3 4.7 17 0L96 305l15.5 15.5c4.7 4.7 12.3 4.7 17 0s4.7-12.3 0-17L113 288l15.5-15.5c4.7-4.7 4.7-12.3 0-17s-12.3-4.7-17 0L96 271 80.5 255.5c-4.7-4.7-12.3-4.7-17 0zM304 280v8 32c0 8.8 7.2 16 16 16h32 8c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "viacoin": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f237", + "label": "Viacoin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "viadeo": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2a9", + "label": "Viadeo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vial": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ea" + ], + "secondary": [ + "10f492" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemist", + "chemistry", + "experiment", + "lab", + "sample", + "science", + "test", + "test tube" + ] + }, + "unicode": "f492", + "label": "Vial", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M342.6 9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4L28.1 342.6C10.1 360.6 0 385 0 410.5V416c0 53 43 96 96 96h5.5c25.5 0 49.9-10.1 67.9-28.1L448 205.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-32-32-96-96-32-32zM205.3 256L352 109.3 402.7 160l-96 96H205.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vial-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemist", + "chemistry", + "not affected", + "ok", + "okay", + "success", + "test tube", + "tube", + "vaccine" + ] + }, + "unicode": "e596", + "label": "Vial Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H96h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32V266.8c-20.2 28.6-32 63.5-32 101.2c0 25.2 5.3 49.1 14.8 70.8C189.5 463.7 160.6 480 128 480c-53 0-96-43-96-96V96C14.3 96 0 81.7 0 64zM96 96v96h64V96H96zM224 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L352 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vial-virus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "coronavirus", + "covid-19", + "flue", + "infection", + "lab", + "laboratory", + "pandemic", + "test", + "test tube", + "vaccine" + ] + }, + "unicode": "e597", + "label": "Vial Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96V384c0 53 43 96 96 96c28.6 0 54.2-12.5 71.8-32.3c.1-14.2 5.6-28.3 16.4-39.1c.2-.2 .1-.6-.2-.6c-30.9 0-56-25.1-56-56s25.1-56 56-56c.3 0 .4-.4 .2-.6c-21.9-21.9-21.9-57.3 0-79.2c2.4-2.4 5-4.6 7.8-6.5V96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160 96 32zM96 192V96h64v96H96zM216 376c28.8 0 43.2 34.8 22.9 55.2c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0c20.4-20.4 55.2-5.9 55.2 22.9c0 13.3 10.7 24 24 24s24-10.7 24-24c0-28.8 34.8-43.2 55.2-22.9c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9C444.8 410.8 459.2 376 488 376c13.3 0 24-10.7 24-24s-10.7-24-24-24c-28.8 0-43.2-34.8-22.9-55.2c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0C410.8 259.2 376 244.8 376 216c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 28.8-34.8 43.2-55.2 22.9c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9c20.4 20.4 5.9 55.2-22.9 55.2c-13.3 0-24 10.7-24 24s10.7 24 24 24zm104-88a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm40 96a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vials": { + "aliases": { + "unicodes": { + "secondary": [ + "10f493" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "experiment", + "lab", + "sample", + "science", + "test", + "test tube" + ] + }, + "unicode": "f493", + "label": "Vials", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H88h48 56c17.7 0 32 14.3 32 32s-14.3 32-32 32V400c0 44.2-35.8 80-80 80s-80-35.8-80-80V96C14.3 96 0 81.7 0 64zM136 96H88V256h48V96zM288 64c0-17.7 14.3-32 32-32h56 48 56c17.7 0 32 14.3 32 32s-14.3 32-32 32V400c0 44.2-35.8 80-80 80s-80-35.8-80-80V96c-17.7 0-32-14.3-32-32zM424 96H376V256h48V96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "viber": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f409", + "label": "Viber", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "video": { + "aliases": { + "names": [ + "video-camera" + ], + "unicodes": { + "secondary": [ + "10f03d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "film", + "movie", + "record", + "video-camera" + ] + }, + "unicode": "f03d", + "label": "Video", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767341, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM559.1 99.8c10.4 5.6 16.9 16.4 16.9 28.2V384c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64L416 337.1V320 192 174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "video-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4e2" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "film", + "new", + "positive", + "record", + "video" + ] + }, + "unicode": "f4e2", + "label": "Video Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767341, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.4-67.7 13.8 9.2c9.8 6.5 22.4 7.2 32.9 1.6s16.9-16.4 16.9-28.2V128c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.9 1.6l-96 64L448 174.9V192 320v5.8l-32-25.1V128c0-35.3-28.7-64-64-64H113.9L38.8 5.1zM407 416.7L32.3 121.5c-.2 2.1-.3 4.3-.3 6.5V384c0 35.3 28.7 64 64 64H352c23.4 0 43.9-12.6 55-31.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vihara": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6a7" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buddhism", + "buddhist", + "building", + "monastery" + ] + }, + "unicode": "f6a7", + "label": "Vihara", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M281 22L305.8 4.7c1.3-.9 2.7-1.8 4.1-2.4C313.1 .7 316.6 0 320 0s6.9 .7 10.1 2.2c1.4 .7 2.8 1.5 4.1 2.4L359 22C393 45.8 430.8 63.5 470.8 74.4l23 6.3c1.8 .5 3.6 1.1 5.2 2c3.2 1.7 5.9 4 8.1 6.8c3.8 4.9 5.6 11.3 4.7 17.8c-.4 2.8-1.2 5.4-2.5 7.8c-1.7 3.2-4 5.9-6.8 8.1c-4.3 3.2-9.6 5.1-15.1 4.9H480v56.1l6.4 5.1 5.2 4.1c21.1 16.7 45 29.6 70.5 38.1l28.9 9.6c1.6 .5 3.2 1.2 4.6 2c3.1 1.7 5.8 4.1 7.8 6.9s3.5 6.1 4.1 9.6c.5 2.7 .6 5.5 .1 8.3s-1.4 5.4-2.7 7.8c-1.7 3.1-4.1 5.8-6.9 7.8s-6.1 3.5-9.6 4.1c-1.6 .3-3.3 .4-5 .4H544v65.9c20.5 22.8 47.4 39.2 77.4 46.7C632 403 640 412.6 640 424c0 13.3-10.7 24-24 24H576v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H352v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H24c-13.3 0-24-10.7-24-24c0-11.4 8-21 18.6-23.4c30-7.6 56.9-23.9 77.4-46.7V288H56.6c-1.7 0-3.4-.1-5-.4c-3.5-.7-6.8-2.1-9.6-4.1s-5.2-4.7-7-7.8c-1.3-2.4-2.3-5-2.7-7.8s-.4-5.6 .1-8.3c.7-3.5 2.1-6.8 4.1-9.6s4.7-5.2 7.8-6.9c1.4-.8 3-1.5 4.6-2l28.9-9.6c25.5-8.5 49.4-21.4 70.5-38.1l5.2-4.1 6.4-5.1V176 128h-7.5c-5.5 .1-10.8-1.7-15.1-4.9c-2.8-2.1-5.1-4.8-6.8-8.1c-1.2-2.4-2.1-5-2.5-7.8c-.9-6.5 .9-12.8 4.7-17.8c2.1-2.8 4.8-5.1 8.1-6.8c1.6-.8 3.4-1.5 5.2-2l23-6.3C209.2 63.5 247 45.8 281 22zM416 128H320 224v64h72 48 72V128zM160 288v64H296h24 24H480V288H344 320h0H296 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vimeo": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40a", + "label": "Vimeo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vimeo-v": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "vimeo" + ] + }, + "unicode": "f27d", + "label": "Vimeo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vine": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1ca", + "label": "Vine", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e074" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "sick", + "vaccine", + "viral" + ] + }, + "unicode": "e074", + "label": "Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43.5c0 49.9-60.3 74.9-95.6 39.6L120.2 75C107.7 62.5 87.5 62.5 75 75s-12.5 32.8 0 45.3l8.2 8.2C118.4 163.7 93.4 224 43.5 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H43.5c49.9 0 74.9 60.3 39.6 95.6L75 391.8c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V468.5c0-49.9 60.3-74.9 95.6-39.6l8.2 8.2c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-8.2-8.2c-35.3-35.3-10.3-95.6 39.6-95.6H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H468.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C348.3 118.4 288 93.4 288 43.5V32zM176 224a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm128 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "virus-covid": { + "changes": [ + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "vaccine", + "viral", + "virus" + ] + }, + "unicode": "e4a8", + "label": "Virus Covid", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24s-10.7 24-24 24H280V81.6c30.7 4.2 58.8 16.3 82.3 34.1L386.1 92 374.8 80.6c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l56.6 56.6c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L420 125.9l-23.8 23.8c17.9 23.5 29.9 51.7 34.1 82.3H464V216c0-13.3 10.7-24 24-24s24 10.7 24 24v80c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H430.4c-4.2 30.7-16.3 58.8-34.1 82.3L420 386.1l11.3-11.3c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-56.6 56.6c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L386.1 420l-23.8-23.8c-23.5 17.9-51.7 29.9-82.3 34.1V464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V430.4c-30.7-4.2-58.8-16.3-82.3-34.1L125.9 420l11.3 11.3c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L46.7 408.7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L92 386.1l23.8-23.8C97.9 338.8 85.8 310.7 81.6 280H48v16c0 13.3-10.7 24-24 24s-24-10.7-24-24V216c0-13.3 10.7-24 24-24s24 10.7 24 24v16H81.6c4.2-30.7 16.3-58.8 34.1-82.3L92 125.9 80.6 137.2c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l56.6-56.6c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L125.9 92l23.8 23.8c23.5-17.9 51.7-29.9 82.3-34.1V48H216c-13.3 0-24-10.7-24-24zm48 200a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm64 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "virus-covid-slash": { + "changes": [ + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "vaccine", + "viral", + "virus" + ] + }, + "unicode": "e4a9", + "label": "Virus Covid Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c11.4-19.5 19.1-41.4 22.3-64.7H528v16c0 13.3 10.7 24 24 24s24-10.7 24-24V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v16H494.4c-4.2-30.7-16.3-58.8-34.1-82.3L484 125.9l11.3 11.3c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L472.7 46.7c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L450.1 92l-23.8 23.8C402.8 97.9 374.7 85.8 344 81.6V48h16c13.3 0 24-10.7 24-24s-10.7-24-24-24H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h16V81.6c-30.7 4.2-58.8 16.3-82.3 34.1L189.9 92l11.3-11.3c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L134.1 79.8 38.8 5.1zM149.2 213.5c-1.5 6-2.7 12.2-3.5 18.5H112V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24V280h33.6c4.2 30.7 16.3 58.8 34.1 82.3L156 386.1l-11.3-11.3c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l56.6 56.6c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L189.9 420l23.8-23.8c23.5 17.9 51.7 29.9 82.3 34.1V464H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4c20.4-2.8 39.7-9.1 57.3-18.2L149.2 213.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "virus-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e075" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "coronavirus", + "covid-19", + "cure", + "eliminate", + "flu", + "health", + "infection", + "pandemic", + "sick", + "vaccine", + "viral" + ] + }, + "unicode": "e075", + "label": "Virus Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-154.3-121c-2-30.1 20.8-60.1 56-60.1H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H532.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C412.3 118.4 352 93.4 352 43.5V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43.5c0 49.9-60.3 74.9-95.6 39.6L184.2 75c-12.5-12.5-32.8-12.5-45.3 0c-1.6 1.6-3.1 3.4-4.3 5.3L38.8 5.1zm225.8 177c6.9-3.9 14.9-6.1 23.4-6.1c26.5 0 48 21.5 48 48c0 4.4-.6 8.7-1.7 12.7l-69.7-54.6zM402 412.7L144.7 210c-9.5 8.5-22.2 14-37.2 14H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h11.5c49.9 0 74.9 60.3 39.6 95.6l-8.2 8.2c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V468.5c0-31.2 23.6-52.7 50-55.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "viruses": { + "aliases": { + "unicodes": { + "secondary": [ + "10e076" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bugs", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "multiply", + "pandemic", + "sick", + "spread", + "vaccine", + "viral" + ] + }, + "unicode": "e076", + "label": "Viruses", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766750, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 0c13.3 0 24 10.7 24 24V37.5c0 35.6 43.1 53.5 68.3 28.3l9.5-9.5c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-9.5 9.5C293 124.9 310.9 168 346.5 168H360c13.3 0 24 10.7 24 24s-10.7 24-24 24H346.5c-35.6 0-53.5 43.1-28.3 68.3l9.5 9.5c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-9.5-9.5C259.1 293 216 310.9 216 346.5V360c0 13.3-10.7 24-24 24s-24-10.7-24-24V346.5c0-35.6-43.1-53.5-68.3-28.3l-9.5 9.5c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l9.5-9.5C91 259.1 73.1 216 37.5 216H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H37.5c35.6 0 53.5-43.1 28.3-68.3l-9.5-9.5c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l9.5 9.5C124.9 91 168 73.1 168 37.5V24c0-13.3 10.7-24 24-24zm48 224a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-48-64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm320 80c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C574.5 312.1 591 352 624 352c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C551.9 446.5 512 463 512 496c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C417.5 423.9 401 384 368 384c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C440.1 289.5 480 273 480 240c0-8.8 7.2-16 16-16s16 7.2 16 16zm0 112a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vk": { + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f189", + "label": "VK", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M31.4907 63.4907C0 94.9813 0 145.671 0 247.04V264.96C0 366.329 0 417.019 31.4907 448.509C62.9813 480 113.671 480 215.04 480H232.96C334.329 480 385.019 480 416.509 448.509C448 417.019 448 366.329 448 264.96V247.04C448 145.671 448 94.9813 416.509 63.4907C385.019 32 334.329 32 232.96 32H215.04C113.671 32 62.9813 32 31.4907 63.4907ZM75.6 168.267H126.747C128.427 253.76 166.133 289.973 196 297.44V168.267H244.16V242C273.653 238.827 304.64 205.227 315.093 168.267H363.253C359.313 187.435 351.46 205.583 340.186 221.579C328.913 237.574 314.461 251.071 297.733 261.227C316.41 270.499 332.907 283.63 346.132 299.751C359.357 315.873 369.01 334.618 374.453 354.747H321.44C316.555 337.262 306.614 321.61 292.865 309.754C279.117 297.899 262.173 290.368 244.16 288.107V354.747H238.373C136.267 354.747 78.0267 284.747 75.6 168.267Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vnv": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40b", + "label": "VNV", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "voicemail": { + "aliases": { + "unicodes": { + "secondary": [ + "10f897" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "answer", + "inbox", + "message", + "phone" + ] + }, + "unicode": "f897", + "label": "Voicemail", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767389, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 320a80 80 0 1 1 0-160 80 80 0 1 1 0 160zm119.8 0c15.3-22.9 24.2-50.4 24.2-80c0-79.5-64.5-144-144-144S0 160.5 0 240s64.5 144 144 144H496c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144c0 29.6 8.9 57.1 24.2 80H263.8zM496 160a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volcano": { + "aliases": { + "unicodes": { + "composite": [ + "1f30b" + ], + "secondary": [ + "10f770" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caldera", + "eruption", + "lava", + "magma", + "mountain", + "smoke", + "volcano" + ] + }, + "unicode": "f770", + "label": "Volcano", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 144c-35.3 0-64-28.7-64-64s28.7-64 64-64c15.7 0 30 5.6 41.2 15C212.4 12.4 232.7 0 256 0s43.6 12.4 54.8 31C322 21.6 336.3 16 352 16c35.3 0 64 28.7 64 64s-28.7 64-64 64c-14.7 0-28.3-5-39.1-13.3l-32 48C275.3 187 266 192 256 192s-19.3-5-24.9-13.3l-32-48C188.3 139 174.7 144 160 144zM144 352l48.4-24.2c10.2-5.1 21.6-7.8 33-7.8c19.6 0 38.4 7.8 52.2 21.6l32.5 32.5c6.3 6.3 14.9 9.9 23.8 9.9c11.3 0 21.8-5.6 28-15l9.7-14.6-58.9-66.3c-9.1-10.2-22.2-16.1-35.9-16.1H235.1c-13.7 0-26.8 5.9-35.9 16.1l-59.9 67.4L144 352zm19.4-95.8c18.2-20.5 44.3-32.2 71.8-32.2h41.8c27.4 0 53.5 11.7 71.8 32.2l150.2 169c8.5 9.5 13.2 21.9 13.2 34.7c0 28.8-23.4 52.2-52.2 52.2H52.2C23.4 512 0 488.6 0 459.8c0-12.8 4.7-25.1 13.2-34.7l150.2-169z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volleyball": { + "aliases": { + "names": [ + "volleyball-ball" + ], + "unicodes": { + "composite": [ + "1f3d0" + ], + "secondary": [ + "10f45f" + ] + } + }, + "changes": [ + "5.0.5", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "beach", + "game", + "olympics", + "sport", + "volleyball" + ] + }, + "unicode": "f45f", + "label": "Volleyball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767071, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M511.8 267.4c-26.1 8.7-53.4 13.8-81 15.1c9.2-105.3-31.5-204.2-103.2-272.4C434.1 41.1 512 139.5 512 256c0 3.8-.1 7.6-.2 11.4zm-3.9 34.7c-5.8 32-17.6 62-34.2 88.7c-97.5 48.5-217.7 42.6-311.9-24.5c23.7-36.2 55.4-67.7 94.5-91.8c79.9 43.2 170.1 50.8 251.6 27.6zm-236-55.5c-2.5-90.9-41.1-172.7-101.9-231.7C196.8 5.2 225.8 0 256 0c2.7 0 5.3 0 7.9 .1c90.8 60.2 145.7 167.2 134.7 282.3c-43.1-2.4-86.4-14.1-126.8-35.9zM138 28.8c20.6 18.3 38.7 39.4 53.7 62.6C95.9 136.1 30.6 220.8 7.3 316.9C2.5 297.4 0 277 0 256C0 157.2 56 71.5 138 28.8zm69.6 90.5c19.5 38.6 31 81.9 32.3 127.7C162.5 294.6 110.9 368.9 90.2 451C66 430.4 45.6 405.4 30.4 377.2c6.7-108.7 71.9-209.9 177.1-257.9zM256 512c-50.7 0-98-14.7-137.8-40.2c5.6-27 14.8-53.1 27.4-77.7C232.2 454.6 338.1 468.8 433 441c-46 44-108.3 71-177 71z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-high": { + "aliases": { + "names": [ + "volume-up" + ], + "unicodes": { + "composite": [ + "1f50a" + ], + "secondary": [ + "10f028" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "higher", + "loud", + "louder", + "music", + "sound", + "speaker", + "speaker high volume" + ] + }, + "unicode": "f028", + "label": "Volume High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M533.6 32.5C598.5 85.3 640 165.8 640 256s-41.5 170.8-106.4 223.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C557.5 398.2 592 331.2 592 256s-34.5-142.2-88.7-186.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM473.1 107c43.2 35.2 70.9 88.9 70.9 149s-27.7 113.8-70.9 149c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C475.3 341.3 496 301.1 496 256s-20.7-85.3-53.2-111.8c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zm-60.5 74.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-low": { + "aliases": { + "names": [ + "volume-down" + ], + "unicodes": { + "composite": [ + "1f508" + ], + "secondary": [ + "10f027" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "lower", + "music", + "quieter", + "soft", + "sound", + "speaker", + "speaker low volume" + ] + }, + "unicode": "f027", + "label": "Volume Low", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766677, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM412.6 181.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-off": { + "aliases": { + "unicodes": { + "secondary": [ + "10f026" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "ban", + "music", + "mute", + "quiet", + "silent", + "sound" + ] + }, + "unicode": "f026", + "label": "Volume Off", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M320 64c0-12.6-7.4-24-18.9-29.2s-25-3.1-34.4 5.3L131.8 160H64c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64h67.8L266.7 471.9c9.4 8.4 22.9 10.4 34.4 5.3S320 460.6 320 448V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-xmark": { + "aliases": { + "names": [ + "volume-mute", + "volume-times" + ], + "unicodes": { + "secondary": [ + "10f6a9" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "quiet", + "sound", + "speaker" + ] + }, + "unicode": "f6a9", + "label": "Volume Xmark", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM425 167l55 55 55-55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-55 55 55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-55-55-55 55c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l55-55-55-55c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vr-cardboard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f729" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "augment", + "google", + "reality", + "virtual" + ] + }, + "unicode": "f729", + "label": "Vr Cardboard", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M576 64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H184.4c24.2 0 46.4-13.7 57.2-35.4l32-64c8.8-17.5 26.7-28.6 46.3-28.6s37.5 11.1 46.3 28.6l32 64c10.8 21.7 33 35.4 57.2 35.4H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM96 240a64 64 0 1 1 128 0A64 64 0 1 1 96 240zm384-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vuejs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41f", + "label": "Vue.js", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "w": { + "aliases": { + "unicodes": { + "composite": [ + "77" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter W", + "Latin Small Letter W", + "letter" + ] + }, + "unicode": "57", + "label": "W", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767247, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M20.8 34c16.5-6.2 35 2.2 41.2 18.7l110.2 294L257.3 55c4-13.7 16.5-23 30.7-23s26.7 9.4 30.7 23l85.1 291.7L514 52.8c6.2-16.5 24.6-24.9 41.2-18.7s24.9 24.7 18.7 41.2l-144 384c-4.8 12.9-17.4 21.3-31.2 20.7s-25.7-9.8-29.5-23L288 178.3 206.7 457c-3.9 13.2-15.8 22.5-29.5 23s-26.3-7.8-31.2-20.7L2 75.2C-4.2 58.7 4.2 40.2 20.8 34z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "walkie-talkie": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8ef" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communication", + "copy", + "intercom", + "over", + "portable", + "radio", + "two way radio" + ] + }, + "unicode": "f8ef", + "label": "Walkie Talkie", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766675, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112 24c0-13.3-10.7-24-24-24S64 10.7 64 24V96H48C21.5 96 0 117.5 0 144V300.1c0 12.7 5.1 24.9 14.1 33.9l3.9 3.9c9 9 14.1 21.2 14.1 33.9V464c0 26.5 21.5 48 48 48H304c26.5 0 48-21.5 48-48V371.9c0-12.7 5.1-24.9 14.1-33.9l3.9-3.9c9-9 14.1-21.2 14.1-33.9V144c0-26.5-21.5-48-48-48H320c0-17.7-14.3-32-32-32s-32 14.3-32 32H224c0-17.7-14.3-32-32-32s-32 14.3-32 32H112V24zm0 136H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wallet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f555" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "billfold", + "cash", + "currency", + "money" + ] + }, + "unicode": "f555", + "label": "Wallet", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H80c-8.8 0-16-7.2-16-16s7.2-16 16-16H448c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM416 272a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wand-magic": { + "aliases": { + "names": [ + "magic" + ], + "unicodes": { + "secondary": [ + "10f0d0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autocomplete", + "automatic", + "mage", + "magic", + "spell", + "wand", + "witch", + "wizard" + ] + }, + "unicode": "f0d0", + "label": "Wand Magic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767366, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M14.1 463.3c-18.7-18.7-18.7-49.1 0-67.9L395.4 14.1c18.7-18.7 49.1-18.7 67.9 0l34.6 34.6c18.7 18.7 18.7 49.1 0 67.9L116.5 497.9c-18.7 18.7-49.1 18.7-67.9 0L14.1 463.3zM347.6 187.6l105-105L429.4 59.3l-105 105 23.3 23.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wand-magic-sparkles": { + "aliases": { + "names": [ + "magic-wand-sparkles" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "magic", + "magic wand", + "trick", + "witch", + "wizard" + ] + }, + "unicode": "e2ca", + "label": "Wand Magic Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767368, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M234.7 42.7L197 56.8c-3 1.1-5 4-5 7.2s2 6.1 5 7.2l37.7 14.1L248.8 123c1.1 3 4 5 7.2 5s6.1-2 7.2-5l14.1-37.7L315 71.2c3-1.1 5-4 5-7.2s-2-6.1-5-7.2L277.3 42.7 263.2 5c-1.1-3-4-5-7.2-5s-6.1 2-7.2 5L234.7 42.7zM46.1 395.4c-18.7 18.7-18.7 49.1 0 67.9l34.6 34.6c18.7 18.7 49.1 18.7 67.9 0L529.9 116.5c18.7-18.7 18.7-49.1 0-67.9L495.3 14.1c-18.7-18.7-49.1-18.7-67.9 0L46.1 395.4zM484.6 82.6l-105 105-23.3-23.3 105-105 23.3 23.3zM7.5 117.2C3 118.9 0 123.2 0 128s3 9.1 7.5 10.8L64 160l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L128 160l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L128 96 106.8 39.5C105.1 35 100.8 32 96 32s-9.1 3-10.8 7.5L64 96 7.5 117.2zm352 256c-4.5 1.7-7.5 6-7.5 10.8s3 9.1 7.5 10.8L416 416l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L480 416l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L480 352l-21.2-56.5c-1.7-4.5-6-7.5-10.8-7.5s-9.1 3-10.8 7.5L416 352l-56.5 21.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wand-sparkles": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72b" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autocomplete", + "automatic", + "fantasy", + "halloween", + "holiday", + "magic", + "weapon", + "witch", + "wizard" + ] + }, + "unicode": "f72b", + "label": "Wand Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 6.1c9.5-8.5 24-8.1 33 .9l8 8c9 9 9.4 23.5 .9 33l-85.8 95.9c-2.6 2.9-4.1 6.7-4.1 10.7V176c0 8.8-7.2 16-16 16H384.2c-4.6 0-8.9 1.9-11.9 5.3L100.7 500.9C94.3 508 85.3 512 75.8 512c-8.8 0-17.3-3.5-23.5-9.8L9.7 459.7C3.5 453.4 0 445 0 436.2c0-9.5 4-18.5 11.1-24.8l111.6-99.8c3.4-3 5.3-7.4 5.3-11.9V272c0-8.8 7.2-16 16-16h34.6c3.9 0 7.7-1.5 10.7-4.1L464 6.1zM432 288c3.6 0 6.7 2.4 7.7 5.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8-14.8 51.7c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8l-14.8-51.7-51.7-14.8c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8 14.8-51.7c1-3.4 4.1-5.8 7.7-5.8zM87.7 69.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8L87.7 218.2c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8L57.5 166.5 5.8 151.7c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8L72.3 69.8c1-3.4 4.1-5.8 7.7-5.8s6.7 2.4 7.7 5.8zM208 0c3.7 0 6.9 2.5 7.8 6.1l6.8 27.3 27.3 6.8c3.6 .9 6.1 4.1 6.1 7.8s-2.5 6.9-6.1 7.8l-27.3 6.8-6.8 27.3c-.9 3.6-4.1 6.1-7.8 6.1s-6.9-2.5-7.8-6.1l-6.8-27.3-27.3-6.8c-3.6-.9-6.1-4.1-6.1-7.8s2.5-6.9 6.1-7.8l27.3-6.8 6.8-27.3c.9-3.6 4.1-6.1 7.8-6.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "warehouse": { + "aliases": { + "unicodes": { + "secondary": [ + "10f494" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "capacity", + "garage", + "inventory", + "storage" + ] + }, + "unicode": "f494", + "label": "Warehouse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766827, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 488V171.3c0-26.2 15.9-49.7 40.2-59.4L308.1 4.8c7.6-3.1 16.1-3.1 23.8 0L599.8 111.9c24.3 9.7 40.2 33.3 40.2 59.4V488c0 13.3-10.7 24-24 24H568c-13.3 0-24-10.7-24-24V224c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32V488c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zm488 24l-336 0c-13.3 0-24-10.7-24-24V432H512l0 56c0 13.3-10.7 24-24 24zM128 400V336H512v64H128zm0-96V224H512l0 80H128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "watchman-monitoring": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e087", + "label": "Watchman Monitoring", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,16C123.452,16,16,123.452,16,256S123.452,496,256,496,496,388.548,496,256,388.548,16,256,16ZM121.69,429.122C70.056,388.972,36.741,326.322,36.741,256a218.519,218.519,0,0,1,9.587-64.122l102.9-17.895-.121,10.967-13.943,2.013s-.144,12.5-.144,19.549a12.778,12.778,0,0,0,4.887,10.349l9.468,7.4Zm105.692-283.27,8.48-7.618s6.934-5.38-.143-9.344c-7.188-4.024-39.53-34.5-39.53-34.5-5.348-5.477-8.257-7.347-15.46,0,0,0-32.342,30.474-39.529,34.5-7.078,3.964-.144,9.344-.144,9.344l8.481,7.618-.048,4.369L75.982,131.045c39.644-56.938,105.532-94.3,180.018-94.3A218.754,218.754,0,0,1,420.934,111.77l-193.512,37.7Zm34.063,329.269-33.9-250.857,9.467-7.4a12.778,12.778,0,0,0,4.888-10.349c0-7.044-.144-19.549-.144-19.549l-13.943-2.013-.116-10.474,241.711,31.391A218.872,218.872,0,0,1,475.259,256C475.259,375.074,379.831,472.212,261.445,475.121Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "water": { + "aliases": { + "unicodes": { + "secondary": [ + "10f773" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lake", + "liquid", + "ocean", + "sea", + "swim", + "wet" + ] + }, + "unicode": "f773", + "label": "Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767662, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M269.5 69.9c11.1-7.9 25.9-7.9 37 0C329 85.4 356.5 96 384 96c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 149.7 417 160 384 160c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4C42.8 92.6 61 83.5 75.3 71.6c11.1-9.5 27.3-10.1 39.2-1.7l0 0C136.7 85.2 165.1 96 192 96c27.5 0 55-10.6 77.5-26.1zm37 288C329 373.4 356.5 384 384 384c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 437.7 417 448 384 448c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 373.2 165.1 384 192 384c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0zm0-144C329 229.4 356.5 240 384 240c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 293.7 417 304 384 304c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.5 27.3-10.1 39.2-1.7l0 0C136.7 229.2 165.1 240 192 240c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "water-ladder": { + "aliases": { + "names": [ + "ladder-water", + "swimming-pool" + ], + "unicodes": { + "secondary": [ + "10f5c5" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ladder", + "recreation", + "swim", + "water" + ] + }, + "unicode": "f5c5", + "label": "Water Ladder", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767070, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M128 127.7C128 74.9 170.9 32 223.7 32c48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8c-17.5 0-31.7 14.2-31.7 31.7V224H384V127.7C384 74.9 426.9 32 479.7 32c48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8c-17.5 0-31.7 14.2-31.7 31.7V361c-1.6 1-3.3 2-4.8 3.1c-18 12.4-40.1 20.3-59.2 20.3h0V288H192v96.5c-19 0-41.2-7.9-59.1-20.3c-1.6-1.1-3.2-2.2-4.9-3.1V127.7zM306.5 389.9C329 405.4 356.5 416 384 416c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 469.7 417 480 384 480c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 405.2 165.1 416 192 416c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wave-square": { + "aliases": { + "unicodes": { + "secondary": [ + "10f83e" + ] + } + }, + "changes": [ + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "frequency", + "pulse", + "signal" + ] + }, + "unicode": "f83e", + "label": "Wave Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766677, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 64c0-17.7 14.3-32 32-32H320c17.7 0 32 14.3 32 32V416h96V256c0-17.7 14.3-32 32-32H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H512V448c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V96H192V256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "waze": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83f", + "label": "Waze", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.17 201.67C516.69 287.53 471.23 369.59 389 409.8c13 34.1-12.4 70.2-48.32 70.2a51.68 51.68 0 0 1-51.57-49c-6.44.19-64.2 0-76.33-.64A51.69 51.69 0 0 1 159 479.92c-33.86-1.36-57.95-34.84-47-67.92-37.21-13.11-72.54-34.87-99.62-70.8-13-17.28-.48-41.8 20.84-41.8 46.31 0 32.22-54.17 43.15-110.26C94.8 95.2 193.12 32 288.09 32c102.48 0 197.15 70.67 214.08 169.67zM373.51 388.28c42-19.18 81.33-56.71 96.29-102.14 40.48-123.09-64.15-228-181.71-228-83.45 0-170.32 55.42-186.07 136-9.53 48.91 5 131.35-68.75 131.35C58.21 358.6 91.6 378.11 127 389.54c24.66-21.8 63.87-15.47 79.83 14.34 14.22 1 79.19 1.18 87.9.82a51.69 51.69 0 0 1 78.78-16.42zM205.12 187.13c0-34.74 50.84-34.75 50.84 0s-50.84 34.74-50.84 0zm116.57 0c0-34.74 50.86-34.75 50.86 0s-50.86 34.75-50.86 0zm-122.61 70.69c-3.44-16.94 22.18-22.18 25.62-5.21l.06.28c4.14 21.42 29.85 44 64.12 43.07 35.68-.94 59.25-22.21 64.11-42.77 4.46-16.05 28.6-10.36 25.47 6-5.23 22.18-31.21 62-91.46 62.9-42.55 0-80.88-27.84-87.9-64.25z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "weebly": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5cc", + "label": "Weebly", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "weibo": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f18a", + "label": "Weibo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "weight-hanging": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5cd" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anvil", + "heavy", + "measurement" + ] + }, + "unicode": "f5cd", + "label": "Weight Hanging", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 96a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm122.5 32c3.5-10 5.5-20.8 5.5-32c0-53-43-96-96-96s-96 43-96 96c0 11.2 1.9 22 5.5 32H120c-22 0-41.2 15-46.6 36.4l-72 288c-3.6 14.3-.4 29.5 8.7 41.2S33.2 512 48 512H464c14.8 0 28.7-6.8 37.8-18.5s12.3-26.8 8.7-41.2l-72-288C433.2 143 414 128 392 128H346.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "weight-scale": { + "aliases": { + "names": [ + "weight" + ], + "unicodes": { + "secondary": [ + "10f496" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "health", + "measurement", + "scale", + "weight" + ] + }, + "unicode": "f496", + "label": "Weight Scale", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 176a128 128 0 1 1 256 0 128 128 0 1 1 -256 0zM391.8 64C359.5 24.9 310.7 0 256 0S152.5 24.9 120.2 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H391.8zM296 224c0-10.6-4.1-20.2-10.9-27.4l33.6-78.3c3.5-8.1-.3-17.5-8.4-21s-17.5 .3-21 8.4L255.7 184c-22 .1-39.7 18-39.7 40c0 22.1 17.9 40 40 40s40-17.9 40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "weixin": { + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d7", + "label": "Weixin (WeChat)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "whatsapp": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f232", + "label": "What's App", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wheat-awn": { + "aliases": { + "names": [ + "wheat-alt" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "autumn", + "fall", + "farming", + "grain" + ] + }, + "unicode": "e2cd", + "label": "Wheat Awn", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0L271.5 38.6c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0L67.9 242.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0L486.5 231c6.2-6.2 6.2-16.4 0-22.6L475.2 197c-5.2-5.2-10.6-9.8-16.4-13.9L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1c6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L329.1 52.9c-3.7-5-7.8-9.8-12.4-14.3L305.5 27.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wheat-awn-circle-exclamation": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "famine", + "food", + "gluten", + "hunger", + "starve", + "straw" + ] + }, + "unicode": "e598", + "label": "Wheat Awn Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0L271.5 38.6c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0L67.9 242.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c22.5 22.5 53.3 31.5 82.4 27c0-1 0-2.1 0-3.1c0-33.1 9.1-64.1 25-90.6c-15.5-8.7-32.5-13.8-49.8-15.5l31.9-31.9 12.2 12.2c6 6 12.6 11.1 19.7 15.2c27.5-34 67.3-57.5 112.6-63.8c-4.1-3.8-8.4-7.3-12.9-10.5L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1c6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L329.1 52.9c-3.7-5-7.8-9.8-12.4-14.3L305.5 27.3zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wheelchair": { + "aliases": { + "unicodes": { + "secondary": [ + "10f193" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f193", + "label": "Wheelchair", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767532, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM120.5 247.2c12.4-4.7 18.7-18.5 14-30.9s-18.5-18.7-30.9-14C43.1 225.1 0 283.5 0 352c0 88.4 71.6 160 160 160c61.2 0 114.3-34.3 141.2-84.7c6.2-11.7 1.8-26.2-9.9-32.5s-26.2-1.8-32.5 9.9C240 440 202.8 464 160 464C98.1 464 48 413.9 48 352c0-47.9 30.1-88.8 72.5-104.8zM259.8 176l-1.9-9.7c-4.5-22.3-24-38.3-46.8-38.3c-30.1 0-52.7 27.5-46.8 57l23.1 115.5c6 29.9 32.2 51.4 62.8 51.4h5.1c.4 0 .8 0 1.3 0h94.1c6.7 0 12.6 4.1 15 10.4L402 459.2c6 16.1 23.8 24.6 40.1 19.1l48-16c16.8-5.6 25.8-23.7 20.2-40.5s-23.7-25.8-40.5-20.2l-18.7 6.2-25.5-68c-11.7-31.2-41.6-51.9-74.9-51.9H282.2l-9.6-48H336c17.7 0 32-14.3 32-32s-14.3-32-32-32H259.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wheelchair-move": { + "aliases": { + "names": [ + "wheelchair-alt" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "access", + "handicap", + "impairment", + "physical", + "wheelchair symbol" + ] + }, + "unicode": "e2ce", + "label": "Wheelchair Move", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767531, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM204.5 121.3c-5.4-2.5-11.7-1.9-16.4 1.7l-40.9 30.7c-14.1 10.6-34.2 7.7-44.8-6.4s-7.7-34.2 6.4-44.8l40.9-30.7c23.7-17.8 55.3-21 82.1-8.4l90.4 42.5c29.1 13.7 36.8 51.6 15.2 75.5L299.1 224h97.4c30.3 0 53 27.7 47.1 57.4L415.4 422.3c-3.5 17.3-20.3 28.6-37.7 25.1s-28.6-20.3-25.1-37.7L377 288H306.7c8.6 19.6 13.3 41.2 13.3 64c0 88.4-71.6 160-160 160S0 440.4 0 352s71.6-160 160-160c11.1 0 22 1.1 32.4 3.3l54.2-54.2-42.1-19.8zM160 448a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "whiskey-glass": { + "aliases": { + "names": [ + "glass-whiskey" + ], + "unicodes": { + "composite": [ + "1f943" + ], + "secondary": [ + "10f7a0" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "bourbon", + "drink", + "glass", + "liquor", + "neat", + "rye", + "scotch", + "shot", + "tumbler", + "tumbler glass", + "whisky" + ] + }, + "unicode": "f7a0", + "label": "Whiskey Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767420, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c-9.3 0-18.1 4-24.2 11.1S-1 59.4 .3 68.6l50 342.9c5.7 39.3 39.4 68.5 79.2 68.5h253c39.7 0 73.4-29.1 79.2-68.5l50-342.9c1.3-9.2-1.4-18.5-7.5-25.5S489.3 32 480 32H32zM87.7 224L69 96H443L424.3 224H87.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "whmcs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40d", + "label": "WHMCS", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wifi": { + "aliases": { + "names": [ + "wifi-3", + "wifi-strong" + ], + "unicodes": { + "secondary": [ + "10f1eb" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "5.10.1", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connection", + "hotspot", + "internet", + "network", + "wireless" + ] + }, + "unicode": "f1eb", + "label": "Wifi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766676, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M54.2 202.9C123.2 136.7 216.8 96 320 96s196.8 40.7 265.8 106.9c12.8 12.2 33 11.8 45.2-.9s11.8-33-.9-45.2C549.7 79.5 440.4 32 320 32S90.3 79.5 9.8 156.7C-2.9 169-3.3 189.2 8.9 202s32.5 13.2 45.2 .9zM320 256c56.8 0 108.6 21.1 148.2 56c13.3 11.7 33.5 10.4 45.2-2.8s10.4-33.5-2.8-45.2C459.8 219.2 393 192 320 192s-139.8 27.2-190.5 72c-13.3 11.7-14.5 31.9-2.8 45.2s31.9 14.5 45.2 2.8c39.5-34.9 91.3-56 148.2-56zm64 160a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wikipedia-w": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f266", + "label": "Wikipedia W", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wind": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72e" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "blow", + "breeze", + "fall", + "seasonal", + "weather" + ] + }, + "unicode": "f72e", + "label": "Wind", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767661, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0 17.7 14.3 32 32 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c53 0 96-43 96-96s-43-96-96-96H320c-17.7 0-32 14.3-32 32zm64 352c0 17.7 14.3 32 32 32h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-17.7 0-32 14.3-32 32zM128 512h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H160c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "window-maximize": { + "aliases": { + "unicodes": { + "composite": [ + "1f5d6" + ], + "secondary": [ + "10f2d0" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Maximize", + "browser", + "computer", + "development", + "expand" + ] + }, + "unicode": "f2d0", + "label": "Window Maximize", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + }, + "regular": { + "lastModified": 1684767206, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.3 89.5C.1 91.6 0 93.8 0 96V224 416c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64V224 96c0-35.3-28.7-64-64-64H64c-2.2 0-4.4 .1-6.5 .3c-9.2 .9-17.8 3.8-25.5 8.2C21.8 46.5 13.4 55.1 7.7 65.5c-3.9 7.3-6.5 15.4-7.4 24zM48 224H464l0 192c0 8.8-7.2 16-16 16L64 432c-8.8 0-16-7.2-16-16l0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "window-minimize": { + "aliases": { + "unicodes": { + "composite": [ + "1f5d5" + ], + "secondary": [ + "10f2d1" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Minimize", + "browser", + "collapse", + "computer", + "development" + ] + }, + "unicode": "f2d1", + "label": "Window Minimize", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + }, + "regular": { + "lastModified": 1684767205, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 432c-13.3 0-24 10.7-24 24s10.7 24 24 24H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "window-restore": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2d2" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "computer", + "development" + ] + }, + "unicode": "f2d2", + "label": "Window Restore", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M432 64H208c-8.8 0-16 7.2-16 16V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V320h16c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM0 192c0-35.3 28.7-64 64-64H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192zm64 32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32 14.3-32 32z" + }, + "regular": { + "lastModified": 1684767207, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M432 48H208c-17.7 0-32 14.3-32 32V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V336h16c17.7 0 32-14.3 32-32V80c0-17.7-14.3-32-32-32zM48 448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V256H48V448zM64 128H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "windows": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "microsoft", + "operating system", + "os" + ] + }, + "unicode": "f17a", + "label": "Windows", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wine-bottle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72f" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "glass", + "grapes", + "merlot", + "sauvignon" + ] + }, + "unicode": "f72f", + "label": "Wine Bottle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M393.4 9.4c12.5-12.5 32.8-12.5 45.3 0l64 64c12.5 12.5 12.5 32.8 0 45.3c-11.8 11.8-30.7 12.5-43.2 1.9l-9.5 9.5-48.8 48.8c-9.2 9.2-11.5 22.9-8.6 35.6c9.4 40.9-1.9 85.6-33.8 117.5L197.3 493.3c-25 25-65.5 25-90.5 0l-88-88c-25-25-25-65.5 0-90.5L180.2 153.3c31.9-31.9 76.6-43.1 117.5-33.8c12.6 2.9 26.4 .5 35.5-8.6l48.8-48.8 9.5-9.5c-10.6-12.6-10-31.4 1.9-43.2zM99.3 347.3l65.4 65.4c6.2 6.2 16.4 6.2 22.6 0l97.4-97.4c6.2-6.2 6.2-16.4 0-22.6l-65.4-65.4c-6.2-6.2-16.4-6.2-22.6 0L99.3 324.7c-6.2 6.2-6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wine-glass": { + "aliases": { + "unicodes": { + "composite": [ + "1f377" + ], + "secondary": [ + "10f4e3" + ] + } + }, + "changes": [ + "5.0.9", + "5.1.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "cabernet", + "drink", + "glass", + "grapes", + "merlot", + "sauvignon", + "wine", + "wine glass" + ] + }, + "unicode": "f4e3", + "label": "Wine Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767419, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32.1 29.3C33.5 12.8 47.4 0 64 0H256c16.6 0 30.5 12.8 31.9 29.3l14 168.4c6 72-42.5 135.2-109.9 150.6V448h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H160 80c-17.7 0-32-14.3-32-32s14.3-32 32-32h48V348.4C60.6 333 12.1 269.8 18.1 197.8l14-168.4zm56 98.7H231.9l-5.3-64H93.4l-5.3 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wine-glass-empty": { + "aliases": { + "names": [ + "wine-glass-alt" + ], + "unicodes": { + "secondary": [ + "10f5ce" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0", + "6.4.1" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "grapes", + "merlot", + "sauvignon" + ] + }, + "unicode": "f5ce", + "label": "Wine Glass Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767418, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 0C47.4 0 33.5 12.8 32.1 29.3l-14 168.4c-6 72 42.5 135.2 109.9 150.6V448H80c-17.7 0-32 14.3-32 32s14.3 32 32 32h80 80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V348.4c67.4-15.4 115.9-78.6 109.9-150.6l-14-168.4C286.5 12.8 272.6 0 256 0H64zM81.9 203.1L93.4 64H226.6l11.6 139.1C242 248.8 205.9 288 160 288s-82-39.2-78.1-84.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wirsindhandwerk": { + "aliases": { + "names": [ + "wsh" + ] + }, + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e2d0", + "label": "wirsindhandwerk", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M50.77161,479.81213h83.36071V367.84741l-83.36071,47.009Zm329.04675,0h82.35022V414.85645l-82.35022-47.009Zm.00568-448V251.568L256.1759,179.1861,134.50378,251.568V31.81213H50.77161V392.60565L256.1759,270.31909,462.16858,392.60565V31.81213Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wix": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5cf", + "label": "Wix", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wizards-of-the-coast": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "unicode": "f730", + "label": "Wizards of the Coast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M219.19 345.69c-1.9 1.38-11.07 8.44-.26 23.57 4.64 6.42 14.11 12.79 21.73 6.55 6.5-4.88 7.35-12.92.26-23.04-5.47-7.76-14.28-12.88-21.73-7.08zm336.75 75.94c-.34 1.7-.55 1.67.79 0 2.09-4.19 4.19-10.21 4.98-19.9 3.14-38.49-40.33-71.49-101.34-78.03-54.73-6.02-124.38 9.17-188.8 60.49l-.26 1.57c2.62 4.98 4.98 10.74 3.4 21.21l.79.26c63.89-58.4 131.19-77.25 184.35-73.85 58.4 3.67 100.03 34.04 100.03 68.08-.01 9.96-2.63 15.72-3.94 20.17zM392.28 240.42c.79 7.07 4.19 10.21 9.17 10.47 5.5.26 9.43-2.62 10.47-6.55.79-3.4 2.09-29.85 2.09-29.85s-11.26 6.55-14.93 10.47c-3.66 3.68-7.33 8.39-6.8 15.46zm-50.02-151.1C137.75 89.32 13.1 226.8.79 241.2c-1.05.52-1.31.79.79 1.31 60.49 16.5 155.81 81.18 196.13 202.16l1.05.26c55.25-69.92 140.88-128.05 236.99-128.05 80.92 0 130.15 42.16 130.15 80.39 0 18.33-6.55 33.52-22.26 46.35 0 .96-.2.79.79.79 14.66-10.74 27.5-28.8 27.5-48.18 0-22.78-12.05-38.23-12.05-38.23 7.07 7.07 10.74 16.24 10.74 16.24 5.76-40.85 26.97-62.32 26.97-62.32-2.36-9.69-6.81-17.81-6.81-17.81 7.59 8.12 14.4 27.5 14.4 41.37 0 10.47-3.4 22.78-12.57 31.95l.26.52c8.12-4.98 16.5-16.76 16.5-37.97 0-15.71-4.71-25.92-4.71-25.92 5.76-5.24 11.26-9.17 15.97-11.78.79 3.4 2.09 9.69 2.36 14.93 0 1.05.79 1.83 1.05 0 .79-5.76-.26-16.24-.26-16.5 6.02-3.14 9.69-4.45 9.69-4.45C617.74 176 489.43 89.32 342.26 89.32zm-99.24 289.62c-11.06 8.99-24.2 4.08-30.64-4.19-7.45-9.58-6.76-24.09 4.19-32.47 14.85-11.35 27.08-.49 31.16 5.5.28.39 12.13 16.57-4.71 31.16zm2.09-136.43l9.43-17.81 11.78 70.96-12.57 6.02-24.62-28.8 14.14-26.71 3.67 4.45-1.83-8.11zm18.59 117.58l-.26-.26c2.05-4.1-2.5-6.61-17.54-31.69-1.31-2.36-3.14-2.88-4.45-2.62l-.26-.52c7.86-5.76 15.45-10.21 25.4-15.71l.52.26c1.31 1.83 2.09 2.88 3.4 4.71l-.26.52c-1.05-.26-2.36-.79-5.24.26-2.09.79-7.86 3.67-12.31 7.59v1.31c1.57 2.36 3.93 6.55 5.76 9.69h.26c10.05-6.28 7.56-4.55 11.52-7.86h.26c.52 1.83.52 1.83 1.83 5.5l-.26.26c-3.06.61-4.65.34-11.52 5.5v.26c9.46 17.02 11.01 16.75 12.57 15.97l.26.26c-2.34 1.59-6.27 4.21-9.68 6.57zm55.26-32.47c-3.14 1.57-6.02 2.88-9.95 4.98l-.26-.26c1.29-2.59 1.16-2.71-11.78-32.47l-.26-.26c-.15 0-8.9 3.65-9.95 7.33h-.52l-1.05-5.76.26-.52c7.29-4.56 25.53-11.64 27.76-12.57l.52.26 3.14 4.98-.26.52c-3.53-1.76-7.35.76-12.31 2.62v.26c12.31 32.01 12.67 30.64 14.66 30.64v.25zm44.77-16.5c-4.19 1.05-5.24 1.31-9.69 2.88l-.26-.26.52-4.45c-1.05-3.4-3.14-11.52-3.67-13.62l-.26-.26c-3.4.79-8.9 2.62-12.83 3.93l-.26.26c.79 2.62 3.14 9.95 4.19 13.88.79 2.36 1.83 2.88 2.88 3.14v.52c-3.67 1.05-7.07 2.62-10.21 3.93l-.26-.26c1.05-1.31 1.05-2.88.26-4.98-1.05-3.14-8.12-23.83-9.17-27.23-.52-1.83-1.57-3.14-2.62-3.14v-.52c3.14-1.05 6.02-2.09 10.74-3.4l.26.26-.26 4.71c1.31 3.93 2.36 7.59 3.14 9.69h.26c3.93-1.31 9.43-2.88 12.83-3.93l.26-.26-2.62-9.43c-.52-1.83-1.05-3.4-2.62-3.93v-.26c4.45-1.05 7.33-1.83 10.74-2.36l.26.26c-1.05 1.31-1.05 2.88-.52 4.45 1.57 6.28 4.71 20.43 6.28 26.45.54 2.62 1.85 3.41 2.63 3.93zm32.21-6.81l-.26.26c-4.71.52-14.14 2.36-22.52 4.19l-.26-.26.79-4.19c-1.57-7.86-3.4-18.59-4.98-26.19-.26-1.83-.79-2.88-2.62-3.67l.79-.52c9.17-1.57 20.16-2.36 24.88-2.62l.26.26c.52 2.36.79 3.14 1.57 5.5l-.26.26c-1.14-1.14-3.34-3.2-16.24-.79l-.26.26c.26 1.57 1.05 6.55 1.57 9.95l.26.26c9.52-1.68 4.76-.06 10.74-2.36h.26c0 1.57-.26 1.83-.26 5.24h-.26c-4.81-1.03-2.15-.9-10.21 0l-.26.26c.26 2.09 1.57 9.43 2.09 12.57l.26.26c1.15.38 14.21-.65 16.24-4.71h.26c-.53 2.38-1.05 4.21-1.58 6.04zm10.74-44.51c-4.45 2.36-8.12 2.88-11 2.88-.25.02-11.41 1.09-17.54-9.95-6.74-10.79-.98-25.2 5.5-31.69 8.8-8.12 23.35-10.1 28.54-17.02 8.03-10.33-13.04-22.31-29.59-5.76l-2.62-2.88 5.24-16.24c25.59-1.57 45.2-3.04 50.02 16.24.79 3.14 0 9.43-.26 12.05 0 2.62-1.83 18.85-2.09 23.04-.52 4.19-.79 18.33-.79 20.69.26 2.36.52 4.19 1.57 5.5 1.57 1.83 5.76 1.83 5.76 1.83l-.79 4.71c-11.82-1.07-10.28-.59-20.43-1.05-3.22-5.15-2.23-3.28-4.19-7.86 0 .01-4.19 3.94-7.33 5.51zm37.18 21.21c-6.35-10.58-19.82-7.16-21.73 5.5-2.63 17.08 14.3 19.79 20.69 10.21l.26.26c-.52 1.83-1.83 6.02-1.83 6.28l-.52.52c-10.3 6.87-28.5-2.5-25.66-18.59 1.94-10.87 14.44-18.93 28.8-9.95l.26.52c0 1.06-.27 3.41-.27 5.25zm5.77-87.73v-6.55c.69 0 19.65 3.28 27.76 7.33l-1.57 17.54s10.21-9.43 15.45-10.74c5.24-1.57 14.93 7.33 14.93 7.33l-11.26 11.26c-12.07-6.35-19.59-.08-20.69.79-5.29 38.72-8.6 42.17 4.45 46.09l-.52 4.71c-17.55-4.29-18.53-4.5-36.92-7.33l.79-4.71c7.25 0 7.48-5.32 7.59-6.81 0 0 4.98-53.16 4.98-55.25-.02-2.87-4.99-3.66-4.99-3.66zm10.99 114.44c-8.12-2.09-14.14-11-10.74-20.69 3.14-9.43 12.31-12.31 18.85-10.21 9.17 2.62 12.83 11.78 10.74 19.38-2.61 8.9-9.42 13.87-18.85 11.52zm42.16 9.69c-2.36-.52-7.07-2.36-8.64-2.88v-.26l1.57-1.83c.59-8.24.59-7.27.26-7.59-4.82-1.81-6.66-2.36-7.07-2.36-1.31 1.83-2.88 4.45-3.67 5.5l-.79 3.4v.26c-1.31-.26-3.93-1.31-6.02-1.57v-.26l2.62-1.83c3.4-4.71 9.95-14.14 13.88-20.16v-2.09l.52-.26c2.09.79 5.5 2.09 7.59 2.88.48.48.18-1.87-1.05 25.14-.24 1.81.02 2.6.8 3.91zm-4.71-89.82c11.25-18.27 30.76-16.19 34.04-3.4L539.7 198c2.34-6.25-2.82-9.9-4.45-11.26l1.83-3.67c12.22 10.37 16.38 13.97 22.52 20.43-25.91 73.07-30.76 80.81-24.62 84.32l-1.83 4.45c-6.37-3.35-8.9-4.42-17.81-8.64l2.09-6.81c-.26-.26-3.93 3.93-9.69 3.67-19.06-1.3-22.89-31.75-9.67-52.9zm29.33 79.34c0-5.71-6.34-7.89-7.86-5.24-1.31 2.09 1.05 4.98 2.88 8.38 1.57 2.62 2.62 6.28 1.05 9.43-2.64 6.34-12.4 5.31-15.45-.79 0-.7-.27.09 1.83-4.71l.79-.26c-.57 5.66 6.06 9.61 8.38 4.98 1.05-2.09-.52-5.5-2.09-8.38-1.57-2.62-3.67-6.28-1.83-9.69 2.72-5.06 11.25-4.47 14.66 2.36v.52l-2.36 3.4zm21.21 13.36c-1.96-3.27-.91-2.14-4.45-4.71h-.26c-2.36 4.19-5.76 10.47-8.64 16.24-1.31 2.36-1.05 3.4-.79 3.93l-.26.26-5.76-4.45.26-.26 2.09-1.31c3.14-5.76 6.55-12.05 9.17-17.02v-.26c-2.64-1.98-1.22-1.51-6.02-1.83v-.26l3.14-3.4h.26c3.67 2.36 9.95 6.81 12.31 8.9l.26.26-1.31 3.91zm27.23-44.26l-2.88-2.88c.79-2.36 1.83-4.98 2.09-7.59.75-9.74-11.52-11.84-11.52-4.98 0 4.98 7.86 19.38 7.86 27.76 0 10.21-5.76 15.71-13.88 16.5-8.38.79-20.16-10.47-20.16-10.47l4.98-14.4 2.88 2.09c-2.97 17.8 17.68 20.37 13.35 5.24-1.06-4.02-18.75-34.2 2.09-38.23 13.62-2.36 23.04 16.5 23.04 16.5l-7.85 10.46zm35.62-10.21c-11-30.38-60.49-127.53-191.95-129.62-53.42-1.05-94.27 15.45-132.76 37.97l85.63-9.17-91.39 20.69 25.14 19.64-3.93-16.5c7.5-1.71 39.15-8.45 66.77-8.9l-22.26 80.39c13.61-.7 18.97-8.98 19.64-22.78l4.98-1.05.26 26.71c-22.46 3.21-37.3 6.69-49.49 9.95l13.09-43.21-61.54-36.66 2.36 8.12 10.21 4.98c6.28 18.59 19.38 56.56 20.43 58.66 1.95 4.28 3.16 5.78 12.05 4.45l1.05 4.98c-16.08 4.86-23.66 7.61-39.02 14.4l-2.36-4.71c4.4-2.94 8.73-3.94 5.5-12.83-23.7-62.5-21.48-58.14-22.78-59.44l2.36-4.45 33.52 67.3c-3.84-11.87 1.68 1.69-32.99-78.82l-41.9 88.51 4.71-13.88-35.88-42.16 27.76 93.48-11.78 8.38C95 228.58 101.05 231.87 93.23 231.52c-5.5-.26-13.62 5.5-13.62 5.5L74.63 231c30.56-23.53 31.62-24.33 58.4-42.68l4.19 7.07s-5.76 4.19-7.86 7.07c-5.9 9.28 1.67 13.28 61.8 75.68l-18.85-58.92 39.8-10.21 25.66 30.64 4.45-12.31-4.98-24.62 13.09-3.4.52 3.14 3.67-10.47-94.27 29.33 11.26-4.98-13.62-42.42 17.28-9.17 30.11 36.14 28.54-13.09c-1.41-7.47-2.47-14.5-4.71-19.64l17.28 13.88 4.71-2.09-59.18-42.68 23.08 11.5c18.98-6.07 25.23-7.47 32.21-9.69l2.62 11c-12.55 12.55 1.43 16.82 6.55 19.38l-13.62-61.01 12.05 28.28c4.19-1.31 7.33-2.09 7.33-2.09l2.62 8.64s-3.14 1.05-6.28 2.09l8.9 20.95 33.78-65.73-20.69 61.01c42.42-24.09 81.44-36.66 131.98-35.88 67.04 1.05 167.33 40.85 199.8 139.83.78 2.1-.01 2.63-.79.27zM203.48 152.43s1.83-.52 4.19-1.31l9.43 7.59c-.4 0-3.44-.25-11.26 2.36l-2.36-8.64zm143.76 38.5c-1.57-.6-26.46-4.81-33.26 20.69l21.73 17.02 11.53-37.71zM318.43 67.07c-58.4 0-106.05 12.05-114.96 14.4v.79c8.38 2.09 14.4 4.19 21.21 11.78l1.57.26c6.55-1.83 48.97-13.88 110.24-13.88 180.16 0 301.67 116.79 301.67 223.37v9.95c0 1.31.79 2.62 1.05.52.52-2.09.79-8.64.79-19.64.26-83.79-96.63-227.55-321.57-227.55zm211.06 169.68c1.31-5.76 0-12.31-7.33-13.09-9.62-1.13-16.14 23.79-17.02 33.52-.79 5.5-1.31 14.93 6.02 14.93 4.68-.01 9.72-.91 18.33-35.36zm-61.53 42.95c-2.62-.79-9.43-.79-12.57 10.47-1.83 6.81.52 13.35 6.02 14.66 3.67 1.05 8.9.52 11.78-10.74 2.62-9.94-1.83-13.61-5.23-14.39zM491 300.65c1.83.52 3.14 1.05 5.76 1.83 0-1.83.52-8.38.79-12.05-1.05 1.31-5.5 8.12-6.55 9.95v.27z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wodu": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e088", + "label": "Wodu", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M178.414 339.706H141.1L112.166 223.475h-.478L83.228 339.706H45.2L0 168.946H37.548L64.574 285.177h.478L94.707 168.946h35.157l29.178 117.667h.479L187.5 168.946h36.831zM271.4 212.713c38.984 0 64.1 25.828 64.1 65.291 0 39.222-25.111 65.05-64.1 65.05-38.743 0-63.855-25.828-63.855-65.05C207.547 238.541 232.659 212.713 271.4 212.713zm0 104.753c23.2 0 30.133-19.852 30.133-39.462 0-19.852-6.934-39.7-30.133-39.7-27.7 0-29.894 19.85-29.894 39.7C241.508 297.614 248.443 317.466 271.4 317.466zM435.084 323.922h-.478c-7.893 13.392-21.765 19.132-37.548 19.132-37.31 0-55.485-32.045-55.485-66.246 0-33.243 18.415-64.095 54.767-64.095 14.589 0 28.938 6.218 36.831 18.416h.24V168.946h33.96v170.76H435.084zM405.428 238.3c-22.24 0-29.894 19.134-29.894 39.463 0 19.371 8.848 39.7 29.894 39.7 22.482 0 29.178-19.613 29.178-39.94C434.606 257.436 427.432 238.3 405.428 238.3zM592.96 339.706H560.673V322.487h-.718c-8.609 13.87-23.436 20.567-37.786 20.567-36.113 0-45.2-20.328-45.2-50.941V216.061h33.959V285.9c0 20.329 5.979 30.372 21.765 30.372 18.415 0 26.306-10.283 26.306-35.393V216.061H592.96zM602.453 302.876H640v36.83H602.453z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wolf-pack-battalion": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f514", + "label": "Wolf Pack Battalion", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M267.73 471.53l10.56 15.84 5.28-12.32 5.28 7V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05C421 189 447 196.21 456.43 239.73l-30.35 8.36c11.15 23 17 46.76 13.2 72.14L412 313.18l-6.16 33.43-18.47-7-8.8 33.39-19.35-7 26.39 21.11 8.8-28.15L419 364.2l7-35.63 26.39 14.52c.25-20 7-58.06-8.8-84.45l26.39 5.28c4-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 2-19.87 17.45-42.62 43.11-49.7-44 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.39 22.87-89.65 65.1-93.2 147.79l-58 38.71-3.52 93.25L369.78 220l7 7-17.59 3.52-44 38.71-15.84-5.28-28.1 49.25-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-44-38.71-17.58-3.51 7-7 107.33 59.82-3.52-93.25-58.06-38.71C185 65.1 135.77 22.87 95.3 0c-17.54 61.12-4.4 118.76 0 130.2 15-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9-31.65 1.72-61.15 33.44-61.59 58.51l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7 35.63 24.63-5.28 8.8 28.15L153.35 366 134 373l-8.8-33.43-18.47 7-6.16-33.43-27.27 7c-3.82-25.38 2-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.83l5.28-7 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95L331.06 366c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.22-.27 13.84-3.51 22.84zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7 8.24-7.94 15.55-16.32 22.87-24.68zm24.63 5.28c0-13.43-2.05-24.21-5.28-33.43a235 235 0 0 1-18.47 27.27zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-12 6.65-28.14 7-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 44-14.08-10.61-18.96-27.2-25.53-45.76-28.16zM165.68 376.52L181.52 366c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7-8.24-7.93-15.55-16.31-22.87-24.67zm-24.64 5.28c0-13.43 2-24.21 5.28-33.43a235 235 0 0 0 18.47 27.27zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 37-10.56-5-12-6.65-28.14-7-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-44-14.08 10.63-18.95 27.23-25.52 45.76-28.15z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "won-sign": { + "aliases": { + "names": [ + "krw", + "won" + ], + "unicodes": { + "composite": [ + "20a9" + ], + "secondary": [ + "10f159" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Won Sign", + "currency" + ] + }, + "unicode": "f159", + "label": "Won Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M62.4 53.9C56.8 37.1 38.6 28.1 21.9 33.6S-3.9 57.4 1.6 74.1L51.6 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H72.9l56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288h46L321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l50-149.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2L392.9 224H329L287 56.2C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L183 224h-64L62.4 53.9zm78 234.1H167l-11.4 45.6L140.4 288zM249 224l7-28.1 7 28.1H249zm96 64h26.6l-15.2 45.6L345 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wordpress": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f19a", + "label": "WordPress Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wordpress-simple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f411", + "label": "Wordpress Simple", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "worm": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dirt", + "garden", + "worm", + "wriggle" + ] + }, + "unicode": "e599", + "label": "Worm", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684768131, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 96c0-53 43-96 96-96h38.4C439.9 0 480 40.1 480 89.6V176v16V376c0 75.1-60.9 136-136 136s-136-60.9-136-136V296c0-22.1-17.9-40-40-40s-40 17.9-40 40V464c0 26.5-21.5 48-48 48s-48-21.5-48-48V296c0-75.1 60.9-136 136-136s136 60.9 136 136v80c0 22.1 17.9 40 40 40s40-17.9 40-40V192H352c-53 0-96-43-96-96zm144-8a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wpbeginner": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f297", + "label": "WPBeginner", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wpexplorer": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2de", + "label": "WPExplorer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wpforms": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f298", + "label": "WPForms", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wpressr": { + "aliases": { + "names": [ + "rendact" + ] + }, + "changes": [ + "5.4.2" + ], + "ligatures": [], + "search": { + "terms": [ + "rendact" + ] + }, + "unicode": "f3e4", + "label": "wpressr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm171.33 158.6c-15.18 34.51-30.37 69.02-45.63 103.5-2.44 5.51-6.89 8.24-12.97 8.24-23.02-.01-46.03.06-69.05-.05-5.12-.03-8.25 1.89-10.34 6.72-10.19 23.56-20.63 47-30.95 70.5-1.54 3.51-4.06 5.29-7.92 5.29-45.94-.01-91.87-.02-137.81 0-3.13 0-5.63-1.15-7.72-3.45-11.21-12.33-22.46-24.63-33.68-36.94-2.69-2.95-2.79-6.18-1.21-9.73 8.66-19.54 17.27-39.1 25.89-58.66 12.93-29.35 25.89-58.69 38.75-88.08 1.7-3.88 4.28-5.68 8.54-5.65 14.24.1 28.48.02 42.72.05 6.24.01 9.2 4.84 6.66 10.59-13.6 30.77-27.17 61.55-40.74 92.33-5.72 12.99-11.42 25.99-17.09 39-3.91 8.95 7.08 11.97 10.95 5.6.23-.37-1.42 4.18 30.01-67.69 1.36-3.1 3.41-4.4 6.77-4.39 15.21.08 30.43.02 45.64.04 5.56.01 7.91 3.64 5.66 8.75-8.33 18.96-16.71 37.9-24.98 56.89-4.98 11.43 8.08 12.49 11.28 5.33.04-.08 27.89-63.33 32.19-73.16 2.02-4.61 5.44-6.51 10.35-6.5 26.43.05 52.86 0 79.29.05 12.44.02 13.93-13.65 3.9-13.64-25.26.03-50.52.02-75.78.02-6.27 0-7.84-2.47-5.27-8.27 5.78-13.06 11.59-26.11 17.3-39.21 1.73-3.96 4.52-5.79 8.84-5.78 23.09.06 25.98.02 130.78.03 6.08-.01 8.03 2.79 5.62 8.27z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wrench": { + "aliases": { + "unicodes": { + "composite": [ + "1f527" + ], + "secondary": [ + "10f0ad" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "construction", + "fix", + "mechanic", + "plumbing", + "settings", + "spanner", + "tool", + "update", + "wrench" + ] + }, + "unicode": "f0ad", + "label": "Wrench", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767602, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 320c88.4 0 160-71.6 160-160c0-15.3-2.2-30.1-6.2-44.2c-3.1-10.8-16.4-13.2-24.3-5.3l-76.8 76.8c-3 3-7.1 4.7-11.3 4.7H336c-8.8 0-16-7.2-16-16V118.6c0-4.2 1.7-8.3 4.7-11.3l76.8-76.8c7.9-7.9 5.4-21.2-5.3-24.3C382.1 2.2 367.3 0 352 0C263.6 0 192 71.6 192 160c0 19.1 3.4 37.5 9.5 54.5L19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L297.5 310.5c17 6.2 35.4 9.5 54.5 9.5zM80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "x": { + "aliases": { + "unicodes": { + "composite": [ + "78" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter X", + "Latin Small Letter X", + "letter" + ] + }, + "unicode": "58", + "label": "X", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767244, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "x-ray": { + "aliases": { + "unicodes": { + "secondary": [ + "10f497" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "health", + "medical", + "radiological images", + "radiology", + "skeleton" + ] + }, + "unicode": "f497", + "label": "X Ray", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766751, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32V416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V96C14.3 96 0 81.7 0 64zM256 96c-8.8 0-16 7.2-16 16v32H160c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48H128c-8.8 0-16 7.2-16 16s7.2 16 16 16H240v70.6L189.1 307c-5.2-2-10.6-3-16.2-3h-2.1c-23.6 0-42.8 19.2-42.8 42.8c0 9.6 3.2 18.9 9.1 26.4l18.2 23.2c9.7 12.4 24.6 19.6 40.3 19.6H316.4c15.7 0 30.6-7.2 40.3-19.6l18.2-23.2c5.9-7.5 9.1-16.8 9.1-26.4c0-23.6-19.2-42.8-42.8-42.8H339c-5.5 0-11 1-16.2 3L272 326.6V256H384c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V176h80c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V112c0-8.8-7.2-16-16-16zM208 352a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm80 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "x-twitter": { + "changes": [ + "6.4.2" + ], + "ligatures": [], + "search": { + "terms": [ + " elon", + " twitter", + " x" + ] + }, + "unicode": "e61b", + "label": "X Twitter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1690904784, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "xbox": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f412", + "label": "Xbox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "xing": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f168", + "label": "Xing", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "xmark": { + "aliases": { + "names": [ + "close", + "multiply", + "remove", + "times" + ], + "unicodes": { + "composite": [ + "1f5d9", + "2715", + "2716", + "274c", + "d7" + ], + "secondary": [ + "10f00d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cancellation X", + "Multiplication Sign", + "Multiplication X", + "cancel", + "close", + "cross", + "cross mark", + "error", + "exit", + "incorrect", + "mark", + "multiplication", + "multiply", + "notice", + "notification", + "notify", + "problem", + "sign", + "wrong", + "x", + "×" + ] + }, + "unicode": "f00d", + "label": "Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "xmarks-lines": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barricade", + "barrier", + "fence", + "poison", + "roadblock" + ] + }, + "unicode": "e59a", + "label": "Xmarks Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767443, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM7 167c-9.4 9.4-9.4 24.6 0 33.9l55 55L7 311c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55L41 167c-9.4-9.4-24.6-9.4-33.9 0zM265 167c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55zM455 167c-9.4 9.4-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55c-9.4-9.4-24.6-9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "y": { + "aliases": { + "unicodes": { + "composite": [ + "79" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Y", + "Latin Small Letter Y", + "letter", + "yay", + "yes" + ] + }, + "unicode": "59", + "label": "Y", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767245, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M58 45.4C47.8 31 27.8 27.7 13.4 38S-4.3 68.2 6 82.6L160 298.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V298.3L378 82.6c10.3-14.4 6.9-34.4-7.4-44.6S336.2 31 326 45.4L192 232.9 58 45.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "y-combinator": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23b", + "label": "Y Combinator", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yahoo": { + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f19e", + "label": "Yahoo Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M223.69,141.06,167,284.23,111,141.06H14.93L120.76,390.19,82.19,480h94.17L317.27,141.06Zm105.4,135.79a58.22,58.22,0,1,0,58.22,58.22A58.22,58.22,0,0,0,329.09,276.85ZM394.65,32l-93,223.47H406.44L499.07,32Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yammer": { + "changes": [ + "5.8.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f840", + "label": "Yammer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.676,159.486a12.779,12.779,0,0,0-6.4-8.282,13.954,13.954,0,0,0-10.078-1.125L457.8,156.7l-.043-.2-22.3,5.785-1.243.333-.608-2.17A369.037,369.037,0,0,0,347.538,4.289a14.1,14.1,0,0,0-19.784-.463l-102.9,102.747H24.947A24.9,24.9,0,0,0,0,131.417V380.38a24.963,24.963,0,0,0,24.918,24.9H224.986L328.072,508a13.667,13.667,0,0,0,19.327,0c.126-.126.249-.255.37-.385a368.025,368.025,0,0,0,69.577-107.374,403.45,403.45,0,0,0,17.3-50.8v-.028l20.406,5.336.029-.073L483.345,362a20.253,20.253,0,0,0,2.619.5,13.359,13.359,0,0,0,4.139-.072,13.5,13.5,0,0,0,10.515-9.924,415.855,415.855,0,0,0,.058-193.013ZM337.125,24.65l.013.014h-.013Zm-110.2,165.161L174.311,281.1a11.338,11.338,0,0,0-1.489,5.655v46.189a22.04,22.04,0,0,1-22.041,22h-3.4A22.068,22.068,0,0,1,125.3,332.962V287.294a11.532,11.532,0,0,0-1.388-5.51l-51.6-92.2a21.988,21.988,0,0,1,19.264-32.726h3.268a22.059,22.059,0,0,1,19.611,11.916l36.357,70.281,37.515-70.512a22.066,22.066,0,0,1,38.556-.695,21.7,21.7,0,0,1,0,21.967ZM337.145,24.673a348.147,348.147,0,0,1,75.8,141.335l.564,1.952-114.134,29.6V131.417a25.006,25.006,0,0,0-24.947-24.9H255.067Zm60.5,367.305v-.043l-.014.014a347.19,347.19,0,0,1-60.177,95.227l-82.2-81.893h19.177a24.978,24.978,0,0,0,24.947-24.9v-66.2l114.6,29.862A385.191,385.191,0,0,1,397.648,391.978Zm84-52.45.015.014-50.618-13.131L299.379,292.1V219.572l119.746-30.99,4.468-1.157,39.54-10.253,18.511-4.816A393,393,0,0,1,481.644,339.528Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yandex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f413", + "label": "Yandex", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yandex-international": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f414", + "label": "Yandex International", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yarn": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7e3", + "label": "Yarn", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4.1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3.8-10.8-5.7.8-19.2.8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3.8 1.4 13.7.8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2.9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4.2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yelp": { + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1e9", + "label": "Yelp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M42.9 240.32l99.62 48.61c19.2 9.4 16.2 37.51-4.5 42.71L30.5 358.45a22.79 22.79 0 0 1-28.21-19.6 197.16 197.16 0 0 1 9-85.32 22.8 22.8 0 0 1 31.61-13.21zm44 239.25a199.45 199.45 0 0 0 79.42 32.11A22.78 22.78 0 0 0 192.94 490l3.9-110.82c.7-21.3-25.5-31.91-39.81-16.1l-74.21 82.4a22.82 22.82 0 0 0 4.09 34.09zm145.34-109.92l58.81 94a22.93 22.93 0 0 0 34 5.5 198.36 198.36 0 0 0 52.71-67.61A23 23 0 0 0 364.17 370l-105.42-34.26c-20.31-6.5-37.81 15.8-26.51 33.91zm148.33-132.23a197.44 197.44 0 0 0-50.41-69.31 22.85 22.85 0 0 0-34 4.4l-62 91.92c-11.9 17.7 4.7 40.61 25.2 34.71L366 268.63a23 23 0 0 0 14.61-31.21zM62.11 30.18a22.86 22.86 0 0 0-9.9 32l104.12 180.44c11.7 20.2 42.61 11.9 42.61-11.4V22.88a22.67 22.67 0 0 0-24.5-22.8 320.37 320.37 0 0 0-112.33 30.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yen-sign": { + "aliases": { + "names": [ + "cny", + "jpy", + "rmb", + "yen" + ], + "unicodes": { + "composite": [ + "a5" + ], + "secondary": [ + "10f157" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Yen Sign", + "currency" + ] + }, + "unicode": "f157", + "label": "Yen Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684766475, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M58.6 46.2C48.8 31.5 29 27.6 14.3 37.4S-4.4 67 5.4 81.7L100.2 224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V288h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H219.8L314.6 81.7c9.8-14.7 5.8-34.6-8.9-44.4s-34.6-5.8-44.4 8.9L160 198.3 58.6 46.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "yin-yang": { + "aliases": { + "unicodes": { + "composite": [ + "262f" + ], + "secondary": [ + "10f6ad" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "daoism", + "opposites", + "religion", + "tao", + "taoism", + "taoist", + "yang", + "yin", + "yin yang" + ] + }, + "unicode": "f6ad", + "label": "Yin Yang", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767601, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64c53 0 96 43 96 96s-43 96-96 96s-96 43-96 96s43 96 96 96C150 448 64 362 64 256S150 64 256 64zm0 448A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm32-352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "yoast": { + "changes": [ + "4.6.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b1", + "label": "Yoast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "youtube": { + "aliases": { + "unicodes": { + "composite": [ + "f16a" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "film", + "video", + "youtube-play", + "youtube-square" + ] + }, + "unicode": "f167", + "label": "YouTube", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "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" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "z": { + "aliases": { + "unicodes": { + "composite": [ + "7a" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0", + "6.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Z", + "Latin Small Letter Z", + "letter" + ] + }, + "unicode": "5a", + "label": "Z", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1684767246, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H352c12.4 0 23.7 7.2 29 18.4s3.6 24.5-4.4 34.1L100.3 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.4 0-23.7-7.2-29-18.4s-3.6-24.5 4.4-34.1L283.7 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "zhihu": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f63f", + "label": "Zhihu", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M170.54 148.13v217.54l23.43.01 7.71 26.37 42.01-26.37h49.53V148.13H170.54zm97.75 193.93h-27.94l-27.9 17.51-5.08-17.47-11.9-.04V171.75h72.82v170.31zm-118.46-94.39H97.5c1.74-27.1 2.2-51.59 2.2-73.46h51.16s1.97-22.56-8.58-22.31h-88.5c3.49-13.12 7.87-26.66 13.12-40.67 0 0-24.07 0-32.27 21.57-3.39 8.9-13.21 43.14-30.7 78.12 5.89-.64 25.37-1.18 36.84-22.21 2.11-5.89 2.51-6.66 5.14-14.53h28.87c0 10.5-1.2 66.88-1.68 73.44H20.83c-11.74 0-15.56 23.62-15.56 23.62h65.58C66.45 321.1 42.83 363.12 0 396.34c20.49 5.85 40.91-.93 51-9.9 0 0 22.98-20.9 35.59-69.25l53.96 64.94s7.91-26.89-1.24-39.99c-7.58-8.92-28.06-33.06-36.79-41.81L87.9 311.95c4.36-13.98 6.99-27.55 7.87-40.67h61.65s-.09-23.62-7.59-23.62v.01zm412.02-1.6c20.83-25.64 44.98-58.57 44.98-58.57s-18.65-14.8-27.38-4.06c-6 8.15-36.83 48.2-36.83 48.2l19.23 14.43zm-150.09-59.09c-9.01-8.25-25.91 2.13-25.91 2.13s39.52 55.04 41.12 57.45l19.46-13.73s-25.67-37.61-34.66-45.86h-.01zM640 258.35c-19.78 0-130.91.93-131.06.93v-101c4.81 0 12.42-.4 22.85-1.2 40.88-2.41 70.13-4 87.77-4.81 0 0 12.22-27.19-.59-33.44-3.07-1.18-23.17 4.58-23.17 4.58s-165.22 16.49-232.36 18.05c1.6 8.82 7.62 17.08 15.78 19.55 13.31 3.48 22.69 1.7 49.15.89 24.83-1.6 43.68-2.43 56.51-2.43v99.81H351.41s2.82 22.31 25.51 22.85h107.94v70.92c0 13.97-11.19 21.99-24.48 21.12-14.08.11-26.08-1.15-41.69-1.81 1.99 3.97 6.33 14.39 19.31 21.84 9.88 4.81 16.17 6.57 26.02 6.57 29.56 0 45.67-17.28 44.89-45.31v-73.32h122.36c9.68 0 8.7-23.78 8.7-23.78l.03-.01z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + } +} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/sprites/brands.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/sprites/brands.svg new file mode 100644 index 00000000..c195d694 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/sprites/brands.svg @@ -0,0 +1,1424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/sprites/regular.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/sprites/regular.svg new file mode 100644 index 00000000..a0e119a0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/sprites/regular.svg @@ -0,0 +1,497 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/sprites/solid.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/sprites/solid.svg new file mode 100644 index 00000000..788d054d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/sprites/solid.svg @@ -0,0 +1,4178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/42-group.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/42-group.svg new file mode 100644 index 00000000..c6e15e1d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/42-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/500px.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/500px.svg new file mode 100644 index 00000000..6220d103 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/500px.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/accessible-icon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/accessible-icon.svg new file mode 100644 index 00000000..178207ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/accessible-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/accusoft.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/accusoft.svg new file mode 100644 index 00000000..3cac2f43 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/accusoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/adn.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/adn.svg new file mode 100644 index 00000000..701952e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/adn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/adversal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/adversal.svg new file mode 100644 index 00000000..7c91df8f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/adversal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/affiliatetheme.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/affiliatetheme.svg new file mode 100644 index 00000000..e4874d79 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/affiliatetheme.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/airbnb.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/airbnb.svg new file mode 100644 index 00000000..8c837cc6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/airbnb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/algolia.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/algolia.svg new file mode 100644 index 00000000..caf5b495 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/algolia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/alipay.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/alipay.svg new file mode 100644 index 00000000..d9fa649b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/alipay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/amazon-pay.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/amazon-pay.svg new file mode 100644 index 00000000..f8126161 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/amazon-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/amazon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/amazon.svg new file mode 100644 index 00000000..d5ff0eee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/amazon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/amilia.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/amilia.svg new file mode 100644 index 00000000..46d4278d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/amilia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/android.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/android.svg new file mode 100644 index 00000000..9f94d700 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/angellist.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/angellist.svg new file mode 100644 index 00000000..2eae0769 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/angellist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/angrycreative.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/angrycreative.svg new file mode 100644 index 00000000..c4283870 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/angrycreative.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/angular.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/angular.svg new file mode 100644 index 00000000..862602bb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/angular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/app-store-ios.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/app-store-ios.svg new file mode 100644 index 00000000..29c0759f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/app-store-ios.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/app-store.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/app-store.svg new file mode 100644 index 00000000..6978a0ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/app-store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/apper.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/apper.svg new file mode 100644 index 00000000..885ea966 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/apper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/apple-pay.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/apple-pay.svg new file mode 100644 index 00000000..9cac95bb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/apple-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/apple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/apple.svg new file mode 100644 index 00000000..97d336cd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/artstation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/artstation.svg new file mode 100644 index 00000000..3eeb23f5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/artstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/asymmetrik.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/asymmetrik.svg new file mode 100644 index 00000000..d3dc1da5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/asymmetrik.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/atlassian.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/atlassian.svg new file mode 100644 index 00000000..a333ad35 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/atlassian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/audible.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/audible.svg new file mode 100644 index 00000000..a31cb304 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/audible.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg new file mode 100644 index 00000000..5a51a85d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/avianex.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/avianex.svg new file mode 100644 index 00000000..12758d8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/avianex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/aviato.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/aviato.svg new file mode 100644 index 00000000..1813b3d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/aviato.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/aws.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/aws.svg new file mode 100644 index 00000000..67e4e134 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/aws.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg new file mode 100644 index 00000000..74f24955 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/battle-net.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/battle-net.svg new file mode 100644 index 00000000..af35885d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/battle-net.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/behance.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/behance.svg new file mode 100644 index 00000000..d77b1204 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/behance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bilibili.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bilibili.svg new file mode 100644 index 00000000..32b9e323 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bilibili.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bimobject.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bimobject.svg new file mode 100644 index 00000000..3ec7ea13 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bimobject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg new file mode 100644 index 00000000..8b2d2cbc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bitcoin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bitcoin.svg new file mode 100644 index 00000000..bbbd8bb3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bitcoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bity.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bity.svg new file mode 100644 index 00000000..3964687b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg new file mode 100644 index 00000000..87d12ed9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/blackberry.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/blackberry.svg new file mode 100644 index 00000000..ffebe721 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/blackberry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/blogger-b.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/blogger-b.svg new file mode 100644 index 00000000..e0606c78 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/blogger-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/blogger.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/blogger.svg new file mode 100644 index 00000000..c5e22813 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/blogger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bluetooth-b.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bluetooth-b.svg new file mode 100644 index 00000000..d246c80e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bluetooth-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bluetooth.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bluetooth.svg new file mode 100644 index 00000000..f17052c8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bootstrap.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bootstrap.svg new file mode 100644 index 00000000..99b5babb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bootstrap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bots.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bots.svg new file mode 100644 index 00000000..b2dc861b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/bots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/btc.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/btc.svg new file mode 100644 index 00000000..2221526f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/btc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buffer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buffer.svg new file mode 100644 index 00000000..be52cfbc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buffer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buromobelexperte.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buromobelexperte.svg new file mode 100644 index 00000000..48ceb3ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buromobelexperte.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buy-n-large.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buy-n-large.svg new file mode 100644 index 00000000..709d2d3b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buy-n-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg new file mode 100644 index 00000000..fde7fc78 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/canadian-maple-leaf.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/canadian-maple-leaf.svg new file mode 100644 index 00000000..7dfdfa8f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/canadian-maple-leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-amazon-pay.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-amazon-pay.svg new file mode 100644 index 00000000..105c5393 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-amazon-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-amex.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-amex.svg new file mode 100644 index 00000000..40f0335d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-amex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-apple-pay.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-apple-pay.svg new file mode 100644 index 00000000..c31eef85 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-apple-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-diners-club.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-diners-club.svg new file mode 100644 index 00000000..627ac640 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-diners-club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-discover.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-discover.svg new file mode 100644 index 00000000..5267ff74 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-discover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-jcb.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-jcb.svg new file mode 100644 index 00000000..768a0d3e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-jcb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-mastercard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-mastercard.svg new file mode 100644 index 00000000..954319e9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-mastercard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-paypal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-paypal.svg new file mode 100644 index 00000000..9d53fe26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-stripe.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-stripe.svg new file mode 100644 index 00000000..9ec57b94 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-stripe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-visa.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-visa.svg new file mode 100644 index 00000000..5b3055cc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cc-visa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/centercode.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/centercode.svg new file mode 100644 index 00000000..3e581924 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/centercode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/centos.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/centos.svg new file mode 100644 index 00000000..04d34d53 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/centos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/chrome.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/chrome.svg new file mode 100644 index 00000000..da959c6a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/chromecast.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/chromecast.svg new file mode 100644 index 00000000..ba83b876 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/chromecast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudflare.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudflare.svg new file mode 100644 index 00000000..270284ec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudflare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudscale.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudscale.svg new file mode 100644 index 00000000..3e6751ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudscale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg new file mode 100644 index 00000000..349ca525 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudversify.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudversify.svg new file mode 100644 index 00000000..a13158e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cloudversify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cmplid.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cmplid.svg new file mode 100644 index 00000000..2627c3d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cmplid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/codepen.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/codepen.svg new file mode 100644 index 00000000..d1c8d430 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/codiepie.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/codiepie.svg new file mode 100644 index 00000000..91489db6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/codiepie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/confluence.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/confluence.svg new file mode 100644 index 00000000..9bf26ba9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/confluence.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/connectdevelop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/connectdevelop.svg new file mode 100644 index 00000000..caaa0533 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/connectdevelop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/contao.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/contao.svg new file mode 100644 index 00000000..62bf1336 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/contao.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cotton-bureau.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cotton-bureau.svg new file mode 100644 index 00000000..3042967b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cotton-bureau.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cpanel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cpanel.svg new file mode 100644 index 00000000..4050d522 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cpanel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-by.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-by.svg new file mode 100644 index 00000000..645faee6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-by.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg new file mode 100644 index 00000000..fed656e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-eu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg new file mode 100644 index 00000000..176f4916 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc-jp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc.svg new file mode 100644 index 00000000..07546620 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nd.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nd.svg new file mode 100644 index 00000000..d4822b7b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-nd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg new file mode 100644 index 00000000..cd872dfb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd.svg new file mode 100644 index 00000000..d457ff40 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-pd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-remix.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-remix.svg new file mode 100644 index 00000000..6e2ee2b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-remix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sa.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sa.svg new file mode 100644 index 00000000..4840ea28 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg new file mode 100644 index 00000000..ce60b8e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling.svg new file mode 100644 index 00000000..9560a016 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-sampling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-share.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-share.svg new file mode 100644 index 00000000..44ea7a24 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-zero.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-zero.svg new file mode 100644 index 00000000..c86225f0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons-zero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons.svg new file mode 100644 index 00000000..08ac4357 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/creative-commons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/critical-role.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/critical-role.svg new file mode 100644 index 00000000..31689733 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/critical-role.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg new file mode 100644 index 00000000..2e4819ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/css3-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/css3.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/css3.svg new file mode 100644 index 00000000..e4aef2a9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/css3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cuttlefish.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cuttlefish.svg new file mode 100644 index 00000000..1f8c0225 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/cuttlefish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/d-and-d-beyond.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/d-and-d-beyond.svg new file mode 100644 index 00000000..4e18f299 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/d-and-d-beyond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/d-and-d.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/d-and-d.svg new file mode 100644 index 00000000..b7125d77 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/d-and-d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dailymotion.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dailymotion.svg new file mode 100644 index 00000000..7bd76aa8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dailymotion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dashcube.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dashcube.svg new file mode 100644 index 00000000..e0e8a71e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dashcube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/debian.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/debian.svg new file mode 100644 index 00000000..ec6c4395 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/debian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deezer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deezer.svg new file mode 100644 index 00000000..7bee4f8c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deezer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/delicious.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/delicious.svg new file mode 100644 index 00000000..8abe5f71 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/delicious.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deploydog.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deploydog.svg new file mode 100644 index 00000000..45aae456 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deploydog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deskpro.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deskpro.svg new file mode 100644 index 00000000..eef2197d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deskpro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dev.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dev.svg new file mode 100644 index 00000000..7cdfe68f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dev.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg new file mode 100644 index 00000000..2b1cc31f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dhl.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dhl.svg new file mode 100644 index 00000000..371c9a34 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dhl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/diaspora.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/diaspora.svg new file mode 100644 index 00000000..ad4a7d50 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/diaspora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/digg.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/digg.svg new file mode 100644 index 00000000..7645ed51 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/digg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/digital-ocean.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/digital-ocean.svg new file mode 100644 index 00000000..623d5628 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/digital-ocean.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/discord.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/discord.svg new file mode 100644 index 00000000..076e0b17 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/discourse.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/discourse.svg new file mode 100644 index 00000000..bd0ff7bb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/discourse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dochub.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dochub.svg new file mode 100644 index 00000000..2e8b4506 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dochub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/docker.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/docker.svg new file mode 100644 index 00000000..ab176ed1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/docker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/draft2digital.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/draft2digital.svg new file mode 100644 index 00000000..33042e7e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/draft2digital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dribbble.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dribbble.svg new file mode 100644 index 00000000..c2a0361b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dribbble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg new file mode 100644 index 00000000..7bccea61 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/drupal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/drupal.svg new file mode 100644 index 00000000..423a23dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/drupal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg new file mode 100644 index 00000000..57455b0f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/earlybirds.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/earlybirds.svg new file mode 100644 index 00000000..ddd60b6f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/earlybirds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ebay.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ebay.svg new file mode 100644 index 00000000..f517fb56 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ebay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/edge-legacy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/edge-legacy.svg new file mode 100644 index 00000000..8c11943e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/edge-legacy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/edge.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/edge.svg new file mode 100644 index 00000000..8544b9cd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/edge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/elementor.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/elementor.svg new file mode 100644 index 00000000..9dfb5e25 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/elementor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ello.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ello.svg new file mode 100644 index 00000000..ad55e5ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ello.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ember.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ember.svg new file mode 100644 index 00000000..184b06fc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ember.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/empire.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/empire.svg new file mode 100644 index 00000000..b08cc66a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/empire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/envira.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/envira.svg new file mode 100644 index 00000000..0f7c6183 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/envira.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/erlang.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/erlang.svg new file mode 100644 index 00000000..7e770e1a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/erlang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg new file mode 100644 index 00000000..31a91905 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/etsy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/etsy.svg new file mode 100644 index 00000000..5d475f64 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/etsy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/evernote.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/evernote.svg new file mode 100644 index 00000000..28914fa5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/evernote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/expeditedssl.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/expeditedssl.svg new file mode 100644 index 00000000..02e0cf8e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/expeditedssl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg new file mode 100644 index 00000000..5bd065a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook-messenger.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook-messenger.svg new file mode 100644 index 00000000..c79bda12 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook.svg new file mode 100644 index 00000000..b61417fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fantasy-flight-games.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fantasy-flight-games.svg new file mode 100644 index 00000000..c69f2e62 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fantasy-flight-games.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fedex.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fedex.svg new file mode 100644 index 00000000..92b52ffd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fedex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fedora.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fedora.svg new file mode 100644 index 00000000..485362f8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fedora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/figma.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/figma.svg new file mode 100644 index 00000000..97d96fd6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/figma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/firefox-browser.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/firefox-browser.svg new file mode 100644 index 00000000..a51a9901 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/firefox-browser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/firefox.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/firefox.svg new file mode 100644 index 00000000..848af952 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/firefox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/first-order-alt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/first-order-alt.svg new file mode 100644 index 00000000..ce6e8fc9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/first-order-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/first-order.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/first-order.svg new file mode 100644 index 00000000..83d1a302 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/first-order.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg new file mode 100644 index 00000000..8d995cfc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/flickr.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/flickr.svg new file mode 100644 index 00000000..605117b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/flickr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg new file mode 100644 index 00000000..6b6405da --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fly.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fly.svg new file mode 100644 index 00000000..31a30196 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/font-awesome.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/font-awesome.svg new file mode 100644 index 00000000..70fc5443 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/font-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fonticons-fi.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fonticons-fi.svg new file mode 100644 index 00000000..369bdafb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fonticons-fi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fonticons.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fonticons.svg new file mode 100644 index 00000000..7406ba67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fonticons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fort-awesome-alt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fort-awesome-alt.svg new file mode 100644 index 00000000..898186fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fort-awesome-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fort-awesome.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fort-awesome.svg new file mode 100644 index 00000000..bb71f0cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fort-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/forumbee.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/forumbee.svg new file mode 100644 index 00000000..31fefe6f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/forumbee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/foursquare.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/foursquare.svg new file mode 100644 index 00000000..b6cd79ae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/foursquare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/free-code-camp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/free-code-camp.svg new file mode 100644 index 00000000..96bc1c1d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/free-code-camp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/freebsd.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/freebsd.svg new file mode 100644 index 00000000..de4e6d60 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/freebsd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fulcrum.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fulcrum.svg new file mode 100644 index 00000000..7d1aaa2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/fulcrum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/galactic-republic.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/galactic-republic.svg new file mode 100644 index 00000000..800db896 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/galactic-republic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/galactic-senate.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/galactic-senate.svg new file mode 100644 index 00000000..4db99783 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/galactic-senate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/get-pocket.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/get-pocket.svg new file mode 100644 index 00000000..c9c6499b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/get-pocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gg-circle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gg-circle.svg new file mode 100644 index 00000000..fe117b49 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gg-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gg.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gg.svg new file mode 100644 index 00000000..2484a315 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/git-alt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/git-alt.svg new file mode 100644 index 00000000..c29884a0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/git-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/git.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/git.svg new file mode 100644 index 00000000..feab88ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/git.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/github-alt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/github-alt.svg new file mode 100644 index 00000000..eb713ea2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/github-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/github.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/github.svg new file mode 100644 index 00000000..69a97a26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gitkraken.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gitkraken.svg new file mode 100644 index 00000000..9a67c9cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gitkraken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gitlab.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gitlab.svg new file mode 100644 index 00000000..6247bc9b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gitter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gitter.svg new file mode 100644 index 00000000..a0950ebc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/glide-g.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/glide-g.svg new file mode 100644 index 00000000..cbf943f0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/glide-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/glide.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/glide.svg new file mode 100644 index 00000000..c1550e03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/glide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gofore.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gofore.svg new file mode 100644 index 00000000..7c6b4422 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gofore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/golang.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/golang.svg new file mode 100644 index 00000000..518fbeb8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/golang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/goodreads-g.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/goodreads-g.svg new file mode 100644 index 00000000..f6e1520e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/goodreads-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/goodreads.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/goodreads.svg new file mode 100644 index 00000000..2dbc5f59 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/goodreads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg new file mode 100644 index 00000000..c947a080 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-pay.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-pay.svg new file mode 100644 index 00000000..cec27b0f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-pay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-play.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-play.svg new file mode 100644 index 00000000..e1c1969c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-plus-g.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-plus-g.svg new file mode 100644 index 00000000..689a0520 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-plus-g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-plus.svg new file mode 100644 index 00000000..3c6d65c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-wallet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-wallet.svg new file mode 100644 index 00000000..3e64d1b1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google-wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google.svg new file mode 100644 index 00000000..397e477e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gratipay.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gratipay.svg new file mode 100644 index 00000000..46577f15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gratipay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/grav.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/grav.svg new file mode 100644 index 00000000..092c02ad --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/grav.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gripfire.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gripfire.svg new file mode 100644 index 00000000..582b8570 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gripfire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/grunt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/grunt.svg new file mode 100644 index 00000000..b0ea0cc5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/grunt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/guilded.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/guilded.svg new file mode 100644 index 00000000..a9ebd55e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/guilded.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gulp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gulp.svg new file mode 100644 index 00000000..329d12b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/gulp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg new file mode 100644 index 00000000..c1a0b761 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hackerrank.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hackerrank.svg new file mode 100644 index 00000000..97bb061d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hackerrank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hashnode.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hashnode.svg new file mode 100644 index 00000000..aa97efe0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hashnode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hips.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hips.svg new file mode 100644 index 00000000..978600cc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hips.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hire-a-helper.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hire-a-helper.svg new file mode 100644 index 00000000..8abb42b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hire-a-helper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hive.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hive.svg new file mode 100644 index 00000000..06c036c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hooli.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hooli.svg new file mode 100644 index 00000000..e43364bc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hooli.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hornbill.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hornbill.svg new file mode 100644 index 00000000..10ea0c26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hornbill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg new file mode 100644 index 00000000..2d990b71 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/houzz.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/houzz.svg new file mode 100644 index 00000000..f3f8f702 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/houzz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/html5.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/html5.svg new file mode 100644 index 00000000..107c9020 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hubspot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hubspot.svg new file mode 100644 index 00000000..ac3e1944 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/hubspot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ideal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ideal.svg new file mode 100644 index 00000000..433ef935 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ideal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/imdb.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/imdb.svg new file mode 100644 index 00000000..f37c6134 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/imdb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/instagram.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/instagram.svg new file mode 100644 index 00000000..b7bfa22d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/instalod.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/instalod.svg new file mode 100644 index 00000000..1f999153 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/instalod.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/intercom.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/intercom.svg new file mode 100644 index 00000000..4dcb794d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/intercom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/internet-explorer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/internet-explorer.svg new file mode 100644 index 00000000..73f5a778 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/internet-explorer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/invision.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/invision.svg new file mode 100644 index 00000000..995dab33 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/invision.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ioxhost.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ioxhost.svg new file mode 100644 index 00000000..d963b52c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ioxhost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/itch-io.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/itch-io.svg new file mode 100644 index 00000000..8594dc0b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/itch-io.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/itunes-note.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/itunes-note.svg new file mode 100644 index 00000000..400d3277 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/itunes-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/itunes.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/itunes.svg new file mode 100644 index 00000000..b9e80de0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/itunes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/java.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/java.svg new file mode 100644 index 00000000..20d02f12 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/java.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jedi-order.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jedi-order.svg new file mode 100644 index 00000000..740d0cc7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jedi-order.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jenkins.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jenkins.svg new file mode 100644 index 00000000..83d5f002 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jenkins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jira.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jira.svg new file mode 100644 index 00000000..5e82b8ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jira.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/joget.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/joget.svg new file mode 100644 index 00000000..8b031ef8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/joget.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/joomla.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/joomla.svg new file mode 100644 index 00000000..b9364819 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/joomla.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/js.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/js.svg new file mode 100644 index 00000000..9c2aed53 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jsfiddle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jsfiddle.svg new file mode 100644 index 00000000..3b7fd5e2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/jsfiddle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg new file mode 100644 index 00000000..35b7c51e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/keybase.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/keybase.svg new file mode 100644 index 00000000..192632d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/keybase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/keycdn.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/keycdn.svg new file mode 100644 index 00000000..f335c67a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/keycdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/kickstarter-k.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/kickstarter-k.svg new file mode 100644 index 00000000..ae5f0b7a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/kickstarter-k.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/kickstarter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/kickstarter.svg new file mode 100644 index 00000000..5a3b6d70 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/kickstarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/korvue.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/korvue.svg new file mode 100644 index 00000000..f8aa8b60 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/korvue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/laravel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/laravel.svg new file mode 100644 index 00000000..e31d19c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/laravel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/lastfm.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/lastfm.svg new file mode 100644 index 00000000..e6fd9d24 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/lastfm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/leanpub.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/leanpub.svg new file mode 100644 index 00000000..9a88bb80 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/leanpub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/less.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/less.svg new file mode 100644 index 00000000..f7d2c878 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/less.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/line.svg new file mode 100644 index 00000000..c3d886bd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linkedin-in.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linkedin-in.svg new file mode 100644 index 00000000..4ebd648b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linkedin-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linkedin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linkedin.svg new file mode 100644 index 00000000..0a057ab4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linode.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linode.svg new file mode 100644 index 00000000..adcb05c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linux.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linux.svg new file mode 100644 index 00000000..ad1750f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/linux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/lyft.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/lyft.svg new file mode 100644 index 00000000..f9c6f296 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/lyft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/magento.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/magento.svg new file mode 100644 index 00000000..e00f0102 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/magento.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mailchimp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mailchimp.svg new file mode 100644 index 00000000..fc907375 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mailchimp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mandalorian.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mandalorian.svg new file mode 100644 index 00000000..3910e8c8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mandalorian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/markdown.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/markdown.svg new file mode 100644 index 00000000..e2f8edb8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/markdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mastodon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mastodon.svg new file mode 100644 index 00000000..a3b7141b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mastodon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg new file mode 100644 index 00000000..526da8de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mdb.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mdb.svg new file mode 100644 index 00000000..093d6e00 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mdb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/medapps.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/medapps.svg new file mode 100644 index 00000000..e2b1976f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/medapps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/medium.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/medium.svg new file mode 100644 index 00000000..707ae745 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/medrt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/medrt.svg new file mode 100644 index 00000000..4ade0828 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/medrt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/meetup.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/meetup.svg new file mode 100644 index 00000000..e70c6e91 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/meetup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/megaport.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/megaport.svg new file mode 100644 index 00000000..4ca47b6e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/megaport.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mendeley.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mendeley.svg new file mode 100644 index 00000000..930c44d6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mendeley.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/meta.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/meta.svg new file mode 100644 index 00000000..cd465446 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/meta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/microblog.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/microblog.svg new file mode 100644 index 00000000..bb042bf7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/microblog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg new file mode 100644 index 00000000..9a87477d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mix.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mix.svg new file mode 100644 index 00000000..868d1f04 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mixcloud.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mixcloud.svg new file mode 100644 index 00000000..45996e15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mixcloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mixer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mixer.svg new file mode 100644 index 00000000..8c8249cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mixer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mizuni.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mizuni.svg new file mode 100644 index 00000000..d90d0d97 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/mizuni.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/modx.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/modx.svg new file mode 100644 index 00000000..e1585924 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/modx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/monero.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/monero.svg new file mode 100644 index 00000000..9f9a245d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/monero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/napster.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/napster.svg new file mode 100644 index 00000000..d945410f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/napster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/neos.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/neos.svg new file mode 100644 index 00000000..cf346649 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/neos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nfc-directional.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nfc-directional.svg new file mode 100644 index 00000000..3bb5f4ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nfc-directional.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nfc-symbol.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nfc-symbol.svg new file mode 100644 index 00000000..d3dc47d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nfc-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nimblr.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nimblr.svg new file mode 100644 index 00000000..71a530d3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nimblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/node-js.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/node-js.svg new file mode 100644 index 00000000..69747551 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/node-js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/node.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/node.svg new file mode 100644 index 00000000..23ed399c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/node.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/npm.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/npm.svg new file mode 100644 index 00000000..1200b6ec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/npm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ns8.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ns8.svg new file mode 100644 index 00000000..d3bb8555 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ns8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nutritionix.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nutritionix.svg new file mode 100644 index 00000000..48b7a311 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/nutritionix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/octopus-deploy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/octopus-deploy.svg new file mode 100644 index 00000000..ad6650df --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/octopus-deploy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/odnoklassniki.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/odnoklassniki.svg new file mode 100644 index 00000000..c2725a86 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/odnoklassniki.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/odysee.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/odysee.svg new file mode 100644 index 00000000..564b11b9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/odysee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/old-republic.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/old-republic.svg new file mode 100644 index 00000000..8b417b9a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/old-republic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/opencart.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/opencart.svg new file mode 100644 index 00000000..a6af6c65 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/opencart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/openid.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/openid.svg new file mode 100644 index 00000000..f9c3019d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/openid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/opera.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/opera.svg new file mode 100644 index 00000000..65a779e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/opera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/optin-monster.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/optin-monster.svg new file mode 100644 index 00000000..1ce882a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/optin-monster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/orcid.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/orcid.svg new file mode 100644 index 00000000..00f3bc8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/orcid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/osi.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/osi.svg new file mode 100644 index 00000000..7802247e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/osi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/padlet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/padlet.svg new file mode 100644 index 00000000..5a39a93c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/padlet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/page4.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/page4.svg new file mode 100644 index 00000000..02e33065 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/page4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pagelines.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pagelines.svg new file mode 100644 index 00000000..d285884e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pagelines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/palfed.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/palfed.svg new file mode 100644 index 00000000..6c6635a1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/palfed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/patreon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/patreon.svg new file mode 100644 index 00000000..a858c6f6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/patreon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/paypal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/paypal.svg new file mode 100644 index 00000000..e79f6239 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/perbyte.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/perbyte.svg new file mode 100644 index 00000000..bb030471 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/perbyte.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/periscope.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/periscope.svg new file mode 100644 index 00000000..c55ea097 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/periscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/phabricator.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/phabricator.svg new file mode 100644 index 00000000..3aecdc75 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/phabricator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/phoenix-framework.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/phoenix-framework.svg new file mode 100644 index 00000000..488211f7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/phoenix-framework.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/phoenix-squadron.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/phoenix-squadron.svg new file mode 100644 index 00000000..48de4bdd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/phoenix-squadron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/php.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/php.svg new file mode 100644 index 00000000..d52bc028 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/php.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper-alt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper-alt.svg new file mode 100644 index 00000000..ad194ee5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper-hat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper-hat.svg new file mode 100644 index 00000000..8e83d541 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper-pp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper-pp.svg new file mode 100644 index 00000000..7537d50b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper-pp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper.svg new file mode 100644 index 00000000..d73b8b67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pied-piper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pinterest-p.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pinterest-p.svg new file mode 100644 index 00000000..4aa2e3b9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pinterest-p.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pinterest.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pinterest.svg new file mode 100644 index 00000000..9f0a282c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pinterest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pix.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pix.svg new file mode 100644 index 00000000..b187debf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/playstation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/playstation.svg new file mode 100644 index 00000000..dd8bb236 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/playstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/product-hunt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/product-hunt.svg new file mode 100644 index 00000000..a2073903 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/product-hunt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pushed.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pushed.svg new file mode 100644 index 00000000..9449abf8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/pushed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/python.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/python.svg new file mode 100644 index 00000000..126a6eef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/python.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/qq.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/qq.svg new file mode 100644 index 00000000..8a9213f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/qq.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/quinscape.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/quinscape.svg new file mode 100644 index 00000000..6a632960 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/quinscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/quora.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/quora.svg new file mode 100644 index 00000000..f6bd8719 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/quora.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/r-project.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/r-project.svg new file mode 100644 index 00000000..3cdafa32 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/r-project.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/raspberry-pi.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/raspberry-pi.svg new file mode 100644 index 00000000..0c03c02e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/raspberry-pi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ravelry.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ravelry.svg new file mode 100644 index 00000000..08afe36b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ravelry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/react.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/react.svg new file mode 100644 index 00000000..68a3282f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/reacteurope.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/reacteurope.svg new file mode 100644 index 00000000..6f14a224 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/reacteurope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/readme.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/readme.svg new file mode 100644 index 00000000..26b62521 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/readme.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rebel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rebel.svg new file mode 100644 index 00000000..15380496 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rebel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/red-river.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/red-river.svg new file mode 100644 index 00000000..01c9e145 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/red-river.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/reddit-alien.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/reddit-alien.svg new file mode 100644 index 00000000..25cc9e49 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/reddit-alien.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/reddit.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/reddit.svg new file mode 100644 index 00000000..b33d86dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/redhat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/redhat.svg new file mode 100644 index 00000000..41e599de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/redhat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/renren.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/renren.svg new file mode 100644 index 00000000..b047d8d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/renren.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/replyd.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/replyd.svg new file mode 100644 index 00000000..d46ed364 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/replyd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/researchgate.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/researchgate.svg new file mode 100644 index 00000000..d73c7f9b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/researchgate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/resolving.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/resolving.svg new file mode 100644 index 00000000..386dd902 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/resolving.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rev.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rev.svg new file mode 100644 index 00000000..d90ca2b2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rev.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rocketchat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rocketchat.svg new file mode 100644 index 00000000..0aada6f8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rocketchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rockrms.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rockrms.svg new file mode 100644 index 00000000..2335cff3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rockrms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rust.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rust.svg new file mode 100644 index 00000000..f283898d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/rust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/safari.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/safari.svg new file mode 100644 index 00000000..18c66fc9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/safari.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/salesforce.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/salesforce.svg new file mode 100644 index 00000000..c5796659 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/salesforce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sass.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sass.svg new file mode 100644 index 00000000..9a4cfa58 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/schlix.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/schlix.svg new file mode 100644 index 00000000..271de936 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/schlix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/screenpal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/screenpal.svg new file mode 100644 index 00000000..f590daf2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/screenpal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/scribd.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/scribd.svg new file mode 100644 index 00000000..d85270f8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/scribd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/searchengin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/searchengin.svg new file mode 100644 index 00000000..96efe450 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/searchengin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sellcast.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sellcast.svg new file mode 100644 index 00000000..85b4d831 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sellcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sellsy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sellsy.svg new file mode 100644 index 00000000..df494530 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sellsy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg new file mode 100644 index 00000000..35eb76f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/shirtsinbulk.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/shirtsinbulk.svg new file mode 100644 index 00000000..474562c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/shirtsinbulk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/shopify.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/shopify.svg new file mode 100644 index 00000000..dcd59a98 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/shopify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/shopware.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/shopware.svg new file mode 100644 index 00000000..e6c2b10d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/shopware.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/simplybuilt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/simplybuilt.svg new file mode 100644 index 00000000..d3f218eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/simplybuilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sistrix.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sistrix.svg new file mode 100644 index 00000000..6bf05079 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sistrix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sith.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sith.svg new file mode 100644 index 00000000..af79ea92 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sith.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sitrox.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sitrox.svg new file mode 100644 index 00000000..de4faf7e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sitrox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sketch.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sketch.svg new file mode 100644 index 00000000..49f16cac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sketch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/skyatlas.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/skyatlas.svg new file mode 100644 index 00000000..78aaa1cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/skyatlas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/skype.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/skype.svg new file mode 100644 index 00000000..e7816ce1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/slack.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/slack.svg new file mode 100644 index 00000000..7789d991 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/slideshare.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/slideshare.svg new file mode 100644 index 00000000..8182a854 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/slideshare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/snapchat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/snapchat.svg new file mode 100644 index 00000000..dbd13e28 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/snapchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/soundcloud.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/soundcloud.svg new file mode 100644 index 00000000..87a64295 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/soundcloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sourcetree.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sourcetree.svg new file mode 100644 index 00000000..9388891d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sourcetree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/space-awesome.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/space-awesome.svg new file mode 100644 index 00000000..2648e5eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/space-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/speakap.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/speakap.svg new file mode 100644 index 00000000..7d8bcd45 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/speakap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/speaker-deck.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/speaker-deck.svg new file mode 100644 index 00000000..e5f5ae42 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/speaker-deck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/spotify.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/spotify.svg new file mode 100644 index 00000000..e8694658 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/spotify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-behance.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-behance.svg new file mode 100644 index 00000000..33d4f136 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-behance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-dribbble.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-dribbble.svg new file mode 100644 index 00000000..b5e0a6fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-dribbble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-facebook.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-facebook.svg new file mode 100644 index 00000000..884c2560 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-font-awesome-stroke.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-font-awesome-stroke.svg new file mode 100644 index 00000000..8779a15a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-font-awesome-stroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-font-awesome.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-font-awesome.svg new file mode 100644 index 00000000..69f42cf2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-font-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-git.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-git.svg new file mode 100644 index 00000000..e901fe27 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-git.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-github.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-github.svg new file mode 100644 index 00000000..b66f200e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-gitlab.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-gitlab.svg new file mode 100644 index 00000000..2407173b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-google-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-google-plus.svg new file mode 100644 index 00000000..bc72c3b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-google-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-hacker-news.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-hacker-news.svg new file mode 100644 index 00000000..4cc72331 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-hacker-news.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-instagram.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-instagram.svg new file mode 100644 index 00000000..0aeb90d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-js.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-js.svg new file mode 100644 index 00000000..a6e85c01 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-js.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-lastfm.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-lastfm.svg new file mode 100644 index 00000000..907bbbd0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-lastfm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-odnoklassniki.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-odnoklassniki.svg new file mode 100644 index 00000000..f731fbc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-odnoklassniki.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-pied-piper.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-pied-piper.svg new file mode 100644 index 00000000..bd526dcb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-pied-piper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-pinterest.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-pinterest.svg new file mode 100644 index 00000000..9df9fc31 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-pinterest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-reddit.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-reddit.svg new file mode 100644 index 00000000..62af8842 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-snapchat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-snapchat.svg new file mode 100644 index 00000000..4ddbef7c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-snapchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-steam.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-steam.svg new file mode 100644 index 00000000..18b8ec90 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-threads.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-threads.svg new file mode 100644 index 00000000..b95f8776 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-threads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-tumblr.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-tumblr.svg new file mode 100644 index 00000000..c55bf9c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-twitter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-twitter.svg new file mode 100644 index 00000000..c835fbc6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-viadeo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-viadeo.svg new file mode 100644 index 00000000..2f718a94 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-viadeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-vimeo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-vimeo.svg new file mode 100644 index 00000000..52b2fe94 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-whatsapp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-whatsapp.svg new file mode 100644 index 00000000..e19b03bd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-x-twitter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-x-twitter.svg new file mode 100644 index 00000000..a293789b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-x-twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-xing.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-xing.svg new file mode 100644 index 00000000..84226da0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-xing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-youtube.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-youtube.svg new file mode 100644 index 00000000..fd654a26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/square-youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/squarespace.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/squarespace.svg new file mode 100644 index 00000000..0db20bf8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/squarespace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stack-exchange.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stack-exchange.svg new file mode 100644 index 00000000..8aa68c21 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stack-exchange.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stack-overflow.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stack-overflow.svg new file mode 100644 index 00000000..331769a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stack-overflow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stackpath.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stackpath.svg new file mode 100644 index 00000000..fbbf3a5b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stackpath.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/staylinked.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/staylinked.svg new file mode 100644 index 00000000..6d24cfae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/staylinked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/steam-symbol.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/steam-symbol.svg new file mode 100644 index 00000000..c5ddc607 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/steam-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/steam.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/steam.svg new file mode 100644 index 00000000..42fbce6f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sticker-mule.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sticker-mule.svg new file mode 100644 index 00000000..8dc6ed02 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/sticker-mule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/strava.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/strava.svg new file mode 100644 index 00000000..57638012 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/strava.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stripe-s.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stripe-s.svg new file mode 100644 index 00000000..1416a89f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stripe-s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stripe.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stripe.svg new file mode 100644 index 00000000..e97e136c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stripe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stubber.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stubber.svg new file mode 100644 index 00000000..dce99f4e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stubber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/studiovinari.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/studiovinari.svg new file mode 100644 index 00000000..c4d9227b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/studiovinari.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stumbleupon-circle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stumbleupon-circle.svg new file mode 100644 index 00000000..b111e736 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stumbleupon-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stumbleupon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stumbleupon.svg new file mode 100644 index 00000000..c6f5a65b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/stumbleupon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/superpowers.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/superpowers.svg new file mode 100644 index 00000000..a7ff92dc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/superpowers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/supple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/supple.svg new file mode 100644 index 00000000..78eab69e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/supple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/suse.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/suse.svg new file mode 100644 index 00000000..700041e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/suse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/swift.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/swift.svg new file mode 100644 index 00000000..78bb4cb6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/swift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/symfony.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/symfony.svg new file mode 100644 index 00000000..49894f84 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/symfony.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/teamspeak.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/teamspeak.svg new file mode 100644 index 00000000..7cac4a81 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/teamspeak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/telegram.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/telegram.svg new file mode 100644 index 00000000..e409b535 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/telegram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/tencent-weibo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/tencent-weibo.svg new file mode 100644 index 00000000..f47a3961 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/tencent-weibo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/the-red-yeti.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/the-red-yeti.svg new file mode 100644 index 00000000..c4a09b1a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/the-red-yeti.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/themeco.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/themeco.svg new file mode 100644 index 00000000..0828ca06 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/themeco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/themeisle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/themeisle.svg new file mode 100644 index 00000000..c767b844 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/themeisle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/think-peaks.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/think-peaks.svg new file mode 100644 index 00000000..94160e5c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/think-peaks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/threads.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/threads.svg new file mode 100644 index 00000000..d0341af4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/threads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/tiktok.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/tiktok.svg new file mode 100644 index 00000000..cae48929 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/tiktok.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/trade-federation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/trade-federation.svg new file mode 100644 index 00000000..b924f3f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/trade-federation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/trello.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/trello.svg new file mode 100644 index 00000000..8fc00932 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/trello.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/tumblr.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/tumblr.svg new file mode 100644 index 00000000..38aa90a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/twitch.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/twitch.svg new file mode 100644 index 00000000..c5bb2222 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/twitch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/twitter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/twitter.svg new file mode 100644 index 00000000..cfd6211e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/typo3.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/typo3.svg new file mode 100644 index 00000000..767ee97f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/typo3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uber.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uber.svg new file mode 100644 index 00000000..8737e6dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ubuntu.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ubuntu.svg new file mode 100644 index 00000000..26655b83 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ubuntu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uikit.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uikit.svg new file mode 100644 index 00000000..64e2c594 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uikit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/umbraco.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/umbraco.svg new file mode 100644 index 00000000..2a53503f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/umbraco.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uncharted.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uncharted.svg new file mode 100644 index 00000000..4c0af4bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uncharted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uniregistry.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uniregistry.svg new file mode 100644 index 00000000..54cdf1c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/uniregistry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/unity.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/unity.svg new file mode 100644 index 00000000..a6199e1a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/unity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/unsplash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/unsplash.svg new file mode 100644 index 00000000..4bdf9688 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/unsplash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/untappd.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/untappd.svg new file mode 100644 index 00000000..4a4c758a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/untappd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ups.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ups.svg new file mode 100644 index 00000000..567d6423 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ups.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/usb.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/usb.svg new file mode 100644 index 00000000..16d34ee2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/usb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/usps.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/usps.svg new file mode 100644 index 00000000..933881bd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/usps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ussunnah.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ussunnah.svg new file mode 100644 index 00000000..d8220a78 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/ussunnah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vaadin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vaadin.svg new file mode 100644 index 00000000..c0bd8d5a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vaadin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg new file mode 100644 index 00000000..6a2cb071 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/viadeo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/viadeo.svg new file mode 100644 index 00000000..a65b84ad --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/viadeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/viber.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/viber.svg new file mode 100644 index 00000000..07237b49 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/viber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vimeo-v.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vimeo-v.svg new file mode 100644 index 00000000..bfbfc71b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vimeo-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vimeo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vimeo.svg new file mode 100644 index 00000000..c4135d9a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vine.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vine.svg new file mode 100644 index 00000000..9f9d431f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vk.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vk.svg new file mode 100644 index 00000000..0a3a3cd7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vnv.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vnv.svg new file mode 100644 index 00000000..e837c283 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vnv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg new file mode 100644 index 00000000..b2728315 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/watchman-monitoring.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/watchman-monitoring.svg new file mode 100644 index 00000000..ef5a54f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/watchman-monitoring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/waze.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/waze.svg new file mode 100644 index 00000000..d2ec2b7a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/waze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/weebly.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/weebly.svg new file mode 100644 index 00000000..6777f838 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/weebly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/weibo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/weibo.svg new file mode 100644 index 00000000..5f885543 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/weibo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/weixin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/weixin.svg new file mode 100644 index 00000000..4fe9099c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/weixin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/whatsapp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/whatsapp.svg new file mode 100644 index 00000000..8d4c15a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/whmcs.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/whmcs.svg new file mode 100644 index 00000000..b8a3e99b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/whmcs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wikipedia-w.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wikipedia-w.svg new file mode 100644 index 00000000..07f3ff54 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wikipedia-w.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/windows.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/windows.svg new file mode 100644 index 00000000..fa30876a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wirsindhandwerk.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wirsindhandwerk.svg new file mode 100644 index 00000000..9114d7c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wirsindhandwerk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wix.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wix.svg new file mode 100644 index 00000000..79cbd659 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wizards-of-the-coast.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wizards-of-the-coast.svg new file mode 100644 index 00000000..314215b6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wizards-of-the-coast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wodu.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wodu.svg new file mode 100644 index 00000000..06452c71 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wodu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wolf-pack-battalion.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wolf-pack-battalion.svg new file mode 100644 index 00000000..9bc8940c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wolf-pack-battalion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wordpress-simple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wordpress-simple.svg new file mode 100644 index 00000000..b3073494 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wordpress-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wordpress.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wordpress.svg new file mode 100644 index 00000000..4fb2c14f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpbeginner.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpbeginner.svg new file mode 100644 index 00000000..54882e3d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpbeginner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpexplorer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpexplorer.svg new file mode 100644 index 00000000..f4d03bd7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpexplorer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpforms.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpforms.svg new file mode 100644 index 00000000..03f1c7af --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpforms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpressr.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpressr.svg new file mode 100644 index 00000000..733b3a3e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/wpressr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/x-twitter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/x-twitter.svg new file mode 100644 index 00000000..8bdc8161 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/x-twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/xbox.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/xbox.svg new file mode 100644 index 00000000..d5f9cf60 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/xbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/xing.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/xing.svg new file mode 100644 index 00000000..b0478152 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/xing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg new file mode 100644 index 00000000..2bd67890 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg new file mode 100644 index 00000000..e233724c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yammer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yammer.svg new file mode 100644 index 00000000..56bd0d14 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg new file mode 100644 index 00000000..9d332e7d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yandex.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yandex.svg new file mode 100644 index 00000000..9ac110f5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yandex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yarn.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yarn.svg new file mode 100644 index 00000000..449c9e5c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yarn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yelp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yelp.svg new file mode 100644 index 00000000..59370cf1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yelp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yoast.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yoast.svg new file mode 100644 index 00000000..19fc4888 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/yoast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/youtube.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/youtube.svg new file mode 100644 index 00000000..63b99e2f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/zhihu.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/zhihu.svg new file mode 100644 index 00000000..dc45b1eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/brands/zhihu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/address-book.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/address-book.svg new file mode 100644 index 00000000..e143435a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/address-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/address-card.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/address-card.svg new file mode 100644 index 00000000..276bef22 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/address-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/bell-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/bell-slash.svg new file mode 100644 index 00000000..4612e59f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/bell.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/bell.svg new file mode 100644 index 00000000..e9bd7eed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg new file mode 100644 index 00000000..f5bb47db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/building.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/building.svg new file mode 100644 index 00000000..6c3e9ae2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-check.svg new file mode 100644 index 00000000..ef145d6b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-days.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-days.svg new file mode 100644 index 00000000..863dec76 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-days.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-minus.svg new file mode 100644 index 00000000..75687998 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-plus.svg new file mode 100644 index 00000000..d38c451d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-xmark.svg new file mode 100644 index 00000000..c2f43e77 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar.svg new file mode 100644 index 00000000..f4689897 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chart-bar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chart-bar.svg new file mode 100644 index 00000000..f54e039d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-bishop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-bishop.svg new file mode 100644 index 00000000..423332c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-bishop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-king.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-king.svg new file mode 100644 index 00000000..722a3100 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-king.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-knight.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-knight.svg new file mode 100644 index 00000000..136e1c86 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-knight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-pawn.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-pawn.svg new file mode 100644 index 00000000..dc91c79b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-pawn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-queen.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-queen.svg new file mode 100644 index 00000000..aec0835d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-queen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-rook.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-rook.svg new file mode 100644 index 00000000..fabf429c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/chess-rook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-check.svg new file mode 100644 index 00000000..b93feeb3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-dot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-dot.svg new file mode 100644 index 00000000..5b97817d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-down.svg new file mode 100644 index 00000000..223fe139 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-left.svg new file mode 100644 index 00000000..0927d01e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-pause.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-pause.svg new file mode 100644 index 00000000..31eadd43 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-play.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-play.svg new file mode 100644 index 00000000..146bda8a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-question.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-question.svg new file mode 100644 index 00000000..56ee1d22 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-right.svg new file mode 100644 index 00000000..9f1920cc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-stop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-stop.svg new file mode 100644 index 00000000..ef241594 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-up.svg new file mode 100644 index 00000000..7f6f3578 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-user.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-user.svg new file mode 100644 index 00000000..a523ad44 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-xmark.svg new file mode 100644 index 00000000..979418d7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle.svg new file mode 100644 index 00000000..ba06ab90 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/clipboard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/clipboard.svg new file mode 100644 index 00000000..79272c9e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/clock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/clock.svg new file mode 100644 index 00000000..16088be4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/clone.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/clone.svg new file mode 100644 index 00000000..d12315ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/clone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/closed-captioning.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/closed-captioning.svg new file mode 100644 index 00000000..aaaea917 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/comment-dots.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/comment-dots.svg new file mode 100644 index 00000000..3d213130 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/comment.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/comment.svg new file mode 100644 index 00000000..95f1d3f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/comments.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/comments.svg new file mode 100644 index 00000000..ee4873d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/comments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/compass.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/compass.svg new file mode 100644 index 00000000..f9ffee36 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/copy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/copy.svg new file mode 100644 index 00000000..a80c995a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/copyright.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/copyright.svg new file mode 100644 index 00000000..6e6c72c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/credit-card.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/credit-card.svg new file mode 100644 index 00000000..e381a254 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/envelope-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/envelope-open.svg new file mode 100644 index 00000000..b2fa35d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/envelope-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/envelope.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/envelope.svg new file mode 100644 index 00000000..26db34da --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/eye-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/eye-slash.svg new file mode 100644 index 00000000..a090e056 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/eye.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/eye.svg new file mode 100644 index 00000000..8e6a1ed5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-angry.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-angry.svg new file mode 100644 index 00000000..bac8df11 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-dizzy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-dizzy.svg new file mode 100644 index 00000000..d02f0cb6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-flushed.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-flushed.svg new file mode 100644 index 00000000..498b1c52 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-flushed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-frown-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-frown-open.svg new file mode 100644 index 00000000..b8d42208 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-frown-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-frown.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-frown.svg new file mode 100644 index 00000000..fdb67ab8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grimace.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grimace.svg new file mode 100644 index 00000000..2c972ed0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grimace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-beam-sweat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-beam-sweat.svg new file mode 100644 index 00000000..322b168a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-beam-sweat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-beam.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-beam.svg new file mode 100644 index 00000000..bc8fdd4f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-hearts.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-hearts.svg new file mode 100644 index 00000000..d60bcc43 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-hearts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-squint-tears.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-squint-tears.svg new file mode 100644 index 00000000..25d91b78 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-squint-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-squint.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-squint.svg new file mode 100644 index 00000000..489d802d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-stars.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-stars.svg new file mode 100644 index 00000000..d4d616c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-stars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tears.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tears.svg new file mode 100644 index 00000000..1e603bc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tongue-squint.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tongue-squint.svg new file mode 100644 index 00000000..24230506 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tongue-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tongue-wink.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tongue-wink.svg new file mode 100644 index 00000000..4553c1dc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tongue-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tongue.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tongue.svg new file mode 100644 index 00000000..157aeb97 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-tongue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-wide.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-wide.svg new file mode 100644 index 00000000..cf9f5757 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-wide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-wink.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-wink.svg new file mode 100644 index 00000000..375a22a8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin.svg new file mode 100644 index 00000000..51e4bbe8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-kiss-beam.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-kiss-beam.svg new file mode 100644 index 00000000..68dfdf42 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-kiss-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-kiss-wink-heart.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-kiss-wink-heart.svg new file mode 100644 index 00000000..c51b6fc4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-kiss-wink-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-kiss.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-kiss.svg new file mode 100644 index 00000000..07e6fd2c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-kiss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh-beam.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh-beam.svg new file mode 100644 index 00000000..92624230 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh-squint.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh-squint.svg new file mode 100644 index 00000000..e667d413 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh-wink.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh-wink.svg new file mode 100644 index 00000000..5dac924f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh.svg new file mode 100644 index 00000000..9c81788f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-laugh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-meh-blank.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-meh-blank.svg new file mode 100644 index 00000000..5726f097 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-meh-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-meh.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-meh.svg new file mode 100644 index 00000000..21cdcb29 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-rolling-eyes.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-rolling-eyes.svg new file mode 100644 index 00000000..8a82c4c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-rolling-eyes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-sad-cry.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-sad-cry.svg new file mode 100644 index 00000000..44285b9a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-sad-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-sad-tear.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-sad-tear.svg new file mode 100644 index 00000000..319141c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-sad-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-smile-beam.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-smile-beam.svg new file mode 100644 index 00000000..efa75f20 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-smile-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-smile-wink.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-smile-wink.svg new file mode 100644 index 00000000..fbf26c82 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-smile-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-smile.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-smile.svg new file mode 100644 index 00000000..4b4ea877 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-surprise.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-surprise.svg new file mode 100644 index 00000000..7d3d7276 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-surprise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-tired.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-tired.svg new file mode 100644 index 00000000..abd951c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/face-tired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-audio.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-audio.svg new file mode 100644 index 00000000..c939db51 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-code.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-code.svg new file mode 100644 index 00000000..b5096060 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-excel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-excel.svg new file mode 100644 index 00000000..08711769 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-excel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-image.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-image.svg new file mode 100644 index 00000000..a3bd4ca2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-lines.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-lines.svg new file mode 100644 index 00000000..be19f589 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-pdf.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-pdf.svg new file mode 100644 index 00000000..1c7de129 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-powerpoint.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-powerpoint.svg new file mode 100644 index 00000000..ad89bccb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-powerpoint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-video.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-video.svg new file mode 100644 index 00000000..6efb896d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-word.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-word.svg new file mode 100644 index 00000000..5818d303 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-word.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-zipper.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-zipper.svg new file mode 100644 index 00000000..e21dd1a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file-zipper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file.svg new file mode 100644 index 00000000..26d89880 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/flag.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/flag.svg new file mode 100644 index 00000000..3eedb675 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/floppy-disk.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/floppy-disk.svg new file mode 100644 index 00000000..0a4fd386 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/floppy-disk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/folder-closed.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/folder-closed.svg new file mode 100644 index 00000000..e7ac050b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/folder-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/folder-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/folder-open.svg new file mode 100644 index 00000000..f83cf33f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/folder.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/folder.svg new file mode 100644 index 00000000..51c9d67e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/font-awesome.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/font-awesome.svg new file mode 100644 index 00000000..b06fee41 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/font-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/futbol.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/futbol.svg new file mode 100644 index 00000000..37bbfacd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/futbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/gem.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/gem.svg new file mode 100644 index 00000000..16559d9d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/gem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-back-fist.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-back-fist.svg new file mode 100644 index 00000000..745fc710 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-back-fist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-lizard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-lizard.svg new file mode 100644 index 00000000..b4b1fd5e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-lizard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-peace.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-peace.svg new file mode 100644 index 00000000..ece86a62 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-down.svg new file mode 100644 index 00000000..19bc7d52 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-left.svg new file mode 100644 index 00000000..628cdb0b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-right.svg new file mode 100644 index 00000000..71bbc76c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-up.svg new file mode 100644 index 00000000..48ae6506 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-point-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-pointer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-pointer.svg new file mode 100644 index 00000000..44fa7445 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-scissors.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-scissors.svg new file mode 100644 index 00000000..29f36f81 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-spock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-spock.svg new file mode 100644 index 00000000..55e4290e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand-spock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand.svg new file mode 100644 index 00000000..55b6089f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/handshake.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/handshake.svg new file mode 100644 index 00000000..911ac2d6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/handshake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hard-drive.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hard-drive.svg new file mode 100644 index 00000000..7d9f66dc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hard-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/heart.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/heart.svg new file mode 100644 index 00000000..a0e4777a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hospital.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hospital.svg new file mode 100644 index 00000000..cbc2e61b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hourglass-half.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hourglass-half.svg new file mode 100644 index 00000000..35fcbe08 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hourglass-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hourglass.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hourglass.svg new file mode 100644 index 00000000..d740a621 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/id-badge.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/id-badge.svg new file mode 100644 index 00000000..def28bc0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/id-badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/id-card.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/id-card.svg new file mode 100644 index 00000000..d2e4ba10 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/id-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/image.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/image.svg new file mode 100644 index 00000000..402e614b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/images.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/images.svg new file mode 100644 index 00000000..37b655c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/keyboard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/keyboard.svg new file mode 100644 index 00000000..1b928cac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/lemon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/lemon.svg new file mode 100644 index 00000000..c7a21daa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/lemon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/life-ring.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/life-ring.svg new file mode 100644 index 00000000..b0925747 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/life-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/lightbulb.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/lightbulb.svg new file mode 100644 index 00000000..5442558f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/map.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/map.svg new file mode 100644 index 00000000..4f25512f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/message.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/message.svg new file mode 100644 index 00000000..c896de39 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/money-bill-1.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/money-bill-1.svg new file mode 100644 index 00000000..ee8caa92 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/money-bill-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/moon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/moon.svg new file mode 100644 index 00000000..5348f9b4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/newspaper.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/newspaper.svg new file mode 100644 index 00000000..cbf37bf8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/note-sticky.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/note-sticky.svg new file mode 100644 index 00000000..13c4adbf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/note-sticky.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/object-group.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/object-group.svg new file mode 100644 index 00000000..9edefa2e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/object-ungroup.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/object-ungroup.svg new file mode 100644 index 00000000..11910ca2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/paper-plane.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/paper-plane.svg new file mode 100644 index 00000000..2abf396a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/paste.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/paste.svg new file mode 100644 index 00000000..adbc0296 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/paste.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/pen-to-square.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/pen-to-square.svg new file mode 100644 index 00000000..de1bf51d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/pen-to-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/rectangle-list.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/rectangle-list.svg new file mode 100644 index 00000000..93afc135 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/rectangle-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/rectangle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/rectangle-xmark.svg new file mode 100644 index 00000000..74029b5f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/rectangle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/registered.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/registered.svg new file mode 100644 index 00000000..1c11a678 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/share-from-square.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/share-from-square.svg new file mode 100644 index 00000000..7b3a0a0b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/share-from-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/snowflake.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/snowflake.svg new file mode 100644 index 00000000..8e572301 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-down.svg new file mode 100644 index 00000000..b3f71058 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-left.svg new file mode 100644 index 00000000..59817183 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-right.svg new file mode 100644 index 00000000..2c6d552a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-up.svg new file mode 100644 index 00000000..278dcf8d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-caret-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-check.svg new file mode 100644 index 00000000..1f728897 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-full.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-full.svg new file mode 100644 index 00000000..45eeeb60 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-minus.svg new file mode 100644 index 00000000..cc317f03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-plus.svg new file mode 100644 index 00000000..e809659e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square.svg new file mode 100644 index 00000000..eba899e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/star-half-stroke.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/star-half-stroke.svg new file mode 100644 index 00000000..fd815c31 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/star-half-stroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/star-half.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/star-half.svg new file mode 100644 index 00000000..206d1cee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/star.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/star.svg new file mode 100644 index 00000000..32147c5d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/sun.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/sun.svg new file mode 100644 index 00000000..be081337 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/thumbs-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/thumbs-down.svg new file mode 100644 index 00000000..838b4747 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/thumbs-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/thumbs-up.svg new file mode 100644 index 00000000..1c2153e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/trash-can.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/trash-can.svg new file mode 100644 index 00000000..03ca715b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/trash-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/user.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/user.svg new file mode 100644 index 00000000..b642e43f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg new file mode 100644 index 00000000..44a855a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg new file mode 100644 index 00000000..e08062b4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-restore.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-restore.svg new file mode 100644 index 00000000..52aaff22 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/regular/window-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/0.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/0.svg new file mode 100644 index 00000000..d15544b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/1.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/1.svg new file mode 100644 index 00000000..070e084c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/2.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/2.svg new file mode 100644 index 00000000..097a0c7b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/3.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/3.svg new file mode 100644 index 00000000..7d7e42ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/4.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/4.svg new file mode 100644 index 00000000..15f48fa8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/5.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/5.svg new file mode 100644 index 00000000..ccb9c2d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/6.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/6.svg new file mode 100644 index 00000000..fe6b2997 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/7.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/7.svg new file mode 100644 index 00000000..76e755bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/8.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/8.svg new file mode 100644 index 00000000..8a43a4f4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/9.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/9.svg new file mode 100644 index 00000000..b4c58778 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/a.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/a.svg new file mode 100644 index 00000000..03afd599 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/address-book.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/address-book.svg new file mode 100644 index 00000000..e87d1420 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/address-book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/address-card.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/address-card.svg new file mode 100644 index 00000000..611a55e3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/address-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-center.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-center.svg new file mode 100644 index 00000000..ab280099 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-justify.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-justify.svg new file mode 100644 index 00000000..f8e628f4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-left.svg new file mode 100644 index 00000000..844bd8db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-right.svg new file mode 100644 index 00000000..7570612a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-circle-check.svg new file mode 100644 index 00000000..e9a92f0b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-circle-exclamation.svg new file mode 100644 index 00000000..87f4cc97 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-circle-xmark.svg new file mode 100644 index 00000000..66849ae2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-lock.svg new file mode 100644 index 00000000..27b268ee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor.svg new file mode 100644 index 00000000..281b2e88 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg new file mode 100644 index 00000000..1eba548c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg new file mode 100644 index 00000000..804865ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg new file mode 100644 index 00000000..e1ac160f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg new file mode 100644 index 00000000..67f29a8f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-down.svg new file mode 100644 index 00000000..6d6d79d0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-left.svg new file mode 100644 index 00000000..d6d20406 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-right.svg new file mode 100644 index 00000000..0654d35e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-up.svg new file mode 100644 index 00000000..3806da04 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/angles-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ankh.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ankh.svg new file mode 100644 index 00000000..54ab041e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ankh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/apple-whole.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/apple-whole.svg new file mode 100644 index 00000000..861be225 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/apple-whole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/archway.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/archway.svg new file mode 100644 index 00000000..f66ad382 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/archway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-1-9.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-1-9.svg new file mode 100644 index 00000000..bf28e2aa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-1-9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-9-1.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-9-1.svg new file mode 100644 index 00000000..0ccf49aa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-9-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-a-z.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-a-z.svg new file mode 100644 index 00000000..58ed7da9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-a-z.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-long.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-long.svg new file mode 100644 index 00000000..04361197 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-short-wide.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-short-wide.svg new file mode 100644 index 00000000..0e4bd619 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-short-wide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-up-across-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-up-across-line.svg new file mode 100644 index 00000000..a6b49fb8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-up-across-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-up-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-up-lock.svg new file mode 100644 index 00000000..3515331f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-up-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-wide-short.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-wide-short.svg new file mode 100644 index 00000000..631e2ac6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-wide-short.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-z-a.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-z-a.svg new file mode 100644 index 00000000..237a9123 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down-z-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down.svg new file mode 100644 index 00000000..1afac666 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-left-long.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-left-long.svg new file mode 100644 index 00000000..4482af4a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-left-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-left.svg new file mode 100644 index 00000000..b927121b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-pointer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-pointer.svg new file mode 100644 index 00000000..70afe4d0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-arrow-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-arrow-left.svg new file mode 100644 index 00000000..75dcf5c2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-from-bracket.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-from-bracket.svg new file mode 100644 index 00000000..e4792a1f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-from-bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-long.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-long.svg new file mode 100644 index 00000000..5776fd47 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-to-bracket.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-to-bracket.svg new file mode 100644 index 00000000..998b2252 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-to-bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-to-city.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-to-city.svg new file mode 100644 index 00000000..22b51292 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right-to-city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right.svg new file mode 100644 index 00000000..9fb7fe97 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-rotate-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-rotate-left.svg new file mode 100644 index 00000000..694731a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-rotate-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-rotate-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-rotate-right.svg new file mode 100644 index 00000000..6f3f898c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-rotate-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-trend-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-trend-down.svg new file mode 100644 index 00000000..63469be7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-trend-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-trend-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-trend-up.svg new file mode 100644 index 00000000..3a2c0911 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-trend-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-turn-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-turn-down.svg new file mode 100644 index 00000000..3fb67b47 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-turn-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-turn-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-turn-up.svg new file mode 100644 index 00000000..ffdf628a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-turn-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-1-9.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-1-9.svg new file mode 100644 index 00000000..8eb50c7b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-1-9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-9-1.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-9-1.svg new file mode 100644 index 00000000..dcce2874 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-9-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-a-z.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-a-z.svg new file mode 100644 index 00000000..9038e7ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-a-z.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-from-bracket.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-from-bracket.svg new file mode 100644 index 00000000..a04b57ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-from-bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-from-ground-water.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-from-ground-water.svg new file mode 100644 index 00000000..0edcf9b6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-from-ground-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-from-water-pump.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-from-water-pump.svg new file mode 100644 index 00000000..7b4f0b4e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-from-water-pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-long.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-long.svg new file mode 100644 index 00000000..0bb0b7ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-right-dots.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-right-dots.svg new file mode 100644 index 00000000..d97333ce --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-right-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-right-from-square.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-right-from-square.svg new file mode 100644 index 00000000..523a34e9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-right-from-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-short-wide.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-short-wide.svg new file mode 100644 index 00000000..65bf7e2e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-short-wide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-wide-short.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-wide-short.svg new file mode 100644 index 00000000..ee547e0a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-wide-short.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-z-a.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-z-a.svg new file mode 100644 index 00000000..0174594f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up-z-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up.svg new file mode 100644 index 00000000..87b58498 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-down-to-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-down-to-line.svg new file mode 100644 index 00000000..8d380274 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-down-to-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-down-to-people.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-down-to-people.svg new file mode 100644 index 00000000..25ea589e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-down-to-people.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-left-right-to-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-left-right-to-line.svg new file mode 100644 index 00000000..24289272 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-left-right-to-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-left-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-left-right.svg new file mode 100644 index 00000000..3f9ab9c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-rotate.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-rotate.svg new file mode 100644 index 00000000..13651dd2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-spin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-spin.svg new file mode 100644 index 00000000..4ff7560b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-spin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-split-up-and-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-split-up-and-left.svg new file mode 100644 index 00000000..f85e859e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-split-up-and-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-to-circle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-to-circle.svg new file mode 100644 index 00000000..78d8d7b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-to-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-to-dot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-to-dot.svg new file mode 100644 index 00000000..cf38a62c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-to-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-to-eye.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-to-eye.svg new file mode 100644 index 00000000..f588d011 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-to-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-turn-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-turn-right.svg new file mode 100644 index 00000000..08167508 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-turn-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-turn-to-dots.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-turn-to-dots.svg new file mode 100644 index 00000000..3c4c527f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-turn-to-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-up-down-left-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-up-down-left-right.svg new file mode 100644 index 00000000..a3f51a80 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-up-down-left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-up-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-up-down.svg new file mode 100644 index 00000000..df548fb1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-up-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-up-to-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-up-to-line.svg new file mode 100644 index 00000000..af3aba81 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/arrows-up-to-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/asterisk.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/asterisk.svg new file mode 100644 index 00000000..98320217 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/asterisk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/at.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/at.svg new file mode 100644 index 00000000..d25f5dec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/atom.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/atom.svg new file mode 100644 index 00000000..313a9178 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/audio-description.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/audio-description.svg new file mode 100644 index 00000000..ab7bd525 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/audio-description.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/austral-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/austral-sign.svg new file mode 100644 index 00000000..a6894cee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/austral-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/award.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/award.svg new file mode 100644 index 00000000..8049abe0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/award.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/b.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/b.svg new file mode 100644 index 00000000..f68be5e9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baby-carriage.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baby-carriage.svg new file mode 100644 index 00000000..86246cb6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baby-carriage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baby.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baby.svg new file mode 100644 index 00000000..a1749df3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/backward-fast.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/backward-fast.svg new file mode 100644 index 00000000..86cf8b00 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/backward-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/backward-step.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/backward-step.svg new file mode 100644 index 00000000..089cc565 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/backward-step.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/backward.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/backward.svg new file mode 100644 index 00000000..4496eb25 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bacon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bacon.svg new file mode 100644 index 00000000..9aa4e14b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bacon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bacteria.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bacteria.svg new file mode 100644 index 00000000..2244590a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bacteria.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bacterium.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bacterium.svg new file mode 100644 index 00000000..3c77b685 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bacterium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bag-shopping.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bag-shopping.svg new file mode 100644 index 00000000..c6e0eceb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bag-shopping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bahai.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bahai.svg new file mode 100644 index 00000000..6c8d98be --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bahai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baht-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baht-sign.svg new file mode 100644 index 00000000..b8cf0819 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baht-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ban-smoking.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ban-smoking.svg new file mode 100644 index 00000000..1e2951d3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ban-smoking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ban.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ban.svg new file mode 100644 index 00000000..cd84b0ee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bandage.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bandage.svg new file mode 100644 index 00000000..7d3a0e8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bandage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bangladeshi-taka-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bangladeshi-taka-sign.svg new file mode 100644 index 00000000..8983a9c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bangladeshi-taka-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/barcode.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/barcode.svg new file mode 100644 index 00000000..c9a9c840 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/barcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bars-progress.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bars-progress.svg new file mode 100644 index 00000000..41e947a6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bars-progress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bars-staggered.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bars-staggered.svg new file mode 100644 index 00000000..01258c59 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bars-staggered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bars.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bars.svg new file mode 100644 index 00000000..8a541299 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baseball-bat-ball.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baseball-bat-ball.svg new file mode 100644 index 00000000..5a80b217 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baseball-bat-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baseball.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baseball.svg new file mode 100644 index 00000000..10ccb592 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/baseball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/basket-shopping.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/basket-shopping.svg new file mode 100644 index 00000000..fe41145e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/basket-shopping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/basketball.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/basketball.svg new file mode 100644 index 00000000..6b0d71df --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bath.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bath.svg new file mode 100644 index 00000000..fceafb8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bath.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg new file mode 100644 index 00000000..29cb43f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-full.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-full.svg new file mode 100644 index 00000000..31043533 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-half.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-half.svg new file mode 100644 index 00000000..877ed436 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-quarter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-quarter.svg new file mode 100644 index 00000000..4daae7ec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-three-quarters.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-three-quarters.svg new file mode 100644 index 00000000..87df0cb4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/battery-three-quarters.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bed-pulse.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bed-pulse.svg new file mode 100644 index 00000000..3263fdbd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bed-pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bed.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bed.svg new file mode 100644 index 00000000..3b9619b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/beer-mug-empty.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/beer-mug-empty.svg new file mode 100644 index 00000000..123618dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/beer-mug-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bell-concierge.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bell-concierge.svg new file mode 100644 index 00000000..6bf2784c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bell-concierge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bell-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bell-slash.svg new file mode 100644 index 00000000..bb2dc273 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bell.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bell.svg new file mode 100644 index 00000000..78c8d785 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bezier-curve.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bezier-curve.svg new file mode 100644 index 00000000..11363ecb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bezier-curve.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bicycle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bicycle.svg new file mode 100644 index 00000000..06d4fcd7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/binoculars.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/binoculars.svg new file mode 100644 index 00000000..ebd6cb27 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/binoculars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/biohazard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/biohazard.svg new file mode 100644 index 00000000..bd01273a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/biohazard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bitcoin-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bitcoin-sign.svg new file mode 100644 index 00000000..f52df3b1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bitcoin-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/blender-phone.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/blender-phone.svg new file mode 100644 index 00000000..586264b6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/blender-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/blender.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/blender.svg new file mode 100644 index 00000000..2b246841 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/blender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/blog.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/blog.svg new file mode 100644 index 00000000..8ea406e7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/blog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bold.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bold.svg new file mode 100644 index 00000000..a734a206 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bolt-lightning.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bolt-lightning.svg new file mode 100644 index 00000000..adebe625 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bolt-lightning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bolt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bolt.svg new file mode 100644 index 00000000..78544f30 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bomb.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bomb.svg new file mode 100644 index 00000000..5daaa40b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bomb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bone.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bone.svg new file mode 100644 index 00000000..51f26b03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bong.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bong.svg new file mode 100644 index 00000000..5efd2190 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bong.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-atlas.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-atlas.svg new file mode 100644 index 00000000..12604d3e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-atlas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-bible.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-bible.svg new file mode 100644 index 00000000..411a76d7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-bible.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-bookmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-bookmark.svg new file mode 100644 index 00000000..910f20ae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-journal-whills.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-journal-whills.svg new file mode 100644 index 00000000..c0545b7a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-journal-whills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-medical.svg new file mode 100644 index 00000000..f8f757ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-open-reader.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-open-reader.svg new file mode 100644 index 00000000..907c3675 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-open-reader.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-open.svg new file mode 100644 index 00000000..080898bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-quran.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-quran.svg new file mode 100644 index 00000000..43b7eacd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-quran.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-skull.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-skull.svg new file mode 100644 index 00000000..0b0addaf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-tanakh.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-tanakh.svg new file mode 100644 index 00000000..63d0930d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book-tanakh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book.svg new file mode 100644 index 00000000..325c7f17 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg new file mode 100644 index 00000000..fb3514bc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/border-all.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/border-all.svg new file mode 100644 index 00000000..dc7766d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/border-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/border-none.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/border-none.svg new file mode 100644 index 00000000..ca2aa1d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/border-none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/border-top-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/border-top-left.svg new file mode 100644 index 00000000..031e2444 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/border-top-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bore-hole.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bore-hole.svg new file mode 100644 index 00000000..7948c21b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bore-hole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bottle-droplet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bottle-droplet.svg new file mode 100644 index 00000000..250a47b7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bottle-droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bottle-water.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bottle-water.svg new file mode 100644 index 00000000..e81b7b3d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bottle-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bowl-food.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bowl-food.svg new file mode 100644 index 00000000..d152deab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bowl-food.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bowl-rice.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bowl-rice.svg new file mode 100644 index 00000000..338d333a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bowl-rice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bowling-ball.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bowling-ball.svg new file mode 100644 index 00000000..1ea3464f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bowling-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box-archive.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box-archive.svg new file mode 100644 index 00000000..1cf3f7de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box-archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box-open.svg new file mode 100644 index 00000000..a8263651 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box-tissue.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box-tissue.svg new file mode 100644 index 00000000..c2704c26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box-tissue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box.svg new file mode 100644 index 00000000..2c2ee47e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/boxes-packing.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/boxes-packing.svg new file mode 100644 index 00000000..380376ee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/boxes-packing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/boxes-stacked.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/boxes-stacked.svg new file mode 100644 index 00000000..11769b46 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/boxes-stacked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/braille.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/braille.svg new file mode 100644 index 00000000..286db56d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/braille.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/brain.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/brain.svg new file mode 100644 index 00000000..8e377b76 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/brain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/brazilian-real-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/brazilian-real-sign.svg new file mode 100644 index 00000000..257bd11d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/brazilian-real-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bread-slice.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bread-slice.svg new file mode 100644 index 00000000..97fa0954 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bread-slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-circle-check.svg new file mode 100644 index 00000000..7c51f4ad --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-circle-exclamation.svg new file mode 100644 index 00000000..1eda3324 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-circle-xmark.svg new file mode 100644 index 00000000..d9b09035 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-lock.svg new file mode 100644 index 00000000..6ce2b843 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-water.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-water.svg new file mode 100644 index 00000000..9d0d27e3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge.svg new file mode 100644 index 00000000..f246e3e3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/briefcase-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/briefcase-medical.svg new file mode 100644 index 00000000..82e388ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/briefcase-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/briefcase.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/briefcase.svg new file mode 100644 index 00000000..2f34805d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/broom-ball.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/broom-ball.svg new file mode 100644 index 00000000..68cce3c7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/broom-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/broom.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/broom.svg new file mode 100644 index 00000000..347d700f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/broom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/brush.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/brush.svg new file mode 100644 index 00000000..09d8464f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bucket.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bucket.svg new file mode 100644 index 00000000..8e441e82 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bucket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bug-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bug-slash.svg new file mode 100644 index 00000000..2f07d6fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bug-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bug.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bug.svg new file mode 100644 index 00000000..be5da648 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bugs.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bugs.svg new file mode 100644 index 00000000..17b492ce --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bugs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-arrow-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-arrow-right.svg new file mode 100644 index 00000000..e7e70724 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-check.svg new file mode 100644 index 00000000..e1254e44 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-exclamation.svg new file mode 100644 index 00000000..d747145f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-xmark.svg new file mode 100644 index 00000000..198cf8d6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-columns.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-columns.svg new file mode 100644 index 00000000..72ea62cd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-flag.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-flag.svg new file mode 100644 index 00000000..faacb6f0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-lock.svg new file mode 100644 index 00000000..696a0daa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-ngo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-ngo.svg new file mode 100644 index 00000000..165504a6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-ngo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-shield.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-shield.svg new file mode 100644 index 00000000..b10f7ed1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-un.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-un.svg new file mode 100644 index 00000000..c1040d9e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-un.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-user.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-user.svg new file mode 100644 index 00000000..2e20f7f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-wheat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-wheat.svg new file mode 100644 index 00000000..d6b66de7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building-wheat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building.svg new file mode 100644 index 00000000..a5754b37 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bullhorn.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bullhorn.svg new file mode 100644 index 00000000..9b9ff849 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bullhorn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bullseye.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bullseye.svg new file mode 100644 index 00000000..1f707f32 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bullseye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/burger.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/burger.svg new file mode 100644 index 00000000..a991da10 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/burger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/burst.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/burst.svg new file mode 100644 index 00000000..6561c864 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bus-simple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bus-simple.svg new file mode 100644 index 00000000..c44f8efd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bus-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bus.svg new file mode 100644 index 00000000..bfd4937f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/business-time.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/business-time.svg new file mode 100644 index 00000000..08657d8d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/business-time.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/c.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/c.svg new file mode 100644 index 00000000..a9c29ede --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cable-car.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cable-car.svg new file mode 100644 index 00000000..250c760e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cable-car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cake-candles.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cake-candles.svg new file mode 100644 index 00000000..3327a2d7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cake-candles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calculator.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calculator.svg new file mode 100644 index 00000000..ecef7f03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-check.svg new file mode 100644 index 00000000..e30dbfa4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-day.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-day.svg new file mode 100644 index 00000000..cacee71e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-day.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-days.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-days.svg new file mode 100644 index 00000000..ed6969e0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-days.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-minus.svg new file mode 100644 index 00000000..dd168dc6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-plus.svg new file mode 100644 index 00000000..326d5b73 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-week.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-week.svg new file mode 100644 index 00000000..bd09163c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-week.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-xmark.svg new file mode 100644 index 00000000..93204b66 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar.svg new file mode 100644 index 00000000..3f55c64f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/camera-retro.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/camera-retro.svg new file mode 100644 index 00000000..ec771f7e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/camera-retro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/camera-rotate.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/camera-rotate.svg new file mode 100644 index 00000000..1453b478 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/camera-rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/camera.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/camera.svg new file mode 100644 index 00000000..edf047c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/campground.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/campground.svg new file mode 100644 index 00000000..4a1fe6c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/campground.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/candy-cane.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/candy-cane.svg new file mode 100644 index 00000000..4cfe55ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/candy-cane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cannabis.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cannabis.svg new file mode 100644 index 00000000..66d55808 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cannabis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/capsules.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/capsules.svg new file mode 100644 index 00000000..46108beb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/capsules.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-battery.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-battery.svg new file mode 100644 index 00000000..ccfbb733 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-burst.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-burst.svg new file mode 100644 index 00000000..dd0ec4c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-on.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-on.svg new file mode 100644 index 00000000..4d2024ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-rear.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-rear.svg new file mode 100644 index 00000000..736b82ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-rear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-side.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-side.svg new file mode 100644 index 00000000..08c945f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-tunnel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-tunnel.svg new file mode 100644 index 00000000..7ee746e2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car-tunnel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car.svg new file mode 100644 index 00000000..64b03c67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caravan.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caravan.svg new file mode 100644 index 00000000..3a9e0866 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caravan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg new file mode 100644 index 00000000..d4352eaa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg new file mode 100644 index 00000000..55e5ef95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg new file mode 100644 index 00000000..564930df --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg new file mode 100644 index 00000000..42788b17 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/carrot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/carrot.svg new file mode 100644 index 00000000..15a86c31 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/carrot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-arrow-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-arrow-down.svg new file mode 100644 index 00000000..531a0fd5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-flatbed-suitcase.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-flatbed-suitcase.svg new file mode 100644 index 00000000..786268f4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-flatbed-suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-flatbed.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-flatbed.svg new file mode 100644 index 00000000..d7332f66 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-flatbed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-plus.svg new file mode 100644 index 00000000..a0b45c69 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-shopping.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-shopping.svg new file mode 100644 index 00000000..697682ee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cart-shopping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cash-register.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cash-register.svg new file mode 100644 index 00000000..75a3c82a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cash-register.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cat.svg new file mode 100644 index 00000000..a3347771 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cedi-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cedi-sign.svg new file mode 100644 index 00000000..2f3db390 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cedi-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cent-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cent-sign.svg new file mode 100644 index 00000000..04cb0306 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cent-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/certificate.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/certificate.svg new file mode 100644 index 00000000..bf8d086d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/certificate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chair.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chair.svg new file mode 100644 index 00000000..59d989f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chalkboard-user.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chalkboard-user.svg new file mode 100644 index 00000000..ad065562 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chalkboard-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg new file mode 100644 index 00000000..2a315044 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/champagne-glasses.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/champagne-glasses.svg new file mode 100644 index 00000000..f9629511 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/champagne-glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/charging-station.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/charging-station.svg new file mode 100644 index 00000000..e2f4d39b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/charging-station.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-area.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-area.svg new file mode 100644 index 00000000..69ed05c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-area.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-bar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-bar.svg new file mode 100644 index 00000000..51ca300d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-column.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-column.svg new file mode 100644 index 00000000..4e25c7cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-column.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-gantt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-gantt.svg new file mode 100644 index 00000000..302c377a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-gantt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-line.svg new file mode 100644 index 00000000..fa06f7ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-pie.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-pie.svg new file mode 100644 index 00000000..cacfde32 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-simple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-simple.svg new file mode 100644 index 00000000..fc34fc48 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chart-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/check-double.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/check-double.svg new file mode 100644 index 00000000..0db79bcf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/check-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/check-to-slot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/check-to-slot.svg new file mode 100644 index 00000000..5c9926cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/check-to-slot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/check.svg new file mode 100644 index 00000000..e0e7c942 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cheese.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cheese.svg new file mode 100644 index 00000000..be46fa28 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cheese.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-bishop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-bishop.svg new file mode 100644 index 00000000..e69f5090 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-bishop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-board.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-board.svg new file mode 100644 index 00000000..8e3e7a15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-king.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-king.svg new file mode 100644 index 00000000..2d1068fe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-king.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-knight.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-knight.svg new file mode 100644 index 00000000..24496f30 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-knight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-pawn.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-pawn.svg new file mode 100644 index 00000000..cdf7b7be --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-pawn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-queen.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-queen.svg new file mode 100644 index 00000000..a03660d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-queen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-rook.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-rook.svg new file mode 100644 index 00000000..b402434a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess-rook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess.svg new file mode 100644 index 00000000..362a2dce --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chess.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-down.svg new file mode 100644 index 00000000..2055a4a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-left.svg new file mode 100644 index 00000000..03c9c8f4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-right.svg new file mode 100644 index 00000000..b84c11a9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-up.svg new file mode 100644 index 00000000..a04a1ac1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child-combatant.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child-combatant.svg new file mode 100644 index 00000000..68597276 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child-combatant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child-dress.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child-dress.svg new file mode 100644 index 00000000..caaa14a1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child-dress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child-reaching.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child-reaching.svg new file mode 100644 index 00000000..6ee9c6c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child-reaching.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child.svg new file mode 100644 index 00000000..0774f518 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/child.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/children.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/children.svg new file mode 100644 index 00000000..e9aa5b41 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/children.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/church.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/church.svg new file mode 100644 index 00000000..035f767e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/church.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-down.svg new file mode 100644 index 00000000..849db9f5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-left.svg new file mode 100644 index 00000000..c5c6b7fb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-right.svg new file mode 100644 index 00000000..f0a48252 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-up.svg new file mode 100644 index 00000000..79093ab1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-check.svg new file mode 100644 index 00000000..314fe353 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-down.svg new file mode 100644 index 00000000..0db0b309 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-left.svg new file mode 100644 index 00000000..5fa769d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-right.svg new file mode 100644 index 00000000..1524f733 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-up.svg new file mode 100644 index 00000000..be9712df --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-dollar-to-slot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-dollar-to-slot.svg new file mode 100644 index 00000000..cd57f57b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-dollar-to-slot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-dot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-dot.svg new file mode 100644 index 00000000..55739988 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-down.svg new file mode 100644 index 00000000..ff3d49ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-exclamation.svg new file mode 100644 index 00000000..90da5089 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-h.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-h.svg new file mode 100644 index 00000000..fcfaae91 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-half-stroke.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-half-stroke.svg new file mode 100644 index 00000000..cb8dec09 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-half-stroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-info.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-info.svg new file mode 100644 index 00000000..1ba5b9e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-left.svg new file mode 100644 index 00000000..1404694b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-minus.svg new file mode 100644 index 00000000..232ae467 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-nodes.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-nodes.svg new file mode 100644 index 00000000..2408bbad --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-nodes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-notch.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-notch.svg new file mode 100644 index 00000000..13b6ae2f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-notch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-pause.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-pause.svg new file mode 100644 index 00000000..18288d66 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-play.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-play.svg new file mode 100644 index 00000000..420186f6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-plus.svg new file mode 100644 index 00000000..474d644f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-question.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-question.svg new file mode 100644 index 00000000..38792cee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-radiation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-radiation.svg new file mode 100644 index 00000000..9e6252b4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-radiation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-right.svg new file mode 100644 index 00000000..1dce8cb7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-stop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-stop.svg new file mode 100644 index 00000000..c5d568ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-up.svg new file mode 100644 index 00000000..254d5de9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-user.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-user.svg new file mode 100644 index 00000000..a6804c88 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-xmark.svg new file mode 100644 index 00000000..9b7df148 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle.svg new file mode 100644 index 00000000..49bc41ba --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/city.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/city.svg new file mode 100644 index 00000000..6af22f93 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clapperboard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clapperboard.svg new file mode 100644 index 00000000..8ed37781 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clapperboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-check.svg new file mode 100644 index 00000000..1fb1c5dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-list.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-list.svg new file mode 100644 index 00000000..b3118ad9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-question.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-question.svg new file mode 100644 index 00000000..1826da70 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-user.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-user.svg new file mode 100644 index 00000000..2efcb746 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard.svg new file mode 100644 index 00000000..0c370c8d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clock-rotate-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clock-rotate-left.svg new file mode 100644 index 00000000..87adb7a8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clock-rotate-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clock.svg new file mode 100644 index 00000000..b77d9909 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clone.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clone.svg new file mode 100644 index 00000000..8ff5fe0d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/closed-captioning.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/closed-captioning.svg new file mode 100644 index 00000000..71d68042 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-arrow-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-arrow-down.svg new file mode 100644 index 00000000..583b6213 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-arrow-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-arrow-up.svg new file mode 100644 index 00000000..4097f639 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-bolt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-bolt.svg new file mode 100644 index 00000000..9c9bea91 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-meatball.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-meatball.svg new file mode 100644 index 00000000..b7b868a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-meatball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-moon-rain.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-moon-rain.svg new file mode 100644 index 00000000..a3d93e4a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-moon-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-moon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-moon.svg new file mode 100644 index 00000000..20603e97 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-rain.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-rain.svg new file mode 100644 index 00000000..b65f8019 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-showers-heavy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-showers-heavy.svg new file mode 100644 index 00000000..6d4b5523 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-showers-heavy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-showers-water.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-showers-water.svg new file mode 100644 index 00000000..011c2577 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-showers-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-sun-rain.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-sun-rain.svg new file mode 100644 index 00000000..b61d8fb1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-sun-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-sun.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-sun.svg new file mode 100644 index 00000000..b0eeaf6a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud.svg new file mode 100644 index 00000000..f3e1fc5c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clover.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clover.svg new file mode 100644 index 00000000..0204738d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/clover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-branch.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-branch.svg new file mode 100644 index 00000000..bf052604 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-commit.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-commit.svg new file mode 100644 index 00000000..5070ab75 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-compare.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-compare.svg new file mode 100644 index 00000000..1e3f24f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-fork.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-fork.svg new file mode 100644 index 00000000..6c67d785 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-fork.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-merge.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-merge.svg new file mode 100644 index 00000000..d60e209c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-pull-request.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-pull-request.svg new file mode 100644 index 00000000..4ed7aa67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code.svg new file mode 100644 index 00000000..310938e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/coins.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/coins.svg new file mode 100644 index 00000000..6b2900f0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/coins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/colon-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/colon-sign.svg new file mode 100644 index 00000000..782f8188 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/colon-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-dollar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-dollar.svg new file mode 100644 index 00000000..b6b28057 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-dots.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-dots.svg new file mode 100644 index 00000000..f73361d0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-medical.svg new file mode 100644 index 00000000..add55179 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-slash.svg new file mode 100644 index 00000000..c851a6d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-sms.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-sms.svg new file mode 100644 index 00000000..5ad74920 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment-sms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment.svg new file mode 100644 index 00000000..15291259 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comments-dollar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comments-dollar.svg new file mode 100644 index 00000000..6564ed70 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comments-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comments.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comments.svg new file mode 100644 index 00000000..c29ab592 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/comments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compact-disc.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compact-disc.svg new file mode 100644 index 00000000..402f65ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compact-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compass-drafting.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compass-drafting.svg new file mode 100644 index 00000000..6e58f71b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compass-drafting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compass.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compass.svg new file mode 100644 index 00000000..158f752a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compress.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compress.svg new file mode 100644 index 00000000..91384be7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/compress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/computer-mouse.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/computer-mouse.svg new file mode 100644 index 00000000..42ec284a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/computer-mouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/computer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/computer.svg new file mode 100644 index 00000000..ea5268cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/computer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cookie-bite.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cookie-bite.svg new file mode 100644 index 00000000..fc3f8c55 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cookie-bite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cookie.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cookie.svg new file mode 100644 index 00000000..339f79c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cookie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/copy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/copy.svg new file mode 100644 index 00000000..af80f252 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/copyright.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/copyright.svg new file mode 100644 index 00000000..64b8dcd1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/couch.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/couch.svg new file mode 100644 index 00000000..85bef3d3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/couch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cow.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cow.svg new file mode 100644 index 00000000..49596891 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/credit-card.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/credit-card.svg new file mode 100644 index 00000000..56cc35ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crop-simple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crop-simple.svg new file mode 100644 index 00000000..2d34496a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crop-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crop.svg new file mode 100644 index 00000000..ebe23640 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cross.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cross.svg new file mode 100644 index 00000000..2f13d85f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crosshairs.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crosshairs.svg new file mode 100644 index 00000000..0b1d83d1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crosshairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crow.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crow.svg new file mode 100644 index 00000000..030b21b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crown.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crown.svg new file mode 100644 index 00000000..52dd069c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crutch.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crutch.svg new file mode 100644 index 00000000..bab1b4a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/crutch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cruzeiro-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cruzeiro-sign.svg new file mode 100644 index 00000000..87d89d43 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cruzeiro-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cube.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cube.svg new file mode 100644 index 00000000..47719cb6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cubes-stacked.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cubes-stacked.svg new file mode 100644 index 00000000..eec01412 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cubes-stacked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cubes.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cubes.svg new file mode 100644 index 00000000..dbed1b81 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/cubes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/d.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/d.svg new file mode 100644 index 00000000..1e907732 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/database.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/database.svg new file mode 100644 index 00000000..b5218e50 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/delete-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/delete-left.svg new file mode 100644 index 00000000..c9bab49c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/delete-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/democrat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/democrat.svg new file mode 100644 index 00000000..a691c9c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/democrat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/desktop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/desktop.svg new file mode 100644 index 00000000..106cda5c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dharmachakra.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dharmachakra.svg new file mode 100644 index 00000000..f7a675e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dharmachakra.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-next.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-next.svg new file mode 100644 index 00000000..36b06897 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-predecessor.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-predecessor.svg new file mode 100644 index 00000000..4d96ce4b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-predecessor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-project.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-project.svg new file mode 100644 index 00000000..584377f6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-project.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-successor.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-successor.svg new file mode 100644 index 00000000..96e8b07b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diagram-successor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diamond-turn-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diamond-turn-right.svg new file mode 100644 index 00000000..646af159 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diamond-turn-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diamond.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diamond.svg new file mode 100644 index 00000000..561f4d58 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-d20.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-d20.svg new file mode 100644 index 00000000..5d7137f5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-d20.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-d6.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-d6.svg new file mode 100644 index 00000000..3d9d1038 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-five.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-five.svg new file mode 100644 index 00000000..25c59610 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-four.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-four.svg new file mode 100644 index 00000000..9a79d51f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg new file mode 100644 index 00000000..0672a92a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-six.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-six.svg new file mode 100644 index 00000000..88db807d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-three.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-three.svg new file mode 100644 index 00000000..3112f5d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-two.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-two.svg new file mode 100644 index 00000000..542e544a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice.svg new file mode 100644 index 00000000..deb83f6e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/disease.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/disease.svg new file mode 100644 index 00000000..2aaeb12f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/disease.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/display.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/display.svg new file mode 100644 index 00000000..557a6bcd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/display.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/divide.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/divide.svg new file mode 100644 index 00000000..6c91b5fb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/divide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dna.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dna.svg new file mode 100644 index 00000000..4aae63e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dog.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dog.svg new file mode 100644 index 00000000..2b432731 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dollar-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dollar-sign.svg new file mode 100644 index 00000000..794cecac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dollar-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dolly.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dolly.svg new file mode 100644 index 00000000..19898855 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dolly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dong-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dong-sign.svg new file mode 100644 index 00000000..70fc0858 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dong-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/door-closed.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/door-closed.svg new file mode 100644 index 00000000..720e862e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/door-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/door-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/door-open.svg new file mode 100644 index 00000000..0ca9fc7d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/door-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dove.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dove.svg new file mode 100644 index 00000000..9747e864 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/down-left-and-up-right-to-center.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/down-left-and-up-right-to-center.svg new file mode 100644 index 00000000..d7a168e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/down-left-and-up-right-to-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/down-long.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/down-long.svg new file mode 100644 index 00000000..24a6abea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/down-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/download.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/download.svg new file mode 100644 index 00000000..6ed49b54 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dragon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dragon.svg new file mode 100644 index 00000000..dc49d43e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dragon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/draw-polygon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/draw-polygon.svg new file mode 100644 index 00000000..73e5ced3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/draw-polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/droplet-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/droplet-slash.svg new file mode 100644 index 00000000..15aa08ce --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/droplet-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/droplet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/droplet.svg new file mode 100644 index 00000000..252d1e8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/drum-steelpan.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/drum-steelpan.svg new file mode 100644 index 00000000..e1cff26f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/drum-steelpan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/drum.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/drum.svg new file mode 100644 index 00000000..71b6c653 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/drum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/drumstick-bite.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/drumstick-bite.svg new file mode 100644 index 00000000..a10699c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/drumstick-bite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dumbbell.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dumbbell.svg new file mode 100644 index 00000000..18c7e6c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dumbbell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dumpster-fire.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dumpster-fire.svg new file mode 100644 index 00000000..2cc82a19 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dumpster-fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dumpster.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dumpster.svg new file mode 100644 index 00000000..ca7775c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dumpster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dungeon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dungeon.svg new file mode 100644 index 00000000..7182d988 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/dungeon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/e.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/e.svg new file mode 100644 index 00000000..6007e523 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ear-deaf.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ear-deaf.svg new file mode 100644 index 00000000..b63c7517 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ear-deaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ear-listen.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ear-listen.svg new file mode 100644 index 00000000..4bdfc300 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ear-listen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-africa.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-africa.svg new file mode 100644 index 00000000..8a3baf80 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-africa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-americas.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-americas.svg new file mode 100644 index 00000000..1f69c191 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-americas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-asia.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-asia.svg new file mode 100644 index 00000000..2b38eda8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-asia.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-europe.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-europe.svg new file mode 100644 index 00000000..ac911e0c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-europe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-oceania.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-oceania.svg new file mode 100644 index 00000000..14219bc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/earth-oceania.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/egg.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/egg.svg new file mode 100644 index 00000000..24206449 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/egg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eject.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eject.svg new file mode 100644 index 00000000..62b70e52 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/elevator.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/elevator.svg new file mode 100644 index 00000000..83738c7b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/elevator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ellipsis-vertical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ellipsis-vertical.svg new file mode 100644 index 00000000..311fe25a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ellipsis-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ellipsis.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ellipsis.svg new file mode 100644 index 00000000..4d1dadbc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ellipsis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope-circle-check.svg new file mode 100644 index 00000000..94c4d8e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope-open-text.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope-open-text.svg new file mode 100644 index 00000000..9a384491 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope-open-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope-open.svg new file mode 100644 index 00000000..cb7a36fe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope.svg new file mode 100644 index 00000000..b19c1c3d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelopes-bulk.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelopes-bulk.svg new file mode 100644 index 00000000..7a9d8a44 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/envelopes-bulk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/equals.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/equals.svg new file mode 100644 index 00000000..3ff8fa49 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/equals.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eraser.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eraser.svg new file mode 100644 index 00000000..92dbb408 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eraser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ethernet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ethernet.svg new file mode 100644 index 00000000..7d3ab6f5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ethernet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/euro-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/euro-sign.svg new file mode 100644 index 00000000..5a38dfb2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/euro-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/exclamation.svg new file mode 100644 index 00000000..70c036eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/expand.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/expand.svg new file mode 100644 index 00000000..3401de1a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/explosion.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/explosion.svg new file mode 100644 index 00000000..68032d19 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/explosion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye-dropper.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye-dropper.svg new file mode 100644 index 00000000..17db77d0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye-dropper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye-low-vision.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye-low-vision.svg new file mode 100644 index 00000000..d7757613 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye-low-vision.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye-slash.svg new file mode 100644 index 00000000..42db7748 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye.svg new file mode 100644 index 00000000..56291fbe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/f.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/f.svg new file mode 100644 index 00000000..77987333 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-angry.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-angry.svg new file mode 100644 index 00000000..0252b825 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-dizzy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-dizzy.svg new file mode 100644 index 00000000..2348800f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-flushed.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-flushed.svg new file mode 100644 index 00000000..12a4605c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-flushed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-frown-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-frown-open.svg new file mode 100644 index 00000000..0d654cdc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-frown-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-frown.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-frown.svg new file mode 100644 index 00000000..a08c6c50 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grimace.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grimace.svg new file mode 100644 index 00000000..bd3f0b8e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grimace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-beam-sweat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-beam-sweat.svg new file mode 100644 index 00000000..c5fb8a31 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-beam-sweat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-beam.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-beam.svg new file mode 100644 index 00000000..dbc3e27f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-hearts.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-hearts.svg new file mode 100644 index 00000000..00315f37 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-hearts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-squint-tears.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-squint-tears.svg new file mode 100644 index 00000000..2fbf173c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-squint-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-squint.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-squint.svg new file mode 100644 index 00000000..a1e4a316 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-stars.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-stars.svg new file mode 100644 index 00000000..45072128 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-stars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tears.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tears.svg new file mode 100644 index 00000000..ea4411a6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tongue-squint.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tongue-squint.svg new file mode 100644 index 00000000..32e12545 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tongue-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tongue-wink.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tongue-wink.svg new file mode 100644 index 00000000..2c279f06 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tongue-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tongue.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tongue.svg new file mode 100644 index 00000000..9360dcbb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-tongue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-wide.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-wide.svg new file mode 100644 index 00000000..f3b72f9c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-wide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-wink.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-wink.svg new file mode 100644 index 00000000..7c361573 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin.svg new file mode 100644 index 00000000..f3aa1bc0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-kiss-beam.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-kiss-beam.svg new file mode 100644 index 00000000..168c13bc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-kiss-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-kiss-wink-heart.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-kiss-wink-heart.svg new file mode 100644 index 00000000..7312e5b4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-kiss-wink-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-kiss.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-kiss.svg new file mode 100644 index 00000000..2e262a3c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-kiss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh-beam.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh-beam.svg new file mode 100644 index 00000000..29bb4152 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh-squint.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh-squint.svg new file mode 100644 index 00000000..2c1d4b65 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh-wink.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh-wink.svg new file mode 100644 index 00000000..30d84bbd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh.svg new file mode 100644 index 00000000..0f57dc39 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-laugh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-meh-blank.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-meh-blank.svg new file mode 100644 index 00000000..0a555652 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-meh-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-meh.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-meh.svg new file mode 100644 index 00000000..83228510 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-rolling-eyes.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-rolling-eyes.svg new file mode 100644 index 00000000..2d6343ba --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-rolling-eyes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-sad-cry.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-sad-cry.svg new file mode 100644 index 00000000..41d21b64 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-sad-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-sad-tear.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-sad-tear.svg new file mode 100644 index 00000000..666db399 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-sad-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-smile-beam.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-smile-beam.svg new file mode 100644 index 00000000..c3c1a539 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-smile-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-smile-wink.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-smile-wink.svg new file mode 100644 index 00000000..d54209b3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-smile-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-smile.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-smile.svg new file mode 100644 index 00000000..1a03a37a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-surprise.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-surprise.svg new file mode 100644 index 00000000..cfbf7fa5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-surprise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-tired.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-tired.svg new file mode 100644 index 00000000..28829ed9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/face-tired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fan.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fan.svg new file mode 100644 index 00000000..8f7a549a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/faucet-drip.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/faucet-drip.svg new file mode 100644 index 00000000..e3310268 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/faucet-drip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/faucet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/faucet.svg new file mode 100644 index 00000000..eb58785f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/faucet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fax.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fax.svg new file mode 100644 index 00000000..e53cb784 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fax.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/feather-pointed.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/feather-pointed.svg new file mode 100644 index 00000000..5cc2ff35 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/feather-pointed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/feather.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/feather.svg new file mode 100644 index 00000000..7601e22f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/feather.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ferry.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ferry.svg new file mode 100644 index 00000000..727acdd4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ferry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-arrow-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-arrow-down.svg new file mode 100644 index 00000000..06e33b49 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-arrow-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-arrow-up.svg new file mode 100644 index 00000000..7e7e78b9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-audio.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-audio.svg new file mode 100644 index 00000000..d0d4ddc0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-check.svg new file mode 100644 index 00000000..c3019b99 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-exclamation.svg new file mode 100644 index 00000000..688817a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-minus.svg new file mode 100644 index 00000000..827678cc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-plus.svg new file mode 100644 index 00000000..131b5a76 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-question.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-question.svg new file mode 100644 index 00000000..e5415526 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-xmark.svg new file mode 100644 index 00000000..b6bbfded --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-code.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-code.svg new file mode 100644 index 00000000..dfe284d7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-contract.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-contract.svg new file mode 100644 index 00000000..db77a4a8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-contract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-csv.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-csv.svg new file mode 100644 index 00000000..abaa6072 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-csv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-excel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-excel.svg new file mode 100644 index 00000000..54cf7f82 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-excel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-export.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-export.svg new file mode 100644 index 00000000..8f519efa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-image.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-image.svg new file mode 100644 index 00000000..e37fcf54 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-import.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-import.svg new file mode 100644 index 00000000..bbb8710e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-invoice-dollar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-invoice-dollar.svg new file mode 100644 index 00000000..fa2c3516 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-invoice-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-invoice.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-invoice.svg new file mode 100644 index 00000000..e620b776 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-invoice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-lines.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-lines.svg new file mode 100644 index 00000000..80c79c73 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-medical.svg new file mode 100644 index 00000000..6ded7670 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-pdf.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-pdf.svg new file mode 100644 index 00000000..9320c270 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-pen.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-pen.svg new file mode 100644 index 00000000..5cedb176 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-powerpoint.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-powerpoint.svg new file mode 100644 index 00000000..1d02fd95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-powerpoint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-prescription.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-prescription.svg new file mode 100644 index 00000000..cf814ea6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-prescription.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-shield.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-shield.svg new file mode 100644 index 00000000..d0817fa8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-signature.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-signature.svg new file mode 100644 index 00000000..ac471d77 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-signature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-video.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-video.svg new file mode 100644 index 00000000..6bb6a7ce --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-waveform.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-waveform.svg new file mode 100644 index 00000000..163827fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-waveform.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-word.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-word.svg new file mode 100644 index 00000000..dfc72b36 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-word.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-zipper.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-zipper.svg new file mode 100644 index 00000000..49c6d50d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file-zipper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file.svg new file mode 100644 index 00000000..cfaa4f16 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fill-drip.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fill-drip.svg new file mode 100644 index 00000000..c374a05e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fill-drip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fill.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fill.svg new file mode 100644 index 00000000..2e9ed99d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/film.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/film.svg new file mode 100644 index 00000000..ebcda928 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/filter-circle-dollar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/filter-circle-dollar.svg new file mode 100644 index 00000000..c5f3d1ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/filter-circle-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/filter-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/filter-circle-xmark.svg new file mode 100644 index 00000000..4d94ac1a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/filter-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/filter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/filter.svg new file mode 100644 index 00000000..068ce222 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fingerprint.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fingerprint.svg new file mode 100644 index 00000000..978a0c1e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fingerprint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-burner.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-burner.svg new file mode 100644 index 00000000..5b25ac4c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-burner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-extinguisher.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-extinguisher.svg new file mode 100644 index 00000000..4e9932d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-extinguisher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-flame-curved.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-flame-curved.svg new file mode 100644 index 00000000..d22a13db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-flame-curved.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-flame-simple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-flame-simple.svg new file mode 100644 index 00000000..76372c6e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire-flame-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire.svg new file mode 100644 index 00000000..b4bc3697 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fish-fins.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fish-fins.svg new file mode 100644 index 00000000..6e5de34a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fish-fins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fish.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fish.svg new file mode 100644 index 00000000..b62a6525 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/fish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flag-checkered.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flag-checkered.svg new file mode 100644 index 00000000..356b2c67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flag-checkered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flag-usa.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flag-usa.svg new file mode 100644 index 00000000..56b5b04f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flag-usa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flag.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flag.svg new file mode 100644 index 00000000..5d9f3a30 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flask-vial.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flask-vial.svg new file mode 100644 index 00000000..88f434e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flask-vial.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flask.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flask.svg new file mode 100644 index 00000000..84d7d432 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/floppy-disk.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/floppy-disk.svg new file mode 100644 index 00000000..f4e10b05 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/floppy-disk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/florin-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/florin-sign.svg new file mode 100644 index 00000000..41a657ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/florin-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-closed.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-closed.svg new file mode 100644 index 00000000..eafc7d44 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-minus.svg new file mode 100644 index 00000000..8a588b98 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-open.svg new file mode 100644 index 00000000..66414778 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-plus.svg new file mode 100644 index 00000000..67be7284 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-tree.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-tree.svg new file mode 100644 index 00000000..ae677ffe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder-tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder.svg new file mode 100644 index 00000000..6f4d35ae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/font-awesome.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/font-awesome.svg new file mode 100644 index 00000000..c55bf8e7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/font-awesome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/font.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/font.svg new file mode 100644 index 00000000..2a330c3e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/font.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/football.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/football.svg new file mode 100644 index 00000000..86e1db32 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/forward-fast.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/forward-fast.svg new file mode 100644 index 00000000..b041409d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/forward-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/forward-step.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/forward-step.svg new file mode 100644 index 00000000..a27b7843 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/forward-step.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/forward.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/forward.svg new file mode 100644 index 00000000..3890a87a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/franc-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/franc-sign.svg new file mode 100644 index 00000000..46398af6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/franc-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/frog.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/frog.svg new file mode 100644 index 00000000..038c6878 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/frog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/futbol.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/futbol.svg new file mode 100644 index 00000000..b58d47ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/futbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/g.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/g.svg new file mode 100644 index 00000000..d19168c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/g.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gamepad.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gamepad.svg new file mode 100644 index 00000000..bc0fe2eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gamepad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gas-pump.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gas-pump.svg new file mode 100644 index 00000000..9c800242 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gas-pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge-high.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge-high.svg new file mode 100644 index 00000000..8bb0730f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge-simple-high.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge-simple-high.svg new file mode 100644 index 00000000..c9b1a5c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge-simple-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge-simple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge-simple.svg new file mode 100644 index 00000000..7241b588 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge.svg new file mode 100644 index 00000000..d46e56d0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gauge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gavel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gavel.svg new file mode 100644 index 00000000..808135fd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gavel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gear.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gear.svg new file mode 100644 index 00000000..67d3487d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gears.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gears.svg new file mode 100644 index 00000000..85638c1e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gears.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gem.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gem.svg new file mode 100644 index 00000000..4a21edb4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/genderless.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/genderless.svg new file mode 100644 index 00000000..5bc63456 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/genderless.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ghost.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ghost.svg new file mode 100644 index 00000000..056e20f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ghost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gift.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gift.svg new file mode 100644 index 00000000..a6d60ab9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gifts.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gifts.svg new file mode 100644 index 00000000..6fb107ae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gifts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glass-water-droplet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glass-water-droplet.svg new file mode 100644 index 00000000..36a0acdd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glass-water-droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glass-water.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glass-water.svg new file mode 100644 index 00000000..a5d90250 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glass-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glasses.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glasses.svg new file mode 100644 index 00000000..90d7caa4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/globe.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/globe.svg new file mode 100644 index 00000000..1973a454 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/golf-ball-tee.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/golf-ball-tee.svg new file mode 100644 index 00000000..a61c44c8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/golf-ball-tee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gopuram.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gopuram.svg new file mode 100644 index 00000000..0d535e83 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gopuram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/graduation-cap.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/graduation-cap.svg new file mode 100644 index 00000000..d2ae047a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/graduation-cap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/greater-than-equal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/greater-than-equal.svg new file mode 100644 index 00000000..ecd44760 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/greater-than-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/greater-than.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/greater-than.svg new file mode 100644 index 00000000..f50b97ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/greater-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-lines-vertical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-lines-vertical.svg new file mode 100644 index 00000000..b19b4ed4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-lines-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-lines.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-lines.svg new file mode 100644 index 00000000..71470a70 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-vertical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-vertical.svg new file mode 100644 index 00000000..a8bf5fae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip.svg new file mode 100644 index 00000000..62930c0e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/grip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/group-arrows-rotate.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/group-arrows-rotate.svg new file mode 100644 index 00000000..1524f2ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/group-arrows-rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/guarani-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/guarani-sign.svg new file mode 100644 index 00000000..c000e2be --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/guarani-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/guitar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/guitar.svg new file mode 100644 index 00000000..94bcc5eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/guitar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gun.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gun.svg new file mode 100644 index 00000000..9cea28ad --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/gun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/h.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/h.svg new file mode 100644 index 00000000..b8aef211 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hammer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hammer.svg new file mode 100644 index 00000000..935be4de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hamsa.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hamsa.svg new file mode 100644 index 00000000..68737cba --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hamsa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-back-fist.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-back-fist.svg new file mode 100644 index 00000000..e9a5aa75 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-back-fist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-dots.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-dots.svg new file mode 100644 index 00000000..6ca30d7c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-fist.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-fist.svg new file mode 100644 index 00000000..03bab11d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-fist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-dollar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-dollar.svg new file mode 100644 index 00000000..767cb550 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-droplet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-droplet.svg new file mode 100644 index 00000000..3a94e9ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-hand.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-hand.svg new file mode 100644 index 00000000..fb6db297 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-hand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-heart.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-heart.svg new file mode 100644 index 00000000..531fbef2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-medical.svg new file mode 100644 index 00000000..d1cf3d12 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding.svg new file mode 100644 index 00000000..64d876b7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-holding.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-lizard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-lizard.svg new file mode 100644 index 00000000..7e389db2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-lizard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-middle-finger.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-middle-finger.svg new file mode 100644 index 00000000..db2172e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-middle-finger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-peace.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-peace.svg new file mode 100644 index 00000000..754bee7e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-down.svg new file mode 100644 index 00000000..8dd096ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-left.svg new file mode 100644 index 00000000..c8de51c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-right.svg new file mode 100644 index 00000000..6273d6c7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-up.svg new file mode 100644 index 00000000..e78784b4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-point-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-pointer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-pointer.svg new file mode 100644 index 00000000..1212a53d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-scissors.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-scissors.svg new file mode 100644 index 00000000..e9b8ba46 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-sparkles.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-sparkles.svg new file mode 100644 index 00000000..7aefe1e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-sparkles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-spock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-spock.svg new file mode 100644 index 00000000..3f83ab1d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand-spock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand.svg new file mode 100644 index 00000000..9834a4f4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handcuffs.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handcuffs.svg new file mode 100644 index 00000000..702ed475 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handcuffs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-asl-interpreting.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-asl-interpreting.svg new file mode 100644 index 00000000..5614cb23 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-asl-interpreting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-bound.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-bound.svg new file mode 100644 index 00000000..7b062f4b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-bound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-bubbles.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-bubbles.svg new file mode 100644 index 00000000..b9aac548 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-bubbles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-clapping.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-clapping.svg new file mode 100644 index 00000000..c5ed232f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-clapping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-holding-child.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-holding-child.svg new file mode 100644 index 00000000..f06c43d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-holding-child.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-holding-circle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-holding-circle.svg new file mode 100644 index 00000000..be8f0f79 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-holding-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-holding.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-holding.svg new file mode 100644 index 00000000..24cbab67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-holding.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-praying.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-praying.svg new file mode 100644 index 00000000..71ebe7a3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands-praying.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands.svg new file mode 100644 index 00000000..6ce73f66 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hands.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-angle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-angle.svg new file mode 100644 index 00000000..0b621a26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-angle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-simple-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-simple-slash.svg new file mode 100644 index 00000000..738bfb44 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-simple-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-simple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-simple.svg new file mode 100644 index 00000000..8616b0ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-slash.svg new file mode 100644 index 00000000..3d6361ae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake.svg new file mode 100644 index 00000000..65c4f12e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/handshake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hanukiah.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hanukiah.svg new file mode 100644 index 00000000..20e2392c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hanukiah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hard-drive.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hard-drive.svg new file mode 100644 index 00000000..6ad22373 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hard-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hashtag.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hashtag.svg new file mode 100644 index 00000000..d4b49fde --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hashtag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hat-cowboy-side.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hat-cowboy-side.svg new file mode 100644 index 00000000..4441e2c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hat-cowboy-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hat-cowboy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hat-cowboy.svg new file mode 100644 index 00000000..df9bac06 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hat-cowboy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hat-wizard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hat-wizard.svg new file mode 100644 index 00000000..7aebf55a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hat-wizard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-cough-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-cough-slash.svg new file mode 100644 index 00000000..3414ce3a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-cough-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-cough.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-cough.svg new file mode 100644 index 00000000..1cadac89 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-cough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-mask.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-mask.svg new file mode 100644 index 00000000..52835153 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-virus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-virus.svg new file mode 100644 index 00000000..561b647b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/head-side-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heading.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heading.svg new file mode 100644 index 00000000..6c4a6231 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/headphones-simple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/headphones-simple.svg new file mode 100644 index 00000000..3150ef0f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/headphones-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/headphones.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/headphones.svg new file mode 100644 index 00000000..4fcc0849 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/headset.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/headset.svg new file mode 100644 index 00000000..bd4b520a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-bolt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-bolt.svg new file mode 100644 index 00000000..d141c21f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-check.svg new file mode 100644 index 00000000..a24197c7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-exclamation.svg new file mode 100644 index 00000000..02b2fe89 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-minus.svg new file mode 100644 index 00000000..dad3e239 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-plus.svg new file mode 100644 index 00000000..9f6173c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-xmark.svg new file mode 100644 index 00000000..188b5ec9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-crack.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-crack.svg new file mode 100644 index 00000000..e0d3e85a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-crack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-pulse.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-pulse.svg new file mode 100644 index 00000000..c7fb77bd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart-pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart.svg new file mode 100644 index 00000000..f5061d0e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helicopter-symbol.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helicopter-symbol.svg new file mode 100644 index 00000000..ca13db9c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helicopter-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helicopter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helicopter.svg new file mode 100644 index 00000000..624e092f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helicopter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helmet-safety.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helmet-safety.svg new file mode 100644 index 00000000..ea25ddee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helmet-safety.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helmet-un.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helmet-un.svg new file mode 100644 index 00000000..7dd69518 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/helmet-un.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/highlighter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/highlighter.svg new file mode 100644 index 00000000..9350104a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/highlighter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hill-avalanche.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hill-avalanche.svg new file mode 100644 index 00000000..12520606 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hill-avalanche.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hill-rockslide.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hill-rockslide.svg new file mode 100644 index 00000000..885f2830 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hill-rockslide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hippo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hippo.svg new file mode 100644 index 00000000..cc74bc03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hippo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg new file mode 100644 index 00000000..4caf04b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/holly-berry.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/holly-berry.svg new file mode 100644 index 00000000..b1b018de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/holly-berry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/horse-head.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/horse-head.svg new file mode 100644 index 00000000..0e880fa5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/horse-head.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/horse.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/horse.svg new file mode 100644 index 00000000..65284ac5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/horse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hospital-user.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hospital-user.svg new file mode 100644 index 00000000..05446ad7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hospital-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hospital.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hospital.svg new file mode 100644 index 00000000..67ac0d27 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hot-tub-person.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hot-tub-person.svg new file mode 100644 index 00000000..d8608d80 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hot-tub-person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hotdog.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hotdog.svg new file mode 100644 index 00000000..b6d8a95f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hotdog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hotel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hotel.svg new file mode 100644 index 00000000..5d2603d6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hotel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass-end.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass-end.svg new file mode 100644 index 00000000..a77f6070 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass-end.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass-half.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass-half.svg new file mode 100644 index 00000000..3c176944 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass-start.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass-start.svg new file mode 100644 index 00000000..8cb3bce2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass-start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass.svg new file mode 100644 index 00000000..6c4f6b18 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-crack.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-crack.svg new file mode 100644 index 00000000..812534e2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-crack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-medical.svg new file mode 100644 index 00000000..476126d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-user.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-user.svg new file mode 100644 index 00000000..2d46885d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-window.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-window.svg new file mode 100644 index 00000000..2a710633 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney-window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney.svg new file mode 100644 index 00000000..85c8e2c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-chimney.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-circle-check.svg new file mode 100644 index 00000000..32cfda0c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-circle-exclamation.svg new file mode 100644 index 00000000..6757df15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-circle-xmark.svg new file mode 100644 index 00000000..20cd390d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-crack.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-crack.svg new file mode 100644 index 00000000..9e2c759d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-crack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-fire.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-fire.svg new file mode 100644 index 00000000..630a8ae8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-flag.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-flag.svg new file mode 100644 index 00000000..ca8e7da3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-flood-water-circle-arrow-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-flood-water-circle-arrow-right.svg new file mode 100644 index 00000000..2538d884 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-flood-water-circle-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-flood-water.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-flood-water.svg new file mode 100644 index 00000000..03c85a64 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-flood-water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-laptop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-laptop.svg new file mode 100644 index 00000000..a73125bb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-lock.svg new file mode 100644 index 00000000..ee063418 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-circle-check.svg new file mode 100644 index 00000000..6562d65e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-circle-exclamation.svg new file mode 100644 index 00000000..0c1c6e5f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-circle-xmark.svg new file mode 100644 index 00000000..af06de66 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-flag.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-flag.svg new file mode 100644 index 00000000..0943459a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical.svg new file mode 100644 index 00000000..fea8913d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-signal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-signal.svg new file mode 100644 index 00000000..097afac0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-tsunami.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-tsunami.svg new file mode 100644 index 00000000..9f016147 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-tsunami.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-user.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-user.svg new file mode 100644 index 00000000..ec316255 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house.svg new file mode 100644 index 00000000..80427d02 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hryvnia-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hryvnia-sign.svg new file mode 100644 index 00000000..cb462c75 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hryvnia-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hurricane.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hurricane.svg new file mode 100644 index 00000000..92a7e7cc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/hurricane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/i-cursor.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/i-cursor.svg new file mode 100644 index 00000000..082ba597 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/i-cursor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/i.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/i.svg new file mode 100644 index 00000000..3fcd545e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/i.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ice-cream.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ice-cream.svg new file mode 100644 index 00000000..16e50abb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ice-cream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/icicles.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/icicles.svg new file mode 100644 index 00000000..1f490a3c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/icicles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/icons.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/icons.svg new file mode 100644 index 00000000..8e614d97 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/icons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/id-badge.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/id-badge.svg new file mode 100644 index 00000000..183927a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/id-badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/id-card-clip.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/id-card-clip.svg new file mode 100644 index 00000000..4127f1b2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/id-card-clip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/id-card.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/id-card.svg new file mode 100644 index 00000000..cbe9b1cc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/id-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/igloo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/igloo.svg new file mode 100644 index 00000000..62b6452d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/igloo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/image-portrait.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/image-portrait.svg new file mode 100644 index 00000000..c153c776 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/image-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/image.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/image.svg new file mode 100644 index 00000000..717fb979 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/images.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/images.svg new file mode 100644 index 00000000..2bf09d3a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/inbox.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/inbox.svg new file mode 100644 index 00000000..814ca8ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/indent.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/indent.svg new file mode 100644 index 00000000..467aaba1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/indian-rupee-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/indian-rupee-sign.svg new file mode 100644 index 00000000..6654fa4e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/indian-rupee-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/industry.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/industry.svg new file mode 100644 index 00000000..16f56c17 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/industry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/infinity.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/infinity.svg new file mode 100644 index 00000000..ad7a30ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/infinity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/info.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/info.svg new file mode 100644 index 00000000..a908a000 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/italic.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/italic.svg new file mode 100644 index 00000000..059185e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/j.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/j.svg new file mode 100644 index 00000000..cd80e54f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/j.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jar-wheat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jar-wheat.svg new file mode 100644 index 00000000..b3146ee6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jar-wheat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jar.svg new file mode 100644 index 00000000..9cb936dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jedi.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jedi.svg new file mode 100644 index 00000000..3d55e39b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jedi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jet-fighter-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jet-fighter-up.svg new file mode 100644 index 00000000..aa307f32 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jet-fighter-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jet-fighter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jet-fighter.svg new file mode 100644 index 00000000..49fd5a44 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jet-fighter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/joint.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/joint.svg new file mode 100644 index 00000000..fac6a6b3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/joint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jug-detergent.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jug-detergent.svg new file mode 100644 index 00000000..9ce632db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/jug-detergent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/k.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/k.svg new file mode 100644 index 00000000..6b063ed4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/k.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kaaba.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kaaba.svg new file mode 100644 index 00000000..2a11acab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kaaba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/key.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/key.svg new file mode 100644 index 00000000..21b42dcb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/keyboard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/keyboard.svg new file mode 100644 index 00000000..747a4626 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/khanda.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/khanda.svg new file mode 100644 index 00000000..71ad9afc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/khanda.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kip-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kip-sign.svg new file mode 100644 index 00000000..e5523efb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kip-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kit-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kit-medical.svg new file mode 100644 index 00000000..cddbbb96 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kit-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kitchen-set.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kitchen-set.svg new file mode 100644 index 00000000..397ead2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kitchen-set.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kiwi-bird.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kiwi-bird.svg new file mode 100644 index 00000000..585077ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/kiwi-bird.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/l.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/l.svg new file mode 100644 index 00000000..d87303e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/l.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/land-mine-on.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/land-mine-on.svg new file mode 100644 index 00000000..f1a6ec5d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/land-mine-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/landmark-dome.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/landmark-dome.svg new file mode 100644 index 00000000..e1b1d9ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/landmark-dome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/landmark-flag.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/landmark-flag.svg new file mode 100644 index 00000000..a39d7d36 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/landmark-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/landmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/landmark.svg new file mode 100644 index 00000000..d6e16bdb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/landmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/language.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/language.svg new file mode 100644 index 00000000..1fb303a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop-code.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop-code.svg new file mode 100644 index 00000000..9175e04c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop-file.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop-file.svg new file mode 100644 index 00000000..326f7e0c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop-file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop-medical.svg new file mode 100644 index 00000000..62a6b2ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop.svg new file mode 100644 index 00000000..70f9c3aa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lari-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lari-sign.svg new file mode 100644 index 00000000..c70e799c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lari-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/layer-group.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/layer-group.svg new file mode 100644 index 00000000..6d6dbf92 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/layer-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/leaf.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/leaf.svg new file mode 100644 index 00000000..0d29d964 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/left-long.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/left-long.svg new file mode 100644 index 00000000..8cc4a2b1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/left-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/left-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/left-right.svg new file mode 100644 index 00000000..210288ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lemon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lemon.svg new file mode 100644 index 00000000..5e6fb852 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lemon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/less-than-equal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/less-than-equal.svg new file mode 100644 index 00000000..914c724c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/less-than-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/less-than.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/less-than.svg new file mode 100644 index 00000000..525ac478 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/less-than.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/life-ring.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/life-ring.svg new file mode 100644 index 00000000..855e6b23 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/life-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lightbulb.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lightbulb.svg new file mode 100644 index 00000000..48692771 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lines-leaning.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lines-leaning.svg new file mode 100644 index 00000000..50d1070d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lines-leaning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/link-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/link-slash.svg new file mode 100644 index 00000000..619e197c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/link-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/link.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/link.svg new file mode 100644 index 00000000..191e7454 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lira-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lira-sign.svg new file mode 100644 index 00000000..ceec1d82 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lira-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list-check.svg new file mode 100644 index 00000000..72748bd0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list-ol.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list-ol.svg new file mode 100644 index 00000000..6454053d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list-ol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list-ul.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list-ul.svg new file mode 100644 index 00000000..ab55a8eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list-ul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list.svg new file mode 100644 index 00000000..f017952b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/litecoin-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/litecoin-sign.svg new file mode 100644 index 00000000..152003d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/litecoin-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg new file mode 100644 index 00000000..cbb2a0d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-crosshairs.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-crosshairs.svg new file mode 100644 index 00000000..6dee8c9c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-crosshairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-dot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-dot.svg new file mode 100644 index 00000000..7965068d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-pin-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-pin-lock.svg new file mode 100644 index 00000000..e83106db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-pin-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-pin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-pin.svg new file mode 100644 index 00000000..e5de57b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/location-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lock-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lock-open.svg new file mode 100644 index 00000000..290a5d2a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lock.svg new file mode 100644 index 00000000..4cd929bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/locust.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/locust.svg new file mode 100644 index 00000000..a5dcf79d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/locust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lungs-virus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lungs-virus.svg new file mode 100644 index 00000000..0d3f12cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lungs-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lungs.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lungs.svg new file mode 100644 index 00000000..53bc8d82 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/lungs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/m.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/m.svg new file mode 100644 index 00000000..0d8cf668 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/m.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnet.svg new file mode 100644 index 00000000..9a843fc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-arrow-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-arrow-right.svg new file mode 100644 index 00000000..7989383f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-chart.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-chart.svg new file mode 100644 index 00000000..95c53d89 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-dollar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-dollar.svg new file mode 100644 index 00000000..c8a26bd2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-location.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-location.svg new file mode 100644 index 00000000..47922b1e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-minus.svg new file mode 100644 index 00000000..228cd636 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-plus.svg new file mode 100644 index 00000000..08cc747e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass.svg new file mode 100644 index 00000000..2fabbf44 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/magnifying-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/manat-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/manat-sign.svg new file mode 100644 index 00000000..a2bd66f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/manat-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-location-dot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-location-dot.svg new file mode 100644 index 00000000..3e95ee07 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-location-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-location.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-location.svg new file mode 100644 index 00000000..e1ffbbc7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-pin.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-pin.svg new file mode 100644 index 00000000..9e40ed41 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map.svg new file mode 100644 index 00000000..f29e38fd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/marker.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/marker.svg new file mode 100644 index 00000000..8b378b65 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-and-venus-burst.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-and-venus-burst.svg new file mode 100644 index 00000000..e0b147a1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-and-venus-burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-and-venus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-and-venus.svg new file mode 100644 index 00000000..c7d399bb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-and-venus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-double.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-double.svg new file mode 100644 index 00000000..0fe88b77 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-right.svg new file mode 100644 index 00000000..849eafd5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-up.svg new file mode 100644 index 00000000..69934f3f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-stroke-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-stroke.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-stroke.svg new file mode 100644 index 00000000..f744b0d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars-stroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars.svg new file mode 100644 index 00000000..d4629284 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/martini-glass-citrus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/martini-glass-citrus.svg new file mode 100644 index 00000000..7500a574 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/martini-glass-citrus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/martini-glass-empty.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/martini-glass-empty.svg new file mode 100644 index 00000000..5bbaa33b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/martini-glass-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/martini-glass.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/martini-glass.svg new file mode 100644 index 00000000..3a67b519 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/martini-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mask-face.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mask-face.svg new file mode 100644 index 00000000..d040f95f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mask-face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mask-ventilator.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mask-ventilator.svg new file mode 100644 index 00000000..227e734b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mask-ventilator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mask.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mask.svg new file mode 100644 index 00000000..75883ddc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/masks-theater.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/masks-theater.svg new file mode 100644 index 00000000..919abcc0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/masks-theater.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mattress-pillow.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mattress-pillow.svg new file mode 100644 index 00000000..438aa0f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mattress-pillow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/maximize.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/maximize.svg new file mode 100644 index 00000000..f6e9f67e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/medal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/medal.svg new file mode 100644 index 00000000..4a24a4c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/memory.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/memory.svg new file mode 100644 index 00000000..18833088 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/memory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/menorah.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/menorah.svg new file mode 100644 index 00000000..94ab8292 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/menorah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mercury.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mercury.svg new file mode 100644 index 00000000..b41bcf3b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mercury.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/message.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/message.svg new file mode 100644 index 00000000..fd5074e0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/meteor.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/meteor.svg new file mode 100644 index 00000000..497ab847 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/meteor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microchip.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microchip.svg new file mode 100644 index 00000000..9e5884fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microchip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone-lines-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone-lines-slash.svg new file mode 100644 index 00000000..0b62f350 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone-lines-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone-lines.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone-lines.svg new file mode 100644 index 00000000..c1a3dc38 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone-slash.svg new file mode 100644 index 00000000..33331aa4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone.svg new file mode 100644 index 00000000..932d6a2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microscope.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microscope.svg new file mode 100644 index 00000000..3860c3fd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mill-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mill-sign.svg new file mode 100644 index 00000000..2e7bcdbe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mill-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/minimize.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/minimize.svg new file mode 100644 index 00000000..d5f39a5b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/minus.svg new file mode 100644 index 00000000..c86b6641 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mitten.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mitten.svg new file mode 100644 index 00000000..d4dd7591 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mitten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-button.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-button.svg new file mode 100644 index 00000000..ba601d6e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-retro.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-retro.svg new file mode 100644 index 00000000..cde4a51a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-retro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-screen-button.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-screen-button.svg new file mode 100644 index 00000000..20162d64 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-screen-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-screen.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-screen.svg new file mode 100644 index 00000000..9aa48803 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile-screen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile.svg new file mode 100644 index 00000000..87dd18d1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mobile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-1-wave.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-1-wave.svg new file mode 100644 index 00000000..18ab29b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-1-wave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-1.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-1.svg new file mode 100644 index 00000000..46d840f8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-transfer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-transfer.svg new file mode 100644 index 00000000..99b8d72f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-transfer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-trend-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-trend-up.svg new file mode 100644 index 00000000..63989e8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-trend-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-wave.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-wave.svg new file mode 100644 index 00000000..3f20b545 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-wave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-wheat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-wheat.svg new file mode 100644 index 00000000..d99d8b22 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill-wheat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill.svg new file mode 100644 index 00000000..56a616d3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bills.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bills.svg new file mode 100644 index 00000000..6392ce77 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-bills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-check-dollar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-check-dollar.svg new file mode 100644 index 00000000..b7f44a94 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-check-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-check.svg new file mode 100644 index 00000000..1df5ac4e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/money-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/monument.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/monument.svg new file mode 100644 index 00000000..116829d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/monument.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/moon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/moon.svg new file mode 100644 index 00000000..dd835670 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mortar-pestle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mortar-pestle.svg new file mode 100644 index 00000000..5984587b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mortar-pestle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mosque.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mosque.svg new file mode 100644 index 00000000..d12bf67f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mosque.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mosquito-net.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mosquito-net.svg new file mode 100644 index 00000000..12f312c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mosquito-net.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mosquito.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mosquito.svg new file mode 100644 index 00000000..75eddecf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mosquito.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/motorcycle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/motorcycle.svg new file mode 100644 index 00000000..b884dd31 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/motorcycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mound.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mound.svg new file mode 100644 index 00000000..93675376 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mountain-city.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mountain-city.svg new file mode 100644 index 00000000..1d49095b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mountain-city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mountain-sun.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mountain-sun.svg new file mode 100644 index 00000000..eff94f73 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mountain-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mountain.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mountain.svg new file mode 100644 index 00000000..cf890d26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mountain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mug-hot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mug-hot.svg new file mode 100644 index 00000000..46e82dc3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mug-hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mug-saucer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mug-saucer.svg new file mode 100644 index 00000000..5d85056c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/mug-saucer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/music.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/music.svg new file mode 100644 index 00000000..8494c729 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/n.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/n.svg new file mode 100644 index 00000000..4cf4ba51 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/n.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/naira-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/naira-sign.svg new file mode 100644 index 00000000..acb6c41c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/naira-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/network-wired.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/network-wired.svg new file mode 100644 index 00000000..536ffc54 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/network-wired.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/neuter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/neuter.svg new file mode 100644 index 00000000..723162e0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/neuter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/newspaper.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/newspaper.svg new file mode 100644 index 00000000..500691f6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/not-equal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/not-equal.svg new file mode 100644 index 00000000..79d46bdd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/not-equal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/notdef.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/notdef.svg new file mode 100644 index 00000000..c34d2d4f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/notdef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/note-sticky.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/note-sticky.svg new file mode 100644 index 00000000..655b8cc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/note-sticky.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/notes-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/notes-medical.svg new file mode 100644 index 00000000..03cd6083 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/notes-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/o.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/o.svg new file mode 100644 index 00000000..d6519c59 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/o.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/object-group.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/object-group.svg new file mode 100644 index 00000000..1f7aae9f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/object-ungroup.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/object-ungroup.svg new file mode 100644 index 00000000..2fa3a227 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/oil-can.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/oil-can.svg new file mode 100644 index 00000000..83379141 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/oil-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/oil-well.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/oil-well.svg new file mode 100644 index 00000000..aeebc39f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/oil-well.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/om.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/om.svg new file mode 100644 index 00000000..73955d87 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/om.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/otter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/otter.svg new file mode 100644 index 00000000..69e45595 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/otter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/outdent.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/outdent.svg new file mode 100644 index 00000000..1643b148 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/outdent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/p.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/p.svg new file mode 100644 index 00000000..ba0dd3d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/p.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pager.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pager.svg new file mode 100644 index 00000000..225d53ae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pager.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paint-roller.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paint-roller.svg new file mode 100644 index 00000000..6060141f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paint-roller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paintbrush.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paintbrush.svg new file mode 100644 index 00000000..9aa3da6d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paintbrush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/palette.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/palette.svg new file mode 100644 index 00000000..097df3c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pallet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pallet.svg new file mode 100644 index 00000000..46604648 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/panorama.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/panorama.svg new file mode 100644 index 00000000..b3e66752 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/panorama.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg new file mode 100644 index 00000000..a65f11bb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paperclip.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paperclip.svg new file mode 100644 index 00000000..c62fea6d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/parachute-box.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/parachute-box.svg new file mode 100644 index 00000000..89d18559 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/parachute-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg new file mode 100644 index 00000000..6936a6ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/passport.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/passport.svg new file mode 100644 index 00000000..6034e068 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/passport.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paste.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paste.svg new file mode 100644 index 00000000..29fcd20f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paste.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pause.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pause.svg new file mode 100644 index 00000000..7c89e05b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paw.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paw.svg new file mode 100644 index 00000000..b0bc5165 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/paw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/peace.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/peace.svg new file mode 100644 index 00000000..45a6d3cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/peace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-clip.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-clip.svg new file mode 100644 index 00000000..9b12138e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-clip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-fancy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-fancy.svg new file mode 100644 index 00000000..c0433e2e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-fancy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-nib.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-nib.svg new file mode 100644 index 00000000..c9be37a3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-nib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-ruler.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-ruler.svg new file mode 100644 index 00000000..2827a82f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-to-square.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-to-square.svg new file mode 100644 index 00000000..d7b0f971 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen-to-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen.svg new file mode 100644 index 00000000..4455241d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pencil.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pencil.svg new file mode 100644 index 00000000..8f4531d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-arrows.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-arrows.svg new file mode 100644 index 00000000..fd7bf2c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-carry-box.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-carry-box.svg new file mode 100644 index 00000000..de21f160 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-carry-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-group.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-group.svg new file mode 100644 index 00000000..565c4b0c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-line.svg new file mode 100644 index 00000000..3f7a0287 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-pulling.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-pulling.svg new file mode 100644 index 00000000..7beb23be --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-pulling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-robbery.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-robbery.svg new file mode 100644 index 00000000..61491d1a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-robbery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-roof.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-roof.svg new file mode 100644 index 00000000..b3348e96 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/people-roof.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pepper-hot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pepper-hot.svg new file mode 100644 index 00000000..7abbaf8d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pepper-hot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/percent.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/percent.svg new file mode 100644 index 00000000..50355978 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-arrow-down-to-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-arrow-down-to-line.svg new file mode 100644 index 00000000..be15203f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-arrow-down-to-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-arrow-up-from-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-arrow-up-from-line.svg new file mode 100644 index 00000000..759bc066 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-arrow-up-from-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-biking.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-biking.svg new file mode 100644 index 00000000..c358593f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-biking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-booth.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-booth.svg new file mode 100644 index 00000000..f2854c8c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-booth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-breastfeeding.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-breastfeeding.svg new file mode 100644 index 00000000..8c7b06ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-breastfeeding.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-burst.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-burst.svg new file mode 100644 index 00000000..d9e7bfcd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-cane.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-cane.svg new file mode 100644 index 00000000..0fb1f5c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-cane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-chalkboard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-chalkboard.svg new file mode 100644 index 00000000..69b801e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-chalkboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-check.svg new file mode 100644 index 00000000..c712e93a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-exclamation.svg new file mode 100644 index 00000000..23ba0f5e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-minus.svg new file mode 100644 index 00000000..315d4441 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-plus.svg new file mode 100644 index 00000000..1d97c76f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-question.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-question.svg new file mode 100644 index 00000000..32e8169a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-xmark.svg new file mode 100644 index 00000000..1e2b16ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-digging.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-digging.svg new file mode 100644 index 00000000..6959541d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-digging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-dots-from-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-dots-from-line.svg new file mode 100644 index 00000000..6458a3e2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-dots-from-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-dress-burst.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-dress-burst.svg new file mode 100644 index 00000000..8a42edc3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-dress-burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-dress.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-dress.svg new file mode 100644 index 00000000..c19f9088 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-dress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-drowning.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-drowning.svg new file mode 100644 index 00000000..675f4234 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-drowning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-falling-burst.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-falling-burst.svg new file mode 100644 index 00000000..6841f7bd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-falling-burst.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-falling.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-falling.svg new file mode 100644 index 00000000..f5af7826 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-falling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-half-dress.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-half-dress.svg new file mode 100644 index 00000000..6cc2a652 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-half-dress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-harassing.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-harassing.svg new file mode 100644 index 00000000..2d0466d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-harassing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-hiking.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-hiking.svg new file mode 100644 index 00000000..d9406217 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-hiking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-military-pointing.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-military-pointing.svg new file mode 100644 index 00000000..305afdac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-military-pointing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-military-rifle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-military-rifle.svg new file mode 100644 index 00000000..5c96e2c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-military-rifle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-military-to-person.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-military-to-person.svg new file mode 100644 index 00000000..e618382a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-military-to-person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-praying.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-praying.svg new file mode 100644 index 00000000..8e113074 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-praying.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-pregnant.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-pregnant.svg new file mode 100644 index 00000000..cabb090e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-pregnant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-rays.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-rays.svg new file mode 100644 index 00000000..0d5c4f81 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-rays.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-rifle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-rifle.svg new file mode 100644 index 00000000..341dcc03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-rifle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-running.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-running.svg new file mode 100644 index 00000000..d0d21eb9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-running.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-shelter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-shelter.svg new file mode 100644 index 00000000..0a3ca4df --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-shelter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-skating.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-skating.svg new file mode 100644 index 00000000..3d694d04 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-skating.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-skiing-nordic.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-skiing-nordic.svg new file mode 100644 index 00000000..06d44a0b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-skiing-nordic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-skiing.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-skiing.svg new file mode 100644 index 00000000..38ba8555 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-skiing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-snowboarding.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-snowboarding.svg new file mode 100644 index 00000000..0572dc2c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-snowboarding.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-swimming.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-swimming.svg new file mode 100644 index 00000000..1443a968 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-swimming.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-through-window.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-through-window.svg new file mode 100644 index 00000000..6becf704 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-through-window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-arrow-loop-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-arrow-loop-left.svg new file mode 100644 index 00000000..e122bf2a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-arrow-loop-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-arrow-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-arrow-right.svg new file mode 100644 index 00000000..34b38553 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-dashed-line-arrow-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-dashed-line-arrow-right.svg new file mode 100644 index 00000000..63531a40 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-dashed-line-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-luggage.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-luggage.svg new file mode 100644 index 00000000..f328e24b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-luggage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-with-cane.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-with-cane.svg new file mode 100644 index 00000000..62873885 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking-with-cane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking.svg new file mode 100644 index 00000000..8a121b19 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person-walking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person.svg new file mode 100644 index 00000000..9fd7f260 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/peseta-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/peseta-sign.svg new file mode 100644 index 00000000..dcfd889f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/peseta-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/peso-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/peso-sign.svg new file mode 100644 index 00000000..b5a751e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/peso-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone-flip.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone-flip.svg new file mode 100644 index 00000000..48d05a8f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone-flip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone-slash.svg new file mode 100644 index 00000000..b9dea46b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone-volume.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone-volume.svg new file mode 100644 index 00000000..8487764d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone-volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone.svg new file mode 100644 index 00000000..3249580f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/photo-film.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/photo-film.svg new file mode 100644 index 00000000..cc440af0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/photo-film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/piggy-bank.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/piggy-bank.svg new file mode 100644 index 00000000..350a7469 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/piggy-bank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pills.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pills.svg new file mode 100644 index 00000000..a504b889 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pills.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pizza-slice.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pizza-slice.svg new file mode 100644 index 00000000..b0da95ae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pizza-slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/place-of-worship.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/place-of-worship.svg new file mode 100644 index 00000000..79fc7c6c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/place-of-worship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-arrival.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-arrival.svg new file mode 100644 index 00000000..03c812db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-arrival.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-circle-check.svg new file mode 100644 index 00000000..8ef685cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-circle-exclamation.svg new file mode 100644 index 00000000..faa3b332 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-circle-xmark.svg new file mode 100644 index 00000000..46e39826 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-departure.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-departure.svg new file mode 100644 index 00000000..ea25b1f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-departure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-lock.svg new file mode 100644 index 00000000..d162c6e7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-slash.svg new file mode 100644 index 00000000..a15044b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-up.svg new file mode 100644 index 00000000..b05e5224 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane.svg new file mode 100644 index 00000000..839351f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plant-wilt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plant-wilt.svg new file mode 100644 index 00000000..ae679fdd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plant-wilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plate-wheat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plate-wheat.svg new file mode 100644 index 00000000..75a7010f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plate-wheat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/play.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/play.svg new file mode 100644 index 00000000..1ca693a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-bolt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-bolt.svg new file mode 100644 index 00000000..bb3f61a9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-check.svg new file mode 100644 index 00000000..52c4a048 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-exclamation.svg new file mode 100644 index 00000000..232d491a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-minus.svg new file mode 100644 index 00000000..cf3db994 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-plus.svg new file mode 100644 index 00000000..fedd47c8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-xmark.svg new file mode 100644 index 00000000..7123e47c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug.svg new file mode 100644 index 00000000..971e24e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plus-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plus-minus.svg new file mode 100644 index 00000000..6972c0ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plus-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plus.svg new file mode 100644 index 00000000..81161a49 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/podcast.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/podcast.svg new file mode 100644 index 00000000..8f2064e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/podcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/poo-storm.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/poo-storm.svg new file mode 100644 index 00000000..e08cefcc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/poo-storm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/poo.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/poo.svg new file mode 100644 index 00000000..b4b9f171 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/poo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/poop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/poop.svg new file mode 100644 index 00000000..df772506 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/poop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/power-off.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/power-off.svg new file mode 100644 index 00000000..ec8996af --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/power-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle-medical.svg new file mode 100644 index 00000000..9a889353 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle.svg new file mode 100644 index 00000000..32a2abb8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/prescription-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/prescription.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/prescription.svg new file mode 100644 index 00000000..a9a35066 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/prescription.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/print.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/print.svg new file mode 100644 index 00000000..ea1592db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pump-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pump-medical.svg new file mode 100644 index 00000000..e61277fb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pump-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pump-soap.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pump-soap.svg new file mode 100644 index 00000000..8f2a8254 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/pump-soap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/puzzle-piece.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/puzzle-piece.svg new file mode 100644 index 00000000..a5ac4443 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/puzzle-piece.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/q.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/q.svg new file mode 100644 index 00000000..72deffa0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/q.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg new file mode 100644 index 00000000..a1af51ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/question.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/question.svg new file mode 100644 index 00000000..d5071ebf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/quote-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/quote-left.svg new file mode 100644 index 00000000..eabc13d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/quote-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/quote-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/quote-right.svg new file mode 100644 index 00000000..28f5e791 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/quote-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/r.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/r.svg new file mode 100644 index 00000000..8b7a0d4c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/r.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/radiation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/radiation.svg new file mode 100644 index 00000000..9139f6e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/radiation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/radio.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/radio.svg new file mode 100644 index 00000000..24bc8f01 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rainbow.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rainbow.svg new file mode 100644 index 00000000..b4a4e0df --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rainbow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ranking-star.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ranking-star.svg new file mode 100644 index 00000000..45b7f5fc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ranking-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/receipt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/receipt.svg new file mode 100644 index 00000000..5e6526b9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/receipt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/record-vinyl.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/record-vinyl.svg new file mode 100644 index 00000000..1f9f2289 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/record-vinyl.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rectangle-ad.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rectangle-ad.svg new file mode 100644 index 00000000..0118ee36 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rectangle-ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rectangle-list.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rectangle-list.svg new file mode 100644 index 00000000..1df9aac0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rectangle-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rectangle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rectangle-xmark.svg new file mode 100644 index 00000000..ae615187 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rectangle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/recycle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/recycle.svg new file mode 100644 index 00000000..33b6bf83 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/recycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/registered.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/registered.svg new file mode 100644 index 00000000..e84c46ee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/repeat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/repeat.svg new file mode 100644 index 00000000..7216870b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/reply-all.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/reply-all.svg new file mode 100644 index 00000000..fd365835 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/reply-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/reply.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/reply.svg new file mode 100644 index 00000000..ec848761 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/reply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/republican.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/republican.svg new file mode 100644 index 00000000..9d7aec31 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/republican.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/restroom.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/restroom.svg new file mode 100644 index 00000000..2bfbbb04 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/restroom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/retweet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/retweet.svg new file mode 100644 index 00000000..73821087 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/retweet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ribbon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ribbon.svg new file mode 100644 index 00000000..9b305dfd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ribbon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-from-bracket.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-from-bracket.svg new file mode 100644 index 00000000..43de96d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-from-bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-left.svg new file mode 100644 index 00000000..587782a3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-long.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-long.svg new file mode 100644 index 00000000..84cf844f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-to-bracket.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-to-bracket.svg new file mode 100644 index 00000000..b4923bb4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/right-to-bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ring.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ring.svg new file mode 100644 index 00000000..24ae9510 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-barrier.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-barrier.svg new file mode 100644 index 00000000..8d01eb8c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-barrier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-bridge.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-bridge.svg new file mode 100644 index 00000000..4f9defca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-bridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-circle-check.svg new file mode 100644 index 00000000..3e41c8be --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-circle-exclamation.svg new file mode 100644 index 00000000..37b781c5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-circle-xmark.svg new file mode 100644 index 00000000..08fde91b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-lock.svg new file mode 100644 index 00000000..8751e262 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-spikes.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-spikes.svg new file mode 100644 index 00000000..77572e99 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road-spikes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road.svg new file mode 100644 index 00000000..ea27dc53 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/road.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/robot.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/robot.svg new file mode 100644 index 00000000..37f6a1d6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/robot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rocket.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rocket.svg new file mode 100644 index 00000000..9c981b9f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rotate-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rotate-left.svg new file mode 100644 index 00000000..d2f61b75 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rotate-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rotate-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rotate-right.svg new file mode 100644 index 00000000..aac78360 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rotate-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rotate.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rotate.svg new file mode 100644 index 00000000..4c0d5e5f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/route.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/route.svg new file mode 100644 index 00000000..c2d9385c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/route.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rss.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rss.svg new file mode 100644 index 00000000..2617ed71 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruble-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruble-sign.svg new file mode 100644 index 00000000..2ac39dca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruble-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rug.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rug.svg new file mode 100644 index 00000000..98fb61f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler-combined.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler-combined.svg new file mode 100644 index 00000000..cfa4524e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler-combined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler-horizontal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler-horizontal.svg new file mode 100644 index 00000000..5f723cba --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler-vertical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler-vertical.svg new file mode 100644 index 00000000..66abee05 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler.svg new file mode 100644 index 00000000..0b7dc9c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rupee-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rupee-sign.svg new file mode 100644 index 00000000..a63fcb9a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rupee-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rupiah-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rupiah-sign.svg new file mode 100644 index 00000000..976196ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/rupiah-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/s.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/s.svg new file mode 100644 index 00000000..00d98cb4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sack-dollar.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sack-dollar.svg new file mode 100644 index 00000000..d98d7eeb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sack-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sack-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sack-xmark.svg new file mode 100644 index 00000000..51b951c5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sack-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sailboat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sailboat.svg new file mode 100644 index 00000000..ac90cbe0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sailboat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/satellite-dish.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/satellite-dish.svg new file mode 100644 index 00000000..a2458680 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/satellite-dish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/satellite.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/satellite.svg new file mode 100644 index 00000000..f0b6a53f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/satellite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scale-balanced.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scale-balanced.svg new file mode 100644 index 00000000..4862cbbe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scale-balanced.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scale-unbalanced-flip.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scale-unbalanced-flip.svg new file mode 100644 index 00000000..eb17f14c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scale-unbalanced-flip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scale-unbalanced.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scale-unbalanced.svg new file mode 100644 index 00000000..217d2de4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scale-unbalanced.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-circle-check.svg new file mode 100644 index 00000000..03253e1a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-circle-exclamation.svg new file mode 100644 index 00000000..5e370645 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-circle-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-circle-xmark.svg new file mode 100644 index 00000000..b9f2d238 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-circle-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-flag.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-flag.svg new file mode 100644 index 00000000..975c037c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-lock.svg new file mode 100644 index 00000000..e525a85c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school.svg new file mode 100644 index 00000000..25f576ae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scissors.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scissors.svg new file mode 100644 index 00000000..612d9b65 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/screwdriver-wrench.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/screwdriver-wrench.svg new file mode 100644 index 00000000..3a4ab5e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/screwdriver-wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/screwdriver.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/screwdriver.svg new file mode 100644 index 00000000..8287697a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/screwdriver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scroll-torah.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scroll-torah.svg new file mode 100644 index 00000000..d34d5e60 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scroll-torah.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scroll.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scroll.svg new file mode 100644 index 00000000..d9cc3df6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/scroll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sd-card.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sd-card.svg new file mode 100644 index 00000000..778ad783 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sd-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/section.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/section.svg new file mode 100644 index 00000000..91f76a81 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/seedling.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/seedling.svg new file mode 100644 index 00000000..e4c21f14 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/seedling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/server.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/server.svg new file mode 100644 index 00000000..65412c83 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shapes.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shapes.svg new file mode 100644 index 00000000..859a7e3b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shapes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/share-from-square.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/share-from-square.svg new file mode 100644 index 00000000..d6a06f9c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/share-from-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/share-nodes.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/share-nodes.svg new file mode 100644 index 00000000..e98ce353 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/share-nodes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/share.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/share.svg new file mode 100644 index 00000000..fb608d5d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sheet-plastic.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sheet-plastic.svg new file mode 100644 index 00000000..95c20018 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sheet-plastic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shekel-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shekel-sign.svg new file mode 100644 index 00000000..63b7bcbe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shekel-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-cat.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-cat.svg new file mode 100644 index 00000000..0138874b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-cat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-dog.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-dog.svg new file mode 100644 index 00000000..ac2848e7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-dog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-halved.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-halved.svg new file mode 100644 index 00000000..6aa5edb9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-halved.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-heart.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-heart.svg new file mode 100644 index 00000000..2296b44e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-virus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-virus.svg new file mode 100644 index 00000000..3d84d342 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield.svg new file mode 100644 index 00000000..98f34d48 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ship.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ship.svg new file mode 100644 index 00000000..836efe95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shirt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shirt.svg new file mode 100644 index 00000000..602e336c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shoe-prints.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shoe-prints.svg new file mode 100644 index 00000000..41b6f142 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shoe-prints.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shop-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shop-lock.svg new file mode 100644 index 00000000..69ef09da --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shop-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shop-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shop-slash.svg new file mode 100644 index 00000000..70b4efec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shop-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shop.svg new file mode 100644 index 00000000..c5abc6c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shower.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shower.svg new file mode 100644 index 00000000..5aea8d15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shrimp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shrimp.svg new file mode 100644 index 00000000..898145d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shrimp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shuffle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shuffle.svg new file mode 100644 index 00000000..24fb3d13 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shuttle-space.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shuttle-space.svg new file mode 100644 index 00000000..5ca99415 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/shuttle-space.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sign-hanging.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sign-hanging.svg new file mode 100644 index 00000000..f2098929 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sign-hanging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/signal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/signal.svg new file mode 100644 index 00000000..38816350 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/signature.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/signature.svg new file mode 100644 index 00000000..83257a16 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/signature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/signs-post.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/signs-post.svg new file mode 100644 index 00000000..ef831d5f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/signs-post.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sim-card.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sim-card.svg new file mode 100644 index 00000000..3e02c63d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sim-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sink.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sink.svg new file mode 100644 index 00000000..87a47fb1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sitemap.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sitemap.svg new file mode 100644 index 00000000..a8dad10f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sitemap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/skull-crossbones.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/skull-crossbones.svg new file mode 100644 index 00000000..36f09467 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/skull-crossbones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/skull.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/skull.svg new file mode 100644 index 00000000..3451f377 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/slash.svg new file mode 100644 index 00000000..a0d870d0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sleigh.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sleigh.svg new file mode 100644 index 00000000..57103d58 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sleigh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sliders.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sliders.svg new file mode 100644 index 00000000..8278dc64 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sliders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/smog.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/smog.svg new file mode 100644 index 00000000..d5f6dcdf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/smog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/smoking.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/smoking.svg new file mode 100644 index 00000000..44fe7262 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/smoking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/snowflake.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/snowflake.svg new file mode 100644 index 00000000..367ebf34 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/snowman.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/snowman.svg new file mode 100644 index 00000000..9b0818a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/snowman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/snowplow.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/snowplow.svg new file mode 100644 index 00000000..d05e58cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/snowplow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/soap.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/soap.svg new file mode 100644 index 00000000..71cb2fac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/soap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/socks.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/socks.svg new file mode 100644 index 00000000..66878507 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/socks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/solar-panel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/solar-panel.svg new file mode 100644 index 00000000..16859f5d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/solar-panel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg new file mode 100644 index 00000000..0b637b9e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg new file mode 100644 index 00000000..434e5873 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort.svg new file mode 100644 index 00000000..e772a0ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spa.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spa.svg new file mode 100644 index 00000000..f5d1213e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spaghetti-monster-flying.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spaghetti-monster-flying.svg new file mode 100644 index 00000000..34ed4915 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spaghetti-monster-flying.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spell-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spell-check.svg new file mode 100644 index 00000000..1d3bb60c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spell-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spider.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spider.svg new file mode 100644 index 00000000..2ae767a8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spider.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spinner.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spinner.svg new file mode 100644 index 00000000..1f56c8a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spinner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/splotch.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/splotch.svg new file mode 100644 index 00000000..ccd44ed1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/splotch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spoon.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spoon.svg new file mode 100644 index 00000000..029d6322 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spoon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spray-can-sparkles.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spray-can-sparkles.svg new file mode 100644 index 00000000..541f592b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spray-can-sparkles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spray-can.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spray-can.svg new file mode 100644 index 00000000..92d22dbe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/spray-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-arrow-up-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-arrow-up-right.svg new file mode 100644 index 00000000..8515eb2c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-down.svg new file mode 100644 index 00000000..50d0ac62 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-left.svg new file mode 100644 index 00000000..4e02b96b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-right.svg new file mode 100644 index 00000000..f34cccf0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-up.svg new file mode 100644 index 00000000..d01085c8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-caret-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-check.svg new file mode 100644 index 00000000..f4ccd268 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-envelope.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-envelope.svg new file mode 100644 index 00000000..7520e06a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-full.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-full.svg new file mode 100644 index 00000000..23ff9998 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-h.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-h.svg new file mode 100644 index 00000000..a272fa0e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-minus.svg new file mode 100644 index 00000000..6c2af9d6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-nfi.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-nfi.svg new file mode 100644 index 00000000..3cafc2a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-nfi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-parking.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-parking.svg new file mode 100644 index 00000000..8ecccc72 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-parking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-pen.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-pen.svg new file mode 100644 index 00000000..c9422ea2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-person-confined.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-person-confined.svg new file mode 100644 index 00000000..3e6c594d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-person-confined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-phone-flip.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-phone-flip.svg new file mode 100644 index 00000000..1c82de03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-phone-flip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-phone.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-phone.svg new file mode 100644 index 00000000..e1e79620 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-plus.svg new file mode 100644 index 00000000..9442f9e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-poll-horizontal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-poll-horizontal.svg new file mode 100644 index 00000000..1ea204b2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-poll-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-poll-vertical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-poll-vertical.svg new file mode 100644 index 00000000..ca260b23 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-poll-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-root-variable.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-root-variable.svg new file mode 100644 index 00000000..2e072206 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-root-variable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-rss.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-rss.svg new file mode 100644 index 00000000..f05b5431 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-share-nodes.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-share-nodes.svg new file mode 100644 index 00000000..4fc0532c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-share-nodes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-up-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-up-right.svg new file mode 100644 index 00000000..98926fa8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-virus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-virus.svg new file mode 100644 index 00000000..7c7078b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-xmark.svg new file mode 100644 index 00000000..f23ccf8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square.svg new file mode 100644 index 00000000..b62ce952 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/staff-snake.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/staff-snake.svg new file mode 100644 index 00000000..242622bc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/staff-snake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stairs.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stairs.svg new file mode 100644 index 00000000..e84d36dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stamp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stamp.svg new file mode 100644 index 00000000..a1a103bd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stapler.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stapler.svg new file mode 100644 index 00000000..7575c8ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stapler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-and-crescent.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-and-crescent.svg new file mode 100644 index 00000000..df339e21 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-and-crescent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-half-stroke.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-half-stroke.svg new file mode 100644 index 00000000..005bf320 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-half-stroke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-half.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-half.svg new file mode 100644 index 00000000..28352eff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-of-david.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-of-david.svg new file mode 100644 index 00000000..68f0cb7c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-of-david.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-of-life.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-of-life.svg new file mode 100644 index 00000000..18a94096 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star-of-life.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star.svg new file mode 100644 index 00000000..bafadf91 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sterling-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sterling-sign.svg new file mode 100644 index 00000000..cb14730a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sterling-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stethoscope.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stethoscope.svg new file mode 100644 index 00000000..e6858dfa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stop.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stop.svg new file mode 100644 index 00000000..65f1c308 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stopwatch-20.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stopwatch-20.svg new file mode 100644 index 00000000..085fbb01 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stopwatch-20.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stopwatch.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stopwatch.svg new file mode 100644 index 00000000..a8e6d236 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/store-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/store-slash.svg new file mode 100644 index 00000000..666f6e95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/store-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/store.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/store.svg new file mode 100644 index 00000000..afabde3d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/street-view.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/street-view.svg new file mode 100644 index 00000000..588f1a77 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/street-view.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/strikethrough.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/strikethrough.svg new file mode 100644 index 00000000..a904eb95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/strikethrough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stroopwafel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stroopwafel.svg new file mode 100644 index 00000000..ea451612 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/stroopwafel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/subscript.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/subscript.svg new file mode 100644 index 00000000..794eb222 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/subscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/suitcase-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/suitcase-medical.svg new file mode 100644 index 00000000..008780de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/suitcase-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/suitcase-rolling.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/suitcase-rolling.svg new file mode 100644 index 00000000..c5751e30 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/suitcase-rolling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg new file mode 100644 index 00000000..73bed4d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sun-plant-wilt.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sun-plant-wilt.svg new file mode 100644 index 00000000..1cbfe14e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sun-plant-wilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sun.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sun.svg new file mode 100644 index 00000000..460c7ef7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/superscript.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/superscript.svg new file mode 100644 index 00000000..db2faa24 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/superscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/swatchbook.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/swatchbook.svg new file mode 100644 index 00000000..6146c98d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/swatchbook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/synagogue.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/synagogue.svg new file mode 100644 index 00000000..646fc205 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/synagogue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/syringe.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/syringe.svg new file mode 100644 index 00000000..4a6c4dac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/syringe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/t.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/t.svg new file mode 100644 index 00000000..c1f3f0fd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/t.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-cells-large.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-cells-large.svg new file mode 100644 index 00000000..82856664 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-cells-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-cells.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-cells.svg new file mode 100644 index 00000000..490dfea8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-cells.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-columns.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-columns.svg new file mode 100644 index 00000000..21d0690e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-list.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-list.svg new file mode 100644 index 00000000..a86841d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-tennis-paddle-ball.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-tennis-paddle-ball.svg new file mode 100644 index 00000000..a62fef2a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table-tennis-paddle-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table.svg new file mode 100644 index 00000000..51fee564 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablet-button.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablet-button.svg new file mode 100644 index 00000000..39bd977d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablet-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablet-screen-button.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablet-screen-button.svg new file mode 100644 index 00000000..fce563c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablet-screen-button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablet.svg new file mode 100644 index 00000000..f416a9a8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablets.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablets.svg new file mode 100644 index 00000000..4d841c6e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tablets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tachograph-digital.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tachograph-digital.svg new file mode 100644 index 00000000..819119d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tachograph-digital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tag.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tag.svg new file mode 100644 index 00000000..60a015b3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tags.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tags.svg new file mode 100644 index 00000000..011cbd9e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tape.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tape.svg new file mode 100644 index 00000000..db3855ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tarp-droplet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tarp-droplet.svg new file mode 100644 index 00000000..b456249f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tarp-droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tarp.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tarp.svg new file mode 100644 index 00000000..dafe587d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tarp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/taxi.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/taxi.svg new file mode 100644 index 00000000..ff29f88a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/taxi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/teeth-open.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/teeth-open.svg new file mode 100644 index 00000000..eff515dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/teeth-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/teeth.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/teeth.svg new file mode 100644 index 00000000..43891211 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/teeth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-arrow-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-arrow-down.svg new file mode 100644 index 00000000..79e71463 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-arrow-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-arrow-up.svg new file mode 100644 index 00000000..39451e0b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-empty.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-empty.svg new file mode 100644 index 00000000..cd7d8323 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-full.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-full.svg new file mode 100644 index 00000000..a3c8fdfe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-half.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-half.svg new file mode 100644 index 00000000..83f8c65e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-high.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-high.svg new file mode 100644 index 00000000..f0e3efff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-low.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-low.svg new file mode 100644 index 00000000..4fa21e3a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-quarter.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-quarter.svg new file mode 100644 index 00000000..9e1a0450 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-three-quarters.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-three-quarters.svg new file mode 100644 index 00000000..0e6d6afa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/temperature-three-quarters.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tenge-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tenge-sign.svg new file mode 100644 index 00000000..5b6eed1b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tenge-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrow-down-to-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrow-down-to-line.svg new file mode 100644 index 00000000..4e7f5d89 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrow-down-to-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrow-left-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrow-left-right.svg new file mode 100644 index 00000000..349f9f00 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrow-left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrow-turn-left.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrow-turn-left.svg new file mode 100644 index 00000000..6a08d67f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrow-turn-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrows-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrows-down.svg new file mode 100644 index 00000000..d91047f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent-arrows-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent.svg new file mode 100644 index 00000000..bc937042 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tents.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tents.svg new file mode 100644 index 00000000..3d6c546b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tents.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/terminal.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/terminal.svg new file mode 100644 index 00000000..24f9ef15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/text-height.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/text-height.svg new file mode 100644 index 00000000..0eb4e808 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/text-height.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/text-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/text-slash.svg new file mode 100644 index 00000000..daa75bfd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/text-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/text-width.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/text-width.svg new file mode 100644 index 00000000..616b4f44 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/text-width.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thermometer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thermometer.svg new file mode 100644 index 00000000..de02d9ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thumbs-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thumbs-down.svg new file mode 100644 index 00000000..8b501bc7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thumbs-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thumbs-up.svg new file mode 100644 index 00000000..50123508 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thumbtack.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thumbtack.svg new file mode 100644 index 00000000..b21c9f8a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/thumbtack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ticket-simple.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ticket-simple.svg new file mode 100644 index 00000000..6ec3741f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ticket-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ticket.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ticket.svg new file mode 100644 index 00000000..e7e60fcf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/ticket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/timeline.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/timeline.svg new file mode 100644 index 00000000..84899a7e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/timeline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toggle-off.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toggle-off.svg new file mode 100644 index 00000000..cea3da1c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toggle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg new file mode 100644 index 00000000..52eaa85a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet-paper-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet-paper-slash.svg new file mode 100644 index 00000000..7cf6b8df --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet-paper-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet-paper.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet-paper.svg new file mode 100644 index 00000000..527064a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet-portable.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet-portable.svg new file mode 100644 index 00000000..3c303877 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet-portable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet.svg new file mode 100644 index 00000000..30d34fc5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilets-portable.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilets-portable.svg new file mode 100644 index 00000000..89a75b2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toilets-portable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toolbox.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toolbox.svg new file mode 100644 index 00000000..228b4ecb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/toolbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tooth.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tooth.svg new file mode 100644 index 00000000..a4b430c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/torii-gate.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/torii-gate.svg new file mode 100644 index 00000000..86de23b4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/torii-gate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tornado.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tornado.svg new file mode 100644 index 00000000..4535edbf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tornado.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tower-broadcast.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tower-broadcast.svg new file mode 100644 index 00000000..cd794cae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tower-broadcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tower-cell.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tower-cell.svg new file mode 100644 index 00000000..6399e9b9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tower-cell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tower-observation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tower-observation.svg new file mode 100644 index 00000000..a2beda23 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tower-observation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tractor.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tractor.svg new file mode 100644 index 00000000..b6021163 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tractor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trademark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trademark.svg new file mode 100644 index 00000000..ab53efe1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trademark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/traffic-light.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/traffic-light.svg new file mode 100644 index 00000000..8a39eaf7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/traffic-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trailer.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trailer.svg new file mode 100644 index 00000000..f038042a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trailer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/train-subway.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/train-subway.svg new file mode 100644 index 00000000..04302078 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/train-subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/train-tram.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/train-tram.svg new file mode 100644 index 00000000..43b76982 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/train-tram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/train.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/train.svg new file mode 100644 index 00000000..7f759a00 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/transgender.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/transgender.svg new file mode 100644 index 00000000..2506e94f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash-arrow-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash-arrow-up.svg new file mode 100644 index 00000000..73699026 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash-can-arrow-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash-can-arrow-up.svg new file mode 100644 index 00000000..a636fb78 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash-can-arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash-can.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash-can.svg new file mode 100644 index 00000000..aca58857 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash-can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash.svg new file mode 100644 index 00000000..a46a4ac9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tree-city.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tree-city.svg new file mode 100644 index 00000000..ab2f5ae5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tree-city.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tree.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tree.svg new file mode 100644 index 00000000..e9b393d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/triangle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/triangle-exclamation.svg new file mode 100644 index 00000000..cdebe7c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/triangle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trophy.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trophy.svg new file mode 100644 index 00000000..5148017b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trowel-bricks.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trowel-bricks.svg new file mode 100644 index 00000000..bc0fc8c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trowel-bricks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trowel.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trowel.svg new file mode 100644 index 00000000..20e49747 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/trowel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-arrow-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-arrow-right.svg new file mode 100644 index 00000000..f52a7b98 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-droplet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-droplet.svg new file mode 100644 index 00000000..77d9dce5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-fast.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-fast.svg new file mode 100644 index 00000000..aa3ce706 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-field-un.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-field-un.svg new file mode 100644 index 00000000..e081dc0c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-field-un.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-field.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-field.svg new file mode 100644 index 00000000..a0a372fe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-field.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-front.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-front.svg new file mode 100644 index 00000000..b8a60f25 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-front.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-medical.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-medical.svg new file mode 100644 index 00000000..d552ae3e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-monster.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-monster.svg new file mode 100644 index 00000000..c8d90a84 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-monster.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-moving.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-moving.svg new file mode 100644 index 00000000..17e5a29e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-moving.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-pickup.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-pickup.svg new file mode 100644 index 00000000..1f51c4cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-pickup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-plane.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-plane.svg new file mode 100644 index 00000000..d9a7d57b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-ramp-box.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-ramp-box.svg new file mode 100644 index 00000000..6d3905d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck-ramp-box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck.svg new file mode 100644 index 00000000..d952ec40 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tty.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tty.svg new file mode 100644 index 00000000..62db3701 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/turkish-lira-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/turkish-lira-sign.svg new file mode 100644 index 00000000..87826c90 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/turkish-lira-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/turn-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/turn-down.svg new file mode 100644 index 00000000..d3df917b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/turn-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/turn-up.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/turn-up.svg new file mode 100644 index 00000000..ea63bc8c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/turn-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tv.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tv.svg new file mode 100644 index 00000000..aabb11cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/u.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/u.svg new file mode 100644 index 00000000..78181946 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/u.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/umbrella-beach.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/umbrella-beach.svg new file mode 100644 index 00000000..f3ac8b25 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/umbrella-beach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/umbrella.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/umbrella.svg new file mode 100644 index 00000000..33387b2b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/underline.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/underline.svg new file mode 100644 index 00000000..24830dcb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/universal-access.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/universal-access.svg new file mode 100644 index 00000000..69f53aef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/universal-access.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/unlock-keyhole.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/unlock-keyhole.svg new file mode 100644 index 00000000..6c53e5a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/unlock-keyhole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/unlock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/unlock.svg new file mode 100644 index 00000000..98c5cf56 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-down-left-right.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-down-left-right.svg new file mode 100644 index 00000000..f549bd6c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-down-left-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-down.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-down.svg new file mode 100644 index 00000000..837cba5b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-long.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-long.svg new file mode 100644 index 00000000..355593d1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-long.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-right-and-down-left-from-center.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-right-and-down-left-from-center.svg new file mode 100644 index 00000000..62a91a14 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-right-and-down-left-from-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-right-from-square.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-right-from-square.svg new file mode 100644 index 00000000..cd184482 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/up-right-from-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/upload.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/upload.svg new file mode 100644 index 00000000..d5624d7f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-astronaut.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-astronaut.svg new file mode 100644 index 00000000..48b2d4ec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-astronaut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-check.svg new file mode 100644 index 00000000..902e4800 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-clock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-clock.svg new file mode 100644 index 00000000..877d4156 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-doctor.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-doctor.svg new file mode 100644 index 00000000..20f99d2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-doctor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-gear.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-gear.svg new file mode 100644 index 00000000..11dd7124 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-graduate.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-graduate.svg new file mode 100644 index 00000000..76822f25 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-graduate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-group.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-group.svg new file mode 100644 index 00000000..f105e428 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-injured.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-injured.svg new file mode 100644 index 00000000..91ad0189 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-injured.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-large-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-large-slash.svg new file mode 100644 index 00000000..47f99d78 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-large-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-large.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-large.svg new file mode 100644 index 00000000..51e585fd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-lock.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-lock.svg new file mode 100644 index 00000000..bdc89bc7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-minus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-minus.svg new file mode 100644 index 00000000..f4de7a9a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-ninja.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-ninja.svg new file mode 100644 index 00000000..d07d15c2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-ninja.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-nurse.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-nurse.svg new file mode 100644 index 00000000..16f47087 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-nurse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-pen.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-pen.svg new file mode 100644 index 00000000..5a9b97f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-plus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-plus.svg new file mode 100644 index 00000000..f77aca76 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-secret.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-secret.svg new file mode 100644 index 00000000..6ee02a0c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-secret.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-shield.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-shield.svg new file mode 100644 index 00000000..2b25981a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-slash.svg new file mode 100644 index 00000000..70b6b93b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-tag.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-tag.svg new file mode 100644 index 00000000..237dba03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-tie.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-tie.svg new file mode 100644 index 00000000..6c6f00f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-tie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-xmark.svg new file mode 100644 index 00000000..132fa816 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user.svg new file mode 100644 index 00000000..e2600e96 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-between-lines.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-between-lines.svg new file mode 100644 index 00000000..ae149f6d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-between-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-gear.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-gear.svg new file mode 100644 index 00000000..f011ba31 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-line.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-line.svg new file mode 100644 index 00000000..6cb21f29 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-rays.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-rays.svg new file mode 100644 index 00000000..746b4227 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-rays.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-rectangle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-rectangle.svg new file mode 100644 index 00000000..e8a32e62 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-rectangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-slash.svg new file mode 100644 index 00000000..18bd59a6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-viewfinder.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-viewfinder.svg new file mode 100644 index 00000000..5c837e37 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users-viewfinder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users.svg new file mode 100644 index 00000000..0f171bf6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/users.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/utensils.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/utensils.svg new file mode 100644 index 00000000..7a02efc9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/utensils.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/v.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/v.svg new file mode 100644 index 00000000..defb1779 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/van-shuttle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/van-shuttle.svg new file mode 100644 index 00000000..a993f252 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/van-shuttle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vault.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vault.svg new file mode 100644 index 00000000..8a16fbcc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vault.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vector-square.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vector-square.svg new file mode 100644 index 00000000..0bb51603 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/venus-double.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/venus-double.svg new file mode 100644 index 00000000..7c9fcbb4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/venus-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/venus-mars.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/venus-mars.svg new file mode 100644 index 00000000..a43acb4c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/venus-mars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/venus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/venus.svg new file mode 100644 index 00000000..b691b5cd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/venus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vest-patches.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vest-patches.svg new file mode 100644 index 00000000..4011001c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vest-patches.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vest.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vest.svg new file mode 100644 index 00000000..c3b00433 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vial-circle-check.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vial-circle-check.svg new file mode 100644 index 00000000..1d71ed3a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vial-circle-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vial-virus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vial-virus.svg new file mode 100644 index 00000000..275945c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vial-virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vial.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vial.svg new file mode 100644 index 00000000..53fa61f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vial.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vials.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vials.svg new file mode 100644 index 00000000..d3b4c322 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vials.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/video-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/video-slash.svg new file mode 100644 index 00000000..f7eeaf3e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/video-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/video.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/video.svg new file mode 100644 index 00000000..c7eb17d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vihara.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vihara.svg new file mode 100644 index 00000000..3a0dbc97 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vihara.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus-covid-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus-covid-slash.svg new file mode 100644 index 00000000..f64228d0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus-covid-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus-covid.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus-covid.svg new file mode 100644 index 00000000..096f8a5c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus-covid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus-slash.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus-slash.svg new file mode 100644 index 00000000..7850bc2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus.svg new file mode 100644 index 00000000..3d9f8dbd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/virus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/viruses.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/viruses.svg new file mode 100644 index 00000000..7ae2ac9e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/viruses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/voicemail.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/voicemail.svg new file mode 100644 index 00000000..d89e8e07 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/voicemail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volcano.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volcano.svg new file mode 100644 index 00000000..f8a50b37 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volcano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volleyball.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volleyball.svg new file mode 100644 index 00000000..49f2190a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volleyball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-high.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-high.svg new file mode 100644 index 00000000..251a03b6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-low.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-low.svg new file mode 100644 index 00000000..2ed6dd67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg new file mode 100644 index 00000000..8cdd81e0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-xmark.svg new file mode 100644 index 00000000..f61a0fc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/volume-xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vr-cardboard.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vr-cardboard.svg new file mode 100644 index 00000000..5a68f637 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/vr-cardboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/w.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/w.svg new file mode 100644 index 00000000..dac7c03f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/w.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/walkie-talkie.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/walkie-talkie.svg new file mode 100644 index 00000000..9c7b3c72 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/walkie-talkie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wallet.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wallet.svg new file mode 100644 index 00000000..13ff1cf8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wand-magic-sparkles.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wand-magic-sparkles.svg new file mode 100644 index 00000000..5725d4ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wand-magic-sparkles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wand-magic.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wand-magic.svg new file mode 100644 index 00000000..f707bb92 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wand-magic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wand-sparkles.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wand-sparkles.svg new file mode 100644 index 00000000..13dbb692 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wand-sparkles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/warehouse.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/warehouse.svg new file mode 100644 index 00000000..25a051fe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/warehouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/water-ladder.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/water-ladder.svg new file mode 100644 index 00000000..271c1529 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/water-ladder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/water.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/water.svg new file mode 100644 index 00000000..d9a4bbb0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wave-square.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wave-square.svg new file mode 100644 index 00000000..b09fd59b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wave-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/weight-hanging.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/weight-hanging.svg new file mode 100644 index 00000000..a7a22efd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/weight-hanging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/weight-scale.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/weight-scale.svg new file mode 100644 index 00000000..902d95ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/weight-scale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheat-awn-circle-exclamation.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheat-awn-circle-exclamation.svg new file mode 100644 index 00000000..42279507 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheat-awn-circle-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheat-awn.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheat-awn.svg new file mode 100644 index 00000000..168b6a46 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheat-awn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheelchair-move.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheelchair-move.svg new file mode 100644 index 00000000..fef98904 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheelchair-move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheelchair.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheelchair.svg new file mode 100644 index 00000000..d4933654 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wheelchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/whiskey-glass.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/whiskey-glass.svg new file mode 100644 index 00000000..19b32fc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/whiskey-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wifi.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wifi.svg new file mode 100644 index 00000000..9e78a32e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wind.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wind.svg new file mode 100644 index 00000000..de69a7a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg new file mode 100644 index 00000000..56e82ce0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg new file mode 100644 index 00000000..a1069d11 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-restore.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-restore.svg new file mode 100644 index 00000000..1c13002f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/window-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wine-bottle.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wine-bottle.svg new file mode 100644 index 00000000..2941b451 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wine-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wine-glass-empty.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wine-glass-empty.svg new file mode 100644 index 00000000..58c3d5f7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wine-glass-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wine-glass.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wine-glass.svg new file mode 100644 index 00000000..df3cfe27 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wine-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/won-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/won-sign.svg new file mode 100644 index 00000000..6a839944 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/won-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/worm.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/worm.svg new file mode 100644 index 00000000..2922c61b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/worm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wrench.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wrench.svg new file mode 100644 index 00000000..9bafb70d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/x-ray.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/x-ray.svg new file mode 100644 index 00000000..f68f5892 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/x-ray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/x.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/x.svg new file mode 100644 index 00000000..345bfff7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/xmark.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/xmark.svg new file mode 100644 index 00000000..c2b304e2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/xmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/xmarks-lines.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/xmarks-lines.svg new file mode 100644 index 00000000..30286732 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/xmarks-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/y.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/y.svg new file mode 100644 index 00000000..0c488e55 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/y.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/yen-sign.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/yen-sign.svg new file mode 100644 index 00000000..a49fac19 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/yen-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/yin-yang.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/yin-yang.svg new file mode 100644 index 00000000..805f453f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/yin-yang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/z.svg b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/z.svg new file mode 100644 index 00000000..857f4840 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/svgs/solid/z.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf new file mode 100644 index 00000000..30f55b74 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 new file mode 100644 index 00000000..8a480d9b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf new file mode 100644 index 00000000..c79589d8 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 new file mode 100644 index 00000000..059a94e2 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf new file mode 100644 index 00000000..e479fb29 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 new file mode 100644 index 00000000..88b0367a Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.ttf b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.ttf new file mode 100644 index 00000000..ba6cb258 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.woff2 b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.woff2 new file mode 100644 index 00000000..23b1c47b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/animation.css b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/animation.css new file mode 100644 index 00000000..2fd11696 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/animation.css @@ -0,0 +1,414 @@ +/* Spin Animation Start */ +.animate.spin { + -moz-animation: spin 2s infinite linear; + -o-animation: spin 2s infinite linear; + -webkit-animation: spin 2s infinite linear; + animation: spin 2s infinite linear; + display: inline-block; +} + +.animate.spin-slow { + -moz-animation: spin 4s infinite linear; + -o-animation: spin 4s infinite linear; + -webkit-animation: spin 4s infinite linear; + animation: spin 4s infinite linear; + display: inline-block; +} + +.animate.spin-fast { + -moz-animation: spin 1s infinite linear; + -o-animation: spin 1s infinite linear; + -webkit-animation: spin 1s infinite linear; + animation: spin 1s infinite linear; + display: inline-block; +} + + +@keyframes spin { + 0% { + -moz-transform: rotate(0deg); + -o-transform: rotate(0deg); + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% { + -moz-transform: rotate(359deg); + -o-transform: rotate(359deg); + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@-moz-keyframes spin { + 0% { + -moz-transform: rotate(0deg); + -o-transform: rotate(0deg); + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% { + -moz-transform: rotate(359deg); + -o-transform: rotate(359deg); + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@-o-keyframes spin { + 0% { + -moz-transform: rotate(0deg); + -o-transform: rotate(0deg); + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% { + -moz-transform: rotate(359deg); + -o-transform: rotate(359deg); + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@-webkit-keyframes spin { + 0% { + -moz-transform: rotate(0deg); + -o-transform: rotate(0deg); + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% { + -moz-transform: rotate(359deg); + -o-transform: rotate(359deg); + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +@-ms-keyframes spin { + 0% { + -moz-transform: rotate(0deg); + -o-transform: rotate(0deg); + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + + 100% { + -moz-transform: rotate(359deg); + -o-transform: rotate(359deg); + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} + +/* Spin Animation End */ + +/* Pulse Animation Start */ + +.animate.pulse { + -moz-animation: pulse 2s infinite linear; + -o-animation: pulse 2s infinite linear; + -webkit-animation: pulse 2s infinite linear; + animation: pulse 2s infinite linear; + display: inline-block; +} + +.animate.pulse-slow { + -moz-animation: pulse 4s infinite linear; + -o-animation: pulse 4s infinite linear; + -webkit-animation: pulse 4s infinite linear; + animation: pulse 4s infinite linear; + display: inline-block; +} + +.animate.pulse-fast { + -moz-animation: pulse 1s infinite linear; + -o-animation: pulse 1s infinite linear; + -webkit-animation: pulse 1s infinite linear; + animation: pulse 1s infinite linear; + display: inline-block; +} + + +@keyframes pulse { + 50% { + -moz-transform: scale(0.5); + -o-transform: scale(0.5); + -webkit-transform: scale(0.5); + transform: scale(0.5); + } +} + +@-moz-keyframes pulse { + 50% { + -moz-transform: scale(0.5); + -o-transform: scale(0.5); + -webkit-transform: scale(0.5); + transform: scale(0.5); + } +} + +@-o-keyframes pulse { + 50% { + -moz-transform: scale(0.5); + -o-transform: scale(0.5); + -webkit-transform: scale(0.5); + transform: scale(0.5); + } +} + +@-webkit-keyframes pulse { + 50% { + -moz-transform: scale(0.5); + -o-transform: scale(0.5); + -webkit-transform: scale(0.5); + transform: scale(0.5); + } +} + +@-ms-keyframes pulse { + 50% { + -moz-transform: scale(0.5); + -o-transform: scale(0.5); + -webkit-transform: scale(0.5); + transform: scale(0.5); + } +} + +/* Pulse Animation End */ + +/* Vibrate Animation Start */ + +.animate.vibrate { + -moz-animation: vibrate 0.1s infinite linear; + -o-animation: vibrate 0.1s infinite linear; + -webkit-animation: vibrate 0.1s infinite linear; + animation: vibrate 0.1s infinite linear; + display: inline-block; +} + +.animate.vibrate-slow { + -moz-animation: vibrate 0.2s infinite linear; + -o-animation: vibrate 0.2s infinite linear; + -webkit-animation: vibrate 0.2s infinite linear; + animation: vibrate 0.2s infinite linear; + display: inline-block; +} + +.animate.vibrate-fast { + -moz-animation: vibrate 0.07s infinite linear; + -o-animation: vibrate 0.07s infinite linear; + -webkit-animation: vibrate 0.07s infinite linear; + animation: vibrate 0.07s infinite linear; + display: inline-block; +} + + +@keyframes vibrate { + 25% { + -moz-transform: translate(-2px); + -o-transform: translate(-2px); + -webkit-transform: translate(-2px); + transform: translate(-2px); + } + + 75% { + -moz-transform: translate(2px); + -o-transform: translate(2px); + -webkit-transform: translate(2px); + transform: translate(2px); + } +} + +@-moz-keyframes vibrate { + 25% { + -moz-transform: translate(-2px); + -o-transform: translate(-2px); + -webkit-transform: translate(-2px); + transform: translate(-2px); + } + + 75% { + -moz-transform: translate(2px); + -o-transform: translate(2px); + -webkit-transform: translate(2px); + transform: translate(2px); + } +} + +@-o-keyframes vibrate { + 25% { + -moz-transform: translate(-2px); + -o-transform: translate(-2px); + -webkit-transform: translate(-2px); + transform: translate(-2px); + } + + 75% { + -moz-transform: translate(2px); + -o-transform: translate(2px); + -webkit-transform: translate(2px); + transform: translate(2px); + } +} + +@-webkit-keyframes vibrate { + 25% { + -moz-transform: translate(-2px); + -o-transform: translate(-2px); + -webkit-transform: translate(-2px); + transform: translate(-2px); + } + + 75% { + -moz-transform: translate(2px); + -o-transform: translate(2px); + -webkit-transform: translate(2px); + transform: translate(2px); + } +} + +@-ms-keyframes vibrate { + 25% { + -moz-transform: translate(-2px); + -o-transform: translate(-2px); + -webkit-transform: translate(-2px); + transform: translate(-2px); + } + + 75% { + -moz-transform: translate(2px); + -o-transform: translate(2px); + -webkit-transform: translate(2px); + transform: translate(2px); + } +} + +/* Vibrate Animation End */ + +/* Blink Smooth Animation Start */ + +.animate.blink-smooth { + -moz-animation: blink-s 0.8s infinite linear; + -o-animation: blink-s 0.8s infinite linear; + -webkit-animation: blink-s 0.8s infinite linear; + animation: blink-s 0.8s infinite linear; + display: inline-block; +} + +.animate.blink-smooth-slow { + -moz-animation: blink-s 1.2s infinite linear; + -o-animation: blink-s 1.2s infinite linear; + -webkit-animation: blink-s 1.2s infinite linear; + animation: blink-s 1.2s infinite linear; + display: inline-block; +} + +.animate.blink-smooth-fast { + -moz-animation: blink-s 0.4s infinite linear; + -o-animation: blink-s 0.4s infinite linear; + -webkit-animation: blink-s 0.4s infinite linear; + animation: blink-s 0.4s infinite linear; + display: inline-block; +} + + +@keyframes blink-s { + 50% { + opacity: 0; + filter: alpha(opacity=100); + } +} + +@-moz-keyframes blink-s { + 50% { + opacity: 0; + filter: alpha(opacity=100); + } +} + +@-o-keyframes blink-s { + 50% { + opacity: 0; + filter: alpha(opacity=100); + } +} + +@-webkit-keyframes blink-s { + 50% { + opacity: 0; + filter: alpha(opacity=100); + } +} + +@-ms-keyframes blink-s { + 50% { + opacity: 0; + filter: alpha(opacity=100); + } +} + +/* Blink Smooth Animation End */ + +/* Blink Animation Start */ + +.animate.blink { + -moz-animation: blink 0.8s infinite linear; + -o-animation: blink 0.8s infinite linear; + -webkit-animation: blink 0.8s infinite linear; + animation: blink 0.8s infinite linear; + display: inline-block; +} + +.animate.blink-slow { + -moz-animation: blink 1.2s infinite linear; + -o-animation: blink 1.2s infinite linear; + -webkit-animation: blink 1.2s infinite linear; + animation: blink 1.2s infinite linear; + display: inline-block; +} + +.animate.blink-fast { + -moz-animation: blink 0.4s infinite linear; + -o-animation: blink 0.4s infinite linear; + -webkit-animation: blink 0.4s infinite linear; + animation: blink 0.4s infinite linear; + display: inline-block; +} + + +@keyframes blink { + 50%, 100% { + visibility: hidden; + } +} + +@-moz-keyframes blink { + 50%, 100% { + visibility: hidden; + } +} + +@-o-keyframes blink { + 50%, 100% { + visibility: hidden; + } +} + +@-webkit-keyframes blink { + 50%, 100% { + visibility: hidden; + } +} + +@-ms-keyframes blink { + 50%, 100% { + visibility: hidden; + } +} + +/* Blink Animation End */ + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/before.css b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/before.css new file mode 100644 index 00000000..772d6f67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/before.css @@ -0,0 +1,69 @@ +[class^="{CSS_PREFIX}-"]:before, +[class*=" {CSS_PREFIX}-"]:before { + font-family: "unicons-{STYLE}"; + font-style: normal; + font-weight: normal; + speak: none; + + display: inline-block; + text-decoration: inherit; + + /* For safety - reset parent styles, that can break glyph codes */ + font-variant: normal; + text-transform: none; + + /* fix buttons height, for twitter bootstrap */ + line-height: 1; + + /* Font smoothing. That was taken from TWBS */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* Flip and Rotate */ + +[class*="{CSS_PREFIX}-"].flip-horizontal:before { + transform: scaleX(-1); +} +[class*="{CSS_PREFIX}-"].flip-horizontal.rotate-90:before { + transform: rotate(90deg) scaleX(-1); +} +[class*="{CSS_PREFIX}-"].flip-horizontal.rotate-180:before { + transform: rotate(180deg) scaleX(-1); +} +[class*="{CSS_PREFIX}-"].flip-horizontal.rotate-270:before { + transform: rotate(270deg) scaleX(-1); +} +[class*="{CSS_PREFIX}-"].flip-horizontal.flip-vertical:before { + transform: scale(-1); +} +[class*="{CSS_PREFIX}-"].flip-horizontal.flip-vertical.rotate-90:before { + transform: rotate(90deg) scale(-1); +} +[class*="{CSS_PREFIX}-"].flip-horizontal.flip-vertical.rotate-180:before { + transform: rotate(180deg) scale(-1); +} +[class*="{CSS_PREFIX}-"].flip-horizontal.flip-vertical.rotate-270:before { + transform: rotate(270deg) scale(-1); +} +[class*="{CSS_PREFIX}-"].flip-vertical:before { + transform: scaleY(-1); +} +[class*="{CSS_PREFIX}-"].flip-vertical.rotate-90:before { + transform: rotate(90deg) scaleY(-1); +} +[class*="{CSS_PREFIX}-"].flip-vertical.rotate-180:before { + transform: rotate(180deg) scaleY(-1); +} +[class*="{CSS_PREFIX}-"].flip-vertical.rotate-270:before { + transform: rotate(270deg) scaleY(-1); +} +[class*="{CSS_PREFIX}-"].rotate-90:before { + transform: rotate(90deg); +} +[class*="{CSS_PREFIX}-"].rotate-180:before { + transform: rotate(180deg); +} +[class*="{CSS_PREFIX}-"].rotate-270:before { + transform: rotate(270deg); +} diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/line.css b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/line.css new file mode 100644 index 00000000..0eb4421c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/line.css @@ -0,0 +1,321 @@ +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-0.eot'); + src: url('../fonts/line/unicons-0.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-0.woff2') format('woff2'), + url('../fonts/line/unicons-0.woff') format('woff'), + url('../fonts/line/unicons-0.ttf') format('truetype'), + url('../fonts/line/unicons-0.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E800-E83B; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-1.eot'); + src: url('../fonts/line/unicons-1.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-1.woff2') format('woff2'), + url('../fonts/line/unicons-1.woff') format('woff'), + url('../fonts/line/unicons-1.ttf') format('truetype'), + url('../fonts/line/unicons-1.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E83C-E877; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-10.eot'); + src: url('../fonts/line/unicons-10.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-10.woff2') format('woff2'), + url('../fonts/line/unicons-10.woff') format('woff'), + url('../fonts/line/unicons-10.ttf') format('truetype'), + url('../fonts/line/unicons-10.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EA5B-EA96; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-11.eot'); + src: url('../fonts/line/unicons-11.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-11.woff2') format('woff2'), + url('../fonts/line/unicons-11.woff') format('woff'), + url('../fonts/line/unicons-11.ttf') format('truetype'), + url('../fonts/line/unicons-11.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EA97-EAD4; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-12.eot'); + src: url('../fonts/line/unicons-12.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-12.woff2') format('woff2'), + url('../fonts/line/unicons-12.woff') format('woff'), + url('../fonts/line/unicons-12.ttf') format('truetype'), + url('../fonts/line/unicons-12.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EAD5-EB11; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-13.eot'); + src: url('../fonts/line/unicons-13.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-13.woff2') format('woff2'), + url('../fonts/line/unicons-13.woff') format('woff'), + url('../fonts/line/unicons-13.ttf') format('truetype'), + url('../fonts/line/unicons-13.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EB12-EB4D; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-14.eot'); + src: url('../fonts/line/unicons-14.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-14.woff2') format('woff2'), + url('../fonts/line/unicons-14.woff') format('woff'), + url('../fonts/line/unicons-14.ttf') format('truetype'), + url('../fonts/line/unicons-14.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EB4E-EB89; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-15.eot'); + src: url('../fonts/line/unicons-15.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-15.woff2') format('woff2'), + url('../fonts/line/unicons-15.woff') format('woff'), + url('../fonts/line/unicons-15.ttf') format('truetype'), + url('../fonts/line/unicons-15.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EB8A-EBC5; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-16.eot'); + src: url('../fonts/line/unicons-16.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-16.woff2') format('woff2'), + url('../fonts/line/unicons-16.woff') format('woff'), + url('../fonts/line/unicons-16.ttf') format('truetype'), + url('../fonts/line/unicons-16.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EBC6-EC01; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-17.eot'); + src: url('../fonts/line/unicons-17.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-17.woff2') format('woff2'), + url('../fonts/line/unicons-17.woff') format('woff'), + url('../fonts/line/unicons-17.ttf') format('truetype'), + url('../fonts/line/unicons-17.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EC02-EC3D; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-18.eot'); + src: url('../fonts/line/unicons-18.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-18.woff2') format('woff2'), + url('../fonts/line/unicons-18.woff') format('woff'), + url('../fonts/line/unicons-18.ttf') format('truetype'), + url('../fonts/line/unicons-18.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EC3E-EC79; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-19.eot'); + src: url('../fonts/line/unicons-19.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-19.woff2') format('woff2'), + url('../fonts/line/unicons-19.woff') format('woff'), + url('../fonts/line/unicons-19.ttf') format('truetype'), + url('../fonts/line/unicons-19.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EC7A-ECB5; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-2.eot'); + src: url('../fonts/line/unicons-2.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-2.woff2') format('woff2'), + url('../fonts/line/unicons-2.woff') format('woff'), + url('../fonts/line/unicons-2.ttf') format('truetype'), + url('../fonts/line/unicons-2.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E878-E8B3; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-20.eot'); + src: url('../fonts/line/unicons-20.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-20.woff2') format('woff2'), + url('../fonts/line/unicons-20.woff') format('woff'), + url('../fonts/line/unicons-20.ttf') format('truetype'), + url('../fonts/line/unicons-20.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+ECB6-ECB9; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-3.eot'); + src: url('../fonts/line/unicons-3.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-3.woff2') format('woff2'), + url('../fonts/line/unicons-3.woff') format('woff'), + url('../fonts/line/unicons-3.ttf') format('truetype'), + url('../fonts/line/unicons-3.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E8B4-E8EF; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-4.eot'); + src: url('../fonts/line/unicons-4.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-4.woff2') format('woff2'), + url('../fonts/line/unicons-4.woff') format('woff'), + url('../fonts/line/unicons-4.ttf') format('truetype'), + url('../fonts/line/unicons-4.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E8F0-E92B; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-5.eot'); + src: url('../fonts/line/unicons-5.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-5.woff2') format('woff2'), + url('../fonts/line/unicons-5.woff') format('woff'), + url('../fonts/line/unicons-5.ttf') format('truetype'), + url('../fonts/line/unicons-5.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E92C-E967; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-6.eot'); + src: url('../fonts/line/unicons-6.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-6.woff2') format('woff2'), + url('../fonts/line/unicons-6.woff') format('woff'), + url('../fonts/line/unicons-6.ttf') format('truetype'), + url('../fonts/line/unicons-6.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E968-E9A4; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-7.eot'); + src: url('../fonts/line/unicons-7.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-7.woff2') format('woff2'), + url('../fonts/line/unicons-7.woff') format('woff'), + url('../fonts/line/unicons-7.ttf') format('truetype'), + url('../fonts/line/unicons-7.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E9A5-E9E1; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-8.eot'); + src: url('../fonts/line/unicons-8.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-8.woff2') format('woff2'), + url('../fonts/line/unicons-8.woff') format('woff'), + url('../fonts/line/unicons-8.ttf') format('truetype'), + url('../fonts/line/unicons-8.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E9E2-EA1D; +} +@font-face { + font-family: 'unicons-line'; + src: url('../fonts/line/unicons-9.eot'); + src: url('../fonts/line/unicons-9.eot#iefix') format('embedded-opentype'), + url('../fonts/line/unicons-9.woff2') format('woff2'), + url('../fonts/line/unicons-9.woff') format('woff'), + url('../fonts/line/unicons-9.ttf') format('truetype'), + url('../fonts/line/unicons-9.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+EA1E-EA5A; +}[class^="uil-"]:before, +[class*=" uil-"]:before { + font-family: "unicons-line"; + font-style: normal; + font-weight: normal; + speak: none; + + display: inline-block; + text-decoration: inherit; + + /* For safety - reset parent styles, that can break glyph codes */ + font-variant: normal; + text-transform: none; + + /* fix buttons height, for twitter bootstrap */ + line-height: 1; + + /* Font smoothing. That was taken from TWBS */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* Flip and Rotate */ + +[class*="uil-"].flip-horizontal:before { + transform: scaleX(-1); +} +[class*="uil-"].flip-horizontal.rotate-90:before { + transform: rotate(90deg) scaleX(-1); +} +[class*="uil-"].flip-horizontal.rotate-180:before { + transform: rotate(180deg) scaleX(-1); +} +[class*="uil-"].flip-horizontal.rotate-270:before { + transform: rotate(270deg) scaleX(-1); +} +[class*="uil-"].flip-horizontal.flip-vertical:before { + transform: scale(-1); +} +[class*="uil-"].flip-horizontal.flip-vertical.rotate-90:before { + transform: rotate(90deg) scale(-1); +} +[class*="uil-"].flip-horizontal.flip-vertical.rotate-180:before { + transform: rotate(180deg) scale(-1); +} +[class*="uil-"].flip-horizontal.flip-vertical.rotate-270:before { + transform: rotate(270deg) scale(-1); +} +[class*="uil-"].flip-vertical:before { + transform: scaleY(-1); +} +[class*="uil-"].flip-vertical.rotate-90:before { + transform: rotate(90deg) scaleY(-1); +} +[class*="uil-"].flip-vertical.rotate-180:before { + transform: rotate(180deg) scaleY(-1); +} +[class*="uil-"].flip-vertical.rotate-270:before { + transform: rotate(270deg) scaleY(-1); +} +[class*="uil-"].rotate-90:before { + transform: rotate(90deg); +} +[class*="uil-"].rotate-180:before { + transform: rotate(180deg); +} +[class*="uil-"].rotate-270:before { + transform: rotate(270deg); +} +.uil-comment-block:before { content: '\e800'; }.uil-comment-alt-edit:before { content: '\e801'; }.uil-comments:before { content: '\e802'; }.uil-comment-alt-search:before { content: '\e803'; }.uil-comment-shield:before { content: '\e804'; }.uil-comment-alt-dots:before { content: '\e805'; }.uil-comment-download:before { content: '\e806'; }.uil-comment-check:before { content: '\e807'; }.uil-comment-alt-chart-lines:before { content: '\e808'; }.uil-comment-alt-download:before { content: '\e809'; }.uil-comment-alt-lock:before { content: '\e80a'; }.uil-comment-medical:before { content: '\e80b'; }.uil-comment-alt-heart:before { content: '\e80c'; }.uil-comment:before { content: '\e80d'; }.uil-comment-alt-share:before { content: '\e80e'; }.uil-comment-alt-upload:before { content: '\e80f'; }.uil-comment-dots:before { content: '\e810'; }.uil-comment-alt-lines:before { content: '\e811'; }.uil-comment-lock:before { content: '\e812'; }.uil-comment-heart:before { content: '\e813'; }.uil-comment-info-alt:before { content: '\e814'; }.uil-comment-upload:before { content: '\e815'; }.uil-comment-alt-medical:before { content: '\e816'; }.uil-chat-info:before { content: '\e817'; }.uil-comment-alt-notes:before { content: '\e818'; }.uil-comment-alt-plus:before { content: '\e819'; }.uil-comment-alt-image:before { content: '\e81a'; }.uil-comment-share:before { content: '\e81b'; }.uil-comment-edit:before { content: '\e81c'; }.uil-comment-alt-block:before { content: '\e81d'; }.uil-comment-chart-line:before { content: '\e81e'; }.uil-comment-alt-question:before { content: '\e81f'; }.uil-comment-lines:before { content: '\e820'; }.uil-comment-redo:before { content: '\e821'; }.uil-comment-alt-check:before { content: '\e822'; }.uil-comment-alt-shield:before { content: '\e823'; }.uil-chat:before { content: '\e824'; }.uil-comment-alt-message:before { content: '\e825'; }.uil-comment-search:before { content: '\e826'; }.uil-chat-bubble-user:before { content: '\e827'; }.uil-comments-alt:before { content: '\e828'; }.uil-comment-image:before { content: '\e829'; }.uil-comment-alt:before { content: '\e82a'; }.uil-comment-verify:before { content: '\e82b'; }.uil-comment-plus:before { content: '\e82c'; }.uil-comment-question:before { content: '\e82d'; }.uil-comment-notes:before { content: '\e82e'; }.uil-comment-alt-exclamation:before { content: '\e82f'; }.uil-comment-exclamation:before { content: '\e830'; }.uil-no-entry:before { content: '\e831'; }.uil-screw:before { content: '\e832'; }.uil-tape:before { content: '\e833'; }.uil-paint-tool:before { content: '\e834'; }.uil-comment-alt-verify:before { content: '\e835'; }.uil-comment-alt-redo:before { content: '\e836'; }.uil-trowel:before { content: '\e837'; }.uil-drill:before { content: '\e838'; }.uil-comment-info:before { content: '\e839'; }.uil-jackhammer:before { content: '\e83a'; }.uil-comment-alt-info:before { content: '\e83b'; }.uil-wheel-barrow:before { content: '\e83c'; }.uil-comment-message:before { content: '\e83d'; }.uil-shovel:before { content: '\e83e'; }.uil-keyhole-square:before { content: '\e83f'; }.uil-keyhole-circle:before { content: '\e840'; }.uil-traffic-barrier:before { content: '\e841'; }.uil-keyhole-square-full:before { content: '\e842'; }.uil-wall:before { content: '\e843'; }.uil-constructor:before { content: '\e844'; }.uil-hard-hat:before { content: '\e845'; }.uil-shield-exclamation:before { content: '\e846'; }.uil-lock-open-alt:before { content: '\e847'; }.uil-unlock:before { content: '\e848'; }.uil-unlock-alt:before { content: '\e849'; }.uil-heart-alt:before { content: '\e84a'; }.uil-octagon:before { content: '\e84b'; }.uil-lock:before { content: '\e84c'; }.uil-triangle:before { content: '\e84d'; }.uil-star:before { content: '\e84e'; }.uil-shield-slash:before { content: '\e84f'; }.uil-lock-access:before { content: '\e850'; }.uil-pentagon:before { content: '\e851'; }.uil-shield-check:before { content: '\e852'; }.uil-square:before { content: '\e853'; }.uil-shield-question:before { content: '\e854'; }.uil-padlock:before { content: '\e855'; }.uil-wheelchair:before { content: '\e856'; }.uil-lock-alt:before { content: '\e857'; }.uil-polygon:before { content: '\e858'; }.uil-circle:before { content: '\e859'; }.uil-copyright:before { content: '\e85a'; }.uil-closed-captioning:before { content: '\e85b'; }.uil-trademark:before { content: '\e85c'; }.uil-heart:before { content: '\e85d'; }.uil-parking-circle:before { content: '\e85e'; }.uil-mars:before { content: '\e85f'; }.uil-sad-squint:before { content: '\e860'; }.uil-registered:before { content: '\e861'; }.uil-nerd:before { content: '\e862'; }.uil-smile:before { content: '\e863'; }.uil-meh-alt:before { content: '\e864'; }.uil-annoyed:before { content: '\e865'; }.uil-sad-dizzy:before { content: '\e866'; }.uil-sad:before { content: '\e867'; }.uil-servicemark:before { content: '\e868'; }.uil-closed-captioning-slash:before { content: '\e869'; }.uil-venus:before { content: '\e86a'; }.uil-creative-commons-pd:before { content: '\e86b'; }.uil-frown:before { content: '\e86c'; }.uil-accessible-icon-alt:before { content: '\e86d'; }.uil-squint:before { content: '\e86e'; }.uil-meh:before { content: '\e86f'; }.uil-silence:before { content: '\e870'; }.uil-dizzy-meh:before { content: '\e871'; }.uil-parking-square:before { content: '\e872'; }.uil-shield:before { content: '\e873'; }.uil-smile-dizzy:before { content: '\e874'; }.uil-ninja:before { content: '\e875'; }.uil-smile-beam:before { content: '\e876'; }.uil-laughing:before { content: '\e877'; }.uil-previous:before { content: '\ea5b'; }.uil-film:before { content: '\ea5c'; }.uil-image-broken:before { content: '\ea5d'; }.uil-incoming-call:before { content: '\ea5e'; }.uil-image-check:before { content: '\ea5f'; }.uil-image-plus:before { content: '\ea60'; }.uil-video:before { content: '\ea61'; }.uil-camera-plus:before { content: '\ea62'; }.uil-play:before { content: '\ea63'; }.uil-cloud-question:before { content: '\ea64'; }.uil-skip-forward:before { content: '\ea65'; }.uil-image-lock:before { content: '\ea66'; }.uil-skip-forward-circle:before { content: '\ea67'; }.uil-skip-forward-alt:before { content: '\ea68'; }.uil-step-backward-circle:before { content: '\ea69'; }.uil-boombox:before { content: '\ea6a'; }.uil-step-backward-alt:before { content: '\ea6b'; }.uil-image-share:before { content: '\ea6c'; }.uil-cloud-database-tree:before { content: '\ea6d'; }.uil-snowflake:before { content: '\ea6e'; }.uil-temperature-quarter:before { content: '\ea6f'; }.uil-cloud-showers-heavy:before { content: '\ea70'; }.uil-fahrenheit:before { content: '\ea71'; }.uil-snowflake-alt:before { content: '\ea72'; }.uil-cloud-wind:before { content: '\ea73'; }.uil-tornado:before { content: '\ea74'; }.uil-cloud-sun-hail:before { content: '\ea75'; }.uil-cloud:before { content: '\ea76'; }.uil-image-edit:before { content: '\ea77'; }.uil-cloud-moon-hail:before { content: '\ea78'; }.uil-temperature-empty:before { content: '\ea79'; }.uil-cloud-sun-rain:before { content: '\ea7a'; }.uil-thunderstorm:before { content: '\ea7b'; }.uil-thunderstorm-sun:before { content: '\ea7c'; }.uil-temperature-three-quarter:before { content: '\ea7d'; }.uil-thunderstorm-moon:before { content: '\ea7e'; }.uil-snow-flake:before { content: '\ea7f'; }.uil-raindrops:before { content: '\ea80'; }.uil-forecastcloud-moon-tear:before { content: '\ea81'; }.uil-cloud-rain:before { content: '\ea82'; }.uil-cloud-sun-tear:before { content: '\ea83'; }.uil-cloud-moon-showers:before { content: '\ea84'; }.uil-cloud-rain-sun:before { content: '\ea85'; }.uil-cloud-showers-alt:before { content: '\ea86'; }.uil-cloud-showers:before { content: '\ea87'; }.uil-cloud-hail:before { content: '\ea88'; }.uil-cloud-drizzle:before { content: '\ea89'; }.uil-cloud-moon:before { content: '\ea8a'; }.uil-moon:before { content: '\ea8b'; }.uil-cloud-moon-rain:before { content: '\ea8c'; }.uil-moonset:before { content: '\ea8d'; }.uil-celsius:before { content: '\ea8e'; }.uil-image-upload:before { content: '\ea8f'; }.uil-cloud-sun-meatball:before { content: '\ea90'; }.uil-windsock:before { content: '\ea91'; }.uil-stop-circle:before { content: '\ea92'; }.uil-temperature-plus:before { content: '\ea93'; }.uil-moon-eclipse:before { content: '\ea94'; }.uil-vertical-align-top:before { content: '\ea95'; }.uil-cloud-meatball:before { content: '\ea96'; }.uil-temperature:before { content: '\ea97'; }.uil-cloud-moon-meatball:before { content: '\ea98'; }.uil-flip-h-alt:before { content: '\ea99'; }.uil-vector-square-alt:before { content: '\ea9a'; }.uil-object-ungroup:before { content: '\ea9b'; }.uil-th:before { content: '\ea9c'; }.uil-images:before { content: '\ea9d'; }.uil-temperature-minus:before { content: '\ea9e'; }.uil-flip-v:before { content: '\ea9f'; }.uil-cloud-sun-rain-alt:before { content: '\eaa0'; }.uil-square-full:before { content: '\eaa2'; }.uil-vertical-distribute-bottom:before { content: '\eaa3'; }.uil-panorama-h-alt:before { content: '\eaa4'; }.uil-pathfinder-unite:before { content: '\eaa5'; }.uil-wind:before { content: '\eaa6'; }.uil-vector-square:before { content: '\eaa7'; }.uil-vertical-align-bottom:before { content: '\eaa8'; }.uil-ruler:before { content: '\eaa9'; }.uil-object-group:before { content: '\eaaa'; }.uil-panorama-v:before { content: '\eaab'; }.uil-panorama-h:before { content: '\eaac'; }.uil-temperature-half:before { content: '\eaad'; }.uil-layers-alt:before { content: '\eaaf'; }.uil-line-alt:before { content: '\eab0'; }.uil-image-resize-landscape:before { content: '\eab1'; }.uil-image-resize-square:before { content: '\eab2'; }.uil-pathfinder:before { content: '\eab3'; }.uil-flip-h:before { content: '\eab4'; }.uil-horizontal-distribution-right:before { content: '\eab5'; }.uil-horizontal-distribution-left:before { content: '\eab6'; }.uil-horizontal-distribution-center:before { content: '\eab7'; }.uil-horizontal-align-center:before { content: '\eab8'; }.uil-ruler-combined:before { content: '\eab9'; }.uil-horizontal-align-right:before { content: '\eaba'; }.uil-horizontal-align-left:before { content: '\eabb'; }.uil-table:before { content: '\eabc'; }.uil-th-slash:before { content: '\eabd'; }.uil-crop-alt-rotate-right:before { content: '\eabe'; }.uil-apps:before { content: '\eabf'; }.uil-exclude:before { content: '\eac0'; }.uil-crop-alt:before { content: '\eac1'; }.uil-grids:before { content: '\eac2'; }.uil-flip-v-alt:before { content: '\eac3'; }.uil-vertical-distribution-center:before { content: '\eac4'; }.uil-crop-alt-rotate-left:before { content: '\eac5'; }.uil-vertical-distribution-top:before { content: '\eac6'; }.uil-brush-alt:before { content: '\eac7'; }.uil-circle-layer:before { content: '\eac8'; }.uil-modem:before { content: '\eac9'; }.uil-webcam:before { content: '\eaca'; }.uil-hdd:before { content: '\eacb'; }.uil-monitor:before { content: '\eacc'; }.uil-dice-four:before { content: '\eacd'; }.uil-wifi-router:before { content: '\eace'; }.uil-dice-five:before { content: '\eacf'; }.uil-dice-one:before { content: '\ead0'; }.uil-dice-two:before { content: '\ead1'; }.uil-dice-six:before { content: '\ead2'; }.uil-windy:before { content: '\ead3'; }.uil-swatchbook:before { content: '\ead4'; }.uil-cancel:before { content: '\ead5'; }.uil-clouds:before { content: '\ead6'; }.uil-mountains-sun:before { content: '\ead7'; }.uil-history:before { content: '\ead8'; }.uil-n-a:before { content: '\ead9'; }.uil-plane:before { content: '\eada'; }.uil-plane-departure:before { content: '\eadb'; }.uil-auto-flash:before { content: '\eadc'; }.uil-glass-martini:before { content: '\eadd'; }.uil-mobile-vibrate:before { content: '\eade'; }.uil-trees:before { content: '\eadf'; }.uil-voicemail:before { content: '\eae0'; }.uil-voicemail-rectangle:before { content: '\eae1'; }.uil-plane-fly:before { content: '\eae2'; }.uil-sync-exclamation:before { content: '\eae3'; }.uil-tachometer-fast:before { content: '\eae4'; }.uil-sign-in-alt:before { content: '\eae5'; }.uil-archive-alt:before { content: '\eae6'; }.uil-power:before { content: '\eae7'; }.uil-pizza-slice:before { content: '\eae9'; }.uil-refresh:before { content: '\eaea'; }.uil-anchor:before { content: '\eaeb'; }.uil-sync-slash:before { content: '\eaec'; }.uil-upload:before { content: '\eaed'; }.uil-glass:before { content: '\eaee'; }.uil-sign-out-alt:before { content: '\eaef'; }.uil-newspaper:before { content: '\eaf0'; }.uil-signin:before { content: '\eaf1'; }.uil-processor:before { content: '\eaf2'; }.uil-hunting:before { content: '\eaf3'; }.uil-coffee:before { content: '\eaf4'; }.uil-history-alt:before { content: '\eaf5'; }.uil-weight:before { content: '\eaf6'; }.uil-plane-arrival:before { content: '\eaf7'; }.uil-gift:before { content: '\eaf8'; }.uil-circuit:before { content: '\eaf9'; }.uil-archive:before { content: '\eafa'; }.uil-ban:before { content: '\eafb'; }.uil-crosshair-alt:before { content: '\eafc'; }.uil-crosshair:before { content: '\eafd'; }.uil-record-audio:before { content: '\eafe'; }.uil-flower:before { content: '\eaff'; }.uil-airplay:before { content: '\eb00'; }.uil-rss-interface:before { content: '\eb01'; }.uil-equal-circle:before { content: '\eb02'; }.uil-shutter:before { content: '\eb03'; }.uil-microphone-slash:before { content: '\eb04'; }.uil-life-ring:before { content: '\eb05'; }.uil-sliders-v-alt:before { content: '\eb06'; }.uil-compact-disc:before { content: '\eb07'; }.uil-sitemap:before { content: '\eb08'; }.uil-sliders-v:before { content: '\eb09'; }.uil-shutter-alt:before { content: '\eb0a'; }.uil-clapper-board:before { content: '\eb0b'; }.uil-water:before { content: '\eb0c'; }.uil-rainbow:before { content: '\eb0d'; }.uil-desert:before { content: '\eb0e'; }.uil-sunset:before { content: '\eb0f'; }.uil-mountains:before { content: '\eb10'; }.uil-bolt-slash:before { content: '\eb11'; }.uil-telescope:before { content: '\eb12'; }.uil-sperms:before { content: '\eb13'; }.uil-game-structure:before { content: '\eb14'; }.uil-ticket:before { content: '\eb15'; }.uil-presentation-play:before { content: '\eb16'; }.uil-book-open:before { content: '\eb17'; }.uil-notebooks:before { content: '\eb18'; }.uil-award-alt:before { content: '\eb19'; }.uil-bug:before { content: '\eb1a'; }.uil-browser:before { content: '\eb1b'; }.uil-rss-alt:before { content: '\eb1c'; }.uil-building:before { content: '\eb1d'; }.uil-lamp:before { content: '\eb1e'; }.uil-heart-rate:before { content: '\eb1f'; }.uil-swimmer:before { content: '\eb20'; }.uil-pump:before { content: '\eb21'; }.uil-crockery:before { content: '\eb22'; }.uil-message:before { content: '\eb23'; }.uil-bed-double:before { content: '\eb24'; }.uil-rope-way:before { content: '\eb25'; }.uil-water-glass:before { content: '\eb26'; }.uil-rotate-360:before { content: '\eb27'; }.uil-feedback:before { content: '\eb28'; }.uil-bed:before { content: '\eb29'; }.uil-utensils:before { content: '\eb2a'; }.uil-align-center-h:before { content: '\eb2b'; }.uil-baby-carriage:before { content: '\eb2c'; }.uil-post-stamp:before { content: '\eb2d'; }.uil-arrow-growth:before { content: '\eb2e'; }.uil-enter:before { content: '\eb2f'; }.uil-arrow:before { content: '\eb30'; }.uil-arrows-shrink-h:before { content: '\eb31'; }.uil-arrows-resize:before { content: '\eb32'; }.uil-presentation:before { content: '\eb33'; }.uil-arrows-h:before { content: '\eb34'; }.uil-scaling-right:before { content: '\eb35'; }.uil-import:before { content: '\eb36'; }.uil-arrow-circle-down:before { content: '\eb37'; }.uil-angle-double-down:before { content: '\eb38'; }.uil-chart-down:before { content: '\eb39'; }.uil-angle-down:before { content: '\eb3a'; }.uil-expand-left:before { content: '\eb3b'; }.uil-arrow-resize-diagonal:before { content: '\eb3c'; }.uil-exchange-alt:before { content: '\eb3d'; }.uil-angle-double-left:before { content: '\eb3e'; }.uil-expand-alt:before { content: '\eb3f'; }.uil-compress-arrows:before { content: '\eb40'; }.uil-caret-right:before { content: '\eb41'; }.uil-scroll-h:before { content: '\eb42'; }.uil-angle-double-right:before { content: '\eb43'; }.uil-arrow-to-bottom:before { content: '\eb44'; }.uil-sort:before { content: '\eb45'; }.uil-scaling-left:before { content: '\eb46'; }.uil-arrows-resize-h:before { content: '\eb47'; }.uil-arrow-from-top:before { content: '\eb48'; }.uil-arrows-up-right:before { content: '\eb49'; }.uil-arrows-left-down:before { content: '\eb4a'; }.uil-arrows-right-down:before { content: '\eb4b'; }.uil-arrows-h-alt:before { content: '\eb4c'; }.uil-download-alt:before { content: '\eb4d'; }.uil-compress-point:before { content: '\eb4e'; }.uil-arrow-up-left:before { content: '\eb4f'; }.uil-arrow-compress-h:before { content: '\eb50'; }.uil-arrows-v-alt:before { content: '\eb51'; }.uil-arrows-v:before { content: '\eb52'; }.uil-arrows-shrink-v:before { content: '\eb53'; }.uil-arrow-break:before { content: '\eb54'; }.uil-align-center-v:before { content: '\eb55'; }.uil-angle-up:before { content: '\eb56'; }.uil-arrow-circle-up:before { content: '\eb57'; }.uil-export:before { content: '\eb58'; }.uil-arrows-resize-v:before { content: '\eb59'; }.uil-upload-alt:before { content: '\eb5a'; }.uil-arrow-up-right:before { content: '\eb5b'; }.uil-corner-up-right:before { content: '\eb5c'; }.uil-angle-double-up:before { content: '\eb5d'; }.uil-sorting:before { content: '\eb5e'; }.uil-exchange:before { content: '\eb5f'; }.uil-corner-down-left:before { content: '\eb60'; }.uil-corner-right-down:before { content: '\eb61'; }.uil-corner-down-right:before { content: '\eb62'; }.uil-corner-up-left:before { content: '\eb63'; }.uil-corner-left-down:before { content: '\eb64'; }.uil-maximize-left:before { content: '\eb65'; }.uil-corner-up-right-alt:before { content: '\eb66'; }.uil-corner-down-right-alt:before { content: '\eb67'; }.uil-top-arrow-from-top:before { content: '\eb68'; }.uil-top-arrow-to-top:before { content: '\eb69'; }.uil-arrow-random:before { content: '\eb6a'; }.uil-shuffle:before { content: '\eb6b'; }.uil-direction:before { content: '\eb6c'; }.uil-angle-right:before { content: '\eb6d'; }.uil-arrow-circle-right:before { content: '\eb6e'; }.uil-arrow-to-right:before { content: '\eb6f'; }.uil-arrow-from-right:before { content: '\eb70'; }.uil-expand-from-corner:before { content: '\eb71'; }.uil-expand-arrows:before { content: '\eb72'; }.uil-arrows-maximize:before { content: '\eb73'; }.uil-arrow-down-left:before { content: '\eb74'; }.uil-expand-arrows-alt:before { content: '\eb75'; }.uil-compress-alt:before { content: '\eb76'; }.uil-scroll:before { content: '\eb77'; }.uil-arrow-circle-left:before { content: '\eb78'; }.uil-angle-left:before { content: '\eb79'; }.uil-arrows-merge:before { content: '\eb7a'; }.uil-arrow-down-right:before { content: '\eb7b'; }.uil-corner-up-left-alt:before { content: '\eb7c'; }.uil-left-arrow-to-left:before { content: '\eb7d'; }.uil-minus-path:before { content: '\eb7e'; }.uil-left-arrow-from-left:before { content: '\eb7f'; }.uil-repeat:before { content: '\eb80'; }.uil-th-large:before { content: '\eb81'; }.uil-line-spacing:before { content: '\eb82'; }.uil-shrink:before { content: '\eb83'; }.uil-compress-alt-left:before { content: '\eb84'; }.uil-bring-front:before { content: '\eb85'; }.uil-compress-lines:before { content: '\eb86'; }.uil-bring-bottom:before { content: '\eb87'; }.uil-compress-v:before { content: '\eb88'; }.uil-spin:before { content: '\eb89'; }.uil-border-out:before { content: '\eb8a'; }.uil-border-horizontal:before { content: '\eb8b'; }.uil-document-layout-left:before { content: '\eb8c'; }.uil-compress:before { content: '\eb8d'; }.uil-grip-horizontal-line:before { content: '\eb8e'; }.uil-dialpad-alt:before { content: '\eb8f'; }.uil-document-layout-center:before { content: '\eb90'; }.uil-border-bottom:before { content: '\eb91'; }.uil-dialpad:before { content: '\eb92'; }.uil-document-layout-right:before { content: '\eb93'; }.uil-align-center:before { content: '\eb94'; }.uil-sort-amount-down:before { content: '\eb95'; }.uil-align-center-alt:before { content: '\eb96'; }.uil-align-letter-right:before { content: '\eb97'; }.uil-border-alt:before { content: '\eb98'; }.uil-align-center-justify:before { content: '\eb99'; }.uil-align-alt:before { content: '\eb9a'; }.uil-border-vertical:before { content: '\eb9b'; }.uil-sort-amount-up:before { content: '\eb9c'; }.uil-wrap-text:before { content: '\eb9d'; }.uil-align-left-justify:before { content: '\eb9e'; }.uil-angle-right-b:before { content: '\eb9f'; }.uil-paragraph:before { content: '\eba0'; }.uil-right-indent-alt:before { content: '\eba1'; }.uil-border-right:before { content: '\eba2'; }.uil-align-right-justify:before { content: '\eba3'; }.uil-align:before { content: '\eba4'; }.uil-border-clear:before { content: '\eba5'; }.uil-align-right:before { content: '\eba6'; }.uil-list-ui-alt:before { content: '\eba7'; }.uil-left-indent:before { content: '\eba8'; }.uil-left-indent-alt:before { content: '\eba9'; }.uil-border-left:before { content: '\ebaa'; }.uil-border-top:before { content: '\ebab'; }.uil-align-justify:before { content: '\ebac'; }.uil-subject:before { content: '\ebad'; }.uil-bars:before { content: '\ebae'; }.uil-eye:before { content: '\ebaf'; }.uil-exposure-increase:before { content: '\ebb0'; }.uil-bright:before { content: '\ebb1'; }.uil-exposure-alt:before { content: '\ebb2'; }.uil-capture:before { content: '\ebb3'; }.uil-arrow-left:before { content: '\ebb4'; }.uil-arrow-right:before { content: '\ebb5'; }.uil-arrow-up:before { content: '\ebb6'; }.uil-focus-target:before { content: '\ebb7'; }.uil-external-link-alt:before { content: '\ebb8'; }.uil-card-atm:before { content: '\ebb9'; }.uil-focus-add:before { content: '\ebba'; }.uil-focus:before { content: '\ebbb'; }.uil-border-inner:before { content: '\ebbc'; }.uil-glass-tea:before { content: '\ebbd'; }.uil-streering:before { content: '\ebbe'; }.uil-tv-retro-slash:before { content: '\ebbf'; }.uil-wrench:before { content: '\ebc0'; }.uil-football-american:before { content: '\ebc1'; }.uil-water-drop-slash:before { content: '\ebc2'; }.uil-layers:before { content: '\ebc3'; }.uil-print-slash:before { content: '\ebc4'; }.uil-android-phone-slash:before { content: '\ebc5'; }.uil-calendar-slash:before { content: '\ebc6'; }.uil-image-slash:before { content: '\ebc7'; }.uil-image-alt-slash:before { content: '\ebc8'; }.uil-lock-slash:before { content: '\ebc9'; }.uil-money-bill-slash:before { content: '\ebca'; }.uil-comment-slash:before { content: '\ebcb'; }.uil-map-marker-slash:before { content: '\ebcc'; }.uil-tear:before { content: '\ebcd'; }.uil-comment-alt-slash:before { content: '\ebce'; }.uil-folder-slash:before { content: '\ebcf'; }.uil-filter-slash:before { content: '\ebd0'; }.uil-file-slash:before { content: '\ebd1'; }.uil-file-lanscape-slash:before { content: '\ebd2'; }.uil-glass-martini-alt-slash:before { content: '\ebd3'; }.uil-car-slash:before { content: '\ebd4'; }.uil-camera-slash:before { content: '\ebd5'; }.uil-list-ul:before { content: '\ebd6'; }.uil-layer-group-slash:before { content: '\ebd7'; }.uil-plug:before { content: '\ebd8'; }.uil-bell-slash:before { content: '\ebd9'; }.uil-expand-right:before { content: '\ebda'; }.uil-bell:before { content: '\ebdb'; }.uil-desktop-alt-slash:before { content: '\ebdc'; }.uil-align-left:before { content: '\ebdd'; }.uil-layers-slash:before { content: '\ebde'; }.uil-angry:before { content: '\ebdf'; }.uil-ear:before { content: '\ebe0'; }.uil-desktop-slash:before { content: '\ebe1'; }.uil-text-strike-through:before { content: '\ebe2'; }.uil-bold:before { content: '\ebe3'; }.uil-text:before { content: '\ebe4'; }.uil-assistive-listening-systems:before { content: '\ebe5'; }.uil-palette:before { content: '\ebe6'; }.uil-underline:before { content: '\ebe7'; }.uil-text-fields:before { content: '\ebe8'; }.uil-arrow-down:before { content: '\ebe9'; }.uil-text-size:before { content: '\ebea'; }.uil-italic:before { content: '\ebeb'; }.uil-right-to-left-text-direction:before { content: '\ebec'; }.uil-sigma:before { content: '\ebed'; }.uil-12-plus:before { content: '\ebee'; }.uil-left-to-right-text-direction:before { content: '\ebef'; }.uil-10-plus:before { content: '\ebf0'; }.uil-16-plus:before { content: '\ebf1'; }.uil-13-plus:before { content: '\ebf2'; }.uil-21-plus:before { content: '\ebf3'; }.uil-17-plus:before { content: '\ebf4'; }.uil-6-plus:before { content: '\ebf5'; }.uil-0-plus:before { content: '\ebf6'; }.uil-3-plus:before { content: '\ebf7'; }.uil-eye-slash:before { content: '\ebf8'; }.uil-archway:before { content: '\ebf9'; }.uil-18-plus:before { content: '\ebfa'; }.uil-robot:before { content: '\ebfb'; }.uil-selfie:before { content: '\ebfc'; }.uil-bag-slash:before { content: '\ebfd'; }.uil-instagram:before { content: '\ebfe'; }.uil-line:before { content: '\ebff'; }.uil-facebook-messenger:before { content: '\ec00'; }.uil-facebook-f:before { content: '\ec01'; }.uil-black-berry:before { content: '\ec02'; }.uil-linkedin:before { content: '\ec03'; }.uil-snapchat-ghost:before { content: '\ec04'; }.uil-intercom:before { content: '\ec05'; }.uil-youtube:before { content: '\ec06'; }.uil-snapchat-square:before { content: '\ec07'; }.uil-apple:before { content: '\ec08'; }.uil-instagram-alt:before { content: '\ec09'; }.uil-whatsapp-alt:before { content: '\ec0a'; }.uil-behance:before { content: '\ec0b'; }.uil-twitter:before { content: '\ec0c'; }.uil-500px:before { content: '\ec0d'; }.uil-tumblr:before { content: '\ec0e'; }.uil-github-alt:before { content: '\ec0f'; }.uil-tumblr-square:before { content: '\ec10'; }.uil-google:before { content: '\ec11'; }.uil-medium-m:before { content: '\ec12'; }.uil-slack:before { content: '\ec13'; }.uil-paypal:before { content: '\ec14'; }.uil-reddit-alien-alt:before { content: '\ec15'; }.uil-linkedin-alt:before { content: '\ec16'; }.uil-google-hangouts:before { content: '\ec17'; }.uil-java-script:before { content: '\ec18'; }.uil-google-play:before { content: '\ec19'; }.uil-google-drive:before { content: '\ec1a'; }.uil-asterisk:before { content: '\ec1b'; }.uil-android:before { content: '\ec1c'; }.uil-github:before { content: '\ec1d'; }.uil-balance-scale:before { content: '\ec1e'; }.uil-amazon:before { content: '\ec1f'; }.uil-slack-alt:before { content: '\ec20'; }.uil-dashboard:before { content: '\ec21'; }.uil-vuejs-alt:before { content: '\ec22'; }.uil-adobe-alt:before { content: '\ec23'; }.uil-ankh:before { content: '\ec24'; }.uil-twitter-alt:before { content: '\ec25'; }.uil-opera:before { content: '\ec26'; }.uil-intercom-alt:before { content: '\ec27'; }.uil-tumblr-alt:before { content: '\ec28'; }.uil-react:before { content: '\ec29'; }.uil-camera-change:before { content: '\ec2a'; }.uil-master-card:before { content: '\ec2b'; }.uil-snapchat-alt:before { content: '\ec2c'; }.uil-opera-alt:before { content: '\ec2d'; }.uil-html3-alt:before { content: '\ec2e'; }.uil-swiggy:before { content: '\ec2f'; }.uil-html3:before { content: '\ec30'; }.uil-google-hangouts-alt:before { content: '\ec31'; }.uil-adobe:before { content: '\ec32'; }.uil-facebook-messenger-alt:before { content: '\ec33'; }.uil-blogger-alt:before { content: '\ec34'; }.uil-blogger:before { content: '\ec35'; }.uil-behance-alt:before { content: '\ec36'; }.uil-apple-alt:before { content: '\ec37'; }.uil-bitcoin:before { content: '\ec38'; }.uil-megaphone:before { content: '\ec39'; }.uil-bitcoin-alt:before { content: '\ec3a'; }.uil-bowling-ball:before { content: '\ec3b'; }.uil-percentage:before { content: '\ec3c'; }.uil-hourglass:before { content: '\ec3d'; }.uil-process:before { content: '\ec3e'; }.uil-university:before { content: '\ec3f'; }.uil-skype-alt:before { content: '\ec40'; }.uil-wind-sun:before { content: '\ec41'; }.uil-vk-alt:before { content: '\ec42'; }.uil-skype:before { content: '\ec43'; }.uil-telegram-alt:before { content: '\ec44'; }.uil-vuejs:before { content: '\ec45'; }.uil-vk:before { content: '\ec46'; }.uil-telegram:before { content: '\ec47'; }.uil-yin-yang:before { content: '\ec48'; }.uil-angle-left-b:before { content: '\ec49'; }.uil-bath:before { content: '\ec4a'; }.uil-metro:before { content: '\ec4b'; }.uil-comment-add:before { content: '\ec4c'; }.uil-fire:before { content: '\ec4d'; }.uil-qrcode-scan:before { content: '\ec4e'; }.uil-panel-add:before { content: '\ec4f'; }.uil-brackets-curly:before { content: '\ec50'; }.uil-folder-open:before { content: '\ec51'; }.uil-comparison:before { content: '\ec52'; }.uil-file-export:before { content: '\ec53'; }.uil-channel-add:before { content: '\ec54'; }.uil-rupee-sign:before { content: '\ec55'; }.uil-channel:before { content: '\ec56'; }.uil-link-add:before { content: '\ec57'; }.uil-file-import:before { content: '\ec58'; }.uil-x:before { content: '\ec59'; }.uil-save:before { content: '\ec5a'; }.uil-heart-break:before { content: '\ec5b'; }.uil-tachometer-fast-alt:before { content: '\ec5c'; }.uil-facebook:before { content: '\ec5d'; }.uil-create-dashboard:before { content: '\ec5e'; }.uil-whatsapp:before { content: '\ec5f'; }.uil-setting:before { content: '\ec60'; }.uil-rocket:before { content: '\ec61'; }.uil-share:before { content: '\ec62'; }.uil-x-add:before { content: '\ec63'; }.uil-user-nurse:before { content: '\ec64'; }.uil-microscope:before { content: '\ec65'; }.uil-virus-slash:before { content: '\ec66'; }.uil-visual-studio:before { content: '\ec67'; }.uil-head-side-mask:before { content: '\ec68'; }.uil-baseball-ball:before { content: '\ec69'; }.uil-stethoscope-alt:before { content: '\ec6a'; }.uil-hospital-symbol:before { content: '\ec6b'; }.uil-hospital-square-sign:before { content: '\ec6c'; }.uil-head-side:before { content: '\ec6d'; }.uil-head-side-cough:before { content: '\ec6e'; }.uil-clinic-medical:before { content: '\ec6f'; }.uil-wind-moon:before { content: '\ec70'; }.uil-hospital:before { content: '\ec71'; }.uil-stethoscope:before { content: '\ec72'; }.uil-sanitizer:before { content: '\ec73'; }.uil-toilet-paper:before { content: '\ec74'; }.uil-coronavirus:before { content: '\ec75'; }.uil-user-arrows:before { content: '\ec76'; }.uil-house-user:before { content: '\ec77'; }.uil-social-distancing:before { content: '\ec78'; }.uil-credit-card-search:before { content: '\ec79'; }.uil-android-alt:before { content: '\ec7a'; }.uil-shield-plus:before { content: '\ec7b'; }.uil-user-md:before { content: '\ec7c'; }.uil-transaction:before { content: '\ec7d'; }.uil-store-slash:before { content: '\ec7e'; }.uil-code-branch:before { content: '\ec7f'; }.uil-google-drive-alt:before { content: '\ec80'; }.uil-envelope-block:before { content: '\ec81'; }.uil-mailbox-alt:before { content: '\ec82'; }.uil-signout:before { content: '\ec83'; }.uil-slider-h:before { content: '\ec84'; }.uil-lira-sign:before { content: '\ec85'; }.uil-slider-h-range:before { content: '\ec86'; }.uil-file-graph:before { content: '\ec87'; }.uil-wordpress-simple:before { content: '\ec88'; }.uil-bing:before { content: '\ec89'; }.uil-wordpress:before { content: '\ec8a'; }.uil-html5:before { content: '\ec8b'; }.uil-programming-language:before { content: '\ec8c'; }.uil-css3-simple:before { content: '\ec8d'; }.uil-html5-alt:before { content: '\ec8e'; }.uil-discord:before { content: '\ec8f'; }.uil-draggabledots:before { content: '\ec90'; }.uil-font:before { content: '\ec91'; }.uil-video-question:before { content: '\ec92'; }.uil-headphone-slash:before { content: '\ec93'; }.uil-info:before { content: '\ec94'; }.uil-letter-chinese-a:before { content: '\ec95'; }.uil-letter-hindi-a:before { content: '\ec96'; }.uil-english-to-chinese:before { content: '\ec97'; }.uil-question:before { content: '\ec98'; }.uil-letter-english-a:before { content: '\ec99'; }.uil-hindi-to-chinese:before { content: '\ec9a'; }.uil-inbox:before { content: '\ec9b'; }.uil-letter-japanese-a:before { content: '\ec9c'; }.uil-exclamation:before { content: '\ec9d'; }.uil-language:before { content: '\ec9e'; }.uil-backspace:before { content: '\ec9f'; }.uil-window-grid:before { content: '\eca0'; }.uil-cloud-sun:before { content: '\eca1'; }.uil-vertical-align-center:before { content: '\eca2'; }.uil-raindrops-alt:before { content: '\eca3'; }.uil-sanitizer-alt:before { content: '\eca4'; }.uil-estate:before { content: '\eca5'; }.uil-file-contract:before { content: '\eca6'; }.uil-fidget-spinner:before { content: '\eca7'; }.uil-spinner:before { content: '\eca8'; }.uil-spinner-alt:before { content: '\eca9'; }.uil-elipsis-double-v-alt:before { content: '\ecaa'; }.uil-list-ol:before { content: '\ecab'; }.uil-list-ol-alt:before { content: '\ecac'; }.uil-docker:before { content: '\ecad'; }.uil-linux:before { content: '\ecae'; }.uil-hipchat:before { content: '\ecaf'; }.uil-gitlab:before { content: '\ecb0'; }.uil-lottiefiles-alt:before { content: '\ecb1'; }.uil-pagerduty:before { content: '\ecb2'; }.uil-microsoft:before { content: '\ecb3'; }.uil-windows:before { content: '\ecb4'; }.uil-pagelines:before { content: '\ecb5'; }.uil-grin:before { content: '\e878'; }.uil-sad-cry:before { content: '\e879'; }.uil-sad-crying:before { content: '\e87a'; }.uil-surprise:before { content: '\e87b'; }.uil-unamused:before { content: '\e87c'; }.uil-confused:before { content: '\e87d'; }.uil-grin-tongue-wink:before { content: '\e87e'; }.uil-grin-tongue-wink-alt:before { content: '\e87f'; }.uil-kid:before { content: '\e880'; }.uil-smile-wink-alt:before { content: '\e881'; }.uil-smile-squint-wink:before { content: '\e882'; }.uil-annoyed-alt:before { content: '\e883'; }.uil-silent-squint:before { content: '\e884'; }.uil-sick:before { content: '\e885'; }.uil-shopping-cart-alt:before { content: '\e886'; }.uil-shopping-bag:before { content: '\e887'; }.uil-pricetag-alt:before { content: '\e888'; }.uil-shopping-cart:before { content: '\e889'; }.uil-smile-squint-wink-alt:before { content: '\e88a'; }.uil-store-alt:before { content: '\e88b'; }.uil-emoji:before { content: '\e88c'; }.uil-trademark-circle:before { content: '\e88d'; }.uil-basketball:before { content: '\e88e'; }.uil-square-shape:before { content: '\e88f'; }.uil-label:before { content: '\e890'; }.uil-shopping-basket:before { content: '\e891'; }.uil-smile-wink:before { content: '\e892'; }.uil-tag:before { content: '\e893'; }.uil-label-alt:before { content: '\e894'; }.uil-tag-alt:before { content: '\e895'; }.uil-store:before { content: '\e896'; }.uil-meh-closed-eye:before { content: '\e897'; }.uil-trophy:before { content: '\e898'; }.uil-dice-three:before { content: '\e899'; }.uil-football-ball:before { content: '\e89a'; }.uil-basketball-hoop:before { content: '\e89b'; }.uil-club:before { content: '\e89c'; }.uil-tennis-ball:before { content: '\e89d'; }.uil-football:before { content: '\e89e'; }.uil-volleyball:before { content: '\e89f'; }.uil-heart-sign:before { content: '\e8a0'; }.uil-spade:before { content: '\e8a1'; }.uil-diamond:before { content: '\e8a2'; }.uil-money-stack:before { content: '\e8a3'; }.uil-money-withdrawal:before { content: '\e8a4'; }.uil-presentation-line:before { content: '\e8a5'; }.uil-kayak:before { content: '\e8a6'; }.uil-chart-pie:before { content: '\e8a7'; }.uil-dumbbell:before { content: '\e8a8'; }.uil-suitcase-alt:before { content: '\e8a9'; }.uil-yen:before { content: '\e8aa'; }.uil-yen-circle:before { content: '\e8ab'; }.uil-briefcase-alt:before { content: '\e8ac'; }.uil-receipt:before { content: '\e8ad'; }.uil-pound:before { content: '\e8ae'; }.uil-invoice:before { content: '\e8af'; }.uil-pound-circle:before { content: '\e8b0'; }.uil-analysis:before { content: '\e8b1'; }.uil-suitcase:before { content: '\e8b2'; }.uil-moneybag-alt:before { content: '\e8b3'; }.uil-lottiefiles:before { content: '\ecb6'; }.uil-okta:before { content: '\ecb7'; }.uil-illustration:before { content: '\ecb8'; }.uil-icons:before { content: '\ecb9'; }.uil-bag-alt:before { content: '\e8b4'; }.uil-moneybag:before { content: '\e8b5'; }.uil-bag:before { content: '\e8b6'; }.uil-money-insert:before { content: '\e8b7'; }.uil-chart-line:before { content: '\e8b8'; }.uil-dollar-sign-alt:before { content: '\e8b9'; }.uil-euro:before { content: '\e8ba'; }.uil-usd-circle:before { content: '\e8bb'; }.uil-euro-circle:before { content: '\e8bc'; }.uil-usd-square:before { content: '\e8bd'; }.uil-money-bill-stack:before { content: '\e8be'; }.uil-dollar-alt:before { content: '\e8bf'; }.uil-money-withdraw:before { content: '\e8c0'; }.uil-credit-card:before { content: '\e8c1'; }.uil-money-bill:before { content: '\e8c2'; }.uil-bitcoin-sign:before { content: '\e8c3'; }.uil-signal-alt-3:before { content: '\e8c4'; }.uil-receipt-alt:before { content: '\e8c5'; }.uil-graph-bar:before { content: '\e8c6'; }.uil-analytics:before { content: '\e8c7'; }.uil-table-tennis:before { content: '\e8c8'; }.uil-bill:before { content: '\e8c9'; }.uil-chart-bar:before { content: '\e8ca'; }.uil-chart-growth:before { content: '\e8cb'; }.uil-chart-growth-alt:before { content: '\e8cc'; }.uil-shop:before { content: '\e8cd'; }.uil-chart-bar-alt:before { content: '\e8ce'; }.uil-dollar-sign:before { content: '\e8cf'; }.uil-chart:before { content: '\e8d0'; }.uil-briefcase:before { content: '\e8d1'; }.uil-bitcoin-circle:before { content: '\e8d2'; }.uil-chart-pie-alt:before { content: '\e8d3'; }.uil-golf-ball:before { content: '\e8d4'; }.uil-calculator-alt:before { content: '\e8d5'; }.uil-coins:before { content: '\e8d6'; }.uil-map-pin-alt:before { content: '\e8d7'; }.uil-lightbulb:before { content: '\e8d8'; }.uil-map-marker-question:before { content: '\e8d9'; }.uil-map-marker-shield:before { content: '\e8da'; }.uil-schedule:before { content: '\e8db'; }.uil-calendar-alt:before { content: '\e8dc'; }.uil-crosshairs:before { content: '\e8dd'; }.uil-puzzle-piece:before { content: '\e8de'; }.uil-gold:before { content: '\e8df'; }.uil-compass:before { content: '\e8e0'; }.uil-map:before { content: '\e8e1'; }.uil-location-point:before { content: '\e8e2'; }.uil-map-marker-info:before { content: '\e8e3'; }.uil-map-marker-edit:before { content: '\e8e4'; }.uil-map-marker-plus:before { content: '\e8e5'; }.uil-map-pin:before { content: '\e8e6'; }.uil-navigator:before { content: '\e8e7'; }.uil-location-pin-alt:before { content: '\e8e8'; }.uil-map-marker-minus:before { content: '\e8e9'; }.uil-map-marker-alt:before { content: '\e8ea'; }.uil-sign-left:before { content: '\e8eb'; }.uil-map-marker:before { content: '\e8ec'; }.uil-sign-right:before { content: '\e8ed'; }.uil-directions:before { content: '\e8ee'; }.uil-location-arrow:before { content: '\e8ef'; }.uil-dna:before { content: '\e8f0'; }.uil-sign-alt:before { content: '\e8f1'; }.uil-presentation-lines-alt:before { content: '\e8f2'; }.uil-atom:before { content: '\e8f3'; }.uil-flask:before { content: '\e8f4'; }.uil-diary:before { content: '\e8f5'; }.uil-presentation-times:before { content: '\e8f6'; }.uil-diary-alt:before { content: '\e8f7'; }.uil-presentation-plus:before { content: '\e8f8'; }.uil-presentation-minus:before { content: '\e8f9'; }.uil-presentation-edit:before { content: '\e8fa'; }.uil-backpack:before { content: '\e8fb'; }.uil-notes:before { content: '\e8fc'; }.uil-location-arrow-alt:before { content: '\e8fd'; }.uil-book-alt:before { content: '\e8fe'; }.uil-book:before { content: '\e8ff'; }.uil-medal:before { content: '\e900'; }.uil-award:before { content: '\e901'; }.uil-flask-potion:before { content: '\e902'; }.uil-bell-school:before { content: '\e903'; }.uil-podium:before { content: '\e904'; }.uil-graduation-cap:before { content: '\e905'; }.uil-medical-square:before { content: '\e906'; }.uil-ambulance:before { content: '\e907'; }.uil-medical-square-full:before { content: '\e908'; }.uil-cell:before { content: '\e909'; }.uil-band-aid:before { content: '\e90a'; }.uil-lightbulb-alt:before { content: '\e90b'; }.uil-wheelchair-alt:before { content: '\e90c'; }.uil-thermometer:before { content: '\e90d'; }.uil-abacus:before { content: '\e90e'; }.uil-syringe:before { content: '\e90f'; }.uil-tablets:before { content: '\e910'; }.uil-capsule:before { content: '\e911'; }.uil-stretcher:before { content: '\e912'; }.uil-presentation-check:before { content: '\e913'; }.uil-medkit:before { content: '\e914'; }.uil-meeting-board:before { content: '\e915'; }.uil-monitor-heart-rate:before { content: '\e916'; }.uil-file-medical-alt:before { content: '\e917'; }.uil-heartbeat:before { content: '\e918'; }.uil-prescription-bottle:before { content: '\e919'; }.uil-clock-two:before { content: '\e91a'; }.uil-medical-drip:before { content: '\e91b'; }.uil-book-medical:before { content: '\e91c'; }.uil-watch-alt:before { content: '\e91d'; }.uil-stopwatch:before { content: '\e91e'; }.uil-watch:before { content: '\e91f'; }.uil-clock:before { content: '\e920'; }.uil-clock-seven:before { content: '\e921'; }.uil-clock-three:before { content: '\e922'; }.uil-clock-nine:before { content: '\e923'; }.uil-clock-ten:before { content: '\e924'; }.uil-files-landscapes:before { content: '\e925'; }.uil-clock-five:before { content: '\e926'; }.uil-brain:before { content: '\e927'; }.uil-file-plus-alt:before { content: '\e928'; }.uil-file-network:before { content: '\e929'; }.uil-file-contract-dollar:before { content: '\e92a'; }.uil-file-upload-alt:before { content: '\e92b'; }.uil-clock-eight:before { content: '\e92c'; }.uil-clipboard-alt:before { content: '\e92d'; }.uil-books:before { content: '\e92e'; }.uil-file-search-alt:before { content: '\e92f'; }.uil-file-upload:before { content: '\e930'; }.uil-file-share-alt:before { content: '\e931'; }.uil-file-minus-alt:before { content: '\e932'; }.uil-folder-minus:before { content: '\e933'; }.uil-file-shield-alt:before { content: '\e934'; }.uil-file-minus:before { content: '\e935'; }.uil-folder-medical:before { content: '\e936'; }.uil-file-redo-alt:before { content: '\e937'; }.uil-file-lock-alt:before { content: '\e938'; }.uil-folder-lock:before { content: '\e939'; }.uil-heart-medical:before { content: '\e93a'; }.uil-file-question-alt:before { content: '\e93b'; }.uil-files-landscapes-alt:before { content: '\e93c'; }.uil-file-medical:before { content: '\e93d'; }.uil-file-landscape:before { content: '\e93e'; }.uil-file-question:before { content: '\e93f'; }.uil-folder-question:before { content: '\e940'; }.uil-file-landscape-alt:before { content: '\e941'; }.uil-folder:before { content: '\e942'; }.uil-file-edit-alt:before { content: '\e943'; }.uil-folder-heart:before { content: '\e944'; }.uil-folder-exclamation:before { content: '\e945'; }.uil-folder-info:before { content: '\e946'; }.uil-file-download-alt:before { content: '\e947'; }.uil-file-download:before { content: '\e948'; }.uil-file-copy-alt:before { content: '\e949'; }.uil-file-heart:before { content: '\e94a'; }.uil-file-alt:before { content: '\e94b'; }.uil-copy-landscape:before { content: '\e94c'; }.uil-copy-alt:before { content: '\e94d'; }.uil-folder-upload:before { content: '\e94e'; }.uil-file-exclamation-alt:before { content: '\e94f'; }.uil-file-exclamation:before { content: '\e950'; }.uil-copy:before { content: '\e951'; }.uil-file-blank:before { content: '\e952'; }.uil-stopwatch-slash:before { content: '\e953'; }.uil-file:before { content: '\e954'; }.uil-folder-times:before { content: '\e955'; }.uil-document-info:before { content: '\e956'; }.uil-file-times:before { content: '\e957'; }.uil-file-info-alt:before { content: '\e958'; }.uil-clipboard-blank:before { content: '\e959'; }.uil-clipboard-notes:before { content: '\e95a'; }.uil-file-times-alt:before { content: '\e95b'; }.uil-folder-download:before { content: '\e95c'; }.uil-file-bookmark-alt:before { content: '\e95d'; }.uil-file-block-alt:before { content: '\e95e'; }.uil-folder-check:before { content: '\e95f'; }.uil-file-check:before { content: '\e960'; }.uil-folder-plus:before { content: '\e961'; }.uil-clipboard:before { content: '\e962'; }.uil-file-check-alt:before { content: '\e963'; }.uil-print:before { content: '\e964'; }.uil-folder-network:before { content: '\e965'; }.uil-desktop-alt:before { content: '\e966'; }.uil-mouse-alt:before { content: '\e967'; }.uil-tablet:before { content: '\e968'; }.uil-desktop:before { content: '\e969'; }.uil-mobile-android-alt:before { content: '\e96a'; }.uil-search-alt:before { content: '\e96b'; }.uil-volume-up:before { content: '\e96c'; }.uil-mouse:before { content: '\e96d'; }.uil-mouse-alt-2:before { content: '\e96e'; }.uil-mobile-android:before { content: '\e96f'; }.uil-laptop:before { content: '\e970'; }.uil-search-minus:before { content: '\e971'; }.uil-bluetooth-b:before { content: '\e972'; }.uil-video-slash:before { content: '\e973'; }.uil-search-plus:before { content: '\e974'; }.uil-tv-retro:before { content: '\e975'; }.uil-toggle-on:before { content: '\e976'; }.uil-toggle-off:before { content: '\e977'; }.uil-traffic-light:before { content: '\e978'; }.uil-bolt:before { content: '\e979'; }.uil-trash-alt:before { content: '\e97a'; }.uil-star-half-alt:before { content: '\e97b'; }.uil-utensils-alt:before { content: '\e97c'; }.uil-share-alt:before { content: '\e97d'; }.uil-volume-down:before { content: '\e97e'; }.uil-wifi:before { content: '\e97f'; }.uil-cog:before { content: '\e980'; }.uil-bookmark:before { content: '\e981'; }.uil-wallet:before { content: '\e982'; }.uil-minus:before { content: '\e983'; }.uil-rss:before { content: '\e984'; }.uil-sync:before { content: '\e985'; }.uil-redo:before { content: '\e986'; }.uil-bookmark-full:before { content: '\e987'; }.uil-umbrella:before { content: '\e988'; }.uil-trash:before { content: '\e989'; }.uil-wifi-slash:before { content: '\e98a'; }.uil-plus-square:before { content: '\e98b'; }.uil-plus:before { content: '\e98c'; }.uil-signal-alt:before { content: '\e98d'; }.uil-pen:before { content: '\e98e'; }.uil-package:before { content: '\e98f'; }.uil-edit:before { content: '\e990'; }.uil-signal:before { content: '\e991'; }.uil-glass-martini-alt:before { content: '\e992'; }.uil-file-plus:before { content: '\e993'; }.uil-minus-circle:before { content: '\e994'; }.uil-microphone:before { content: '\e995'; }.uil-minus-square:before { content: '\e996'; }.uil-minus-square-full:before { content: '\e997'; }.uil-volume-mute:before { content: '\e998'; }.uil-link-h:before { content: '\e999'; }.uil-search:before { content: '\e99a'; }.uil-ellipsis-v:before { content: '\e99b'; }.uil-ellipsis-h:before { content: '\e99c'; }.uil-link-alt:before { content: '\e99d'; }.uil-calculator:before { content: '\e99e'; }.uil-layer-group:before { content: '\e99f'; }.uil-car:before { content: '\e9a0'; }.uil-thumbs-up:before { content: '\e9a1'; }.uil-link:before { content: '\e9a2'; }.uil-home:before { content: '\e9a4'; }.uil-keyboard:before { content: '\e9a5'; }.uil-volume-off:before { content: '\e9a6'; }.uil-edit-alt:before { content: '\e9a7'; }.uil-restaurant:before { content: '\e9a8'; }.uil-exclamation-octagon:before { content: '\e9a9'; }.uil-globe:before { content: '\e9aa'; }.uil-favorite:before { content: '\e9ab'; }.uil-question-circle:before { content: '\e9ac'; }.uil-info-circle:before { content: '\e9ad'; }.uil-filter:before { content: '\e9ae'; }.uil-volume:before { content: '\e9af'; }.uil-exclamation-triangle:before { content: '\e9b0'; }.uil-exclamation-circle:before { content: '\e9b1'; }.uil-thumbs-down:before { content: '\e9b2'; }.uil-multiply:before { content: '\e9b3'; }.uil-check-square:before { content: '\e9b4'; }.uil-times-circle:before { content: '\e9b5'; }.uil-box:before { content: '\e9b6'; }.uil-sim-card:before { content: '\e9b7'; }.uil-times:before { content: '\e9b8'; }.uil-times-square:before { content: '\e9b9'; }.uil-link-broken:before { content: '\e9ba'; }.uil-cube:before { content: '\e9bb'; }.uil-bolt-alt:before { content: '\e9bc'; }.uil-calender:before { content: '\e9bd'; }.uil-battery-empty:before { content: '\e9be'; }.uil-at:before { content: '\e9bf'; }.uil-battery-bolt:before { content: '\e9c0'; }.uil-plus-circle:before { content: '\e9c1'; }.uil-check-circle:before { content: '\e9c2'; }.uil-check:before { content: '\e9c3'; }.uil-adjust-half:before { content: '\e9c4'; }.uil-paperclip:before { content: '\e9c5'; }.uil-bullseye:before { content: '\e9c6'; }.uil-brightness:before { content: '\e9c7'; }.uil-adjust-alt:before { content: '\e9c8'; }.uil-adjust-circle:before { content: '\e9c9'; }.uil-brightness-half:before { content: '\e9ca'; }.uil-brightness-empty:before { content: '\e9cb'; }.uil-sun:before { content: '\e9cc'; }.uil-brightness-plus:before { content: '\e9cd'; }.uil-key-skeleton:before { content: '\e9ce'; }.uil-adjust:before { content: '\e9d0'; }.uil-keyboard-hide:before { content: '\e9d1'; }.uil-brightness-minus:before { content: '\e9d2'; }.uil-key-skeleton-alt:before { content: '\e9d3'; }.uil-bus:before { content: '\e9d4'; }.uil-parcel:before { content: '\e9d5'; }.uil-car-sideview:before { content: '\e9d6'; }.uil-car-wash:before { content: '\e9d7'; }.uil-bus-school:before { content: '\e9d8'; }.uil-subway:before { content: '\e9d9'; }.uil-ship:before { content: '\e9da'; }.uil-bus-alt:before { content: '\e9db'; }.uil-subway-alt:before { content: '\e9dc'; }.uil-taxi:before { content: '\e9dd'; }.uil-truck-loading:before { content: '\e9de'; }.uil-dribbble:before { content: '\e9df'; }.uil-dropbox:before { content: '\e9e0'; }.uil-envelope-check:before { content: '\e9e1'; }.uil-envelope-add:before { content: '\e9e2'; }.uil-envelope-exclamation:before { content: '\e9e3'; }.uil-phone-slash:before { content: '\e9e4'; }.uil-outgoing-call:before { content: '\e9e5'; }.uil-envelope:before { content: '\e9e6'; }.uil-phone:before { content: '\e9e7'; }.uil-calling:before { content: '\e9e8'; }.uil-phone-times:before { content: '\e9e9'; }.uil-envelope-search:before { content: '\e9ea'; }.uil-phone-volume:before { content: '\e9eb'; }.uil-envelope-upload:before { content: '\e9ec'; }.uil-forwaded-call:before { content: '\e9ed'; }.uil-envelope-share:before { content: '\e9ee'; }.uil-envelope-upload-alt:before { content: '\e9ef'; }.uil-envelope-minus:before { content: '\e9f0'; }.uil-envelope-receive:before { content: '\e9f1'; }.uil-envelope-redo:before { content: '\e9f2'; }.uil-envelope-download-alt:before { content: '\e9f3'; }.uil-envelope-download:before { content: '\e9f4'; }.uil-brightness-low:before { content: '\e9f5'; }.uil-envelope-shield:before { content: '\e9f6'; }.uil-envelope-open:before { content: '\e9f7'; }.uil-envelope-lock:before { content: '\e9f8'; }.uil-keyboard-show:before { content: '\e9f9'; }.uil-truck:before { content: '\e9fa'; }.uil-envelopes:before { content: '\e9fb'; }.uil-mailbox:before { content: '\e9fc'; }.uil-envelope-heart:before { content: '\e9fd'; }.uil-space-key:before { content: '\e9fe'; }.uil-keyboard-alt:before { content: '\e9ff'; }.uil-envelope-edit:before { content: '\ea00'; }.uil-postcard:before { content: '\ea01'; }.uil-fast-mail-alt:before { content: '\ea02'; }.uil-envelope-question:before { content: '\ea03'; }.uil-fast-mail:before { content: '\ea04'; }.uil-envelope-info:before { content: '\ea05'; }.uil-laptop-cloud:before { content: '\ea06'; }.uil-desktop-cloud-alt:before { content: '\ea07'; }.uil-envelope-star:before { content: '\ea08'; }.uil-envelope-times:before { content: '\ea09'; }.uil-luggage-cart:before { content: '\ea0a'; }.uil-envelope-bookmark:before { content: '\ea0b'; }.uil-missed-call:before { content: '\ea0c'; }.uil-user:before { content: '\ea0d'; }.uil-user-plus:before { content: '\ea0e'; }.uil-envelope-alt:before { content: '\ea0f'; }.uil-user-location:before { content: '\ea10'; }.uil-users-alt:before { content: '\ea11'; }.uil-book-reader:before { content: '\ea12'; }.uil-cloud-bookmark:before { content: '\ea13'; }.uil-phone-alt:before { content: '\ea14'; }.uil-cloud-computing:before { content: '\ea15'; }.uil-cloud-check:before { content: '\ea16'; }.uil-user-minus:before { content: '\ea17'; }.uil-cloud-times:before { content: '\ea18'; }.uil-cloud-block:before { content: '\ea19'; }.uil-columns:before { content: '\ea1a'; }.uil-web-section:before { content: '\ea1b'; }.uil-grid:before { content: '\ea1c'; }.uil-web-grid-alt:before { content: '\ea1d'; }.uil-window-maximize:before { content: '\ea1e'; }.uil-web-section-alt:before { content: '\ea1f'; }.uil-web-grid:before { content: '\ea20'; }.uil-server-connection:before { content: '\ea21'; }.uil-cloud-slash:before { content: '\ea22'; }.uil-cloud-upload:before { content: '\ea23'; }.uil-cloud-exclamation:before { content: '\ea24'; }.uil-database:before { content: '\ea25'; }.uil-server:before { content: '\ea26'; }.uil-cloud-unlock:before { content: '\ea27'; }.uil-cloud-share:before { content: '\ea28'; }.uil-envelope-send:before { content: '\ea29'; }.uil-cloud-shield:before { content: '\ea2a'; }.uil-laptop-connection:before { content: '\ea2b'; }.uil-server-network-alt:before { content: '\ea2c'; }.uil-cloud-redo:before { content: '\ea2d'; }.uil-servers:before { content: '\ea2e'; }.uil-server-network:before { content: '\ea2f'; }.uil-cloud-heart:before { content: '\ea30'; }.uil-database-alt:before { content: '\ea31'; }.uil-cloud-lock:before { content: '\ea32'; }.uil-cloud-info:before { content: '\ea33'; }.uil-phone-pause:before { content: '\ea34'; }.uil-user-square:before { content: '\ea35'; }.uil-user-exclamation:before { content: '\ea36'; }.uil-cloud-download:before { content: '\ea37'; }.uil-user-circle:before { content: '\ea38'; }.uil-cloud-wifi:before { content: '\ea39'; }.uil-data-sharing:before { content: '\ea3a'; }.uil-cloud-data-connection:before { content: '\ea3b'; }.uil-backward:before { content: '\ea3c'; }.uil-camera:before { content: '\ea3d'; }.uil-music-tune-slash:before { content: '\ea3e'; }.uil-user-times:before { content: '\ea3f'; }.uil-scenery:before { content: '\ea40'; }.uil-user-check:before { content: '\ea41'; }.uil-headphones:before { content: '\ea42'; }.uil-step-backward:before { content: '\ea43'; }.uil-image-search:before { content: '\ea44'; }.uil-image-minus:before { content: '\ea45'; }.uil-window-section:before { content: '\ea46'; }.uil-play-circle:before { content: '\ea47'; }.uil-pause-circle:before { content: '\ea48'; }.uil-image-shield:before { content: '\ea4a'; }.uil-window:before { content: '\ea4b'; }.uil-pause:before { content: '\ea4c'; }.uil-server-alt:before { content: '\ea4d'; }.uil-image-question:before { content: '\ea4e'; }.uil-music:before { content: '\ea4f'; }.uil-image-block:before { content: '\ea50'; }.uil-music-note:before { content: '\ea51'; }.uil-step-forward:before { content: '\ea52'; }.uil-image-redo:before { content: '\ea53'; }.uil-image:before { content: '\ea54'; }.uil-picture:before { content: '\ea55'; }.uil-image-download:before { content: '\ea56'; }.uil-image-v:before { content: '\ea57'; }.uil-forward:before { content: '\ea58'; }.uil-image-times:before { content: '\ea59'; }.uil-headphones-alt:before { content: '\ea5a'; } \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/solid.css b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/solid.css new file mode 100644 index 00000000..d7349a8d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/solid.css @@ -0,0 +1,117 @@ +@font-face { + font-family: 'unicons-solid'; + src: url('../fonts/solid/unicons-0.eot'); + src: url('../fonts/solid/unicons-0.eot#iefix') format('embedded-opentype'), + url('../fonts/solid/unicons-0.woff2') format('woff2'), + url('../fonts/solid/unicons-0.woff') format('woff'), + url('../fonts/solid/unicons-0.ttf') format('truetype'), + url('../fonts/solid/unicons-0.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E800-E83B; +} +@font-face { + font-family: 'unicons-solid'; + src: url('../fonts/solid/unicons-1.eot'); + src: url('../fonts/solid/unicons-1.eot#iefix') format('embedded-opentype'), + url('../fonts/solid/unicons-1.woff2') format('woff2'), + url('../fonts/solid/unicons-1.woff') format('woff'), + url('../fonts/solid/unicons-1.ttf') format('truetype'), + url('../fonts/solid/unicons-1.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E83C-E877; +} +@font-face { + font-family: 'unicons-solid'; + src: url('../fonts/solid/unicons-2.eot'); + src: url('../fonts/solid/unicons-2.eot#iefix') format('embedded-opentype'), + url('../fonts/solid/unicons-2.woff2') format('woff2'), + url('../fonts/solid/unicons-2.woff') format('woff'), + url('../fonts/solid/unicons-2.ttf') format('truetype'), + url('../fonts/solid/unicons-2.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E878-E8B3; +} +@font-face { + font-family: 'unicons-solid'; + src: url('../fonts/solid/unicons-3.eot'); + src: url('../fonts/solid/unicons-3.eot#iefix') format('embedded-opentype'), + url('../fonts/solid/unicons-3.woff2') format('woff2'), + url('../fonts/solid/unicons-3.woff') format('woff'), + url('../fonts/solid/unicons-3.ttf') format('truetype'), + url('../fonts/solid/unicons-3.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E8B4-E8BC; +}[class^="uis-"]:before, +[class*=" uis-"]:before { + font-family: "unicons-solid"; + font-style: normal; + font-weight: normal; + speak: none; + + display: inline-block; + text-decoration: inherit; + + /* For safety - reset parent styles, that can break glyph codes */ + font-variant: normal; + text-transform: none; + + /* fix buttons height, for twitter bootstrap */ + line-height: 1; + + /* Font smoothing. That was taken from TWBS */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* Flip and Rotate */ + +[class*="uis-"].flip-horizontal:before { + transform: scaleX(-1); +} +[class*="uis-"].flip-horizontal.rotate-90:before { + transform: rotate(90deg) scaleX(-1); +} +[class*="uis-"].flip-horizontal.rotate-180:before { + transform: rotate(180deg) scaleX(-1); +} +[class*="uis-"].flip-horizontal.rotate-270:before { + transform: rotate(270deg) scaleX(-1); +} +[class*="uis-"].flip-horizontal.flip-vertical:before { + transform: scale(-1); +} +[class*="uis-"].flip-horizontal.flip-vertical.rotate-90:before { + transform: rotate(90deg) scale(-1); +} +[class*="uis-"].flip-horizontal.flip-vertical.rotate-180:before { + transform: rotate(180deg) scale(-1); +} +[class*="uis-"].flip-horizontal.flip-vertical.rotate-270:before { + transform: rotate(270deg) scale(-1); +} +[class*="uis-"].flip-vertical:before { + transform: scaleY(-1); +} +[class*="uis-"].flip-vertical.rotate-90:before { + transform: rotate(90deg) scaleY(-1); +} +[class*="uis-"].flip-vertical.rotate-180:before { + transform: rotate(180deg) scaleY(-1); +} +[class*="uis-"].flip-vertical.rotate-270:before { + transform: rotate(270deg) scaleY(-1); +} +[class*="uis-"].rotate-90:before { + transform: rotate(90deg); +} +[class*="uis-"].rotate-180:before { + transform: rotate(180deg); +} +[class*="uis-"].rotate-270:before { + transform: rotate(270deg); +} +.uis-web-section-alt:before { content: '\e800'; }.uis-corner-up-right:before { content: '\e801'; }.uis-corner-right-down:before { content: '\e802'; }.uis-download-alt:before { content: '\e803'; }.uis-arrow-circle-down:before { content: '\e804'; }.uis-corner-left-down:before { content: '\e805'; }.uis-angle-double-down:before { content: '\e806'; }.uis-corner-down-right:before { content: '\e807'; }.uis-bag:before { content: '\e808'; }.uis-web-grid:before { content: '\e809'; }.uis-briefcase:before { content: '\e80a'; }.uis-direction:before { content: '\e80b'; }.uis-upload-alt:before { content: '\e80c'; }.uis-arrow-circle-up:before { content: '\e80d'; }.uis-signal-alt-3:before { content: '\e80e'; }.uis-sorting:before { content: '\e80f'; }.uis-window-section:before { content: '\e810'; }.uis-corner-down-left:before { content: '\e811'; }.uis-align-center-justify:before { content: '\e812'; }.uis-dialpad:before { content: '\e813'; }.uis-window-grid:before { content: '\e814'; }.uis-angle-double-up:before { content: '\e815'; }.uis-corner-up-left:before { content: '\e816'; }.uis-angle-right:before { content: '\e817'; }.uis-schedule:before { content: '\e818'; }.uis-comment-dots:before { content: '\e819'; }.uis-graph-bar:before { content: '\e81a'; }.uis-angle-down:before { content: '\e81b'; }.uis-arrow-circle-left:before { content: '\e81c'; }.uis-arrow-circle-right:before { content: '\e81d'; }.uis-chart-pie:before { content: '\e81e'; }.uis-arrow-down-left:before { content: '\e81f'; }.uis-arrow-up-right:before { content: '\e820'; }.uis-columns:before { content: '\e821'; }.uis-web-section:before { content: '\e822'; }.uis-analytics:before { content: '\e823'; }.uis-grid:before { content: '\e824'; }.uis-angle-right-b:before { content: '\e825'; }.uis-chart:before { content: '\e826'; }.uis-window-maximize:before { content: '\e827'; }.uis-list-ul:before { content: '\e828'; }.uis-angle-double-right:before { content: '\e829'; }.uis-analysis:before { content: '\e82a'; }.uis-arrow-up-left:before { content: '\e82b'; }.uis-web-grid-alt:before { content: '\e82c'; }.uis-angle-up:before { content: '\e82d'; }.uis-arrow-down-right:before { content: '\e82e'; }.uis-angle-left:before { content: '\e82f'; }.uis-document-layout-left:before { content: '\e830'; }.uis-angle-double-left:before { content: '\e831'; }.uis-border-top:before { content: '\e832'; }.uis-align-justify:before { content: '\e833'; }.uis-right-indent:before { content: '\e834'; }.uis-left-indent-alt:before { content: '\e835'; }.uis-subject:before { content: '\e836'; }.uis-align-right:before { content: '\e837'; }.uis-wrap-text:before { content: '\e838'; }.uis-list-ui-alt:before { content: '\e839'; }.uis-paragraph:before { content: '\e83a'; }.uis-border-right:before { content: '\e83b'; }.uis-align-right-justify:before { content: '\e83c'; }.uis-bars:before { content: '\e83d'; }.uis-border-left:before { content: '\e83e'; }.uis-border-inner:before { content: '\e83f'; }.uis-align-left-justify:before { content: '\e840'; }.uis-border-clear:before { content: '\e841'; }.uis-border-vertical:before { content: '\e842'; }.uis-right-indent-alt:before { content: '\e843'; }.uis-border-horizontal:before { content: '\e844'; }.uis-ruler-combined:before { content: '\e845'; }.uis-repeat:before { content: '\e846'; }.uis-ruler:before { content: '\e847'; }.uis-square-full:before { content: '\e848'; }.uis-border-bottom:before { content: '\e849'; }.uis-horizontal-align-left:before { content: '\e84a'; }.uis-flip-h-alt:before { content: '\e84b'; }.uis-grip-horizontal-line:before { content: '\e84c'; }.uis-vector-square-alt:before { content: '\e84d'; }.uis-flip-h:before { content: '\e84e'; }.uis-flip-v-alt:before { content: '\e84f'; }.uis-align-letter-right:before { content: '\e850'; }.uis-align-alt:before { content: '\e851'; }.uis-align-center:before { content: '\e852'; }.uis-layers-alt:before { content: '\e853'; }.uis-flip-v:before { content: '\e854'; }.uis-compress:before { content: '\e855'; }.uis-vector-square:before { content: '\e856'; }.uis-line-spacing:before { content: '\e857'; }.uis-border-alt:before { content: '\e858'; }.uis-object-group:before { content: '\e859'; }.uis-document-layout-center:before { content: '\e85a'; }.uis-border-out:before { content: '\e85b'; }.uis-object-ungroup:before { content: '\e85c'; }.uis-table:before { content: '\e85d'; }.uis-circle-layer:before { content: '\e85e'; }.uis-apps:before { content: '\e85f'; }.uis-document-layout-right:before { content: '\e860'; }.uis-grids:before { content: '\e861'; }.uis-align-left:before { content: '\e862'; }.uis-left-indent:before { content: '\e863'; }.uis-store-slash:before { content: '\e864'; }.uis-user-arrows:before { content: '\e865'; }.uis-stethoscope-alt:before { content: '\e866'; }.uis-head-side:before { content: '\e867'; }.uis-social-distancing:before { content: '\e868'; }.uis-toilet-paper:before { content: '\e869'; }.uis-virus-slash:before { content: '\e86a'; }.uis-house-user:before { content: '\e86b'; }.uis-clinic-medical:before { content: '\e86c'; }.uis-hospital-square-sign:before { content: '\e86d'; }.uis-image-v:before { content: '\e86e'; }.uis-hospital:before { content: '\e86f'; }.uis-sanitizer-alt:before { content: '\e870'; }.uis-user-nurse:before { content: '\e871'; }.uis-head-side-mask:before { content: '\e872'; }.uis-microscope:before { content: '\e873'; }.uis-head-side-cough:before { content: '\e874'; }.uis-hospital-symbol:before { content: '\e875'; }.uis-user-md:before { content: '\e876'; }.uis-stethoscope:before { content: '\e877'; }.uis-record-audio:before { content: '\e878'; }.uis-lock-access:before { content: '\e879'; }.uis-previous:before { content: '\e87a'; }.uis-lock-alt:before { content: '\e87b'; }.uis-coronavirus:before { content: '\e87c'; }.uis-sanitizer:before { content: '\e87d'; }.uis-airplay:before { content: '\e87e'; }.uis-clock-seven:before { content: '\e87f'; }.uis-keyhole-square-full:before { content: '\e880'; }.uis-padlock:before { content: '\e881'; }.uis-scenery:before { content: '\e882'; }.uis-keyhole-circle:before { content: '\e883'; }.uis-pentagon:before { content: '\e884'; }.uis-triangle:before { content: '\e885'; }.uis-unlock:before { content: '\e886'; }.uis-clock-ten:before { content: '\e887'; }.uis-lock:before { content: '\e888'; }.uis-unlock-alt:before { content: '\e889'; }.uis-keyhole-square:before { content: '\e88a'; }.uis-clock-three:before { content: '\e88b'; }.uis-shield-plus:before { content: '\e88c'; }.uis-clock-five:before { content: '\e88d'; }.uis-star:before { content: '\e88e'; }.uis-polygon:before { content: '\e88f'; }.uis-th-large:before { content: '\e890'; }.uis-clock-nine:before { content: '\e891'; }.uis-step-forward:before { content: '\e892'; }.uis-clock:before { content: '\e893'; }.uis-clock-eight:before { content: '\e894'; }.uis-sync-slash:before { content: '\e895'; }.uis-star-half-alt:before { content: '\e896'; }.uis-ellipsis-h:before { content: '\e897'; }.uis-sync-exclamation:before { content: '\e898'; }.uis-exclamation-triangle:before { content: '\e899'; }.uis-key-skeleton:before { content: '\e89a'; }.uis-favorite:before { content: '\e89b'; }.uis-check-square:before { content: '\e89c'; }.uis-signout:before { content: '\e89d'; }.uis-process:before { content: '\e89e'; }.uis-exclamation-circle:before { content: '\e89f'; }.uis-key-skeleton-alt:before { content: '\e8a0'; }.uis-minus-square-full:before { content: '\e8a1'; }.uis-link-h:before { content: '\e8a2'; }.uis-multiply:before { content: '\e8a3'; }.uis-history-alt:before { content: '\e8a4'; }.uis-layer-group:before { content: '\e8a5'; }.uis-battery-empty:before { content: '\e8a6'; }.uis-clock-two:before { content: '\e8a7'; }.uis-battery-bolt:before { content: '\e8a8'; }.uis-redo:before { content: '\e8a9'; }.uis-calender:before { content: '\e8aa'; }.uis-times-circle:before { content: '\e8ab'; }.uis-toggle-on:before { content: '\e8ac'; }.uis-exclamation-octagon:before { content: '\e8ad'; }.uis-signal-alt:before { content: '\e8ae'; }.uis-history:before { content: '\e8af'; }.uis-stopwatch:before { content: '\e8b0'; }.uis-lock-open-alt:before { content: '\e8b1'; }.uis-toggle-off:before { content: '\e8b2'; }.uis-space-key:before { content: '\e8b3'; }.uis-bookmark:before { content: '\e8b4'; }.uis-anchor:before { content: '\e8b5'; }.uis-refresh:before { content: '\e8b6'; }.uis-rocket:before { content: '\e8b7'; }.uis-ellipsis-v:before { content: '\e8b8'; }.uis-at:before { content: '\e8b9'; }.uis-paperclip:before { content: '\e8ba'; }.uis-check:before { content: '\e8bb'; }.uis-check-circle:before { content: '\e8bc'; } \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/thinline.css b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/thinline.css new file mode 100644 index 00000000..7ab23b15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/css/thinline.css @@ -0,0 +1,117 @@ +@font-face { + font-family: 'unicons-thinline'; + src: url('../fonts/thinline/unicons-0.eot'); + src: url('../fonts/thinline/unicons-0.eot#iefix') format('embedded-opentype'), + url('../fonts/thinline/unicons-0.woff2') format('woff2'), + url('../fonts/thinline/unicons-0.woff') format('woff'), + url('../fonts/thinline/unicons-0.ttf') format('truetype'), + url('../fonts/thinline/unicons-0.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E800-E83B; +} +@font-face { + font-family: 'unicons-thinline'; + src: url('../fonts/thinline/unicons-1.eot'); + src: url('../fonts/thinline/unicons-1.eot#iefix') format('embedded-opentype'), + url('../fonts/thinline/unicons-1.woff2') format('woff2'), + url('../fonts/thinline/unicons-1.woff') format('woff'), + url('../fonts/thinline/unicons-1.ttf') format('truetype'), + url('../fonts/thinline/unicons-1.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E83C-E877; +} +@font-face { + font-family: 'unicons-thinline'; + src: url('../fonts/thinline/unicons-2.eot'); + src: url('../fonts/thinline/unicons-2.eot#iefix') format('embedded-opentype'), + url('../fonts/thinline/unicons-2.woff2') format('woff2'), + url('../fonts/thinline/unicons-2.woff') format('woff'), + url('../fonts/thinline/unicons-2.ttf') format('truetype'), + url('../fonts/thinline/unicons-2.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E878-E8B3; +} +@font-face { + font-family: 'unicons-thinline'; + src: url('../fonts/thinline/unicons-3.eot'); + src: url('../fonts/thinline/unicons-3.eot#iefix') format('embedded-opentype'), + url('../fonts/thinline/unicons-3.woff2') format('woff2'), + url('../fonts/thinline/unicons-3.woff') format('woff'), + url('../fonts/thinline/unicons-3.ttf') format('truetype'), + url('../fonts/thinline/unicons-3.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+E8B4-E8D5; +}[class^="uit-"]:before, +[class*=" uit-"]:before { + font-family: "unicons-thinline"; + font-style: normal; + font-weight: normal; + speak: none; + + display: inline-block; + text-decoration: inherit; + + /* For safety - reset parent styles, that can break glyph codes */ + font-variant: normal; + text-transform: none; + + /* fix buttons height, for twitter bootstrap */ + line-height: 1; + + /* Font smoothing. That was taken from TWBS */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +/* Flip and Rotate */ + +[class*="uit-"].flip-horizontal:before { + transform: scaleX(-1); +} +[class*="uit-"].flip-horizontal.rotate-90:before { + transform: rotate(90deg) scaleX(-1); +} +[class*="uit-"].flip-horizontal.rotate-180:before { + transform: rotate(180deg) scaleX(-1); +} +[class*="uit-"].flip-horizontal.rotate-270:before { + transform: rotate(270deg) scaleX(-1); +} +[class*="uit-"].flip-horizontal.flip-vertical:before { + transform: scale(-1); +} +[class*="uit-"].flip-horizontal.flip-vertical.rotate-90:before { + transform: rotate(90deg) scale(-1); +} +[class*="uit-"].flip-horizontal.flip-vertical.rotate-180:before { + transform: rotate(180deg) scale(-1); +} +[class*="uit-"].flip-horizontal.flip-vertical.rotate-270:before { + transform: rotate(270deg) scale(-1); +} +[class*="uit-"].flip-vertical:before { + transform: scaleY(-1); +} +[class*="uit-"].flip-vertical.rotate-90:before { + transform: rotate(90deg) scaleY(-1); +} +[class*="uit-"].flip-vertical.rotate-180:before { + transform: rotate(180deg) scaleY(-1); +} +[class*="uit-"].flip-vertical.rotate-270:before { + transform: rotate(270deg) scaleY(-1); +} +[class*="uit-"].rotate-90:before { + transform: rotate(90deg); +} +[class*="uit-"].rotate-180:before { + transform: rotate(180deg); +} +[class*="uit-"].rotate-270:before { + transform: rotate(270deg); +} +.uit-clock-eight:before { content: '\e800'; }.uit-laptop:before { content: '\e801'; }.uit-head-side-mask:before { content: '\e802'; }.uit-stopwatch:before { content: '\e803'; }.uit-clock:before { content: '\e804'; }.uit-mouse-alt-2:before { content: '\e805'; }.uit-shield-exclamation:before { content: '\e806'; }.uit-print:before { content: '\e807'; }.uit-web-grid-alt:before { content: '\e808'; }.uit-shield-check:before { content: '\e809'; }.uit-clock-two:before { content: '\e80a'; }.uit-clock-three:before { content: '\e80b'; }.uit-shield:before { content: '\e80c'; }.uit-clock-nine:before { content: '\e80d'; }.uit-user-arrows:before { content: '\e80e'; }.uit-circuit:before { content: '\e80f'; }.uit-clock-five:before { content: '\e810'; }.uit-stethoscope-alt:before { content: '\e811'; }.uit-window-grid:before { content: '\e812'; }.uit-store-slash:before { content: '\e813'; }.uit-social-distancing:before { content: '\e814'; }.uit-clinic-medical:before { content: '\e815'; }.uit-clock-seven:before { content: '\e816'; }.uit-sanitizer-alt:before { content: '\e817'; }.uit-head-side:before { content: '\e818'; }.uit-shield-question:before { content: '\e819'; }.uit-columns:before { content: '\e81a'; }.uit-hospital-symbol:before { content: '\e81b'; }.uit-polygon:before { content: '\e81c'; }.uit-covid-19:before { content: '\e81d'; }.uit-pentagon:before { content: '\e81e'; }.uit-shield-plus:before { content: '\e81f'; }.uit-web-section:before { content: '\e820'; }.uit-triangle:before { content: '\e821'; }.uit-microscope:before { content: '\e822'; }.uit-window-maximize:before { content: '\e823'; }.uit-modem:before { content: '\e824'; }.uit-window-section:before { content: '\e825'; }.uit-grid:before { content: '\e826'; }.uit-hospital-square-sign:before { content: '\e827'; }.uit-hospital:before { content: '\e828'; }.uit-star:before { content: '\e829'; }.uit-web-section-alt:before { content: '\e82a'; }.uit-clock-ten:before { content: '\e82b'; }.uit-toilet-paper:before { content: '\e82c'; }.uit-comment-dots:before { content: '\e82d'; }.uit-stethoscope:before { content: '\e82e'; }.uit-web-grid:before { content: '\e82f'; }.uit-head-side-cough:before { content: '\e830'; }.uit-house-user:before { content: '\e831'; }.uit-shield-slash:before { content: '\e832'; }.uit-sanitizer:before { content: '\e833'; }.uit-snapchat-alt:before { content: '\e834'; }.uit-arrow-circle-down:before { content: '\e835'; }.uit-paypal:before { content: '\e836'; }.uit-corner-down-right:before { content: '\e837'; }.uit-twitter-alt:before { content: '\e838'; }.uit-linkedin-alt:before { content: '\e839'; }.uit-skype-alt:before { content: '\e83a'; }.uit-corner-down-left:before { content: '\e83b'; }.uit-facebook-f:before { content: '\e83c'; }.uit-angle-double-right:before { content: '\e83d'; }.uit-tumblr-alt:before { content: '\e83e'; }.uit-google-play:before { content: '\e83f'; }.uit-slack-alt:before { content: '\e840'; }.uit-blogger-alt:before { content: '\e841'; }.uit-apple-alt:before { content: '\e842'; }.uit-vuejs-alt:before { content: '\e843'; }.uit-corner-up-left:before { content: '\e844'; }.uit-opera-alt:before { content: '\e845'; }.uit-github-alt:before { content: '\e846'; }.uit-gold:before { content: '\e847'; }.uit-arrow-up-left:before { content: '\e848'; }.uit-direction:before { content: '\e849'; }.uit-corner-left-down:before { content: '\e84a'; }.uit-intercom-alt:before { content: '\e84b'; }.uit-google:before { content: '\e84c'; }.uit-download-alt:before { content: '\e84d'; }.uit-arrow-down-right:before { content: '\e84e'; }.uit-arrow-down-left:before { content: '\e84f'; }.uit-html3-alt:before { content: '\e850'; }.uit-angle-double-left:before { content: '\e851'; }.uit-angle-double-down:before { content: '\e852'; }.uit-angle-up:before { content: '\e853'; }.uit-arrow-circle-left:before { content: '\e854'; }.uit-adobe-alt:before { content: '\e855'; }.uit-arrow-circle-up:before { content: '\e856'; }.uit-dropbox:before { content: '\e857'; }.uit-corner-right-down:before { content: '\e858'; }.uit-master-card:before { content: '\e859'; }.uit-vk-alt:before { content: '\e85a'; }.uit-corner-up-right:before { content: '\e85b'; }.uit-behance-alt:before { content: '\e85c'; }.uit-upload-alt:before { content: '\e85d'; }.uit-arrow-up-right:before { content: '\e85e'; }.uit-youtube:before { content: '\e85f'; }.uit-bitcoin-alt:before { content: '\e860'; }.uit-android-alt:before { content: '\e861'; }.uit-arrow-circle-right:before { content: '\e862'; }.uit-reddit-alien-alt:before { content: '\e863'; }.uit-facebook-messenger-alt:before { content: '\e864'; }.uit-google-hangouts-alt:before { content: '\e865'; }.uit-google-drive-alt:before { content: '\e866'; }.uit-bag:before { content: '\e867'; }.uit-chart-growth:before { content: '\e868'; }.uit-telegram-alt:before { content: '\e869'; }.uit-align-center:before { content: '\e86a'; }.uit-chart-pie:before { content: '\e86b'; }.uit-signal-alt-3:before { content: '\e86c'; }.uit-document-layout-left:before { content: '\e86d'; }.uit-border-clear:before { content: '\e86e'; }.uit-document-layout-center:before { content: '\e86f'; }.uit-document-layout-right:before { content: '\e870'; }.uit-grip-horizontal-line:before { content: '\e871'; }.uit-border-inner:before { content: '\e872'; }.uit-border-horizontal:before { content: '\e873'; }.uit-subject:before { content: '\e874'; }.uit-left-indent:before { content: '\e875'; }.uit-right-indent:before { content: '\e876'; }.uit-align-left:before { content: '\e877'; }.uit-align-alt:before { content: '\e878'; }.uit-border-left:before { content: '\e879'; }.uit-align-center-justify:before { content: '\e87a'; }.uit-paragraph:before { content: '\e87b'; }.uit-align-center-alt:before { content: '\e87c'; }.uit-border-top:before { content: '\e87d'; }.uit-dialpad:before { content: '\e87e'; }.uit-vector-square-alt:before { content: '\e87f'; }.uit-compress:before { content: '\e880'; }.uit-object-group:before { content: '\e881'; }.uit-times-circle:before { content: '\e882'; }.uit-signout:before { content: '\e883'; }.uit-battery-empty:before { content: '\e884'; }.uit-left-indent-alt:before { content: '\e885'; }.uit-list-ul:before { content: '\e886'; }.uit-list-ui-alt:before { content: '\e887'; }.uit-align-left-justify:before { content: '\e888'; }.uit-align-right:before { content: '\e889'; }.uit-border-vertical:before { content: '\e88a'; }.uit-align-letter-right:before { content: '\e88b'; }.uit-align-right-justify:before { content: '\e88c'; }.uit-circle-layer:before { content: '\e88d'; }.uit-table:before { content: '\e88e'; }.uit-layers-alt:before { content: '\e88f'; }.uit-square-full:before { content: '\e890'; }.uit-ruler-combined:before { content: '\e891'; }.uit-flip-h-alt:before { content: '\e892'; }.uit-repeat:before { content: '\e893'; }.uit-flip-h:before { content: '\e894'; }.uit-th:before { content: '\e895'; }.uit-wrap-text:before { content: '\e896'; }.uit-horizontal-align-left:before { content: '\e897'; }.uit-line-spacing:before { content: '\e898'; }.uit-image-v:before { content: '\e899'; }.uit-vector-square:before { content: '\e89a'; }.uit-th-large:before { content: '\e89b'; }.uit-border-bottom:before { content: '\e89c'; }.uit-border-alt:before { content: '\e89d'; }.uit-flip-v-alt:before { content: '\e89e'; }.uit-object-ungroup:before { content: '\e89f'; }.uit-step-forward:before { content: '\e8a0'; }.uit-border-out:before { content: '\e8a1'; }.uit-scenery:before { content: '\e8a2'; }.uit-flip-v:before { content: '\e8a3'; }.uit-grids:before { content: '\e8a4'; }.uit-right-indent-alt:before { content: '\e8a5'; }.uit-ruler:before { content: '\e8a6'; }.uit-airplay:before { content: '\e8a7'; }.uit-record-audio:before { content: '\e8a8'; }.uit-previous:before { content: '\e8a9'; }.uit-check-circle:before { content: '\e8aa'; }.uit-calender:before { content: '\e8ab'; }.uit-at:before { content: '\e8ac'; }.uit-traffic-light:before { content: '\e8ad'; }.uit-toggle-off:before { content: '\e8ae'; }.uit-toggle-on:before { content: '\e8af'; }.uit-check:before { content: '\e8b0'; }.uit-umbrella:before { content: '\e8b1'; }.uit-minus-square-full:before { content: '\e8b2'; }.uit-layer-group:before { content: '\e8b3'; }.uit-process:before { content: '\e8b4'; }.uit-paperclip:before { content: '\e8b5'; }.uit-desktop-alt-slash:before { content: '\e8b6'; }.uit-history:before { content: '\e8b7'; }.uit-bookmark:before { content: '\e8b8'; }.uit-battery-bolt:before { content: '\e8b9'; }.uit-space-key:before { content: '\e8ba'; }.uit-star-half-alt:before { content: '\e8bb'; }.uit-check-square:before { content: '\e8bc'; }.uit-link-broken:before { content: '\e8bd'; }.uit-sim-card:before { content: '\e8be'; }.uit-multiply:before { content: '\e8bf'; }.uit-ankh:before { content: '\e8c0'; }.uit-exclamation-octagon:before { content: '\e8c1'; }.uit-create-dashboard:before { content: '\e8c2'; }.uit-pump:before { content: '\e8c3'; }.uit-exclamation-circle:before { content: '\e8c4'; }.uit-exclamation-triangle:before { content: '\e8c5'; }.uit-signal-alt:before { content: '\e8c6'; }.uit-key-skeleton:before { content: '\e8c7'; }.uit-question-circle:before { content: '\e8c8'; }.uit-refresh:before { content: '\e8c9'; }.uit-wallet:before { content: '\e8ca'; }.uit-key-skeleton-alt:before { content: '\e8cb'; }.uit-redo:before { content: '\e8cc'; }.uit-rocket:before { content: '\e8cd'; }.uit-anchor:before { content: '\e8ce'; }.uit-ellipsis-h:before { content: '\e8cf'; }.uit-sync-slash:before { content: '\e8d0'; }.uit-history-alt:before { content: '\e8d1'; }.uit-favorite:before { content: '\e8d2'; }.uit-ellipsis-v:before { content: '\e8d3'; }.uit-link-h:before { content: '\e8d4'; }.uit-sync-exclamation:before { content: '\e8d5'; } \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.eot new file mode 100644 index 00000000..3f4415d7 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.svg new file mode 100644 index 00000000..6799511d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.ttf new file mode 100644 index 00000000..25d4aec0 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.woff new file mode 100644 index 00000000..b3342765 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.woff2 new file mode 100644 index 00000000..a0d00b1b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-0.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.eot new file mode 100644 index 00000000..09da6dff Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.svg new file mode 100644 index 00000000..a6b6cd2f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.ttf new file mode 100644 index 00000000..63a17202 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.woff new file mode 100644 index 00000000..79c59e20 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.woff2 new file mode 100644 index 00000000..d2dde544 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-1.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.eot new file mode 100644 index 00000000..320be52b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.svg new file mode 100644 index 00000000..cbd0d656 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.ttf new file mode 100644 index 00000000..4c98a3fb Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.woff new file mode 100644 index 00000000..e02d2aa5 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.woff2 new file mode 100644 index 00000000..9ea5490b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-10.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.eot new file mode 100644 index 00000000..b7e4381e Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.svg new file mode 100644 index 00000000..91e8fb48 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.ttf new file mode 100644 index 00000000..26891673 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.woff new file mode 100644 index 00000000..f7c62474 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.woff2 new file mode 100644 index 00000000..6a496554 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-11.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.eot new file mode 100644 index 00000000..feaf187f Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.svg new file mode 100644 index 00000000..d8dc05de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.ttf new file mode 100644 index 00000000..cc1e93e7 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.woff new file mode 100644 index 00000000..4f95b19f Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.woff2 new file mode 100644 index 00000000..4fc0ae15 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-12.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.eot new file mode 100644 index 00000000..626c75fb Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.svg new file mode 100644 index 00000000..db4ec42e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.ttf new file mode 100644 index 00000000..11f9a445 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.woff new file mode 100644 index 00000000..2ef65118 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.woff2 new file mode 100644 index 00000000..92f35f51 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-13.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.eot new file mode 100644 index 00000000..908585eb Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.svg new file mode 100644 index 00000000..a3556f1f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.ttf new file mode 100644 index 00000000..b51c43bb Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.woff new file mode 100644 index 00000000..65c75218 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.woff2 new file mode 100644 index 00000000..0a2133cd Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-14.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.eot new file mode 100644 index 00000000..4a7a1b87 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.svg new file mode 100644 index 00000000..b575f6bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.ttf new file mode 100644 index 00000000..b563f280 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.woff new file mode 100644 index 00000000..3ce772e9 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.woff2 new file mode 100644 index 00000000..a95bcc8d Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-15.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.eot new file mode 100644 index 00000000..3dd91a88 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.svg new file mode 100644 index 00000000..cc4927c2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.ttf new file mode 100644 index 00000000..48e39b23 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.woff new file mode 100644 index 00000000..f83f9a97 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.woff2 new file mode 100644 index 00000000..30e67f0e Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-16.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.eot new file mode 100644 index 00000000..f6a12a1a Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.svg new file mode 100644 index 00000000..c63e0c2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.ttf new file mode 100644 index 00000000..6079c2fb Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.woff new file mode 100644 index 00000000..efa8ff80 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.woff2 new file mode 100644 index 00000000..4a83b705 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-17.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.eot new file mode 100644 index 00000000..390cb3eb Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.svg new file mode 100644 index 00000000..41a6ae28 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.ttf new file mode 100644 index 00000000..cd58d380 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.woff new file mode 100644 index 00000000..c7dcc60c Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.woff2 new file mode 100644 index 00000000..35f8ddc6 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-18.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.eot new file mode 100644 index 00000000..47e97c2a Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.svg new file mode 100644 index 00000000..1943318c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.ttf new file mode 100644 index 00000000..02d7a49f Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.woff new file mode 100644 index 00000000..224c542a Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.woff2 new file mode 100644 index 00000000..9dcd665c Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-19.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.eot new file mode 100644 index 00000000..ea550c89 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.svg new file mode 100644 index 00000000..0054e560 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.ttf new file mode 100644 index 00000000..99fb9253 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.woff new file mode 100644 index 00000000..86c19a98 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.woff2 new file mode 100644 index 00000000..653384fd Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-2.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.eot new file mode 100644 index 00000000..fc35e84f Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.svg new file mode 100644 index 00000000..ce7e8344 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.svg @@ -0,0 +1,18 @@ + + + +IconScout + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.ttf new file mode 100644 index 00000000..739283e3 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.woff new file mode 100644 index 00000000..99d77ee8 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.woff2 new file mode 100644 index 00000000..ff674a46 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-20.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.eot new file mode 100644 index 00000000..f42126c1 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.svg new file mode 100644 index 00000000..c843c851 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.ttf new file mode 100644 index 00000000..ee9e4c75 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.woff new file mode 100644 index 00000000..fc38b7ea Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.woff2 new file mode 100644 index 00000000..eb294c88 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-3.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.eot new file mode 100644 index 00000000..642988eb Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.svg new file mode 100644 index 00000000..7471dfd5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.ttf new file mode 100644 index 00000000..132d0f68 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.woff new file mode 100644 index 00000000..30d016d8 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.woff2 new file mode 100644 index 00000000..9f3f070f Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-4.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.eot new file mode 100644 index 00000000..2518c300 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.svg new file mode 100644 index 00000000..1a678f67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.ttf new file mode 100644 index 00000000..6f02ee74 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.woff new file mode 100644 index 00000000..4c4d7c0d Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.woff2 new file mode 100644 index 00000000..1a4a5933 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-5.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.eot new file mode 100644 index 00000000..6b74a79f Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.svg new file mode 100644 index 00000000..e022070f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.ttf new file mode 100644 index 00000000..fb85747f Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.woff new file mode 100644 index 00000000..14b31885 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.woff2 new file mode 100644 index 00000000..8feab91a Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-6.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.eot new file mode 100644 index 00000000..181dbf86 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.svg new file mode 100644 index 00000000..2f6ef974 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.ttf new file mode 100644 index 00000000..ad4f4737 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.woff new file mode 100644 index 00000000..79bd69b1 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.woff2 new file mode 100644 index 00000000..dc599843 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-7.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.eot new file mode 100644 index 00000000..d106ff5a Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.svg new file mode 100644 index 00000000..8cba1cd0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.ttf new file mode 100644 index 00000000..fc35d76e Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.woff new file mode 100644 index 00000000..70def6de Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.woff2 new file mode 100644 index 00000000..9d7a0dcd Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-8.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.eot new file mode 100644 index 00000000..5d54050b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.svg new file mode 100644 index 00000000..17fade9e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.ttf new file mode 100644 index 00000000..10fd16ab Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.woff new file mode 100644 index 00000000..590c464a Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.woff2 new file mode 100644 index 00000000..925d21a8 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-9.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.eot new file mode 100644 index 00000000..005bd8f9 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.svg new file mode 100644 index 00000000..83694f20 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.svg @@ -0,0 +1,2538 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.ttf new file mode 100644 index 00000000..a466c8f3 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.woff new file mode 100644 index 00000000..8b4d2c92 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.woff2 new file mode 100644 index 00000000..ff757a83 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/line/unicons-line.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.eot new file mode 100644 index 00000000..6096782b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.svg new file mode 100644 index 00000000..ce4fbf6a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.ttf new file mode 100644 index 00000000..f232cd97 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.woff new file mode 100644 index 00000000..017e3cb6 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.woff2 new file mode 100644 index 00000000..6535b441 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-0.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.eot new file mode 100644 index 00000000..24d4a268 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.svg new file mode 100644 index 00000000..b17a5a33 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.ttf new file mode 100644 index 00000000..3255bc47 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.woff new file mode 100644 index 00000000..b40ddb70 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.woff2 new file mode 100644 index 00000000..3b09703b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-1.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.eot new file mode 100644 index 00000000..a9c11bad Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.svg new file mode 100644 index 00000000..90c56938 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.ttf new file mode 100644 index 00000000..f5472d1b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.woff new file mode 100644 index 00000000..58403c59 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.woff2 new file mode 100644 index 00000000..b7dee89d Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-2.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.eot new file mode 100644 index 00000000..034510ca Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.svg new file mode 100644 index 00000000..dfcdc33c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.svg @@ -0,0 +1,28 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.ttf new file mode 100644 index 00000000..c6f9fad5 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.woff new file mode 100644 index 00000000..b541c471 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.woff2 new file mode 100644 index 00000000..ad8bd781 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-3.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.eot new file mode 100644 index 00000000..19040a4f Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.svg new file mode 100644 index 00000000..c3c4c06e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.svg @@ -0,0 +1,508 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.ttf new file mode 100644 index 00000000..523cc82b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.woff new file mode 100644 index 00000000..520206bf Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.woff2 new file mode 100644 index 00000000..41c2ca7d Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/solid/unicons-solid.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.eot new file mode 100644 index 00000000..6471ffe3 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.svg new file mode 100644 index 00000000..0d0cd1fd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.ttf new file mode 100644 index 00000000..36ddd14f Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.woff new file mode 100644 index 00000000..ce1fec64 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.woff2 new file mode 100644 index 00000000..4b910d2b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-0.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.eot new file mode 100644 index 00000000..7f07663a Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.svg new file mode 100644 index 00000000..de99904d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.ttf new file mode 100644 index 00000000..9095e106 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.woff new file mode 100644 index 00000000..da3c0d0e Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.woff2 new file mode 100644 index 00000000..bd6b737d Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-1.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.eot new file mode 100644 index 00000000..4f9aa5f0 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.svg new file mode 100644 index 00000000..68e81f79 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.svg @@ -0,0 +1,130 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.ttf new file mode 100644 index 00000000..e6656fa4 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.woff new file mode 100644 index 00000000..c8798c6a Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.woff2 new file mode 100644 index 00000000..e64d4674 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-2.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.eot new file mode 100644 index 00000000..9acbb82c Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.svg new file mode 100644 index 00000000..ec7540a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.svg @@ -0,0 +1,78 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.ttf new file mode 100644 index 00000000..e19b90a0 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.woff new file mode 100644 index 00000000..2ddbdca9 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.woff2 new file mode 100644 index 00000000..1a1d6c11 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-3.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.eot b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.eot new file mode 100644 index 00000000..1b2498b3 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.svg new file mode 100644 index 00000000..e0f680d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.svg @@ -0,0 +1,558 @@ + + + +IconScout + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.ttf b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.ttf new file mode 100644 index 00000000..3ad3587e Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.woff b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.woff new file mode 100644 index 00000000..688d4650 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.woff2 b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.woff2 new file mode 100644 index 00000000..82c4ab0d Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/fonts/thinline/unicons-thinline.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-line.html b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-line.html new file mode 100644 index 00000000..4f3ad31c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-line.html @@ -0,0 +1,52 @@ + + + + + + + Unicons + + + + +

Icon is here

+

Icon is here

+

+ Icon is here +

+

+ Icon is here +

+
+ Icon is here +
+

+ Paragraph +

+ +

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+ + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-monochrome.html b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-monochrome.html new file mode 100644 index 00000000..27908fdb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-monochrome.html @@ -0,0 +1,42 @@ + + + + + + + Unicons + + + +

Icon is here

+

Icon is here

+

+ Icon is here +

+

+ Icon is here +

+
+ Icon is here +
+

+ Paragraph +

+ +

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+ + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-solid.html b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-solid.html new file mode 100644 index 00000000..b55ce87a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-solid.html @@ -0,0 +1,52 @@ + + + + + + + Unicons + + + + +

Icon is here

+

Icon is here

+

+ Icon is here +

+

+ Icon is here +

+
+ Icon is here +
+

+ Paragraph +

+ +

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+ + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-thinline.html b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-thinline.html new file mode 100644 index 00000000..178d8342 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index-thinline.html @@ -0,0 +1,57 @@ + + + + + + + Unicons + + + + +

Icon is here

+

Icon is here

+

+ Icon is here +

+

Icon is star

+
+ Icon is here +
+

+ Paragraph +

+ +

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+

+ Icon is here +

+ + + + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index.html b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index.html new file mode 100644 index 00000000..9622ee15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/index.html @@ -0,0 +1,6365 @@ + + + + + + + + + + + +
+

unicons font demo

+ +
+
+
+
+ + uil-0-plus0xe800 +
+
+ + uil-10-plus0xe801 +
+
+ + uil-12-plus0xe802 +
+
+ + uil-13-plus0xe803 +
+
+
+
+ + uil-16-plus0xe804 +
+
+ + uil-17-plus0xe805 +
+
+ + uil-18-plus0xe806 +
+
+ + uil-21-plus0xe807 +
+
+
+
+ + uil-3-plus0xe808 +
+
+ + uil-500px0xe809 +
+
+ + uil-6-plus0xe80a +
+
+ + uil-abacus0xe80b +
+
+
+
+ + uil-accessible-icon-alt0xe80c +
+
+ + uil-adjust-alt0xe80d +
+
+ + uil-adjust-circle0xe80e +
+
+ + uil-adjust-half0xe80f +
+
+
+
+ + uil-adjust0xe810 +
+
+ + uil-adobe-alt0xe811 +
+
+ + uil-adobe0xe812 +
+
+ + uil-airplay0xe813 +
+
+
+
+ + uil-align-alt0xe814 +
+
+ + uil-align-center-alt0xe815 +
+
+ + uil-align-center-h0xe816 +
+
+ + uil-align-center-justify0xe817 +
+
+
+
+ + uil-align-center-v0xe818 +
+
+ + uil-align-center0xe819 +
+
+ + uil-align-justify0xe81a +
+
+ + uil-align-left-justify0xe81b +
+
+
+
+ + uil-align-left0xe81c +
+
+ + uil-align-letter-right0xe81d +
+
+ + uil-align-right-justify0xe81e +
+
+ + uil-align-right0xe81f +
+
+
+
+ + uil-align0xe820 +
+
+ + uil-amazon0xe821 +
+
+ + uil-ambulance0xe822 +
+
+ + uil-analysis0xe823 +
+
+
+
+ + uil-analytics0xe824 +
+
+ + uil-anchor0xe825 +
+
+ + uil-android-alt0xe826 +
+
+ + uil-android-phone-slash0xe827 +
+
+
+
+ + uil-android0xe828 +
+
+ + uil-angle-double-down0xe829 +
+
+ + uil-angle-double-left0xe82a +
+
+ + uil-angle-double-right0xe82b +
+
+
+
+ + uil-angle-double-up0xe82c +
+
+ + uil-angle-down0xe82d +
+
+ + uil-angle-left0xe82e +
+
+ + uil-angle-right-b0xe82f +
+
+
+
+ + uil-angle-right0xe830 +
+
+ + uil-angle-up0xe831 +
+
+ + uil-angry0xe832 +
+
+ + uil-ankh0xe833 +
+
+
+
+ + uil-annoyed-alt0xe834 +
+
+ + uil-annoyed0xe835 +
+
+ + uil-apple-alt0xe836 +
+
+ + uil-apple0xe837 +
+
+
+
+ + uil-apps0xe838 +
+
+ + uil-archive-alt0xe839 +
+
+ + uil-archive0xe83a +
+
+ + uil-archway0xe83b +
+
+
+
+ + uil-arrow-break0xe83c +
+
+ + uil-arrow-circle-down0xe83d +
+
+ + uil-arrow-circle-left0xe83e +
+
+ + uil-arrow-circle-right0xe83f +
+
+
+
+ + uil-arrow-circle-up0xe840 +
+
+ + uil-arrow-compress-h0xe841 +
+
+ + uil-arrow-down-left0xe842 +
+
+ + uil-arrow-down-right0xe843 +
+
+
+
+ + uil-arrow-down0xe844 +
+
+ + uil-arrow-from-right0xe845 +
+
+ + uil-arrow-from-top0xe846 +
+
+ + uil-arrow-growth0xe847 +
+
+
+
+ + uil-arrow-left0xe848 +
+
+ + uil-arrow-random0xe849 +
+
+ + uil-arrow-resize-diagonal0xe84a +
+
+ + uil-arrow-right0xe84b +
+
+
+
+ + uil-arrow-to-bottom0xe84c +
+
+ + uil-arrow-to-right0xe84d +
+
+ + uil-arrow-up-left0xe84e +
+
+ + uil-arrow-up-right0xe84f +
+
+
+
+ + uil-arrow-up0xe850 +
+
+ + uil-arrow0xe851 +
+
+ + uil-arrows-h-alt0xe852 +
+
+ + uil-arrows-h0xe853 +
+
+
+
+ + uil-arrows-left-down0xe854 +
+
+ + uil-arrows-maximize0xe855 +
+
+ + uil-arrows-merge0xe856 +
+
+ + uil-arrows-resize-h0xe857 +
+
+
+
+ + uil-arrows-resize-v0xe858 +
+
+ + uil-arrows-resize0xe859 +
+
+ + uil-arrows-right-down0xe85a +
+
+ + uil-arrows-shrink-h0xe85b +
+
+
+
+ + uil-arrows-shrink-v0xe85c +
+
+ + uil-arrows-up-right0xe85d +
+
+ + uil-arrows-v-alt0xe85e +
+
+ + uil-arrows-v0xe85f +
+
+
+
+ + uil-assistive-listening-systems0xe860 +
+
+ + uil-asterisk0xe861 +
+
+ + uil-at0xe862 +
+
+ + uil-atm-card0xe863 +
+
+
+
+ + uil-atom0xe864 +
+
+ + uil-auto-flash0xe865 +
+
+ + uil-award-alt0xe866 +
+
+ + uil-award0xe867 +
+
+
+
+ + uil-baby-carriage0xe868 +
+
+ + uil-backpack0xe869 +
+
+ + uil-backspace0xe86a +
+
+ + uil-backward0xe86b +
+
+
+
+ + uil-bag-alt0xe86c +
+
+ + uil-bag-slash0xe86d +
+
+ + uil-bag0xe86e +
+
+ + uil-balance-scale0xe86f +
+
+
+
+ + uil-ball0xe870 +
+
+ + uil-ban0xe871 +
+
+ + uil-bars0xe872 +
+
+ + uil-baseball-ball0xe873 +
+
+
+
+ + uil-basketball-hoop0xe874 +
+
+ + uil-basketball0xe875 +
+
+ + uil-bath0xe876 +
+
+ + uil-battery-bolt0xe877 +
+
+
+
+ + uil-battery-empty0xe878 +
+
+ + uil-bed-double0xe879 +
+
+ + uil-bed0xe87a +
+
+ + uil-behance-alt0xe87b +
+
+
+
+ + uil-behance0xe87c +
+
+ + uil-bell-school0xe87d +
+
+ + uil-bell-slash0xe87e +
+
+ + uil-bell0xe87f +
+
+
+
+ + uil-bill0xe880 +
+
+ + uil-bitcoin-alt0xe881 +
+
+ + uil-bitcoin-bold0xe882 +
+
+ + uil-bitcoin-circle0xe883 +
+
+
+
+ + uil-bitcoin0xe884 +
+
+ + uil-black-berry0xe885 +
+
+ + uil-blogger-alt0xe886 +
+
+ + uil-blogger0xe887 +
+
+
+
+ + uil-bluetooth-b0xe888 +
+
+ + uil-bold0xe889 +
+
+ + uil-bolt-alt0xe88a +
+
+ + uil-bolt-slash0xe88b +
+
+
+
+ + uil-bolt0xe88c +
+
+ + uil-book-alt0xe88d +
+
+ + uil-book-medical0xe88e +
+
+ + uil-book-open0xe88f +
+
+
+
+ + uil-book-reader0xe890 +
+
+ + uil-book0xe891 +
+
+ + uil-bookmark-full0xe892 +
+
+ + uil-bookmark0xe893 +
+
+
+
+ + uil-books0xe894 +
+
+ + uil-boombox0xe895 +
+
+ + uil-border-alt0xe896 +
+
+ + uil-border-bottom0xe897 +
+
+
+
+ + uil-border-clear0xe898 +
+
+ + uil-border-horizontal0xe899 +
+
+ + uil-border-inner0xe89a +
+
+ + uil-border-left0xe89b +
+
+
+
+ + uil-border-out0xe89c +
+
+ + uil-border-right0xe89d +
+
+ + uil-border-top0xe89e +
+
+ + uil-border-vertical0xe89f +
+
+
+
+ + uil-bowling-ball0xe8a0 +
+
+ + uil-box0xe8a1 +
+
+ + uil-briefcase-alt0xe8a2 +
+
+ + uil-briefcase0xe8a3 +
+
+
+
+ + uil-bright0xe8a4 +
+
+ + uil-brightness-empty0xe8a5 +
+
+ + uil-brightness-half0xe8a6 +
+
+ + uil-brightness-low0xe8a7 +
+
+
+
+ + uil-brightness-minus0xe8a8 +
+
+ + uil-brightness-plus0xe8a9 +
+
+ + uil-brightness0xe8aa +
+
+ + uil-bring-bottom0xe8ab +
+
+
+
+ + uil-bring-front0xe8ac +
+
+ + uil-brush-alt0xe8ad +
+
+ + uil-bug0xe8ae +
+
+ + uil-building0xe8af +
+
+
+
+ + uil-bullseye0xe8b0 +
+
+ + uil-bus-alt0xe8b1 +
+
+ + uil-bus-school0xe8b2 +
+
+ + uil-bus0xe8b3 +
+
+
+
+ + uil-calcualtor0xe8b4 +
+
+ + uil-calculator-alt0xe8b5 +
+
+ + uil-calculator0xe8b6 +
+
+ + uil-calendar-alt0xe8b7 +
+
+
+
+ + uil-calendar-slash0xe8b8 +
+
+ + uil-calender0xe8b9 +
+
+ + uil-calling0xe8ba +
+
+ + uil-camera-change0xe8bb +
+
+
+
+ + uil-camera-plus0xe8bc +
+
+ + uil-camera-slash0xe8bd +
+
+ + uil-camera0xe8be +
+
+ + uil-cancel0xe8bf +
+
+
+
+ + uil-capsule0xe8c0 +
+
+ + uil-capture0xe8c1 +
+
+ + uil-car-sideview0xe8c2 +
+
+ + uil-car-slash0xe8c3 +
+
+
+
+ + uil-car-wash0xe8c4 +
+
+ + uil-car0xe8c5 +
+
+ + uil-card-atm0xe8c6 +
+
+ + uil-caret-right0xe8c7 +
+
+
+
+ + uil-cart0xe8c8 +
+
+ + uil-cell0xe8c9 +
+
+ + uil-celsius0xe8ca +
+
+ + uil-chart-bar-alt0xe8cb +
+
+
+
+ + uil-chart-bar0xe8cc +
+
+ + uil-chart-down0xe8cd +
+
+ + uil-chart-growth-alt0xe8ce +
+
+ + uil-chart-growth0xe8cf +
+
+
+
+ + uil-chart-line0xe8d0 +
+
+ + uil-chart-pie-alt0xe8d1 +
+
+ + uil-chart-pie0xe8d2 +
+
+ + uil-chart0xe8d3 +
+
+
+
+ + uil-chat-bubble-user0xe8d4 +
+
+ + uil-chat-info0xe8d5 +
+
+ + uil-chat0xe8d6 +
+
+ + uil-check-circle0xe8d7 +
+
+
+
+ + uil-check-square0xe8d8 +
+
+ + uil-check0xe8d9 +
+
+ + uil-circle-layer0xe8da +
+
+ + uil-circle0xe8db +
+
+
+
+ + uil-circuit0xe8dc +
+
+ + uil-clapper-board0xe8dd +
+
+ + uil-clipboard-alt0xe8de +
+
+ + uil-clipboard-blank0xe8df +
+
+
+
+ + uil-clipboard-notes0xe8e0 +
+
+ + uil-clipboard0xe8e1 +
+
+ + uil-clock-eight0xe8e2 +
+
+ + uil-clock-five0xe8e3 +
+
+
+
+ + uil-clock-nine0xe8e4 +
+
+ + uil-clock-seven0xe8e5 +
+
+ + uil-clock-ten0xe8e6 +
+
+ + uil-clock-three0xe8e7 +
+
+
+
+ + uil-clock-two0xe8e8 +
+
+ + uil-clock0xe8e9 +
+
+ + uil-closed-captioning0xe8ea +
+
+ + uil-cloud-block0xe8eb +
+
+
+
+ + uil-cloud-bookmark0xe8ec +
+
+ + uil-cloud-check0xe8ed +
+
+ + uil-cloud-computing0xe8ee +
+
+ + uil-cloud-data-connection0xe8ef +
+
+
+
+ + uil-cloud-database-tree0xe8f0 +
+
+ + uil-cloud-download0xe8f1 +
+
+ + uil-cloud-drizzle0xe8f2 +
+
+ + uil-cloud-exclamation0xe8f3 +
+
+
+
+ + uil-cloud-hail0xe8f4 +
+
+ + uil-cloud-heart0xe8f5 +
+
+ + uil-cloud-info0xe8f6 +
+
+ + uil-cloud-lock0xe8f7 +
+
+
+
+ + uil-cloud-meatball0xe8f8 +
+
+ + uil-cloud-moon-hail0xe8f9 +
+
+ + uil-cloud-moon-meatball0xe8fa +
+
+ + uil-cloud-moon-rain0xe8fb +
+
+
+
+ + uil-cloud-moon-showers0xe8fc +
+
+ + uil-cloud-moon0xe8fd +
+
+ + uil-cloud-question0xe8fe +
+
+ + uil-cloud-rain-sun0xe8ff +
+
+
+
+ + uil-cloud-rain0xe900 +
+
+ + uil-cloud-redo0xe901 +
+
+ + uil-cloud-set0xe902 +
+
+ + uil-cloud-share0xe903 +
+
+
+
+ + uil-cloud-shield0xe904 +
+
+ + uil-cloud-showers-alt0xe905 +
+
+ + uil-cloud-showers-heavy0xe906 +
+
+ + uil-cloud-showers0xe907 +
+
+
+
+ + uil-cloud-slash0xe908 +
+
+ + uil-cloud-sun-hail0xe909 +
+
+ + uil-cloud-sun-meatball0xe90a +
+
+ + uil-cloud-sun-rain-alt0xe90b +
+
+
+
+ + uil-cloud-sun-rain0xe90c +
+
+ + uil-cloud-sun-tear0xe90d +
+
+ + uil-cloud-sun0xe90e +
+
+ + uil-cloud-times0xe90f +
+
+
+
+ + uil-cloud-unlock0xe910 +
+
+ + uil-cloud-upload0xe911 +
+
+ + uil-cloud-wifi0xe912 +
+
+ + uil-cloud-wind0xe913 +
+
+
+
+ + uil-cloud0xe914 +
+
+ + uil-clouds0xe915 +
+
+ + uil-club0xe916 +
+
+ + uil-code0xe917 +
+
+
+
+ + uil-coffee0xe918 +
+
+ + uil-cog0xe919 +
+
+ + uil-coins0xe91a +
+
+ + uil-columns0xe91b +
+
+
+
+ + uil-comment-alt-block0xe91c +
+
+ + uil-comment-alt-chart-lines0xe91d +
+
+ + uil-comment-alt-check0xe91e +
+
+ + uil-comment-alt-dots0xe91f +
+
+
+
+ + uil-comment-alt-download0xe920 +
+
+ + uil-comment-alt-edit0xe921 +
+
+ + uil-comment-alt-exclamation0xe922 +
+
+ + uil-comment-alt-heart0xe923 +
+
+
+
+ + uil-comment-alt-image0xe924 +
+
+ + uil-comment-alt-info0xe925 +
+
+ + uil-comment-alt-lines0xe926 +
+
+ + uil-comment-alt-lock0xe927 +
+
+
+
+ + uil-comment-alt-medical0xe928 +
+
+ + uil-comment-alt-message0xe929 +
+
+ + uil-comment-alt-notes0xe92a +
+
+ + uil-comment-alt-plus0xe92b +
+
+
+
+ + uil-comment-alt-question0xe92c +
+
+ + uil-comment-alt-redo0xe92d +
+
+ + uil-comment-alt-search0xe92e +
+
+ + uil-comment-alt-share0xe92f +
+
+
+
+ + uil-comment-alt-shield0xe930 +
+
+ + uil-comment-alt-slash0xe931 +
+
+ + uil-comment-alt-upload0xe932 +
+
+ + uil-comment-alt-verify0xe933 +
+
+
+
+ + uil-comment-alt0xe934 +
+
+ + uil-comment-block0xe935 +
+
+ + uil-comment-chart-line0xe936 +
+
+ + uil-comment-check0xe937 +
+
+
+
+ + uil-comment-dots0xe938 +
+
+ + uil-comment-download0xe939 +
+
+ + uil-comment-edit0xe93a +
+
+ + uil-comment-exclamation0xe93b +
+
+
+
+ + uil-comment-heart0xe93c +
+
+ + uil-comment-image0xe93d +
+
+ + uil-comment-info-alt0xe93e +
+
+  + uil-comment-info0xe93f +
+
+
+
+ + uil-comment-lines0xe940 +
+
+ + uil-comment-lock0xe941 +
+
+ + uil-comment-medical0xe942 +
+
+ + uil-comment-message0xe943 +
+
+
+
+ + uil-comment-notes0xe944 +
+
+ + uil-comment-plus0xe945 +
+
+ + uil-comment-question0xe946 +
+
+ + uil-comment-redo0xe947 +
+
+
+
+ + uil-comment-search0xe948 +
+
+ + uil-comment-share0xe949 +
+
+ + uil-comment-shield0xe94a +
+
+ + uil-comment-slash0xe94b +
+
+
+
+ + uil-comment-upload0xe94c +
+
+ + uil-comment-verify0xe94d +
+
+ + uil-comment0xe94e +
+
+ + uil-comments-alt0xe94f +
+
+
+
+ + uil-comments0xe950 +
+
+ + uil-commnet-alt-slash0xe951 +
+
+ + uil-compact-disc0xe952 +
+
+ + uil-compass0xe953 +
+
+
+
+ + uil-compress-alt-left0xe954 +
+
+ + uil-compress-alt0xe955 +
+
+ + uil-compress-arrows0xe956 +
+
+ + uil-compress-lines0xe957 +
+
+
+
+ + uil-compress-point0xe958 +
+
+ + uil-compress-v0xe959 +
+
+ + uil-compress0xe95a +
+
+ + uil-computer-mouse0xe95b +
+
+
+
+ + uil-confused0xe95c +
+
+ + uil-constructor0xe95d +
+
+ + uil-copy-alt0xe95e +
+
+ + uil-copy-landscape0xe95f +
+
+
+
+ + uil-copy0xe960 +
+
+ + uil-copyright0xe961 +
+
+ + uil-corner-down-left0xe962 +
+
+ + uil-corner-down-right-alt0xe963 +
+
+
+
+ + uil-corner-down-right0xe964 +
+
+ + uil-corner-left-down0xe965 +
+
+ + uil-corner-right-down0xe966 +
+
+ + uil-corner-up-left-alt0xe967 +
+
+
+
+ + uil-corner-up-left0xe968 +
+
+ + uil-corner-up-right-alt0xe969 +
+
+ + uil-corner-up-right0xe96a +
+
+ + uil-creative-commons-pd-alt0xe96b +
+
+
+
+ + uil-creative-commons-pd0xe96c +
+
+ + uil-crockery0xe96d +
+
+ + uil-crop-alt-rotate-left0xe96e +
+
+ + uil-crop-alt-rotate-right0xe96f +
+
+
+
+ + uil-crop-alt0xe970 +
+
+ + uil-crosshair-alt0xe971 +
+
+ + uil-crosshair0xe972 +
+
+ + uil-crosshairs0xe973 +
+
+
+
+ + uil-cube0xe974 +
+
+ + uil-dashboard0xe975 +
+
+ + uil-data-sharing0xe976 +
+
+ + uil-database-alt0xe977 +
+
+
+
+ + uil-database0xe978 +
+
+ + uil-desert0xe979 +
+
+ + uil-desktop-alt-slash0xe97a +
+
+ + uil-desktop-alt0xe97b +
+
+
+
+ + uil-desktop-cloud-alt0xe97c +
+
+ + uil-desktop-slash0xe97d +
+
+ + uil-desktop0xe97e +
+
+  + uil-dialpad-alt0xe97f +
+
+
+
+ + uil-dialpad0xe980 +
+
+ + uil-diamond0xe981 +
+
+ + uil-diary-alt0xe982 +
+
+ + uil-diary0xe983 +
+
+
+
+ + uil-dice-five0xe984 +
+
+ + uil-dice-four0xe985 +
+
+ + uil-dice-one0xe986 +
+
+ + uil-dice-six0xe987 +
+
+
+
+ + uil-dice-three0xe988 +
+
+ + uil-dice-two0xe989 +
+
+ + uil-direction0xe98a +
+
+ + uil-directions0xe98b +
+
+
+
+ + uil-dizzy-meh0xe98c +
+
+ + uil-dna0xe98d +
+
+ + uil-document-layout-center0xe98e +
+
+ + uil-document-layout-left0xe98f +
+
+
+
+ + uil-document-layout-right0xe990 +
+
+ + uil-document0xe991 +
+
+ + uil-dollar-alt0xe992 +
+
+ + uil-dollar-sign-alt0xe993 +
+
+
+
+ + uil-dollar-sign0xe994 +
+
+ + uil-down-arrow0xe995 +
+
+ + uil-download-alt0xe996 +
+
+ + uil-dribbble0xe997 +
+
+
+
+ + uil-drill0xe998 +
+
+ + uil-dropbox0xe999 +
+
+ + uil-dumbbell0xe99a +
+
+ + uil-ear0xe99b +
+
+
+
+ + uil-edit-alt0xe99c +
+
+ + uil-edit0xe99d +
+
+ + uil-ellipsis-h0xe99e +
+
+ + uil-ellipsis-v0xe99f +
+
+
+
+ + uil-emoji0xe9a0 +
+
+ + uil-enter0xe9a1 +
+
+ + uil-entry0xe9a2 +
+
+ + uil-envelope-add0xe9a3 +
+
+
+
+ + uil-envelope-alt0xe9a4 +
+
+ + uil-envelope-block0xe9a5 +
+
+ + uil-envelope-bookmark0xe9a6 +
+
+ + uil-envelope-check0xe9a7 +
+
+
+
+ + uil-envelope-download-alt0xe9a8 +
+
+ + uil-envelope-download0xe9a9 +
+
+ + uil-envelope-edit0xe9aa +
+
+ + uil-envelope-exclamation0xe9ab +
+
+
+
+ + uil-envelope-heart0xe9ac +
+
+ + uil-envelope-info0xe9ad +
+
+ + uil-envelope-lock0xe9ae +
+
+ + uil-envelope-minus0xe9af +
+
+
+
+ + uil-envelope-open0xe9b0 +
+
+ + uil-envelope-question0xe9b1 +
+
+ + uil-envelope-receive0xe9b2 +
+
+ + uil-envelope-redo0xe9b3 +
+
+
+
+ + uil-envelope-search0xe9b4 +
+
+ + uil-envelope-send0xe9b5 +
+
+ + uil-envelope-share0xe9b6 +
+
+ + uil-envelope-shield0xe9b7 +
+
+
+
+ + uil-envelope-star0xe9b8 +
+
+ + uil-envelope-times0xe9b9 +
+
+ + uil-envelope-upload-alt0xe9ba +
+
+ + uil-envelope-upload0xe9bb +
+
+
+
+ + uil-envelope0xe9bc +
+
+ + uil-envelopes0xe9bd +
+
+ + uil-equal-circle0xe9be +
+
+  + uil-euro-circle0xe9bf +
+
+
+
+ + uil-euro0xe9c0 +
+
+ + uil-exchange-alt0xe9c1 +
+
+ + uil-exchange0xe9c2 +
+
+ + uil-exclamation-circle0xe9c3 +
+
+
+
+ + uil-exclamation-octagon0xe9c4 +
+
+ + uil-exclamation-triangle0xe9c5 +
+
+ + uil-exclude0xe9c6 +
+
+ + uil-exit0xe9c7 +
+
+
+
+ + uil-expand-alt0xe9c8 +
+
+ + uil-expand-arrows-alt0xe9c9 +
+
+ + uil-expand-arrows0xe9ca +
+
+ + uil-expand-from-corner0xe9cb +
+
+
+
+ + uil-expand-left0xe9cc +
+
+ + uil-expand-right0xe9cd +
+
+ + uil-export0xe9ce +
+
+ + uil-exposure-alt0xe9cf +
+
+
+
+ + uil-exposure-increase0xe9d0 +
+
+ + uil-external-link-alt0xe9d1 +
+
+ + uil-eye-slash0xe9d2 +
+
+ + uil-eye0xe9d3 +
+
+
+
+ + uil-facebook-f0xe9d4 +
+
+ + uil-facebook-messenger-alt0xe9d5 +
+
+ + uil-facebook-messenger0xe9d6 +
+
+ + uil-facebook0xe9d7 +
+
+
+
+ + uil-fahrenheit0xe9d8 +
+
+ + uil-fast-mail-alt0xe9d9 +
+
+ + uil-fast-mail0xe9da +
+
+ + uil-favorite0xe9db +
+
+
+
+ + uil-feedback0xe9dc +
+
+ + uil-file-alt0xe9dd +
+
+ + uil-file-blank0xe9de +
+
+ + uil-file-block-alt0xe9df +
+
+
+
+ + uil-file-bookmark-alt0xe9e0 +
+
+ + uil-file-check-alt0xe9e1 +
+
+ + uil-file-check0xe9e2 +
+
+ + uil-file-contract-dollar0xe9e3 +
+
+
+
+ + uil-file-copy-alt0xe9e4 +
+
+ + uil-file-download-alt0xe9e5 +
+
+ + uil-file-download0xe9e6 +
+
+ + uil-file-edit-alt0xe9e7 +
+
+
+
+ + uil-file-exclamation-alt0xe9e8 +
+
+ + uil-file-exclamation0xe9e9 +
+
+ + uil-file-heart0xe9ea +
+
+ + uil-file-info-alt0xe9eb +
+
+
+
+ + uil-file-landscape-alt0xe9ec +
+
+ + uil-file-landscape0xe9ed +
+
+ + uil-file-lanscape-slash0xe9ee +
+
+ + uil-file-lock-alt0xe9ef +
+
+
+
+ + uil-file-medical-alt0xe9f0 +
+
+ + uil-file-medical0xe9f1 +
+
+ + uil-file-minus-alt0xe9f2 +
+
+ + uil-file-minus0xe9f3 +
+
+
+
+ + uil-file-network0xe9f4 +
+
+ + uil-file-plus-alt0xe9f5 +
+
+ + uil-file-plus0xe9f6 +
+
+ + uil-file-question-alt0xe9f7 +
+
+
+
+ + uil-file-question0xe9f8 +
+
+ + uil-file-redo-alt0xe9f9 +
+
+ + uil-file-search-alt0xe9fa +
+
+ + uil-file-share-alt0xe9fb +
+
+
+
+ + uil-file-shield-alt0xe9fc +
+
+ + uil-file-slash0xe9fd +
+
+ + uil-file-times-alt0xe9fe +
+
+  + uil-file-times0xe9ff +
+
+
+
+ + uil-file-upload-alt0xea00 +
+
+ + uil-file-upload0xea01 +
+
+ + uil-file0xea02 +
+
+ + uil-files-landscapes-alt0xea03 +
+
+
+
+ + uil-files-landscapes0xea04 +
+
+ + uil-film0xea05 +
+
+ + uil-filter-slash0xea06 +
+
+ + uil-filter0xea07 +
+
+
+
+ + uil-fire0xea08 +
+
+ + uil-flask-potion0xea09 +
+
+ + uil-flask0xea0a +
+
+ + uil-flip-h-alt0xea0b +
+
+
+
+ + uil-flip-h0xea0c +
+
+ + uil-flip-v-alt0xea0d +
+
+ + uil-flip-v0xea0e +
+
+ + uil-flower0xea0f +
+
+
+
+ + uil-focus-add0xea10 +
+
+ + uil-focus-target0xea11 +
+
+ + uil-focus0xea12 +
+
+ + uil-folder-check0xea13 +
+
+
+
+ + uil-folder-download0xea14 +
+
+ + uil-folder-exclamation0xea15 +
+
+ + uil-folder-heart0xea16 +
+
+ + uil-folder-info0xea17 +
+
+
+
+ + uil-folder-lock0xea18 +
+
+ + uil-folder-medical0xea19 +
+
+ + uil-folder-minus0xea1a +
+
+ + uil-folder-network0xea1b +
+
+
+
+ + uil-folder-plus0xea1c +
+
+ + uil-folder-question0xea1d +
+
+ + uil-folder-slash0xea1e +
+
+ + uil-folder-times0xea1f +
+
+
+
+ + uil-folder-upload0xea20 +
+
+ + uil-folder0xea21 +
+
+ + uil-food0xea22 +
+
+ + uil-football-american0xea23 +
+
+
+
+ + uil-football-ball0xea24 +
+
+ + uil-football0xea25 +
+
+ + uil-forecastcloud-moon-tear0xea26 +
+
+ + uil-forwaded-call0xea27 +
+
+
+
+ + uil-forward0xea28 +
+
+ + uil-frown0xea29 +
+
+ + uil-game-structure0xea2a +
+
+ + uil-game0xea2b +
+
+
+
+ + uil-gift0xea2c +
+
+ + uil-github-alt0xea2d +
+
+ + uil-github0xea2e +
+
+ + uil-glass-martini-alt-slash0xea2f +
+
+
+
+ + uil-glass-martini-alt0xea30 +
+
+ + uil-glass-martini0xea31 +
+
+ + uil-glass-tea0xea32 +
+
+ + uil-glass0xea33 +
+
+
+
+ + uil-globe0xea34 +
+
+ + uil-gold0xea35 +
+
+ + uil-google-drive-alt0xea36 +
+
+ + uil-google-drive0xea37 +
+
+
+
+ + uil-google-hangouts-alt0xea38 +
+
+ + uil-google-hangouts0xea39 +
+
+ + uil-google-play0xea3a +
+
+ + uil-google0xea3b +
+
+
+
+ + uil-graduation-hat0xea3c +
+
+ + uil-graph-bar0xea3d +
+
+ + uil-grid0xea3e +
+
+  + uil-grids0xea3f +
+
+
+
+ + uil-grin-tongue-wink-alt0xea40 +
+
+ + uil-grin-tongue-wink0xea41 +
+
+ + uil-grin0xea42 +
+
+ + uil-grip-horizontal-line0xea43 +
+
+
+
+ + uil-hdd0xea44 +
+
+ + uil-headphones-alt0xea45 +
+
+ + uil-headphones0xea46 +
+
+ + uil-heart-alt0xea47 +
+
+
+
+ + uil-heart-medical0xea48 +
+
+ + uil-heart-rate0xea49 +
+
+ + uil-heart-sign0xea4a +
+
+ + uil-heart0xea4b +
+
+
+
+ + uil-heartbeat0xea4c +
+
+ + uil-history-alt0xea4d +
+
+ + uil-history0xea4e +
+
+ + uil-home-alt0xea4f +
+
+
+
+ + uil-home0xea50 +
+
+ + uil-horizontal-align-center0xea51 +
+
+ + uil-horizontal-align-left0xea52 +
+
+ + uil-horizontal-align-right0xea53 +
+
+
+
+ + uil-horizontal-distribution-center0xea54 +
+
+ + uil-horizontal-distribution-left0xea55 +
+
+ + uil-horizontal-distribution-right0xea56 +
+
+ + uil-hourglass0xea57 +
+
+
+
+ + uil-html3-alt0xea58 +
+
+ + uil-html30xea59 +
+
+ + uil-hunting0xea5a +
+
+ + uil-image-alt-slash0xea5b +
+
+
+
+ + uil-image-block0xea5c +
+
+ + uil-image-broken0xea5d +
+
+ + uil-image-check0xea5e +
+
+ + uil-image-download0xea5f +
+
+
+
+ + uil-image-edit0xea60 +
+
+ + uil-image-lock0xea61 +
+
+ + uil-image-minus0xea62 +
+
+ + uil-image-plus0xea63 +
+
+
+
+ + uil-image-question0xea64 +
+
+ + uil-image-redo0xea65 +
+
+ + uil-image-resize-landscape0xea66 +
+
+ + uil-image-resize-square0xea67 +
+
+
+
+ + uil-image-search0xea68 +
+
+ + uil-image-share0xea69 +
+
+ + uil-image-shield0xea6a +
+
+ + uil-image-slash0xea6b +
+
+
+
+ + uil-image-times0xea6c +
+
+ + uil-image-upload0xea6d +
+
+ + uil-image-v0xea6e +
+
+ + uil-image0xea6f +
+
+
+
+ + uil-images0xea70 +
+
+ + uil-import0xea71 +
+
+ + uil-incoming-call0xea72 +
+
+ + uil-info-circle0xea73 +
+
+
+
+ + uil-instagram-alt0xea74 +
+
+ + uil-instagram0xea75 +
+
+ + uil-intercom-alt0xea76 +
+
+ + uil-intercom0xea77 +
+
+
+
+ + uil-invoice0xea78 +
+
+ + uil-italic0xea79 +
+
+ + uil-jackhammer0xea7a +
+
+ + uil-java-script0xea7b +
+
+
+
+ + uil-kayak0xea7c +
+
+ + uil-key-skeleton-alt0xea7d +
+
+ + uil-key-skeleton0xea7e +
+
+  + uil-keyboard-alt0xea7f +
+
+
+
+ + uil-keyboard-hide0xea80 +
+
+ + uil-keyboard-show0xea81 +
+
+ + uil-keyboard0xea82 +
+
+ + uil-keyhole-circle0xea83 +
+
+
+
+ + uil-keyhole-square-full0xea84 +
+
+ + uil-keyhole-square0xea85 +
+
+ + uil-kid0xea86 +
+
+ + uil-label-alt0xea87 +
+
+
+
+ + uil-label0xea88 +
+
+ + uil-lamp0xea89 +
+
+ + uil-laptop-cloud0xea8a +
+
+ + uil-laptop0xea8b +
+
+
+
+ + uil-laughing0xea8c +
+
+ + uil-layer-group-slash0xea8d +
+
+ + uil-layer-group0xea8e +
+
+ + uil-layers-alt0xea8f +
+
+
+
+ + uil-layers-slash0xea90 +
+
+ + uil-layers0xea91 +
+
+ + uil-left-arrow-from-left0xea92 +
+
+ + uil-left-arrow-to-left0xea93 +
+
+
+
+ + uil-left-indent-alt0xea94 +
+
+ + uil-left-indent0xea95 +
+
+ + uil-left-to-right-text-direction0xea96 +
+
+ + uil-life-ring0xea97 +
+
+
+
+ + uil-lightbulb-alt0xea98 +
+
+ + uil-lightbulb0xea99 +
+
+ + uil-line-alt0xea9a +
+
+ + uil-line-spacing0xea9b +
+
+
+
+ + uil-line0xea9c +
+
+ + uil-link-alt0xea9d +
+
+ + uil-link-broken0xea9e +
+
+ + uil-link-h0xea9f +
+
+
+
+ + uil-link0xeaa0 +
+
+ + uil-linkedin-alt0xeaa1 +
+
+ + uil-linkedin0xeaa2 +
+
+ + uil-list-ui-alt0xeaa3 +
+
+
+
+ + uil-list-ul0xeaa4 +
+
+ + uil-location-arrow-alt0xeaa5 +
+
+ + uil-location-arrow0xeaa6 +
+
+ + uil-location-pin-alt0xeaa7 +
+
+
+
+ + uil-location-point0xeaa8 +
+
+ + uil-location0xeaa9 +
+
+ + uil-lock-access0xeaaa +
+
+ + uil-lock-alt0xeaab +
+
+
+
+ + uil-lock-open-alt0xeaac +
+
+ + uil-lock-slash0xeaad +
+
+ + uil-lock0xeaae +
+
+ + uil-mailbox-alt0xeaaf +
+
+
+
+ + uil-mailbox0xeab0 +
+
+ + uil-map-marker-alt0xeab1 +
+
+ + uil-map-marker-edit0xeab2 +
+
+ + uil-map-marker-info0xeab3 +
+
+
+
+ + uil-map-marker-minus0xeab4 +
+
+ + uil-map-marker-plus0xeab5 +
+
+ + uil-map-marker-question0xeab6 +
+
+ + uil-map-marker-shield0xeab7 +
+
+
+
+ + uil-map-marker-slash0xeab8 +
+
+ + uil-map-marker0xeab9 +
+
+ + uil-map-pin-alt0xeaba +
+
+ + uil-map-pin0xeabb +
+
+
+
+ + uil-map0xeabc +
+
+ + uil-mars0xeabd +
+
+ + uil-master-card0xeabe +
+
+  + uil-maximize-left0xeabf +
+
+
+
+ + uil-medal0xeac0 +
+
+ + uil-medical-drip0xeac1 +
+
+ + uil-medical-square-full0xeac2 +
+
+ + uil-medical-square0xeac3 +
+
+
+
+ + uil-medical0xeac4 +
+
+ + uil-medium-m0xeac5 +
+
+ + uil-medkit0xeac6 +
+
+ + uil-meeting-board0xeac7 +
+
+
+
+ + uil-megaphone0xeac8 +
+
+ + uil-meh-alt0xeac9 +
+
+ + uil-meh-closed-eye0xeaca +
+
+ + uil-meh0xeacb +
+
+
+
+ + uil-message0xeacc +
+
+ + uil-metro0xeacd +
+
+ + uil-microphone-slash0xeace +
+
+ + uil-microphone0xeacf +
+
+
+
+ + uil-minus-circle0xead0 +
+
+ + uil-minus-path0xead1 +
+
+ + uil-minus-square-full0xead2 +
+
+ + uil-minus-square0xead3 +
+
+
+
+ + uil-minus0xead4 +
+
+ + uil-missed-call0xead5 +
+
+ + uil-mobey-bill-slash0xead6 +
+
+ + uil-mobile-android-alt0xead7 +
+
+
+
+ + uil-mobile-android0xead8 +
+
+ + uil-mobile-vibrate0xead9 +
+
+ + uil-modem0xeada +
+
+ + uil-money-bill-stack0xeadb +
+
+
+
+ + uil-money-bill0xeadc +
+
+ + uil-money-insert0xeadd +
+
+ + uil-money-stack0xeade +
+
+ + uil-money-withdraw0xeadf +
+
+
+
+ + uil-money-withdrawal0xeae0 +
+
+ + uil-moneybag-alt0xeae1 +
+
+ + uil-moneybag0xeae2 +
+
+ + uil-monitor-heart-rate0xeae3 +
+
+
+
+ + uil-monitor0xeae4 +
+
+ + uil-moon-eclipse0xeae5 +
+
+ + uil-moon0xeae6 +
+
+ + uil-moonset0xeae7 +
+
+
+
+ + uil-mountains-sun0xeae8 +
+
+ + uil-mountains0xeae9 +
+
+ + uil-mouse-alt0xeaea +
+
+ + uil-mouse0xeaeb +
+
+
+
+ + uil-multiply0xeaec +
+
+ + uil-music-note0xeaed +
+
+ + uil-music-tune-slash0xeaee +
+
+ + uil-music0xeaef +
+
+
+
+ + uil-n-a0xeaf0 +
+
+ + uil-navigator0xeaf1 +
+
+ + uil-nerd0xeaf2 +
+
+ + uil-newspaper0xeaf3 +
+
+
+
+ + uil-ninja0xeaf4 +
+
+ + uil-no-entry0xeaf5 +
+
+ + uil-notebooks0xeaf6 +
+
+ + uil-notes0xeaf7 +
+
+
+
+ + uil-object-group0xeaf8 +
+
+ + uil-object-ungroup0xeaf9 +
+
+ + uil-octagon0xeafa +
+
+ + uil-opera-alt0xeafb +
+
+
+
+ + uil-opera0xeafc +
+
+ + uil-outgoing-call0xeafd +
+
+ + uil-package0xeafe +
+
+  + uil-padlock0xeaff +
+
+
+
+ + uil-paint-tool0xeb00 +
+
+ + uil-palette0xeb01 +
+
+ + uil-panorama-h-alt0xeb02 +
+
+ + uil-panorama-h0xeb03 +
+
+
+
+ + uil-panorama-v0xeb04 +
+
+ + uil-paperclip0xeb05 +
+
+ + uil-paragraph0xeb06 +
+
+ + uil-parcel0xeb07 +
+
+
+
+ + uil-parking-square0xeb08 +
+
+ + uil-pathfinder-unite0xeb09 +
+
+ + uil-pathfinder0xeb0a +
+
+ + uil-pause-circle0xeb0b +
+
+
+
+ + uil-pause0xeb0c +
+
+ + uil-paypal0xeb0d +
+
+ + uil-pen0xeb0e +
+
+ + uil-pentagon0xeb0f +
+
+
+
+ + uil-percentage0xeb10 +
+
+ + uil-phone-alt0xeb11 +
+
+ + uil-phone-pause0xeb12 +
+
+ + uil-phone-slash0xeb13 +
+
+
+
+ + uil-phone-times0xeb14 +
+
+ + uil-phone-volume0xeb15 +
+
+ + uil-phone0xeb16 +
+
+ + uil-picture0xeb17 +
+
+
+
+ + uil-plane-arrival0xeb18 +
+
+ + uil-plane-departure0xeb19 +
+
+ + uil-plane-fly0xeb1a +
+
+ + uil-plane0xeb1b +
+
+
+
+ + uil-play-circle0xeb1c +
+
+ + uil-play0xeb1d +
+
+ + uil-plug0xeb1e +
+
+ + uil-plus-circle0xeb1f +
+
+
+
+ + uil-plus-square0xeb20 +
+
+ + uil-plus0xeb21 +
+
+ + uil-podium0xeb22 +
+
+ + uil-polygon0xeb23 +
+
+
+
+ + uil-post-stamp0xeb24 +
+
+ + uil-postcard0xeb25 +
+
+ + uil-pound-circle0xeb26 +
+
+ + uil-pound0xeb27 +
+
+
+
+ + uil-power0xeb28 +
+
+ + uil-prescription-bottle0xeb29 +
+
+ + uil-presentation-check0xeb2a +
+
+ + uil-presentation-edit0xeb2b +
+
+
+
+ + uil-presentation-line0xeb2c +
+
+ + uil-presentation-lines-alt0xeb2d +
+
+ + uil-presentation-minus0xeb2e +
+
+ + uil-presentation-play0xeb2f +
+
+
+
+ + uil-presentation-plus0xeb30 +
+
+ + uil-presentation-times0xeb31 +
+
+ + uil-presentation0xeb32 +
+
+ + uil-previous0xeb33 +
+
+
+
+ + uil-pricetag-alt0xeb34 +
+
+ + uil-print-slash0xeb35 +
+
+ + uil-print0xeb36 +
+
+ + uil-process0xeb37 +
+
+
+
+ + uil-processor0xeb38 +
+
+ + uil-pump0xeb39 +
+
+ + uil-puzzle-piece0xeb3a +
+
+ + uil-question-circle0xeb3b +
+
+
+
+ + uil-raddit-alien-alt0xeb3c +
+
+ + uil-rainbow0xeb3d +
+
+ + uil-raindrops-alt0xeb3e +
+
+  + uil-raindrops0xeb3f +
+
+
+
+ + uil-react0xeb40 +
+
+ + uil-receipt-alt0xeb41 +
+
+ + uil-receipt0xeb42 +
+
+ + uil-record-audio0xeb43 +
+
+
+
+ + uil-reddit-alien-alt0xeb44 +
+
+ + uil-redo0xeb45 +
+
+ + uil-refresh0xeb46 +
+
+ + uil-registered0xeb47 +
+
+
+
+ + uil-repeat0xeb48 +
+
+ + uil-restaurant0xeb49 +
+
+ + uil-right-indent-alt0xeb4a +
+
+ + uil-right-to-left-text-direction0xeb4b +
+
+
+
+ + uil-robot0xeb4c +
+
+ + uil-rope-way0xeb4d +
+
+ + uil-rotate-3600xeb4e +
+
+ + uil-rss-alt0xeb4f +
+
+
+
+ + uil-rss-interface0xeb50 +
+
+ + uil-rss0xeb51 +
+
+ + uil-ruler-combined0xeb52 +
+
+ + uil-ruler0xeb53 +
+
+
+
+ + uil-sad-cry0xeb54 +
+
+ + uil-sad-crying0xeb55 +
+
+ + uil-sad-dizzy0xeb56 +
+
+ + uil-sad-squint0xeb57 +
+
+
+
+ + uil-sad0xeb58 +
+
+ + uil-scaling-left0xeb59 +
+
+ + uil-scaling-right0xeb5a +
+
+ + uil-scenery0xeb5b +
+
+
+
+ + uil-schedule0xeb5c +
+
+ + uil-science0xeb5d +
+
+ + uil-screw0xeb5e +
+
+ + uil-scroll-h0xeb5f +
+
+
+
+ + uil-scroll0xeb60 +
+
+ + uil-search-alt0xeb61 +
+
+ + uil-search-minus0xeb62 +
+
+ + uil-search-plus0xeb63 +
+
+
+
+ + uil-search0xeb64 +
+
+ + uil-selfie0xeb65 +
+
+ + uil-server-alt0xeb66 +
+
+ + uil-server-connection0xeb67 +
+
+
+
+ + uil-server-network-alt0xeb68 +
+
+ + uil-server-network0xeb69 +
+
+ + uil-server0xeb6a +
+
+ + uil-servers0xeb6b +
+
+
+
+ + uil-servicemark0xeb6c +
+
+ + uil-share-alt0xeb6d +
+
+ + uil-shield-check0xeb6e +
+
+ + uil-shield-exclamation0xeb6f +
+
+
+
+ + uil-shield-question0xeb70 +
+
+ + uil-shield-slash0xeb71 +
+
+ + uil-shield0xeb72 +
+
+ + uil-ship0xeb73 +
+
+
+
+ + uil-shop0xeb74 +
+
+ + uil-shopping-basket0xeb75 +
+
+ + uil-shopping-cart-alt0xeb76 +
+
+ + uil-shopping-trolley0xeb77 +
+
+
+
+ + uil-shovel0xeb78 +
+
+ + uil-shrink0xeb79 +
+
+ + uil-shuffle0xeb7a +
+
+ + uil-shutter-alt0xeb7b +
+
+
+
+ + uil-shutter0xeb7c +
+
+ + uil-sick0xeb7d +
+
+ + uil-sigma0xeb7e +
+
+  + uil-sign-alt0xeb7f +
+
+
+
+ + uil-sign-in-alt0xeb80 +
+
+ + uil-sign-left0xeb81 +
+
+ + uil-sign-out-alt0xeb82 +
+
+ + uil-sign-right0xeb83 +
+
+
+
+ + uil-signal-alt-30xeb84 +
+
+ + uil-signal-alt0xeb85 +
+
+ + uil-signal0xeb86 +
+
+ + uil-silence0xeb87 +
+
+
+
+ + uil-silent-squint0xeb88 +
+
+ + uil-sim-card0xeb89 +
+
+ + uil-sitemap0xeb8a +
+
+ + uil-skip-forward-alt0xeb8b +
+
+
+
+ + uil-skip-forward-circle0xeb8c +
+
+ + uil-skip-forward0xeb8d +
+
+ + uil-skype-alt0xeb8e +
+
+ + uil-skype0xeb8f +
+
+
+
+ + uil-slack-alt0xeb90 +
+
+ + uil-slack0xeb91 +
+
+ + uil-sliders-v-alt0xeb92 +
+
+ + uil-sliders-v0xeb93 +
+
+
+
+ + uil-smile-beam0xeb94 +
+
+ + uil-smile-dizzy0xeb95 +
+
+ + uil-smile-squint-wink-alt0xeb96 +
+
+ + uil-smile-squint-wink0xeb97 +
+
+
+
+ + uil-smile-wink-alt0xeb98 +
+
+ + uil-smile-wink0xeb99 +
+
+ + uil-smile0xeb9a +
+
+ + uil-snapchat-alt0xeb9b +
+
+
+
+ + uil-snapchat-ghost0xeb9c +
+
+ + uil-snapchat-square0xeb9d +
+
+ + uil-snow-flake0xeb9e +
+
+ + uil-snowflake-alt0xeb9f +
+
+
+
+ + uil-snowflake0xeba0 +
+
+ + uil-sort-amount-down0xeba1 +
+
+ + uil-sort-amount-up0xeba2 +
+
+ + uil-sort0xeba3 +
+
+
+
+ + uil-sorting0xeba4 +
+
+ + uil-space-key0xeba5 +
+
+ + uil-spade0xeba6 +
+
+ + uil-sperms0xeba7 +
+
+
+
+ + uil-spin0xeba8 +
+
+ + uil-sport0xeba9 +
+
+ + uil-square-full0xebaa +
+
+ + uil-square-shape0xebab +
+
+
+
+ + uil-square0xebac +
+
+ + uil-squint0xebad +
+
+ + uil-star-half-alt0xebae +
+
+ + uil-star0xebaf +
+
+
+
+ + uil-step-backward-alt0xebb0 +
+
+ + uil-step-backward-circle0xebb1 +
+
+ + uil-step-backward0xebb2 +
+
+ + uil-step-forward0xebb3 +
+
+
+
+ + uil-stop-circle0xebb4 +
+
+ + uil-stopwatch-slash0xebb5 +
+
+ + uil-stopwatch0xebb6 +
+
+ + uil-store-alt0xebb7 +
+
+
+
+ + uil-store0xebb8 +
+
+ + uil-streering0xebb9 +
+
+ + uil-stretcher0xebba +
+
+ + uil-subject0xebbb +
+
+
+
+ + uil-subway-alt0xebbc +
+
+ + uil-subway0xebbd +
+
+ + uil-suitcase-alt0xebbe +
+
+  + uil-suitcase0xebbf +
+
+
+
+ + uil-sun0xebc0 +
+
+ + uil-sunset0xebc1 +
+
+ + uil-surprise0xebc2 +
+
+ + uil-swatchbook0xebc3 +
+
+
+
+ + uil-swiggy0xebc4 +
+
+ + uil-swimmer0xebc5 +
+
+ + uil-symbol0xebc6 +
+
+ + uil-sync-exclamation0xebc7 +
+
+
+
+ + uil-sync-slash0xebc8 +
+
+ + uil-sync0xebc9 +
+
+ + uil-syringe0xebca +
+
+ + uil-table0xebcb +
+
+
+
+ + uil-tablet0xebcc +
+
+ + uil-tablets0xebcd +
+
+ + uil-tachometer-fast0xebce +
+
+ + uil-tag-alt0xebcf +
+
+
+
+ + uil-tag0xebd0 +
+
+ + uil-tape0xebd1 +
+
+ + uil-taxi0xebd2 +
+
+ + uil-tear0xebd3 +
+
+
+
+ + uil-technology0xebd4 +
+
+ + uil-telegram-alt0xebd5 +
+
+ + uil-telegram0xebd6 +
+
+ + uil-telescope0xebd7 +
+
+
+
+ + uil-temperature-empty0xebd8 +
+
+ + uil-temperature-half0xebd9 +
+
+ + uil-temperature-minus0xebda +
+
+ + uil-temperature-plus0xebdb +
+
+
+
+ + uil-temperature-quarter0xebdc +
+
+ + uil-temperature-three-quarter0xebdd +
+
+ + uil-temperature0xebde +
+
+ + uil-text-fields0xebdf +
+
+
+
+ + uil-text-size0xebe0 +
+
+ + uil-text-strike-through0xebe1 +
+
+ + uil-text0xebe2 +
+
+ + uil-th-large0xebe3 +
+
+
+
+ + uil-th-slash0xebe4 +
+
+ + uil-th0xebe5 +
+
+ + uil-thermometer0xebe6 +
+
+ + uil-thumbs-down0xebe7 +
+
+
+
+ + uil-thumbs-up0xebe8 +
+
+ + uil-thunderstorm-moon0xebe9 +
+
+ + uil-thunderstorm-sun0xebea +
+
+ + uil-thunderstorm0xebeb +
+
+
+
+ + uil-ticket0xebec +
+
+ + uil-times-circle0xebed +
+
+ + uil-times-square0xebee +
+
+ + uil-times0xebef +
+
+
+
+ + uil-toggle-off0xebf0 +
+
+ + uil-toggle-on0xebf1 +
+
+ + uil-top-arrow-from-top0xebf2 +
+
+ + uil-top-arrow-to-top0xebf3 +
+
+
+
+ + uil-tornado0xebf4 +
+
+ + uil-trademark-circle0xebf5 +
+
+ + uil-trademark0xebf6 +
+
+ + uil-traffic-barrier0xebf7 +
+
+
+
+ + uil-trash-alt0xebf8 +
+
+ + uil-trash0xebf9 +
+
+ + uil-trees0xebfa +
+
+ + uil-triangle0xebfb +
+
+
+
+ + uil-trophy0xebfc +
+
+ + uil-trowel0xebfd +
+
+ + uil-truck-case0xebfe +
+
+  + uil-truck-loading0xebff +
+
+
+
+ + uil-truck0xec00 +
+
+ + uil-tumblr-alt0xec01 +
+
+ + uil-tumblr-square0xec02 +
+
+ + uil-tumblr0xec03 +
+
+
+
+ + uil-tv-retro-slash0xec04 +
+
+ + uil-tv-retro0xec05 +
+
+ + uil-twitter-alt0xec06 +
+
+ + uil-twitter0xec07 +
+
+
+
+ + uil-umbrella0xec08 +
+
+ + uil-unamused0xec09 +
+
+ + uil-underline0xec0a +
+
+ + uil-university0xec0b +
+
+
+
+ + uil-unlock-alt0xec0c +
+
+ + uil-unlock0xec0d +
+
+ + uil-upload-alt0xec0e +
+
+ + uil-upload0xec0f +
+
+
+
+ + uil-usd-circle0xec10 +
+
+ + uil-usd-square0xec11 +
+
+ + uil-user-check0xec12 +
+
+ + uil-user-circle0xec13 +
+
+
+
+ + uil-user-exclamation0xec14 +
+
+ + uil-user-hard-hat0xec15 +
+
+ + uil-user-minus0xec16 +
+
+ + uil-user-plus0xec17 +
+
+
+
+ + uil-user-square0xec18 +
+
+ + uil-user-times0xec19 +
+
+ + uil-user0xec1a +
+
+ + uil-users-alt0xec1b +
+
+
+
+ + uil-utensils-alt0xec1c +
+
+ + uil-utensils0xec1d +
+
+ + uil-vector-square-alt0xec1e +
+
+ + uil-vector-square0xec1f +
+
+
+
+ + uil-venus0xec20 +
+
+ + uil-vertical-align-bottom0xec21 +
+
+ + uil-vertical-align-center0xec22 +
+
+ + uil-vertical-align-top0xec23 +
+
+
+
+ + uil-vertical-distribute-bottom0xec24 +
+
+ + uil-vertical-distribution-center0xec25 +
+
+ + uil-vertical-distribution-top0xec26 +
+
+ + uil-video-slash0xec27 +
+
+
+
+ + uil-video0xec28 +
+
+ + uil-visual-studio0xec29 +
+
+ + uil-vk-alt0xec2a +
+
+ + uil-vk0xec2b +
+
+
+
+ + uil-voicemail-rectangle0xec2c +
+
+ + uil-voicemail0xec2d +
+
+ + uil-volleyball0xec2e +
+
+ + uil-volume-down0xec2f +
+
+
+
+ + uil-volume-mute0xec30 +
+
+ + uil-volume-off0xec31 +
+
+ + uil-volume-up0xec32 +
+
+ + uil-volume0xec33 +
+
+
+
+ + uil-vuejs-alt0xec34 +
+
+ + uil-vuejs0xec35 +
+
+ + uil-wall0xec36 +
+
+ + uil-wallet0xec37 +
+
+
+
+ + uil-watch-alt0xec38 +
+
+ + uil-watch0xec39 +
+
+ + uil-water-drop-slash0xec3a +
+
+ + uil-water-glass0xec3b +
+
+
+
+ + uil-water0xec3c +
+
+ + uil-web-grid-alt0xec3d +
+
+ + uil-web-grid0xec3e +
+
+  + uil-web-section-alt0xec3f +
+
+
+
+ + uil-web-section0xec40 +
+
+ + uil-webcam0xec41 +
+
+ + uil-weight0xec42 +
+
+ + uil-whatsapp0xec43 +
+
+
+
+ + uil-wheel-barrow0xec44 +
+
+ + uil-wheelchair-alt0xec45 +
+
+ + uil-wheelchair0xec46 +
+
+ + uil-wifi-router0xec47 +
+
+
+
+ + uil-wifi-slash0xec48 +
+
+ + uil-wifi0xec49 +
+
+ + uil-wind-moon0xec4a +
+
+ + uil-wind-sun0xec4b +
+
+
+
+ + uil-wind0xec4c +
+
+ + uil-window-grid0xec4d +
+
+ + uil-window-maximize0xec4e +
+
+ + uil-window-restore0xec4f +
+
+
+
+ + uil-window-section0xec50 +
+
+ + uil-window0xec51 +
+
+ + uil-windsock0xec52 +
+
+ + uil-wrap-text0xec53 +
+
+
+
+ + uil-wrench0xec54 +
+
+ + uil-yellow0xec55 +
+
+ + uil-yen-circle0xec56 +
+
+ + uil-yen0xec57 +
+
+
+
+ + uil-yin-yang0xec58 +
+
+ + uil-youtube-alt0xec59 +
+
+ + uil-youtube0xec5a +
+
+
+ + + diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/line.json b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/line.json new file mode 100644 index 00000000..b86b19a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/line.json @@ -0,0 +1 @@ +[{"uuid":"95b86b40-334c-11e9-8121-0242ac140003","id":1237533,"name":"0-plus","svg":"svg/line/0-plus.svg","category":"User Interface","style":"Line","tags":["age-restriction","age-limit","age","restriction","zero-plus","0-plus"],"code":60406,"unicode":"ebf6","pro":false},{"uuid":"95b843f0-334c-11e9-ae09-0242ac140003","id":1237527,"name":"10-plus","svg":"svg/line/10-plus.svg","category":"User Interface","style":"Line","tags":["age-restriction","age-limit","age","restriction","ten-plus","10-plus"],"code":60400,"unicode":"ebf0","pro":false},{"uuid":"95b84be0-334c-11e9-8d5b-0242ac140003","id":1237528,"name":"12-plus","svg":"svg/line/12-plus.svg","category":"User Interface","style":"Line","tags":["age-restriction","age-limit","age","restriction","twelve-plus","12-plus"],"code":60398,"unicode":"ebee","pro":false},{"uuid":"95b85250-334c-11e9-97f0-0242ac140003","id":1237529,"name":"13-plus","svg":"svg/line/13-plus.svg","category":"User Interface","style":"Line","tags":["age-restriction","age-limit","age","restriction","thirteen-plus","13-plus"],"code":60402,"unicode":"ebf2","pro":false},{"uuid":"95b85890-334c-11e9-8188-0242ac140003","id":1237530,"name":"16-plus","svg":"svg/line/16-plus.svg","category":"User Interface","style":"Line","tags":["age-restriction","age-limit","age","sixteen-plus","restriction","16-plus"],"code":60401,"unicode":"ebf1","pro":false},{"uuid":"95b86500-334c-11e9-a81d-0242ac140003","id":1237532,"name":"17-plus","svg":"svg/line/17-plus.svg","category":"User Interface","style":"Line","tags":["age-restriction","age-limit","age","restriction","seventeen-plus","17-plus"],"code":60404,"unicode":"ebf4","pro":false},{"uuid":"95b88a80-334c-11e9-8e8f-0242ac140003","id":1237538,"name":"18-plus","svg":"svg/line/18-plus.svg","category":"User Interface","style":"Line","tags":["age-restriction","age-limit","age","restriction","eighteen-plus","18-plus"],"code":60410,"unicode":"ebfa","pro":false},{"uuid":"95b85ed0-334c-11e9-acde-0242ac140003","id":1237531,"name":"21-plus","svg":"svg/line/21-plus.svg","category":"User Interface","style":"Line","tags":["age-restriction","age-limit","age","restriction","twenty-one-plus","21-plus"],"code":60403,"unicode":"ebf3","pro":false},{"uuid":"95b87160-334c-11e9-8cc9-0242ac140003","id":1237534,"name":"3-plus","svg":"svg/line/3-plus.svg","category":"User Interface","style":"Line","tags":["age-restriction","age-limit","age","restriction","three-plus","3-plus"],"code":60407,"unicode":"ebf7","pro":false},{"uuid":"db0d7860-3507-11e9-bcb6-0242ac140003","id":1239450,"name":"500px","svg":"svg/line/500px.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","500px"],"code":60429,"unicode":"ec0d","pro":false},{"uuid":"95b87760-334c-11e9-b144-0242ac140003","id":1237535,"name":"6-plus","svg":"svg/line/6-plus.svg","category":"User Interface","style":"Line","tags":["age-restriction","age-limit","age","restriction","six-plus","6-plus"],"code":60405,"unicode":"ebf5","pro":false},{"uuid":"9cddda70-2524-11e9-af66-0242ac140003","id":1214169,"name":"abacus","svg":"svg/line/abacus.svg","category":"Education","style":"Line","tags":["mathemetics-calculation","calculation","mathemetics","maths","calculating-equipment","abacus"],"code":59662,"unicode":"e90e","pro":false},{"uuid":"dcdd4b00-251f-11e9-a4fc-0242ac140003","id":1214007,"name":"accessible-icon-alt","svg":"svg/line/accessible-icon-alt.svg","category":"Sign And Symbol","style":"Line","tags":["handicap-symbol","patient","disability","wheelchair","accessible-icon-alt"],"code":59501,"unicode":"e86d","pro":false},{"uuid":"5b2e8b50-2529-11e9-8adf-0242ac140003","id":1214367,"name":"adjust","svg":"svg/line/adjust.svg","category":"User Interface","style":"Line","tags":["contrast","brightness","adjust"],"code":59856,"unicode":"e9d0","pro":false},{"uuid":"5b2e4dc0-2529-11e9-b5fc-0242ac140003","id":1214359,"name":"adjust-alt","svg":"svg/line/adjust-alt.svg","category":"User Interface","style":"Line","tags":["adjust","contrast","brightness","adjust-alt"],"code":59848,"unicode":"e9c8","pro":false},{"uuid":"5b2e40e0-2529-11e9-8b89-0242ac140003","id":1214358,"name":"adjust-circle","svg":"svg/line/adjust-circle.svg","category":"User Interface","style":"Line","tags":["adjust","contrast","brightness","adjust-circle"],"code":59849,"unicode":"e9c9","pro":false},{"uuid":"5b2e3510-2529-11e9-b70a-0242ac140003","id":1214357,"name":"adjust-half","svg":"svg/line/adjust-half.svg","category":"User Interface","style":"Line","tags":["adjust","contrast","brightness","adjust-half"],"code":59844,"unicode":"e9c4","pro":false},{"uuid":"db0d5520-3507-11e9-a655-0242ac140003","id":1239447,"name":"adobe","svg":"svg/line/adobe.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","adobe"],"code":60466,"unicode":"ec32","pro":false},{"uuid":"3e2c8800-5c4c-11e9-bd8e-0242ac140003","id":1306064,"name":"adobe-alt","svg":"svg/line/adobe-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","adobe-alt"],"code":60451,"unicode":"ec23","pro":false},{"uuid":"ba8dc400-2546-11e9-a652-0242ac140003","id":1215936,"name":"airplay","svg":"svg/line/airplay.svg","category":"Multimedia","style":"Line","tags":["screen-mirroring","screen","airplay"],"code":60160,"unicode":"eb00","pro":false},{"uuid":"125745e0-254d-11e9-80cb-0242ac140003","id":1216338,"name":"align","svg":"svg/line/align.svg","category":"Content","style":"Line","tags":["right-indent","right-alignment","alignment","align"],"code":60324,"unicode":"eba4","pro":false},{"uuid":"12569cd0-254d-11e9-bb5b-0242ac140003","id":1216327,"name":"align-alt","svg":"svg/line/align-alt.svg","category":"Content","style":"Line","tags":["alignment","align","text-adjustment","text-alignment","align-alt"],"code":60314,"unicode":"eb9a","pro":false},{"uuid":"12567c20-254d-11e9-afe8-0242ac140003","id":1216324,"name":"align-center","svg":"svg/line/align-center.svg","category":"Content","style":"Line","tags":["center-alignment","align","alignment","text-formating","text-format","center","align-center"],"code":60308,"unicode":"eb94","pro":false},{"uuid":"1256b010-254d-11e9-a1fc-0242ac140003","id":1216329,"name":"align-center-alt","svg":"svg/line/align-center-alt.svg","category":"Content","style":"Line","tags":["align-center","alignment","center","text-align","align-center-alt"],"code":60310,"unicode":"eb96","pro":false},{"uuid":"bd865500-2546-11e9-8857-0242ac140003","id":1216129,"name":"align-center-h","svg":"svg/line/align-center-h.svg","category":"Arrows","style":"Line","tags":["horizontal-align-center","horizontal-alignment","alignment","arrow","align-center-h"],"code":60203,"unicode":"eb2b","pro":false},{"uuid":"12567200-254d-11e9-be74-0242ac140003","id":1216323,"name":"align-center-justify","svg":"svg/line/align-center-justify.svg","category":"Content","style":"Line","tags":["center-alignment","alignment","center","align-center-justify"],"code":60313,"unicode":"eb99","pro":false},{"uuid":"bd875740-2546-11e9-b53d-0242ac140003","id":1216173,"name":"align-center-v","svg":"svg/line/align-center-v.svg","category":"Arrows","style":"Line","tags":["vertical-align-center","vertical-alignment","alignment","arrow","align-center-v"],"code":60245,"unicode":"eb55","pro":false},{"uuid":"1257e270-254d-11e9-aae4-0242ac140003","id":1216352,"name":"align-justify","svg":"svg/line/align-justify.svg","category":"Content","style":"Line","tags":["justify-alignment","justify","align","text-formating","text-format","alignment","align-justify"],"code":60332,"unicode":"ebac","pro":false},{"uuid":"1257cd20-254d-11e9-81d3-0242ac140003","id":1216350,"name":"align-left","svg":"svg/line/align-left.svg","category":"Content","style":"Line","tags":["left-alignment","left-align","alignment","align-left"],"code":60381,"unicode":"ebdd","pro":false},{"uuid":"12572e50-254d-11e9-81c1-0242ac140003","id":1216336,"name":"align-left-justify","svg":"svg/line/align-left-justify.svg","category":"Content","style":"Line","tags":["subject","left-alignment","left-align","alignment","text-formating","align-left-justify"],"code":60318,"unicode":"eb9e","pro":false},{"uuid":"1256a680-254d-11e9-a560-0242ac140003","id":1216328,"name":"align-letter-right","svg":"svg/line/align-letter-right.svg","category":"Content","style":"Line","tags":["align","alignment","align-right","align-letter-right"],"code":60311,"unicode":"eb97","pro":false},{"uuid":"12577420-254d-11e9-bbca-0242ac140003","id":1216342,"name":"align-right","svg":"svg/line/align-right.svg","category":"Content","style":"Line","tags":["right-alignment","right-align","alignment","align","align-right"],"code":60326,"unicode":"eba6","pro":false},{"uuid":"125768e0-254d-11e9-912b-0242ac140003","id":1216341,"name":"align-right-justify","svg":"svg/line/align-right-justify.svg","category":"Content","style":"Line","tags":["right-alignment","right-align","alignment","align-right-justify"],"code":60323,"unicode":"eba3","pro":false},{"uuid":"3e2c8250-5c4c-11e9-93e3-0242ac140003","id":1306063,"name":"amazon","svg":"svg/line/amazon.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","amazon"],"code":60447,"unicode":"ec1f","pro":false},{"uuid":"f5196f40-2524-11e9-ae18-0242ac140003","id":1214174,"name":"ambulance","svg":"svg/line/ambulance.svg","category":"Medical","style":"Line","tags":["medical-vehicle","medical-transportation","ambulance"],"code":59655,"unicode":"e907","pro":false},{"uuid":"9d263750-2523-11e9-9c93-0242ac140003","id":1214081,"name":"analysis","svg":"svg/line/analysis.svg","category":"Business","style":"Line","tags":["show-chart","growth-graph","graph","trading","analysis"],"code":59569,"unicode":"e8b1","pro":false},{"uuid":"9d26e780-2523-11e9-ad03-0242ac140003","id":1214107,"name":"analytics","svg":"svg/line/analytics.svg","category":"Business","style":"Line","tags":["bar-graph","graph","analysis","analytics"],"code":59591,"unicode":"e8c7","pro":false},{"uuid":"d5bac830-253b-11e9-b9bc-0242ac140003","id":1214665,"name":"anchor","svg":"svg/line/anchor.svg","category":"User Interface","style":"Line","tags":["marine","nautical","anchor"],"code":60139,"unicode":"eaeb","pro":false},{"uuid":"3e2c7c90-5c4c-11e9-8945-0242ac140003","id":1306062,"name":"android","svg":"svg/line/android.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","android"],"code":60444,"unicode":"ec1c","pro":false},{"uuid":"3e2c7580-5c4c-11e9-be15-0242ac140003","id":1306061,"name":"android-alt","svg":"svg/line/android-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","brand-logo","android-alt"],"code":60538,"unicode":"ec7a","pro":false},{"uuid":"e7d7d070-25f0-11e9-bddc-0242ac140003","id":1218393,"name":"android-phone-slash","svg":"svg/line/android-phone-slash.svg","category":"User Interface","style":"Line","tags":["no-mobile","vibrate","block-mobile","no-smartphone","android-phone-slash"],"code":60357,"unicode":"ebc5","pro":false},{"uuid":"bd86bdd0-2546-11e9-96e9-0242ac140003","id":1216147,"name":"angle-double-down","svg":"svg/line/angle-double-down.svg","category":"Arrows","style":"Line","tags":["down-chevron","double-chevron","down","chevron","arrow","direction","angle-double-down"],"code":60216,"unicode":"eb38","pro":false},{"uuid":"bd86d3b0-2546-11e9-ab24-0242ac140003","id":1216151,"name":"angle-double-left","svg":"svg/line/angle-double-left.svg","category":"Arrows","style":"Line","tags":["double-chevron","left","chevron","arrow","direction","angle-double-left"],"code":60222,"unicode":"eb3e","pro":false},{"uuid":"bd86ce20-2546-11e9-a799-0242ac140003","id":1216150,"name":"angle-double-right","svg":"svg/line/angle-double-right.svg","category":"Arrows","style":"Line","tags":["double-chevron","right","chevron","arrow","direction","angle-double-right"],"code":60227,"unicode":"eb43","pro":false},{"uuid":"bd8783a0-2546-11e9-8fb2-0242ac140003","id":1216180,"name":"angle-double-up","svg":"svg/line/angle-double-up.svg","category":"Arrows","style":"Line","tags":["up-chevron","double-chevron","up","chevron","arrow","direction","angle-double-up"],"code":60253,"unicode":"eb5d","pro":false},{"uuid":"bd86c8c0-2546-11e9-ac3e-0242ac140003","id":1216149,"name":"angle-down","svg":"svg/line/angle-down.svg","category":"Arrows","style":"Line","tags":["down-arrow","down","arrow","direction","angle-down"],"code":60218,"unicode":"eb3a","pro":false},{"uuid":"bd883440-2546-11e9-96b2-0242ac140003","id":1216208,"name":"angle-left","svg":"svg/line/angle-left.svg","category":"Arrows","style":"Line","tags":["left-arrow","left","arrow","left-side","direction","angle-left"],"code":60281,"unicode":"eb79","pro":false},{"uuid":"ffcf44e0-234e-11ea-bccd-0242ac140003","id":1659461,"name":"angle-left-b","svg":"svg/line/angle-left-b.svg","category":"Arrows","style":"Line","tags":["left-arrow","left","arrow","left-side","direction","angle-left-b"],"code":60489,"unicode":"ec49","pro":false},{"uuid":"bd87dce0-2546-11e9-909f-0242ac140003","id":1216194,"name":"angle-right","svg":"svg/line/angle-right.svg","category":"Arrows","style":"Line","tags":["right-arrow","right","arrow","direction","angle-right"],"code":60269,"unicode":"eb6d","pro":false},{"uuid":"bd87e320-2546-11e9-9841-0242ac140003","id":1216195,"name":"angle-right-b","svg":"svg/line/angle-right-b.svg","category":"Arrows","style":"Line","tags":["right-arrow","right","arrow","right-side","direction","angle-right-b"],"code":60319,"unicode":"eb9f","pro":false},{"uuid":"bd8770e0-2546-11e9-a26c-0242ac140003","id":1216177,"name":"angle-up","svg":"svg/line/angle-up.svg","category":"Arrows","style":"Line","tags":["upper-arrow","top-arrow","up-arrow","arrow","direction","angle-up"],"code":60246,"unicode":"eb56","pro":false},{"uuid":"b6634e70-334b-11e9-ae1a-0242ac140003","id":1237462,"name":"angry","svg":"svg/line/angry.svg","category":"Emoji","style":"Line","tags":["emoji","face","smiley","angry"],"code":60383,"unicode":"ebdf","pro":false},{"uuid":"95b88440-334c-11e9-ac18-0242ac140003","id":1237537,"name":"ankh","svg":"svg/line/ankh.svg","category":"User Interface","style":"Line","tags":["culture","religion","sign","ankh"],"code":60452,"unicode":"ec24","pro":false},{"uuid":"b5b92a80-2521-11e9-a8d2-0242ac140003","id":1214013,"name":"annoyed","svg":"svg/line/annoyed.svg","category":"Emoji","style":"Line","tags":["annoyed-face","tired-face","tired","unamused","emoji","annoyed"],"code":59493,"unicode":"e865","pro":false},{"uuid":"b5b98eb0-2521-11e9-805f-0242ac140003","id":1214031,"name":"annoyed-alt","svg":"svg/line/annoyed-alt.svg","category":"Emoji","style":"Line","tags":["annoyed-face","annoyed","tired-face","tired","unamused","emoji","annoyed-alt"],"code":59523,"unicode":"e883","pro":false},{"uuid":"db0d3e30-3507-11e9-ba13-0242ac140003","id":1239445,"name":"apple","svg":"svg/line/apple.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","apple"],"code":60424,"unicode":"ec08","pro":false},{"uuid":"3e2cf100-5c4c-11e9-bf34-0242ac140003","id":1306083,"name":"apple-alt","svg":"svg/line/apple-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","apple-alt"],"code":60471,"unicode":"ec37","pro":false},{"uuid":"b46ecc70-253b-11e9-9412-0242ac140003","id":1214613,"name":"apps","svg":"svg/line/apps.svg","category":"Design Tools","style":"Line","tags":["grid","layout","arrange","apps"],"code":60095,"unicode":"eabf","pro":false},{"uuid":"b9f70d70-2546-11e9-b197-0242ac140003","id":1215927,"name":"archive","svg":"svg/line/archive.svg","category":"Shopping","style":"Line","tags":["box","parcel","package","archive"],"code":60154,"unicode":"eafa","pro":false},{"uuid":"d5babd70-253b-11e9-8f02-0242ac140003","id":1214663,"name":"archive-alt","svg":"svg/line/archive-alt.svg","category":"User Interface","style":"Line","tags":["parcel","box","package","shipping","archive-alt"],"code":60134,"unicode":"eae6","pro":false},{"uuid":"95b87d80-334c-11e9-acce-0242ac140003","id":1237536,"name":"archway","svg":"svg/line/archway.svg","category":"User Interface","style":"Line","tags":["culture","religion","structure","architecture","archway"],"code":60409,"unicode":"ebf9","pro":false},{"uuid":"bd866d10-2546-11e9-98cf-0242ac140003","id":1216133,"name":"arrow","svg":"svg/line/arrow.svg","category":"Arrows","style":"Line","tags":["navigation","code","arrow"],"code":60208,"unicode":"eb30","pro":false},{"uuid":"bd8750e0-2546-11e9-b2a4-0242ac140003","id":1216172,"name":"arrow-break","svg":"svg/line/arrow-break.svg","category":"Arrows","style":"Line","tags":["vertical-align-center","vertical-alignment","alignment","arrow","arrow-break"],"code":60244,"unicode":"eb54","pro":false},{"uuid":"bd86c340-2546-11e9-922f-0242ac140003","id":1216148,"name":"arrow-circle-down","svg":"svg/line/arrow-circle-down.svg","category":"Arrows","style":"Line","tags":["down-arrow","down","arrow","direction","arrow-circle-down"],"code":60215,"unicode":"eb37","pro":false},{"uuid":"bd883a70-2546-11e9-8a1d-0242ac140003","id":1216209,"name":"arrow-circle-left","svg":"svg/line/arrow-circle-left.svg","category":"Arrows","style":"Line","tags":["left-arrow","left","arrow","direction","arrow-circle-left"],"code":60280,"unicode":"eb78","pro":false},{"uuid":"bd87e950-2546-11e9-a8f6-0242ac140003","id":1216196,"name":"arrow-circle-right","svg":"svg/line/arrow-circle-right.svg","category":"Arrows","style":"Line","tags":["right-arrow","right","arrow","direction","arrow-circle-right"],"code":60270,"unicode":"eb6e","pro":false},{"uuid":"bd8769e0-2546-11e9-9e96-0242ac140003","id":1216176,"name":"arrow-circle-up","svg":"svg/line/arrow-circle-up.svg","category":"Arrows","style":"Line","tags":["upper-arrow","top-arrow","up-arrow","arrow","direction","arrow-circle-up"],"code":60247,"unicode":"eb57","pro":false},{"uuid":"bd873110-2546-11e9-b0ff-0242ac140003","id":1216167,"name":"arrow-compress-h","svg":"svg/line/arrow-compress-h.svg","category":"Arrows","style":"Line","tags":["expand","arrow","resize","shrink","arrow-compress-h"],"code":60240,"unicode":"eb50","pro":false},{"uuid":"ab16ff00-25f0-11e9-8479-0242ac140003","id":1218374,"name":"arrow-down","svg":"svg/line/arrow-down.svg","category":"Arrows","style":"Line","tags":["arrow","direction","down","down-arrow","arrow-down"],"code":60393,"unicode":"ebe9","pro":false},{"uuid":"bd882e10-2546-11e9-b954-0242ac140003","id":1216207,"name":"arrow-down-left","svg":"svg/line/arrow-down-left.svg","category":"Arrows","style":"Line","tags":["lower-left","left-arrow","left","lower","down-arrow","arrow","direction","arrow-down-left"],"code":60276,"unicode":"eb74","pro":false},{"uuid":"bd8827d0-2546-11e9-a6ce-0242ac140003","id":1216206,"name":"arrow-down-right","svg":"svg/line/arrow-down-right.svg","category":"Arrows","style":"Line","tags":["lower-right-arrow","lower-right","arrow","lower","down-arrow","direction","arrow-down-right"],"code":60283,"unicode":"eb7b","pro":false},{"uuid":"bd87f5c0-2546-11e9-ad6d-0242ac140003","id":1216198,"name":"arrow-from-right","svg":"svg/line/arrow-from-right.svg","category":"Arrows","style":"Line","tags":["right-alignment","right-align","align","alignment","right-arrow","arrow-from-right"],"code":60272,"unicode":"eb70","pro":false},{"uuid":"bd86f950-2546-11e9-8cc5-0242ac140003","id":1216158,"name":"arrow-from-top","svg":"svg/line/arrow-from-top.svg","category":"Arrows","style":"Line","tags":["bottom-alignment","align","alignment","down","arrow","arrow-from-top"],"code":60232,"unicode":"eb48","pro":false},{"uuid":"bd865be0-2546-11e9-8373-0242ac140003","id":1216130,"name":"arrow-growth","svg":"svg/line/arrow-growth.svg","category":"Arrows","style":"Line","tags":["growth","graph","chart","arrow","arrow-growth"],"code":60206,"unicode":"eb2e","pro":false},{"uuid":"ab1711e0-25f0-11e9-8388-0242ac140003","id":1218377,"name":"arrow-left","svg":"svg/line/arrow-left.svg","category":"Arrows","style":"Line","tags":["arrow","direction","left","left-arrow","arrow-left"],"code":60340,"unicode":"ebb4","pro":false},{"uuid":"bd87d000-2546-11e9-a835-0242ac140003","id":1216192,"name":"arrow-random","svg":"svg/line/arrow-random.svg","category":"Arrows","style":"Line","tags":["arrow","shuffle","arrow-random"],"code":60266,"unicode":"eb6a","pro":false},{"uuid":"bd86d910-2546-11e9-9bc7-0242ac140003","id":1216152,"name":"arrow-resize-diagonal","svg":"svg/line/arrow-resize-diagonal.svg","category":"Arrows","style":"Line","tags":["diagonal-resize","arrow","arrow-resize-diagonal"],"code":60220,"unicode":"eb3c","pro":false},{"uuid":"ab170630-25f0-11e9-82ff-0242ac140003","id":1218375,"name":"arrow-right","svg":"svg/line/arrow-right.svg","category":"Arrows","style":"Line","tags":["arrow","direction","right","right-arrow","arrow-right"],"code":60341,"unicode":"ebb5","pro":false},{"uuid":"bd86fec0-2546-11e9-8a1c-0242ac140003","id":1216159,"name":"arrow-to-bottom","svg":"svg/line/arrow-to-bottom.svg","category":"Arrows","style":"Line","tags":["bottom-alignment","align","alignment","down-arrow","arrow-to-bottom"],"code":60228,"unicode":"eb44","pro":false},{"uuid":"bd87ef90-2546-11e9-82c9-0242ac140003","id":1216197,"name":"arrow-to-right","svg":"svg/line/arrow-to-right.svg","category":"Arrows","style":"Line","tags":["right-alignment","right-align","align","alignment","right-arrow","arrow-to-right"],"code":60271,"unicode":"eb6f","pro":false},{"uuid":"ab170c20-25f0-11e9-9c37-0242ac140003","id":1218376,"name":"arrow-up","svg":"svg/line/arrow-up.svg","category":"Arrows","style":"Line","tags":["arrow","direction","up","up-arrow","arrow-up"],"code":60342,"unicode":"ebb6","pro":false},{"uuid":"bd8763c0-2546-11e9-9033-0242ac140003","id":1216175,"name":"arrow-up-left","svg":"svg/line/arrow-up-left.svg","category":"Arrows","style":"Line","tags":["upper-left-arrow","upper-left","upper","arrow","direction","arrow-up-left"],"code":60239,"unicode":"eb4f","pro":false},{"uuid":"bd875d80-2546-11e9-bd26-0242ac140003","id":1216174,"name":"arrow-up-right","svg":"svg/line/arrow-up-right.svg","category":"Arrows","style":"Line","tags":["upper-right-arrow","upper-right","upper","arrow","direction","arrow-up-right"],"code":60251,"unicode":"eb5b","pro":false},{"uuid":"bd868a30-2546-11e9-9c99-0242ac140003","id":1216138,"name":"arrows-h","svg":"svg/line/arrows-h.svg","category":"Arrows","style":"Line","tags":["horizontal-maximize","maximize","extend","resize","arrows-h"],"code":60212,"unicode":"eb34","pro":false},{"uuid":"bd8684b0-2546-11e9-a689-0242ac140003","id":1216137,"name":"arrows-h-alt","svg":"svg/line/arrows-h-alt.svg","category":"Arrows","style":"Line","tags":["horizontal-maximize","maximize","extend","resize","arrows-h-alt"],"code":60236,"unicode":"eb4c","pro":false},{"uuid":"bd872280-2546-11e9-bd8f-0242ac140003","id":1216165,"name":"arrows-left-down","svg":"svg/line/arrows-left-down.svg","category":"Arrows","style":"Line","tags":["bidirectional-arrow","arrow","direction","arrows-left-down"],"code":60234,"unicode":"eb4a","pro":false},{"uuid":"bd881af0-2546-11e9-a96f-0242ac140003","id":1216204,"name":"arrows-maximize","svg":"svg/line/arrows-maximize.svg","category":"Arrows","style":"Line","tags":["resize","arrow","arrows-maximize"],"code":60275,"unicode":"eb73","pro":false},{"uuid":"bd884d10-2546-11e9-979a-0242ac140003","id":1216212,"name":"arrows-merge","svg":"svg/line/arrows-merge.svg","category":"Arrows","style":"Line","tags":["horizontal-alignment","align","alignment","arrow","arrows-merge"],"code":60282,"unicode":"eb7a","pro":false},{"uuid":"bd867350-2546-11e9-a74a-0242ac140003","id":1216134,"name":"arrows-resize","svg":"svg/line/arrows-resize.svg","category":"Arrows","style":"Line","tags":["horizontal-align-center","horizontal","alignment","arrow","arrows-resize"],"code":60210,"unicode":"eb32","pro":false},{"uuid":"bd867950-2546-11e9-a453-0242ac140003","id":1216135,"name":"arrows-resize-h","svg":"svg/line/arrows-resize-h.svg","category":"Arrows","style":"Line","tags":["horizontal-align-center","horizontal-alignment","arrow","arrows-resize-h"],"code":60231,"unicode":"eb47","pro":false},{"uuid":"bd874a80-2546-11e9-902c-0242ac140003","id":1216171,"name":"arrows-resize-v","svg":"svg/line/arrows-resize-v.svg","category":"Arrows","style":"Line","tags":["vertical-align-center","vertical-alignment","alignment","arrows-resize-v"],"code":60249,"unicode":"eb59","pro":false},{"uuid":"bd871a60-2546-11e9-a94e-0242ac140003","id":1216164,"name":"arrows-right-down","svg":"svg/line/arrows-right-down.svg","category":"Arrows","style":"Line","tags":["arrow","direction","arrows-right-down"],"code":60235,"unicode":"eb4b","pro":false},{"uuid":"bd867f10-2546-11e9-9d3f-0242ac140003","id":1216136,"name":"arrows-shrink-h","svg":"svg/line/arrows-shrink-h.svg","category":"Arrows","style":"Line","tags":["horizontal-maximize","maximize","extend","resize","arrows-shrink-h"],"code":60209,"unicode":"eb31","pro":false},{"uuid":"bd873dd0-2546-11e9-b63a-0242ac140003","id":1216169,"name":"arrows-shrink-v","svg":"svg/line/arrows-shrink-v.svg","category":"Arrows","style":"Line","tags":["vertical-resize","resize","arrows","arrows-shrink-v"],"code":60243,"unicode":"eb53","pro":false},{"uuid":"bd871500-2546-11e9-bd81-0242ac140003","id":1216163,"name":"arrows-up-right","svg":"svg/line/arrows-up-right.svg","category":"Arrows","style":"Line","tags":["arrow","direction","arrows-up-right"],"code":60233,"unicode":"eb49","pro":false},{"uuid":"bd873780-2546-11e9-9c85-0242ac140003","id":1216168,"name":"arrows-v","svg":"svg/line/arrows-v.svg","category":"Arrows","style":"Line","tags":["vertical-resize","resize","arrows-v"],"code":60242,"unicode":"eb52","pro":false},{"uuid":"bd874430-2546-11e9-862a-0242ac140003","id":1216170,"name":"arrows-v-alt","svg":"svg/line/arrows-v-alt.svg","category":"Arrows","style":"Line","tags":["vertical-resize","resize","arrow","arrows-v-alt"],"code":60241,"unicode":"eb51","pro":false},{"uuid":"d772f250-334b-11e9-945f-0242ac140003","id":1237464,"name":"assistive-listening-systems","svg":"svg/line/assistive-listening-systems.svg","category":"Medical","style":"Line","tags":["listing","ear","ear-device","assistive-listening-systems"],"code":60389,"unicode":"ebe5","pro":false},{"uuid":"d6fddb70-547d-11e9-a990-0242ac140003","id":1288243,"name":"asterisk","svg":"svg/line/asterisk.svg","category":"User Interface","style":"Line","tags":["password","symbol","multiplication","asterisk"],"code":60443,"unicode":"ec1b","pro":false},{"uuid":"5b2e1c70-2529-11e9-8f22-0242ac140003","id":1214355,"name":"at","svg":"svg/line/at.svg","category":"User Interface","style":"Line","tags":["address","contact","email","at"],"code":59839,"unicode":"e9bf","pro":false},{"uuid":"9cdcb900-2524-11e9-8f9c-0242ac140003","id":1214147,"name":"atom","svg":"svg/line/atom.svg","category":"Education","style":"Line","tags":["atomic-molecules","science","technology","atom"],"code":59635,"unicode":"e8f3","pro":false},{"uuid":"d5ba45d0-253b-11e9-8f97-0242ac140003","id":1214642,"name":"auto-flash","svg":"svg/line/auto-flash.svg","category":"User Interface","style":"Line","tags":["flash-auto","auto","flash","flash-light","bolt","auto-flash"],"code":60124,"unicode":"eadc","pro":false},{"uuid":"9cdd9a60-2524-11e9-8e1f-0242ac140003","id":1214164,"name":"award","svg":"svg/line/award.svg","category":"Education","style":"Line","tags":["badge","prize","medal","winner","award"],"code":59649,"unicode":"e901","pro":false},{"uuid":"bb06a520-2546-11e9-9ccd-0242ac140003","id":1215956,"name":"award-alt","svg":"svg/line/award-alt.svg","category":"Education","style":"Line","tags":["ribbon","awardbadge","award-ribbon","badge","reward","award-alt"],"code":60185,"unicode":"eb19","pro":false},{"uuid":"bcf55670-2546-11e9-b62a-0242ac140003","id":1216078,"name":"baby-carriage","svg":"svg/line/baby-carriage.svg","category":"User Interface","style":"Line","tags":["baby-stroller","baby-buggy","pram","baby-pram","baby-carriage"],"code":60204,"unicode":"eb2c","pro":false},{"uuid":"9cdd55f0-2524-11e9-a4de-0242ac140003","id":1214159,"name":"backpack","svg":"svg/line/backpack.svg","category":"Education","style":"Line","tags":["school-bag","college-bag","bag","education-bag","backpack"],"code":59643,"unicode":"e8fb","pro":false},{"uuid":"5b2ea300-2529-11e9-a787-0242ac140003","id":1214369,"name":"backspace","svg":"svg/line/backspace.svg","category":"User Interface","style":"Line","tags":["back","key","backspace"],"code":60575,"unicode":"ec9f","pro":false},{"uuid":"96f262c0-252c-11e9-aa32-0242ac140003","id":1214492,"name":"backward","svg":"svg/line/backward.svg","category":"Multimedia","style":"Line","tags":["rewind","player-control","media-control","media","backward"],"code":59964,"unicode":"ea3c","pro":false},{"uuid":"9d266020-2523-11e9-8fb8-0242ac140003","id":1214088,"name":"bag","svg":"svg/line/bag.svg","category":"Business","style":"Line","tags":["office-bag","briefcase","portfolio","suitcase","bag"],"code":59574,"unicode":"e8b6","pro":false},{"uuid":"9d266790-2523-11e9-88bf-0242ac140003","id":1214089,"name":"bag-alt","svg":"svg/line/bag-alt.svg","category":"Business","style":"Line","tags":["office-bag","bag","briefcase","portfolio","bag-alt"],"code":59572,"unicode":"e8b4","pro":false},{"uuid":"e7d7ecd0-25f0-11e9-ad73-0242ac140003","id":1218398,"name":"bag-slash","svg":"svg/line/bag-slash.svg","category":"User Interface","style":"Line","tags":["no-handbag","no-bag","no-office-bag","block-bag","block-handbag","bag-slash"],"code":60413,"unicode":"ebfd","pro":false},{"uuid":"d6fdf080-547d-11e9-97e1-0242ac140003","id":1288245,"name":"balance-scale","svg":"svg/line/balance-scale.svg","category":"User Interface","style":"Line","tags":["balance","scale","justice","ethics","balance-scale"],"code":60446,"unicode":"ec1e","pro":false},{"uuid":"b8e29fe0-2546-11e9-be6b-0242ac140003","id":1215876,"name":"ban","svg":"svg/line/ban.svg","category":"Sign And Symbol","style":"Line","tags":["block","forbidden","forbidden-sign","prohibited","prohibited-sign","restricted","restricted-sign","ban"],"code":60155,"unicode":"eafb","pro":false},{"uuid":"f5196940-2524-11e9-b7e7-0242ac140003","id":1214173,"name":"band-aid","svg":"svg/line/band-aid.svg","category":"Medical","style":"Line","tags":["bandage","first-aid","healthcare","medical","band-aid"],"code":59658,"unicode":"e90a","pro":false},{"uuid":"1257d790-254d-11e9-8af1-0242ac140003","id":1216351,"name":"bars","svg":"svg/line/bars.svg","category":"Content","style":"Line","tags":["justify","hamburger-menu","align","alignment","bars"],"code":60334,"unicode":"ebae","pro":false},{"uuid":"478781c0-5c4c-11e9-91c7-0242ac140003","id":1306084,"name":"baseball-ball","svg":"svg/line/baseball-ball.svg","category":"Sports","style":"Line","tags":["baseball","ball","sport","baseball-ball"],"code":60521,"unicode":"ec69","pro":false},{"uuid":"47da1870-2522-11e9-b991-0242ac140003","id":1214055,"name":"basketball","svg":"svg/line/basketball.svg","category":"Sports","style":"Line","tags":["basket-ball","ball","sport","game","basketball"],"code":59534,"unicode":"e88e","pro":false},{"uuid":"47da3350-2522-11e9-8d64-0242ac140003","id":1214059,"name":"basketball-hoop","svg":"svg/line/basketball-hoop.svg","category":"Sports","style":"Line","tags":["basketball","game","sport","hoop","basketball-hoop"],"code":59547,"unicode":"e89b","pro":false},{"uuid":"73e8ccc0-875c-11e9-9848-0242ac140003","id":1408703,"name":"bath","svg":"svg/line/bath.svg","category":"User Interface","style":"Line","tags":["bathtub","shower","tub","water","bath"],"code":60490,"unicode":"ec4a","pro":false},{"uuid":"5b2dfa00-2529-11e9-96c4-0242ac140003","id":1214350,"name":"battery-bolt","svg":"svg/line/battery-bolt.svg","category":"User Interface","style":"Line","tags":["battery-charging","battery","charge","charging","battery-bolt"],"code":59840,"unicode":"e9c0","pro":false},{"uuid":"5b2df3c0-2529-11e9-9372-0242ac140003","id":1214349,"name":"battery-empty","svg":"svg/line/battery-empty.svg","category":"User Interface","style":"Line","tags":["battery","low-battery","battery-empty"],"code":59838,"unicode":"e9be","pro":false},{"uuid":"bcf4ed20-2546-11e9-8068-0242ac140003","id":1216069,"name":"bed","svg":"svg/line/bed.svg","category":"User Interface","style":"Line","tags":["sleeping","rest","person","sleeping-man","bed"],"code":60201,"unicode":"eb29","pro":false},{"uuid":"bcf54b70-2546-11e9-bd62-0242ac140003","id":1216077,"name":"bed-double","svg":"svg/line/bed-double.svg","category":"User Interface","style":"Line","tags":["bed","double-bed","bedroom","furniture","bed-double"],"code":60196,"unicode":"eb24","pro":false},{"uuid":"db0d49b0-3507-11e9-82b1-0242ac140003","id":1239446,"name":"behance","svg":"svg/line/behance.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","behance"],"code":60427,"unicode":"ec0b","pro":false},{"uuid":"3e2cebb0-5c4c-11e9-bda7-0242ac140003","id":1306082,"name":"behance-alt","svg":"svg/line/behance-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","behance-alt"],"code":60470,"unicode":"ec36","pro":false},{"uuid":"18fcb390-29cc-11e9-b76f-0242ac140003","id":1224695,"name":"bell","svg":"svg/line/bell.svg","category":"User Interface","style":"Line","tags":["notification","alert","alarm","ring","bell"],"code":60379,"unicode":"ebdb","pro":false},{"uuid":"9cdde690-2524-11e9-adf3-0242ac140003","id":1214170,"name":"bell-school","svg":"svg/line/bell-school.svg","category":"Education","style":"Line","tags":["bell","notification-bell","alarm-bell","school-bell","bell-school"],"code":59651,"unicode":"e903","pro":false},{"uuid":"e7d81950-25f0-11e9-b270-0242ac140003","id":1218406,"name":"bell-slash","svg":"svg/line/bell-slash.svg","category":"User Interface","style":"Line","tags":["no-bell","no-notification","block-notification","forbidden-notification","notification","bell-slash"],"code":60377,"unicode":"ebd9","pro":false},{"uuid":"9d25f960-2523-11e9-a3f7-0242ac140003","id":1214071,"name":"bill","svg":"svg/line/bill.svg","category":"Business","style":"Line","tags":["invoice","payment","dollar","bill-payment","money","receipt","bill"],"code":59593,"unicode":"e8c9","pro":false},{"uuid":"6b8e9cb0-9a7d-11ea-9ab7-0242ac140003","id":2056048,"name":"bing","svg":"svg/line/bing.svg","category":"Brand Logos","style":"Line","tags":["logo","search-engine","bing"],"code":60553,"unicode":"ec89","pro":false},{"uuid":"3e2ce640-5c4c-11e9-be89-0242ac140003","id":1306081,"name":"bitcoin","svg":"svg/line/bitcoin.svg","category":"Brand Logos","style":"Line","tags":["cryptocurrency","logo","brand-logo","brand","bitcoin"],"code":60472,"unicode":"ec38","pro":false},{"uuid":"3e2ce0f0-5c4c-11e9-bbe7-0242ac140003","id":1306080,"name":"bitcoin-alt","svg":"svg/line/bitcoin-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","brand-logo","bitcoin-alt"],"code":60474,"unicode":"ec3a","pro":false},{"uuid":"9d26cfb0-2523-11e9-a94b-0242ac140003","id":1214103,"name":"bitcoin-circle","svg":"svg/line/bitcoin-circle.svg","category":"Business","style":"Line","tags":["bitcoin","coin","money","currency","bitcoin-circle"],"code":59602,"unicode":"e8d2","pro":false},{"uuid":"9d26d670-2523-11e9-8f0a-0242ac140003","id":1214104,"name":"bitcoin-sign","svg":"svg/line/bitcoin-sign.svg","category":"Business","style":"Line","tags":["bitcoin","bitcoin-bold","bitcoin-sign"],"code":59587,"unicode":"e8c3","pro":false},{"uuid":"db0d0990-3507-11e9-9e47-0242ac140003","id":1239439,"name":"black-berry","svg":"svg/line/black-berry.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","black-berry"],"code":60418,"unicode":"ec02","pro":false},{"uuid":"3e2cdb80-5c4c-11e9-b554-0242ac140003","id":1306079,"name":"blogger","svg":"svg/line/blogger.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","blogger"],"code":60469,"unicode":"ec35","pro":false},{"uuid":"3e2cd620-5c4c-11e9-ae76-0242ac140003","id":1306078,"name":"blogger-alt","svg":"svg/line/blogger-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","brand-logo","blogger-alt"],"code":60468,"unicode":"ec34","pro":false},{"uuid":"5b2b6880-2529-11e9-acd9-0242ac140003","id":1214276,"name":"bluetooth-b","svg":"svg/line/bluetooth-b.svg","category":"User Interface","style":"Line","tags":["bluetooth","share","transfer-data","bluetooth-b"],"code":59762,"unicode":"e972","pro":false},{"uuid":"d7f9e680-334b-11e9-a23a-0242ac140003","id":1237467,"name":"bold","svg":"svg/line/bold.svg","category":"Content","style":"Line","tags":["content","style","format","bold"],"code":60387,"unicode":"ebe3","pro":false},{"uuid":"5b2bc6d0-2529-11e9-bbcf-0242ac140003","id":1214287,"name":"bolt","svg":"svg/line/bolt.svg","category":"User Interface","style":"Line","tags":["thunder","flash","light","power","energy","bolt"],"code":59769,"unicode":"e979","pro":false},{"uuid":"5b2decd0-2529-11e9-8a7f-0242ac140003","id":1214348,"name":"bolt-alt","svg":"svg/line/bolt-alt.svg","category":"User Interface","style":"Line","tags":["bolt","thunder","flash","light","power","energy","bolt-alt"],"code":59836,"unicode":"e9bc","pro":false},{"uuid":"ba8e0250-2546-11e9-ae4d-0242ac140003","id":1215942,"name":"bolt-slash","svg":"svg/line/bolt-slash.svg","category":"Multimedia","style":"Line","tags":["flash-off","no-flash","flash","power","energy","bolt-slash"],"code":60177,"unicode":"eb11","pro":false},{"uuid":"9cdd7030-2524-11e9-bb0f-0242ac140003","id":1214161,"name":"book","svg":"svg/line/book.svg","category":"Education","style":"Line","tags":["library","notebook","study-book","education-book","study-notes","book"],"code":59647,"unicode":"e8ff","pro":false},{"uuid":"9cdd47c0-2524-11e9-83c8-0242ac140003","id":1214158,"name":"book-alt","svg":"svg/line/book-alt.svg","category":"Education","style":"Line","tags":["book","diary","education","book-alt"],"code":59646,"unicode":"e8fe","pro":false},{"uuid":"f5197c40-2524-11e9-8eab-0242ac140003","id":1214176,"name":"book-medical","svg":"svg/line/book-medical.svg","category":"Medical","style":"Line","tags":["add-book","medical-book","book","education","book-medical"],"code":59676,"unicode":"e91c","pro":false},{"uuid":"bb06b1c0-2546-11e9-a81f-0242ac140003","id":1215958,"name":"book-open","svg":"svg/line/book-open.svg","category":"Education","style":"Line","tags":["open-book","book","reading","book-open"],"code":60183,"unicode":"eb17","pro":false},{"uuid":"3396f590-252a-11e9-aca5-0242ac140003","id":1214449,"name":"book-reader","svg":"svg/line/book-reader.svg","category":"Users","style":"Line","tags":["reader","user","reading","book-reading","student","avatar","book-reader"],"code":59922,"unicode":"ea12","pro":false},{"uuid":"5b2bf800-2529-11e9-b2a7-0242ac140003","id":1214293,"name":"bookmark","svg":"svg/line/bookmark.svg","category":"User Interface","style":"Line","tags":["save","tag","bookmark"],"code":59777,"unicode":"e981","pro":false},{"uuid":"5b2bfde0-2529-11e9-b16c-0242ac140003","id":1214294,"name":"bookmark-full","svg":"svg/line/bookmark-full.svg","category":"User Interface","style":"Line","tags":["save","favorite","ribbon","bookmark-full"],"code":59783,"unicode":"e987","pro":false},{"uuid":"68df0ef0-2527-11e9-a351-0242ac140003","id":1214202,"name":"books","svg":"svg/line/books.svg","category":"File And Folder","style":"Line","tags":["files-rack","file-folders","files","book-rack","books"],"code":59694,"unicode":"e92e","pro":false},{"uuid":"96f40f80-252c-11e9-8178-0242ac140003","id":1214530,"name":"boombox","svg":"svg/line/boombox.svg","category":"Multimedia","style":"Line","tags":["speaker","music","loud","boombox"],"code":60010,"unicode":"ea6a","pro":false},{"uuid":"12569170-254d-11e9-a2c8-0242ac140003","id":1216326,"name":"border-alt","svg":"svg/line/border-alt.svg","category":"Content","style":"Line","tags":["border-style","border","border-alt"],"code":60312,"unicode":"eb98","pro":false},{"uuid":"125686b0-254d-11e9-a574-0242ac140003","id":1216325,"name":"border-bottom","svg":"svg/line/border-bottom.svg","category":"Content","style":"Line","tags":["bottom-border","border","border-style","border-bottom"],"code":60305,"unicode":"eb91","pro":false},{"uuid":"12577fe0-254d-11e9-bf51-0242ac140003","id":1216343,"name":"border-clear","svg":"svg/line/border-clear.svg","category":"Content","style":"Line","tags":["none-border","clear-border","border","border-clear"],"code":60325,"unicode":"eba5","pro":false},{"uuid":"12562a80-254d-11e9-9d27-0242ac140003","id":1216316,"name":"border-horizontal","svg":"svg/line/border-horizontal.svg","category":"Content","style":"Line","tags":["horizontal-border","border","border-horizontal"],"code":60299,"unicode":"eb8b","pro":false},{"uuid":"12561ef0-254d-11e9-ba72-0242ac140003","id":1216315,"name":"border-inner","svg":"svg/line/border-inner.svg","category":"Content","style":"Line","tags":["inside-border","inside","border","inner-border","border-inner"],"code":60348,"unicode":"ebbc","pro":false},{"uuid":"1257b690-254d-11e9-a68f-0242ac140003","id":1216348,"name":"border-left","svg":"svg/line/border-left.svg","category":"Content","style":"Line","tags":["left-border","border","border-left"],"code":60330,"unicode":"ebaa","pro":false},{"uuid":"1878d140-254b-11e9-9d51-0242ac140003","id":1216303,"name":"border-out","svg":"svg/line/border-out.svg","category":"Design Tools","style":"Line","tags":["outer-border","outer","border","border-out"],"code":60298,"unicode":"eb8a","pro":false},{"uuid":"12575ca0-254d-11e9-a4d2-0242ac140003","id":1216340,"name":"border-right","svg":"svg/line/border-right.svg","category":"Content","style":"Line","tags":["right-border","border","border-right"],"code":60322,"unicode":"eba2","pro":false},{"uuid":"1256dee0-254d-11e9-aa98-0242ac140003","id":1216334,"name":"border-top","svg":"svg/line/border-top.svg","category":"Content","style":"Line","tags":["top-border","top","border","border-top"],"code":60331,"unicode":"ebab","pro":false},{"uuid":"1256d570-254d-11e9-b29c-0242ac140003","id":1216333,"name":"border-vertical","svg":"svg/line/border-vertical.svg","category":"Content","style":"Line","tags":["vertical-border","border","vertical-center-border","border-vertical"],"code":60315,"unicode":"eb9b","pro":false},{"uuid":"47878eb0-5c4c-11e9-b7b7-0242ac140003","id":1306085,"name":"bowling-ball","svg":"svg/line/bowling-ball.svg","category":"Sports","style":"Line","tags":["bowling","ball","sport","bowling-ball"],"code":60475,"unicode":"ec3b","pro":false},{"uuid":"5b2d9680-2529-11e9-93b2-0242ac140003","id":1214339,"name":"box","svg":"svg/line/box.svg","category":"User Interface","style":"Line","tags":["cube","package","parcel","box"],"code":59830,"unicode":"e9b6","pro":false},{"uuid":"bd3675e0-5427-11ea-973f-0242ac140003","id":1784380,"name":"brackets-curly","svg":"svg/line/brackets-curly.svg","category":"Cloud And Web","style":"Line","tags":["code","coding","development","programming","brackets-curly"],"code":60496,"unicode":"ec50","pro":false},{"uuid":"9cdcdfa0-2524-11e9-9e87-0242ac140003","id":1214150,"name":"brain","svg":"svg/line/brain.svg","category":"Education","style":"Line","tags":["human-brain","human-mind","mind","science","brain"],"code":59687,"unicode":"e927","pro":false},{"uuid":"9d2710a0-2523-11e9-9e08-0242ac140003","id":1214114,"name":"briefcase","svg":"svg/line/briefcase.svg","category":"Business","style":"Line","tags":["office-bag","hand-bag","school-bag","bag","briefcase"],"code":59601,"unicode":"e8d1","pro":false},{"uuid":"9d261450-2523-11e9-baa1-0242ac140003","id":1214075,"name":"briefcase-alt","svg":"svg/line/briefcase-alt.svg","category":"Business","style":"Line","tags":["office-bag","bag","briefcase","portfolio","suitcase","briefcase-alt"],"code":59564,"unicode":"e8ac","pro":false},{"uuid":"cc368d00-254d-11e9-a59f-0242ac140003","id":1216356,"name":"bright","svg":"svg/line/bright.svg","category":"Photography Tools","style":"Line","tags":["high-brightness","full-brightness","luminosity","brightness","light","bright"],"code":60337,"unicode":"ebb1","pro":false},{"uuid":"5b2e5800-2529-11e9-947e-0242ac140003","id":1214360,"name":"brightness","svg":"svg/line/brightness.svg","category":"User Interface","style":"Line","tags":["sun","sunny","hot-temperature","brightness"],"code":59847,"unicode":"e9c7","pro":false},{"uuid":"5b2e7170-2529-11e9-8a1d-0242ac140003","id":1214364,"name":"brightness-empty","svg":"svg/line/brightness-empty.svg","category":"User Interface","style":"Line","tags":["low-brightness","luminosity","brightness","brightness-empty"],"code":59851,"unicode":"e9cb","pro":false},{"uuid":"5b2e6540-2529-11e9-b360-0242ac140003","id":1214362,"name":"brightness-half","svg":"svg/line/brightness-half.svg","category":"User Interface","style":"Line","tags":["medium-brightness","luminosity","brightness","light","brightness-half"],"code":59850,"unicode":"e9ca","pro":false},{"uuid":"5b2e6b60-2529-11e9-b4c0-0242ac140003","id":1214363,"name":"brightness-low","svg":"svg/line/brightness-low.svg","category":"User Interface","style":"Line","tags":["medium-brightness","luminosity","brightness","light","brightness-low"],"code":59893,"unicode":"e9f5","pro":false},{"uuid":"5b2e5ef0-2529-11e9-9d5d-0242ac140003","id":1214361,"name":"brightness-minus","svg":"svg/line/brightness-minus.svg","category":"User Interface","style":"Line","tags":["reduce-brightness","decrease-brightness","brightness","luminosity","brightness-minus"],"code":59858,"unicode":"e9d2","pro":false},{"uuid":"5b2e7790-2529-11e9-a511-0242ac140003","id":1214365,"name":"brightness-plus","svg":"svg/line/brightness-plus.svg","category":"User Interface","style":"Line","tags":["increase-brightness","add-brightness","luminosity","brightness-plus"],"code":59853,"unicode":"e9cd","pro":false},{"uuid":"1878fbd0-254b-11e9-a593-0242ac140003","id":1216310,"name":"bring-bottom","svg":"svg/line/bring-bottom.svg","category":"Design Tools","style":"Line","tags":["object","design-tool","bottom","bring-to-front","bring-bottom"],"code":60295,"unicode":"eb87","pro":false},{"uuid":"1878f630-254b-11e9-9b0a-0242ac140003","id":1216309,"name":"bring-front","svg":"svg/line/bring-front.svg","category":"Design Tools","style":"Line","tags":["object","design-tool","bring-to-back","bottom","bring-to-front","bring-bottom","bring-front"],"code":60293,"unicode":"eb85","pro":false},{"uuid":"bc253490-2546-11e9-b6de-0242ac140003","id":1216011,"name":"browser","svg":"svg/line/browser.svg","category":"Cloud And Web","style":"Line","tags":["multiple-tab","tab","web","window-restore","web-page","browser"],"code":60187,"unicode":"eb1b","pro":false},{"uuid":"b46f2b90-253b-11e9-a2ed-0242ac140003","id":1214622,"name":"brush-alt","svg":"svg/line/brush-alt.svg","category":"Design Tools","style":"Line","tags":["brush","paint-brush","paint","paint-tool","design-tool","graphic-tool","brush-alt"],"code":60103,"unicode":"eac7","pro":false},{"uuid":"bc254290-2546-11e9-928b-0242ac140003","id":1216012,"name":"bug","svg":"svg/line/bug.svg","category":"Cloud And Web","style":"Line","tags":["insect","malware","virus","bug"],"code":60186,"unicode":"eb1a","pro":false},{"uuid":"bcf4d540-2546-11e9-83ff-0242ac140003","id":1216067,"name":"building","svg":"svg/line/building.svg","category":"User Interface","style":"Line","tags":["apartment","house","lodge","building"],"code":60189,"unicode":"eb1d","pro":false},{"uuid":"5b2e05e0-2529-11e9-aff1-0242ac140003","id":1214352,"name":"bullseye","svg":"svg/line/bullseye.svg","category":"User Interface","style":"Line","tags":["archery","dart","dart-board","bullseye"],"code":59846,"unicode":"e9c6","pro":false},{"uuid":"7f4c1190-2529-11e9-8a14-0242ac140003","id":1214385,"name":"bus","svg":"svg/line/bus.svg","category":"Transport","style":"Line","tags":["school-bus","travel","vehicle","transport","bus"],"code":59860,"unicode":"e9d4","pro":false},{"uuid":"7f4b40c0-2529-11e9-a01d-0242ac140003","id":1214377,"name":"bus-alt","svg":"svg/line/bus-alt.svg","category":"Transport","style":"Line","tags":["bus","school-bus","travel","vehicle","transport","bus-alt"],"code":59867,"unicode":"e9db","pro":false},{"uuid":"7f4c1c60-2529-11e9-ac73-0242ac140003","id":1214386,"name":"bus-school","svg":"svg/line/bus-school.svg","category":"Transport","style":"Line","tags":["school-bus","mini-bus","bus","vehicle","travel","transport","bus-school"],"code":59864,"unicode":"e9d8","pro":false},{"uuid":"5b2b5c80-2529-11e9-b3c5-0242ac140003","id":1214275,"name":"calculator","svg":"svg/line/calculator.svg","category":"User Interface","style":"Line","tags":["device","calculation","maths","calculator"],"code":59806,"unicode":"e99e","pro":false},{"uuid":"9d271be0-2523-11e9-a572-0242ac140003","id":1214116,"name":"calculator-alt","svg":"svg/line/calculator-alt.svg","category":"Business","style":"Line","tags":["calculator","calculation","math","calculator-alt"],"code":59605,"unicode":"e8d5","pro":false},{"uuid":"9d273200-2523-11e9-8b87-0242ac140003","id":1214120,"name":"calendar-alt","svg":"svg/line/calendar-alt.svg","category":"Business","style":"Line","tags":["calendar","schedule","planning","date","plan","calendar-alt"],"code":59612,"unicode":"e8dc","pro":false},{"uuid":"e7d7af40-25f0-11e9-8473-0242ac140003","id":1218387,"name":"calendar-slash","svg":"svg/line/calendar-slash.svg","category":"User Interface","style":"Line","tags":["no-schedule","no-calendar","no-planning","block-calendar","calendar-slash"],"code":60358,"unicode":"ebc6","pro":false},{"uuid":"5b2d9070-2529-11e9-97ad-0242ac140003","id":1214338,"name":"calender","svg":"svg/line/calender.svg","category":"User Interface","style":"Line","tags":["date","month","planner","schedule","calender"],"code":59837,"unicode":"e9bd","pro":false},{"uuid":"ff49a760-2529-11e9-ae60-0242ac140003","id":1214406,"name":"calling","svg":"svg/line/calling.svg","category":"Communication","style":"Line","tags":["call","phone","telephone","calling"],"code":59880,"unicode":"e9e8","pro":false},{"uuid":"96f26ee0-252c-11e9-8a1d-0242ac140003","id":1214493,"name":"camera","svg":"svg/line/camera.svg","category":"Multimedia","style":"Line","tags":["photo","photoshoot","media","multimedia","camera"],"code":59965,"unicode":"ea3d","pro":false},{"uuid":"c26e7b80-3507-11e9-ab1c-0242ac140003","id":1239432,"name":"camera-change","svg":"svg/line/camera-change.svg","category":"Multimedia","style":"Line","tags":["camera","photography","swap-camera","camera-change"],"code":60458,"unicode":"ec2a","pro":false},{"uuid":"96f3db00-252c-11e9-9e6c-0242ac140003","id":1214524,"name":"camera-plus","svg":"svg/line/camera-plus.svg","category":"Multimedia","style":"Line","tags":["add-photo","upload-photo","upload-image","camera","photo","multimedia","camera-plus"],"code":60002,"unicode":"ea62","pro":false},{"uuid":"e7d813c0-25f0-11e9-a69e-0242ac140003","id":1218405,"name":"camera-slash","svg":"svg/line/camera-slash.svg","category":"User Interface","style":"Line","tags":["no-camera","no-photo","no-image","block-camera","block-photo","camera-slash"],"code":60373,"unicode":"ebd5","pro":false},{"uuid":"d5ba3f80-253b-11e9-a7eb-0242ac140003","id":1214641,"name":"cancel","svg":"svg/line/cancel.svg","category":"User Interface","style":"Line","tags":["backspace","delete","remove","cancel"],"code":60117,"unicode":"ead5","pro":false},{"uuid":"f5199d60-2524-11e9-9fa5-0242ac140003","id":1214182,"name":"capsule","svg":"svg/line/capsule.svg","category":"Medical","style":"Line","tags":["medicine","pills","tablet","medical-pills","capsule"],"code":59665,"unicode":"e911","pro":false},{"uuid":"cc369dc0-254d-11e9-9c8d-0242ac140003","id":1216359,"name":"capture","svg":"svg/line/capture.svg","category":"Photography Tools","style":"Line","tags":["focus-point","camera-focus","capture"],"code":60339,"unicode":"ebb3","pro":false},{"uuid":"5b2b4380-2529-11e9-9214-0242ac140003","id":1214273,"name":"car","svg":"svg/line/car.svg","category":"User Interface","style":"Line","tags":["taxi","travel","vehicle","transport","car"],"code":59808,"unicode":"e9a0","pro":false},{"uuid":"7f4b3360-2529-11e9-9bfb-0242ac140003","id":1214375,"name":"car-sideview","svg":"svg/line/car-sideview.svg","category":"Transport","style":"Line","tags":["car","taxi","travel","vehicle","transport","car-sideview"],"code":59862,"unicode":"e9d6","pro":false},{"uuid":"e7d80e40-25f0-11e9-a6ca-0242ac140003","id":1218404,"name":"car-slash","svg":"svg/line/car-slash.svg","category":"User Interface","style":"Line","tags":["no-caravoid-travelling","no-vehicle","block-car","block-vehicle","block-transportation","car-slash"],"code":60372,"unicode":"ebd4","pro":false},{"uuid":"7f4b3ac0-2529-11e9-97cf-0242ac140003","id":1214376,"name":"car-wash","svg":"svg/line/car-wash.svg","category":"Transport","style":"Line","tags":["car","cab","taxi","travel","vehicle","transport","car-wash"],"code":59863,"unicode":"e9d7","pro":false},{"uuid":"e7d779c0-25f0-11e9-8f1c-0242ac140003","id":1218378,"name":"card-atm","svg":"svg/line/card-atm.svg","category":"User Interface","style":"Line","tags":["atm-card","credit-card","debit-card","card","visa-card","card-atm"],"code":60345,"unicode":"ebb9","pro":false},{"uuid":"bd86f3e0-2546-11e9-80d0-0242ac140003","id":1216157,"name":"caret-right","svg":"svg/line/caret-right.svg","category":"Arrows","style":"Line","tags":["caret","right","right-arrow","caret-right"],"code":60225,"unicode":"eb41","pro":false},{"uuid":"9cdd8dc0-2524-11e9-8d5b-0242ac140003","id":1214163,"name":"cell","svg":"svg/line/cell.svg","category":"Education","style":"Line","tags":["cells","education","anatomy","biology","science","cell"],"code":59657,"unicode":"e909","pro":false},{"uuid":"37c24750-252d-11e9-85ec-0242ac140003","id":1214575,"name":"celsius","svg":"svg/line/celsius.svg","category":"Weather","style":"Line","tags":["degree-celsius","temperature","weather","celsius"],"code":60046,"unicode":"ea8e","pro":false},{"uuid":"bd365da0-5427-11ea-b6b5-0242ac140003","id":1784378,"name":"channel","svg":"svg/line/channel.svg","category":"Cloud And Web","style":"Line","tags":["network","structure","channel"],"code":60502,"unicode":"ec56","pro":false},{"uuid":"bd366b10-5427-11ea-9e5f-0242ac140003","id":1784379,"name":"channel-add","svg":"svg/line/channel-add.svg","category":"Cloud And Web","style":"Line","tags":["add-channel","network","structure","channel-add"],"code":60500,"unicode":"ec54","pro":false},{"uuid":"9d270a60-2523-11e9-a065-0242ac140003","id":1214113,"name":"chart","svg":"svg/line/chart.svg","category":"Business","style":"Line","tags":["bar-graph","analysis","analytics","chart"],"code":59600,"unicode":"e8d0","pro":false},{"uuid":"9d26f2a0-2523-11e9-9dae-0242ac140003","id":1214109,"name":"chart-bar","svg":"svg/line/chart-bar.svg","category":"Business","style":"Line","tags":["bar-graph","bar-chart","graph","chart","analytics","infographic","chart-bar"],"code":59594,"unicode":"e8ca","pro":false},{"uuid":"9d2702f0-2523-11e9-b8f0-0242ac140003","id":1214112,"name":"chart-bar-alt","svg":"svg/line/chart-bar-alt.svg","category":"Business","style":"Line","tags":["bar-graph","bar-chart","graph","chart","analysis","analytics","infographic","chart-bar-alt"],"code":59598,"unicode":"e8ce","pro":false},{"uuid":"bd86b860-2546-11e9-b201-0242ac140003","id":1216146,"name":"chart-down","svg":"svg/line/chart-down.svg","category":"Arrows","style":"Line","tags":["down-growth","down-arrow","graph","chart","arrow","chart-down"],"code":60217,"unicode":"eb39","pro":false},{"uuid":"9d26fd80-2523-11e9-a0a0-0242ac140003","id":1214111,"name":"chart-growth","svg":"svg/line/chart-growth.svg","category":"Business","style":"Line","tags":["bar-graph","bar-chart","graph","chart","analysis","analytics","infographic","chart-growth"],"code":59595,"unicode":"e8cb","pro":false},{"uuid":"9d26f820-2523-11e9-822b-0242ac140003","id":1214110,"name":"chart-growth-alt","svg":"svg/line/chart-growth-alt.svg","category":"Business","style":"Line","tags":["bar-graph","bar-chart","graph","chart","analysis","analytics","infographic","chart-growth-alt"],"code":59596,"unicode":"e8cc","pro":false},{"uuid":"9d2674a0-2523-11e9-9b16-0242ac140003","id":1214091,"name":"chart-line","svg":"svg/line/chart-line.svg","category":"Business","style":"Line","tags":["growth-graph","growth","graph","analysis","analytics","chart-line"],"code":59576,"unicode":"e8b8","pro":false},{"uuid":"9d2608d0-2523-11e9-8b19-0242ac140003","id":1214073,"name":"chart-pie","svg":"svg/line/chart-pie.svg","category":"Business","style":"Line","tags":["pie-chart","chart","analysis","analytics","chart-pie"],"code":59559,"unicode":"e8a7","pro":false},{"uuid":"9d271640-2523-11e9-ac8a-0242ac140003","id":1214115,"name":"chart-pie-alt","svg":"svg/line/chart-pie-alt.svg","category":"Business","style":"Line","tags":["list-format","list","menu","chart-pie-alt"],"code":59603,"unicode":"e8d3","pro":false},{"uuid":"54718fd0-251b-11e9-9c75-0242ac140003","id":1213928,"name":"chat","svg":"svg/line/chat.svg","category":"Chat","style":"Line","tags":["comment","chat-bubble","message","chat"],"code":59428,"unicode":"e824","pro":false},{"uuid":"5471a7e0-251b-11e9-a72d-0242ac140003","id":1213930,"name":"chat-bubble-user","svg":"svg/line/chat-bubble-user.svg","category":"Chat","style":"Line","tags":["comment","account","user","chat-bubble","user-chat","message","chat-bubble-user"],"code":59431,"unicode":"e827","pro":false},{"uuid":"5472bb00-251b-11e9-9b01-0242ac140003","id":1213951,"name":"chat-info","svg":"svg/line/chat-info.svg","category":"Chat","style":"Line","tags":["chat-information","comment","chatting","chat","message","chat-info"],"code":59415,"unicode":"e817","pro":false},{"uuid":"5b2e0bc0-2529-11e9-9ba2-0242ac140003","id":1214353,"name":"check","svg":"svg/line/check.svg","category":"User Interface","style":"Line","tags":["approve","done","complete","success","right-tick","check"],"code":59843,"unicode":"e9c3","pro":false},{"uuid":"5b2e11a0-2529-11e9-851b-0242ac140003","id":1214354,"name":"check-circle","svg":"svg/line/check-circle.svg","category":"User Interface","style":"Line","tags":["approve","check","done","complete","success","right-tick","check-circle"],"code":59842,"unicode":"e9c2","pro":false},{"uuid":"5b2dbee0-2529-11e9-af19-0242ac140003","id":1214344,"name":"check-square","svg":"svg/line/check-square.svg","category":"User Interface","style":"Line","tags":["checked","ok","right","tick","tick-sign","check-square"],"code":59828,"unicode":"e9b4","pro":false},{"uuid":"5f776170-251f-11e9-bc39-0242ac140003","id":1213992,"name":"circle","svg":"svg/line/circle.svg","category":"Shape","style":"Line","tags":["shape","round","round-shape","circle"],"code":59481,"unicode":"e859","pro":false},{"uuid":"b46f2100-253b-11e9-bf75-0242ac140003","id":1214621,"name":"circle-layer","svg":"svg/line/circle-layer.svg","category":"Design Tools","style":"Line","tags":["circle","layer","design-tool","circle-layer"],"code":60104,"unicode":"eac8","pro":false},{"uuid":"b87c6070-2546-11e9-9e7c-0242ac140003","id":1215875,"name":"circuit","svg":"svg/line/circuit.svg","category":"Devices","style":"Line","tags":["chip","microchip","microprocessor","processor","circuit"],"code":60153,"unicode":"eaf9","pro":false},{"uuid":"ba8e2d50-2546-11e9-8f30-0242ac140003","id":1215946,"name":"clapper-board","svg":"svg/line/clapper-board.svg","category":"Multimedia","style":"Line","tags":["clapperboard","clapper","movie","cinema","clapper-board"],"code":60171,"unicode":"eb0b","pro":false},{"uuid":"e001e910-7e59-11ea-80fd-0242ac140003","id":1921390,"name":"clinic-medical","svg":"svg/line/clinic-medical.svg","category":"Medical","style":"Line","tags":["health","clinic","medical","building","covid-19","clinic-medical"],"code":60527,"unicode":"ec6f","pro":false},{"uuid":"68e04cf0-2527-11e9-a11c-0242ac140003","id":1214252,"name":"clipboard","svg":"svg/line/clipboard.svg","category":"File And Folder","style":"Line","tags":["blank-clipboard","task","todo","list","check-list","clipboard-notes","clipboard"],"code":59746,"unicode":"e962","pro":false},{"uuid":"68df2600-2527-11e9-ab69-0242ac140003","id":1214206,"name":"clipboard-alt","svg":"svg/line/clipboard-alt.svg","category":"File And Folder","style":"Line","tags":["clipboard","document","notes","clipboard-notes","study-notes","paper","clipboard-alt"],"code":59693,"unicode":"e92d","pro":false},{"uuid":"68e04780-2527-11e9-8fcd-0242ac140003","id":1214251,"name":"clipboard-blank","svg":"svg/line/clipboard-blank.svg","category":"File And Folder","style":"Line","tags":["clipboard","task","todo","list","check-list","clipboard-notes","clipboard-blank"],"code":59737,"unicode":"e959","pro":false},{"uuid":"68e04210-2527-11e9-8447-0242ac140003","id":1214250,"name":"clipboard-notes","svg":"svg/line/clipboard-notes.svg","category":"File And Folder","style":"Line","tags":["clipboard","task","todo","list","check-list","clipboard-notes"],"code":59738,"unicode":"e95a","pro":false},{"uuid":"0e66de20-2525-11e9-9ed8-0242ac140003","id":1214195,"name":"clock","svg":"svg/line/clock.svg","category":"Time","style":"Line","tags":["watch","time","wall-clock","clock"],"code":59680,"unicode":"e920","pro":false},{"uuid":"0e66baa0-2525-11e9-9cc5-0242ac140003","id":1214189,"name":"clock-eight","svg":"svg/line/clock-eight.svg","category":"Time","style":"Line","tags":["clock","watch","time","wall-clock","clock-alt","clock-eight"],"code":59692,"unicode":"e92c","pro":false},{"uuid":"0e66f940-2525-11e9-be9f-0242ac140003","id":1214200,"name":"clock-five","svg":"svg/line/clock-five.svg","category":"Time","style":"Line","tags":["clock","watch","time","wall-clock","clock-alt","clock-five"],"code":59686,"unicode":"e926","pro":false},{"uuid":"0e66ee80-2525-11e9-ac04-0242ac140003","id":1214198,"name":"clock-nine","svg":"svg/line/clock-nine.svg","category":"Time","style":"Line","tags":["clock","watch","time","wall-clock","clock-alt","clock-nine"],"code":59683,"unicode":"e923","pro":false},{"uuid":"0e66e900-2525-11e9-91fb-0242ac140003","id":1214197,"name":"clock-seven","svg":"svg/line/clock-seven.svg","category":"Time","style":"Line","tags":["clock","watch","time","wall-clock","clock-alt","clock-seven"],"code":59681,"unicode":"e921","pro":false},{"uuid":"0e66f3e0-2525-11e9-8199-0242ac140003","id":1214199,"name":"clock-ten","svg":"svg/line/clock-ten.svg","category":"Time","style":"Line","tags":["clock","watch","time","wall-clock","clock-alt","clock-ten"],"code":59684,"unicode":"e924","pro":false},{"uuid":"0e66e3a0-2525-11e9-9686-0242ac140003","id":1214196,"name":"clock-three","svg":"svg/line/clock-three.svg","category":"Time","style":"Line","tags":["clock","watch","time","wall-clock","clock-alt","clock-three"],"code":59682,"unicode":"e922","pro":false},{"uuid":"0e66c1d0-2525-11e9-a242-0242ac140003","id":1214190,"name":"clock-two","svg":"svg/line/clock-two.svg","category":"Time","style":"Line","tags":["clock","watch","time","wall-clock","clock-alt","clock-two"],"code":59674,"unicode":"e91a","pro":false},{"uuid":"dcdd10d0-251f-11e9-abec-0242ac140003","id":1213997,"name":"closed-captioning","svg":"svg/line/closed-captioning.svg","category":"Sign And Symbol","style":"Line","tags":["creative-commons","creative-commons-symbol","sign","symbol","closed-captioning"],"code":59483,"unicode":"e85b","pro":false},{"uuid":"dcdd3a90-251f-11e9-a5b6-0242ac140003","id":1214004,"name":"closed-captioning-slash","svg":"svg/line/closed-captioning-slash.svg","category":"Sign And Symbol","style":"Line","tags":["no-creative-commons","no-creative-commons-symbol","sign","symbol","closed-captioning-slash"],"code":59497,"unicode":"e869","pro":false},{"uuid":"37c1a3e0-252d-11e9-9a78-0242ac140003","id":1214547,"name":"cloud","svg":"svg/line/cloud.svg","category":"Weather","style":"Line","tags":["weather","forecast","cloud"],"code":60022,"unicode":"ea76","pro":false},{"uuid":"0f89fd20-252b-11e9-bdb5-0242ac140003","id":1214455,"name":"cloud-block","svg":"svg/line/cloud-block.svg","category":"Cloud And Web","style":"Line","tags":["block-cloud","block-cloud-data","block-data","block","cloud","online-data-storage","cloud-block"],"code":59929,"unicode":"ea19","pro":false},{"uuid":"0f89f230-252b-11e9-bb85-0242ac140003","id":1214454,"name":"cloud-bookmark","svg":"svg/line/cloud-bookmark.svg","category":"Cloud And Web","style":"Line","tags":["bookmark-cloud","bookmark-data-from-cloud","bookmark-cloud-data","online-data-storage","cloud-bookmark"],"code":59923,"unicode":"ea13","pro":false},{"uuid":"0f8a07f0-252b-11e9-856f-0242ac140003","id":1214456,"name":"cloud-check","svg":"svg/line/cloud-check.svg","category":"Cloud And Web","style":"Line","tags":["approved-cloud","checked-cloud","cloud","approved-data-storage","online-data-storage","cloud-check"],"code":59926,"unicode":"ea16","pro":false},{"uuid":"0f89d990-252b-11e9-8d5a-0242ac140003","id":1214452,"name":"cloud-computing","svg":"svg/line/cloud-computing.svg","category":"Cloud And Web","style":"Line","tags":["cloud-network","connection","data-connection","cloud-connection","cloud-data-connection","cloud-computing"],"code":59925,"unicode":"ea15","pro":false},{"uuid":"0f8affa0-252b-11e9-9a7a-0242ac140003","id":1214490,"name":"cloud-data-connection","svg":"svg/line/cloud-data-connection.svg","category":"Cloud And Web","style":"Line","tags":["cloud-connection","cloud-network","connection","data-connection","cloud-data-connection"],"code":59963,"unicode":"ea3b","pro":false},{"uuid":"0f8af410-252b-11e9-9ddf-0242ac140003","id":1214488,"name":"cloud-database-tree","svg":"svg/line/cloud-database-tree.svg","category":"Cloud And Web","style":"Line","tags":["cloud-connection","cloud-to-server-connection","cloud","server","data-storage","cloud-database-tree"],"code":60013,"unicode":"ea6d","pro":false},{"uuid":"0f8ae3d0-252b-11e9-b7d0-0242ac140003","id":1214486,"name":"cloud-download","svg":"svg/line/cloud-download.svg","category":"Cloud And Web","style":"Line","tags":["download","cloud","download-from-cloud","online-data-storage","down-arrow","cloud-download"],"code":59959,"unicode":"ea37","pro":false},{"uuid":"37c22590-252d-11e9-8f2d-0242ac140003","id":1214569,"name":"cloud-drizzle","svg":"svg/line/cloud-drizzle.svg","category":"Weather","style":"Line","tags":["rain","rainy","rainfall","cloud","weather","monsoon","cloud-drizzle"],"code":60041,"unicode":"ea89","pro":false},{"uuid":"0f8a83e0-252b-11e9-b41a-0242ac140003","id":1214472,"name":"cloud-exclamation","svg":"svg/line/cloud-exclamation.svg","category":"Cloud And Web","style":"Line","tags":["cloud-info","cloud-information","cloud-details","details","cloud-exclamation"],"code":59940,"unicode":"ea24","pro":false},{"uuid":"37c22010-252d-11e9-bd38-0242ac140003","id":1214568,"name":"cloud-hail","svg":"svg/line/cloud-hail.svg","category":"Weather","style":"Line","tags":["rain","rainy","rainfall","cloud","weather","monsoon","cloud-hail"],"code":60040,"unicode":"ea88","pro":false},{"uuid":"0f8ac450-252b-11e9-9dda-0242ac140003","id":1214483,"name":"cloud-heart","svg":"svg/line/cloud-heart.svg","category":"Cloud And Web","style":"Line","tags":["like-cloud","like-cloud-data","cloud","like","heart","cloud-heart"],"code":59952,"unicode":"ea30","pro":false},{"uuid":"0f8aced0-252b-11e9-b2a7-0242ac140003","id":1214484,"name":"cloud-info","svg":"svg/line/cloud-info.svg","category":"Cloud And Web","style":"Line","tags":["info-cloud","information-cloud","information-about-cloud","information-about-data","information-data","cloud-info"],"code":59955,"unicode":"ea33","pro":false},{"uuid":"0f8abee0-252b-11e9-9e4c-0242ac140003","id":1214482,"name":"cloud-lock","svg":"svg/line/cloud-lock.svg","category":"Cloud And Web","style":"Line","tags":["lock-cloud","safe-cloud-data","protected-cloud","secure-cloud-data","security","safety","protection","cloud-lock"],"code":59954,"unicode":"ea32","pro":false},{"uuid":"37c257c0-252d-11e9-968f-0242ac140003","id":1214578,"name":"cloud-meatball","svg":"svg/line/cloud-meatball.svg","category":"Weather","style":"Line","tags":["cold-weather","snow","cloud","weather","cloud-meatball"],"code":60054,"unicode":"ea96","pro":false},{"uuid":"37c22b30-252d-11e9-97d7-0242ac140003","id":1214570,"name":"cloud-moon","svg":"svg/line/cloud-moon.svg","category":"Weather","style":"Line","tags":["night-weather","weather","night","cloud","moon","forecast","cloud-moon"],"code":60042,"unicode":"ea8a","pro":false},{"uuid":"37c1aee0-252d-11e9-b3fb-0242ac140003","id":1214549,"name":"cloud-moon-hail","svg":"svg/line/cloud-moon-hail.svg","category":"Weather","style":"Line","tags":["weather","cloud","snowy","snow","moon","forecast","cloud-moon-hail"],"code":60024,"unicode":"ea78","pro":false},{"uuid":"37c25250-252d-11e9-a93c-0242ac140003","id":1214577,"name":"cloud-moon-meatball","svg":"svg/line/cloud-moon-meatball.svg","category":"Weather","style":"Line","tags":["cold-weather","snow","cloud","weather","moon","cloud-moon-meatball"],"code":60056,"unicode":"ea98","pro":false},{"uuid":"37c20fb0-252d-11e9-96ad-0242ac140003","id":1214565,"name":"cloud-moon-rain","svg":"svg/line/cloud-moon-rain.svg","category":"Weather","style":"Line","tags":["rainy-weather","rain","rainy","cloud","moon","weather","forecast","cloud-moon-rain"],"code":60044,"unicode":"ea8c","pro":false},{"uuid":"37c20a20-252d-11e9-98ef-0242ac140003","id":1214564,"name":"cloud-moon-showers","svg":"svg/line/cloud-moon-showers.svg","category":"Weather","style":"Line","tags":["rainy-weather","rain","rainy","cloud","moon","weather","forecast","cloud-moon-showers"],"code":60036,"unicode":"ea84","pro":false},{"uuid":"0f8ad9a0-252b-11e9-8c10-0242ac140003","id":1214485,"name":"cloud-question","svg":"svg/line/cloud-question.svg","category":"Cloud And Web","style":"Line","tags":["help","support","cloud","cloud-help","support-cloud","cloud-question"],"code":60004,"unicode":"ea64","pro":false},{"uuid":"37c1f300-252d-11e9-bb90-0242ac140003","id":1214560,"name":"cloud-rain","svg":"svg/line/cloud-rain.svg","category":"Weather","style":"Line","tags":["rainy-weather","rain","rainy","cloud","weather","forecast","cloud-rain"],"code":60034,"unicode":"ea82","pro":false},{"uuid":"37c1fef0-252d-11e9-9ab6-0242ac140003","id":1214562,"name":"cloud-rain-sun","svg":"svg/line/cloud-rain-sun.svg","category":"Weather","style":"Line","tags":["rainy-weather","rain","rainy","cloud","sun","weather","forecast","cloud-rain-sun"],"code":60037,"unicode":"ea85","pro":false},{"uuid":"0f8ab940-252b-11e9-885f-0242ac140003","id":1214481,"name":"cloud-redo","svg":"svg/line/cloud-redo.svg","category":"Cloud And Web","style":"Line","tags":["refresh-cloud","reload-cloud","refresh-data-from-cloud","cloud","refresh","reload","cloud-redo"],"code":59949,"unicode":"ea2d","pro":false},{"uuid":"0f8a9cc0-252b-11e9-8c1b-0242ac140003","id":1214476,"name":"cloud-share","svg":"svg/line/cloud-share.svg","category":"Cloud And Web","style":"Line","tags":["share-cloud","share-cloud-data","share","cloud","share-data","cloud-share"],"code":59944,"unicode":"ea28","pro":false},{"uuid":"0f8a9700-252b-11e9-a5cf-0242ac140003","id":1214475,"name":"cloud-shield","svg":"svg/line/cloud-shield.svg","category":"Cloud And Web","style":"Line","tags":["shield","protected-cloud","shield-cloud","protection","cloud-data-shield","secure-data","cloud-shield"],"code":59946,"unicode":"ea2a","pro":false},{"uuid":"37c21aa0-252d-11e9-8cdc-0242ac140003","id":1214567,"name":"cloud-showers","svg":"svg/line/cloud-showers.svg","category":"Weather","style":"Line","tags":["rain","rainy","rainfall","cloud","weather","monsoon","cloud-showers"],"code":60039,"unicode":"ea87","pro":false},{"uuid":"37c21520-252d-11e9-a861-0242ac140003","id":1214566,"name":"cloud-showers-alt","svg":"svg/line/cloud-showers-alt.svg","category":"Weather","style":"Line","tags":["rain","rainy","rainfall","cloud","weather","monsoon","cloud-showers-alt"],"code":60038,"unicode":"ea86","pro":false},{"uuid":"37c18270-252d-11e9-bb7c-0242ac140003","id":1214541,"name":"cloud-showers-heavy","svg":"svg/line/cloud-showers-heavy.svg","category":"Weather","style":"Line","tags":["rain","rainy","rainfall","cloud","weather","monsoon","cloud-showers-heavy"],"code":60016,"unicode":"ea70","pro":false},{"uuid":"0f8a7320-252b-11e9-8a35-0242ac140003","id":1214469,"name":"cloud-slash","svg":"svg/line/cloud-slash.svg","category":"Cloud And Web","style":"Line","tags":["no-connection","no-cloud","disconnect-network","network-problem","not-available","cloud-slash"],"code":59938,"unicode":"ea22","pro":false},{"uuid":"37c1b470-252d-11e9-8534-0242ac140003","id":1214550,"name":"cloud-sun","svg":"svg/line/cloud-sun.svg","category":"Weather","style":"Line","tags":["warm-weather","warm","weather","cloud","sun","forecast","cloud-sun"],"code":60577,"unicode":"eca1","pro":false},{"uuid":"37c1a960-252d-11e9-a389-0242ac140003","id":1214548,"name":"cloud-sun-hail","svg":"svg/line/cloud-sun-hail.svg","category":"Weather","style":"Line","tags":["weather","cloud","snowy","snow","sun","forecast","cloud-sun-hail"],"code":60021,"unicode":"ea75","pro":false},{"uuid":"37c24cd0-252d-11e9-b7f1-0242ac140003","id":1214576,"name":"cloud-sun-meatball","svg":"svg/line/cloud-sun-meatball.svg","category":"Weather","style":"Line","tags":["cold-weather","snow","cloud","weather","sun","cloud-sun-meatball"],"code":60048,"unicode":"ea90","pro":false},{"uuid":"37c18da0-252d-11e9-b7dd-0242ac140003","id":1214543,"name":"cloud-sun-rain","svg":"svg/line/cloud-sun-rain.svg","category":"Weather","style":"Line","tags":["cloud-drizzel","rainy-weather","rain","rainy","cloud","sun","weather","forecast","cloud-sun-rain"],"code":60026,"unicode":"ea7a","pro":false},{"uuid":"37c17110-252d-11e9-b100-0242ac140003","id":1214538,"name":"cloud-sun-rain-alt","svg":"svg/line/cloud-sun-rain-alt.svg","category":"Weather","style":"Line","tags":["cloud-drizzel","rainy-weather","rain","rainy","cloud","sun","weather","forecast","cloud-sun-rain-alt"],"code":60064,"unicode":"eaa0","pro":false},{"uuid":"37c1f930-252d-11e9-9f66-0242ac140003","id":1214561,"name":"cloud-sun-tear","svg":"svg/line/cloud-sun-tear.svg","category":"Weather","style":"Line","tags":["rainy-weather","rain","rainy","cloud","sun","weather","forecast","cloud-sun-tear"],"code":60035,"unicode":"ea83","pro":false},{"uuid":"0f89e600-252b-11e9-8812-0242ac140003","id":1214453,"name":"cloud-times","svg":"svg/line/cloud-times.svg","category":"Cloud And Web","style":"Line","tags":["cancel-cloud","close-cloud","cloud","delete-cloud-data","online-data-storage","cloud-times"],"code":59928,"unicode":"ea18","pro":false},{"uuid":"0f8a8ee0-252b-11e9-ad05-0242ac140003","id":1214474,"name":"cloud-unlock","svg":"svg/line/cloud-unlock.svg","category":"Cloud And Web","style":"Line","tags":["unlock-cloud","unlock","cloud","unsafe-cloud","data-security","online-data-storage","cloud-unlock"],"code":59943,"unicode":"ea27","pro":false},{"uuid":"0f8a8960-252b-11e9-a031-0242ac140003","id":1214473,"name":"cloud-upload","svg":"svg/line/cloud-upload.svg","category":"Cloud And Web","style":"Line","tags":["upload","cloud","online-data-storage","up-arrow","cloud-upload"],"code":59939,"unicode":"ea23","pro":false},{"uuid":"0f8aeda0-252b-11e9-b490-0242ac140003","id":1214487,"name":"cloud-wifi","svg":"svg/line/cloud-wifi.svg","category":"Cloud And Web","style":"Line","tags":["cloud-signal","signal","network-signal","network-cloud","cloud-wifi"],"code":59961,"unicode":"ea39","pro":false},{"uuid":"37c198d0-252d-11e9-b752-0242ac140003","id":1214545,"name":"cloud-wind","svg":"svg/line/cloud-wind.svg","category":"Weather","style":"Line","tags":["wind","windy","cloud","weather","cloud-wind"],"code":60019,"unicode":"ea73","pro":false},{"uuid":"37c16b10-252d-11e9-aa58-0242ac140003","id":1214537,"name":"clouds","svg":"svg/line/clouds.svg","category":"Weather","style":"Line","tags":["cloud","cloudy","weather","forecast","clouds"],"code":60118,"unicode":"ead6","pro":false},{"uuid":"47da41e0-2522-11e9-b3f6-0242ac140003","id":1214061,"name":"club","svg":"svg/line/club.svg","category":"Sports","style":"Line","tags":["card","playing-card-sign","club-sign","sign","symbol","club"],"code":59548,"unicode":"e89c","pro":false},{"uuid":"bd3680c0-5427-11ea-9b8a-0242ac140003","id":1784381,"name":"code-branch","svg":"svg/line/code-branch.svg","category":"Cloud And Web","style":"Line","tags":["code-fork","github","code","coding","development","code-branch"],"code":60543,"unicode":"ec7f","pro":false},{"uuid":"d5bae060-253b-11e9-9ed2-0242ac140003","id":1214669,"name":"coffee","svg":"svg/line/coffee.svg","category":"User Interface","style":"Line","tags":["cup","mug","tea","drink","beverage","coffee"],"code":60148,"unicode":"eaf4","pro":false},{"uuid":"5b2bf210-2529-11e9-977f-0242ac140003","id":1214292,"name":"cog","svg":"svg/line/cog.svg","category":"User Interface","style":"Line","tags":["setting","gear","settings","cogwheel","cog"],"code":59776,"unicode":"e980","pro":false},{"uuid":"9d273f20-2523-11e9-8d73-0242ac140003","id":1214122,"name":"coins","svg":"svg/line/coins.svg","category":"Business","style":"Line","tags":["money","cash","finance","coins"],"code":59606,"unicode":"e8d6","pro":false},{"uuid":"0f8a3dd0-252b-11e9-b2ca-0242ac140003","id":1214461,"name":"columns","svg":"svg/line/columns.svg","category":"Cloud And Web","style":"Line","tags":["web-layout","layout","section","grid","columns"],"code":59930,"unicode":"ea1a","pro":false},{"uuid":"547216d0-251b-11e9-bd5f-0242ac140003","id":1213938,"name":"comment","svg":"svg/line/comment.svg","category":"Chat","style":"Line","tags":["chat","chat-bubble","chatting","communication","message","comment"],"code":59405,"unicode":"e80d","pro":false},{"uuid":"71f07710-5427-11ea-8ed0-0242ac140003","id":1784368,"name":"comment-add","svg":"svg/line/comment-add.svg","category":"Chat","style":"Line","tags":["add-comment","chat","chatting","message","add-message","comment-add"],"code":60492,"unicode":"ec4c","pro":false},{"uuid":"547253e0-251b-11e9-86be-0242ac140003","id":1213943,"name":"comment-alt","svg":"svg/line/comment-alt.svg","category":"Chat","style":"Line","tags":["chat-bubble","chat","chatting","communication","comment","message","comment-alt"],"code":59434,"unicode":"e82a","pro":false},{"uuid":"54726bf0-251b-11e9-8a16-0242ac140003","id":1213945,"name":"comment-alt-block","svg":"svg/line/comment-alt-block.svg","category":"Chat","style":"Line","tags":["block-chat","block-message","chat","communication","chat-bubble","message","comment-alt-block"],"code":59421,"unicode":"e81d","pro":false},{"uuid":"54722320-251b-11e9-871d-0242ac140003","id":1213939,"name":"comment-alt-chart-lines","svg":"svg/line/comment-alt-chart-lines.svg","category":"Chat","style":"Line","tags":["chat-signal","business-chat","business-communication","chat","chatting","comment","chat-bubble","message","conversation","comment-alt-chart-lines"],"code":59400,"unicode":"e808","pro":false},{"uuid":"54728a40-251b-11e9-8a01-0242ac140003","id":1213947,"name":"comment-alt-check","svg":"svg/line/comment-alt-check.svg","category":"Chat","style":"Line","tags":["approve-chat","chat-approve","success-chat","chat-bubble","tickmark","message","comment-alt-check"],"code":59426,"unicode":"e822","pro":false},{"uuid":"54719be0-251b-11e9-aed2-0242ac140003","id":1213929,"name":"comment-alt-dots","svg":"svg/line/comment-alt-dots.svg","category":"Chat","style":"Line","tags":["comment","chat-bubble","chat","chatting","communication","message","comment-alt-dots"],"code":59397,"unicode":"e805","pro":false},{"uuid":"547183c0-251b-11e9-8556-0242ac140003","id":1213927,"name":"comment-alt-download","svg":"svg/line/comment-alt-download.svg","category":"Chat","style":"Line","tags":["download-chat-bubble","chat-download","chat","chat-bubble","download","message","comment-alt-download"],"code":59401,"unicode":"e809","pro":false},{"uuid":"54716b00-251b-11e9-96a3-0242ac140003","id":1213925,"name":"comment-alt-edit","svg":"svg/line/comment-alt-edit.svg","category":"Chat","style":"Line","tags":["edit-chat-bubble","edit-message","edit-chat","chat","chat-bubble","message","comment-alt-edit"],"code":59393,"unicode":"e801","pro":false},{"uuid":"5472ee90-251b-11e9-bb71-0242ac140003","id":1213955,"name":"comment-alt-exclamation","svg":"svg/line/comment-alt-exclamation.svg","category":"Chat","style":"Line","tags":["chat-info","chat-information","comment","chat-bubble","message","comment-alt-exclamation"],"code":59439,"unicode":"e82f","pro":false},{"uuid":"54711d10-251b-11e9-8e9a-0242ac140003","id":1213919,"name":"comment-alt-heart","svg":"svg/line/comment-alt-heart.svg","category":"Chat","style":"Line","tags":["love-chat","love-chating","chat","chatting","comment","chat-bubble","message","conversation","comment-alt-heart"],"code":59404,"unicode":"e80c","pro":false},{"uuid":"547152d0-251b-11e9-b0a0-0242ac140003","id":1213923,"name":"comment-alt-image","svg":"svg/line/comment-alt-image.svg","category":"Chat","style":"Line","tags":["image-sending-via-chat","multimedia-message","multimedia-sms","picture-share","chat-bubble","chat","comment-alt-image"],"code":59418,"unicode":"e81a","pro":false},{"uuid":"5472dfc0-251b-11e9-916f-0242ac140003","id":1213954,"name":"comment-alt-info","svg":"svg/line/comment-alt-info.svg","category":"Chat","style":"Line","tags":["chat-info","chat-information","comment","chat","bubble","message","comment-alt-info"],"code":59451,"unicode":"e83b","pro":false},{"uuid":"54720ac0-251b-11e9-994b-0242ac140003","id":1213937,"name":"comment-alt-lines","svg":"svg/line/comment-alt-lines.svg","category":"Chat","style":"Line","tags":["chat","chatting","comment","chat-bubble","message","conversation","comment-alt-lines"],"code":59409,"unicode":"e811","pro":false},{"uuid":"54713700-251b-11e9-a81a-0242ac140003","id":1213921,"name":"comment-alt-lock","svg":"svg/line/comment-alt-lock.svg","category":"Chat","style":"Line","tags":["lock-chat-bubble","secure-chat","secure-chatting","chat-bubble","chat","message","comment-alt-lock"],"code":59402,"unicode":"e80a","pro":false},{"uuid":"5470f8a0-251b-11e9-8d78-0242ac140003","id":1213916,"name":"comment-alt-medical","svg":"svg/line/comment-alt-medical.svg","category":"Chat","style":"Line","tags":["medical-chat","medical-contact","chat","conversion","bubble","message","comment-alt-medical"],"code":59414,"unicode":"e816","pro":false},{"uuid":"547247a0-251b-11e9-8360-0242ac140003","id":1213942,"name":"comment-alt-message","svg":"svg/line/comment-alt-message.svg","category":"Chat","style":"Line","tags":["chat-bubble","chat","chatting","communication","message","comment-alt-message"],"code":59429,"unicode":"e825","pro":false},{"uuid":"5471cec0-251b-11e9-9629-0242ac140003","id":1213933,"name":"comment-alt-notes","svg":"svg/line/comment-alt-notes.svg","category":"Chat","style":"Line","tags":["chat","chatting","comment","bubble","message","conversation","comment-alt-notes"],"code":59416,"unicode":"e818","pro":false},{"uuid":"54705740-251b-11e9-833a-0242ac140003","id":1213903,"name":"comment-alt-plus","svg":"svg/line/comment-alt-plus.svg","category":"Chat","style":"Line","tags":["add-chat-bubble","new-chat","chat","chatting","communication","message","comment-alt-plus"],"code":59417,"unicode":"e819","pro":false},{"uuid":"5470ec60-251b-11e9-a3f6-0242ac140003","id":1213915,"name":"comment-alt-question","svg":"svg/line/comment-alt-question.svg","category":"Chat","style":"Line","tags":["question-mark-chat-bubble","chat","chat-bubble","help-chat","support-chat","message","comment-alt-question"],"code":59423,"unicode":"e81f","pro":false},{"uuid":"5470d420-251b-11e9-9f86-0242ac140003","id":1213913,"name":"comment-alt-redo","svg":"svg/line/comment-alt-redo.svg","category":"Chat","style":"Line","tags":["reload-chat","refresh-chat","chat","chat-bubble","refresh","reload","message","chat-sync","comment-alt-redo"],"code":59446,"unicode":"e836","pro":false},{"uuid":"5470bb60-251b-11e9-a5a5-0242ac140003","id":1213911,"name":"comment-alt-search","svg":"svg/line/comment-alt-search.svg","category":"Chat","style":"Line","tags":["search-chat","search-message","find-chat","find-message","search-chat-bubble","chat","comment-alt-search"],"code":59395,"unicode":"e803","pro":false},{"uuid":"5470a2d0-251b-11e9-8cbc-0242ac140003","id":1213909,"name":"comment-alt-share","svg":"svg/line/comment-alt-share.svg","category":"Chat","style":"Line","tags":["share-chat-bubble","chat","chat-bubble","share-chat","message","share","comment-alt-share"],"code":59406,"unicode":"e80e","pro":false},{"uuid":"54708900-251b-11e9-9925-0242ac140003","id":1213907,"name":"comment-alt-shield","svg":"svg/line/comment-alt-shield.svg","category":"Chat","style":"Line","tags":["shield-chat-bubble","secure-chat","protected-chat","chat-bubble","chat","message","comment-alt-shield"],"code":59427,"unicode":"e823","pro":false},{"uuid":"e7d7d5f0-25f0-11e9-9aeb-0242ac140003","id":1218394,"name":"comment-alt-slash","svg":"svg/line/comment-alt-slash.svg","category":"User Interface","style":"Line","tags":["no-message","no-chat","no-chat-bubble","no-communication","comment-alt-slash"],"code":60366,"unicode":"ebce","pro":false},{"uuid":"54707050-251b-11e9-9c39-0242ac140003","id":1213905,"name":"comment-alt-upload","svg":"svg/line/comment-alt-upload.svg","category":"Chat","style":"Line","tags":["upload-chat-bubble","chat","chat-bubble","upload","message","comment-alt-upload"],"code":59407,"unicode":"e80f","pro":false},{"uuid":"5472aec0-251b-11e9-a99f-0242ac140003","id":1213950,"name":"comment-alt-verify","svg":"svg/line/comment-alt-verify.svg","category":"Chat","style":"Line","tags":["approve-chat","chat-approve","success-chat","chat-bubble","tick-mark","message","comment-alt-verify"],"code":59445,"unicode":"e835","pro":false},{"uuid":"54727df0-251b-11e9-9a7c-0242ac140003","id":1213946,"name":"comment-block","svg":"svg/line/comment-block.svg","category":"Chat","style":"Line","tags":["block-chat","block-message","chat","communication","block-chat-bubble","chat-bubble","message","comment-block"],"code":59392,"unicode":"e800","pro":false},{"uuid":"54725fd0-251b-11e9-94b1-0242ac140003","id":1213944,"name":"comment-chart-line","svg":"svg/line/comment-chart-line.svg","category":"Chat","style":"Line","tags":["business-chat","business-communication","chat","chatting","comment","chat-bubble","message","conversation","comment-chart-line"],"code":59422,"unicode":"e81e","pro":false},{"uuid":"547296b0-251b-11e9-8655-0242ac140003","id":1213948,"name":"comment-check","svg":"svg/line/comment-check.svg","category":"Chat","style":"Line","tags":["approve-chat","chat-approve","success-chat","chat-bubble","tick","message","comment-check"],"code":59399,"unicode":"e807","pro":false},{"uuid":"5471c040-251b-11e9-ab5f-0242ac140003","id":1213932,"name":"comment-dots","svg":"svg/line/comment-dots.svg","category":"Chat","style":"Line","tags":["chat","chatting","comment","message","conversation","comment-dots"],"code":59408,"unicode":"e810","pro":false},{"uuid":"54717770-251b-11e9-9f63-0242ac140003","id":1213926,"name":"comment-download","svg":"svg/line/comment-download.svg","category":"Chat","style":"Line","tags":["download-chat-bubble","chat-download","chat","chat-bubble","download","message","comment-download"],"code":59398,"unicode":"e806","pro":false},{"uuid":"54715ee0-251b-11e9-81af-0242ac140003","id":1213924,"name":"comment-edit","svg":"svg/line/comment-edit.svg","category":"Chat","style":"Line","tags":["edit-chat-bubble","edit-message","edit-chat","chat","chat-bubble","message","comment-edit"],"code":59420,"unicode":"e81c","pro":false},{"uuid":"5472d3a0-251b-11e9-b3ad-0242ac140003","id":1213953,"name":"comment-exclamation","svg":"svg/line/comment-exclamation.svg","category":"Chat","style":"Line","tags":["chat-info","chat-information","comment","chat","message","comment-exclamation"],"code":59440,"unicode":"e830","pro":false},{"uuid":"547110d0-251b-11e9-8d01-0242ac140003","id":1213918,"name":"comment-heart","svg":"svg/line/comment-heart.svg","category":"Chat","style":"Line","tags":["love-chat","love-chating","chat","chatting","comment","chat-bubble","message","conversation","comment-heart"],"code":59411,"unicode":"e813","pro":false},{"uuid":"54714660-251b-11e9-abf9-0242ac140003","id":1213922,"name":"comment-image","svg":"svg/line/comment-image.svg","category":"Chat","style":"Line","tags":["image-sending-via-chat","multimedia-message","multimedia-sms","picture-share","chat","bubble","comment-image"],"code":59433,"unicode":"e829","pro":false},{"uuid":"5472faf0-251b-11e9-8be4-0242ac140003","id":1213956,"name":"comment-info","svg":"svg/line/comment-info.svg","category":"Chat","style":"Line","tags":["chat-info","chat-information","comment","chat-bubble","message","chat","comment-info"],"code":59449,"unicode":"e839","pro":false},{"uuid":"5472c720-251b-11e9-b2c8-0242ac140003","id":1213952,"name":"comment-info-alt","svg":"svg/line/comment-info-alt.svg","category":"Chat","style":"Line","tags":["chat-info","chat-information","comment","chat","message","comment-info-alt"],"code":59412,"unicode":"e814","pro":false},{"uuid":"5471f260-251b-11e9-a1d6-0242ac140003","id":1213935,"name":"comment-lines","svg":"svg/line/comment-lines.svg","category":"Chat","style":"Line","tags":["chat","chatting","comment","chat-bubble","message","conversation","comment-lines"],"code":59424,"unicode":"e820","pro":false},{"uuid":"54712950-251b-11e9-b932-0242ac140003","id":1213920,"name":"comment-lock","svg":"svg/line/comment-lock.svg","category":"Chat","style":"Line","tags":["lock-chat-bubble","secure-chat","secure-chatting","chat-bubble","chat","message","comment-lock"],"code":59410,"unicode":"e812","pro":false},{"uuid":"54710480-251b-11e9-ab74-0242ac140003","id":1213917,"name":"comment-medical","svg":"svg/line/comment-medical.svg","category":"Chat","style":"Line","tags":["medical-chat","medical-contact","chat","conversion","chat-bubble","message","comment-medical"],"code":59403,"unicode":"e80b","pro":false},{"uuid":"54722f60-251b-11e9-867d-0242ac140003","id":1213940,"name":"comment-message","svg":"svg/line/comment-message.svg","category":"Chat","style":"Line","tags":["chat-bubble","chat","chatting","communication","message","comment-message"],"code":59453,"unicode":"e83d","pro":false},{"uuid":"5471feb0-251b-11e9-86f5-0242ac140003","id":1213936,"name":"comment-notes","svg":"svg/line/comment-notes.svg","category":"Chat","style":"Line","tags":["chat","chatting","comment","chat-bubble","message","conversation","comment-notes"],"code":59438,"unicode":"e82e","pro":false},{"uuid":"547048d0-251b-11e9-a3d4-0242ac140003","id":1213902,"name":"comment-plus","svg":"svg/line/comment-plus.svg","category":"Chat","style":"Line","tags":["add-chat","new-chat","chat","chatting","communication","message","comment-plus"],"code":59436,"unicode":"e82c","pro":false},{"uuid":"5470e040-251b-11e9-a07a-0242ac140003","id":1213914,"name":"comment-question","svg":"svg/line/comment-question.svg","category":"Chat","style":"Line","tags":["question-mark-chat-bubble","chat","chat-bubble","help-chat","support-chat","message","comment-question"],"code":59437,"unicode":"e82d","pro":false},{"uuid":"5470c7c0-251b-11e9-97d9-0242ac140003","id":1213912,"name":"comment-redo","svg":"svg/line/comment-redo.svg","category":"Chat","style":"Line","tags":["reload-chat","refresh-chat","chat","chat-bubble","refresh","reload","message","chat-sync","comment-redo"],"code":59425,"unicode":"e821","pro":false},{"uuid":"5470aed0-251b-11e9-ade7-0242ac140003","id":1213910,"name":"comment-search","svg":"svg/line/comment-search.svg","category":"Chat","style":"Line","tags":["search-chat","search-message","find-chat","find-message","search-chat-bubble","chat","message","comment-search"],"code":59430,"unicode":"e826","pro":false},{"uuid":"54709560-251b-11e9-b7e4-0242ac140003","id":1213908,"name":"comment-share","svg":"svg/line/comment-share.svg","category":"Chat","style":"Line","tags":["share-chat-bubble","chat","chat-bubble","share-chat","share","message","comment-share"],"code":59419,"unicode":"e81b","pro":false},{"uuid":"54707cc0-251b-11e9-8b47-0242ac140003","id":1213906,"name":"comment-shield","svg":"svg/line/comment-shield.svg","category":"Chat","style":"Line","tags":["shield-chat-bubble","secure-chat","protected-chat","chat","message","bubble","comment-shield"],"code":59396,"unicode":"e804","pro":false},{"uuid":"e7d7dba0-25f0-11e9-9445-0242ac140003","id":1218395,"name":"comment-slash","svg":"svg/line/comment-slash.svg","category":"User Interface","style":"Line","tags":["no-message","no-chat","no-chat-bubble","no-communication","comment-slash"],"code":60363,"unicode":"ebcb","pro":false},{"uuid":"547063c0-251b-11e9-9ead-0242ac140003","id":1213904,"name":"comment-upload","svg":"svg/line/comment-upload.svg","category":"Chat","style":"Line","tags":["upload-chat-bubble","chatting","chat","chat-bubble","upload","message","comment-upload"],"code":59413,"unicode":"e815","pro":false},{"uuid":"5472a2b0-251b-11e9-b4d9-0242ac140003","id":1213949,"name":"comment-verify","svg":"svg/line/comment-verify.svg","category":"Chat","style":"Line","tags":["approve-chat","chat-approve","success-chat","chat-bubble","tick-mark","message","comment-verify"],"code":59435,"unicode":"e82b","pro":false},{"uuid":"5471b440-251b-11e9-8e39-0242ac140003","id":1213931,"name":"comments","svg":"svg/line/comments.svg","category":"Chat","style":"Line","tags":["chat","chatting","comment","message","conversation","comments"],"code":59394,"unicode":"e802","pro":false},{"uuid":"5471e2f0-251b-11e9-ac68-0242ac140003","id":1213934,"name":"comments-alt","svg":"svg/line/comments-alt.svg","category":"Chat","style":"Line","tags":["chat","chatting","comment","chat-bubble","message","conversation","comments-alt"],"code":59432,"unicode":"e828","pro":false},{"uuid":"ba8e22b0-2546-11e9-8029-0242ac140003","id":1215945,"name":"compact-disc","svg":"svg/line/compact-disc.svg","category":"Multimedia","style":"Line","tags":["disc","cd","dvd","vinyl","compact-disc"],"code":60167,"unicode":"eb07","pro":false},{"uuid":"ae6a0950-5427-11ea-b38a-0242ac140003","id":1784373,"name":"comparison","svg":"svg/line/comparison.svg","category":"Business","style":"Line","tags":["visualisation-graph","graph","chart","comparison"],"code":60498,"unicode":"ec52","pro":false},{"uuid":"f965ce90-2523-11e9-ac89-0242ac140003","id":1214127,"name":"compass","svg":"svg/line/compass.svg","category":"Location And Map","style":"Line","tags":["direction-tool","location","navigation","direction","compass"],"code":59616,"unicode":"e8e0","pro":false},{"uuid":"187911e0-254b-11e9-b85b-0242ac140003","id":1216314,"name":"compress","svg":"svg/line/compress.svg","category":"Design Tools","style":"Line","tags":["resize","arrow","compress"],"code":60301,"unicode":"eb8d","pro":false},{"uuid":"bd880870-2546-11e9-9e1d-0242ac140003","id":1216201,"name":"compress-alt","svg":"svg/line/compress-alt.svg","category":"Arrows","style":"Line","tags":["resize","minimize","diagonal-arrow","compress-alt"],"code":60278,"unicode":"eb76","pro":false},{"uuid":"bd880230-2546-11e9-863f-0242ac140003","id":1216200,"name":"compress-alt-left","svg":"svg/line/compress-alt-left.svg","category":"Arrows","style":"Line","tags":["resize","minimize","diagonal-arrow","compress-alt-left"],"code":60292,"unicode":"eb84","pro":false},{"uuid":"bd86ee90-2546-11e9-9acb-0242ac140003","id":1216156,"name":"compress-arrows","svg":"svg/line/compress-arrows.svg","category":"Arrows","style":"Line","tags":["compress","shrink","minimize","resize","arrows","compress-arrows"],"code":60224,"unicode":"eb40","pro":false},{"uuid":"18790170-254b-11e9-b738-0242ac140003","id":1216311,"name":"compress-lines","svg":"svg/line/compress-lines.svg","category":"Design Tools","style":"Line","tags":["vertical-minimize","minimize","resize","shrink","vertical-shrink","compress-lines"],"code":60294,"unicode":"eb86","pro":false},{"uuid":"bd872a90-2546-11e9-bb67-0242ac140003","id":1216166,"name":"compress-point","svg":"svg/line/compress-point.svg","category":"Arrows","style":"Line","tags":["arrow","scale","resize","compress-point"],"code":60238,"unicode":"eb4e","pro":false},{"uuid":"187906f0-254b-11e9-ada6-0242ac140003","id":1216312,"name":"compress-v","svg":"svg/line/compress-v.svg","category":"Design Tools","style":"Line","tags":["vertical-minimize","minimize","resize","compress","shrink","compress-v"],"code":60296,"unicode":"eb88","pro":false},{"uuid":"b5b98390-2521-11e9-b25b-0242ac140003","id":1214029,"name":"confused","svg":"svg/line/confused.svg","category":"Emoji","style":"Line","tags":["confused-face","confuse","sad","smirking-face","emoji","confused"],"code":59517,"unicode":"e87d","pro":false},{"uuid":"751edc10-251e-11e9-b367-0242ac140003","id":1213963,"name":"constructor","svg":"svg/line/constructor.svg","category":"Construction","style":"Line","tags":["construction-worker","worker","engineer","constructor"],"code":59460,"unicode":"e844","pro":false},{"uuid":"68e00cb0-2527-11e9-a118-0242ac140003","id":1214242,"name":"copy","svg":"svg/line/copy.svg","category":"File And Folder","style":"Line","tags":["document","file","files","pages","blank-files","copy"],"code":59729,"unicode":"e951","pro":false},{"uuid":"68dfec10-2527-11e9-a7bf-0242ac140003","id":1214237,"name":"copy-alt","svg":"svg/line/copy-alt.svg","category":"File And Folder","style":"Line","tags":["documents","files","copy","multiple-file","copy-alt"],"code":59725,"unicode":"e94d","pro":false},{"uuid":"68dff1a0-2527-11e9-bd95-0242ac140003","id":1214238,"name":"copy-landscape","svg":"svg/line/copy-landscape.svg","category":"File And Folder","style":"Line","tags":["documents","files","copy","copy-landscape"],"code":59724,"unicode":"e94c","pro":false},{"uuid":"dcdd17c0-251f-11e9-9a21-0242ac140003","id":1213998,"name":"copyright","svg":"svg/line/copyright.svg","category":"Sign And Symbol","style":"Line","tags":["copyright-sign","sign","symbol","copyright"],"code":59482,"unicode":"e85a","pro":false},{"uuid":"bd87af30-2546-11e9-add3-0242ac140003","id":1216187,"name":"corner-down-left","svg":"svg/line/corner-down-left.svg","category":"Arrows","style":"Line","tags":["turn-down-left","left-down","left","arrow","corner-down-left"],"code":60256,"unicode":"eb60","pro":false},{"uuid":"bd87a910-2546-11e9-86f2-0242ac140003","id":1216186,"name":"corner-down-right","svg":"svg/line/corner-down-right.svg","category":"Arrows","style":"Line","tags":["turn-down-right","right-down","right","arrow","corner-down-right"],"code":60258,"unicode":"eb62","pro":false},{"uuid":"bd87c200-2546-11e9-aea0-0242ac140003","id":1216190,"name":"corner-down-right-alt","svg":"svg/line/corner-down-right-alt.svg","category":"Arrows","style":"Line","tags":["subdirectory-arrow","arrow","corner-down-right-alt"],"code":60263,"unicode":"eb67","pro":false},{"uuid":"bd87a2d0-2546-11e9-acf3-0242ac140003","id":1216185,"name":"corner-left-down","svg":"svg/line/corner-left-down.svg","category":"Arrows","style":"Line","tags":["turn-left-down","turn-left","left-down","turning","direction","arrow","corner-left-down"],"code":60260,"unicode":"eb64","pro":false},{"uuid":"bd879c80-2546-11e9-bb06-0242ac140003","id":1216184,"name":"corner-right-down","svg":"svg/line/corner-right-down.svg","category":"Arrows","style":"Line","tags":["turn-right-down","turn-right","right-down","turning","direction","arrow","corner-right-down"],"code":60257,"unicode":"eb61","pro":false},{"uuid":"bd879650-2546-11e9-97c7-0242ac140003","id":1216183,"name":"corner-up-left","svg":"svg/line/corner-up-left.svg","category":"Arrows","style":"Line","tags":["turn-up-left","turn-left","left-turn","left","arrow","direction","corner-up-left"],"code":60259,"unicode":"eb63","pro":false},{"uuid":"bd882120-2546-11e9-89c4-0242ac140003","id":1216205,"name":"corner-up-left-alt","svg":"svg/line/corner-up-left-alt.svg","category":"Arrows","style":"Line","tags":["reply","arrow","direction","left-arrow","corner-up-left-alt"],"code":60284,"unicode":"eb7c","pro":false},{"uuid":"bd879020-2546-11e9-b8c5-0242ac140003","id":1216182,"name":"corner-up-right","svg":"svg/line/corner-up-right.svg","category":"Arrows","style":"Line","tags":["turn-up-right","turn-right","right-turn","right","arrow","direction","corner-up-right"],"code":60252,"unicode":"eb5c","pro":false},{"uuid":"bd8690b0-2546-11e9-b995-0242ac140003","id":1216139,"name":"corner-up-right-alt","svg":"svg/line/corner-up-right-alt.svg","category":"Arrows","style":"Line","tags":["forward","arrow","right-arrow","direction","corner-up-right-alt"],"code":60262,"unicode":"eb66","pro":false},{"uuid":"e0024c30-7e59-11ea-a643-0242ac140003","id":1921395,"name":"coronavirus","svg":"svg/line/coronavirus.svg","category":"Medical","style":"Line","tags":["virus","covid-19","covid","corona-virus","coronavirus"],"code":60533,"unicode":"ec75","pro":false},{"uuid":"3ac44400-75aa-11ea-a08e-0242ac140003","id":1881214,"name":"create-dashboard","svg":"svg/line/create-dashboard.svg","category":"User Interface","style":"Line","tags":["dashboard","add-dashboard","new-dashboard","create-dashboard"],"code":60510,"unicode":"ec5e","pro":false},{"uuid":"dcdd4000-251f-11e9-a18d-0242ac140003","id":1214005,"name":"creative-commons-pd","svg":"svg/line/creative-commons-pd.svg","category":"Sign And Symbol","style":"Line","tags":["no-copyright","no-copyright-sign","sign","symbol","creative-commons-pd"],"code":59499,"unicode":"e86b","pro":false},{"uuid":"9d26bca0-2523-11e9-922b-0242ac140003","id":1214100,"name":"credit-card","svg":"svg/line/credit-card.svg","category":"Business","style":"Line","tags":["debit-card","card","atm-card","credit-card"],"code":59585,"unicode":"e8c1","pro":false},{"uuid":"7e7e0be0-5427-11ea-875e-0242ac140003","id":1784369,"name":"credit-card-search","svg":"svg/line/credit-card-search.svg","category":"Shopping","style":"Line","tags":["card-search","search-credit-card","credit-card","payment","card","debit-card","credit-card-search"],"code":60537,"unicode":"ec79","pro":false},{"uuid":"bcf4e130-2546-11e9-9654-0242ac140003","id":1216068,"name":"crockery","svg":"svg/line/crockery.svg","category":"User Interface","style":"Line","tags":["spoon","fork","food","crockery"],"code":60194,"unicode":"eb22","pro":false},{"uuid":"b46f1740-253b-11e9-b3e8-0242ac140003","id":1214620,"name":"crop-alt","svg":"svg/line/crop-alt.svg","category":"Design Tools","style":"Line","tags":["crop","design","design-tool","tool","graphic-tool","crop-alt"],"code":60097,"unicode":"eac1","pro":false},{"uuid":"b46f0d10-253b-11e9-ac8d-0242ac140003","id":1214619,"name":"crop-alt-rotate-left","svg":"svg/line/crop-alt-rotate-left.svg","category":"Design Tools","style":"Line","tags":["crop","rotate","design","design-tool","tool","graphic-tool","crop-alt-rotate-left"],"code":60101,"unicode":"eac5","pro":false},{"uuid":"b46f02e0-253b-11e9-97e5-0242ac140003","id":1214618,"name":"crop-alt-rotate-right","svg":"svg/line/crop-alt-rotate-right.svg","category":"Design Tools","style":"Line","tags":["crop","rotate","design","design-tool","tool","graphic-tool","crop-alt-rotate-right"],"code":60094,"unicode":"eabe","pro":false},{"uuid":"ba3d45a0-2546-11e9-8653-0242ac140003","id":1215932,"name":"crosshair","svg":"svg/line/crosshair.svg","category":"Business","style":"Line","tags":["target","aim","focus","goal","crosshair"],"code":60157,"unicode":"eafd","pro":false},{"uuid":"ba3d3ff0-2546-11e9-96bc-0242ac140003","id":1215931,"name":"crosshair-alt","svg":"svg/line/crosshair-alt.svg","category":"Business","style":"Line","tags":["target","aim","focus","crosshair-alt"],"code":60156,"unicode":"eafc","pro":false},{"uuid":"9d272c90-2523-11e9-b0a6-0242ac140003","id":1214119,"name":"crosshairs","svg":"svg/line/crosshairs.svg","category":"Business","style":"Line","tags":["focus","goal","center","target","crosshairs"],"code":59613,"unicode":"e8dd","pro":false},{"uuid":"6b8ef2c0-9a7d-11ea-9dca-0242ac140003","id":2056054,"name":"css3-simple","svg":"svg/line/css3-simple.svg","category":"Brand Logos","style":"Line","tags":["logo","language","programming-language","css","css3","css3-simple"],"code":60557,"unicode":"ec8d","pro":false},{"uuid":"5b2de260-2529-11e9-9b5b-0242ac140003","id":1214347,"name":"cube","svg":"svg/line/cube.svg","category":"User Interface","style":"Line","tags":["3d","box","square","cube"],"code":59835,"unicode":"e9bb","pro":false},{"uuid":"d6fde730-547d-11e9-9ac5-0242ac140003","id":1288244,"name":"dashboard","svg":"svg/line/dashboard.svg","category":"User Interface","style":"Line","tags":["performance-measurement","speedometer","dashboard"],"code":60449,"unicode":"ec21","pro":false},{"uuid":"0f8af9f0-252b-11e9-94d4-0242ac140003","id":1214489,"name":"data-sharing","svg":"svg/line/data-sharing.svg","category":"Cloud And Web","style":"Line","tags":["cloud-connection","cloud-to-cloud-connection","cloud-sharing","cloud-to-cloud-sharing","data-sharing"],"code":59962,"unicode":"ea3a","pro":false},{"uuid":"0f8a7e50-252b-11e9-b305-0242ac140003","id":1214471,"name":"database","svg":"svg/line/database.svg","category":"Cloud And Web","style":"Line","tags":["data-storage","storage","data","data-center","server","database"],"code":59941,"unicode":"ea25","pro":false},{"uuid":"0f8a78c0-252b-11e9-9290-0242ac140003","id":1214470,"name":"database-alt","svg":"svg/line/database-alt.svg","category":"Cloud And Web","style":"Line","tags":["database","storage","data","data-center","server","database-alt"],"code":59953,"unicode":"ea31","pro":false},{"uuid":"bace8890-2546-11e9-a525-0242ac140003","id":1215950,"name":"desert","svg":"svg/line/desert.svg","category":"Weather","style":"Line","tags":["cactus-plant","sun","cactus","desert"],"code":60174,"unicode":"eb0e","pro":false},{"uuid":"9aeb2b20-2527-11e9-80ca-0242ac140003","id":1214266,"name":"desktop","svg":"svg/line/desktop.svg","category":"Devices","style":"Line","tags":["monitor","screen","computer","device","desktop"],"code":59753,"unicode":"e969","pro":false},{"uuid":"9aeb21f0-2527-11e9-87cd-0242ac140003","id":1214265,"name":"desktop-alt","svg":"svg/line/desktop-alt.svg","category":"Devices","style":"Line","tags":["monitor","screen","computer","device","desktop-alt"],"code":59750,"unicode":"e966","pro":false},{"uuid":"e7d834e0-25f0-11e9-baca-0242ac140003","id":1218411,"name":"desktop-alt-slash","svg":"svg/line/desktop-alt-slash.svg","category":"User Interface","style":"Line","tags":["block-display","no-preview","no-screen","block-monitor","desktop-alt-slash"],"code":60380,"unicode":"ebdc","pro":false},{"uuid":"ff4a4f10-2529-11e9-b475-0242ac140003","id":1214435,"name":"desktop-cloud-alt","svg":"svg/line/desktop-cloud-alt.svg","category":"Communication","style":"Line","tags":["computer","monitor","cloud-connection","online-data","cloud-data","device","technology","desktop-cloud-alt"],"code":59911,"unicode":"ea07","pro":false},{"uuid":"e7d82f60-25f0-11e9-9ca5-0242ac140003","id":1218410,"name":"desktop-slash","svg":"svg/line/desktop-slash.svg","category":"User Interface","style":"Line","tags":["block-display","no-preview","no-screen","block-monitor","desktop-slash"],"code":60385,"unicode":"ebe1","pro":false},{"uuid":"12565e30-254d-11e9-bf40-0242ac140003","id":1216321,"name":"dialpad","svg":"svg/line/dialpad.svg","category":"Content","style":"Line","tags":["dial-pad","numpad","dialpad"],"code":60306,"unicode":"eb92","pro":false},{"uuid":"12566820-254d-11e9-af63-0242ac140003","id":1216322,"name":"dialpad-alt","svg":"svg/line/dialpad-alt.svg","category":"Content","style":"Line","tags":["dial-pad","dial","number","numpad","dialpad-alt"],"code":60303,"unicode":"eb8f","pro":false},{"uuid":"47da6700-2522-11e9-9240-0242ac140003","id":1214067,"name":"diamond","svg":"svg/line/diamond.svg","category":"Sports","style":"Line","tags":["card","playing-card-sign","diamond-sign","sign","symbol","diamond"],"code":59554,"unicode":"e8a2","pro":false},{"uuid":"9cdcef40-2524-11e9-9ec8-0242ac140003","id":1214151,"name":"diary","svg":"svg/line/diary.svg","category":"Education","style":"Line","tags":["book","study-book","education-book","study-notes","diary"],"code":59637,"unicode":"e8f5","pro":false},{"uuid":"9cdcfb80-2524-11e9-9713-0242ac140003","id":1214152,"name":"diary-alt","svg":"svg/line/diary-alt.svg","category":"Education","style":"Line","tags":["book","study-book","education-book","study-notes","book-alt","diary-alt"],"code":59639,"unicode":"e8f7","pro":false},{"uuid":"c74e4cd0-253b-11e9-be91-0242ac140003","id":1214633,"name":"dice-five","svg":"svg/line/dice-five.svg","category":"Sports","style":"Line","tags":["five-dice","dice","gambling","dice-five"],"code":60111,"unicode":"eacf","pro":false},{"uuid":"c74e4680-253b-11e9-a3da-0242ac140003","id":1214632,"name":"dice-four","svg":"svg/line/dice-four.svg","category":"Sports","style":"Line","tags":["four-dice","dice","gambling","dice-four"],"code":60109,"unicode":"eacd","pro":false},{"uuid":"c74e3ca0-253b-11e9-8425-0242ac140003","id":1214631,"name":"dice-one","svg":"svg/line/dice-one.svg","category":"Sports","style":"Line","tags":["one-dice","dice","gambling","dice-one"],"code":60112,"unicode":"ead0","pro":false},{"uuid":"c74e5890-253b-11e9-bda3-0242ac140003","id":1214635,"name":"dice-six","svg":"svg/line/dice-six.svg","category":"Sports","style":"Line","tags":["six-dice","dice","gambling","dice-six"],"code":60114,"unicode":"ead2","pro":false},{"uuid":"47da2d50-2522-11e9-8b6f-0242ac140003","id":1214058,"name":"dice-three","svg":"svg/line/dice-three.svg","category":"Sports","style":"Line","tags":["three-dice","dice","gambling","dice-three"],"code":59545,"unicode":"e899","pro":false},{"uuid":"c74e5290-253b-11e9-b9d5-0242ac140003","id":1214634,"name":"dice-two","svg":"svg/line/dice-two.svg","category":"Sports","style":"Line","tags":["two-dice","dice","gambling","dice-two"],"code":60113,"unicode":"ead1","pro":false},{"uuid":"bd87d680-2546-11e9-9ca7-0242ac140003","id":1216193,"name":"direction","svg":"svg/line/direction.svg","category":"Arrows","style":"Line","tags":["scroll-up","scroll","up-arrow","down-arrow","arrow","up","down","direction"],"code":60268,"unicode":"eb6c","pro":false},{"uuid":"f9663770-2523-11e9-a10c-0242ac140003","id":1214145,"name":"directions","svg":"svg/line/directions.svg","category":"Location And Map","style":"Line","tags":["signboard","direction-board","sign","directions"],"code":59630,"unicode":"e8ee","pro":false},{"uuid":"6b8f0080-9a7d-11ea-9783-0242ac140003","id":2056055,"name":"discord","svg":"svg/line/discord.svg","category":"Brand Logos","style":"Line","tags":["voip","application","platform","logo","discord"],"code":60559,"unicode":"ec8f","pro":false},{"uuid":"b5b951d0-2521-11e9-a619-0242ac140003","id":1214020,"name":"dizzy-meh","svg":"svg/line/dizzy-meh.svg","category":"Emoji","style":"Line","tags":["sad","serious","emoji","dizzy-meh"],"code":59505,"unicode":"e871","pro":false},{"uuid":"9cdca7e0-2524-11e9-9d05-0242ac140003","id":1214146,"name":"dna","svg":"svg/line/dna.svg","category":"Education","style":"Line","tags":["biology","biochemistry","microbiology","science","dna"],"code":59632,"unicode":"e8f0","pro":false},{"uuid":"a34eedd0-349c-11eb-8d28-0242ac140003","id":2538317,"name":"docker","svg":"svg/line/docker.svg","category":"Brand Logos","style":"Line","tags":["software","logo","docker"],"code":60589,"unicode":"ecad","pro":false},{"uuid":"68e02030-2527-11e9-b369-0242ac140003","id":1214245,"name":"document-info","svg":"svg/line/document-info.svg","category":"File And Folder","style":"Line","tags":["file-info","document-information","file-details","document","document-info"],"code":59734,"unicode":"e956","pro":false},{"uuid":"12565400-254d-11e9-86b7-0242ac140003","id":1216320,"name":"document-layout-center","svg":"svg/line/document-layout-center.svg","category":"Content","style":"Line","tags":["document-layout","layout","blog","article","image","document-layout-center"],"code":60304,"unicode":"eb90","pro":false},{"uuid":"12563fe0-254d-11e9-9e36-0242ac140003","id":1216318,"name":"document-layout-left","svg":"svg/line/document-layout-left.svg","category":"Content","style":"Line","tags":["document-layout","layout","blog","article","image","document-layout-left"],"code":60300,"unicode":"eb8c","pro":false},{"uuid":"12564a30-254d-11e9-a1ea-0242ac140003","id":1216319,"name":"document-layout-right","svg":"svg/line/document-layout-right.svg","category":"Content","style":"Line","tags":["document-layout","layout","left-justify","left-alignment","blog","article","image","document-layout-right"],"code":60307,"unicode":"eb93","pro":false},{"uuid":"9d26a5d0-2523-11e9-a43d-0242ac140003","id":1214096,"name":"dollar-alt","svg":"svg/line/dollar-alt.svg","category":"Business","style":"Line","tags":["dollar","money","currency","dollar-sign","finance","dollar-alt"],"code":59583,"unicode":"e8bf","pro":false},{"uuid":"9d26b160-2523-11e9-b419-0242ac140003","id":1214098,"name":"dollar-sign","svg":"svg/line/dollar-sign.svg","category":"Business","style":"Line","tags":["dollar","dollar-sign"],"code":59599,"unicode":"e8cf","pro":false},{"uuid":"9d269f40-2523-11e9-80ef-0242ac140003","id":1214095,"name":"dollar-sign-alt","svg":"svg/line/dollar-sign-alt.svg","category":"Business","style":"Line","tags":["dollar","money","currency","dollar-sign","finance","dollar-sign-alt"],"code":59577,"unicode":"e8b9","pro":false},{"uuid":"bd86b2e0-2546-11e9-aa82-0242ac140003","id":1216145,"name":"download-alt","svg":"svg/line/download-alt.svg","category":"Arrows","style":"Line","tags":["download","down-arrow","arrow","download-alt"],"code":60237,"unicode":"eb4d","pro":false},{"uuid":"c1347b50-9a7d-11ea-ad7a-0242ac140003","id":2056086,"name":"draggabledots","svg":"svg/line/draggabledots.svg","category":"User Interface","style":"Line","tags":["menu","ux","drag","ui","draggabledots"],"code":60560,"unicode":"ec90","pro":false},{"uuid":"93370110-2529-11e9-9203-0242ac140003","id":1214390,"name":"dribbble","svg":"svg/line/dribbble.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","dribbble"],"code":59871,"unicode":"e9df","pro":false},{"uuid":"751eb810-251e-11e9-b2d8-0242ac140003","id":1213958,"name":"drill","svg":"svg/line/drill.svg","category":"Construction","style":"Line","tags":["perforator","drill-machine","construction-tool","construction","drill"],"code":59448,"unicode":"e838","pro":false},{"uuid":"9336fb30-2529-11e9-8d98-0242ac140003","id":1214389,"name":"dropbox","svg":"svg/line/dropbox.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","dropbox"],"code":59872,"unicode":"e9e0","pro":false},{"uuid":"47da7c30-2522-11e9-bf4a-0242ac140003","id":1214070,"name":"dumbbell","svg":"svg/line/dumbbell.svg","category":"Sports","style":"Line","tags":["barbell","gym","fitness","fitness-tool","dumbbell"],"code":59560,"unicode":"e8a8","pro":false},{"uuid":"d772e510-334b-11e9-b829-0242ac140003","id":1237463,"name":"ear","svg":"svg/line/ear.svg","category":"Medical","style":"Line","tags":["body-part","body-organ","organ","ear"],"code":60384,"unicode":"ebe0","pro":false},{"uuid":"5b2c6330-2529-11e9-b47d-0242ac140003","id":1214305,"name":"edit","svg":"svg/line/edit.svg","category":"User Interface","style":"Line","tags":["pen","pencil","write","edit"],"code":59792,"unicode":"e990","pro":false},{"uuid":"5b2d8290-2529-11e9-b148-0242ac140003","id":1214336,"name":"edit-alt","svg":"svg/line/edit-alt.svg","category":"User Interface","style":"Line","tags":["pencil","pen","write","edit","edit-alt"],"code":59815,"unicode":"e9a7","pro":false},{"uuid":"c91597e0-349b-11eb-97fd-0242ac140003","id":2538270,"name":"elipsis-double-v-alt","svg":"svg/line/elipsis-double-v-alt.svg","category":"User Interface","style":"Line","tags":["draggable-dots","dots","vertical-dots","elipsis-double-v-alt"],"code":60586,"unicode":"ecaa","pro":false},{"uuid":"5b2cc830-2529-11e9-a83b-0242ac140003","id":1214316,"name":"ellipsis-h","svg":"svg/line/ellipsis-h.svg","category":"User Interface","style":"Line","tags":["menu","more","show-more","option","ellipsis-h"],"code":59804,"unicode":"e99c","pro":false},{"uuid":"5b2cc230-2529-11e9-b3e1-0242ac140003","id":1214315,"name":"ellipsis-v","svg":"svg/line/ellipsis-v.svg","category":"User Interface","style":"Line","tags":["menu","more","show-more","option","ellipsis-v"],"code":59803,"unicode":"e99b","pro":false},{"uuid":"b5b98920-2521-11e9-98dd-0242ac140003","id":1214030,"name":"emoji","svg":"svg/line/emoji.svg","category":"Emoji","style":"Line","tags":["confuse","mouth-shut","no-words","out-of-words","silence","zipped-mouth","emoji"],"code":59532,"unicode":"e88c","pro":false},{"uuid":"5926e9e0-c8c9-11ea-8e60-0242ac140003","id":2194188,"name":"english-to-chinese","svg":"svg/line/english-to-chinese.svg","category":"Content","style":"Line","tags":["language-translate","english","chinese","language-translation","translation","translate","language","english-to-chinese"],"code":60567,"unicode":"ec97","pro":false},{"uuid":"bd8661c0-2546-11e9-b586-0242ac140003","id":1216131,"name":"enter","svg":"svg/line/enter.svg","category":"Arrows","style":"Line","tags":["arrow","direction","enter"],"code":60207,"unicode":"eb2f","pro":false},{"uuid":"ff498fa0-2529-11e9-bb4a-0242ac140003","id":1214402,"name":"envelope","svg":"svg/line/envelope.svg","category":"Communication","style":"Line","tags":["message","email","mail","letter","envelope"],"code":59878,"unicode":"e9e6","pro":false},{"uuid":"ff497810-2529-11e9-9d15-0242ac140003","id":1214398,"name":"envelope-add","svg":"svg/line/envelope-add.svg","category":"Communication","style":"Line","tags":["add-mail","add-email","add-message","email","message","envelope-add"],"code":59874,"unicode":"e9e2","pro":false},{"uuid":"ff4989f0-2529-11e9-87b9-0242ac140003","id":1214401,"name":"envelope-alt","svg":"svg/line/envelope-alt.svg","category":"Communication","style":"Line","tags":["message","mail","email","letter","envelope-alt"],"code":59919,"unicode":"ea0f","pro":false},{"uuid":"ff4960e0-2529-11e9-aa3f-0242ac140003","id":1214395,"name":"envelope-block","svg":"svg/line/envelope-block.svg","category":"Communication","style":"Line","tags":["block-mail","block-email","block-message","mail","email","message","envelope-block"],"code":60545,"unicode":"ec81","pro":false},{"uuid":"ff4a5fa0-2529-11e9-8aee-0242ac140003","id":1214438,"name":"envelope-bookmark","svg":"svg/line/envelope-bookmark.svg","category":"Communication","style":"Line","tags":["bookmark-mail","save-mail","bookmark","mail","email","bookmark-meassage","envelope-bookmark"],"code":59915,"unicode":"ea0b","pro":false},{"uuid":"ff4968d0-2529-11e9-a1da-0242ac140003","id":1214396,"name":"envelope-check","svg":"svg/line/envelope-check.svg","category":"Communication","style":"Line","tags":["approved-mail","approved-message","mail-sent","message-sent","check-mail","mail","email","message","envelope-check"],"code":59873,"unicode":"e9e1","pro":false},{"uuid":"ff49e7c0-2529-11e9-8064-0242ac140003","id":1214417,"name":"envelope-download","svg":"svg/line/envelope-download.svg","category":"Communication","style":"Line","tags":["receive-mail","receive-email","receive-message","receive","mail","email","message","envelope-download"],"code":59892,"unicode":"e9f4","pro":false},{"uuid":"ff49ed40-2529-11e9-a955-0242ac140003","id":1214418,"name":"envelope-download-alt","svg":"svg/line/envelope-download-alt.svg","category":"Communication","style":"Line","tags":["receive-mail","receive-email","receive-message","receive","mail","email","message","envelope-download-alt"],"code":59891,"unicode":"e9f3","pro":false},{"uuid":"ff4a4970-2529-11e9-9361-0242ac140003","id":1214434,"name":"envelope-edit","svg":"svg/line/envelope-edit.svg","category":"Communication","style":"Line","tags":["edit-mail","edit-message","edit-email","edit","mail","email","message","envelope-edit"],"code":59904,"unicode":"ea00","pro":false},{"uuid":"ff4971d0-2529-11e9-bb1f-0242ac140003","id":1214397,"name":"envelope-exclamation","svg":"svg/line/envelope-exclamation.svg","category":"Communication","style":"Line","tags":["alert-mail","alert-message","alert-email","alert","mail","message","envelope-exclamation"],"code":59875,"unicode":"e9e3","pro":false},{"uuid":"ff4a0ef0-2529-11e9-a72b-0242ac140003","id":1214424,"name":"envelope-heart","svg":"svg/line/envelope-heart.svg","category":"Communication","style":"Line","tags":["like-mail","like-message","love-mail","love-message","like","envelope-heart"],"code":59901,"unicode":"e9fd","pro":false},{"uuid":"ff4a2720-2529-11e9-9c4e-0242ac140003","id":1214428,"name":"envelope-info","svg":"svg/line/envelope-info.svg","category":"Communication","style":"Line","tags":["info-mail","info-message","information-mail","information-message","information-email","information","envelope-info"],"code":59909,"unicode":"ea05","pro":false},{"uuid":"ff4a08e0-2529-11e9-9ac5-0242ac140003","id":1214423,"name":"envelope-lock","svg":"svg/line/envelope-lock.svg","category":"Communication","style":"Line","tags":["lock-mail","lock-email","lock-message","security","lock","mail","email","message","envelope-lock"],"code":59896,"unicode":"e9f8","pro":false},{"uuid":"ff49dca0-2529-11e9-98cf-0242ac140003","id":1214415,"name":"envelope-minus","svg":"svg/line/envelope-minus.svg","category":"Communication","style":"Line","tags":["remove-mail","remove-message","remove-email","remove","mail","email","message","envelope-minus"],"code":59888,"unicode":"e9f0","pro":false},{"uuid":"ff49fdf0-2529-11e9-9c2a-0242ac140003","id":1214421,"name":"envelope-open","svg":"svg/line/envelope-open.svg","category":"Communication","style":"Line","tags":["open-mail","open-message","mail","message","email","envelope-open"],"code":59895,"unicode":"e9f7","pro":false},{"uuid":"ff4a2d50-2529-11e9-87c1-0242ac140003","id":1214429,"name":"envelope-question","svg":"svg/line/envelope-question.svg","category":"Communication","style":"Line","tags":["help-mail","help-message","help","support","mail","email","message","envelope-question"],"code":59907,"unicode":"ea03","pro":false},{"uuid":"ff49d710-2529-11e9-9139-0242ac140003","id":1214414,"name":"envelope-receive","svg":"svg/line/envelope-receive.svg","category":"Communication","style":"Line","tags":["reply-mail","reply-message","reply","mail","message","email","envelope-receive"],"code":59889,"unicode":"e9f1","pro":false},{"uuid":"ff49e220-2529-11e9-b41b-0242ac140003","id":1214416,"name":"envelope-redo","svg":"svg/line/envelope-redo.svg","category":"Communication","style":"Line","tags":["refresh-mail","reload-mail","mail","email","refresh-email","envelope-redo"],"code":59890,"unicode":"e9f2","pro":false},{"uuid":"ff49d100-2529-11e9-9ce3-0242ac140003","id":1214413,"name":"envelope-search","svg":"svg/line/envelope-search.svg","category":"Communication","style":"Line","tags":["search-mail","search-email","search-message","mail","email","message","envelope-search"],"code":59882,"unicode":"e9ea","pro":false},{"uuid":"ff4a32f0-2529-11e9-8752-0242ac140003","id":1214430,"name":"envelope-send","svg":"svg/line/envelope-send.svg","category":"Communication","style":"Line","tags":["forward-mail","forward-message","forward","mail","message","email","envelope-send"],"code":59945,"unicode":"ea29","pro":false},{"uuid":"ff49bd80-2529-11e9-8a44-0242ac140003","id":1214410,"name":"envelope-share","svg":"svg/line/envelope-share.svg","category":"Communication","style":"Line","tags":["share-mail","share-email","share-message","share","mail","email","message","envelope-share"],"code":59886,"unicode":"e9ee","pro":false},{"uuid":"ff49f2c0-2529-11e9-bbd5-0242ac140003","id":1214419,"name":"envelope-shield","svg":"svg/line/envelope-shield.svg","category":"Communication","style":"Line","tags":["protected-mail","protected-email","shield-mail","mail","email","envelope-shield"],"code":59894,"unicode":"e9f6","pro":false},{"uuid":"ff4a5a20-2529-11e9-bfe2-0242ac140003","id":1214437,"name":"envelope-star","svg":"svg/line/envelope-star.svg","category":"Communication","style":"Line","tags":["bookmark-message","favorite-message","message","favorite","mail","envelope-star"],"code":59912,"unicode":"ea08","pro":false},{"uuid":"ff4a5490-2529-11e9-9942-0242ac140003","id":1214436,"name":"envelope-times","svg":"svg/line/envelope-times.svg","category":"Communication","style":"Line","tags":["cancel-mail","cancel-message","delete-mail","delete-message","mail","message","email","envelope-times"],"code":59913,"unicode":"ea09","pro":false},{"uuid":"ff49ca40-2529-11e9-b11e-0242ac140003","id":1214412,"name":"envelope-upload","svg":"svg/line/envelope-upload.svg","category":"Communication","style":"Line","tags":["send-mail","send-email","send-message","sending","mail","email","message","envelope-upload"],"code":59884,"unicode":"e9ec","pro":false},{"uuid":"ff49c320-2529-11e9-922e-0242ac140003","id":1214411,"name":"envelope-upload-alt","svg":"svg/line/envelope-upload-alt.svg","category":"Communication","style":"Line","tags":["send-mail","send-email","send-message","sending","mail","email","message","envelope-upload-alt"],"code":59887,"unicode":"e9ef","pro":false},{"uuid":"ff4a0370-2529-11e9-b192-0242ac140003","id":1214422,"name":"envelopes","svg":"svg/line/envelopes.svg","category":"Communication","style":"Line","tags":["messages","mail","email","envelope","letter","communication","envelopes"],"code":59899,"unicode":"e9fb","pro":false},{"uuid":"ba8db920-2546-11e9-a8fc-0242ac140003","id":1215935,"name":"equal-circle","svg":"svg/line/equal-circle.svg","category":"Multimedia","style":"Line","tags":["equal","equal-sign","equal-circle"],"code":60162,"unicode":"eb02","pro":false},{"uuid":"5b2d25c0-2529-11e9-9ffb-0242ac140003","id":1214326,"name":"estate","svg":"svg/line/estate.svg","category":"User Interface","style":"Line","tags":["home","home-alt","house","homepage","estate"],"code":60581,"unicode":"eca5","pro":false},{"uuid":"9d267f10-2523-11e9-a1af-0242ac140003","id":1214092,"name":"euro","svg":"svg/line/euro.svg","category":"Business","style":"Line","tags":["euro-sign","money","currency","euro"],"code":59578,"unicode":"e8ba","pro":false},{"uuid":"9d268a00-2523-11e9-ad13-0242ac140003","id":1214093,"name":"euro-circle","svg":"svg/line/euro-circle.svg","category":"Business","style":"Line","tags":["euro-coin","euro","coin","money","euro-circle"],"code":59580,"unicode":"e8bc","pro":false},{"uuid":"bd86e930-2546-11e9-9357-0242ac140003","id":1216155,"name":"exchange","svg":"svg/line/exchange.svg","category":"Arrows","style":"Line","tags":["connection","arrow","transfer","exchange"],"code":60255,"unicode":"eb5f","pro":false},{"uuid":"bd86e3d0-2546-11e9-b7dc-0242ac140003","id":1216154,"name":"exchange-alt","svg":"svg/line/exchange-alt.svg","category":"Arrows","style":"Line","tags":["connection","arrow","transfer","arrows","exchange-alt"],"code":60221,"unicode":"eb3d","pro":false},{"uuid":"69712190-c8c9-11ea-b1b0-0242ac140003","id":2194196,"name":"exclamation","svg":"svg/line/exclamation.svg","category":"User Interface","style":"Line","tags":["exclamation-mark","alert","wrong","exclamation"],"code":60573,"unicode":"ec9d","pro":false},{"uuid":"5b2d7620-2529-11e9-9e54-0242ac140003","id":1214335,"name":"exclamation-circle","svg":"svg/line/exclamation-circle.svg","category":"User Interface","style":"Line","tags":["exclamation-mark","alert","wrong","exclamation-circle"],"code":59825,"unicode":"e9b1","pro":false},{"uuid":"5b2d51f0-2529-11e9-ac18-0242ac140003","id":1214332,"name":"exclamation-octagon","svg":"svg/line/exclamation-octagon.svg","category":"User Interface","style":"Line","tags":["exclamation-mark","mark","alert","warning","error","exclamation-octagon"],"code":59817,"unicode":"e9a9","pro":false},{"uuid":"5b2d5df0-2529-11e9-ad55-0242ac140003","id":1214333,"name":"exclamation-triangle","svg":"svg/line/exclamation-triangle.svg","category":"User Interface","style":"Line","tags":["exclamation-mark","mark","alert","warning","error","caution","exclamation-triangle"],"code":59824,"unicode":"e9b0","pro":false},{"uuid":"b46ef460-253b-11e9-981e-0242ac140003","id":1214617,"name":"exclude","svg":"svg/line/exclude.svg","category":"Design Tools","style":"Line","tags":["merge","pathfinder","combine","exclude"],"code":60096,"unicode":"eac0","pro":false},{"uuid":"bd86de70-2546-11e9-a05e-0242ac140003","id":1216153,"name":"expand-alt","svg":"svg/line/expand-alt.svg","category":"Arrows","style":"Line","tags":["diagonal-resize","resize","arrow","maximize-right","expand-alt"],"code":60223,"unicode":"eb3f","pro":false},{"uuid":"bd8814d0-2546-11e9-bff3-0242ac140003","id":1216203,"name":"expand-arrows","svg":"svg/line/expand-arrows.svg","category":"Arrows","style":"Line","tags":["resize","fullscreen","maximize","extend","arrows","expand-arrows"],"code":60274,"unicode":"eb72","pro":false},{"uuid":"bd880ea0-2546-11e9-beac-0242ac140003","id":1216202,"name":"expand-arrows-alt","svg":"svg/line/expand-arrows-alt.svg","category":"Arrows","style":"Line","tags":["resize","fullscreen","maximize","extend","arrows","expand-arrows-alt"],"code":60277,"unicode":"eb75","pro":false},{"uuid":"bd87fbf0-2546-11e9-91bf-0242ac140003","id":1216199,"name":"expand-from-corner","svg":"svg/line/expand-from-corner.svg","category":"Arrows","style":"Line","tags":["resize","move","arrow","expand-from-corner"],"code":60273,"unicode":"eb71","pro":false},{"uuid":"bd869bc0-2546-11e9-8e1b-0242ac140003","id":1216141,"name":"expand-left","svg":"svg/line/expand-left.svg","category":"Arrows","style":"Line","tags":["expand","resize","scaling","arrows","expand-left"],"code":60219,"unicode":"eb3b","pro":false},{"uuid":"08d8b750-29cc-11e9-9449-0242ac140003","id":1224694,"name":"expand-right","svg":"svg/line/expand-right.svg","category":"Arrows","style":"Line","tags":["expand","resize","scaling","arrows","expand-right"],"code":60378,"unicode":"ebda","pro":false},{"uuid":"bd877730-2546-11e9-b637-0242ac140003","id":1216178,"name":"export","svg":"svg/line/export.svg","category":"Arrows","style":"Line","tags":["upload","uploading","arrow-up","export"],"code":60248,"unicode":"eb58","pro":false},{"uuid":"cc368740-254d-11e9-a9c2-0242ac140003","id":1216355,"name":"exposure-alt","svg":"svg/line/exposure-alt.svg","category":"Photography Tools","style":"Line","tags":["exposure","exposure-compensation","exposure-increase","exposure-alt"],"code":60338,"unicode":"ebb2","pro":false},{"uuid":"cc368150-254d-11e9-9ad1-0242ac140003","id":1216354,"name":"exposure-increase","svg":"svg/line/exposure-increase.svg","category":"Photography Tools","style":"Line","tags":["exposure-compensation","exposure","exposure-increase"],"code":60336,"unicode":"ebb0","pro":false},{"uuid":"d652fd20-254f-11e9-a7c9-0242ac140003","id":1216481,"name":"external-link-alt","svg":"svg/line/external-link-alt.svg","category":"User Interface","style":"Line","tags":["expand","fullscreen","maximize","external-link-alt"],"code":60344,"unicode":"ebb8","pro":false},{"uuid":"cc367a40-254d-11e9-8bc2-0242ac140003","id":1216353,"name":"eye","svg":"svg/line/eye.svg","category":"Photography Tools","style":"Line","tags":["vision","view","watch","eye"],"code":60335,"unicode":"ebaf","pro":false},{"uuid":"e7d7ba70-25f0-11e9-b4f0-0242ac140003","id":1218389,"name":"eye-slash","svg":"svg/line/eye-slash.svg","category":"User Interface","style":"Line","tags":["no-preview","no-view","block-preview","block-view","eye-slash"],"code":60408,"unicode":"ebf8","pro":false},{"uuid":"db0d2780-3507-11e9-9105-0242ac140003","id":1239443,"name":"facebook","svg":"svg/line/facebook.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","facebook"],"code":60509,"unicode":"ec5d","pro":false},{"uuid":"db0cfa80-3507-11e9-ad93-0242ac140003","id":1239437,"name":"facebook-f","svg":"svg/line/facebook-f.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","facebook-f"],"code":60417,"unicode":"ec01","pro":false},{"uuid":"db0d00b0-3507-11e9-95d9-0242ac140003","id":1239438,"name":"facebook-messenger","svg":"svg/line/facebook-messenger.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","facebook-messenger"],"code":60416,"unicode":"ec00","pro":false},{"uuid":"3e2cd0c0-5c4c-11e9-ab90-0242ac140003","id":1306077,"name":"facebook-messenger-alt","svg":"svg/line/facebook-messenger-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","brand-logo","facebook-messenger-alt"],"code":60467,"unicode":"ec33","pro":false},{"uuid":"37c17730-252d-11e9-9167-0242ac140003","id":1214539,"name":"fahrenheit","svg":"svg/line/fahrenheit.svg","category":"Weather","style":"Line","tags":["temperature","weather","fahrenheit"],"code":60017,"unicode":"ea71","pro":false},{"uuid":"ff4a3890-2529-11e9-b830-0242ac140003","id":1214431,"name":"fast-mail","svg":"svg/line/fast-mail.svg","category":"Communication","style":"Line","tags":["fast-message","speed-post","speed-mail","mail","email","message","fast-mail"],"code":59908,"unicode":"ea04","pro":false},{"uuid":"ff4a3e30-2529-11e9-afcd-0242ac140003","id":1214432,"name":"fast-mail-alt","svg":"svg/line/fast-mail-alt.svg","category":"Communication","style":"Line","tags":["fast-message","speed-post","speed-mail","mail","email","messag","fast-mail-alt"],"code":59906,"unicode":"ea02","pro":false},{"uuid":"5b2d4630-2529-11e9-ac59-0242ac140003","id":1214331,"name":"favorite","svg":"svg/line/favorite.svg","category":"User Interface","style":"Line","tags":["star","bookmark","rate","ratings","favorite"],"code":59819,"unicode":"e9ab","pro":false},{"uuid":"bcf51cd0-2546-11e9-9a59-0242ac140003","id":1216073,"name":"feedback","svg":"svg/line/feedback.svg","category":"User Interface","style":"Line","tags":["like","done","unlike","dislike","thumb-up","thumb-down","feedback"],"code":60200,"unicode":"eb28","pro":false},{"uuid":"c915b6c0-349b-11eb-80fe-0242ac140003","id":2538272,"name":"fidget-spinner","svg":"svg/line/fidget-spinner.svg","category":"User Interface","style":"Line","tags":["loading-concept","refresh","spinner","fidget-spinner"],"code":60583,"unicode":"eca7","pro":false},{"uuid":"68e01270-2527-11e9-a52a-0242ac140003","id":1214243,"name":"file","svg":"svg/line/file.svg","category":"File And Folder","style":"Line","tags":["document","blank-file","page","paper","file"],"code":59732,"unicode":"e954","pro":false},{"uuid":"68dff710-2527-11e9-9dd8-0242ac140003","id":1214239,"name":"file-alt","svg":"svg/line/file-alt.svg","category":"File And Folder","style":"Line","tags":["document","file","text-file","text","file-alt"],"code":59723,"unicode":"e94b","pro":false},{"uuid":"68e01800-2527-11e9-a6c7-0242ac140003","id":1214244,"name":"file-blank","svg":"svg/line/file-blank.svg","category":"File And Folder","style":"Line","tags":["document","file","blank-file","file-blank"],"code":59730,"unicode":"e952","pro":false},{"uuid":"68e057f0-2527-11e9-ba21-0242ac140003","id":1214254,"name":"file-block-alt","svg":"svg/line/file-block-alt.svg","category":"File And Folder","style":"Line","tags":["block-file","block-document","prohibit-file","prohibit-document","document","file","file-block-alt"],"code":59742,"unicode":"e95e","pro":false},{"uuid":"68e05280-2527-11e9-ba2a-0242ac140003","id":1214253,"name":"file-bookmark-alt","svg":"svg/line/file-bookmark-alt.svg","category":"File And Folder","style":"Line","tags":["bookmark-document","bookmark-file","file","document","save-file","save-document","file-bookmark-alt"],"code":59741,"unicode":"e95d","pro":false},{"uuid":"68e06c40-2527-11e9-a4f5-0242ac140003","id":1214257,"name":"file-check","svg":"svg/line/file-check.svg","category":"File And Folder","style":"Line","tags":["approve-file","approve-document","correct-file","check-file","check-document","success-file","document","file-check"],"code":59744,"unicode":"e960","pro":false},{"uuid":"68e06390-2527-11e9-916c-0242ac140003","id":1214256,"name":"file-check-alt","svg":"svg/line/file-check-alt.svg","category":"File And Folder","style":"Line","tags":["approve-file","approve-document","correct-file","check-file","check-document","success-file","document","file-check-alt"],"code":59747,"unicode":"e963","pro":false},{"uuid":"b2b93fe0-349b-11eb-bbf1-0242ac140003","id":2538266,"name":"file-contract","svg":"svg/line/file-contract.svg","category":"File And Folder","style":"Line","tags":["agreement-file","agreement","document","legal","contract","file-contract"],"code":60582,"unicode":"eca6","pro":false},{"uuid":"68df1aa0-2527-11e9-9d38-0242ac140003","id":1214204,"name":"file-contract-dollar","svg":"svg/line/file-contract-dollar.svg","category":"File And Folder","style":"Line","tags":["file","document","dollar","file-contract-dollar"],"code":59690,"unicode":"e92a","pro":false},{"uuid":"68dfe690-2527-11e9-9c9d-0242ac140003","id":1214236,"name":"file-copy-alt","svg":"svg/line/file-copy-alt.svg","category":"File And Folder","style":"Line","tags":["documents","files","multiple-file","file-copy-alt"],"code":59721,"unicode":"e949","pro":false},{"uuid":"68dfe100-2527-11e9-b6b0-0242ac140003","id":1214235,"name":"file-download","svg":"svg/line/file-download.svg","category":"File And Folder","style":"Line","tags":["download-file","download-document","download-doc","file","document","file-download"],"code":59720,"unicode":"e948","pro":false},{"uuid":"68dfdb40-2527-11e9-a916-0242ac140003","id":1214234,"name":"file-download-alt","svg":"svg/line/file-download-alt.svg","category":"File And Folder","style":"Line","tags":["download-file","download-document","download-doc","file","document","text-file","file-download-alt"],"code":59719,"unicode":"e947","pro":false},{"uuid":"68dfcfe0-2527-11e9-931e-0242ac140003","id":1214232,"name":"file-edit-alt","svg":"svg/line/file-edit-alt.svg","category":"File And Folder","style":"Line","tags":["edit-file","edit-document","edit-doc","edic","document","file","file-edit-alt"],"code":59715,"unicode":"e943","pro":false},{"uuid":"68e00620-2527-11e9-8b39-0242ac140003","id":1214241,"name":"file-exclamation","svg":"svg/line/file-exclamation.svg","category":"File And Folder","style":"Line","tags":["document","file","page","file-exclamation"],"code":59728,"unicode":"e950","pro":false},{"uuid":"68dffcc0-2527-11e9-bc5f-0242ac140003","id":1214240,"name":"file-exclamation-alt","svg":"svg/line/file-exclamation-alt.svg","category":"File And Folder","style":"Line","tags":["document","file","text-file","file-exclamation-alt"],"code":59727,"unicode":"e94f","pro":false},{"uuid":"b6c48940-5427-11ea-b84a-0242ac140003","id":1784377,"name":"file-export","svg":"svg/line/file-export.svg","category":"File And Folder","style":"Line","tags":["export-file","download-file","file-download","file","document","download","file-export"],"code":60499,"unicode":"ec53","pro":false},{"uuid":"5aafb170-9a7d-11ea-8ad2-0242ac140003","id":2056017,"name":"file-graph","svg":"svg/line/file-graph.svg","category":"File And Folder","style":"Line","tags":["report","file","paper","chart","notes","file-graph"],"code":60551,"unicode":"ec87","pro":false},{"uuid":"68dfc960-2527-11e9-97be-0242ac140003","id":1214231,"name":"file-heart","svg":"svg/line/file-heart.svg","category":"File And Folder","style":"Line","tags":["favorite-file","like-file","love-file","document","file","file-heart"],"code":59722,"unicode":"e94a","pro":false},{"uuid":"b6c476f0-5427-11ea-9484-0242ac140003","id":1784376,"name":"file-import","svg":"svg/line/file-import.svg","category":"File And Folder","style":"Line","tags":["import-file","upload-file","file","upload-document","file-import"],"code":60504,"unicode":"ec58","pro":false},{"uuid":"68e028b0-2527-11e9-8f74-0242ac140003","id":1214246,"name":"file-info-alt","svg":"svg/line/file-info-alt.svg","category":"File And Folder","style":"Line","tags":["document-info","file-info","document-information","file-details","document","file","text-file","file-info-alt"],"code":59736,"unicode":"e958","pro":false},{"uuid":"68df85d0-2527-11e9-8454-0242ac140003","id":1214223,"name":"file-landscape","svg":"svg/line/file-landscape.svg","category":"File And Folder","style":"Line","tags":["landscape-document","landscape-file","landscape-paper","document","paper","file-landscape"],"code":59710,"unicode":"e93e","pro":false},{"uuid":"68df8020-2527-11e9-974e-0242ac140003","id":1214222,"name":"file-landscape-alt","svg":"svg/line/file-landscape-alt.svg","category":"File And Folder","style":"Line","tags":["landscape-text-file","landscape-document","landscape-file","landscape-paper","document","paper","file-landscape-alt"],"code":59713,"unicode":"e941","pro":false},{"uuid":"e7d808a0-25f0-11e9-9b60-0242ac140003","id":1218403,"name":"file-lanscape-slash","svg":"svg/line/file-lanscape-slash.svg","category":"User Interface","style":"Line","tags":["no-document","no-page","no-file","block-page","file-lanscape-slash"],"code":60370,"unicode":"ebd2","pro":false},{"uuid":"68df7500-2527-11e9-a97f-0242ac140003","id":1214220,"name":"file-lock-alt","svg":"svg/line/file-lock-alt.svg","category":"File And Folder","style":"Line","tags":["lock-file","lock-document","lock","protected-file","secure-file","document","file","file-lock-alt"],"code":59704,"unicode":"e938","pro":false},{"uuid":"68df6a00-2527-11e9-b4f6-0242ac140003","id":1214218,"name":"file-medical","svg":"svg/line/file-medical.svg","category":"File And Folder","style":"Line","tags":["medical-file","file","prescription","file-medical"],"code":59709,"unicode":"e93d","pro":false},{"uuid":"f519a820-2524-11e9-81b6-0242ac140003","id":1214184,"name":"file-medical-alt","svg":"svg/line/file-medical-alt.svg","category":"Medical","style":"Line","tags":["medical-file","health-report","medical-report","medical-document","file-medical-alt"],"code":59671,"unicode":"e917","pro":false},{"uuid":"68df53a0-2527-11e9-97a3-0242ac140003","id":1214214,"name":"file-minus","svg":"svg/line/file-minus.svg","category":"File And Folder","style":"Line","tags":["remove-document","remove-file","delete-file","document","file","file-minus"],"code":59701,"unicode":"e935","pro":false},{"uuid":"68df4e00-2527-11e9-b828-0242ac140003","id":1214213,"name":"file-minus-alt","svg":"svg/line/file-minus-alt.svg","category":"File And Folder","style":"Line","tags":["remove-document","remove-file","delete-file","document","file","file-minus-alt"],"code":59698,"unicode":"e932","pro":false},{"uuid":"68df2050-2527-11e9-983d-0242ac140003","id":1214205,"name":"file-network","svg":"svg/line/file-network.svg","category":"File And Folder","style":"Line","tags":["file","share-file","file-connection","file-network"],"code":59689,"unicode":"e929","pro":false},{"uuid":"68e07850-2527-11e9-ac21-0242ac140003","id":1214259,"name":"file-plus","svg":"svg/line/file-plus.svg","category":"File And Folder","style":"Line","tags":["add-document","add-file","add-page","document","file","file-plus"],"code":59795,"unicode":"e993","pro":false},{"uuid":"68df14e0-2527-11e9-be82-0242ac140003","id":1214203,"name":"file-plus-alt","svg":"svg/line/file-plus-alt.svg","category":"File And Folder","style":"Line","tags":["add-new-file","new-file","new-document","document","file","file-plus-alt"],"code":59688,"unicode":"e928","pro":false},{"uuid":"68df9d50-2527-11e9-b0c0-0242ac140003","id":1214226,"name":"file-question","svg":"svg/line/file-question.svg","category":"File And Folder","style":"Line","tags":["help-file","support-file","question","file","document","qustion-mark","file-question"],"code":59711,"unicode":"e93f","pro":false},{"uuid":"68df90e0-2527-11e9-a292-0242ac140003","id":1214225,"name":"file-question-alt","svg":"svg/line/file-question-alt.svg","category":"File And Folder","style":"Line","tags":["help-file","support-file","question","file","document","qustion-mark","text-file","file-question-alt"],"code":59707,"unicode":"e93b","pro":false},{"uuid":"68df5930-2527-11e9-adcd-0242ac140003","id":1214215,"name":"file-redo-alt","svg":"svg/line/file-redo-alt.svg","category":"File And Folder","style":"Line","tags":["reload-file","reload-document","reload","file","document","file-redo-alt"],"code":59703,"unicode":"e937","pro":false},{"uuid":"68df42e0-2527-11e9-a12c-0242ac140003","id":1214211,"name":"file-search-alt","svg":"svg/line/file-search-alt.svg","category":"File And Folder","style":"Line","tags":["search-file","search-document","find-file","find-document","document","file","file-search-alt"],"code":59695,"unicode":"e92f","pro":false},{"uuid":"68df3d60-2527-11e9-bcc4-0242ac140003","id":1214210,"name":"file-share-alt","svg":"svg/line/file-share-alt.svg","category":"File And Folder","style":"Line","tags":["share-file","share-document","share","sharing","file","document","file-share-alt"],"code":59697,"unicode":"e931","pro":false},{"uuid":"68df5ed0-2527-11e9-8693-0242ac140003","id":1214216,"name":"file-shield-alt","svg":"svg/line/file-shield-alt.svg","category":"File And Folder","style":"Line","tags":["protected-file","secure-file","protected-document","secure-document","safe","secure","document","file","file-shield-alt"],"code":59700,"unicode":"e934","pro":false},{"uuid":"e7d80310-25f0-11e9-a1fb-0242ac140003","id":1218402,"name":"file-slash","svg":"svg/line/file-slash.svg","category":"User Interface","style":"Line","tags":["no-document","no-page","no-file","block-page","page","file-slash"],"code":60369,"unicode":"ebd1","pro":false},{"uuid":"68e03c80-2527-11e9-9b9f-0242ac140003","id":1214249,"name":"file-times","svg":"svg/line/file-times.svg","category":"File And Folder","style":"Line","tags":["delete-file","delte-document","remove-file","remove-document","remove-doc","document","file","file-times"],"code":59735,"unicode":"e957","pro":false},{"uuid":"68e036e0-2527-11e9-95bc-0242ac140003","id":1214248,"name":"file-times-alt","svg":"svg/line/file-times-alt.svg","category":"File And Folder","style":"Line","tags":["delete-file","delte-document","remove-file","remove-document","remove-doc","document","file-times-alt"],"code":59739,"unicode":"e95b","pro":false},{"uuid":"68df37c0-2527-11e9-98b3-0242ac140003","id":1214209,"name":"file-upload","svg":"svg/line/file-upload.svg","category":"File And Folder","style":"Line","tags":["upload-file","upload-document","upload-doc","document","file","file-upload"],"code":59696,"unicode":"e930","pro":false},{"uuid":"68df31e0-2527-11e9-8012-0242ac140003","id":1214208,"name":"file-upload-alt","svg":"svg/line/file-upload-alt.svg","category":"File And Folder","style":"Line","tags":["upload-file","upload-document","upload-doc","document","file","text-file","file-upload-alt"],"code":59691,"unicode":"e92b","pro":false},{"uuid":"68df0770-2527-11e9-9787-0242ac140003","id":1214201,"name":"files-landscapes","svg":"svg/line/files-landscapes.svg","category":"File And Folder","style":"Line","tags":["landscape-document","landscape-file","landscape-paper","document","paper","files-landscapes"],"code":59685,"unicode":"e925","pro":false},{"uuid":"68df7aa0-2527-11e9-8ca1-0242ac140003","id":1214221,"name":"files-landscapes-alt","svg":"svg/line/files-landscapes-alt.svg","category":"File And Folder","style":"Line","tags":["landscape-text-files","landscape-documents","landscape-files","landscape-papers","document","paper","files-landscapes-alt"],"code":59708,"unicode":"e93c","pro":false},{"uuid":"96f3bb40-252c-11e9-a4ce-0242ac140003","id":1214521,"name":"film","svg":"svg/line/film.svg","category":"Multimedia","style":"Line","tags":["camera-reel","cinema","film-reel","movie","media","film"],"code":59996,"unicode":"ea5c","pro":false},{"uuid":"5b2d3da0-2529-11e9-b48e-0242ac140003","id":1214330,"name":"filter","svg":"svg/line/filter.svg","category":"User Interface","style":"Line","tags":["filters","funnel","sort","filter"],"code":59822,"unicode":"e9ae","pro":false},{"uuid":"e7d7f810-25f0-11e9-9615-0242ac140003","id":1218400,"name":"filter-slash","svg":"svg/line/filter-slash.svg","category":"User Interface","style":"Line","tags":["no-filter","no-sorting","no-funnel","block-filter","block-sorting","filter-slash"],"code":60368,"unicode":"ebd0","pro":false},{"uuid":"73e8c1b0-875c-11e9-9d84-0242ac140003","id":1408702,"name":"fire","svg":"svg/line/fire.svg","category":"User Interface","style":"Line","tags":["flame","light","burn","fire"],"code":60493,"unicode":"ec4d","pro":false},{"uuid":"9cdcd1d0-2524-11e9-87a5-0242ac140003","id":1214149,"name":"flask","svg":"svg/line/flask.svg","category":"Education","style":"Line","tags":["conical-flask","chemistry-lab","laboratory-equipment","experiment-equipment","research-lab","flask"],"code":59636,"unicode":"e8f4","pro":false},{"uuid":"9cdd7e00-2524-11e9-bbe3-0242ac140003","id":1214162,"name":"flask-potion","svg":"svg/line/flask-potion.svg","category":"Education","style":"Line","tags":["conical-flask","chemistry-lab","laboratory-equipment","experiment-equipment","research-lab","flask-potion"],"code":59650,"unicode":"e902","pro":false},{"uuid":"b46e77c0-253b-11e9-9cb9-0242ac140003","id":1214605,"name":"flip-h","svg":"svg/line/flip-h.svg","category":"Design Tools","style":"Line","tags":["horizontal-flip","flip","image-flip","mirror-image","flip-h"],"code":60084,"unicode":"eab4","pro":false},{"uuid":"b46daaf0-253b-11e9-9e7b-0242ac140003","id":1214585,"name":"flip-h-alt","svg":"svg/line/flip-h-alt.svg","category":"Design Tools","style":"Line","tags":["horizontal-flip","flip","image-flip","mirror-image","flip-h-alt"],"code":60057,"unicode":"ea99","pro":false},{"uuid":"b46dca60-253b-11e9-8a24-0242ac140003","id":1214588,"name":"flip-v","svg":"svg/line/flip-v.svg","category":"Design Tools","style":"Line","tags":["vertical-flip","flip","image-flip","mirror-image","edit","flip-v"],"code":60063,"unicode":"ea9f","pro":false},{"uuid":"b46f3690-253b-11e9-b4d6-0242ac140003","id":1214623,"name":"flip-v-alt","svg":"svg/line/flip-v-alt.svg","category":"Design Tools","style":"Line","tags":["vertical-flip","flip","image-flip","mirror-image","edit","flip-v-alt"],"code":60099,"unicode":"eac3","pro":false},{"uuid":"ba8dede0-2546-11e9-82a8-0242ac140003","id":1215940,"name":"flower","svg":"svg/line/flower.svg","category":"Multimedia","style":"Line","tags":["lotus","lily","lotus-lily","natural","flower"],"code":60159,"unicode":"eaff","pro":false},{"uuid":"cc36a340-254d-11e9-8f4e-0242ac140003","id":1216360,"name":"focus","svg":"svg/line/focus.svg","category":"Photography Tools","style":"Line","tags":["focus-area","auto-focus","target","focus"],"code":60347,"unicode":"ebbb","pro":false},{"uuid":"cc369840-254d-11e9-89cd-0242ac140003","id":1216358,"name":"focus-add","svg":"svg/line/focus-add.svg","category":"Photography Tools","style":"Line","tags":["focus","focus-point","add-focus","camera-focus","focus-add"],"code":60346,"unicode":"ebba","pro":false},{"uuid":"cc3692a0-254d-11e9-9f25-0242ac140003","id":1216357,"name":"focus-target","svg":"svg/line/focus-target.svg","category":"Photography Tools","style":"Line","tags":["focus","focus-point","target","camera-focus","focus-target"],"code":60343,"unicode":"ebb7","pro":false},{"uuid":"68dfa830-2527-11e9-b526-0242ac140003","id":1214227,"name":"folder","svg":"svg/line/folder.svg","category":"File And Folder","style":"Line","tags":["files","storage","file-folder","folder"],"code":59714,"unicode":"e942","pro":false},{"uuid":"68e05df0-2527-11e9-aebe-0242ac140003","id":1214255,"name":"folder-check","svg":"svg/line/folder-check.svg","category":"File And Folder","style":"Line","tags":["approve-folder","correct-folder","check-folder","success-folder","folder","folder-check"],"code":59743,"unicode":"e95f","pro":false},{"uuid":"68dfd5a0-2527-11e9-9de1-0242ac140003","id":1214233,"name":"folder-download","svg":"svg/line/folder-download.svg","category":"File And Folder","style":"Line","tags":["download-folder","downloading-folder","download","folder","folder-download"],"code":59740,"unicode":"e95c","pro":false},{"uuid":"68dfbd00-2527-11e9-9a47-0242ac140003","id":1214229,"name":"folder-exclamation","svg":"svg/line/folder-exclamation.svg","category":"File And Folder","style":"Line","tags":["folder-info","folder-information","info","information","folder","folder-exclamation"],"code":59717,"unicode":"e945","pro":false},{"uuid":"68dfc390-2527-11e9-8999-0242ac140003","id":1214230,"name":"folder-heart","svg":"svg/line/folder-heart.svg","category":"File And Folder","style":"Line","tags":["favorite-folder","love","folder","love-folder","folder-heart"],"code":59716,"unicode":"e944","pro":false},{"uuid":"68dfb2c0-2527-11e9-8c65-0242ac140003","id":1214228,"name":"folder-info","svg":"svg/line/folder-info.svg","category":"File And Folder","style":"Line","tags":["folder-information","info","information","folder","folder-info"],"code":59718,"unicode":"e946","pro":false},{"uuid":"68df6f80-2527-11e9-bcfd-0242ac140003","id":1214219,"name":"folder-lock","svg":"svg/line/folder-lock.svg","category":"File And Folder","style":"Line","tags":["lock-folder","secure-folder","protected-folder","folder","security","folder-lock"],"code":59705,"unicode":"e939","pro":false},{"uuid":"68df6470-2527-11e9-8e3d-0242ac140003","id":1214217,"name":"folder-medical","svg":"svg/line/folder-medical.svg","category":"File And Folder","style":"Line","tags":["medical-folder","folder","data","folder-medical"],"code":59702,"unicode":"e936","pro":false},{"uuid":"68df4880-2527-11e9-afc7-0242ac140003","id":1214212,"name":"folder-minus","svg":"svg/line/folder-minus.svg","category":"File And Folder","style":"Line","tags":["remove-folder","delete-folder","minus-folder","folder","folder-minus"],"code":59699,"unicode":"e933","pro":false},{"uuid":"68e07de0-2527-11e9-92a1-0242ac140003","id":1214260,"name":"folder-network","svg":"svg/line/folder-network.svg","category":"File And Folder","style":"Line","tags":["folder","data-collection","share-folder","folder-network"],"code":59749,"unicode":"e965","pro":false},{"uuid":"b6c461c0-5427-11ea-a16b-0242ac140003","id":1784375,"name":"folder-open","svg":"svg/line/folder-open.svg","category":"File And Folder","style":"Line","tags":["folder","data","data-collection","data-storage","open-folder","folder-open"],"code":60497,"unicode":"ec51","pro":false},{"uuid":"68e072a0-2527-11e9-a47e-0242ac140003","id":1214258,"name":"folder-plus","svg":"svg/line/folder-plus.svg","category":"File And Folder","style":"Line","tags":["add-folder","folder","add","new-folder","folder-plus"],"code":59745,"unicode":"e961","pro":false},{"uuid":"68df8b60-2527-11e9-8b61-0242ac140003","id":1214224,"name":"folder-question","svg":"svg/line/folder-question.svg","category":"File And Folder","style":"Line","tags":["help-folder","support-folder","folder","question","mark","folder-question"],"code":59712,"unicode":"e940","pro":false},{"uuid":"e7d7f280-25f0-11e9-bbf5-0242ac140003","id":1218399,"name":"folder-slash","svg":"svg/line/folder-slash.svg","category":"User Interface","style":"Line","tags":["no-folder","block-folder","no-document","block-document","folder-slash"],"code":60367,"unicode":"ebcf","pro":false},{"uuid":"68e03090-2527-11e9-a9e1-0242ac140003","id":1214247,"name":"folder-times","svg":"svg/line/folder-times.svg","category":"File And Folder","style":"Line","tags":["delete-folder","remove-folder","folder","folder-times"],"code":59733,"unicode":"e955","pro":false},{"uuid":"68df2ba0-2527-11e9-80ef-0242ac140003","id":1214207,"name":"folder-upload","svg":"svg/line/folder-upload.svg","category":"File And Folder","style":"Line","tags":["upload-folder","folder","upload","folder-upload"],"code":59726,"unicode":"e94e","pro":false},{"uuid":"5926bf70-c8c9-11ea-9ab5-0242ac140003","id":2194185,"name":"font","svg":"svg/line/font.svg","category":"Content","style":"Line","tags":["text","format","tool","font"],"code":60561,"unicode":"ec91","pro":false},{"uuid":"47da53a0-2522-11e9-8661-0242ac140003","id":1214064,"name":"football","svg":"svg/line/football.svg","category":"Sports","style":"Line","tags":["football-ball","ball","game","sport","football"],"code":59550,"unicode":"e89e","pro":false},{"uuid":"e7d780f0-25f0-11e9-b2b2-0242ac140003","id":1218379,"name":"football-american","svg":"svg/line/football-american.svg","category":"User Interface","style":"Line","tags":["american-football","ball","rugby","football-equipment","game-equipment","football-american"],"code":60353,"unicode":"ebc1","pro":false},{"uuid":"47da2100-2522-11e9-8014-0242ac140003","id":1214056,"name":"football-ball","svg":"svg/line/football-ball.svg","category":"Sports","style":"Line","tags":["american-football","football","rugby","football-ball"],"code":59546,"unicode":"e89a","pro":false},{"uuid":"37c20480-252d-11e9-8c2f-0242ac140003","id":1214563,"name":"forecastcloud-moon-tear","svg":"svg/line/forecastcloud-moon-tear.svg","category":"Weather","style":"Line","tags":["rainy-weather","rain","rainy","cloud","moon","weather","forecastcloud-moon-tear"],"code":60033,"unicode":"ea81","pro":false},{"uuid":"ff49acc0-2529-11e9-a4d0-0242ac140003","id":1214407,"name":"forwaded-call","svg":"svg/line/forwaded-call.svg","category":"Communication","style":"Line","tags":["call","phone","forwaded-call"],"code":59885,"unicode":"e9ed","pro":false},{"uuid":"96f38cd0-252c-11e9-ad2a-0242ac140003","id":1214517,"name":"forward","svg":"svg/line/forward.svg","category":"Multimedia","style":"Line","tags":["fast-forward","multimedia","media-control","forward"],"code":59992,"unicode":"ea58","pro":false},{"uuid":"b5b93bf0-2521-11e9-948d-0242ac140003","id":1214016,"name":"frown","svg":"svg/line/frown.svg","category":"Emoji","style":"Line","tags":["sad","upset","emoji","frown"],"code":59500,"unicode":"e86c","pro":false},{"uuid":"bb068d10-2546-11e9-88df-0242ac140003","id":1215952,"name":"game-structure","svg":"svg/line/game-structure.svg","category":"Education","style":"Line","tags":["winner","success","prize","win","star","game-structure"],"code":60180,"unicode":"eb14","pro":false},{"uuid":"b9f71520-2546-11e9-9da7-0242ac140003","id":1215928,"name":"gift","svg":"svg/line/gift.svg","category":"Shopping","style":"Line","tags":["birthday-gift","surprise","present","box","gift"],"code":60152,"unicode":"eaf8","pro":false},{"uuid":"ce56ac00-547d-11e9-b0d2-0242ac140003","id":1288242,"name":"github","svg":"svg/line/github.svg","category":"Brand Logos","style":"Line","tags":["developer-tool","logo","github"],"code":60445,"unicode":"ec1d","pro":false},{"uuid":"ce561e60-547d-11e9-9bb9-0242ac140003","id":1288230,"name":"github-alt","svg":"svg/line/github-alt.svg","category":"Brand Logos","style":"Line","tags":["developer-tool","logo","github-alt"],"code":60431,"unicode":"ec0f","pro":false},{"uuid":"a34e8d60-349c-11eb-aaa0-0242ac140003","id":2538313,"name":"gitlab","svg":"svg/line/gitlab.svg","category":"Brand Logos","style":"Line","tags":["development","code-managment","logo","gitlab"],"code":60592,"unicode":"ecb0","pro":false},{"uuid":"d5ba6220-253b-11e9-855d-0242ac140003","id":1214647,"name":"glass","svg":"svg/line/glass.svg","category":"User Interface","style":"Line","tags":["water-glass","water","glass"],"code":60142,"unicode":"eaee","pro":false},{"uuid":"d5ba5ca0-253b-11e9-8a80-0242ac140003","id":1214646,"name":"glass-martini","svg":"svg/line/glass-martini.svg","category":"User Interface","style":"Line","tags":["wine-glass","wine","goblet","glass-martini"],"code":60125,"unicode":"eadd","pro":false},{"uuid":"5b2c92e0-2529-11e9-811f-0242ac140003","id":1214310,"name":"glass-martini-alt","svg":"svg/line/glass-martini-alt.svg","category":"User Interface","style":"Line","tags":["moctail","juice","cold-drink","drink","glass-martini-alt"],"code":59794,"unicode":"e992","pro":false},{"uuid":"e7d7fd90-25f0-11e9-9581-0242ac140003","id":1218401,"name":"glass-martini-alt-slash","svg":"svg/line/glass-martini-alt-slash.svg","category":"User Interface","style":"Line","tags":["no-drink","no-juice","no-alcohol","forbidden-drink","glass-martini-alt-slash"],"code":60371,"unicode":"ebd3","pro":false},{"uuid":"e7d78c90-25f0-11e9-9ca2-0242ac140003","id":1218381,"name":"glass-tea","svg":"svg/line/glass-tea.svg","category":"User Interface","style":"Line","tags":["tea-glass","tea-cup","tea","glass","glass-tea"],"code":60349,"unicode":"ebbd","pro":false},{"uuid":"5b2d0ad0-2529-11e9-aca0-0242ac140003","id":1214323,"name":"globe","svg":"svg/line/globe.svg","category":"User Interface","style":"Line","tags":["internet","global","world","globe"],"code":59818,"unicode":"e9aa","pro":false},{"uuid":"9d2744a0-2523-11e9-adc3-0242ac140003","id":1214123,"name":"gold","svg":"svg/line/gold.svg","category":"Business","style":"Line","tags":["money","finance","ingots","goldbars","gold"],"code":59615,"unicode":"e8df","pro":false},{"uuid":"47da6d30-2522-11e9-8ca9-0242ac140003","id":1214068,"name":"golf-ball","svg":"svg/line/golf-ball.svg","category":"Sports","style":"Line","tags":["golf","game","sport","golf-ball"],"code":59604,"unicode":"e8d4","pro":false},{"uuid":"ce5627f0-547d-11e9-9702-0242ac140003","id":1288231,"name":"google","svg":"svg/line/google.svg","category":"Brand Logos","style":"Line","tags":["search-engine","logo","google"],"code":60433,"unicode":"ec11","pro":false},{"uuid":"ce568080-547d-11e9-b8f0-0242ac140003","id":1288239,"name":"google-drive","svg":"svg/line/google-drive.svg","category":"Brand Logos","style":"Line","tags":["data-storage","google-drive"],"code":60442,"unicode":"ec1a","pro":false},{"uuid":"93371790-2529-11e9-a054-0242ac140003","id":1214394,"name":"google-drive-alt","svg":"svg/line/google-drive-alt.svg","category":"Brand Logos","style":"Line","tags":["social-media","logo","brand","drive","google-drive-alt"],"code":60544,"unicode":"ec80","pro":false},{"uuid":"ce5649d0-547d-11e9-b850-0242ac140003","id":1288234,"name":"google-hangouts","svg":"svg/line/google-hangouts.svg","category":"Brand Logos","style":"Line","tags":["hangouts","logo","social-media","google-hangouts"],"code":60439,"unicode":"ec17","pro":false},{"uuid":"3e2ccb30-5c4c-11e9-b7cd-0242ac140003","id":1306076,"name":"google-hangouts-alt","svg":"svg/line/google-hangouts-alt.svg","category":"Brand Logos","style":"Line","tags":["brand","brand-logo","logo","google-hangouts-alt"],"code":60465,"unicode":"ec31","pro":false},{"uuid":"ce567780-547d-11e9-91ce-0242ac140003","id":1288238,"name":"google-play","svg":"svg/line/google-play.svg","category":"Brand Logos","style":"Line","tags":["play-store","store","logo","google-play"],"code":60441,"unicode":"ec19","pro":false},{"uuid":"9cddce20-2524-11e9-9d8f-0242ac140003","id":1214168,"name":"graduation-cap","svg":"svg/line/graduation-cap.svg","category":"Education","style":"Line","tags":["mortarboard","graduate","cap","hat","graduation-hat","graduation-cap"],"code":59653,"unicode":"e905","pro":false},{"uuid":"9d26ed10-2523-11e9-94af-0242ac140003","id":1214108,"name":"graph-bar","svg":"svg/line/graph-bar.svg","category":"Business","style":"Line","tags":["bar-graph","graph","analysis","analytics","graph-bar"],"code":59590,"unicode":"e8c6","pro":false},{"uuid":"0f8a5290-252b-11e9-94b3-0242ac140003","id":1214464,"name":"grid","svg":"svg/line/grid.svg","category":"Cloud And Web","style":"Line","tags":["web-layout","layout","section","grid"],"code":59932,"unicode":"ea1c","pro":false},{"uuid":"b46ee040-253b-11e9-8ac2-0242ac140003","id":1214615,"name":"grids","svg":"svg/line/grids.svg","category":"Design Tools","style":"Line","tags":["grid","grid-layout","grids"],"code":60098,"unicode":"eac2","pro":false},{"uuid":"b5b96e10-2521-11e9-a33a-0242ac140003","id":1214025,"name":"grin","svg":"svg/line/grin.svg","category":"Emoji","style":"Line","tags":["happy","smile","happy-face","smiley","emoji","grin"],"code":59512,"unicode":"e878","pro":false},{"uuid":"b5b9bff0-2521-11e9-9c1b-0242ac140003","id":1214040,"name":"grin-tongue-wink","svg":"svg/line/grin-tongue-wink.svg","category":"Emoji","style":"Line","tags":["winking-face","wink-face","blink","happy","smile","emoji","grin-tongue-wink"],"code":59518,"unicode":"e87e","pro":false},{"uuid":"b5b9ba70-2521-11e9-b26e-0242ac140003","id":1214039,"name":"grin-tongue-wink-alt","svg":"svg/line/grin-tongue-wink-alt.svg","category":"Emoji","style":"Line","tags":["winking-face","wink-face","blink","happy","smile","emoji","grin-tongue-wink-alt"],"code":59519,"unicode":"e87f","pro":false},{"uuid":"12563540-254d-11e9-af9a-0242ac140003","id":1216317,"name":"grip-horizontal-line","svg":"svg/line/grip-horizontal-line.svg","category":"Content","style":"Line","tags":["drag-handle","grip-lines","grip-horizontal-line"],"code":60302,"unicode":"eb8e","pro":false},{"uuid":"751eeff0-251e-11e9-bb31-0242ac140003","id":1213966,"name":"hard-hat","svg":"svg/line/hard-hat.svg","category":"Construction","style":"Line","tags":["construction-helmet","construction-hard-hat","construction-hat","worker","user-hard-hat","hard-hat"],"code":59461,"unicode":"e845","pro":false},{"uuid":"bf34e890-253b-11e9-8178-0242ac140003","id":1214627,"name":"hdd","svg":"svg/line/hdd.svg","category":"Devices","style":"Line","tags":["harddrive","harddisk","external-storage","hdd"],"code":60107,"unicode":"eacb","pro":false},{"uuid":"e001b3e0-7e59-11ea-9959-0242ac140003","id":1921387,"name":"head-side","svg":"svg/line/head-side.svg","category":"Medical","style":"Line","tags":["man","human","face","head","covid-19","head-side"],"code":60525,"unicode":"ec6d","pro":false},{"uuid":"e001f840-7e59-11ea-a7a8-0242ac140003","id":1921391,"name":"head-side-cough","svg":"svg/line/head-side-cough.svg","category":"Medical","style":"Line","tags":["face","dieases","covid-19","coronovirus","cough","coronavirus","head-side-cough"],"code":60526,"unicode":"ec6e","pro":false},{"uuid":"e001a630-7e59-11ea-8fa5-0242ac140003","id":1921386,"name":"head-side-mask","svg":"svg/line/head-side-mask.svg","category":"Medical","style":"Line","tags":["mask","face-mask","hygiene","facemask","covid-19","head-side-mask"],"code":60520,"unicode":"ec68","pro":false},{"uuid":"56d065c0-c8c9-11ea-9ba0-0242ac140003","id":2194184,"name":"headphone-slash","svg":"svg/line/headphone-slash.svg","category":"Multimedia","style":"Line","tags":["headphone-off","mute","no-audio","audio","headphone-slash"],"code":60563,"unicode":"ec93","pro":false},{"uuid":"96f29fd0-252c-11e9-8bb8-0242ac140003","id":1214497,"name":"headphones","svg":"svg/line/headphones.svg","category":"Multimedia","style":"Line","tags":["headphone","headset","earphone","music","headphones"],"code":59970,"unicode":"ea42","pro":false},{"uuid":"96f37fc0-252c-11e9-8b33-0242ac140003","id":1214516,"name":"headphones-alt","svg":"svg/line/headphones-alt.svg","category":"Multimedia","style":"Line","tags":["headphone","headset","earphone","music","headphones-alt"],"code":59994,"unicode":"ea5a","pro":false},{"uuid":"5f772570-251f-11e9-a140-0242ac140003","id":1213986,"name":"heart","svg":"svg/line/heart.svg","category":"Shape","style":"Line","tags":["shape","heart-shape","love","romance","valentine","heart"],"code":59485,"unicode":"e85d","pro":false},{"uuid":"5f771e80-251f-11e9-ba05-0242ac140003","id":1213985,"name":"heart-alt","svg":"svg/line/heart-alt.svg","category":"Shape","style":"Line","tags":["shape","heart-shape","love","favorite","romance","valentine","heart-alt"],"code":59466,"unicode":"e84a","pro":false},{"uuid":"d62e94d0-5427-11ea-8703-0242ac140003","id":1784386,"name":"heart-break","svg":"svg/line/heart-break.svg","category":"User Interface","style":"Line","tags":["broken-heart","heart","breakup","feelings","heart-break"],"code":60507,"unicode":"ec5b","pro":false},{"uuid":"f5195b20-2524-11e9-afb7-0242ac140003","id":1214171,"name":"heart-medical","svg":"svg/line/heart-medical.svg","category":"Medical","style":"Line","tags":["health","medical","health-sign","medical-sign","heart","heart-medical"],"code":59706,"unicode":"e93a","pro":false},{"uuid":"bb5665f0-2546-11e9-9780-0242ac140003","id":1215960,"name":"heart-rate","svg":"svg/line/heart-rate.svg","category":"Medical","style":"Line","tags":["pulse","heartbeat","heart-rate"],"code":60191,"unicode":"eb1f","pro":false},{"uuid":"47da5f10-2522-11e9-9e35-0242ac140003","id":1214066,"name":"heart-sign","svg":"svg/line/heart-sign.svg","category":"Sports","style":"Line","tags":["card","playing-card-sign","sign","symbol","heart-sign"],"code":59552,"unicode":"e8a0","pro":false},{"uuid":"f519b5b0-2524-11e9-9f98-0242ac140003","id":1214186,"name":"heartbeat","svg":"svg/line/heartbeat.svg","category":"Medical","style":"Line","tags":["heart-beat","heart-pulse","heart","pulse","heartbeat"],"code":59672,"unicode":"e918","pro":false},{"uuid":"59271ef0-c8c9-11ea-80a4-0242ac140003","id":2194192,"name":"hindi-to-chinese","svg":"svg/line/hindi-to-chinese.svg","category":"Content","style":"Line","tags":["translate","hindi","chinese","localization","language-translation","language","hindi-to-chinese"],"code":60570,"unicode":"ec9a","pro":false},{"uuid":"a34e72e0-349c-11eb-8f37-0242ac140003","id":2538312,"name":"hipchat","svg":"svg/line/hipchat.svg","category":"Brand Logos","style":"Line","tags":["logo","hipchat"],"code":60591,"unicode":"ecaf","pro":false},{"uuid":"d5ba38e0-253b-11e9-98a5-0242ac140003","id":1214640,"name":"history","svg":"svg/line/history.svg","category":"User Interface","style":"Line","tags":["backup","restore","revert","history"],"code":60120,"unicode":"ead8","pro":false},{"uuid":"d5badaf0-253b-11e9-b3ad-0242ac140003","id":1214668,"name":"history-alt","svg":"svg/line/history-alt.svg","category":"User Interface","style":"Line","tags":["history","backup","restore","revert","history-alt"],"code":60149,"unicode":"eaf5","pro":false},{"uuid":"5b2d2be0-2529-11e9-b0fc-0242ac140003","id":1214327,"name":"home","svg":"svg/line/home.svg","category":"User Interface","style":"Line","tags":["house","homepage","estate","home"],"code":59812,"unicode":"e9a4","pro":false},{"uuid":"b46eb880-253b-11e9-8200-0242ac140003","id":1214611,"name":"horizontal-align-center","svg":"svg/line/horizontal-align-center.svg","category":"Design Tools","style":"Line","tags":["center-align","center-alignment","align","alignment","horizontal-align-center"],"code":60088,"unicode":"eab8","pro":false},{"uuid":"b46eadf0-253b-11e9-abed-0242ac140003","id":1214610,"name":"horizontal-align-left","svg":"svg/line/horizontal-align-left.svg","category":"Design Tools","style":"Line","tags":["left-align","left-alignment","align","alignment","horizontal-align-left"],"code":60091,"unicode":"eabb","pro":false},{"uuid":"b46ea2b0-253b-11e9-9093-0242ac140003","id":1214609,"name":"horizontal-align-right","svg":"svg/line/horizontal-align-right.svg","category":"Design Tools","style":"Line","tags":["right-align","right-alignment","alignment","align","horizontal-align-right"],"code":60090,"unicode":"eaba","pro":false},{"uuid":"b46e96b0-253b-11e9-983f-0242ac140003","id":1214608,"name":"horizontal-distribution-center","svg":"svg/line/horizontal-distribution-center.svg","category":"Design Tools","style":"Line","tags":["horizontal-distribute-center","distribute-center","center-align","alignment","horizontal-distribution-center"],"code":60087,"unicode":"eab7","pro":false},{"uuid":"b46e8c40-253b-11e9-abea-0242ac140003","id":1214607,"name":"horizontal-distribution-left","svg":"svg/line/horizontal-distribution-left.svg","category":"Design Tools","style":"Line","tags":["horizontal-distribute-left","distribute-left","left-align","alignment","horizontal-distribution-left"],"code":60086,"unicode":"eab6","pro":false},{"uuid":"b46e81f0-253b-11e9-ba53-0242ac140003","id":1214606,"name":"horizontal-distribution-right","svg":"svg/line/horizontal-distribution-right.svg","category":"Design Tools","style":"Line","tags":["horizontal-distribute-right","distribute-right","right-align","alignment","horizontal-distribution-right"],"code":60085,"unicode":"eab5","pro":false},{"uuid":"e0020fd0-7e59-11ea-acc4-0242ac140003","id":1921392,"name":"hospital","svg":"svg/line/hospital.svg","category":"Medical","style":"Line","tags":["care","mediacl","healthcare","building","covid-19","coronavirus","hospital"],"code":60529,"unicode":"ec71","pro":false},{"uuid":"e001dae0-7e59-11ea-949f-0242ac140003","id":1921389,"name":"hospital-square-sign","svg":"svg/line/hospital-square-sign.svg","category":"Medical","style":"Line","tags":["hospital-sign","medical-sign","h-sign","covid-19","hospital-square-sign"],"code":60524,"unicode":"ec6c","pro":false},{"uuid":"e001c870-7e59-11ea-a08b-0242ac140003","id":1921388,"name":"hospital-symbol","svg":"svg/line/hospital-symbol.svg","category":"Medical","style":"Line","tags":["hospital-sign","medical-sign","h-sign","medical","covid-19","hospital-symbol"],"code":60523,"unicode":"ec6b","pro":false},{"uuid":"4d899ab0-5c4c-11e9-be0f-0242ac140003","id":1306088,"name":"hourglass","svg":"svg/line/hourglass.svg","category":"User Interface","style":"Line","tags":["timer","sandglass","time","deadline","hourglass"],"code":60477,"unicode":"ec3d","pro":false},{"uuid":"e0026900-7e59-11ea-836b-0242ac140003","id":1921397,"name":"house-user","svg":"svg/line/house-user.svg","category":"Medical","style":"Line","tags":["stay-in-home","home","work-from-home","wfh","house","stay-safe","covid-19","stay-at-home","house-user"],"code":60535,"unicode":"ec77","pro":false},{"uuid":"3e2cc5b0-5c4c-11e9-b3eb-0242ac140003","id":1306075,"name":"html3","svg":"svg/line/html3.svg","category":"Brand Logos","style":"Line","tags":["logo","html","brand-logo","brand","html3"],"code":60464,"unicode":"ec30","pro":false},{"uuid":"3e2cc040-5c4c-11e9-ad6b-0242ac140003","id":1306074,"name":"html3-alt","svg":"svg/line/html3-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","html3-alt"],"code":60462,"unicode":"ec2e","pro":false},{"uuid":"6b8ed7e0-9a7d-11ea-b9a7-0242ac140003","id":2056052,"name":"html5","svg":"svg/line/html5.svg","category":"Brand Logos","style":"Line","tags":["logo","language","programming-language","html","html5"],"code":60555,"unicode":"ec8b","pro":false},{"uuid":"6b8ec860-9a7d-11ea-9219-0242ac140003","id":2056051,"name":"html5-alt","svg":"svg/line/html5-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","language","programming-language","html5-alt"],"code":60558,"unicode":"ec8e","pro":false},{"uuid":"ba3d39f0-2546-11e9-94a1-0242ac140003","id":1215930,"name":"hunting","svg":"svg/line/hunting.svg","category":"Business","style":"Line","tags":["target","aim","focus","hunting"],"code":60147,"unicode":"eaf3","pro":false},{"uuid":"c69e4bf0-349b-11eb-9f33-0242ac140003","id":2538268,"name":"icons","svg":"svg/line/icons.svg","category":"Design Tools","style":"Line","tags":["icon-design","icons"],"code":60601,"unicode":"ecb9","pro":false},{"uuid":"c69e3ba0-349b-11eb-b82d-0242ac140003","id":2538267,"name":"illustration","svg":"svg/line/illustration.svg","category":"Design Tools","style":"Line","tags":["illustration"],"code":60600,"unicode":"ecb8","pro":false},{"uuid":"96f355f0-252c-11e9-a846-0242ac140003","id":1214513,"name":"image","svg":"svg/line/image.svg","category":"Multimedia","style":"Line","tags":["photo","picture","gallary","media","image"],"code":59988,"unicode":"ea54","pro":false},{"uuid":"e7d7c570-25f0-11e9-b339-0242ac140003","id":1218391,"name":"image-alt-slash","svg":"svg/line/image-alt-slash.svg","category":"User Interface","style":"Line","tags":["no-photo","no-image","no-picture","block-photo","block-image","block-picture","image-alt-slash"],"code":60360,"unicode":"ebc8","pro":false},{"uuid":"96f30990-252c-11e9-af1e-0242ac140003","id":1214506,"name":"image-block","svg":"svg/line/image-block.svg","category":"Multimedia","style":"Line","tags":["not-allow-photo","no-photo","no-picture","not-allow-picture","photo","image","picture","image-block"],"code":59984,"unicode":"ea50","pro":false},{"uuid":"96f3b060-252c-11e9-8009-0242ac140003","id":1214520,"name":"image-broken","svg":"svg/line/image-broken.svg","category":"Multimedia","style":"Line","tags":["corrupted-image","corrupted-picture","damage-image","damage-picture","picture","image-broken"],"code":59997,"unicode":"ea5d","pro":false},{"uuid":"96f3d070-252c-11e9-97aa-0242ac140003","id":1214523,"name":"image-check","svg":"svg/line/image-check.svg","category":"Multimedia","style":"Line","tags":["approve-image","approve-photo","approve-picture","confirm-image","confirm-picture","image","photo","picture","media","image-check"],"code":59999,"unicode":"ea5f","pro":false},{"uuid":"96f397f0-252c-11e9-8a7d-0242ac140003","id":1214518,"name":"image-download","svg":"svg/line/image-download.svg","category":"Multimedia","style":"Line","tags":["download-image","download","image","photo","picture","image-download"],"code":59990,"unicode":"ea56","pro":false},{"uuid":"96f2e0a0-252c-11e9-8194-0242ac140003","id":1214503,"name":"image-edit","svg":"svg/line/image-edit.svg","category":"Multimedia","style":"Line","tags":["photo-editor","image-editor","editor","picture","image","photo","image-edit"],"code":60023,"unicode":"ea77","pro":false},{"uuid":"96f33570-252c-11e9-be7e-0242ac140003","id":1214510,"name":"image-lock","svg":"svg/line/image-lock.svg","category":"Multimedia","style":"Line","tags":["lock-gallary","secure-photo","secure-image","protected-image","lock-image","image","photo","picture","image-lock"],"code":60006,"unicode":"ea66","pro":false},{"uuid":"96f2c070-252c-11e9-a208-0242ac140003","id":1214500,"name":"image-minus","svg":"svg/line/image-minus.svg","category":"Multimedia","style":"Line","tags":["remove-image","remove-photo","delete-picture","delete-photo","remove","delete","photo","image","picture","image-minus"],"code":59973,"unicode":"ea45","pro":false},{"uuid":"96f3e610-252c-11e9-80f0-0242ac140003","id":1214525,"name":"image-plus","svg":"svg/line/image-plus.svg","category":"Multimedia","style":"Line","tags":["add-image","upload-image","add-photo","add-picture","upload-photo","upload-picture","image","picture","photo","image-plus"],"code":60000,"unicode":"ea60","pro":false},{"uuid":"96f34050-252c-11e9-97a8-0242ac140003","id":1214511,"name":"image-question","svg":"svg/line/image-question.svg","category":"Multimedia","style":"Line","tags":["image","picture","photo","question","help","mark","image-question"],"code":59982,"unicode":"ea4e","pro":false},{"uuid":"96f362f0-252c-11e9-b017-0242ac140003","id":1214514,"name":"image-redo","svg":"svg/line/image-redo.svg","category":"Multimedia","style":"Line","tags":["image-reload","sync-image","image-retry","photo-reload","photo-retry","photo-sync","image","photo","picture","image-redo"],"code":59987,"unicode":"ea53","pro":false},{"uuid":"b46e6dc0-253b-11e9-ba3b-0242ac140003","id":1214604,"name":"image-resize-landscape","svg":"svg/line/image-resize-landscape.svg","category":"Design Tools","style":"Line","tags":["image-resize","resize","image","picture","graphic-editor","image-resize-landscape"],"code":60081,"unicode":"eab1","pro":false},{"uuid":"b46e63a0-253b-11e9-aee9-0242ac140003","id":1214603,"name":"image-resize-square","svg":"svg/line/image-resize-square.svg","category":"Design Tools","style":"Line","tags":["image-resize","resize","image","picture","graphic-editor","image-resize-square"],"code":60082,"unicode":"eab2","pro":false},{"uuid":"96f2b5e0-252c-11e9-a736-0242ac140003","id":1214499,"name":"image-search","svg":"svg/line/image-search.svg","category":"Multimedia","style":"Line","tags":["search-image","search-photo","search-picture","find-image","picture","image","photo","media","image-search"],"code":59972,"unicode":"ea44","pro":false},{"uuid":"96f25470-252c-11e9-a2a0-0242ac140003","id":1214491,"name":"image-share","svg":"svg/line/image-share.svg","category":"Multimedia","style":"Line","tags":["share-picture","share-photo","share-image","share","image","photo","picture","image-share"],"code":60012,"unicode":"ea6c","pro":false},{"uuid":"96f2cb10-252c-11e9-b9cf-0242ac140003","id":1214501,"name":"image-shield","svg":"svg/line/image-shield.svg","category":"Multimedia","style":"Line","tags":["protected-image","secure-image","shield","image","picture","photo","secure","image-shield"],"code":59978,"unicode":"ea4a","pro":false},{"uuid":"e7d7bff0-25f0-11e9-9af0-0242ac140003","id":1218390,"name":"image-slash","svg":"svg/line/image-slash.svg","category":"User Interface","style":"Line","tags":["no-photo","no-image","no-picture","block-photo","block-image","block-picture","image-slash"],"code":60359,"unicode":"ebc7","pro":false},{"uuid":"96f3a520-252c-11e9-8bb5-0242ac140003","id":1214519,"name":"image-times","svg":"svg/line/image-times.svg","category":"Multimedia","style":"Line","tags":["delete-photo","remove-image","remove-photo","delete-picture","remove","delete","photo","image","picture","image-times"],"code":59993,"unicode":"ea59","pro":false},{"uuid":"96f3fb50-252c-11e9-9707-0242ac140003","id":1214527,"name":"image-upload","svg":"svg/line/image-upload.svg","category":"Multimedia","style":"Line","tags":["upload-image","upload","image","photo","picture","image-upload"],"code":60047,"unicode":"ea8f","pro":false},{"uuid":"96f34ad0-252c-11e9-acbf-0242ac140003","id":1214512,"name":"image-v","svg":"svg/line/image-v.svg","category":"Multimedia","style":"Line","tags":["image","picture","photo","gallary","image-v"],"code":59991,"unicode":"ea57","pro":false},{"uuid":"96f28830-252c-11e9-9b34-0242ac140003","id":1214495,"name":"images","svg":"svg/line/images.svg","category":"Multimedia","style":"Line","tags":["multiple-image","photos","picture","pictures","gallary","media","images"],"code":60061,"unicode":"ea9d","pro":false},{"uuid":"bd86ad50-2546-11e9-8956-0242ac140003","id":1216144,"name":"import","svg":"svg/line/import.svg","category":"Arrows","style":"Line","tags":["download","downloading","down-arrow","import"],"code":60214,"unicode":"eb36","pro":false},{"uuid":"697106e0-c8c9-11ea-aac9-0242ac140003","id":2194194,"name":"inbox","svg":"svg/line/inbox.svg","category":"User Interface","style":"Line","tags":["message-box","letterbox","letter-box","inbox"],"code":60571,"unicode":"ec9b","pro":false},{"uuid":"ff499530-2529-11e9-80bc-0242ac140003","id":1214403,"name":"incoming-call","svg":"svg/line/incoming-call.svg","category":"Communication","style":"Line","tags":["call","incoming","phone","incoming-call"],"code":59998,"unicode":"ea5e","pro":false},{"uuid":"69711480-c8c9-11ea-980f-0242ac140003","id":2194195,"name":"info","svg":"svg/line/info.svg","category":"User Interface","style":"Line","tags":["information","help","instruction","info"],"code":60564,"unicode":"ec94","pro":false},{"uuid":"5b2d69f0-2529-11e9-86b3-0242ac140003","id":1214334,"name":"info-circle","svg":"svg/line/info-circle.svg","category":"User Interface","style":"Line","tags":["information","alert","wrong","info-circle"],"code":59821,"unicode":"e9ad","pro":false},{"uuid":"db0cf450-3507-11e9-94de-0242ac140003","id":1239436,"name":"instagram","svg":"svg/line/instagram.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","instagram"],"code":60414,"unicode":"ebfe","pro":false},{"uuid":"db0d6cc0-3507-11e9-9307-0242ac140003","id":1239449,"name":"instagram-alt","svg":"svg/line/instagram-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","instagram","instagram-alt"],"code":60425,"unicode":"ec09","pro":false},{"uuid":"db0d16e0-3507-11e9-b756-0242ac140003","id":1239441,"name":"intercom","svg":"svg/line/intercom.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","intercom"],"code":60421,"unicode":"ec05","pro":false},{"uuid":"3e2cbae0-5c4c-11e9-86e5-0242ac140003","id":1306073,"name":"intercom-alt","svg":"svg/line/intercom-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","brand-logo","intercom-alt"],"code":60455,"unicode":"ec27","pro":false},{"uuid":"9d262540-2523-11e9-ab6e-0242ac140003","id":1214078,"name":"invoice","svg":"svg/line/invoice.svg","category":"Business","style":"Line","tags":["bill","payment","dollar","bill-payment","money-receipt","invoice"],"code":59567,"unicode":"e8af","pro":false},{"uuid":"d7fa2310-334b-11e9-80a1-0242ac140003","id":1237472,"name":"italic","svg":"svg/line/italic.svg","category":"Content","style":"Line","tags":["content","style","format","italic"],"code":60395,"unicode":"ebeb","pro":false},{"uuid":"751ee270-251e-11e9-8ca5-0242ac140003","id":1213964,"name":"jackhammer","svg":"svg/line/jackhammer.svg","category":"Construction","style":"Line","tags":["construction-tool","machine","tool","construction","jackhammer"],"code":59450,"unicode":"e83a","pro":false},{"uuid":"ce566e30-547d-11e9-a15f-0242ac140003","id":1288237,"name":"java-script","svg":"svg/line/java-script.svg","category":"Brand Logos","style":"Line","tags":["logo","developer-language","coding-language","java-script"],"code":60440,"unicode":"ec18","pro":false},{"uuid":"47da73f0-2522-11e9-bc99-0242ac140003","id":1214069,"name":"kayak","svg":"svg/line/kayak.svg","category":"Sports","style":"Line","tags":["canoe","boat","summer","holiday","kayak"],"code":59558,"unicode":"e8a6","pro":false},{"uuid":"5b2e9720-2529-11e9-a745-0242ac140003","id":1214368,"name":"key-skeleton","svg":"svg/line/key-skeleton.svg","category":"User Interface","style":"Line","tags":["key","password","lock","key-skeleton"],"code":59854,"unicode":"e9ce","pro":false},{"uuid":"5b2ecfe0-2529-11e9-ba47-0242ac140003","id":1214374,"name":"key-skeleton-alt","svg":"svg/line/key-skeleton-alt.svg","category":"User Interface","style":"Line","tags":["key","password","lock","key-skeleton-alt"],"code":59859,"unicode":"e9d3","pro":false},{"uuid":"5b2d16a0-2529-11e9-bd12-0242ac140003","id":1214324,"name":"keyboard","svg":"svg/line/keyboard.svg","category":"User Interface","style":"Line","tags":["input-device","computer-hardware","hardware","keyboard"],"code":59813,"unicode":"e9a5","pro":false},{"uuid":"5b2ec320-2529-11e9-8945-0242ac140003","id":1214372,"name":"keyboard-alt","svg":"svg/line/keyboard-alt.svg","category":"User Interface","style":"Line","tags":["input-device","keyboard","keyboard-alt"],"code":59903,"unicode":"e9ff","pro":false},{"uuid":"5b2ebbd0-2529-11e9-acd8-0242ac140003","id":1214371,"name":"keyboard-hide","svg":"svg/line/keyboard-hide.svg","category":"User Interface","style":"Line","tags":["keyboard","keys","input-device","keyboard-hide"],"code":59857,"unicode":"e9d1","pro":false},{"uuid":"5b2eaee0-2529-11e9-a553-0242ac140003","id":1214370,"name":"keyboard-show","svg":"svg/line/keyboard-show.svg","category":"User Interface","style":"Line","tags":["keyboard","keys","input-device","keyboard-show"],"code":59897,"unicode":"e9f9","pro":false},{"uuid":"fa015020-251e-11e9-98db-0242ac140003","id":1213972,"name":"keyhole-circle","svg":"svg/line/keyhole-circle.svg","category":"Security","style":"Line","tags":["key-hole","lock","privacy","security","protection","safe","key","keyhole","keyhole-circle"],"code":59456,"unicode":"e840","pro":false},{"uuid":"fa013810-251e-11e9-a3db-0242ac140003","id":1213970,"name":"keyhole-square","svg":"svg/line/keyhole-square.svg","category":"Security","style":"Line","tags":["keyhole","key-hole","lock","privacy","security","protection","safe","keyhole-square"],"code":59455,"unicode":"e83f","pro":false},{"uuid":"fa0144c0-251e-11e9-babd-0242ac140003","id":1213971,"name":"keyhole-square-full","svg":"svg/line/keyhole-square-full.svg","category":"Security","style":"Line","tags":["key-hole","lock","privacy","security","protection","safe","keyhole","keyhole-square-full"],"code":59458,"unicode":"e842","pro":false},{"uuid":"b5b99f20-2521-11e9-a8ee-0242ac140003","id":1214034,"name":"kid","svg":"svg/line/kid.svg","category":"Emoji","style":"Line","tags":["baby","baby-face","smile","emoji","kid"],"code":59520,"unicode":"e880","pro":false},{"uuid":"e11d0c00-2521-11e9-89cb-0242ac140003","id":1214051,"name":"label","svg":"svg/line/label.svg","category":"Shopping","style":"Line","tags":["tag","offer-tag","price-tag","sale-tag","offer","label"],"code":59536,"unicode":"e890","pro":false},{"uuid":"e11d0330-2521-11e9-b1a3-0242ac140003","id":1214050,"name":"label-alt","svg":"svg/line/label-alt.svg","category":"Shopping","style":"Line","tags":["tag","offer-tag","price-tag","sale-tag","offer","sale","label-alt"],"code":59540,"unicode":"e894","pro":false},{"uuid":"bcf4c980-2546-11e9-99ab-0242ac140003","id":1216066,"name":"lamp","svg":"svg/line/lamp.svg","category":"User Interface","style":"Line","tags":["night-lamp","light-lamp","light-bulb","interior","table-lamp","lamp"],"code":60190,"unicode":"eb1e","pro":false},{"uuid":"5926dd20-c8c9-11ea-8e0a-0242ac140003","id":2194187,"name":"language","svg":"svg/line/language.svg","category":"Content","style":"Line","tags":["language-translation","translation","translate","language"],"code":60574,"unicode":"ec9e","pro":false},{"uuid":"9aeb45c0-2527-11e9-8a43-0242ac140003","id":1214269,"name":"laptop","svg":"svg/line/laptop.svg","category":"Devices","style":"Line","tags":["computer","screen","dsplay","device","laptop"],"code":59760,"unicode":"e970","pro":false},{"uuid":"ff4a1a40-2529-11e9-8732-0242ac140003","id":1214426,"name":"laptop-cloud","svg":"svg/line/laptop-cloud.svg","category":"Communication","style":"Line","tags":["laptop","cloud-connection","online-data","cloud-data","device","technology","laptop-cloud"],"code":59910,"unicode":"ea06","pro":false},{"uuid":"ff4a2140-2529-11e9-896d-0242ac140003","id":1214427,"name":"laptop-connection","svg":"svg/line/laptop-connection.svg","category":"Communication","style":"Line","tags":["connection","laptop","data-sharing","device","technology","laptop-connection"],"code":59947,"unicode":"ea2b","pro":false},{"uuid":"b5b968a0-2521-11e9-b88f-0242ac140003","id":1214024,"name":"laughing","svg":"svg/line/laughing.svg","category":"Emoji","style":"Line","tags":["happy","smile","happy-face","smiley","emoji","laughing"],"code":59511,"unicode":"e877","pro":false},{"uuid":"5b2cff00-2529-11e9-b646-0242ac140003","id":1214322,"name":"layer-group","svg":"svg/line/layer-group.svg","category":"User Interface","style":"Line","tags":["layer","layers","arrange","layer-group"],"code":59807,"unicode":"e99f","pro":false},{"uuid":"e7d829e0-25f0-11e9-84a3-0242ac140003","id":1218409,"name":"layer-group-slash","svg":"svg/line/layer-group-slash.svg","category":"User Interface","style":"Line","tags":["block-layers","no-documents","no-papers","no-files","no-pages","layer-group-slash"],"code":60375,"unicode":"ebd7","pro":false},{"uuid":"e7d79d80-25f0-11e9-87b7-0242ac140003","id":1218384,"name":"layers","svg":"svg/line/layers.svg","category":"User Interface","style":"Line","tags":["page-collection","files-collection","document-collection","layers"],"code":60355,"unicode":"ebc3","pro":false},{"uuid":"b46e4f90-253b-11e9-9214-0242ac140003","id":1214601,"name":"layers-alt","svg":"svg/line/layers-alt.svg","category":"Design Tools","style":"Line","tags":["layers","layer","design-tool","layers-alt"],"code":60079,"unicode":"eaaf","pro":false},{"uuid":"e7d82460-25f0-11e9-8472-0242ac140003","id":1218408,"name":"layers-slash","svg":"svg/line/layers-slash.svg","category":"User Interface","style":"Line","tags":["block-layers","no-documents","no-papers","no-files","no-pages","layers-slash"],"code":60382,"unicode":"ebde","pro":false},{"uuid":"bd8846d0-2546-11e9-92d7-0242ac140003","id":1216211,"name":"left-arrow-from-left","svg":"svg/line/left-arrow-from-left.svg","category":"Arrows","style":"Line","tags":["left-alignment","left-align","align","alignment","left-arrow-from-left"],"code":60287,"unicode":"eb7f","pro":false},{"uuid":"bd8840a0-2546-11e9-9413-0242ac140003","id":1216210,"name":"left-arrow-to-left","svg":"svg/line/left-arrow-to-left.svg","category":"Arrows","style":"Line","tags":["left-alignment","left-align","align","alignment","left-arrow-to-left"],"code":60285,"unicode":"eb7d","pro":false},{"uuid":"1257a140-254d-11e9-9aa6-0242ac140003","id":1216346,"name":"left-indent","svg":"svg/line/left-indent.svg","category":"Content","style":"Line","tags":["left-alignment","alignment","align","left-indent"],"code":60328,"unicode":"eba8","pro":false},{"uuid":"1257ac00-254d-11e9-bbb2-0242ac140003","id":1216347,"name":"left-indent-alt","svg":"svg/line/left-indent-alt.svg","category":"Content","style":"Line","tags":["left-indent","indent","left","alignment","align","left-indent-alt"],"code":60329,"unicode":"eba9","pro":false},{"uuid":"d7fa4500-334b-11e9-90cd-0242ac140003","id":1237475,"name":"left-to-right-text-direction","svg":"svg/line/left-to-right-text-direction.svg","category":"Content","style":"Line","tags":["text","arrangement","style","format","format-text-direction-left-to-right","left-to-right-text-direction"],"code":60399,"unicode":"ebef","pro":false},{"uuid":"592711b0-c8c9-11ea-b677-0242ac140003","id":2194191,"name":"letter-chinese-a","svg":"svg/line/letter-chinese-a.svg","category":"Content","style":"Line","tags":["chinese-language","localization","letter","alphabet","a","letter-chinese-a"],"code":60565,"unicode":"ec95","pro":false},{"uuid":"592704e0-c8c9-11ea-9c99-0242ac140003","id":2194190,"name":"letter-english-a","svg":"svg/line/letter-english-a.svg","category":"Content","style":"Line","tags":["english","language","localization","alphabet","letter","a","letter-english-a"],"code":60569,"unicode":"ec99","pro":false},{"uuid":"5926f790-c8c9-11ea-ae94-0242ac140003","id":2194189,"name":"letter-hindi-a","svg":"svg/line/letter-hindi-a.svg","category":"Content","style":"Line","tags":["hindi","language","localization","letter","alphabet","a","letter-hindi-a"],"code":60566,"unicode":"ec96","pro":false},{"uuid":"5926cf90-c8c9-11ea-9b8c-0242ac140003","id":2194186,"name":"letter-japanese-a","svg":"svg/line/letter-japanese-a.svg","category":"Content","style":"Line","tags":["language","japanese","localization","letter","a","alphabet","hiragana","letter-japanese-a"],"code":60572,"unicode":"ec9c","pro":false},{"uuid":"d5bacf30-253b-11e9-8569-0242ac140003","id":1214666,"name":"life-ring","svg":"svg/line/life-ring.svg","category":"User Interface","style":"Line","tags":["lifebuoy","buoy","life-saver","help","support","life-ring"],"code":60165,"unicode":"eb05","pro":false},{"uuid":"9d272720-2523-11e9-8f9c-0242ac140003","id":1214118,"name":"lightbulb","svg":"svg/line/lightbulb.svg","category":"Business","style":"Line","tags":["light-bulb","idea","creative-idea","bulb","decoration-bulb","lightbulb"],"code":59608,"unicode":"e8d8","pro":false},{"uuid":"9d272180-2523-11e9-9115-0242ac140003","id":1214117,"name":"lightbulb-alt","svg":"svg/line/lightbulb-alt.svg","category":"Business","style":"Line","tags":["light-bulb","idea","creative-idea","bulb","lightbulb-alt"],"code":59659,"unicode":"e90b","pro":false},{"uuid":"db0ce840-3507-11e9-b158-0242ac140003","id":1239435,"name":"line","svg":"svg/line/line.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","line"],"code":60415,"unicode":"ebff","pro":false},{"uuid":"b46e4570-253b-11e9-8bc4-0242ac140003","id":1214600,"name":"line-alt","svg":"svg/line/line-alt.svg","category":"Design Tools","style":"Line","tags":["line","line-tool","design-tool","line-alt"],"code":60080,"unicode":"eab0","pro":false},{"uuid":"1878e9d0-254b-11e9-a443-0242ac140003","id":1216307,"name":"line-spacing","svg":"svg/line/line-spacing.svg","category":"Design Tools","style":"Line","tags":["format-line","line-spacing"],"code":60290,"unicode":"eb82","pro":false},{"uuid":"5b2d1f50-2529-11e9-aa1a-0242ac140003","id":1214325,"name":"link","svg":"svg/line/link.svg","category":"User Interface","style":"Line","tags":["hyperlink","chain","connect","link"],"code":59810,"unicode":"e9a2","pro":false},{"uuid":"d62e6b20-5427-11ea-8e63-0242ac140003","id":1784382,"name":"link-add","svg":"svg/line/link-add.svg","category":"User Interface","style":"Line","tags":["add-link","backlink","link","attach","link-add"],"code":60503,"unicode":"ec57","pro":false},{"uuid":"5b2cdb30-2529-11e9-a540-0242ac140003","id":1214319,"name":"link-alt","svg":"svg/line/link-alt.svg","category":"User Interface","style":"Line","tags":["link","hyperlink","chain","connect","link-alt"],"code":59805,"unicode":"e99d","pro":false},{"uuid":"5b2dd670-2529-11e9-ac04-0242ac140003","id":1214346,"name":"link-broken","svg":"svg/line/link-broken.svg","category":"User Interface","style":"Line","tags":["broken-chain","disconnect","link","link-broken"],"code":59834,"unicode":"e9ba","pro":false},{"uuid":"5b2ce740-2529-11e9-9e80-0242ac140003","id":1214320,"name":"link-h","svg":"svg/line/link-h.svg","category":"User Interface","style":"Line","tags":["link","chain","hyperlink","web-link","link-h"],"code":59801,"unicode":"e999","pro":false},{"uuid":"db0d10c0-3507-11e9-abbc-0242ac140003","id":1239440,"name":"linkedin","svg":"svg/line/linkedin.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","linkedin"],"code":60419,"unicode":"ec03","pro":false},{"uuid":"ce564070-547d-11e9-b6cb-0242ac140003","id":1288233,"name":"linkedin-alt","svg":"svg/line/linkedin-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","linkedin-alt"],"code":60438,"unicode":"ec16","pro":false},{"uuid":"a34f3460-349c-11eb-a70f-0242ac140003","id":2538320,"name":"linux","svg":"svg/line/linux.svg","category":"Brand Logos","style":"Line","tags":["logo","linux"],"code":60590,"unicode":"ecae","pro":false},{"uuid":"4a284830-9a7d-11ea-b5e5-0242ac140003","id":2055954,"name":"lira-sign","svg":"svg/line/lira-sign.svg","category":"Business","style":"Line","tags":["turkish-lira","currency-sign","currency","lira","lira-sign"],"code":60549,"unicode":"ec85","pro":false},{"uuid":"c9158510-349b-11eb-b989-0242ac140003","id":2538269,"name":"list-ol","svg":"svg/line/list-ol.svg","category":"User Interface","style":"Line","tags":["numbered-list","numbers","list","list-ol"],"code":60587,"unicode":"ecab","pro":false},{"uuid":"c915a8a0-349b-11eb-83d7-0242ac140003","id":2538271,"name":"list-ol-alt","svg":"svg/line/list-ol-alt.svg","category":"User Interface","style":"Line","tags":["numbered-list","numbers","list","list-ol-alt"],"code":60588,"unicode":"ecac","pro":false},{"uuid":"12578ae0-254d-11e9-8e52-0242ac140003","id":1216344,"name":"list-ui-alt","svg":"svg/line/list-ui-alt.svg","category":"Content","style":"Line","tags":["list","menu","list-ui-alt"],"code":60327,"unicode":"eba7","pro":false},{"uuid":"12579640-254d-11e9-a8b9-0242ac140003","id":1216345,"name":"list-ul","svg":"svg/line/list-ul.svg","category":"Content","style":"Line","tags":["list-format","list","menu","bullets","list-ul"],"code":60374,"unicode":"ebd6","pro":false},{"uuid":"f9660810-2523-11e9-a488-0242ac140003","id":1214137,"name":"location-arrow","svg":"svg/line/location-arrow.svg","category":"Location And Map","style":"Line","tags":["pointer","navigation","paper-plane","location-arrow"],"code":59631,"unicode":"e8ef","pro":false},{"uuid":"f9660db0-2523-11e9-aa9b-0242ac140003","id":1214138,"name":"location-arrow-alt","svg":"svg/line/location-arrow-alt.svg","category":"Location And Map","style":"Line","tags":["navigation","pointer","location-arrow-alt"],"code":59645,"unicode":"e8fd","pro":false},{"uuid":"f9662190-2523-11e9-9580-0242ac140003","id":1214141,"name":"location-pin-alt","svg":"svg/line/location-pin-alt.svg","category":"Location And Map","style":"Line","tags":["location","location-pin","location-mark","location-pin-alt"],"code":59624,"unicode":"e8e8","pro":false},{"uuid":"f965df90-2523-11e9-b7cf-0242ac140003","id":1214130,"name":"location-point","svg":"svg/line/location-point.svg","category":"Location And Map","style":"Line","tags":["location","location-pin","location-mark","mark","pin","location-point"],"code":59618,"unicode":"e8e2","pro":false},{"uuid":"fa01c1c0-251e-11e9-b6dc-0242ac140003","id":1213984,"name":"lock","svg":"svg/line/lock.svg","category":"Security","style":"Line","tags":["pad-lock","safe","security","protected","lock"],"code":59468,"unicode":"e84c","pro":false},{"uuid":"fa01a000-251e-11e9-b0d0-0242ac140003","id":1213981,"name":"lock-access","svg":"svg/line/lock-access.svg","category":"Security","style":"Line","tags":["lock","pad-lock","safe","security","protected","lock-access"],"code":59472,"unicode":"e850","pro":false},{"uuid":"fa01b690-251e-11e9-ab2a-0242ac140003","id":1213983,"name":"lock-alt","svg":"svg/line/lock-alt.svg","category":"Security","style":"Line","tags":["lock","pad-lock","safe","security","protected","lock-alt"],"code":59479,"unicode":"e857","pro":false},{"uuid":"fa0157a0-251e-11e9-879d-0242ac140003","id":1213973,"name":"lock-open-alt","svg":"svg/line/lock-open-alt.svg","category":"Security","style":"Line","tags":["unlock","lock-open","pad-lock","access","lock-open-alt"],"code":59463,"unicode":"e847","pro":false},{"uuid":"e7d7e120-25f0-11e9-8223-0242ac140003","id":1218396,"name":"lock-slash","svg":"svg/line/lock-slash.svg","category":"User Interface","style":"Line","tags":["no-lock","no-protection","no-security","lock-slash"],"code":60361,"unicode":"ebc9","pro":false},{"uuid":"a34f4b00-349c-11eb-9a34-0242ac140003","id":2538321,"name":"lottiefiles","svg":"svg/line/lottiefiles.svg","category":"Brand Logos","style":"Line","tags":["lottie-files","brand","logo","lottiefiles"],"code":60598,"unicode":"ecb6","pro":false},{"uuid":"a34e5770-349c-11eb-9ac5-0242ac140003","id":2538311,"name":"lottiefiles-alt","svg":"svg/line/lottiefiles-alt.svg","category":"Brand Logos","style":"Line","tags":["lottie-files","brand","logo","lottiefiles","lottiefiles-alt"],"code":60593,"unicode":"ecb1","pro":false},{"uuid":"7f4c2920-2529-11e9-97fc-0242ac140003","id":1214387,"name":"luggage-cart","svg":"svg/line/luggage-cart.svg","category":"Transport","style":"Line","tags":["luggage","luggage-trolley","hand-truck","truck-case","luggage-cart"],"code":59914,"unicode":"ea0a","pro":false},{"uuid":"ff4a14a0-2529-11e9-9f9b-0242ac140003","id":1214425,"name":"mailbox","svg":"svg/line/mailbox.svg","category":"Communication","style":"Line","tags":["letter-box","mail-box","post-box","mailbox"],"code":59900,"unicode":"e9fc","pro":false},{"uuid":"ff49f870-2529-11e9-a56c-0242ac140003","id":1214420,"name":"mailbox-alt","svg":"svg/line/mailbox-alt.svg","category":"Communication","style":"Line","tags":["postbox","mailbox","letter-box","mailbox-alt"],"code":60546,"unicode":"ec82","pro":false},{"uuid":"f965d9f0-2523-11e9-98e5-0242ac140003","id":1214129,"name":"map","svg":"svg/line/map.svg","category":"Location And Map","style":"Line","tags":["location","place","map-location","brochure","map"],"code":59617,"unicode":"e8e1","pro":false},{"uuid":"f9661530-2523-11e9-be53-0242ac140003","id":1214139,"name":"map-marker","svg":"svg/line/map-marker.svg","category":"Location And Map","style":"Line","tags":["location","location-pin","location-mark","mark","location-point","map-marker"],"code":59628,"unicode":"e8ec","pro":false},{"uuid":"f9661b80-2523-11e9-840f-0242ac140003","id":1214140,"name":"map-marker-alt","svg":"svg/line/map-marker-alt.svg","category":"Location And Map","style":"Line","tags":["location","location-pin","location-mark","map-marker-alt"],"code":59626,"unicode":"e8ea","pro":false},{"uuid":"f965f160-2523-11e9-a037-0242ac140003","id":1214133,"name":"map-marker-edit","svg":"svg/line/map-marker-edit.svg","category":"Location And Map","style":"Line","tags":["edit-location","edit","location","location-pin","location-mark","map-marker-edit"],"code":59620,"unicode":"e8e4","pro":false},{"uuid":"f965ead0-2523-11e9-9a6c-0242ac140003","id":1214132,"name":"map-marker-info","svg":"svg/line/map-marker-info.svg","category":"Location And Map","style":"Line","tags":["location-info","location-information","location","location-pin","location-mark","map-marker-info"],"code":59619,"unicode":"e8e3","pro":false},{"uuid":"f96602b0-2523-11e9-b11e-0242ac140003","id":1214136,"name":"map-marker-minus","svg":"svg/line/map-marker-minus.svg","category":"Location And Map","style":"Line","tags":["remove-location","delete-location","location","location-pin","location-mark","map-marker-minus"],"code":59625,"unicode":"e8e9","pro":false},{"uuid":"f965f700-2523-11e9-bed3-0242ac140003","id":1214134,"name":"map-marker-plus","svg":"svg/line/map-marker-plus.svg","category":"Location And Map","style":"Line","tags":["add-location","location","location-pin","location-mark","map-marker-plus"],"code":59621,"unicode":"e8e5","pro":false},{"uuid":"f965c850-2523-11e9-a9b7-0242ac140003","id":1214126,"name":"map-marker-question","svg":"svg/line/map-marker-question.svg","category":"Location And Map","style":"Line","tags":["help-location","location","location-pin","location-mark","marker","map","map-marker-question"],"code":59609,"unicode":"e8d9","pro":false},{"uuid":"f965d440-2523-11e9-b019-0242ac140003","id":1214128,"name":"map-marker-shield","svg":"svg/line/map-marker-shield.svg","category":"Location And Map","style":"Line","tags":["secure-location","secure-place","location","location-pin","location-mark","location-point","map-marker-shield"],"code":59610,"unicode":"e8da","pro":false},{"uuid":"e7d7e6c0-25f0-11e9-a05d-0242ac140003","id":1218397,"name":"map-marker-slash","svg":"svg/line/map-marker-slash.svg","category":"User Interface","style":"Line","tags":["no-location","block-location","no-location-marker","no-location-pointer","block-location-pointer","map-marker-slash"],"code":60364,"unicode":"ebcc","pro":false},{"uuid":"f965e510-2523-11e9-967e-0242ac140003","id":1214131,"name":"map-pin","svg":"svg/line/map-pin.svg","category":"Location And Map","style":"Line","tags":["location-pin","location-point","point","location-mark","location","map-pin"],"code":59622,"unicode":"e8e6","pro":false},{"uuid":"f965bee0-2523-11e9-b03b-0242ac140003","id":1214125,"name":"map-pin-alt","svg":"svg/line/map-pin-alt.svg","category":"Location And Map","style":"Line","tags":["location-pin","location-point","pin","point","location-mark","location","map-pin-alt"],"code":59607,"unicode":"e8d7","pro":false},{"uuid":"dcdd4580-251f-11e9-8ff9-0242ac140003","id":1214006,"name":"mars","svg":"svg/line/mars.svg","category":"Sign And Symbol","style":"Line","tags":["male-symbol","gender-symbol","male-gender-sign","sign","symbol","mars"],"code":59487,"unicode":"e85f","pro":false},{"uuid":"3e2cb570-5c4c-11e9-8da3-0242ac140003","id":1306072,"name":"master-card","svg":"svg/line/master-card.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","payment-card","payment-method","payment","master-card"],"code":60459,"unicode":"ec2b","pro":false},{"uuid":"bd866770-2546-11e9-98a4-0242ac140003","id":1216132,"name":"maximize-left","svg":"svg/line/maximize-left.svg","category":"Arrows","style":"Line","tags":["diagonal-resize","resize","expand","maximize-left"],"code":60261,"unicode":"eb65","pro":false},{"uuid":"9cdda6d0-2524-11e9-9161-0242ac140003","id":1214165,"name":"medal","svg":"svg/line/medal.svg","category":"Education","style":"Line","tags":["award","reward","success","win","winner","medal"],"code":59648,"unicode":"e900","pro":false},{"uuid":"f519c140-2524-11e9-ad41-0242ac140003","id":1214188,"name":"medical-drip","svg":"svg/line/medical-drip.svg","category":"Medical","style":"Line","tags":["medical","drip","bottle","blood-bottle","medical-drip"],"code":59675,"unicode":"e91b","pro":false},{"uuid":"f51962e0-2524-11e9-985b-0242ac140003","id":1214172,"name":"medical-square","svg":"svg/line/medical-square.svg","category":"Medical","style":"Line","tags":["health","health-sign","medical-sign","medical-square"],"code":59654,"unicode":"e906","pro":false},{"uuid":"f5197660-2524-11e9-b4d0-0242ac140003","id":1214175,"name":"medical-square-full","svg":"svg/line/medical-square-full.svg","category":"Medical","style":"Line","tags":["medical-sign-board","medical-sign","doctor-sign","sign-board","healthcare","medical-square-full"],"code":59656,"unicode":"e908","pro":false},{"uuid":"ce561380-547d-11e9-b02a-0242ac140003","id":1288229,"name":"medium-m","svg":"svg/line/medium-m.svg","category":"Brand Logos","style":"Line","tags":["medium","social-media","blog","blogging-site","logo","medium-m"],"code":60434,"unicode":"ec12","pro":false},{"uuid":"f519a2c0-2524-11e9-8837-0242ac140003","id":1214183,"name":"medkit","svg":"svg/line/medkit.svg","category":"Medical","style":"Line","tags":["medical-kit","first-aid-kit","aid-kit","health-kit","doctor-aid-kit","medkit"],"code":59668,"unicode":"e914","pro":false},{"uuid":"9cddb360-2524-11e9-a94b-0242ac140003","id":1214166,"name":"meeting-board","svg":"svg/line/meeting-board.svg","category":"Education","style":"Line","tags":["presentation-board","training-board","presentation","meeting-board"],"code":59669,"unicode":"e915","pro":false},{"uuid":"4d899090-5c4c-11e9-af95-0242ac140003","id":1306087,"name":"megaphone","svg":"svg/line/megaphone.svg","category":"User Interface","style":"Line","tags":["announcement","speaker","bullhorn","loudspeaker","loud","marketing","megaphone"],"code":60473,"unicode":"ec39","pro":false},{"uuid":"b5b94c60-2521-11e9-8c70-0242ac140003","id":1214019,"name":"meh","svg":"svg/line/meh.svg","category":"Emoji","style":"Line","tags":["sad","serious","emoji","meh"],"code":59503,"unicode":"e86f","pro":false},{"uuid":"b5b91940-2521-11e9-a1aa-0242ac140003","id":1214010,"name":"meh-alt","svg":"svg/line/meh-alt.svg","category":"Emoji","style":"Line","tags":["sad","serious","emoji","meh-alt"],"code":59492,"unicode":"e864","pro":false},{"uuid":"b5b946e0-2521-11e9-8731-0242ac140003","id":1214018,"name":"meh-closed-eye","svg":"svg/line/meh-closed-eye.svg","category":"Emoji","style":"Line","tags":["sad","serious","emoji","meh-closed-eye"],"code":59543,"unicode":"e897","pro":false},{"uuid":"bcf4f940-2546-11e9-9d77-0242ac140003","id":1216070,"name":"message","svg":"svg/line/message.svg","category":"User Interface","style":"Line","tags":["send","paper-plane","message"],"code":60195,"unicode":"eb23","pro":false},{"uuid":"658dfe60-875c-11e9-83bd-0242ac140003","id":1408700,"name":"metro","svg":"svg/line/metro.svg","category":"Transport","style":"Line","tags":["train","travel","transport","transportation","metro"],"code":60491,"unicode":"ec4b","pro":false},{"uuid":"5b2cbc10-2529-11e9-97e4-0242ac140003","id":1214314,"name":"microphone","svg":"svg/line/microphone.svg","category":"User Interface","style":"Line","tags":["mic","speach","voice","voice-recording","microphone"],"code":59797,"unicode":"e995","pro":false},{"uuid":"ba8dd910-2546-11e9-805a-0242ac140003","id":1215938,"name":"microphone-slash","svg":"svg/line/microphone-slash.svg","category":"Multimedia","style":"Line","tags":["mute","no-sound","no-volume","no-mic","microphone-slash"],"code":60164,"unicode":"eb04","pro":false},{"uuid":"e0017d20-7e59-11ea-b370-0242ac140003","id":1921383,"name":"microscope","svg":"svg/line/microscope.svg","category":"Medical","style":"Line","tags":["medical-equipment","medical","equipment","tool","covid-19","covid","microscope"],"code":60517,"unicode":"ec65","pro":false},{"uuid":"a34ec020-349c-11eb-82d4-0242ac140003","id":2538315,"name":"microsoft","svg":"svg/line/microsoft.svg","category":"Brand Logos","style":"Line","tags":["brand","logo","microsoft"],"code":60595,"unicode":"ecb3","pro":false},{"uuid":"5b2c0e30-2529-11e9-856c-0242ac140003","id":1214296,"name":"minus","svg":"svg/line/minus.svg","category":"User Interface","style":"Line","tags":["remove","delete","minimize","minus"],"code":59779,"unicode":"e983","pro":false},{"uuid":"5b2cac40-2529-11e9-bd66-0242ac140003","id":1214312,"name":"minus-circle","svg":"svg/line/minus-circle.svg","category":"User Interface","style":"Line","tags":["minus","remove","delete","minimize","minus-circle"],"code":59796,"unicode":"e994","pro":false},{"uuid":"1878d880-254b-11e9-b503-0242ac140003","id":1216304,"name":"minus-path","svg":"svg/line/minus-path.svg","category":"Design Tools","style":"Line","tags":["minus-front","pathfinder","minus","remove-front","minus-path"],"code":60286,"unicode":"eb7e","pro":false},{"uuid":"5b2c9ef0-2529-11e9-bab4-0242ac140003","id":1214311,"name":"minus-square","svg":"svg/line/minus-square.svg","category":"User Interface","style":"Line","tags":["minus","remove","delete","minimize","minus-square"],"code":59798,"unicode":"e996","pro":false},{"uuid":"5b2cb540-2529-11e9-b20b-0242ac140003","id":1214313,"name":"minus-square-full","svg":"svg/line/minus-square-full.svg","category":"User Interface","style":"Line","tags":["minus","minimize","close","delete","remove","minus-square-full"],"code":59799,"unicode":"e997","pro":false},{"uuid":"ff4a6520-2529-11e9-adba-0242ac140003","id":1214439,"name":"missed-call","svg":"svg/line/missed-call.svg","category":"Communication","style":"Line","tags":["call","communication","phone","hanged","missed-call"],"code":59916,"unicode":"ea0c","pro":false},{"uuid":"9aeb3d10-2527-11e9-86d3-0242ac140003","id":1214268,"name":"mobile-android","svg":"svg/line/mobile-android.svg","category":"Devices","style":"Line","tags":["mobile","smartphone","phone","device","cellphone","mobile-android"],"code":59759,"unicode":"e96f","pro":false},{"uuid":"9aeb3430-2527-11e9-96be-0242ac140003","id":1214267,"name":"mobile-android-alt","svg":"svg/line/mobile-android-alt.svg","category":"Devices","style":"Line","tags":["mobile","smartphone","phone","device","cellphone","mobile-android-alt"],"code":59754,"unicode":"e96a","pro":false},{"uuid":"d5ba5690-253b-11e9-89b8-0242ac140003","id":1214645,"name":"mobile-vibrate","svg":"svg/line/mobile-vibrate.svg","category":"User Interface","style":"Line","tags":["phone","mobile","vibration","mobile-vibrate"],"code":60126,"unicode":"eade","pro":false},{"uuid":"bf34e060-253b-11e9-b964-0242ac140003","id":1214626,"name":"modem","svg":"svg/line/modem.svg","category":"Devices","style":"Line","tags":["router","wifi-router","modem"],"code":60105,"unicode":"eac9","pro":false},{"uuid":"9d26c210-2523-11e9-b906-0242ac140003","id":1214101,"name":"money-bill","svg":"svg/line/money-bill.svg","category":"Business","style":"Line","tags":["cash","money","currency","banknote","money-bill"],"code":59586,"unicode":"e8c2","pro":false},{"uuid":"e7d7caf0-25f0-11e9-b26c-0242ac140003","id":1218392,"name":"money-bill-slash","svg":"svg/line/money-bill-slash.svg","category":"User Interface","style":"Line","tags":["no-money","no-currency","no-notes","block-money","block-notes","no-cash","money-bill-slash"],"code":60362,"unicode":"ebca","pro":false},{"uuid":"9d26c7b0-2523-11e9-b758-0242ac140003","id":1214102,"name":"money-bill-stack","svg":"svg/line/money-bill-stack.svg","category":"Business","style":"Line","tags":["cash-bundle","cash","money","currency","banknote","money-bill-stack"],"code":59582,"unicode":"e8be","pro":false},{"uuid":"9d266d90-2523-11e9-8d0b-0242ac140003","id":1214090,"name":"money-insert","svg":"svg/line/money-insert.svg","category":"Business","style":"Line","tags":["increase-money","earning","money","profit","up","finance","business","money-insert"],"code":59575,"unicode":"e8b7","pro":false},{"uuid":"9d261a00-2523-11e9-b1fe-0242ac140003","id":1214076,"name":"money-stack","svg":"svg/line/money-stack.svg","category":"Business","style":"Line","tags":["money","currency","cash","note","money-stack"],"code":59555,"unicode":"e8a3","pro":false},{"uuid":"9d2694e0-2523-11e9-bb39-0242ac140003","id":1214094,"name":"money-withdraw","svg":"svg/line/money-withdraw.svg","category":"Business","style":"Line","tags":["earning","money","savings","cash","decrease-money","finance","money-withdraw"],"code":59584,"unicode":"e8c0","pro":false},{"uuid":"9d260270-2523-11e9-b834-0242ac140003","id":1214072,"name":"money-withdrawal","svg":"svg/line/money-withdrawal.svg","category":"Business","style":"Line","tags":["withdrawal","atm","cash","money","withdraw","atm-withdraw","money-withdrawal"],"code":59556,"unicode":"e8a4","pro":false},{"uuid":"9d265a90-2523-11e9-b460-0242ac140003","id":1214087,"name":"moneybag","svg":"svg/line/moneybag.svg","category":"Business","style":"Line","tags":["office-bag","bag","briefcase","portfolio","suitcase","moneybag"],"code":59573,"unicode":"e8b5","pro":false},{"uuid":"9d265510-2523-11e9-a735-0242ac140003","id":1214086,"name":"moneybag-alt","svg":"svg/line/moneybag-alt.svg","category":"Business","style":"Line","tags":["office-bag","bag","briefcase","portfolio","suitcase","moneybag-alt"],"code":59571,"unicode":"e8b3","pro":false},{"uuid":"bf34f450-253b-11e9-84f7-0242ac140003","id":1214629,"name":"monitor","svg":"svg/line/monitor.svg","category":"Devices","style":"Line","tags":["screen","display","computer","monitor"],"code":60108,"unicode":"eacc","pro":false},{"uuid":"f519af00-2524-11e9-b69b-0242ac140003","id":1214185,"name":"monitor-heart-rate","svg":"svg/line/monitor-heart-rate.svg","category":"Medical","style":"Line","tags":["heart-rate-machine","heartbeat-monitor","monitor","medical-machine","monitor-heart-rate"],"code":59670,"unicode":"e916","pro":false},{"uuid":"37c23100-252d-11e9-ad56-0242ac140003","id":1214571,"name":"moon","svg":"svg/line/moon.svg","category":"Weather","style":"Line","tags":["half-moon","lunar","night","weather","moon"],"code":60043,"unicode":"ea8b","pro":false},{"uuid":"37c23c30-252d-11e9-bcc8-0242ac140003","id":1214573,"name":"moon-eclipse","svg":"svg/line/moon-eclipse.svg","category":"Weather","style":"Line","tags":["eclipsed","moon","night","weather","moon-eclipse"],"code":60052,"unicode":"ea94","pro":false},{"uuid":"37c236c0-252d-11e9-a139-0242ac140003","id":1214572,"name":"moonset","svg":"svg/line/moonset.svg","category":"Weather","style":"Line","tags":["moon","fog-moon","half-moon","night","weather","forecast","moonset"],"code":60045,"unicode":"ea8d","pro":false},{"uuid":"ba8df800-2546-11e9-a348-0242ac140003","id":1215941,"name":"mountains","svg":"svg/line/mountains.svg","category":"Multimedia","style":"Line","tags":["landscape","mountains"],"code":60176,"unicode":"eb10","pro":false},{"uuid":"d04e76d0-253b-11e9-8567-0242ac140003","id":1214638,"name":"mountains-sun","svg":"svg/line/mountains-sun.svg","category":"Weather","style":"Line","tags":["mountain","sun","scenery","mountains-sun"],"code":60119,"unicode":"ead7","pro":false},{"uuid":"9aeb1850-2527-11e9-964e-0242ac140003","id":1214264,"name":"mouse","svg":"svg/line/mouse.svg","category":"Devices","style":"Line","tags":["computer-hardware","hardware","computer-mouse","mouse"],"code":59757,"unicode":"e96d","pro":false},{"uuid":"9aeaf530-2527-11e9-aa48-0242ac140003","id":1214261,"name":"mouse-alt","svg":"svg/line/mouse-alt.svg","category":"Devices","style":"Line","tags":["computer-mouse","hardware","mouse-alt"],"code":59751,"unicode":"e967","pro":false},{"uuid":"9aeb4ec0-2527-11e9-acc7-0242ac140003","id":1214270,"name":"mouse-alt-2","svg":"svg/line/mouse-alt-2.svg","category":"Devices","style":"Line","tags":["computer-mouse","input-device","hardware","mouse","mouse-alt-2"],"code":59758,"unicode":"e96e","pro":false},{"uuid":"5b2d9c60-2529-11e9-a5f9-0242ac140003","id":1214340,"name":"multiply","svg":"svg/line/multiply.svg","category":"User Interface","style":"Line","tags":["close","delete","remove","multiplication","multiply"],"code":59827,"unicode":"e9b3","pro":false},{"uuid":"96f32a60-252c-11e9-9cdc-0242ac140003","id":1214509,"name":"music","svg":"svg/line/music.svg","category":"Multimedia","style":"Line","tags":["music-sign","song","music-note","music"],"code":59983,"unicode":"ea4f","pro":false},{"uuid":"96f31fc0-252c-11e9-a482-0242ac140003","id":1214508,"name":"music-note","svg":"svg/line/music-note.svg","category":"Multimedia","style":"Line","tags":["music-tune","tune","music-note"],"code":59985,"unicode":"ea51","pro":false},{"uuid":"96f27b30-252c-11e9-926b-0242ac140003","id":1214494,"name":"music-tune-slash","svg":"svg/line/music-tune-slash.svg","category":"Multimedia","style":"Line","tags":["not-allow-music","no-music","music-note","music-tune-slash"],"code":59966,"unicode":"ea3e","pro":false},{"uuid":"d04e6b10-253b-11e9-9194-0242ac140003","id":1214637,"name":"n-a","svg":"svg/line/n-a.svg","category":"Weather","style":"Line","tags":["not-available","weather","forecast","not-applicable","n-a"],"code":60121,"unicode":"ead9","pro":false},{"uuid":"f965fd10-2523-11e9-9e1a-0242ac140003","id":1214135,"name":"navigator","svg":"svg/line/navigator.svg","category":"Location And Map","style":"Line","tags":["navigation-arrow","navigation-pointer","direction-arrow","navigator"],"code":59623,"unicode":"e8e7","pro":false},{"uuid":"b5b924d0-2521-11e9-b6ec-0242ac140003","id":1214012,"name":"nerd","svg":"svg/line/nerd.svg","category":"Emoji","style":"Line","tags":["happy","joyous","smiling-emoji","thrilled","emoji","nerd"],"code":59490,"unicode":"e862","pro":false},{"uuid":"d5bac2d0-253b-11e9-b3b8-0242ac140003","id":1214664,"name":"newspaper","svg":"svg/line/newspaper.svg","category":"User Interface","style":"Line","tags":["news","news-paper","paper","page","newspaper"],"code":60144,"unicode":"eaf0","pro":false},{"uuid":"b5b97370-2521-11e9-a2f6-0242ac140003","id":1214026,"name":"ninja","svg":"svg/line/ninja.svg","category":"Emoji","style":"Line","tags":["emoji","face","thief","ninja"],"code":59509,"unicode":"e875","pro":false},{"uuid":"751ec180-251e-11e9-81d3-0242ac140003","id":1213959,"name":"no-entry","svg":"svg/line/no-entry.svg","category":"Construction","style":"Line","tags":["traffic-cone","cone","pylon","work-in-process","no-entry"],"code":59441,"unicode":"e831","pro":false},{"uuid":"bb06b7b0-2546-11e9-a615-0242ac140003","id":1215959,"name":"notebooks","svg":"svg/line/notebooks.svg","category":"Education","style":"Line","tags":["book","bookmark","notebook","notebooks"],"code":60184,"unicode":"eb18","pro":false},{"uuid":"9cdd6400-2524-11e9-a15e-0242ac140003","id":1214160,"name":"notes","svg":"svg/line/notes.svg","category":"Education","style":"Line","tags":["study-notes","information-page","information-notes","notes"],"code":59644,"unicode":"e8fc","pro":false},{"uuid":"b46e3ae0-253b-11e9-b950-0242ac140003","id":1214599,"name":"object-group","svg":"svg/line/object-group.svg","category":"Design Tools","style":"Line","tags":["object","design-tool","object-group"],"code":60074,"unicode":"eaaa","pro":false},{"uuid":"b46da040-253b-11e9-a639-0242ac140003","id":1214584,"name":"object-ungroup","svg":"svg/line/object-ungroup.svg","category":"Design Tools","style":"Line","tags":["ungroup","design-tool","object-ungroup"],"code":60059,"unicode":"ea9b","pro":false},{"uuid":"5f772b50-251f-11e9-99c3-0242ac140003","id":1213987,"name":"octagon","svg":"svg/line/octagon.svg","category":"Shape","style":"Line","tags":["shape","geometric-shape","geometric","octagon"],"code":59467,"unicode":"e84b","pro":false},{"uuid":"a34f1c00-349c-11eb-8394-0242ac140003","id":2538319,"name":"okta","svg":"svg/line/okta.svg","category":"Brand Logos","style":"Line","tags":["logo","okta"],"code":60599,"unicode":"ecb7","pro":false},{"uuid":"3e2cafe0-5c4c-11e9-9ad5-0242ac140003","id":1306071,"name":"opera","svg":"svg/line/opera.svg","category":"Brand Logos","style":"Line","tags":["logo","opera-mini","brand-logo","brand","opera"],"code":60454,"unicode":"ec26","pro":false},{"uuid":"3e2caa60-5c4c-11e9-9596-0242ac140003","id":1306070,"name":"opera-alt","svg":"svg/line/opera-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","opera-mini","brand","opera-alt"],"code":60461,"unicode":"ec2d","pro":false},{"uuid":"ff497dc0-2529-11e9-a282-0242ac140003","id":1214399,"name":"outgoing-call","svg":"svg/line/outgoing-call.svg","category":"Communication","style":"Line","tags":["call","phone","outgoing-call"],"code":59877,"unicode":"e9e5","pro":false},{"uuid":"5b2c6940-2529-11e9-911d-0242ac140003","id":1214306,"name":"package","svg":"svg/line/package.svg","category":"User Interface","style":"Line","tags":["parcel","box","shipping","package"],"code":59791,"unicode":"e98f","pro":false},{"uuid":"fa01ab50-251e-11e9-a4df-0242ac140003","id":1213982,"name":"padlock","svg":"svg/line/padlock.svg","category":"Security","style":"Line","tags":["lock","pad-lock","safe","security","protected","padlock"],"code":59477,"unicode":"e855","pro":false},{"uuid":"a34f04f0-349c-11eb-a24a-0242ac140003","id":2538318,"name":"pagelines","svg":"svg/line/pagelines.svg","category":"Brand Logos","style":"Line","tags":["marketing-platform","platform","design","logo","pagelines"],"code":60597,"unicode":"ecb5","pro":false},{"uuid":"a34ea8b0-349c-11eb-ba72-0242ac140003","id":2538314,"name":"pagerduty","svg":"svg/line/pagerduty.svg","category":"Brand Logos","style":"Line","tags":["cloud-computing","logo","pagerduty"],"code":60594,"unicode":"ecb2","pro":false},{"uuid":"751ec880-251e-11e9-9706-0242ac140003","id":1213960,"name":"paint-tool","svg":"svg/line/paint-tool.svg","category":"Construction","style":"Line","tags":["paint-roller","paint","roller","color-roller","paint-tool"],"code":59444,"unicode":"e834","pro":false},{"uuid":"d7b61c20-334b-11e9-8d27-0242ac140003","id":1237465,"name":"palette","svg":"svg/line/palette.svg","category":"Design Tools","style":"Line","tags":["color-plate","color-palette","color","design-tool","palette"],"code":60390,"unicode":"ebe6","pro":false},{"uuid":"ae69fb50-5427-11ea-bdae-0242ac140003","id":1784372,"name":"panel-add","svg":"svg/line/panel-add.svg","category":"Business","style":"Line","tags":["add-panel","graph","chart","analysis","analytics","panel-add"],"code":60495,"unicode":"ec4f","pro":false},{"uuid":"b46e30b0-253b-11e9-ae05-0242ac140003","id":1214598,"name":"panorama-h","svg":"svg/line/panorama-h.svg","category":"Design Tools","style":"Line","tags":["panorama","horizontal","panorama-image","panorama-mode","panorama-camera","panorama-h"],"code":60076,"unicode":"eaac","pro":false},{"uuid":"b46e26b0-253b-11e9-8da2-0242ac140003","id":1214597,"name":"panorama-h-alt","svg":"svg/line/panorama-h-alt.svg","category":"Design Tools","style":"Line","tags":["panorama","horizontal","panorama-image","panorama-mode","panorama-camera","panorama-h-alt"],"code":60068,"unicode":"eaa4","pro":false},{"uuid":"b46dc020-253b-11e9-83fb-0242ac140003","id":1214587,"name":"panorama-v","svg":"svg/line/panorama-v.svg","category":"Design Tools","style":"Line","tags":["vertical-panorama","panorama","panorama-mode","panorama-camera","panorama-v"],"code":60075,"unicode":"eaab","pro":false},{"uuid":"5b2e0000-2529-11e9-bf94-0242ac140003","id":1214351,"name":"paperclip","svg":"svg/line/paperclip.svg","category":"User Interface","style":"Line","tags":["attach","attachment","paperclip"],"code":59845,"unicode":"e9c5","pro":false},{"uuid":"12573a60-254d-11e9-8efb-0242ac140003","id":1216337,"name":"paragraph","svg":"svg/line/paragraph.svg","category":"Content","style":"Line","tags":["short-text","paragraph"],"code":60320,"unicode":"eba0","pro":false},{"uuid":"7f4b5780-2529-11e9-be06-0242ac140003","id":1214379,"name":"parcel","svg":"svg/line/parcel.svg","category":"Transport","style":"Line","tags":["box","package","shipping","delivery-box","parcel"],"code":59861,"unicode":"e9d5","pro":false},{"uuid":"dcdd3500-251f-11e9-82b9-0242ac140003","id":1214003,"name":"parking-circle","svg":"svg/line/parking-circle.svg","category":"Sign And Symbol","style":"Line","tags":["p-sign","sign","symbol","parking","parking-sign","parking-circle"],"code":59486,"unicode":"e85e","pro":false},{"uuid":"dcdd5080-251f-11e9-8041-0242ac140003","id":1214008,"name":"parking-square","svg":"svg/line/parking-square.svg","category":"Sign And Symbol","style":"Line","tags":["parking-sign","parking","park","parking-area","parking-square"],"code":59506,"unicode":"e872","pro":false},{"uuid":"b46e5990-253b-11e9-a8eb-0242ac140003","id":1214602,"name":"pathfinder","svg":"svg/line/pathfinder.svg","category":"Design Tools","style":"Line","tags":["intersect","intersection","overlap","pathfinder"],"code":60083,"unicode":"eab3","pro":false},{"uuid":"b46df360-253b-11e9-9e2f-0242ac140003","id":1214592,"name":"pathfinder-unite","svg":"svg/line/pathfinder-unite.svg","category":"Design Tools","style":"Line","tags":["unite","pathfinder","merge","pathfinder-unite"],"code":60069,"unicode":"eaa5","pro":false},{"uuid":"96f2fe30-252c-11e9-a00b-0242ac140003","id":1214505,"name":"pause","svg":"svg/line/pause.svg","category":"Multimedia","style":"Line","tags":["pause-button","control","media","pause"],"code":59980,"unicode":"ea4c","pro":false},{"uuid":"96f2eec0-252c-11e9-84a7-0242ac140003","id":1214504,"name":"pause-circle","svg":"svg/line/pause-circle.svg","category":"Multimedia","style":"Line","tags":["pause","pause-button","control","media","pause-circle"],"code":59976,"unicode":"ea48","pro":false},{"uuid":"ce5664b0-547d-11e9-a632-0242ac140003","id":1288236,"name":"paypal","svg":"svg/line/paypal.svg","category":"Brand Logos","style":"Line","tags":["payment-gateway","logo","paypal"],"code":60436,"unicode":"ec14","pro":false},{"uuid":"5b2c5d20-2529-11e9-b54d-0242ac140003","id":1214304,"name":"pen","svg":"svg/line/pen.svg","category":"User Interface","style":"Line","tags":["pencil","edit","write","pen"],"code":59790,"unicode":"e98e","pro":false},{"uuid":"5f777aa0-251f-11e9-9cf3-0242ac140003","id":1213994,"name":"pentagon","svg":"svg/line/pentagon.svg","category":"Shape","style":"Line","tags":["shape","design","design-shape","pentagon"],"code":59473,"unicode":"e851","pro":false},{"uuid":"2a276c00-875c-11e9-ae21-0242ac140003","id":1408655,"name":"percentage","svg":"svg/line/percentage.svg","category":"Business","style":"Line","tags":["discount","offer","sale","sign","percentage"],"code":60476,"unicode":"ec3c","pro":false},{"uuid":"ff499c30-2529-11e9-9cdd-0242ac140003","id":1214404,"name":"phone","svg":"svg/line/phone.svg","category":"Communication","style":"Line","tags":["call","telephone","phone"],"code":59879,"unicode":"e9e7","pro":false},{"uuid":"ff49a1b0-2529-11e9-8476-0242ac140003","id":1214405,"name":"phone-alt","svg":"svg/line/phone-alt.svg","category":"Communication","style":"Line","tags":["call","phone","telephone","phone-alt"],"code":59924,"unicode":"ea14","pro":false},{"uuid":"ff4a6a90-2529-11e9-9877-0242ac140003","id":1214440,"name":"phone-pause","svg":"svg/line/phone-pause.svg","category":"Communication","style":"Line","tags":["call","communication","phone-pause"],"code":59956,"unicode":"ea34","pro":false},{"uuid":"ff498350-2529-11e9-b0a5-0242ac140003","id":1214400,"name":"phone-slash","svg":"svg/line/phone-slash.svg","category":"Communication","style":"Line","tags":["no-call","cancel-call","call","phone","phone-slash"],"code":59876,"unicode":"e9e4","pro":false},{"uuid":"ff49b800-2529-11e9-a25a-0242ac140003","id":1214409,"name":"phone-times","svg":"svg/line/phone-times.svg","category":"Communication","style":"Line","tags":["call-cancel","reject-call","no-call","phone","phone-times"],"code":59881,"unicode":"e9e9","pro":false},{"uuid":"ff49b260-2529-11e9-90e0-0242ac140003","id":1214408,"name":"phone-volume","svg":"svg/line/phone-volume.svg","category":"Communication","style":"Line","tags":["call","calling","phone","phone-volume"],"code":59883,"unicode":"e9eb","pro":false},{"uuid":"96f36e30-252c-11e9-8589-0242ac140003","id":1214515,"name":"picture","svg":"svg/line/picture.svg","category":"Multimedia","style":"Line","tags":["image-info","image-information","image-details","info","details","photo","image","picture"],"code":59989,"unicode":"ea55","pro":false},{"uuid":"d5bab810-253b-11e9-a2c3-0242ac140003","id":1214662,"name":"pizza-slice","svg":"svg/line/pizza-slice.svg","category":"User Interface","style":"Line","tags":["slice","pizza","fast-food","junk-food","food","pizza-slice"],"code":60137,"unicode":"eae9","pro":false},{"uuid":"d5ba4b80-253b-11e9-beb7-0242ac140003","id":1214643,"name":"plane","svg":"svg/line/plane.svg","category":"User Interface","style":"Line","tags":["airplane","aeroplane","aircraft","aviation","flight","plane"],"code":60122,"unicode":"eada","pro":false},{"uuid":"d5bad500-253b-11e9-a707-0242ac140003","id":1214667,"name":"plane-arrival","svg":"svg/line/plane-arrival.svg","category":"User Interface","style":"Line","tags":["landing","arrive","airplane","aeroplane","aircraft","aviation","flight","palne","plane-arrival"],"code":60151,"unicode":"eaf7","pro":false},{"uuid":"d5ba5100-253b-11e9-86f2-0242ac140003","id":1214644,"name":"plane-departure","svg":"svg/line/plane-departure.svg","category":"User Interface","style":"Line","tags":["airplane","aeroplane","aircraft","aviation","flight","plane","plane-departure"],"code":60123,"unicode":"eadb","pro":false},{"uuid":"d5ba7a60-253b-11e9-b792-0242ac140003","id":1214651,"name":"plane-fly","svg":"svg/line/plane-fly.svg","category":"User Interface","style":"Line","tags":["take-off","airplane","aeroplane","aircraft","aviation","flight","plane-fly"],"code":60130,"unicode":"eae2","pro":false},{"uuid":"96f40910-252c-11e9-b58d-0242ac140003","id":1214529,"name":"play","svg":"svg/line/play.svg","category":"Multimedia","style":"Line","tags":["start","play-button","media","play"],"code":60003,"unicode":"ea63","pro":false},{"uuid":"96f2d5d0-252c-11e9-970b-0242ac140003","id":1214502,"name":"play-circle","svg":"svg/line/play-circle.svg","category":"Multimedia","style":"Line","tags":["play","start","play-button","media","play-circle"],"code":59975,"unicode":"ea47","pro":false},{"uuid":"e7d81ed0-25f0-11e9-a5bd-0242ac140003","id":1218407,"name":"plug","svg":"svg/line/plug.svg","category":"User Interface","style":"Line","tags":["charging-plug","electricity-plug","charge-plug","plug"],"code":60376,"unicode":"ebd8","pro":false},{"uuid":"5b2c5720-2529-11e9-94cc-0242ac140003","id":1214303,"name":"plus","svg":"svg/line/plus.svg","category":"User Interface","style":"Line","tags":["add-new","add","addition","plus"],"code":59788,"unicode":"e98c","pro":false},{"uuid":"5b2e28a0-2529-11e9-8fac-0242ac140003","id":1214356,"name":"plus-circle","svg":"svg/line/plus-circle.svg","category":"User Interface","style":"Line","tags":["add-new","add","addition","plus","plus-circle"],"code":59841,"unicode":"e9c1","pro":false},{"uuid":"5b2c50f0-2529-11e9-8416-0242ac140003","id":1214302,"name":"plus-square","svg":"svg/line/plus-square.svg","category":"User Interface","style":"Line","tags":["add","insert","plus","plus-square"],"code":59787,"unicode":"e98b","pro":false},{"uuid":"9cddbf40-2524-11e9-9ada-0242ac140003","id":1214167,"name":"podium","svg":"svg/line/podium.svg","category":"Education","style":"Line","tags":["speaker","public-speaker","stage","podium"],"code":59652,"unicode":"e904","pro":false},{"uuid":"5f776de0-251f-11e9-b208-0242ac140003","id":1213993,"name":"polygon","svg":"svg/line/polygon.svg","category":"Shape","style":"Line","tags":["shape","design","design-shape","polygon"],"code":59480,"unicode":"e858","pro":false},{"uuid":"bc7c9ad0-2546-11e9-a26f-0242ac140003","id":1216014,"name":"post-stamp","svg":"svg/line/post-stamp.svg","category":"Communication","style":"Line","tags":["ticket","at","stamp","posrtcard","post-stamp"],"code":60205,"unicode":"eb2d","pro":false},{"uuid":"ff4a43c0-2529-11e9-93e3-0242ac140003","id":1214433,"name":"postcard","svg":"svg/line/postcard.svg","category":"Communication","style":"Line","tags":["envelope","letter","post","message","communication","postcard"],"code":59905,"unicode":"ea01","pro":false},{"uuid":"9d2643d0-2523-11e9-b52b-0242ac140003","id":1214083,"name":"pound","svg":"svg/line/pound.svg","category":"Business","style":"Line","tags":["pound-sign","money","currency","pound"],"code":59566,"unicode":"e8ae","pro":false},{"uuid":"9d2649c0-2523-11e9-81e6-0242ac140003","id":1214084,"name":"pound-circle","svg":"svg/line/pound-circle.svg","category":"Business","style":"Line","tags":["pound-coin","pound","coin","money","currency","pound-circle"],"code":59568,"unicode":"e8b0","pro":false},{"uuid":"d5bab2a0-253b-11e9-ab71-0242ac140003","id":1214661,"name":"power","svg":"svg/line/power.svg","category":"User Interface","style":"Line","tags":["power-button","on","power-off","start-button","multimedia","power"],"code":60135,"unicode":"eae7","pro":false},{"uuid":"f519bb80-2524-11e9-aa73-0242ac140003","id":1214187,"name":"prescription-bottle","svg":"svg/line/prescription-bottle.svg","category":"Medical","style":"Line","tags":["medicine-bottle","medicine-pack","pills-bottle","medicine","prescription-bottle"],"code":59673,"unicode":"e919","pro":false},{"uuid":"bb06aab0-2546-11e9-9df2-0242ac140003","id":1215957,"name":"presentation","svg":"svg/line/presentation.svg","category":"Education","style":"Line","tags":["presentation-board","presentation"],"code":60211,"unicode":"eb33","pro":false},{"uuid":"9cdd3bc0-2524-11e9-a765-0242ac140003","id":1214157,"name":"presentation-check","svg":"svg/line/presentation-check.svg","category":"Education","style":"Line","tags":["presentation-board","education-board","board","presentation-check"],"code":59667,"unicode":"e913","pro":false},{"uuid":"9cdd2f60-2524-11e9-8c18-0242ac140003","id":1214156,"name":"presentation-edit","svg":"svg/line/presentation-edit.svg","category":"Education","style":"Line","tags":["presentation-board","education-board","board","presentation-edit"],"code":59642,"unicode":"e8fa","pro":false},{"uuid":"9d263d60-2523-11e9-8e68-0242ac140003","id":1214082,"name":"presentation-line","svg":"svg/line/presentation-line.svg","category":"Business","style":"Line","tags":["presentation-board","growth-graph","graph","education-board","board","presentation-line"],"code":59557,"unicode":"e8a5","pro":false},{"uuid":"9cdcc5b0-2524-11e9-8bdb-0242ac140003","id":1214148,"name":"presentation-lines-alt","svg":"svg/line/presentation-lines-alt.svg","category":"Education","style":"Line","tags":["presentation-board","education-board","board","presentation-lines-alt"],"code":59634,"unicode":"e8f2","pro":false},{"uuid":"9cdd2300-2524-11e9-a4f3-0242ac140003","id":1214155,"name":"presentation-minus","svg":"svg/line/presentation-minus.svg","category":"Education","style":"Line","tags":["presentation-board","education-board","board","presentation-minus"],"code":59641,"unicode":"e8f9","pro":false},{"uuid":"bb069f80-2546-11e9-b0e9-0242ac140003","id":1215955,"name":"presentation-play","svg":"svg/line/presentation-play.svg","category":"Education","style":"Line","tags":["video-presentation","presentation-board","board","presentation-play"],"code":60182,"unicode":"eb16","pro":false},{"uuid":"9cdd1690-2524-11e9-8174-0242ac140003","id":1214154,"name":"presentation-plus","svg":"svg/line/presentation-plus.svg","category":"Education","style":"Line","tags":["presentation-board","education-board","board","presentation-plus"],"code":59640,"unicode":"e8f8","pro":false},{"uuid":"9cdd0a10-2524-11e9-9e7f-0242ac140003","id":1214153,"name":"presentation-times","svg":"svg/line/presentation-times.svg","category":"Education","style":"Line","tags":["presentation-board","education-board","board","presentation-times"],"code":59638,"unicode":"e8f6","pro":false},{"uuid":"96f3c5e0-252c-11e9-af8a-0242ac140003","id":1214522,"name":"previous","svg":"svg/line/previous.svg","category":"Multimedia","style":"Line","tags":["back","media-control","control","media","previous"],"code":59995,"unicode":"ea5b","pro":false},{"uuid":"e11ce000-2521-11e9-bffe-0242ac140003","id":1214044,"name":"pricetag-alt","svg":"svg/line/pricetag-alt.svg","category":"Shopping","style":"Line","tags":["tag","price-tag","sale-tag","offer-tag","discount-tag","pricetag-alt"],"code":59528,"unicode":"e888","pro":false},{"uuid":"9aeb0d30-2527-11e9-acd4-0242ac140003","id":1214263,"name":"print","svg":"svg/line/print.svg","category":"Devices","style":"Line","tags":["printer","page","print-page","device","print"],"code":59748,"unicode":"e964","pro":false},{"uuid":"e7d7b4e0-25f0-11e9-8b4e-0242ac140003","id":1218388,"name":"print-slash","svg":"svg/line/print-slash.svg","category":"User Interface","style":"Line","tags":["no-printer","block-printer","no-paper","no-print","block-print","print-slash"],"code":60356,"unicode":"ebc4","pro":false},{"uuid":"4d898410-5c4c-11e9-af92-0242ac140003","id":1306086,"name":"process","svg":"svg/line/process.svg","category":"User Interface","style":"Line","tags":["repeat","reload","process"],"code":60478,"unicode":"ec3e","pro":false},{"uuid":"b87c51a0-2546-11e9-9c5a-0242ac140003","id":1215874,"name":"processor","svg":"svg/line/processor.svg","category":"Devices","style":"Line","tags":["chip","microchip","microprocessor","processor"],"code":60146,"unicode":"eaf2","pro":false},{"uuid":"6b8ee5b0-9a7d-11ea-acbf-0242ac140003","id":2056053,"name":"programming-language","svg":"svg/line/programming-language.svg","category":"Brand Logos","style":"Line","tags":["logo","language","programming-language"],"code":60556,"unicode":"ec8c","pro":false},{"uuid":"bcf52890-2546-11e9-9e8c-0242ac140003","id":1216074,"name":"pump","svg":"svg/line/pump.svg","category":"User Interface","style":"Line","tags":["fuel","petrol-pump","gas-pump","pump"],"code":60193,"unicode":"eb21","pro":false},{"uuid":"9d274a20-2523-11e9-a0d7-0242ac140003","id":1214124,"name":"puzzle-piece","svg":"svg/line/puzzle-piece.svg","category":"Business","style":"Line","tags":["puzzle","strategy","business","plug-in","puzzle-piece"],"code":59614,"unicode":"e8de","pro":false},{"uuid":"7e7e1d20-5427-11ea-8fcb-0242ac140003","id":1784370,"name":"qrcode-scan","svg":"svg/line/qrcode-scan.svg","category":"Shopping","style":"Line","tags":["qr-code-scan","qrcode","qr-code","barcode","scan","code","qrcode-scan"],"code":60494,"unicode":"ec4e","pro":false},{"uuid":"6970f6f0-c8c9-11ea-9feb-0242ac140003","id":2194193,"name":"question","svg":"svg/line/question.svg","category":"User Interface","style":"Line","tags":["question-mark","help","mark","ask","question"],"code":60568,"unicode":"ec98","pro":false},{"uuid":"5b2d31d0-2529-11e9-bd26-0242ac140003","id":1214328,"name":"question-circle","svg":"svg/line/question-circle.svg","category":"User Interface","style":"Line","tags":["help","mark","question","ask","question-circle"],"code":59820,"unicode":"e9ac","pro":false},{"uuid":"bace82c0-2546-11e9-8111-0242ac140003","id":1215949,"name":"rainbow","svg":"svg/line/rainbow.svg","category":"Weather","style":"Line","tags":["colors","weather","rainy-season","rainbow"],"code":60173,"unicode":"eb0d","pro":false},{"uuid":"37c1e300-252d-11e9-a08b-0242ac140003","id":1214558,"name":"raindrops","svg":"svg/line/raindrops.svg","category":"Weather","style":"Line","tags":["rainy-weather","rain","rainy","weather","forecast","raindrops"],"code":60032,"unicode":"ea80","pro":false},{"uuid":"37c1ea70-252d-11e9-9b84-0242ac140003","id":1214559,"name":"raindrops-alt","svg":"svg/line/raindrops-alt.svg","category":"Weather","style":"Line","tags":["rainy-weather","rain","rainy","forecast","raindrops-alt"],"code":60579,"unicode":"eca3","pro":false},{"uuid":"3e2ca4c0-5c4c-11e9-94af-0242ac140003","id":1306069,"name":"react","svg":"svg/line/react.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","react"],"code":60457,"unicode":"ec29","pro":false},{"uuid":"9d261fa0-2523-11e9-86da-0242ac140003","id":1214077,"name":"receipt","svg":"svg/line/receipt.svg","category":"Business","style":"Line","tags":["invoice","bill","payment","dollar","bill-payment","money-receipt","receipt"],"code":59565,"unicode":"e8ad","pro":false},{"uuid":"9d26dc20-2523-11e9-a28d-0242ac140003","id":1214105,"name":"receipt-alt","svg":"svg/line/receipt-alt.svg","category":"Business","style":"Line","tags":["bill","invoice","receipt","receipt-alt"],"code":59589,"unicode":"e8c5","pro":false},{"uuid":"ba8dce80-2546-11e9-9980-0242ac140003","id":1215937,"name":"record-audio","svg":"svg/line/record-audio.svg","category":"Multimedia","style":"Line","tags":["recording","record","record-audio"],"code":60158,"unicode":"eafe","pro":false},{"uuid":"ce563660-547d-11e9-a170-0242ac140003","id":1288232,"name":"reddit-alien-alt","svg":"svg/line/reddit-alien-alt.svg","category":"Brand Logos","style":"Line","tags":["development","logo","reddit-alien-alt"],"code":60437,"unicode":"ec15","pro":false},{"uuid":"5b2c2600-2529-11e9-9118-0242ac140003","id":1214298,"name":"redo","svg":"svg/line/redo.svg","category":"User Interface","style":"Line","tags":["reload","refresh","recycle","redo"],"code":59782,"unicode":"e986","pro":false},{"uuid":"d5baad20-253b-11e9-b507-0242ac140003","id":1214660,"name":"refresh","svg":"svg/line/refresh.svg","category":"User Interface","style":"Line","tags":["reload","sync","refresh"],"code":60138,"unicode":"eaea","pro":false},{"uuid":"dcdd2f80-251f-11e9-b58d-0242ac140003","id":1214002,"name":"registered","svg":"svg/line/registered.svg","category":"Sign And Symbol","style":"Line","tags":["registered-symbol","trademark","registered-sign","registered"],"code":59489,"unicode":"e861","pro":false},{"uuid":"1878de50-254b-11e9-9f40-0242ac140003","id":1216305,"name":"repeat","svg":"svg/line/repeat.svg","category":"Design Tools","style":"Line","tags":["loop","refresh","reload","repeat"],"code":60288,"unicode":"eb80","pro":false},{"uuid":"5b2d37c0-2529-11e9-915d-0242ac140003","id":1214329,"name":"restaurant","svg":"svg/line/restaurant.svg","category":"User Interface","style":"Line","tags":["fork","knife","spoon","food","utensils","restaurant"],"code":59816,"unicode":"e9a8","pro":false},{"uuid":"125751a0-254d-11e9-be1e-0242ac140003","id":1216339,"name":"right-indent-alt","svg":"svg/line/right-indent-alt.svg","category":"Content","style":"Line","tags":["right-indent","indent","right-alignment","text-format","right-indent-alt"],"code":60321,"unicode":"eba1","pro":false},{"uuid":"d7fa39c0-334b-11e9-a38b-0242ac140003","id":1237474,"name":"right-to-left-text-direction","svg":"svg/line/right-to-left-text-direction.svg","category":"Content","style":"Line","tags":["text","arrangement","style","format","format-text-direction-right-to-left","right-to-left-text-direction"],"code":60396,"unicode":"ebec","pro":false},{"uuid":"d12a7a70-3507-11e9-be62-0242ac140003","id":1239434,"name":"robot","svg":"svg/line/robot.svg","category":"Education","style":"Line","tags":["technology","machine","bot","robotic","automation","robot"],"code":60411,"unicode":"ebfb","pro":false},{"uuid":"3ac40ec0-75aa-11ea-8a51-0242ac140003","id":1881212,"name":"rocket","svg":"svg/line/rocket.svg","category":"User Interface","style":"Line","tags":["startup","launch","missile","rocket"],"code":60513,"unicode":"ec61","pro":false},{"uuid":"bcf50510-2546-11e9-9ba3-0242ac140003","id":1216071,"name":"rope-way","svg":"svg/line/rope-way.svg","category":"User Interface","style":"Line","tags":["ropeway","cable-way","ropeway-cabin","cable-car","rope-way"],"code":60197,"unicode":"eb25","pro":false},{"uuid":"bcf51100-2546-11e9-a70b-0242ac140003","id":1216072,"name":"rotate-360","svg":"svg/line/rotate-360.svg","category":"User Interface","style":"Line","tags":["reload","refresh","360","rotate-360"],"code":60199,"unicode":"eb27","pro":false},{"uuid":"5b2c03e0-2529-11e9-b140-0242ac140003","id":1214295,"name":"rss","svg":"svg/line/rss.svg","category":"User Interface","style":"Line","tags":["rss-feed","wifi","feed","rss"],"code":59780,"unicode":"e984","pro":false},{"uuid":"bc7c9300-2546-11e9-9633-0242ac140003","id":1216013,"name":"rss-alt","svg":"svg/line/rss-alt.svg","category":"Communication","style":"Line","tags":["rss","feed","rss-alt"],"code":60188,"unicode":"eb1c","pro":false},{"uuid":"ba8dae60-2546-11e9-9368-0242ac140003","id":1215934,"name":"rss-interface","svg":"svg/line/rss-interface.svg","category":"Multimedia","style":"Line","tags":["rss","rss-feed","interface","connection","rss-interface"],"code":60161,"unicode":"eb01","pro":false},{"uuid":"b46e1c80-253b-11e9-a85d-0242ac140003","id":1214596,"name":"ruler","svg":"svg/line/ruler.svg","category":"Design Tools","style":"Line","tags":["scale","measure","design-tool","ruler"],"code":60073,"unicode":"eaa9","pro":false},{"uuid":"b46e1260-253b-11e9-a792-0242ac140003","id":1214595,"name":"ruler-combined","svg":"svg/line/ruler-combined.svg","category":"Design Tools","style":"Line","tags":["ruler","scale","measure","design-tool","ruler-combined"],"code":60089,"unicode":"eab9","pro":false},{"uuid":"ae6a1370-5427-11ea-a344-0242ac140003","id":1784374,"name":"rupee-sign","svg":"svg/line/rupee-sign.svg","category":"Business","style":"Line","tags":["rupee","money","currency","indian","indian-currency","rupee-sign"],"code":60501,"unicode":"ec55","pro":false},{"uuid":"b5b93650-2521-11e9-87ee-0242ac140003","id":1214015,"name":"sad","svg":"svg/line/sad.svg","category":"Emoji","style":"Line","tags":["upset","emoji","sad"],"code":59495,"unicode":"e867","pro":false},{"uuid":"b5b97e30-2521-11e9-8466-0242ac140003","id":1214028,"name":"sad-cry","svg":"svg/line/sad-cry.svg","category":"Emoji","style":"Line","tags":["crying","cry","sad","tear","depressed","emoji","sad-cry"],"code":59513,"unicode":"e879","pro":false},{"uuid":"b5b978c0-2521-11e9-a0c1-0242ac140003","id":1214027,"name":"sad-crying","svg":"svg/line/sad-crying.svg","category":"Emoji","style":"Line","tags":["crying","cry","sad","tear","depressed","face-with-tear","emoji","sad-crying"],"code":59514,"unicode":"e87a","pro":false},{"uuid":"b5b91260-2521-11e9-bc0f-0242ac140003","id":1214009,"name":"sad-dizzy","svg":"svg/line/sad-dizzy.svg","category":"Emoji","style":"Line","tags":["sad","upset","emoji","sad-dizzy"],"code":59494,"unicode":"e866","pro":false},{"uuid":"b5b930a0-2521-11e9-9be6-0242ac140003","id":1214014,"name":"sad-squint","svg":"svg/line/sad-squint.svg","category":"Emoji","style":"Line","tags":["sad","upset","emoji","sad-squint"],"code":59488,"unicode":"e860","pro":false},{"uuid":"e0023b90-7e59-11ea-85e2-0242ac140003","id":1921394,"name":"sanitizer","svg":"svg/line/sanitizer.svg","category":"Medical","style":"Line","tags":["alcohol-based-sanitizer","hygiene","covid-19","coronavirus","sanitizer"],"code":60531,"unicode":"ec73","pro":false},{"uuid":"e0022af0-7e59-11ea-bbc1-0242ac140003","id":1921393,"name":"sanitizer-alt","svg":"svg/line/sanitizer-alt.svg","category":"Medical","style":"Line","tags":["alcohol-based-sanitizer","hygiene","sanitizer","covid-19","coronavirus","sanitizer-alt"],"code":60580,"unicode":"eca4","pro":false},{"uuid":"d62e8070-5427-11ea-8160-0242ac140003","id":1784384,"name":"save","svg":"svg/line/save.svg","category":"User Interface","style":"Line","tags":["data","storage","save"],"code":60506,"unicode":"ec5a","pro":false},{"uuid":"bd86a720-2546-11e9-ba5c-0242ac140003","id":1216143,"name":"scaling-left","svg":"svg/line/scaling-left.svg","category":"Arrows","style":"Line","tags":["expand","resize","scaling","arrow","scaling-left"],"code":60230,"unicode":"eb46","pro":false},{"uuid":"bd86a1a0-2546-11e9-80c4-0242ac140003","id":1216142,"name":"scaling-right","svg":"svg/line/scaling-right.svg","category":"Arrows","style":"Line","tags":["expand","resize","scaling","arrow","scaling-right"],"code":60213,"unicode":"eb35","pro":false},{"uuid":"96f29460-252c-11e9-8302-0242ac140003","id":1214496,"name":"scenery","svg":"svg/line/scenery.svg","category":"Multimedia","style":"Line","tags":["image","picture","photo","gallary","scenery"],"code":59968,"unicode":"ea40","pro":false},{"uuid":"9d273900-2523-11e9-a046-0242ac140003","id":1214121,"name":"schedule","svg":"svg/line/schedule.svg","category":"Business","style":"Line","tags":["calendar","planner","schedule"],"code":59611,"unicode":"e8db","pro":false},{"uuid":"751eaaa0-251e-11e9-9a46-0242ac140003","id":1213957,"name":"screw","svg":"svg/line/screw.svg","category":"Construction","style":"Line","tags":["bolt","tool","hardware","screw"],"code":59442,"unicode":"e832","pro":false},{"uuid":"bd870420-2546-11e9-b4f4-0242ac140003","id":1216160,"name":"scroll","svg":"svg/line/scroll.svg","category":"Arrows","style":"Line","tags":["arrows","resize","sort","scroll"],"code":60279,"unicode":"eb77","pro":false},{"uuid":"bd870f90-2546-11e9-b6f6-0242ac140003","id":1216162,"name":"scroll-h","svg":"svg/line/scroll-h.svg","category":"Arrows","style":"Line","tags":["arrows","resize","scroll","scroll-h"],"code":60226,"unicode":"eb42","pro":false},{"uuid":"5b2cd400-2529-11e9-88ab-0242ac140003","id":1214318,"name":"search","svg":"svg/line/search.svg","category":"User Interface","style":"Line","tags":["magnifier","find","magnifying-glass","search"],"code":59802,"unicode":"e99a","pro":false},{"uuid":"5b2b5070-2529-11e9-a594-0242ac140003","id":1214274,"name":"search-alt","svg":"svg/line/search-alt.svg","category":"User Interface","style":"Line","tags":["research","magnifying-glass","find","search-alt"],"code":59755,"unicode":"e96b","pro":false},{"uuid":"5b2b7460-2529-11e9-b52d-0242ac140003","id":1214277,"name":"search-minus","svg":"svg/line/search-minus.svg","category":"User Interface","style":"Line","tags":["zoom-out","zoom","magnifier","search-minus"],"code":59761,"unicode":"e971","pro":false},{"uuid":"5b2b7b80-2529-11e9-8ebd-0242ac140003","id":1214278,"name":"search-plus","svg":"svg/line/search-plus.svg","category":"User Interface","style":"Line","tags":["zoom-in","zoom","magnifier","search-plus"],"code":59764,"unicode":"e974","pro":false},{"uuid":"c26eabf0-3507-11e9-8924-0242ac140003","id":1239433,"name":"selfie","svg":"svg/line/selfie.svg","category":"Multimedia","style":"Line","tags":["photography","function","device","mobile","selfie"],"code":60412,"unicode":"ebfc","pro":false},{"uuid":"0f8aa250-252b-11e9-845b-0242ac140003","id":1214477,"name":"server","svg":"svg/line/server.svg","category":"Cloud And Web","style":"Line","tags":["data-storage","storage","technology","collection-data-storage","server"],"code":59942,"unicode":"ea26","pro":false},{"uuid":"0f8a6700-252b-11e9-bf47-0242ac140003","id":1214467,"name":"server-alt","svg":"svg/line/server-alt.svg","category":"Cloud And Web","style":"Line","tags":["server","database","dtorage","datacenter","server-alt"],"code":59981,"unicode":"ea4d","pro":false},{"uuid":"0f8a6d50-252b-11e9-b98e-0242ac140003","id":1214468,"name":"server-connection","svg":"svg/line/server-connection.svg","category":"Cloud And Web","style":"Line","tags":["server","database","dtorage","data-center","server-connection"],"code":59937,"unicode":"ea21","pro":false},{"uuid":"0f8aad60-252b-11e9-bce4-0242ac140003","id":1214479,"name":"server-network","svg":"svg/line/server-network.svg","category":"Cloud And Web","style":"Line","tags":["server-connection","data-storage","server","storage-connection","data-sharing","server-network"],"code":59951,"unicode":"ea2f","pro":false},{"uuid":"0f8aa7d0-252b-11e9-9c99-0242ac140003","id":1214478,"name":"server-network-alt","svg":"svg/line/server-network-alt.svg","category":"Cloud And Web","style":"Line","tags":["server-connection","data-storage","server","storage-connection","data-sharing","server-network-alt"],"code":59948,"unicode":"ea2c","pro":false},{"uuid":"0f8ab2e0-252b-11e9-bcfd-0242ac140003","id":1214480,"name":"servers","svg":"svg/line/servers.svg","category":"Cloud And Web","style":"Line","tags":["server-connection","data-storage","server","server-room","storage-connection","data-sharing","servers"],"code":59950,"unicode":"ea2e","pro":false},{"uuid":"dcdd29f0-251f-11e9-b244-0242ac140003","id":1214001,"name":"servicemark","svg":"svg/line/servicemark.svg","category":"Sign And Symbol","style":"Line","tags":["service-mark-symbol","sign","symbol","servicemark"],"code":59496,"unicode":"e868","pro":false},{"uuid":"3ac42a60-75aa-11ea-97df-0242ac140003","id":1881213,"name":"setting","svg":"svg/line/setting.svg","category":"User Interface","style":"Line","tags":["gear","settings","cogwheel","cog","configuration","optimization","preferences","setting"],"code":60512,"unicode":"ec60","pro":false},{"uuid":"6be53410-7e59-11ea-8e08-0242ac140003","id":1921380,"name":"share","svg":"svg/line/share.svg","category":"Chat","style":"Line","tags":["share-message","share-chat","social","sign","share-file","share"],"code":60514,"unicode":"ec62","pro":false},{"uuid":"5b2bebf0-2529-11e9-9739-0242ac140003","id":1214291,"name":"share-alt","svg":"svg/line/share-alt.svg","category":"User Interface","style":"Line","tags":["share","sharing","network","connected","share-alt"],"code":59773,"unicode":"e97d","pro":false},{"uuid":"fa017c30-251e-11e9-9e7b-0242ac140003","id":1213978,"name":"shield","svg":"svg/line/shield.svg","category":"Security","style":"Line","tags":["secure","protected","safe","antivirus","protect","shield"],"code":59507,"unicode":"e873","pro":false},{"uuid":"fa016f40-251e-11e9-af18-0242ac140003","id":1213977,"name":"shield-check","svg":"svg/line/shield-check.svg","category":"Security","style":"Line","tags":["shield","secure","protected","safe","antivirus","protect","shield-check"],"code":59474,"unicode":"e852","pro":false},{"uuid":"fa0169c0-251e-11e9-a515-0242ac140003","id":1213976,"name":"shield-exclamation","svg":"svg/line/shield-exclamation.svg","category":"Security","style":"Line","tags":["shield","shield-info","information","protect","protection","protected","shield-exclamation"],"code":59462,"unicode":"e846","pro":false},{"uuid":"e002a460-7e59-11ea-85e8-0242ac140003","id":1921401,"name":"shield-plus","svg":"svg/line/shield-plus.svg","category":"Medical","style":"Line","tags":["security","medical-insurance","insurance","safety","covid-19","health","life-insurance","shield-plus"],"code":60539,"unicode":"ec7b","pro":false},{"uuid":"fa018880-251e-11e9-bc52-0242ac140003","id":1213979,"name":"shield-question","svg":"svg/line/shield-question.svg","category":"Security","style":"Line","tags":["shield","question","protected","secure","safe","shield-question"],"code":59476,"unicode":"e854","pro":false},{"uuid":"fa019410-251e-11e9-942f-0242ac140003","id":1213980,"name":"shield-slash","svg":"svg/line/shield-slash.svg","category":"Security","style":"Line","tags":["not-protected","unsecure","unsafe","shield","not-protect","shield-slash"],"code":59471,"unicode":"e84f","pro":false},{"uuid":"7f4b4a10-2529-11e9-bd0e-0242ac140003","id":1214378,"name":"ship","svg":"svg/line/ship.svg","category":"Transport","style":"Line","tags":["boat","cruise","trawler","travel","transpot","ship"],"code":59866,"unicode":"e9da","pro":false},{"uuid":"e11d1230-2521-11e9-8250-0242ac140003","id":1214052,"name":"shop","svg":"svg/line/shop.svg","category":"Shopping","style":"Line","tags":["shopping","shopping-store","store","shop"],"code":59597,"unicode":"e8cd","pro":false},{"uuid":"e11ce610-2521-11e9-afab-0242ac140003","id":1214045,"name":"shopping-bag","svg":"svg/line/shopping-bag.svg","category":"Shopping","style":"Line","tags":["bag","online-shopping","cart","shopping-bag"],"code":59527,"unicode":"e887","pro":false},{"uuid":"e11cf720-2521-11e9-b281-0242ac140003","id":1214048,"name":"shopping-basket","svg":"svg/line/shopping-basket.svg","category":"Shopping","style":"Line","tags":["basket","shop","shopping","shopping-basket"],"code":59537,"unicode":"e891","pro":false},{"uuid":"e11cf190-2521-11e9-8779-0242ac140003","id":1214047,"name":"shopping-cart","svg":"svg/line/shopping-cart.svg","category":"Shopping","style":"Line","tags":["cart","bag","online-shopping","shopping","shopping-trolley","shopping-cart"],"code":59529,"unicode":"e889","pro":false},{"uuid":"e11cd790-2521-11e9-90c7-0242ac140003","id":1214043,"name":"shopping-cart-alt","svg":"svg/line/shopping-cart-alt.svg","category":"Shopping","style":"Line","tags":["cart","shopping-cart","online-shopping","shopping","trolley","shopping-trolley","shopping-cart-alt"],"code":59526,"unicode":"e886","pro":false},{"uuid":"751ed580-251e-11e9-9242-0242ac140003","id":1213962,"name":"shovel","svg":"svg/line/shovel.svg","category":"Construction","style":"Line","tags":["dig","construction-tool","tool","shovel"],"code":59454,"unicode":"e83e","pro":false},{"uuid":"1878e400-254b-11e9-938b-0242ac140003","id":1216306,"name":"shrink","svg":"svg/line/shrink.svg","category":"Design Tools","style":"Line","tags":["horizontal-minimize","minimize","resize","shrink"],"code":60291,"unicode":"eb83","pro":false},{"uuid":"bd87c950-2546-11e9-b291-0242ac140003","id":1216191,"name":"shuffle","svg":"svg/line/shuffle.svg","category":"Arrows","style":"Line","tags":["arrows","random","shuffle"],"code":60267,"unicode":"eb6b","pro":false},{"uuid":"ba8da1c0-2546-11e9-862a-0242ac140003","id":1215933,"name":"shutter","svg":"svg/line/shutter.svg","category":"Multimedia","style":"Line","tags":["camera-shutter","camera-lens","shutter"],"code":60163,"unicode":"eb03","pro":false},{"uuid":"ba8e37e0-2546-11e9-bba2-0242ac140003","id":1215947,"name":"shutter-alt","svg":"svg/line/shutter-alt.svg","category":"Multimedia","style":"Line","tags":["camera-shutter","shutter","camera-lens","shutter-alt"],"code":60170,"unicode":"eb0a","pro":false},{"uuid":"b5b9cba0-2521-11e9-8750-0242ac140003","id":1214042,"name":"sick","svg":"svg/line/sick.svg","category":"Emoji","style":"Line","tags":["sad","sick-face","emoji","sick"],"code":59525,"unicode":"e885","pro":false},{"uuid":"d7fa2e60-334b-11e9-afa6-0242ac140003","id":1237473,"name":"sigma","svg":"svg/line/sigma.svg","category":"Content","style":"Line","tags":["functions","math","sigma"],"code":60397,"unicode":"ebed","pro":false},{"uuid":"f9663200-2523-11e9-9249-0242ac140003","id":1214144,"name":"sign-alt","svg":"svg/line/sign-alt.svg","category":"Location And Map","style":"Line","tags":["direction-board","sign-board","sig","guidepost","guide","sign-alt"],"code":59633,"unicode":"e8f1","pro":false},{"uuid":"d5ba9af0-253b-11e9-ae9c-0242ac140003","id":1214657,"name":"sign-in-alt","svg":"svg/line/sign-in-alt.svg","category":"User Interface","style":"Line","tags":["sign-in","login","signin","entry","sign-in-alt"],"code":60133,"unicode":"eae5","pro":false},{"uuid":"f9662ca0-2523-11e9-95d9-0242ac140003","id":1214143,"name":"sign-left","svg":"svg/line/sign-left.svg","category":"Location And Map","style":"Line","tags":["direction-board","sign-board","sig","guidepost","guide","sign-left"],"code":59627,"unicode":"e8eb","pro":false},{"uuid":"d5ba9010-253b-11e9-8425-0242ac140003","id":1214655,"name":"sign-out-alt","svg":"svg/line/sign-out-alt.svg","category":"User Interface","style":"Line","tags":["sign-out","logout","signout","exit","sign-out-alt"],"code":60143,"unicode":"eaef","pro":false},{"uuid":"f9662730-2523-11e9-b059-0242ac140003","id":1214142,"name":"sign-right","svg":"svg/line/sign-right.svg","category":"Location And Map","style":"Line","tags":["direction-board","sign-board","sig","guidepost","guide","sign-right"],"code":59629,"unicode":"e8ed","pro":false},{"uuid":"5b2c79d0-2529-11e9-8b75-0242ac140003","id":1214308,"name":"signal","svg":"svg/line/signal.svg","category":"User Interface","style":"Line","tags":["network","phone-network","connection","signal"],"code":59793,"unicode":"e991","pro":false},{"uuid":"5b2c6f30-2529-11e9-8f7b-0242ac140003","id":1214307,"name":"signal-alt","svg":"svg/line/signal-alt.svg","category":"User Interface","style":"Line","tags":["network","phone-signal","phone-network","signal-alt"],"code":59789,"unicode":"e98d","pro":false},{"uuid":"9d26e1b0-2523-11e9-ba19-0242ac140003","id":1214106,"name":"signal-alt-3","svg":"svg/line/signal-alt-3.svg","category":"Business","style":"Line","tags":["bar-graph","graph","analysis","analytics","signal-alt-3"],"code":59588,"unicode":"e8c4","pro":false},{"uuid":"d5baa040-253b-11e9-9c59-0242ac140003","id":1214658,"name":"signin","svg":"svg/line/signin.svg","category":"User Interface","style":"Line","tags":["login","sign-in","entry","signin"],"code":60145,"unicode":"eaf1","pro":false},{"uuid":"d5ba9580-253b-11e9-909b-0242ac140003","id":1214656,"name":"signout","svg":"svg/line/signout.svg","category":"User Interface","style":"Line","tags":["sign-out","logout","exit","signout"],"code":60547,"unicode":"ec83","pro":false},{"uuid":"b5b95850-2521-11e9-a264-0242ac140003","id":1214021,"name":"silence","svg":"svg/line/silence.svg","category":"Emoji","style":"Line","tags":["mouth-shut","no-words","out-of-words","zipped-mouth","emoji","silence"],"code":59504,"unicode":"e870","pro":false},{"uuid":"b5b9c5f0-2521-11e9-8b7f-0242ac140003","id":1214041,"name":"silent-squint","svg":"svg/line/silent-squint.svg","category":"Emoji","style":"Line","tags":["sick","sad","sick-face","emoji","silent-squint"],"code":59524,"unicode":"e884","pro":false},{"uuid":"5b2db260-2529-11e9-a0a8-0242ac140003","id":1214343,"name":"sim-card","svg":"svg/line/sim-card.svg","category":"User Interface","style":"Line","tags":["chip","card","circuit","sim-card"],"code":59831,"unicode":"e9b7","pro":false},{"uuid":"ba3d3190-2546-11e9-bea3-0242ac140003","id":1215929,"name":"sitemap","svg":"svg/line/sitemap.svg","category":"Business","style":"Line","tags":["structure","architecture","hierarchy","sitemap"],"code":60168,"unicode":"eb08","pro":false},{"uuid":"96f41600-252c-11e9-bcdd-0242ac140003","id":1214531,"name":"skip-forward","svg":"svg/line/skip-forward.svg","category":"Multimedia","style":"Line","tags":["step-forward","fast","forward","next","skip","media","skip-forward"],"code":60005,"unicode":"ea65","pro":false},{"uuid":"96f42670-252c-11e9-ad2b-0242ac140003","id":1214533,"name":"skip-forward-alt","svg":"svg/line/skip-forward-alt.svg","category":"Multimedia","style":"Line","tags":["skip-forward","fast","forward","next","skip","media","skip-forward-alt"],"code":60008,"unicode":"ea68","pro":false},{"uuid":"96f41c60-252c-11e9-bfdc-0242ac140003","id":1214532,"name":"skip-forward-circle","svg":"svg/line/skip-forward-circle.svg","category":"Multimedia","style":"Line","tags":["skip-forward","fast","forward","next","skip","media","skip-forward-circle"],"code":60007,"unicode":"ea67","pro":false},{"uuid":"55655ad0-875c-11e9-b8f1-0242ac140003","id":1408695,"name":"skype","svg":"svg/line/skype.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","social-media","skype"],"code":60483,"unicode":"ec43","pro":false},{"uuid":"556541b0-875c-11e9-af15-0242ac140003","id":1408694,"name":"skype-alt","svg":"svg/line/skype-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","social-media","skype-alt"],"code":60480,"unicode":"ec40","pro":false},{"uuid":"db0dbcd0-3507-11e9-a919-0242ac140003","id":1239456,"name":"slack","svg":"svg/line/slack.svg","category":"Brand Logos","style":"Line","tags":["slack-logo","logo","social-media","brand","slack"],"code":60435,"unicode":"ec13","pro":false},{"uuid":"ce56a1d0-547d-11e9-8c67-0242ac140003","id":1288241,"name":"slack-alt","svg":"svg/line/slack-alt.svg","category":"Brand Logos","style":"Line","tags":["brand","logo","slack-logo","slack-alt"],"code":60448,"unicode":"ec20","pro":false},{"uuid":"5329b320-9a7d-11ea-8d07-0242ac140003","id":2055985,"name":"slider-h","svg":"svg/line/slider-h.svg","category":"Multimedia","style":"Line","tags":["slider","setting","configuration","slider-h"],"code":60548,"unicode":"ec84","pro":false},{"uuid":"5329cc40-9a7d-11ea-adaf-0242ac140003","id":2055986,"name":"slider-h-range","svg":"svg/line/slider-h-range.svg","category":"Multimedia","style":"Line","tags":["range-slider","slider","setting","configuration","slider-h-range"],"code":60550,"unicode":"ec86","pro":false},{"uuid":"ba8e1850-2546-11e9-985c-0242ac140003","id":1215944,"name":"sliders-v","svg":"svg/line/sliders-v.svg","category":"Multimedia","style":"Line","tags":["audio-setting","setting","audio-control","sliders-v"],"code":60169,"unicode":"eb09","pro":false},{"uuid":"ba8e0da0-2546-11e9-95ef-0242ac140003","id":1215943,"name":"sliders-v-alt","svg":"svg/line/sliders-v-alt.svg","category":"Multimedia","style":"Line","tags":["audio-setting","video-setting","setting","audio-control","sliders-v-alt"],"code":60166,"unicode":"eb06","pro":false},{"uuid":"b5b91f20-2521-11e9-bdfe-0242ac140003","id":1214011,"name":"smile","svg":"svg/line/smile.svg","category":"Emoji","style":"Line","tags":["happy","happy-face","smiley","emoji","smile"],"code":59491,"unicode":"e863","pro":false},{"uuid":"b5b96340-2521-11e9-a59e-0242ac140003","id":1214023,"name":"smile-beam","svg":"svg/line/smile-beam.svg","category":"Emoji","style":"Line","tags":["happy","smile","happy-face","smiley","emoji","smile-beam"],"code":59510,"unicode":"e876","pro":false},{"uuid":"b5b95dd0-2521-11e9-82df-0242ac140003","id":1214022,"name":"smile-dizzy","svg":"svg/line/smile-dizzy.svg","category":"Emoji","style":"Line","tags":["happy","smile","happy-face","smiley","emoji","smile-dizzy"],"code":59508,"unicode":"e874","pro":false},{"uuid":"b5b9af80-2521-11e9-9dc1-0242ac140003","id":1214037,"name":"smile-squint-wink","svg":"svg/line/smile-squint-wink.svg","category":"Emoji","style":"Line","tags":["winking-face","wink-face","blink","happy","smile","emoji","smile-squint-wink"],"code":59522,"unicode":"e882","pro":false},{"uuid":"b5b9b500-2521-11e9-bfcf-0242ac140003","id":1214038,"name":"smile-squint-wink-alt","svg":"svg/line/smile-squint-wink-alt.svg","category":"Emoji","style":"Line","tags":["winking-face","wink-face","blink","happy","smile","emoji","smile-squint-wink-alt"],"code":59530,"unicode":"e88a","pro":false},{"uuid":"b5b9a490-2521-11e9-9e62-0242ac140003","id":1214035,"name":"smile-wink","svg":"svg/line/smile-wink.svg","category":"Emoji","style":"Line","tags":["winking-face","wink-face","blink","happy","smile","emoji","smile-wink"],"code":59538,"unicode":"e892","pro":false},{"uuid":"b5b9aa10-2521-11e9-a616-0242ac140003","id":1214036,"name":"smile-wink-alt","svg":"svg/line/smile-wink-alt.svg","category":"Emoji","style":"Line","tags":["winking-face","wink-face","blink","happy","smile","emoji","smile-wink-alt"],"code":59521,"unicode":"e881","pro":false},{"uuid":"3e2c9de0-5c4c-11e9-8c19-0242ac140003","id":1306068,"name":"snapchat-alt","svg":"svg/line/snapchat-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","brand-logo","snapchat-alt"],"code":60460,"unicode":"ec2c","pro":false},{"uuid":"db0d1d10-3507-11e9-aa9f-0242ac140003","id":1239442,"name":"snapchat-ghost","svg":"svg/line/snapchat-ghost.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","snapchat","snapchat-ghost"],"code":60420,"unicode":"ec04","pro":false},{"uuid":"db0d32d0-3507-11e9-89a1-0242ac140003","id":1239444,"name":"snapchat-square","svg":"svg/line/snapchat-square.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","snapchat","snapchat-square"],"code":60423,"unicode":"ec07","pro":false},{"uuid":"37c1dd80-252d-11e9-bbc8-0242ac140003","id":1214557,"name":"snow-flake","svg":"svg/line/snow-flake.svg","category":"Weather","style":"Line","tags":["snowflake","snow","cold-temperature","freeze-temperature","weather","snow-flake"],"code":60031,"unicode":"ea7f","pro":false},{"uuid":"37c163e0-252d-11e9-841e-0242ac140003","id":1214536,"name":"snowflake","svg":"svg/line/snowflake.svg","category":"Weather","style":"Line","tags":["cold-temperature","freeze-temperature","weather","snowflake"],"code":60014,"unicode":"ea6e","pro":false},{"uuid":"37c18800-252d-11e9-9269-0242ac140003","id":1214542,"name":"snowflake-alt","svg":"svg/line/snowflake-alt.svg","category":"Weather","style":"Line","tags":["cold-temperature","freeze-temperature","weather","snowflake-alt"],"code":60018,"unicode":"ea72","pro":false},{"uuid":"e00286b0-7e59-11ea-8d51-0242ac140003","id":1921399,"name":"social-distancing","svg":"svg/line/social-distancing.svg","category":"Medical","style":"Line","tags":["social-distance","avoid-crowd","avoid-public","covid-19","covid","public","social-distancing"],"code":60536,"unicode":"ec78","pro":false},{"uuid":"bd870990-2546-11e9-bc3d-0242ac140003","id":1216161,"name":"sort","svg":"svg/line/sort.svg","category":"Arrows","style":"Line","tags":["arrows","resize","scroll","scroll-v","sort"],"code":60229,"unicode":"eb45","pro":false},{"uuid":"1256b980-254d-11e9-98cd-0242ac140003","id":1216330,"name":"sort-amount-down","svg":"svg/line/sort-amount-down.svg","category":"Content","style":"Line","tags":["expand","sort-order","sorting","sort-descending","big-mug-line","sort-amount-down"],"code":60309,"unicode":"eb95","pro":false},{"uuid":"1256c2c0-254d-11e9-b1e7-0242ac140003","id":1216331,"name":"sort-amount-up","svg":"svg/line/sort-amount-up.svg","category":"Content","style":"Line","tags":["expand","sort-order","sorting","sort-ascending","big-mug-line","sort-amount-up"],"code":60316,"unicode":"eb9c","pro":false},{"uuid":"bd8789d0-2546-11e9-9959-0242ac140003","id":1216181,"name":"sorting","svg":"svg/line/sorting.svg","category":"Arrows","style":"Line","tags":["up-arrow","down-arrow","arrow","ascending","descending","sorting"],"code":60254,"unicode":"eb5e","pro":false},{"uuid":"5b2ec9a0-2529-11e9-a334-0242ac140003","id":1214373,"name":"space-key","svg":"svg/line/space-key.svg","category":"User Interface","style":"Line","tags":["space-bar","keyboard","keys","space-key"],"code":59902,"unicode":"e9fe","pro":false},{"uuid":"47da5960-2522-11e9-8e55-0242ac140003","id":1214065,"name":"spade","svg":"svg/line/spade.svg","category":"Sports","style":"Line","tags":["card","playing-card-sign","spade-sign","sign","symbol","spade"],"code":59553,"unicode":"e8a1","pro":false},{"uuid":"bb0693e0-2546-11e9-b563-0242ac140003","id":1215953,"name":"sperms","svg":"svg/line/sperms.svg","category":"Education","style":"Line","tags":["sperm","genetics","sperms"],"code":60179,"unicode":"eb13","pro":false},{"uuid":"18790c70-254b-11e9-bf31-0242ac140003","id":1216313,"name":"spin","svg":"svg/line/spin.svg","category":"Design Tools","style":"Line","tags":["arrows","tornado","loop","spin"],"code":60297,"unicode":"eb89","pro":false},{"uuid":"c915c590-349b-11eb-95c1-0242ac140003","id":2538273,"name":"spinner","svg":"svg/line/spinner.svg","category":"User Interface","style":"Line","tags":["loading","refresh","restart","spinner"],"code":60584,"unicode":"eca8","pro":false},{"uuid":"c915d3f0-349b-11eb-8a46-0242ac140003","id":2538274,"name":"spinner-alt","svg":"svg/line/spinner-alt.svg","category":"User Interface","style":"Line","tags":["loading","refresh","restart","brightness","spinner-alt"],"code":60585,"unicode":"eca9","pro":false},{"uuid":"5f775630-251f-11e9-a077-0242ac140003","id":1213991,"name":"square","svg":"svg/line/square.svg","category":"Shape","style":"Line","tags":["shape","design","design-shape","square-shape","square"],"code":59475,"unicode":"e853","pro":false},{"uuid":"b46dfd60-253b-11e9-bbd9-0242ac140003","id":1214593,"name":"square-full","svg":"svg/line/square-full.svg","category":"Design Tools","style":"Line","tags":["uncheck","check-box","box","square","square-full"],"code":60066,"unicode":"eaa2","pro":false},{"uuid":"5f774a70-251f-11e9-8dc4-0242ac140003","id":1213990,"name":"square-shape","svg":"svg/line/square-shape.svg","category":"Shape","style":"Line","tags":["shape","square","design","design-shape","square-shape"],"code":59535,"unicode":"e88f","pro":false},{"uuid":"b5b94170-2521-11e9-8970-0242ac140003","id":1214017,"name":"squint","svg":"svg/line/squint.svg","category":"Emoji","style":"Line","tags":["sad","serious","emoji","squint"],"code":59502,"unicode":"e86e","pro":false},{"uuid":"5f7731b0-251f-11e9-a781-0242ac140003","id":1213988,"name":"star","svg":"svg/line/star.svg","category":"Shape","style":"Line","tags":["star-shape","favorite","bookmark","rate","ratings","star"],"code":59470,"unicode":"e84e","pro":false},{"uuid":"5b2bd2c0-2529-11e9-b04d-0242ac140003","id":1214288,"name":"star-half-alt","svg":"svg/line/star-half-alt.svg","category":"User Interface","style":"Line","tags":["star","half-star","ratings","rate","star-half-alt"],"code":59771,"unicode":"e97b","pro":false},{"uuid":"96f2ab00-252c-11e9-a1a7-0242ac140003","id":1214498,"name":"step-backward","svg":"svg/line/step-backward.svg","category":"Multimedia","style":"Line","tags":["skip-back","back","reverse","backward","multimedia","step-backward"],"code":59971,"unicode":"ea43","pro":false},{"uuid":"96f433f0-252c-11e9-a96a-0242ac140003","id":1214535,"name":"step-backward-alt","svg":"svg/line/step-backward-alt.svg","category":"Multimedia","style":"Line","tags":["skip-back","back","reverse","backward","multimedia","step-backward-alt"],"code":60011,"unicode":"ea6b","pro":false},{"uuid":"96f42d70-252c-11e9-82c7-0242ac140003","id":1214534,"name":"step-backward-circle","svg":"svg/line/step-backward-circle.svg","category":"Multimedia","style":"Line","tags":["skip-back","back","reverse","backward","multimedia","step-backward-circle"],"code":60009,"unicode":"ea69","pro":false},{"uuid":"96f314a0-252c-11e9-997c-0242ac140003","id":1214507,"name":"step-forward","svg":"svg/line/step-forward.svg","category":"Multimedia","style":"Line","tags":["next","media-control","control","media","step-forward"],"code":59986,"unicode":"ea52","pro":false},{"uuid":"e00198c0-7e59-11ea-a98c-0242ac140003","id":1921385,"name":"stethoscope","svg":"svg/line/stethoscope.svg","category":"Medical","style":"Line","tags":["medical-equipment","equipment","mediacl","covid-19","covid","stethoscope"],"code":60530,"unicode":"ec72","pro":false},{"uuid":"e0018b20-7e59-11ea-96d2-0242ac140003","id":1921384,"name":"stethoscope-alt","svg":"svg/line/stethoscope-alt.svg","category":"Medical","style":"Line","tags":["medical-equipment","equipment","mediacl","stethoscope","covid-19","stethoscope-alt"],"code":60522,"unicode":"ec6a","pro":false},{"uuid":"96f40280-252c-11e9-8c2c-0242ac140003","id":1214528,"name":"stop-circle","svg":"svg/line/stop-circle.svg","category":"Multimedia","style":"Line","tags":["stop","stop-button","control","media","stop-circle"],"code":60050,"unicode":"ea92","pro":false},{"uuid":"0e66c7a0-2525-11e9-a1c1-0242ac140003","id":1214191,"name":"stopwatch","svg":"svg/line/stopwatch.svg","category":"Time","style":"Line","tags":["timer","timing","watch","stopwatch"],"code":59678,"unicode":"e91e","pro":false},{"uuid":"0e66cd50-2525-11e9-a2bf-0242ac140003","id":1214192,"name":"stopwatch-slash","svg":"svg/line/stopwatch-slash.svg","category":"Time","style":"Line","tags":["off-stopwatch","timer","timing","watch","stopwatch-slash"],"code":59731,"unicode":"e953","pro":false},{"uuid":"e11d17c0-2521-11e9-91c7-0242ac140003","id":1214053,"name":"store","svg":"svg/line/store.svg","category":"Shopping","style":"Line","tags":["shop","shopping","shopping-store","store"],"code":59542,"unicode":"e896","pro":false},{"uuid":"e11cebf0-2521-11e9-99a0-0242ac140003","id":1214046,"name":"store-alt","svg":"svg/line/store-alt.svg","category":"Shopping","style":"Line","tags":["shop","shopping","shopping-store","store-alt"],"code":59531,"unicode":"e88b","pro":false},{"uuid":"e00295e0-7e59-11ea-8588-0242ac140003","id":1921400,"name":"store-slash","svg":"svg/line/store-slash.svg","category":"Medical","style":"Line","tags":["shop","avoid-shopping","avoid-store","covid-19","avoid-public-place","store-slash"],"code":60542,"unicode":"ec7e","pro":false},{"uuid":"e7d79250-25f0-11e9-9e29-0242ac140003","id":1218382,"name":"streering","svg":"svg/line/streering.svg","category":"User Interface","style":"Line","tags":["steering-wheel","wheel","vehicle-steering","car-steering","streering"],"code":60350,"unicode":"ebbe","pro":false},{"uuid":"f5199260-2524-11e9-9105-0242ac140003","id":1214180,"name":"stretcher","svg":"svg/line/stretcher.svg","category":"Medical","style":"Line","tags":["medical-equipment","hospital-equipment","hospital-bed","patient-bed","stretcher"],"code":59666,"unicode":"e912","pro":false},{"uuid":"1257c1f0-254d-11e9-b69c-0242ac140003","id":1216349,"name":"subject","svg":"svg/line/subject.svg","category":"Content","style":"Line","tags":["left-alignment","left-align","alignment","text-formating","align-left","subject"],"code":60333,"unicode":"ebad","pro":false},{"uuid":"7f4bfbc0-2529-11e9-85e4-0242ac140003","id":1214383,"name":"subway","svg":"svg/line/subway.svg","category":"Transport","style":"Line","tags":["train","travel","transport","subway"],"code":59865,"unicode":"e9d9","pro":false},{"uuid":"7f4b90b0-2529-11e9-8bba-0242ac140003","id":1214382,"name":"subway-alt","svg":"svg/line/subway-alt.svg","category":"Transport","style":"Line","tags":["train","travel","transport","subway-alt"],"code":59868,"unicode":"e9dc","pro":false},{"uuid":"9d264f60-2523-11e9-b514-0242ac140003","id":1214085,"name":"suitcase","svg":"svg/line/suitcase.svg","category":"Business","style":"Line","tags":["office-bag","bag","briefcase","portfolio","suitcase"],"code":59570,"unicode":"e8b2","pro":false},{"uuid":"9d260ea0-2523-11e9-a2f3-0242ac140003","id":1214074,"name":"suitcase-alt","svg":"svg/line/suitcase-alt.svg","category":"Business","style":"Line","tags":["office-bag","bag","briefcase","portfolio","suitcase-alt"],"code":59561,"unicode":"e8a9","pro":false},{"uuid":"5b2e7fa0-2529-11e9-9faf-0242ac140003","id":1214366,"name":"sun","svg":"svg/line/sun.svg","category":"User Interface","style":"Line","tags":["full-brightness","high-brightness","luminosity","brightness","light","sun"],"code":59852,"unicode":"e9cc","pro":false},{"uuid":"bace8e30-2546-11e9-b6db-0242ac140003","id":1215951,"name":"sunset","svg":"svg/line/sunset.svg","category":"Weather","style":"Line","tags":["sun-set","sun","weather","sunset"],"code":60175,"unicode":"eb0f","pro":false},{"uuid":"b5b999a0-2521-11e9-9248-0242ac140003","id":1214033,"name":"surprise","svg":"svg/line/surprise.svg","category":"Emoji","style":"Line","tags":["amazed","dumbfounded","surprised","shocked","emoji","surprise"],"code":59515,"unicode":"e87b","pro":false},{"uuid":"d5ba3210-253b-11e9-8b0a-0242ac140003","id":1214639,"name":"swatchbook","svg":"svg/line/swatchbook.svg","category":"User Interface","style":"Line","tags":["color-palette","palette","theme","color-cards","swatchbook"],"code":60116,"unicode":"ead4","pro":false},{"uuid":"3e2c9880-5c4c-11e9-91fe-0242ac140003","id":1306067,"name":"swiggy","svg":"svg/line/swiggy.svg","category":"Brand Logos","style":"Line","tags":["logo","food-delivery","brand-logo","brand","swiggy"],"code":60463,"unicode":"ec2f","pro":false},{"uuid":"bcf4c1f0-2546-11e9-8461-0242ac140003","id":1216065,"name":"swimmer","svg":"svg/line/swimmer.svg","category":"User Interface","style":"Line","tags":["swimming","swim","water","swimmer"],"code":60192,"unicode":"eb20","pro":false},{"uuid":"5b2c19e0-2529-11e9-8d4a-0242ac140003","id":1214297,"name":"sync","svg":"svg/line/sync.svg","category":"User Interface","style":"Line","tags":["reload","refresh","sync"],"code":59781,"unicode":"e985","pro":false},{"uuid":"d5ba8540-253b-11e9-b428-0242ac140003","id":1214653,"name":"sync-exclamation","svg":"svg/line/sync-exclamation.svg","category":"User Interface","style":"Line","tags":["sync-error","reload-error","refresh-error","error","exclamation-mark","sync-exclamation"],"code":60131,"unicode":"eae3","pro":false},{"uuid":"d5ba8ab0-253b-11e9-acd3-0242ac140003","id":1214654,"name":"sync-slash","svg":"svg/line/sync-slash.svg","category":"User Interface","style":"Line","tags":["sync-cancel","sync","sync-slash"],"code":60140,"unicode":"eaec","pro":false},{"uuid":"f5198cf0-2524-11e9-98ec-0242ac140003","id":1214179,"name":"syringe","svg":"svg/line/syringe.svg","category":"Medical","style":"Line","tags":["injection","medical-equipment","medical-syringe","syringe"],"code":59663,"unicode":"e90f","pro":false},{"uuid":"b46ec250-253b-11e9-a861-0242ac140003","id":1214612,"name":"table","svg":"svg/line/table.svg","category":"Design Tools","style":"Line","tags":["grid","tile","design-tool","th","table"],"code":60092,"unicode":"eabc","pro":false},{"uuid":"47da2760-2522-11e9-86fb-0242ac140003","id":1214057,"name":"table-tennis","svg":"svg/line/table-tennis.svg","category":"Sports","style":"Line","tags":["pingpong","racket","ball","table-tennis"],"code":59592,"unicode":"e8c8","pro":false},{"uuid":"9aeb0250-2527-11e9-8aab-0242ac140003","id":1214262,"name":"tablet","svg":"svg/line/tablet.svg","category":"Devices","style":"Line","tags":["tab","device","gadget","tablet"],"code":59752,"unicode":"e968","pro":false},{"uuid":"f5199800-2524-11e9-9c9e-0242ac140003","id":1214181,"name":"tablets","svg":"svg/line/tablets.svg","category":"Medical","style":"Line","tags":["medical-pills","medicine","pills","tablets"],"code":59664,"unicode":"e910","pro":false},{"uuid":"d5ba7fc0-253b-11e9-9a9e-0242ac140003","id":1214652,"name":"tachometer-fast","svg":"svg/line/tachometer-fast.svg","category":"User Interface","style":"Line","tags":["tachometer","gauge","meter","speedometer","tachometer-fast"],"code":60132,"unicode":"eae4","pro":false},{"uuid":"d62e8b20-5427-11ea-95e4-0242ac140003","id":1784385,"name":"tachometer-fast-alt","svg":"svg/line/tachometer-fast-alt.svg","category":"User Interface","style":"Line","tags":["dashboard","speedometer","performance","speed","analytics","tachometer-fast-alt"],"code":60508,"unicode":"ec5c","pro":false},{"uuid":"e11d1e20-2521-11e9-b52b-0242ac140003","id":1214054,"name":"tag","svg":"svg/line/tag.svg","category":"Shopping","style":"Line","tags":["label","offer-tag","price-tag","sale-tag","offer","sale","tag"],"code":59539,"unicode":"e893","pro":false},{"uuid":"e11cfca0-2521-11e9-9422-0242ac140003","id":1214049,"name":"tag-alt","svg":"svg/line/tag-alt.svg","category":"Shopping","style":"Line","tags":["tag","offer-tag","price-tag","sale-tag","offer","tag-alt"],"code":59541,"unicode":"e895","pro":false},{"uuid":"751ecf10-251e-11e9-b5e2-0242ac140003","id":1213961,"name":"tape","svg":"svg/line/tape.svg","category":"Construction","style":"Line","tags":["measuring-tape","measurement","measurement-tool","tool","tape"],"code":59443,"unicode":"e833","pro":false},{"uuid":"7f4b6d40-2529-11e9-bdb1-0242ac140003","id":1214381,"name":"taxi","svg":"svg/line/taxi.svg","category":"Transport","style":"Line","tags":["truck","transport","vehicle","taxi"],"code":59869,"unicode":"e9dd","pro":false},{"uuid":"e7d786d0-25f0-11e9-9aaf-0242ac140003","id":1218380,"name":"tear","svg":"svg/line/tear.svg","category":"User Interface","style":"Line","tags":["water-drop","water","drop","tear"],"code":60365,"unicode":"ebcd","pro":false},{"uuid":"55658060-875c-11e9-b363-0242ac140003","id":1408699,"name":"telegram","svg":"svg/line/telegram.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","social-media","telegram"],"code":60487,"unicode":"ec47","pro":false},{"uuid":"556576f0-875c-11e9-9510-0242ac140003","id":1408698,"name":"telegram-alt","svg":"svg/line/telegram-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","social-media","telegram-plane","telegram-alt"],"code":60484,"unicode":"ec44","pro":false},{"uuid":"bb0699c0-2546-11e9-95bb-0242ac140003","id":1215954,"name":"telescope","svg":"svg/line/telescope.svg","category":"Education","style":"Line","tags":["research","binocular","astrobiology-research","astrobiology-study","telescope"],"code":60178,"unicode":"eb12","pro":false},{"uuid":"37c26c90-252d-11e9-aafa-0242ac140003","id":1214581,"name":"temperature","svg":"svg/line/temperature.svg","category":"Weather","style":"Line","tags":["high-temperature","hot-temperature","thermometer","hot","temperature"],"code":60055,"unicode":"ea97","pro":false},{"uuid":"37c1c4e0-252d-11e9-9e72-0242ac140003","id":1214553,"name":"temperature-empty","svg":"svg/line/temperature-empty.svg","category":"Weather","style":"Line","tags":["temperature","termometer","weather","temperature-empty"],"code":60025,"unicode":"ea79","pro":false},{"uuid":"37c1bf50-252d-11e9-86ef-0242ac140003","id":1214552,"name":"temperature-half","svg":"svg/line/temperature-half.svg","category":"Weather","style":"Line","tags":["temperature","termometer","weather","temperature-half"],"code":60077,"unicode":"eaad","pro":false},{"uuid":"37c25d60-252d-11e9-90e4-0242ac140003","id":1214579,"name":"temperature-minus","svg":"svg/line/temperature-minus.svg","category":"Weather","style":"Line","tags":["cold-weather","minus","freeze-weather","weather","temperature","termometer","temperature-minus"],"code":60062,"unicode":"ea9e","pro":false},{"uuid":"37c26350-252d-11e9-b038-0242ac140003","id":1214580,"name":"temperature-plus","svg":"svg/line/temperature-plus.svg","category":"Weather","style":"Line","tags":["high-temperature","hot-temperature","temperature","thermometer","hot","temperature-plus"],"code":60051,"unicode":"ea93","pro":false},{"uuid":"37c17ce0-252d-11e9-840c-0242ac140003","id":1214540,"name":"temperature-quarter","svg":"svg/line/temperature-quarter.svg","category":"Weather","style":"Line","tags":["temperature","termometer","weather","temperature-quarter"],"code":60015,"unicode":"ea6f","pro":false},{"uuid":"37c1b9e0-252d-11e9-82a4-0242ac140003","id":1214551,"name":"temperature-three-quarter","svg":"svg/line/temperature-three-quarter.svg","category":"Weather","style":"Line","tags":["temperature","termometer","weather","temperature-three-quarter"],"code":60029,"unicode":"ea7d","pro":false},{"uuid":"47da4dd0-2522-11e9-bb38-0242ac140003","id":1214063,"name":"tennis-ball","svg":"svg/line/tennis-ball.svg","category":"Sports","style":"Line","tags":["ball","sport","game","tennis-ball"],"code":59549,"unicode":"e89d","pro":false},{"uuid":"d7f9d920-334b-11e9-88c7-0242ac140003","id":1237466,"name":"text","svg":"svg/line/text.svg","category":"Content","style":"Line","tags":["content","style","format","text"],"code":60388,"unicode":"ebe4","pro":false},{"uuid":"d7fa17e0-334b-11e9-849c-0242ac140003","id":1237471,"name":"text-fields","svg":"svg/line/text-fields.svg","category":"Content","style":"Line","tags":["text","arrangement","style","format","text-fields"],"code":60392,"unicode":"ebe8","pro":false},{"uuid":"d7fa0ca0-334b-11e9-b3ae-0242ac140003","id":1237470,"name":"text-size","svg":"svg/line/text-size.svg","category":"Content","style":"Line","tags":["text","arrangement","style","format","text-size"],"code":60394,"unicode":"ebea","pro":false},{"uuid":"d7fa0010-334b-11e9-a4b3-0242ac140003","id":1237469,"name":"text-strike-through","svg":"svg/line/text-strike-through.svg","category":"Content","style":"Line","tags":["text","arrangement","style","format","text-strike-through"],"code":60386,"unicode":"ebe2","pro":false},{"uuid":"b46db550-253b-11e9-a5e2-0242ac140003","id":1214586,"name":"th","svg":"svg/line/th.svg","category":"Design Tools","style":"Line","tags":["grid","web-layout","layout","th"],"code":60060,"unicode":"ea9c","pro":false},{"uuid":"1878f040-254b-11e9-bf43-0242ac140003","id":1216308,"name":"th-large","svg":"svg/line/th-large.svg","category":"Design Tools","style":"Line","tags":["all-border","border","full-boarder","th-large"],"code":60289,"unicode":"eb81","pro":false},{"uuid":"b46ed680-253b-11e9-8d9a-0242ac140003","id":1214614,"name":"th-slash","svg":"svg/line/th-slash.svg","category":"Design Tools","style":"Line","tags":["grid-off","grid","th-slash"],"code":60093,"unicode":"eabd","pro":false},{"uuid":"f5198740-2524-11e9-b3ba-0242ac140003","id":1214178,"name":"thermometer","svg":"svg/line/thermometer.svg","category":"Medical","style":"Line","tags":["doctor-thermometer","temperature-mesuring","medical-equipment","thermometer"],"code":59661,"unicode":"e90d","pro":false},{"uuid":"5b2d8a10-2529-11e9-9261-0242ac140003","id":1214337,"name":"thumbs-down","svg":"svg/line/thumbs-down.svg","category":"User Interface","style":"Line","tags":["dislike","unlike","thumb-down","thumb","vote-down","thumbs-down"],"code":59826,"unicode":"e9b2","pro":false},{"uuid":"5b2cf320-2529-11e9-9d71-0242ac140003","id":1214321,"name":"thumbs-up","svg":"svg/line/thumbs-up.svg","category":"User Interface","style":"Line","tags":["like","done","thumb-up","thumbs-up"],"code":59809,"unicode":"e9a1","pro":false},{"uuid":"37c1d1c0-252d-11e9-a018-0242ac140003","id":1214555,"name":"thunderstorm","svg":"svg/line/thunderstorm.svg","category":"Weather","style":"Line","tags":["storm-weather","storm","weather","forecast","thunderstorm"],"code":60027,"unicode":"ea7b","pro":false},{"uuid":"37c1d7e0-252d-11e9-8910-0242ac140003","id":1214556,"name":"thunderstorm-moon","svg":"svg/line/thunderstorm-moon.svg","category":"Weather","style":"Line","tags":["storm-weather","night-storm","storm","weather","moon","forecast","thunderstorm-moon"],"code":60030,"unicode":"ea7e","pro":false},{"uuid":"37c1ca70-252d-11e9-b6b5-0242ac140003","id":1214554,"name":"thunderstorm-sun","svg":"svg/line/thunderstorm-sun.svg","category":"Weather","style":"Line","tags":["storm-weather","storm","weather","sun","forecast","thunderstorm-sun"],"code":60028,"unicode":"ea7c","pro":false},{"uuid":"ba8de360-2546-11e9-b65c-0242ac140003","id":1215939,"name":"ticket","svg":"svg/line/ticket.svg","category":"Multimedia","style":"Line","tags":["movie-ticket","flight-ticket","ticket"],"code":60181,"unicode":"eb15","pro":false},{"uuid":"5b2dcac0-2529-11e9-ad8d-0242ac140003","id":1214345,"name":"times","svg":"svg/line/times.svg","category":"User Interface","style":"Line","tags":["cancel","delete","cross","close","times"],"code":59832,"unicode":"e9b8","pro":false},{"uuid":"5b2da820-2529-11e9-98be-0242ac140003","id":1214342,"name":"times-circle","svg":"svg/line/times-circle.svg","category":"User Interface","style":"Line","tags":["close","cancel","delete","cross","times-circle"],"code":59829,"unicode":"e9b5","pro":false},{"uuid":"5b2da240-2529-11e9-a0f1-0242ac140003","id":1214341,"name":"times-square","svg":"svg/line/times-square.svg","category":"User Interface","style":"Line","tags":["close","delete","remove","multiplication","multiply","times-square"],"code":59833,"unicode":"e9b9","pro":false},{"uuid":"5b2bbb00-2529-11e9-89b0-0242ac140003","id":1214286,"name":"toggle-off","svg":"svg/line/toggle-off.svg","category":"User Interface","style":"Line","tags":["toggle","on","off","switch","on-off","enable","disable","toggle-off"],"code":59767,"unicode":"e977","pro":false},{"uuid":"5b2baf30-2529-11e9-8b13-0242ac140003","id":1214285,"name":"toggle-on","svg":"svg/line/toggle-on.svg","category":"User Interface","style":"Line","tags":["toggle","on","off","switch","on-off","enable","disable","toggle-on"],"code":59766,"unicode":"e976","pro":false},{"uuid":"e0025af0-7e59-11ea-848a-0242ac140003","id":1921396,"name":"toilet-paper","svg":"svg/line/toilet-paper.svg","category":"Medical","style":"Line","tags":["tissue-paper","tissue-roll","hygiene","covid-19","tissue","precaution","toilet-paper"],"code":60532,"unicode":"ec74","pro":false},{"uuid":"bd87bbb0-2546-11e9-854c-0242ac140003","id":1216189,"name":"top-arrow-from-top","svg":"svg/line/top-arrow-from-top.svg","category":"Arrows","style":"Line","tags":["top-alignment","top-align","alignment","top-arrow-from-top"],"code":60264,"unicode":"eb68","pro":false},{"uuid":"bd87b570-2546-11e9-b997-0242ac140003","id":1216188,"name":"top-arrow-to-top","svg":"svg/line/top-arrow-to-top.svg","category":"Arrows","style":"Line","tags":["top-alignment","top-align","alignment","top-arrow-to-top"],"code":60265,"unicode":"eb69","pro":false},{"uuid":"37c19e50-252d-11e9-b461-0242ac140003","id":1214546,"name":"tornado","svg":"svg/line/tornado.svg","category":"Weather","style":"Line","tags":["wind","weather","forecast","tornado"],"code":60020,"unicode":"ea74","pro":false},{"uuid":"dcdd2430-251f-11e9-a495-0242ac140003","id":1214000,"name":"trademark","svg":"svg/line/trademark.svg","category":"Sign And Symbol","style":"Line","tags":["trademark-sign","stamp","sign","symbol","trademark"],"code":59484,"unicode":"e85c","pro":false},{"uuid":"dcdd1e60-251f-11e9-ad46-0242ac140003","id":1213999,"name":"trademark-circle","svg":"svg/line/trademark-circle.svg","category":"Sign And Symbol","style":"Line","tags":["trademark","trademark-sign","stamp","sign","symbol","trademark-circle"],"code":59533,"unicode":"e88d","pro":false},{"uuid":"751f0730-251e-11e9-a91f-0242ac140003","id":1213969,"name":"traffic-barrier","svg":"svg/line/traffic-barrier.svg","category":"Construction","style":"Line","tags":["barricade","barrier","work-in-process","traffic-barrier"],"code":59457,"unicode":"e841","pro":false},{"uuid":"5b2ba2e0-2529-11e9-aac2-0242ac140003","id":1214284,"name":"traffic-light","svg":"svg/line/traffic-light.svg","category":"User Interface","style":"Line","tags":["traffic","signal-light","light","red","green","traffic-signal","yellow","traffic-light"],"code":59768,"unicode":"e978","pro":false},{"uuid":"7e7e2820-5427-11ea-a803-0242ac140003","id":1784371,"name":"transaction","svg":"svg/line/transaction.svg","category":"Shopping","style":"Line","tags":["card-to-card","payment-method","payment","transaction"],"code":60541,"unicode":"ec7d","pro":false},{"uuid":"5b2c32c0-2529-11e9-b95d-0242ac140003","id":1214299,"name":"trash","svg":"svg/line/trash.svg","category":"User Interface","style":"Line","tags":["recyclebin","garbage-can","delete","remove","can","trash"],"code":59785,"unicode":"e989","pro":false},{"uuid":"5b2b99b0-2529-11e9-9d76-0242ac140003","id":1214283,"name":"trash-alt","svg":"svg/line/trash-alt.svg","category":"User Interface","style":"Line","tags":["trash","bin","garbage-can","delete","remove","can","trash-alt"],"code":59770,"unicode":"e97a","pro":false},{"uuid":"d5ba74c0-253b-11e9-8bda-0242ac140003","id":1214650,"name":"trees","svg":"svg/line/trees.svg","category":"User Interface","style":"Line","tags":["tree","forest","nature","trees"],"code":60127,"unicode":"eadf","pro":false},{"uuid":"5f773ed0-251f-11e9-871f-0242ac140003","id":1213989,"name":"triangle","svg":"svg/line/triangle.svg","category":"Shape","style":"Line","tags":["shape","design","design-shape","triangle"],"code":59469,"unicode":"e84d","pro":false},{"uuid":"47da3b90-2522-11e9-8548-0242ac140003","id":1214060,"name":"trophy","svg":"svg/line/trophy.svg","category":"Sports","style":"Line","tags":["cup","award","prize","winner","trophy"],"code":59544,"unicode":"e898","pro":false},{"uuid":"751ee950-251e-11e9-8f1f-0242ac140003","id":1213965,"name":"trowel","svg":"svg/line/trowel.svg","category":"Construction","style":"Line","tags":["construction-tool","construction","tool","trowel"],"code":59447,"unicode":"e837","pro":false},{"uuid":"7f4c06f0-2529-11e9-947d-0242ac140003","id":1214384,"name":"truck","svg":"svg/line/truck.svg","category":"Transport","style":"Line","tags":["shipping-truck","delivery","transport","truck"],"code":59898,"unicode":"e9fa","pro":false},{"uuid":"7f4b62e0-2529-11e9-8af3-0242ac140003","id":1214380,"name":"truck-loading","svg":"svg/line/truck-loading.svg","category":"Transport","style":"Line","tags":["hand-truck","parcel","loading","truck-loading"],"code":59870,"unicode":"e9de","pro":false},{"uuid":"db0db1b0-3507-11e9-9c1f-0242ac140003","id":1239455,"name":"tumblr","svg":"svg/line/tumblr.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","tumblr"],"code":60430,"unicode":"ec0e","pro":false},{"uuid":"3e2c9300-5c4c-11e9-8ea6-0242ac140003","id":1306066,"name":"tumblr-alt","svg":"svg/line/tumblr-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","tumblr-alt"],"code":60456,"unicode":"ec28","pro":false},{"uuid":"db0da660-3507-11e9-b7c0-0242ac140003","id":1239454,"name":"tumblr-square","svg":"svg/line/tumblr-square.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","tumblr","tumblr-square"],"code":60432,"unicode":"ec10","pro":false},{"uuid":"5b2b93d0-2529-11e9-ba13-0242ac140003","id":1214282,"name":"tv-retro","svg":"svg/line/tv-retro.svg","category":"User Interface","style":"Line","tags":["tv","television","retro-tv","vintage","retro","tv-retro"],"code":59765,"unicode":"e975","pro":false},{"uuid":"e7d7a8b0-25f0-11e9-acc2-0242ac140003","id":1218386,"name":"tv-retro-slash","svg":"svg/line/tv-retro-slash.svg","category":"User Interface","style":"Line","tags":["no-television","no-tv","no-entertainment","block-tv","tv-retro-slash"],"code":60351,"unicode":"ebbf","pro":false},{"uuid":"db0d6140-3507-11e9-aa04-0242ac140003","id":1239448,"name":"twitter","svg":"svg/line/twitter.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","twitter"],"code":60428,"unicode":"ec0c","pro":false},{"uuid":"3e2c8d80-5c4c-11e9-b8ce-0242ac140003","id":1306065,"name":"twitter-alt","svg":"svg/line/twitter-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand-logo","brand","twitter-alt"],"code":60453,"unicode":"ec25","pro":false},{"uuid":"5b2c3f40-2529-11e9-96ca-0242ac140003","id":1214300,"name":"umbrella","svg":"svg/line/umbrella.svg","category":"User Interface","style":"Line","tags":["rain-protection","protection","umbrella"],"code":59784,"unicode":"e988","pro":false},{"uuid":"b5b99430-2521-11e9-9d96-0242ac140003","id":1214032,"name":"unamused","svg":"svg/line/unamused.svg","category":"Emoji","style":"Line","tags":["annoyed-face","annoyed","tired-face","emoji","tired","unamused"],"code":59516,"unicode":"e87c","pro":false},{"uuid":"d7f9f4e0-334b-11e9-aef5-0242ac140003","id":1237468,"name":"underline","svg":"svg/line/underline.svg","category":"Content","style":"Line","tags":["content","style","format","underline"],"code":60391,"unicode":"ebe7","pro":false},{"uuid":"2a276130-875c-11e9-a5f7-0242ac140003","id":1408654,"name":"university","svg":"svg/line/university.svg","category":"Business","style":"Line","tags":["money","banking","payment","building","bank","university"],"code":60479,"unicode":"ec3f","pro":false},{"uuid":"fa016430-251e-11e9-b591-0242ac140003","id":1213975,"name":"unlock","svg":"svg/line/unlock.svg","category":"Security","style":"Line","tags":["lock-open","pad-lock","access","unlock"],"code":59464,"unicode":"e848","pro":false},{"uuid":"fa015e80-251e-11e9-b495-0242ac140003","id":1213974,"name":"unlock-alt","svg":"svg/line/unlock-alt.svg","category":"Security","style":"Line","tags":["unlock","lock-open","pad-lock","access","unlock-alt"],"code":59465,"unicode":"e849","pro":false},{"uuid":"d5baa780-253b-11e9-b42e-0242ac140003","id":1214659,"name":"upload","svg":"svg/line/upload.svg","category":"User Interface","style":"Line","tags":["share","sharing","up-arrow","upload"],"code":60141,"unicode":"eaed","pro":false},{"uuid":"bd877d60-2546-11e9-87d1-0242ac140003","id":1216179,"name":"upload-alt","svg":"svg/line/upload-alt.svg","category":"Arrows","style":"Line","tags":["upload","up-arrow","arrow","upload-alt"],"code":60250,"unicode":"eb5a","pro":false},{"uuid":"9d26b710-2523-11e9-bbdd-0242ac140003","id":1214099,"name":"usd-circle","svg":"svg/line/usd-circle.svg","category":"Business","style":"Line","tags":["dollar-coin","dollar","coin","money","currency","usd-circle"],"code":59579,"unicode":"e8bb","pro":false},{"uuid":"9d26abb0-2523-11e9-8091-0242ac140003","id":1214097,"name":"usd-square","svg":"svg/line/usd-square.svg","category":"Business","style":"Line","tags":["dollar","dollar-sign","usd-square"],"code":59581,"unicode":"e8bd","pro":false},{"uuid":"3396b7c0-252a-11e9-a8ed-0242ac140003","id":1214443,"name":"user","svg":"svg/line/user.svg","category":"Users","style":"Line","tags":["account","profile","avatar","user"],"code":59917,"unicode":"ea0d","pro":false},{"uuid":"e00278c0-7e59-11ea-b57e-0242ac140003","id":1921398,"name":"user-arrows","svg":"svg/line/user-arrows.svg","category":"Medical","style":"Line","tags":["social-distance","distance","avoid-crowd","avoid-public","public","social-distancing","covid-19","covid","user-arrows"],"code":60534,"unicode":"ec76","pro":false},{"uuid":"339708f0-252a-11e9-a950-0242ac140003","id":1214451,"name":"user-check","svg":"svg/line/user-check.svg","category":"Users","style":"Line","tags":["approve-user","accept-user","accept-account","friend-request","user-request","user-check"],"code":59969,"unicode":"ea41","pro":false},{"uuid":"3396cd40-252a-11e9-9852-0242ac140003","id":1214445,"name":"user-circle","svg":"svg/line/user-circle.svg","category":"Users","style":"Line","tags":["profile","user","avatar","man-profile","user-circle"],"code":59960,"unicode":"ea38","pro":false},{"uuid":"3396c2a0-252a-11e9-b173-0242ac140003","id":1214444,"name":"user-exclamation","svg":"svg/line/user-exclamation.svg","category":"Users","style":"Line","tags":["account-info","user-info","user-information","profile","avatar","user-exclamation"],"code":59958,"unicode":"ea36","pro":false},{"uuid":"3396e1c0-252a-11e9-a6ad-0242ac140003","id":1214447,"name":"user-location","svg":"svg/line/user-location.svg","category":"Users","style":"Line","tags":["location-point","location-marker","location","user-location"],"code":59920,"unicode":"ea10","pro":false},{"uuid":"e002b210-7e59-11ea-a357-0242ac140003","id":1921402,"name":"user-md","svg":"svg/line/user-md.svg","category":"Medical","style":"Line","tags":["professional","avatar","coronavirus","covid","doctor","user-md"],"code":60540,"unicode":"ec7c","pro":false},{"uuid":"3396ebd0-252a-11e9-8099-0242ac140003","id":1214448,"name":"user-minus","svg":"svg/line/user-minus.svg","category":"Users","style":"Line","tags":["remove-account","remove-user","user-minus"],"code":59927,"unicode":"ea17","pro":false},{"uuid":"e0016030-7e59-11ea-a5a4-0242ac140003","id":1921381,"name":"user-nurse","svg":"svg/line/user-nurse.svg","category":"Medical","style":"Line","tags":["nurse","treatment","coronavirus-patient","covid-19","coronavirus","patient","user-nurse"],"code":60516,"unicode":"ec64","pro":false},{"uuid":"3396a4f0-252a-11e9-8ad9-0242ac140003","id":1214441,"name":"user-plus","svg":"svg/line/user-plus.svg","category":"Users","style":"Line","tags":["add-account","add-user","add","avatar","user-plus"],"code":59918,"unicode":"ea0e","pro":false},{"uuid":"3396ad50-252a-11e9-ab01-0242ac140003","id":1214442,"name":"user-square","svg":"svg/line/user-square.svg","category":"Users","style":"Line","tags":["account","profile","user","avatar","user-square"],"code":59957,"unicode":"ea35","pro":false},{"uuid":"3396ff70-252a-11e9-862e-0242ac140003","id":1214450,"name":"user-times","svg":"svg/line/user-times.svg","category":"Users","style":"Line","tags":["delete-user","delete-account","remove-user","reject-user","user","avatar","user-times"],"code":59967,"unicode":"ea3f","pro":false},{"uuid":"3396d770-252a-11e9-8e99-0242ac140003","id":1214446,"name":"users-alt","svg":"svg/line/users-alt.svg","category":"Users","style":"Line","tags":["users","group","friends","profile","avatar","users-alt"],"code":59921,"unicode":"ea11","pro":false},{"uuid":"bcf53420-2546-11e9-b09e-0242ac140003","id":1216075,"name":"utensils","svg":"svg/line/utensils.svg","category":"User Interface","style":"Line","tags":["fork","knife","spoon","food","utensils"],"code":60202,"unicode":"eb2a","pro":false},{"uuid":"5b2bddc0-2529-11e9-8734-0242ac140003","id":1214289,"name":"utensils-alt","svg":"svg/line/utensils-alt.svg","category":"User Interface","style":"Line","tags":["spoon","fork","food","utensils-alt"],"code":59772,"unicode":"e97c","pro":false},{"uuid":"b46e0790-253b-11e9-bc95-0242ac140003","id":1214594,"name":"vector-square","svg":"svg/line/vector-square.svg","category":"Design Tools","style":"Line","tags":["transform-tool","free-transform","design-tool","vector-square"],"code":60071,"unicode":"eaa7","pro":false},{"uuid":"b46d95a0-253b-11e9-ac53-0242ac140003","id":1214583,"name":"vector-square-alt","svg":"svg/line/vector-square-alt.svg","category":"Design Tools","style":"Line","tags":["transform-tool","free-transform","design-tool","vector-square-alt"],"code":60058,"unicode":"ea9a","pro":false},{"uuid":"dcdd0af0-251f-11e9-9e44-0242ac140003","id":1213996,"name":"venus","svg":"svg/line/venus.svg","category":"Sign And Symbol","style":"Line","tags":["female-symbol","gender-sign","female-gendar-sign","sign","symbol","venus"],"code":59498,"unicode":"e86a","pro":false},{"uuid":"b46de950-253b-11e9-8810-0242ac140003","id":1214591,"name":"vertical-align-bottom","svg":"svg/line/vertical-align-bottom.svg","category":"Design Tools","style":"Line","tags":["bottom-align","bottom-alignment","align","alignment","vertical-align-bottom"],"code":60072,"unicode":"eaa8","pro":false},{"uuid":"b46ddf20-253b-11e9-9148-0242ac140003","id":1214590,"name":"vertical-align-center","svg":"svg/line/vertical-align-center.svg","category":"Design Tools","style":"Line","tags":["center-align","center-alignment","align","alignment","vertical-align-center"],"code":60578,"unicode":"eca2","pro":false},{"uuid":"b46d8970-253b-11e9-9622-0242ac140003","id":1214582,"name":"vertical-align-top","svg":"svg/line/vertical-align-top.svg","category":"Design Tools","style":"Line","tags":["top-align","top-alignment","align","alignment","vertical-align-top"],"code":60053,"unicode":"ea95","pro":false},{"uuid":"b46dd4e0-253b-11e9-b524-0242ac140003","id":1214589,"name":"vertical-distribute-bottom","svg":"svg/line/vertical-distribute-bottom.svg","category":"Design Tools","style":"Line","tags":["distribute-bottom","bottom-align","alignment","vertical-distribute-bottom"],"code":60067,"unicode":"eaa3","pro":false},{"uuid":"b46f4e60-253b-11e9-9eef-0242ac140003","id":1214625,"name":"vertical-distribution-center","svg":"svg/line/vertical-distribution-center.svg","category":"Design Tools","style":"Line","tags":["vertical-distribute-center","distribute-center","center-align","alignment","vertical-distribution-center"],"code":60100,"unicode":"eac4","pro":false},{"uuid":"b46f4200-253b-11e9-a0f3-0242ac140003","id":1214624,"name":"vertical-distribution-top","svg":"svg/line/vertical-distribution-top.svg","category":"Design Tools","style":"Line","tags":["vertical-distribute-top","distribute-top","top-align","alignment","vertical-distribution-top"],"code":60102,"unicode":"eac6","pro":false},{"uuid":"96f3f0a0-252c-11e9-8d25-0242ac140003","id":1214526,"name":"video","svg":"svg/line/video.svg","category":"Multimedia","style":"Line","tags":["video-camera","movie","video-calling","media","multimedia","video"],"code":60001,"unicode":"ea61","pro":false},{"uuid":"56d05610-c8c9-11ea-a071-0242ac140003","id":2194183,"name":"video-question","svg":"svg/line/video-question.svg","category":"Multimedia","style":"Line","tags":["video","camera","recording","help","video-help","video-question"],"code":60562,"unicode":"ec92","pro":false},{"uuid":"5b2b8df0-2529-11e9-9ef7-0242ac140003","id":1214281,"name":"video-slash","svg":"svg/line/video-slash.svg","category":"User Interface","style":"Line","tags":["video-camera-prohibited","not-allow-video","video-prohibited","no-video","no-video-camera","video-slash"],"code":59763,"unicode":"e973","pro":false},{"uuid":"e0016f80-7e59-11ea-a4d9-0242ac140003","id":1921382,"name":"virus-slash","svg":"svg/line/virus-slash.svg","category":"Medical","style":"Line","tags":["no-virus","coronavirus","virus","covid","virus-slash"],"code":60518,"unicode":"ec66","pro":false},{"uuid":"db0d9b00-3507-11e9-9c3b-0242ac140003","id":1239453,"name":"visual-studio","svg":"svg/line/visual-studio.svg","category":"Brand Logos","style":"Line","tags":["logo","vs","brand","visual-studio"],"code":60519,"unicode":"ec67","pro":false},{"uuid":"55656da0-875c-11e9-bbf7-0242ac140003","id":1408697,"name":"vk","svg":"svg/line/vk.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","vk"],"code":60486,"unicode":"ec46","pro":false},{"uuid":"55656470-875c-11e9-a209-0242ac140003","id":1408696,"name":"vk-alt","svg":"svg/line/vk-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","brand","vk-alt"],"code":60482,"unicode":"ec42","pro":false},{"uuid":"d5ba6d20-253b-11e9-b458-0242ac140003","id":1214649,"name":"voicemail","svg":"svg/line/voicemail.svg","category":"User Interface","style":"Line","tags":["voice-mail","voice-mail-message","voice-message","voice-box","voice-mail-box","voicemail"],"code":60128,"unicode":"eae0","pro":false},{"uuid":"d5ba67b0-253b-11e9-9844-0242ac140003","id":1214648,"name":"voicemail-rectangle","svg":"svg/line/voicemail-rectangle.svg","category":"User Interface","style":"Line","tags":["voice-mail","voice-mail-message","voice-message","voice-box","voice-mail-box","voicemail-rectangle"],"code":60129,"unicode":"eae1","pro":false},{"uuid":"47da47b0-2522-11e9-b87a-0242ac140003","id":1214062,"name":"volleyball","svg":"svg/line/volleyball.svg","category":"Sports","style":"Line","tags":["ball","game","sports","volleyball"],"code":59551,"unicode":"e89f","pro":false},{"uuid":"5b2cce30-2529-11e9-83df-0242ac140003","id":1214317,"name":"volume","svg":"svg/line/volume.svg","category":"User Interface","style":"Line","tags":["medium-volume","volume-up","full-volume","sound","volume"],"code":59823,"unicode":"e9af","pro":false},{"uuid":"5b2be5a0-2529-11e9-834a-0242ac140003","id":1214290,"name":"volume-down","svg":"svg/line/volume-down.svg","category":"User Interface","style":"Line","tags":["slow-volume","low-volume","volume","sound","volume-down"],"code":59774,"unicode":"e97e","pro":false},{"uuid":"5b2c86b0-2529-11e9-be0d-0242ac140003","id":1214309,"name":"volume-mute","svg":"svg/line/volume-mute.svg","category":"User Interface","style":"Line","tags":["mute","mute-volume","volume-off","volume","sound-off","volume-mute"],"code":59800,"unicode":"e998","pro":false},{"uuid":"5b2b87d0-2529-11e9-8f38-0242ac140003","id":1214280,"name":"volume-off","svg":"svg/line/volume-off.svg","category":"User Interface","style":"Line","tags":["volume","sound","speaker","volume-off"],"code":59814,"unicode":"e9a6","pro":false},{"uuid":"5b2b3770-2529-11e9-a176-0242ac140003","id":1214272,"name":"volume-up","svg":"svg/line/volume-up.svg","category":"User Interface","style":"Line","tags":["increase-volume","full-volume","sound","volume","volume-up"],"code":59756,"unicode":"e96c","pro":false},{"uuid":"ce565a90-547d-11e9-9959-0242ac140003","id":1288235,"name":"vuejs","svg":"svg/line/vuejs.svg","category":"Brand Logos","style":"Line","tags":["logo","developer-language","coding-language","vuejs"],"code":60485,"unicode":"ec45","pro":false},{"uuid":"ce5693b0-547d-11e9-904d-0242ac140003","id":1288240,"name":"vuejs-alt","svg":"svg/line/vuejs-alt.svg","category":"Brand Logos","style":"Line","tags":["logo","developer-language","vuejs-alt"],"code":60450,"unicode":"ec22","pro":false},{"uuid":"751efda0-251e-11e9-814c-0242ac140003","id":1213968,"name":"wall","svg":"svg/line/wall.svg","category":"Construction","style":"Line","tags":["brick-wall","partition","brick-partition","construction","wall"],"code":59459,"unicode":"e843","pro":false},{"uuid":"5b2c4a00-2529-11e9-acf4-0242ac140003","id":1214301,"name":"wallet","svg":"svg/line/wallet.svg","category":"User Interface","style":"Line","tags":["purse","holder","wallet"],"code":59778,"unicode":"e982","pro":false},{"uuid":"0e66d8b0-2525-11e9-922e-0242ac140003","id":1214194,"name":"watch","svg":"svg/line/watch.svg","category":"Time","style":"Line","tags":["hand-watch","time","smart-watch","wristwatch","watch"],"code":59679,"unicode":"e91f","pro":false},{"uuid":"0e66d320-2525-11e9-91c0-0242ac140003","id":1214193,"name":"watch-alt","svg":"svg/line/watch-alt.svg","category":"Time","style":"Line","tags":["hand-watch","time","watch-alt"],"code":59677,"unicode":"e91d","pro":false},{"uuid":"bace7bf0-2546-11e9-91ca-0242ac140003","id":1215948,"name":"water","svg":"svg/line/water.svg","category":"Weather","style":"Line","tags":["wave","sea","ocean","water"],"code":60172,"unicode":"eb0c","pro":false},{"uuid":"e7d7a320-25f0-11e9-8c5f-0242ac140003","id":1218385,"name":"water-drop-slash","svg":"svg/line/water-drop-slash.svg","category":"User Interface","style":"Line","tags":["no-water-drop","no-water","water-drop","drop","block-water","no-drop","water-drop-slash"],"code":60354,"unicode":"ebc2","pro":false},{"uuid":"bcf53f90-2546-11e9-9a1a-0242ac140003","id":1216076,"name":"water-glass","svg":"svg/line/water-glass.svg","category":"User Interface","style":"Line","tags":["bucket","water","glass","water-glass"],"code":60198,"unicode":"eb26","pro":false},{"uuid":"0f8a5dd0-252b-11e9-951c-0242ac140003","id":1214466,"name":"web-grid","svg":"svg/line/web-grid.svg","category":"Cloud And Web","style":"Line","tags":["web-layout","layout","section","grid","web-grid"],"code":59936,"unicode":"ea20","pro":false},{"uuid":"0f8a5850-252b-11e9-bf8c-0242ac140003","id":1214465,"name":"web-grid-alt","svg":"svg/line/web-grid-alt.svg","category":"Cloud And Web","style":"Line","tags":["web-layout","layout","section","grid","web-grid-alt"],"code":59933,"unicode":"ea1d","pro":false},{"uuid":"0f8a4bb0-252b-11e9-ba14-0242ac140003","id":1214463,"name":"web-section","svg":"svg/line/web-section.svg","category":"Cloud And Web","style":"Line","tags":["web-layout","layout","section","grid","web-section"],"code":59931,"unicode":"ea1b","pro":false},{"uuid":"0f8a4400-252b-11e9-a8a6-0242ac140003","id":1214462,"name":"web-section-alt","svg":"svg/line/web-section-alt.svg","category":"Cloud And Web","style":"Line","tags":["web-layout","layout","section","grid","web-section-alt"],"code":59935,"unicode":"ea1f","pro":false},{"uuid":"bf34eea0-253b-11e9-9274-0242ac140003","id":1214628,"name":"webcam","svg":"svg/line/webcam.svg","category":"Devices","style":"Line","tags":["camera","spy","video-camera","webcam"],"code":60106,"unicode":"eaca","pro":false},{"uuid":"b87c4490-2546-11e9-a529-0242ac140003","id":1215873,"name":"weight","svg":"svg/line/weight.svg","category":"Devices","style":"Line","tags":["weight-scale","weight-measuring","weight-measurement","weighing-machine","scale","measuring-equipment","weight"],"code":60150,"unicode":"eaf6","pro":false},{"uuid":"bc5a2f90-75a9-11ea-8493-0242ac140003","id":1881161,"name":"whatsapp","svg":"svg/line/whatsapp.svg","category":"Brand Logos","style":"Line","tags":["social-media","logo","whatsapp-logo","whatsapp"],"code":60511,"unicode":"ec5f","pro":false},{"uuid":"db0d8f80-3507-11e9-9d7e-0242ac140003","id":1239452,"name":"whatsapp-alt","svg":"svg/line/whatsapp-alt.svg","category":"Brand Logos","style":"Line","tags":["whatsapp","logo","social-media","brand","whatsapp-alt"],"code":60426,"unicode":"ec0a","pro":false},{"uuid":"751ef720-251e-11e9-90bf-0242ac140003","id":1213967,"name":"wheel-barrow","svg":"svg/line/wheel-barrow.svg","category":"Construction","style":"Line","tags":["buggy-concrete","concrete-trolley","construction-trolley","construction","wheel-barrow"],"code":59452,"unicode":"e83c","pro":false},{"uuid":"dcdd0400-251f-11e9-8903-0242ac140003","id":1213995,"name":"wheelchair","svg":"svg/line/wheelchair.svg","category":"Sign And Symbol","style":"Line","tags":["handicap-symbol","disability","handicap","wheelchair"],"code":59478,"unicode":"e856","pro":false},{"uuid":"f51981d0-2524-11e9-bf5a-0242ac140003","id":1214177,"name":"wheelchair-alt","svg":"svg/line/wheelchair-alt.svg","category":"Medical","style":"Line","tags":["wheel-chair","patient-chair","medical-chair","disability-chair","wheelchair-alt"],"code":59660,"unicode":"e90c","pro":false},{"uuid":"5b2b2e10-2529-11e9-8a95-0242ac140003","id":1214271,"name":"wifi","svg":"svg/line/wifi.svg","category":"User Interface","style":"Line","tags":["wireless","connection","signal","internet","wifi"],"code":59775,"unicode":"e97f","pro":false},{"uuid":"bf34f9d0-253b-11e9-a5ae-0242ac140003","id":1214630,"name":"wifi-router","svg":"svg/line/wifi-router.svg","category":"Devices","style":"Line","tags":["modem","router","wifi","wifi-router"],"code":60110,"unicode":"eace","pro":false},{"uuid":"5b2b81c0-2529-11e9-aa8f-0242ac140003","id":1214279,"name":"wifi-slash","svg":"svg/line/wifi-slash.svg","category":"User Interface","style":"Line","tags":["wifi-off","no-wifi","no-signal","no-connection","wifi","wifi-slash"],"code":59786,"unicode":"e98a","pro":false},{"uuid":"37c19320-252d-11e9-9d14-0242ac140003","id":1214544,"name":"wind","svg":"svg/line/wind.svg","category":"Weather","style":"Line","tags":["windy","weather","wind"],"code":60070,"unicode":"eaa6","pro":false},{"uuid":"4510eb00-875c-11e9-a6cc-0242ac140003","id":1408692,"name":"wind-moon","svg":"svg/line/wind-moon.svg","category":"Weather","style":"Line","tags":["moon-with-wind","wind","windy","weather","moon","night","wind-moon"],"code":60528,"unicode":"ec70","pro":false},{"uuid":"4510f230-875c-11e9-a03d-0242ac140003","id":1408693,"name":"wind-sun","svg":"svg/line/wind-sun.svg","category":"Weather","style":"Line","tags":["sun-with-wind","sun","wind","weather","windy","sunny-day","wind-sun"],"code":60481,"unicode":"ec41","pro":false},{"uuid":"0f8a12c0-252b-11e9-8a3b-0242ac140003","id":1214457,"name":"window","svg":"svg/line/window.svg","category":"Cloud And Web","style":"Line","tags":["web","web-page","browser","window"],"code":59979,"unicode":"ea4b","pro":false},{"uuid":"0f8a3510-252b-11e9-93b1-0242ac140003","id":1214460,"name":"window-grid","svg":"svg/line/window-grid.svg","category":"Cloud And Web","style":"Line","tags":["web-layout","layout","section","grid","window-grid"],"code":60576,"unicode":"eca0","pro":false},{"uuid":"0f8a29c0-252b-11e9-afab-0242ac140003","id":1214459,"name":"window-maximize","svg":"svg/line/window-maximize.svg","category":"Cloud And Web","style":"Line","tags":["web-layout","layout","section","grid","window-maximize"],"code":59934,"unicode":"ea1e","pro":false},{"uuid":"0f8a1ef0-252b-11e9-a40d-0242ac140003","id":1214458,"name":"window-section","svg":"svg/line/window-section.svg","category":"Cloud And Web","style":"Line","tags":["web-layout","layout","section","grid","window-section"],"code":59974,"unicode":"ea46","pro":false},{"uuid":"a34ed760-349c-11eb-8d35-0242ac140003","id":2538316,"name":"windows","svg":"svg/line/windows.svg","category":"Brand Logos","style":"Line","tags":["brand","logo","microsoft","windows"],"code":60596,"unicode":"ecb4","pro":false},{"uuid":"37c241c0-252d-11e9-9af8-0242ac140003","id":1214574,"name":"windsock","svg":"svg/line/windsock.svg","category":"Weather","style":"Line","tags":["direction-tool","wind","windy","weather","windsock"],"code":60049,"unicode":"ea91","pro":false},{"uuid":"d04e5d50-253b-11e9-8f69-0242ac140003","id":1214636,"name":"windy","svg":"svg/line/windy.svg","category":"Weather","style":"Line","tags":["cloud","sea","ocean","wind","weather","windy"],"code":60115,"unicode":"ead3","pro":false},{"uuid":"6b8ebb30-9a7d-11ea-847f-0242ac140003","id":2056050,"name":"wordpress","svg":"svg/line/wordpress.svg","category":"Brand Logos","style":"Line","tags":["logo","open-source-software","tool","software","wordpress"],"code":60554,"unicode":"ec8a","pro":false},{"uuid":"6b8eac20-9a7d-11ea-b4b0-0242ac140003","id":2056049,"name":"wordpress-simple","svg":"svg/line/wordpress-simple.svg","category":"Brand Logos","style":"Line","tags":["logo","open-source-software","tool","software","wordpress-simple"],"code":60552,"unicode":"ec88","pro":false},{"uuid":"1256cc30-254d-11e9-b8c9-0242ac140003","id":1216332,"name":"wrap-text","svg":"svg/line/wrap-text.svg","category":"Content","style":"Line","tags":["word-wrap","text","wrap-text"],"code":60317,"unicode":"eb9d","pro":false},{"uuid":"e7d797e0-25f0-11e9-b39b-0242ac140003","id":1218383,"name":"wrench","svg":"svg/line/wrench.svg","category":"User Interface","style":"Line","tags":["repair-tool","mechanic-tool","wrench"],"code":60352,"unicode":"ebc0","pro":false},{"uuid":"d62e76a0-5427-11ea-8047-0242ac140003","id":1784383,"name":"x","svg":"svg/line/x.svg","category":"User Interface","style":"Line","tags":["variable","mathematical-x","x"],"code":60505,"unicode":"ec59","pro":false},{"uuid":"d62e9f10-5427-11ea-82df-0242ac140003","id":1784387,"name":"x-add","svg":"svg/line/x-add.svg","category":"User Interface","style":"Line","tags":["add-variable","mathematical-x","x-add"],"code":60515,"unicode":"ec63","pro":false},{"uuid":"9d262ae0-2523-11e9-8846-0242ac140003","id":1214079,"name":"yen","svg":"svg/line/yen.svg","category":"Business","style":"Line","tags":["yen-sign","money","currency","yen"],"code":59562,"unicode":"e8aa","pro":false},{"uuid":"9d263070-2523-11e9-bd70-0242ac140003","id":1214080,"name":"yen-circle","svg":"svg/line/yen-circle.svg","category":"Business","style":"Line","tags":["yen-coin","yen","coin","money","currency","yen-circle"],"code":59563,"unicode":"e8ab","pro":false},{"uuid":"73e89450-875c-11e9-97fc-0242ac140003","id":1408701,"name":"yin-yang","svg":"svg/line/yin-yang.svg","category":"User Interface","style":"Line","tags":["chinese-symbol","taoism","yang","china","traditional","religious-symbol","yin-yang"],"code":60488,"unicode":"ec48","pro":false},{"uuid":"db0d8400-3507-11e9-9a54-0242ac140003","id":1239451,"name":"youtube","svg":"svg/line/youtube.svg","category":"Brand Logos","style":"Line","tags":["logo","social-media","brand","youtube"],"code":60422,"unicode":"ec06","pro":false}] \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/monochrome.json b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/monochrome.json new file mode 100644 index 00000000..7c7e8815 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/monochrome.json @@ -0,0 +1 @@ +[{"uuid":"3009ca70-f572-11e9-906e-0242ac140003","id":1597582,"name":"500px","svg":"svg/monochrome/500px.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","500px"],"pro":false},{"uuid":"3009bcd0-f572-11e9-b16f-0242ac140003","id":1597581,"name":"adobe","svg":"svg/monochrome/adobe.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","adobe"],"pro":false},{"uuid":"300a9290-f572-11e9-aabc-0242ac140003","id":1597599,"name":"adobe-alt","svg":"svg/monochrome/adobe-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","adobe-alt"],"pro":false},{"uuid":"680f7a50-df7d-11e9-ad9b-0242ac140003","id":1569133,"name":"airplay","svg":"svg/monochrome/airplay.svg","category":"Multimedia","style":"monochrome","tags":["screen-mirroring","screen","airplay"],"pro":false},{"uuid":"a4d41b80-df7d-11e9-9a13-0242ac140003","id":1569169,"name":"align","svg":"svg/monochrome/align.svg","category":"Content","style":"monochrome","tags":["right-indent","right-alignment","alignment","align"],"pro":false},{"uuid":"a4d23c20-df7d-11e9-85ea-0242ac140003","id":1569162,"name":"align-alt","svg":"svg/monochrome/align-alt.svg","category":"Content","style":"monochrome","tags":["alignment","align","text-adjustment","text-alignment","align-alt"],"pro":false},{"uuid":"a4d1f140-df7d-11e9-a7ca-0242ac140003","id":1569159,"name":"align-center","svg":"svg/monochrome/align-center.svg","category":"Content","style":"monochrome","tags":["center-alignment","align","alignment","text-formating","text-format","center","align-center"],"pro":false},{"uuid":"a4d7f540-df7d-11e9-95dc-0242ac140003","id":1569192,"name":"align-center-justify","svg":"svg/monochrome/align-center-justify.svg","category":"Content","style":"monochrome","tags":["center-alignment","alignment","center","align-center-justify"],"pro":false},{"uuid":"a4d5ee60-df7d-11e9-84eb-0242ac140003","id":1569182,"name":"align-justify","svg":"svg/monochrome/align-justify.svg","category":"Content","style":"monochrome","tags":["justify-alignment","justify","align","text-formating","text-format","alignment","align-justify"],"pro":false},{"uuid":"a4d5c830-df7d-11e9-9054-0242ac140003","id":1569180,"name":"align-left","svg":"svg/monochrome/align-left.svg","category":"Content","style":"monochrome","tags":["left-alignment","left-align","alignment","align-left"],"pro":false},{"uuid":"a4d3e290-df7d-11e9-917e-0242ac140003","id":1569167,"name":"align-left-justify","svg":"svg/monochrome/align-left-justify.svg","category":"Content","style":"monochrome","tags":["subject","left-alignment","left-align","alignment","text-formating","align-left-justify"],"pro":false},{"uuid":"a4d253d0-df7d-11e9-b0cc-0242ac140003","id":1569163,"name":"align-letter-right","svg":"svg/monochrome/align-letter-right.svg","category":"Content","style":"monochrome","tags":["align","alignment","align-right","align-letter-right"],"pro":false},{"uuid":"a4d46dd0-df7d-11e9-b9c4-0242ac140003","id":1569173,"name":"align-right","svg":"svg/monochrome/align-right.svg","category":"Content","style":"monochrome","tags":["right-alignment","right-align","alignment","align","align-right"],"pro":false},{"uuid":"a4d45b30-df7d-11e9-9c8a-0242ac140003","id":1569172,"name":"align-right-justify","svg":"svg/monochrome/align-right-justify.svg","category":"Content","style":"monochrome","tags":["right-alignment","right-align","alignment","align-right-justify"],"pro":false},{"uuid":"300a8750-f572-11e9-a156-0242ac140003","id":1597598,"name":"amazon","svg":"svg/monochrome/amazon.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","amazon"],"pro":false},{"uuid":"f68d2ac0-df7d-11e9-ad67-0242ac140003","id":1569212,"name":"analysis","svg":"svg/monochrome/analysis.svg","category":"Business","style":"monochrome","tags":["show-chart","growth-graph","graph","trading","analysis"],"pro":false},{"uuid":"f68d0370-df7d-11e9-acda-0242ac140003","id":1569210,"name":"analytics","svg":"svg/monochrome/analytics.svg","category":"Business","style":"monochrome","tags":["bar-graph","graph","analysis","analytics"],"pro":false},{"uuid":"cee54f60-1b81-11ea-91fb-0242ac140003","id":1651007,"name":"anchor","svg":"svg/monochrome/anchor.svg","category":"User Interface","style":"monochrome","tags":["marine","nautical","anchor"],"pro":false},{"uuid":"300a7c00-f572-11e9-8a13-0242ac140003","id":1597597,"name":"android","svg":"svg/monochrome/android.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","android"],"pro":false},{"uuid":"300830c0-f572-11e9-9282-0242ac140003","id":1597548,"name":"android-alt","svg":"svg/monochrome/android-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","brand-logo","android-alt"],"pro":false},{"uuid":"10076380-df7e-11e9-941c-0242ac140003","id":1569229,"name":"angle-double-down","svg":"svg/monochrome/angle-double-down.svg","category":"Arrows","style":"monochrome","tags":["down-chevron","double-chevron","down","chevron","arrow","direction","angle-double-down"],"pro":false},{"uuid":"1007a440-df7e-11e9-9bf3-0242ac140003","id":1569233,"name":"angle-double-left","svg":"svg/monochrome/angle-double-left.svg","category":"Arrows","style":"monochrome","tags":["double-chevron","left","chevron","arrow","direction","angle-double-left"],"pro":false},{"uuid":"10079310-df7e-11e9-9d53-0242ac140003","id":1569232,"name":"angle-double-right","svg":"svg/monochrome/angle-double-right.svg","category":"Arrows","style":"monochrome","tags":["double-chevron","right","chevron","arrow","direction","angle-double-right"],"pro":false},{"uuid":"100809e0-df7e-11e9-95a5-0242ac140003","id":1569239,"name":"angle-double-up","svg":"svg/monochrome/angle-double-up.svg","category":"Arrows","style":"monochrome","tags":["up-chevron","double-chevron","up","chevron","arrow","direction","angle-double-up"],"pro":false},{"uuid":"10078000-df7e-11e9-8ab4-0242ac140003","id":1569231,"name":"angle-down","svg":"svg/monochrome/angle-down.svg","category":"Arrows","style":"monochrome","tags":["down-arrow","down","arrow","direction","angle-down"],"pro":false},{"uuid":"10072f70-df7e-11e9-88fc-0242ac140003","id":1569226,"name":"angle-left","svg":"svg/monochrome/angle-left.svg","category":"Arrows","style":"monochrome","tags":["left-arrow","left","arrow","left-side","direction","angle-left"],"pro":false},{"uuid":"1006f710-df7e-11e9-bf40-0242ac140003","id":1569223,"name":"angle-right","svg":"svg/monochrome/angle-right.svg","category":"Arrows","style":"monochrome","tags":["right-arrow","right","arrow","direction","angle-right"],"pro":false},{"uuid":"1006d1a0-df7e-11e9-a44b-0242ac140003","id":1569221,"name":"angle-right-b","svg":"svg/monochrome/angle-right-b.svg","category":"Arrows","style":"monochrome","tags":["right-arrow","right","arrow","right-side","direction","angle-right-b"],"pro":false},{"uuid":"1007e6e0-df7e-11e9-9dcb-0242ac140003","id":1569237,"name":"angle-up","svg":"svg/monochrome/angle-up.svg","category":"Arrows","style":"monochrome","tags":["upper-arrow","top-arrow","up-arrow","arrow","direction","angle-up"],"pro":false},{"uuid":"30084a00-f572-11e9-a47a-0242ac140003","id":1597550,"name":"apple","svg":"svg/monochrome/apple.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","apple"],"pro":false},{"uuid":"300a7060-f572-11e9-9a0e-0242ac140003","id":1597596,"name":"apple-alt","svg":"svg/monochrome/apple-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","apple-alt"],"pro":false},{"uuid":"89fcc9f0-df7d-11e9-91ab-0242ac140003","id":1569154,"name":"apps","svg":"svg/monochrome/apps.svg","category":"Design Tools","style":"monochrome","tags":["grid","layout","arrange","apps"],"pro":false},{"uuid":"10077370-df7e-11e9-8726-0242ac140003","id":1569230,"name":"arrow-circle-down","svg":"svg/monochrome/arrow-circle-down.svg","category":"Arrows","style":"monochrome","tags":["down-arrow","down","arrow","direction","arrow-circle-down"],"pro":false},{"uuid":"10073fc0-df7e-11e9-a900-0242ac140003","id":1569227,"name":"arrow-circle-left","svg":"svg/monochrome/arrow-circle-left.svg","category":"Arrows","style":"monochrome","tags":["left-arrow","left","arrow","direction","arrow-circle-left"],"pro":false},{"uuid":"1006e280-df7e-11e9-915c-0242ac140003","id":1569222,"name":"arrow-circle-right","svg":"svg/monochrome/arrow-circle-right.svg","category":"Arrows","style":"monochrome","tags":["right-arrow","right","arrow","direction","arrow-circle-right"],"pro":false},{"uuid":"1007d820-df7e-11e9-aa38-0242ac140003","id":1569236,"name":"arrow-circle-up","svg":"svg/monochrome/arrow-circle-up.svg","category":"Arrows","style":"monochrome","tags":["upper-arrow","top-arrow","up-arrow","arrow","direction","arrow-circle-up"],"pro":false},{"uuid":"10071b20-df7e-11e9-a9d3-0242ac140003","id":1569225,"name":"arrow-down-left","svg":"svg/monochrome/arrow-down-left.svg","category":"Arrows","style":"monochrome","tags":["lower-left","left-arrow","left","lower","down-arrow","arrow","direction","arrow-down-left"],"pro":false},{"uuid":"100709a0-df7e-11e9-8040-0242ac140003","id":1569224,"name":"arrow-down-right","svg":"svg/monochrome/arrow-down-right.svg","category":"Arrows","style":"monochrome","tags":["lower-right-arrow","lower-right","arrow","lower","down-arrow","direction","arrow-down-right"],"pro":false},{"uuid":"1007c8c0-df7e-11e9-9d7f-0242ac140003","id":1569235,"name":"arrow-up-left","svg":"svg/monochrome/arrow-up-left.svg","category":"Arrows","style":"monochrome","tags":["upper-left-arrow","upper-left","upper","arrow","direction","arrow-up-left"],"pro":false},{"uuid":"1007b5e0-df7e-11e9-bb20-0242ac140003","id":1569234,"name":"arrow-up-right","svg":"svg/monochrome/arrow-up-right.svg","category":"Arrows","style":"monochrome","tags":["upper-right-arrow","upper-right","upper","arrow","direction","arrow-up-right"],"pro":false},{"uuid":"cee46ba0-1b81-11ea-bf40-0242ac140003","id":1650986,"name":"at","svg":"svg/monochrome/at.svg","category":"User Interface","style":"monochrome","tags":["address","contact","email","at"],"pro":false},{"uuid":"f68d7140-df7d-11e9-8c12-0242ac140003","id":1569215,"name":"bag","svg":"svg/monochrome/bag.svg","category":"Business","style":"monochrome","tags":["office-bag","briefcase","portfolio","suitcase","bag"],"pro":false},{"uuid":"a4d60100-df7d-11e9-a127-0242ac140003","id":1569183,"name":"bars","svg":"svg/monochrome/bars.svg","category":"Content","style":"monochrome","tags":["justify","hamburger-menu","align","alignment","bars"],"pro":false},{"uuid":"cee42060-1b81-11ea-b4a2-0242ac140003","id":1650979,"name":"battery-bolt","svg":"svg/monochrome/battery-bolt.svg","category":"User Interface","style":"monochrome","tags":["battery-charging","battery","charge","charging","battery-bolt"],"pro":false},{"uuid":"cee42b30-1b81-11ea-a2c5-0242ac140003","id":1650980,"name":"battery-empty","svg":"svg/monochrome/battery-empty.svg","category":"User Interface","style":"monochrome","tags":["battery","low-battery","battery-empty"],"pro":false},{"uuid":"3009ad50-f572-11e9-b47b-0242ac140003","id":1597580,"name":"behance","svg":"svg/monochrome/behance.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","behance"],"pro":false},{"uuid":"300a6490-f572-11e9-bb2c-0242ac140003","id":1597595,"name":"behance-alt","svg":"svg/monochrome/behance-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","behance-alt"],"pro":false},{"uuid":"c1a10620-9a7d-11ea-9644-0242ac140003","id":2056087,"name":"bing","svg":"svg/monochrome/bing.svg","category":"Brand Logos","style":"monochrome","tags":["logo","search-engine","bing"],"pro":false},{"uuid":"30089120-f572-11e9-9ff6-0242ac140003","id":1597556,"name":"bitcoin","svg":"svg/monochrome/bitcoin.svg","category":"Brand Logos","style":"monochrome","tags":["cryptocurrency","logo","brand-logo","brand","bitcoin"],"pro":false},{"uuid":"300823f0-f572-11e9-b57e-0242ac140003","id":1597547,"name":"bitcoin-alt","svg":"svg/monochrome/bitcoin-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","brand-logo","bitcoin-alt"],"pro":false},{"uuid":"30083df0-f572-11e9-a966-0242ac140003","id":1597549,"name":"blackberry","svg":"svg/monochrome/blackberry.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","black-berry","blackberry"],"pro":false},{"uuid":"300a5880-f572-11e9-a538-0242ac140003","id":1597594,"name":"blogger","svg":"svg/monochrome/blogger.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","blogger"],"pro":false},{"uuid":"30081860-f572-11e9-a712-0242ac140003","id":1597546,"name":"blogger-alt","svg":"svg/monochrome/blogger-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","brand-logo","blogger-alt"],"pro":false},{"uuid":"cee4ec20-1b81-11ea-9c0c-0242ac140003","id":1650998,"name":"bookmark","svg":"svg/monochrome/bookmark.svg","category":"User Interface","style":"monochrome","tags":["save","tag","bookmark"],"pro":false},{"uuid":"a4d22680-df7d-11e9-bea2-0242ac140003","id":1569161,"name":"border-alt","svg":"svg/monochrome/border-alt.svg","category":"Content","style":"monochrome","tags":["border-style","border","border-alt"],"pro":false},{"uuid":"a4d20d80-df7d-11e9-a166-0242ac140003","id":1569160,"name":"border-bottom","svg":"svg/monochrome/border-bottom.svg","category":"Content","style":"monochrome","tags":["bottom-border","border","border-style","border-bottom"],"pro":false},{"uuid":"a4d480a0-df7d-11e9-9431-0242ac140003","id":1569174,"name":"border-clear","svg":"svg/monochrome/border-clear.svg","category":"Content","style":"monochrome","tags":["none-border","clear-border","border","border-clear"],"pro":false},{"uuid":"a4d65400-df7d-11e9-b1d2-0242ac140003","id":1569185,"name":"border-horizontal","svg":"svg/monochrome/border-horizontal.svg","category":"Content","style":"monochrome","tags":["horizontal-border","border","border-horizontal"],"pro":false},{"uuid":"a4d612e0-df7d-11e9-85ed-0242ac140003","id":1569184,"name":"border-inner","svg":"svg/monochrome/border-inner.svg","category":"Content","style":"monochrome","tags":["inside-border","inside","border","inner-border","border-inner"],"pro":false},{"uuid":"a4d4cb60-df7d-11e9-a642-0242ac140003","id":1569178,"name":"border-left","svg":"svg/monochrome/border-left.svg","category":"Content","style":"monochrome","tags":["left-border","border","border-left"],"pro":false},{"uuid":"89fbf080-df7d-11e9-8c02-0242ac140003","id":1569146,"name":"border-out","svg":"svg/monochrome/border-out.svg","category":"Design Tools","style":"monochrome","tags":["outer-border","outer","border","border-out"],"pro":false},{"uuid":"a4d44600-df7d-11e9-bbfe-0242ac140003","id":1569171,"name":"border-right","svg":"svg/monochrome/border-right.svg","category":"Content","style":"monochrome","tags":["right-border","border","border-right"],"pro":false},{"uuid":"a4d3ce50-df7d-11e9-8130-0242ac140003","id":1569166,"name":"border-top","svg":"svg/monochrome/border-top.svg","category":"Content","style":"monochrome","tags":["top-border","top","border","border-top"],"pro":false},{"uuid":"a4d3b720-df7d-11e9-a5f3-0242ac140003","id":1569165,"name":"border-vertical","svg":"svg/monochrome/border-vertical.svg","category":"Content","style":"monochrome","tags":["vertical-border","border","vertical-center-border","border-vertical"],"pro":false},{"uuid":"cee3e680-1b81-11ea-8fdc-0242ac140003","id":1650974,"name":"box","svg":"svg/monochrome/box.svg","category":"User Interface","style":"monochrome","tags":["cube","parcel","package","box"],"pro":false},{"uuid":"f68d55a0-df7d-11e9-8809-0242ac140003","id":1569214,"name":"briefcase","svg":"svg/monochrome/briefcase.svg","category":"Business","style":"monochrome","tags":["office-bag","hand-bag","school-bag","bag","briefcase"],"pro":false},{"uuid":"cee3dc00-1b81-11ea-8add-0242ac140003","id":1650973,"name":"calender","svg":"svg/monochrome/calender.svg","category":"User Interface","style":"monochrome","tags":["date","month","planner","schedule","calender"],"pro":false},{"uuid":"f68d1870-df7d-11e9-b8b1-0242ac140003","id":1569211,"name":"chart","svg":"svg/monochrome/chart.svg","category":"Business","style":"monochrome","tags":["bar-graph","analysis","analytics","chart"],"pro":false},{"uuid":"f68d3e20-df7d-11e9-b215-0242ac140003","id":1569213,"name":"chart-pie","svg":"svg/monochrome/chart-pie.svg","category":"Business","style":"monochrome","tags":["pie-chart","chart","analysis","analytics","chart-pie"],"pro":false},{"uuid":"cee45650-1b81-11ea-b284-0242ac140003","id":1650984,"name":"check","svg":"svg/monochrome/check.svg","category":"User Interface","style":"monochrome","tags":["approve","done","complete","success","right-tick","check"],"pro":false},{"uuid":"cee460f0-1b81-11ea-b289-0242ac140003","id":1650985,"name":"check-circle","svg":"svg/monochrome/check-circle.svg","category":"User Interface","style":"monochrome","tags":["approve","check","done","complete","success","right-tick","check-circle"],"pro":false},{"uuid":"cee40a40-1b81-11ea-9767-0242ac140003","id":1650977,"name":"check-square","svg":"svg/monochrome/check-square.svg","category":"User Interface","style":"monochrome","tags":["checked","ok","right","tick","tick-sign","check-square"],"pro":false},{"uuid":"2c8b3fb0-df7d-11e9-b23d-0242ac140003","id":1569114,"name":"circle","svg":"svg/monochrome/circle.svg","category":"Shape","style":"monochrome","tags":["shape","round","round-shape","design","design-shape","circle"],"pro":false},{"uuid":"89fd06a0-df7d-11e9-84a0-0242ac140003","id":1569157,"name":"circle-layer","svg":"svg/monochrome/circle-layer.svg","category":"Design Tools","style":"monochrome","tags":["circle","layer","design-tool","circle-layer"],"pro":false},{"uuid":"b39dbc20-8933-11ea-aada-0242ac140003","id":1977285,"name":"clinic-medical","svg":"svg/monochrome/clinic-medical.svg","category":"Medical","style":"monochrome","tags":["health","clinic","medical","building","covid-19","clinic-medical"],"pro":false},{"uuid":"0c740560-df7d-11e9-83b8-0242ac140003","id":1569109,"name":"clock","svg":"svg/monochrome/clock.svg","category":"Time","style":"monochrome","tags":["watch","time","wall-clock","clock"],"pro":false},{"uuid":"0c73f340-df7d-11e9-9a68-0242ac140003","id":1569108,"name":"clock-eight","svg":"svg/monochrome/clock-eight.svg","category":"Time","style":"monochrome","tags":["clock","watch","time","wall-clock","clock-alt","clock-eight"],"pro":false},{"uuid":"0c73dff0-df7d-11e9-ba9e-0242ac140003","id":1569107,"name":"clock-five","svg":"svg/monochrome/clock-five.svg","category":"Time","style":"monochrome","tags":["clock","watch","time","wall-clock","clock-alt","clock-five"],"pro":false},{"uuid":"0c73cde0-df7d-11e9-83a7-0242ac140003","id":1569106,"name":"clock-nine","svg":"svg/monochrome/clock-nine.svg","category":"Time","style":"monochrome","tags":["clock","watch","time","wall-clock","clock-alt","clock-nine"],"pro":false},{"uuid":"0c7454d0-df7d-11e9-8159-0242ac140003","id":1569113,"name":"clock-seven","svg":"svg/monochrome/clock-seven.svg","category":"Time","style":"monochrome","tags":["clock","watch","time","wall-clock","clock-alt","clock-seven"],"pro":false},{"uuid":"0c7440f0-df7d-11e9-9eab-0242ac140003","id":1569112,"name":"clock-ten","svg":"svg/monochrome/clock-ten.svg","category":"Time","style":"monochrome","tags":["clock","watch","time","wall-clock","clock-alt","clock-ten"],"pro":false},{"uuid":"0c742e70-df7d-11e9-92db-0242ac140003","id":1569111,"name":"clock-three","svg":"svg/monochrome/clock-three.svg","category":"Time","style":"monochrome","tags":["clock","watch","time","wall-clock","clock-alt","clock-three"],"pro":false},{"uuid":"0c741730-df7d-11e9-bc25-0242ac140003","id":1569110,"name":"clock-two","svg":"svg/monochrome/clock-two.svg","category":"Time","style":"monochrome","tags":["clock","watch","time","wall-clock","clock-alt","clock-two"],"pro":false},{"uuid":"be9ab5c0-df7d-11e9-a67e-0242ac140003","id":1569193,"name":"columns","svg":"svg/monochrome/columns.svg","category":"Cloud And Web","style":"monochrome","tags":["web-layout","layout","section","grid","columns"],"pro":false},{"uuid":"e0790650-df7d-11e9-b3b1-0242ac140003","id":1569209,"name":"comment","svg":"svg/monochrome/comment.svg","category":"Chat","style":"monochrome","tags":["chat","chat-bubble","message","chatting","communication","comment"],"pro":false},{"uuid":"e078e420-df7d-11e9-af60-0242ac140003","id":1569207,"name":"comment-alt","svg":"svg/monochrome/comment-alt.svg","category":"Chat","style":"monochrome","tags":["chat-bubble","chat","chatting","message","communication","comment","comment-alt"],"pro":false},{"uuid":"e078ac50-df7d-11e9-aead-0242ac140003","id":1569204,"name":"comment-alt-dots","svg":"svg/monochrome/comment-alt-dots.svg","category":"Chat","style":"monochrome","tags":["comment","chat-bubble","chat","message","chatting","communication","comment-alt-dots"],"pro":false},{"uuid":"e078d110-df7d-11e9-80fe-0242ac140003","id":1569206,"name":"comment-alt-message","svg":"svg/monochrome/comment-alt-message.svg","category":"Chat","style":"monochrome","tags":["chat-bubble","chat","chatting","message","communication","comment-alt-message"],"pro":false},{"uuid":"e0788850-df7d-11e9-ada6-0242ac140003","id":1569202,"name":"comment-alt-plus","svg":"svg/monochrome/comment-alt-plus.svg","category":"Chat","style":"monochrome","tags":["add-chat-bubble","new-chat","chat","chatting","message","communication","comment-alt-plus"],"pro":false},{"uuid":"e078f550-df7d-11e9-8545-0242ac140003","id":1569208,"name":"comment-dots","svg":"svg/monochrome/comment-dots.svg","category":"Chat","style":"monochrome","tags":["chat","chatting","comment","message","conversation","comment-dots"],"pro":false},{"uuid":"e078bcb0-df7d-11e9-911e-0242ac140003","id":1569205,"name":"comment-message","svg":"svg/monochrome/comment-message.svg","category":"Chat","style":"monochrome","tags":["chat-bubble","chat","chatting","message","communication","comment-message"],"pro":false},{"uuid":"e0789b00-df7d-11e9-ae47-0242ac140003","id":1569203,"name":"comment-plus","svg":"svg/monochrome/comment-plus.svg","category":"Chat","style":"monochrome","tags":["add-chat","new-chat","chat","chatting","message","communication","comment-plus"],"pro":false},{"uuid":"89fbddd0-df7d-11e9-a870-0242ac140003","id":1569145,"name":"compress","svg":"svg/monochrome/compress.svg","category":"Design Tools","style":"monochrome","tags":["resize","arrow","compress"],"pro":false},{"uuid":"1006acd0-df7e-11e9-bcca-0242ac140003","id":1569219,"name":"corner-down-left","svg":"svg/monochrome/corner-down-left.svg","category":"Arrows","style":"monochrome","tags":["turn-down-left","left-down","left","arrow","corner-down-left"],"pro":false},{"uuid":"10068c80-df7e-11e9-a571-0242ac140003","id":1569218,"name":"corner-down-right","svg":"svg/monochrome/corner-down-right.svg","category":"Arrows","style":"monochrome","tags":["turn-down-right","right-down","right","arrow","corner-down-right"],"pro":false},{"uuid":"1008b120-df7e-11e9-bc6b-0242ac140003","id":1569244,"name":"corner-left-down","svg":"svg/monochrome/corner-left-down.svg","category":"Arrows","style":"monochrome","tags":["turn-left-down","turn-left","left-down","turning","direction","arrow","corner-left-down"],"pro":false},{"uuid":"10089de0-df7e-11e9-bad1-0242ac140003","id":1569243,"name":"corner-right-down","svg":"svg/monochrome/corner-right-down.svg","category":"Arrows","style":"monochrome","tags":["turn-right-down","turn-right","right-down","turning","direction","arrow","corner-right-down"],"pro":false},{"uuid":"10088980-df7e-11e9-af5d-0242ac140003","id":1569242,"name":"corner-up-left","svg":"svg/monochrome/corner-up-left.svg","category":"Arrows","style":"monochrome","tags":["turn-up-left","turn-left","left-turn","left","arrow","direction","corner-up-left"],"pro":false},{"uuid":"10087430-df7e-11e9-951e-0242ac140003","id":1569241,"name":"corner-up-right","svg":"svg/monochrome/corner-up-right.svg","category":"Arrows","style":"monochrome","tags":["turn-up-right","turn-right","right-turn","right","arrow","direction","corner-up-right"],"pro":false},{"uuid":"b39e07d0-8933-11ea-a5c2-0242ac140003","id":1977290,"name":"coronavirus","svg":"svg/monochrome/coronavirus.svg","category":"Medical","style":"monochrome","tags":["virus","covid-19","covid","corona-virus","coronavirus"],"pro":false},{"uuid":"c1a14ca0-9a7d-11ea-96ad-0242ac140003","id":2056092,"name":"css3","svg":"svg/monochrome/css3.svg","category":"Brand Logos","style":"monochrome","tags":["logo","language","programming-language","css3"],"pro":false},{"uuid":"c1a15990-9a7d-11ea-bd94-0242ac140003","id":2056093,"name":"css3-simple","svg":"svg/monochrome/css3-simple.svg","category":"Brand Logos","style":"monochrome","tags":["logo","language","programming-language","css","css3","css3-simple"],"pro":false},{"uuid":"cee415a0-1b81-11ea-a516-0242ac140003","id":1650978,"name":"cube","svg":"svg/monochrome/cube.svg","category":"User Interface","style":"monochrome","tags":["box","3d","cube"],"pro":false},{"uuid":"a4d6ab80-df7d-11e9-adfa-0242ac140003","id":1569190,"name":"dialpad","svg":"svg/monochrome/dialpad.svg","category":"Content","style":"monochrome","tags":["dial-pad","numpad","dialpad"],"pro":false},{"uuid":"a4d753b0-df7d-11e9-996f-0242ac140003","id":1569191,"name":"dialpad-alt","svg":"svg/monochrome/dialpad-alt.svg","category":"Content","style":"monochrome","tags":["dialpad","dial-pad","dial","number","numpad","dialpad-alt"],"pro":false},{"uuid":"1006be60-df7e-11e9-b36a-0242ac140003","id":1569220,"name":"direction","svg":"svg/monochrome/direction.svg","category":"Arrows","style":"monochrome","tags":["scroll-up","scroll","up-arrow","down-arrow","arrow","up","down","direction"],"pro":false},{"uuid":"c1a166b0-9a7d-11ea-9394-0242ac140003","id":2056094,"name":"discord","svg":"svg/monochrome/discord.svg","category":"Brand Logos","style":"monochrome","tags":["voip","application","platform","logo","discord"],"pro":false},{"uuid":"0fc45c40-349c-11eb-9fe2-0242ac140003","id":2538289,"name":"docker","svg":"svg/monochrome/docker.svg","category":"Brand Logos","style":"monochrome","tags":["software","logo","docker"],"pro":false},{"uuid":"a4d698a0-df7d-11e9-bbfc-0242ac140003","id":1569189,"name":"document-layout-center","svg":"svg/monochrome/document-layout-center.svg","category":"Content","style":"monochrome","tags":["document-layout","layout","blog","article","image","document-layout-center"],"pro":false},{"uuid":"a4d68660-df7d-11e9-a2c0-0242ac140003","id":1569188,"name":"document-layout-left","svg":"svg/monochrome/document-layout-left.svg","category":"Content","style":"monochrome","tags":["document-layout","layout","blog","article","image","document-layout-left"],"pro":false},{"uuid":"a4d677f0-df7d-11e9-8956-0242ac140003","id":1569187,"name":"document-layout-right","svg":"svg/monochrome/document-layout-right.svg","category":"Content","style":"monochrome","tags":["document-layout","layout","left-justify","left-alignment","blog","article","image","document-layout-right"],"pro":false},{"uuid":"10075200-df7e-11e9-a9bb-0242ac140003","id":1569228,"name":"download-alt","svg":"svg/monochrome/download-alt.svg","category":"Arrows","style":"monochrome","tags":["download","down-arrow","arrow","download-alt"],"pro":false},{"uuid":"3009a1c0-f572-11e9-8625-0242ac140003","id":1597579,"name":"dribbble","svg":"svg/monochrome/dribbble.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","dribbble"],"pro":false},{"uuid":"ad7639e0-1b81-11ea-8992-0242ac140003","id":1650968,"name":"dropbox","svg":"svg/monochrome/dropbox.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","dropbox"],"pro":false},{"uuid":"cee544f0-1b81-11ea-a9f5-0242ac140003","id":1651006,"name":"ellipsis-h","svg":"svg/monochrome/ellipsis-h.svg","category":"User Interface","style":"monochrome","tags":["menu","more","show-more","option","ellipsis-h"],"pro":false},{"uuid":"cee53940-1b81-11ea-a1fa-0242ac140003","id":1651005,"name":"ellipsis-v","svg":"svg/monochrome/ellipsis-v.svg","category":"User Interface","style":"monochrome","tags":["menu","more","show-more","option","ellipsis-v"],"pro":false},{"uuid":"cee3d0c0-1b81-11ea-955f-0242ac140003","id":1650972,"name":"exclamation-circle","svg":"svg/monochrome/exclamation-circle.svg","category":"User Interface","style":"monochrome","tags":["exclamation-mark","alert","wrong","exclamation-circle"],"pro":false},{"uuid":"cee3b560-1b81-11ea-bded-0242ac140003","id":1650970,"name":"exclamation-octagon","svg":"svg/monochrome/exclamation-octagon.svg","category":"User Interface","style":"monochrome","tags":["exclamation-mark","mark","alert","warning","error","exclamation-octagon"],"pro":false},{"uuid":"cee3c5a0-1b81-11ea-8e57-0242ac140003","id":1650971,"name":"exclamation-triangle","svg":"svg/monochrome/exclamation-triangle.svg","category":"User Interface","style":"monochrome","tags":["exclamation-mark","mark","alert","warning","error","caution","exclamation-triangle"],"pro":false},{"uuid":"30099690-f572-11e9-ac65-0242ac140003","id":1597578,"name":"facebook","svg":"svg/monochrome/facebook.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","facebook"],"pro":false},{"uuid":"30098b00-f572-11e9-9e22-0242ac140003","id":1597577,"name":"facebook-f","svg":"svg/monochrome/facebook-f.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","facebook-f"],"pro":false},{"uuid":"30097f20-f572-11e9-9280-0242ac140003","id":1597576,"name":"facebook-messenger","svg":"svg/monochrome/facebook-messenger.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","facebook-messenger"],"pro":false},{"uuid":"30080c60-f572-11e9-9326-0242ac140003","id":1597545,"name":"facebook-messenger-alt","svg":"svg/monochrome/facebook-messenger-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","brand-logo","facebook-messenger-alt"],"pro":false},{"uuid":"cee4ac20-1b81-11ea-8238-0242ac140003","id":1650992,"name":"favorite","svg":"svg/monochrome/favorite.svg","category":"User Interface","style":"monochrome","tags":["star","bookmark","rate","ratings","favorite"],"pro":false},{"uuid":"89fca440-df7d-11e9-a06c-0242ac140003","id":1569152,"name":"flip-h","svg":"svg/monochrome/flip-h.svg","category":"Design Tools","style":"monochrome","tags":["horizontal-flip","flip","image-flip","mirror-image","flip-h"],"pro":false},{"uuid":"89fc8fc0-df7d-11e9-8bea-0242ac140003","id":1569151,"name":"flip-h-alt","svg":"svg/monochrome/flip-h-alt.svg","category":"Design Tools","style":"monochrome","tags":["horizontal-flip","flip","image-flip","mirror-image","flip-h-alt"],"pro":false},{"uuid":"89fa6480-df7d-11e9-9e69-0242ac140003","id":1569138,"name":"flip-v","svg":"svg/monochrome/flip-v.svg","category":"Design Tools","style":"monochrome","tags":["vertical-flip","flip","image-flip","mirror-image","edit","flip-v"],"pro":false},{"uuid":"89fa50a0-df7d-11e9-bd6e-0242ac140003","id":1569137,"name":"flip-v-alt","svg":"svg/monochrome/flip-v-alt.svg","category":"Design Tools","style":"monochrome","tags":["vertical-flip","flip","image-flip","mirror-image","edit","flip-v-alt"],"pro":false},{"uuid":"30087a10-f572-11e9-bd6f-0242ac140003","id":1597554,"name":"github","svg":"svg/monochrome/github.svg","category":"Brand Logos","style":"monochrome","tags":["developer-tool","logo","github"],"pro":false},{"uuid":"30086e50-f572-11e9-ad96-0242ac140003","id":1597553,"name":"github-alt","svg":"svg/monochrome/github-alt.svg","category":"Brand Logos","style":"monochrome","tags":["developer-tool","logo","github-alt"],"pro":false},{"uuid":"0fc4b880-349c-11eb-9303-0242ac140003","id":2538295,"name":"gitlab","svg":"svg/monochrome/gitlab.svg","category":"Brand Logos","style":"monochrome","tags":["development","code-managment","logo","gitlab"],"pro":false},{"uuid":"0fc4a870-349c-11eb-89f4-0242ac140003","id":2538294,"name":"gitlab-alt","svg":"svg/monochrome/gitlab-alt.svg","category":"Brand Logos","style":"monochrome","tags":["development","code-managment","logo","gitlab-alt"],"pro":false},{"uuid":"3008b580-f572-11e9-b856-0242ac140003","id":1597559,"name":"google","svg":"svg/monochrome/google.svg","category":"Brand Logos","style":"monochrome","tags":["search-engine","logo","google"],"pro":false},{"uuid":"30088570-f572-11e9-b1ca-0242ac140003","id":1597555,"name":"google-drive","svg":"svg/monochrome/google-drive.svg","category":"Brand Logos","style":"monochrome","tags":["data-storage","google-drive"],"pro":false},{"uuid":"ad760de0-1b81-11ea-9651-0242ac140003","id":1650965,"name":"google-drive-alt","svg":"svg/monochrome/google-drive-alt.svg","category":"Brand Logos","style":"monochrome","tags":["social-media","logo","brand","drive","google-drive-alt"],"pro":false},{"uuid":"300855c0-f572-11e9-a7c3-0242ac140003","id":1597551,"name":"google-hangouts","svg":"svg/monochrome/google-hangouts.svg","category":"Brand Logos","style":"monochrome","tags":["hangouts","logo","social-media","google-hangouts"],"pro":false},{"uuid":"30089e50-f572-11e9-aa2d-0242ac140003","id":1597557,"name":"google-hangouts-alt","svg":"svg/monochrome/google-hangouts-alt.svg","category":"Brand Logos","style":"monochrome","tags":["brand","brand-logo","logo","google-hangouts-alt"],"pro":false},{"uuid":"ad761c60-1b81-11ea-a412-0242ac140003","id":1650966,"name":"google-play","svg":"svg/monochrome/google-play.svg","category":"Brand Logos","style":"monochrome","tags":["play-store","store","logo","google-play"],"pro":false},{"uuid":"f68d97b0-df7d-11e9-83c6-0242ac140003","id":1569217,"name":"graph-bar","svg":"svg/monochrome/graph-bar.svg","category":"Business","style":"monochrome","tags":["bar-graph","graph","analysis","analytics","graph-bar"],"pro":false},{"uuid":"be9acf10-df7d-11e9-8eb6-0242ac140003","id":1569194,"name":"grid","svg":"svg/monochrome/grid.svg","category":"Cloud And Web","style":"monochrome","tags":["web-layout","layout","section","grid"],"pro":false},{"uuid":"89fcdea0-df7d-11e9-aca7-0242ac140003","id":1569155,"name":"grids","svg":"svg/monochrome/grids.svg","category":"Design Tools","style":"monochrome","tags":["grid","grid-layout","grids"],"pro":false},{"uuid":"a4d669e0-df7d-11e9-aae5-0242ac140003","id":1569186,"name":"grip-horizontal-line","svg":"svg/monochrome/grip-horizontal-line.svg","category":"Content","style":"monochrome","tags":["drag-handle","grip-lines","grip-horizontal-line"],"pro":false},{"uuid":"b39ed140-8933-11ea-af7d-0242ac140003","id":1977304,"name":"head-side","svg":"svg/monochrome/head-side.svg","category":"Medical","style":"monochrome","tags":["man","human","face","head","covid-19","head-side"],"pro":false},{"uuid":"b39dce20-8933-11ea-aa64-0242ac140003","id":1977286,"name":"head-side-cough","svg":"svg/monochrome/head-side-cough.svg","category":"Medical","style":"monochrome","tags":["face","dieases","covid-19","coronovirus","cough","coronavirus","head-side-cough"],"pro":false},{"uuid":"b39ec3e0-8933-11ea-afbc-0242ac140003","id":1977303,"name":"head-side-mask","svg":"svg/monochrome/head-side-mask.svg","category":"Medical","style":"monochrome","tags":["mask","face-mask","hygiene","facemask","covid-19","head-side-mask"],"pro":false},{"uuid":"0fc479c0-349c-11eb-9839-0242ac140003","id":2538291,"name":"hipchat","svg":"svg/monochrome/hipchat.svg","category":"Brand Logos","style":"monochrome","tags":["online-chat","instant-message","message","logo","hipchat"],"pro":false},{"uuid":"cee44080-1b81-11ea-8a97-0242ac140003","id":1650982,"name":"history","svg":"svg/monochrome/history.svg","category":"User Interface","style":"monochrome","tags":["backup","restore","revert","history"],"pro":false},{"uuid":"cee58970-1b81-11ea-bda4-0242ac140003","id":1651012,"name":"history-alt","svg":"svg/monochrome/history-alt.svg","category":"User Interface","style":"monochrome","tags":["history","backup","restore","revert","history-alt"],"pro":false},{"uuid":"89fc25a0-df7d-11e9-96ed-0242ac140003","id":1569149,"name":"horizontal-align-left","svg":"svg/monochrome/horizontal-align-left.svg","category":"Design Tools","style":"monochrome","tags":["left-align","left-alignment","align","alignment","horizontal-align-left"],"pro":false},{"uuid":"b39ddd00-8933-11ea-8007-0242ac140003","id":1977287,"name":"hospital","svg":"svg/monochrome/hospital.svg","category":"Medical","style":"monochrome","tags":["care","mediacl","healthcare","building","covid-19","coronavirus","hospital"],"pro":false},{"uuid":"b39eecf0-8933-11ea-ae7b-0242ac140003","id":1977306,"name":"hospital-square-sign","svg":"svg/monochrome/hospital-square-sign.svg","category":"Medical","style":"monochrome","tags":["hospital-sign","medical-sign","h-sign","covid-19","hospital-square-sign"],"pro":false},{"uuid":"b39edea0-8933-11ea-966f-0242ac140003","id":1977305,"name":"hospital-symbol","svg":"svg/monochrome/hospital-symbol.svg","category":"Medical","style":"monochrome","tags":["hospital-sign","medical-sign","h-sign","medical","covid-19","hospital-symbol"],"pro":false},{"uuid":"b39e23e0-8933-11ea-83ec-0242ac140003","id":1977292,"name":"house-user","svg":"svg/monochrome/house-user.svg","category":"Medical","style":"monochrome","tags":["stay-in-home","home","work-from-home","wfh","house","stay-safe","covid-19","stay-at-home","house-user"],"pro":false},{"uuid":"3009e220-f572-11e9-8d20-0242ac140003","id":1597584,"name":"html3","svg":"svg/monochrome/html3.svg","category":"Brand Logos","style":"monochrome","tags":["logo","html","brand-logo","brand","html3"],"pro":false},{"uuid":"300a4cc0-f572-11e9-9514-0242ac140003","id":1597593,"name":"html3-alt","svg":"svg/monochrome/html3-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","html3-alt"],"pro":false},{"uuid":"c1a13e90-9a7d-11ea-819e-0242ac140003","id":2056091,"name":"html5","svg":"svg/monochrome/html5.svg","category":"Brand Logos","style":"monochrome","tags":["logo","language","programming-language","html","html5"],"pro":false},{"uuid":"c1a13180-9a7d-11ea-b209-0242ac140003","id":2056090,"name":"html5-alt","svg":"svg/monochrome/html5-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","language","programming-language","html5-alt"],"pro":false},{"uuid":"680f5190-df7d-11e9-8c13-0242ac140003","id":1569131,"name":"image-v","svg":"svg/monochrome/image-v.svg","category":"Multimedia","style":"monochrome","tags":["image","picture","photo","gallary","image-v"],"pro":false},{"uuid":"30097360-f572-11e9-bf7e-0242ac140003","id":1597575,"name":"instagram","svg":"svg/monochrome/instagram.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","instagram"],"pro":false},{"uuid":"30096690-f572-11e9-8519-0242ac140003","id":1597574,"name":"instagram-alt","svg":"svg/monochrome/instagram-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","instagram","instagram-alt"],"pro":false},{"uuid":"30095a40-f572-11e9-be7c-0242ac140003","id":1597573,"name":"intercom","svg":"svg/monochrome/intercom.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","intercom"],"pro":false},{"uuid":"30080010-f572-11e9-bac4-0242ac140003","id":1597544,"name":"intercom-alt","svg":"svg/monochrome/intercom-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","brand-logo","intercom-alt"],"pro":false},{"uuid":"300a12f0-f572-11e9-a739-0242ac140003","id":1597588,"name":"java-script","svg":"svg/monochrome/java-script.svg","category":"Brand Logos","style":"monochrome","tags":["logo","developer-language","coding-language","java-script"],"pro":false},{"uuid":"cee57910-1b81-11ea-82a3-0242ac140003","id":1651011,"name":"key-skeleton","svg":"svg/monochrome/key-skeleton.svg","category":"User Interface","style":"monochrome","tags":["key","password","lock","key-skeleton"],"pro":false},{"uuid":"cee56eb0-1b81-11ea-b5df-0242ac140003","id":1651010,"name":"key-skeleton-alt","svg":"svg/monochrome/key-skeleton-alt.svg","category":"User Interface","style":"monochrome","tags":["key","password","lock","key-skeleton-alt"],"pro":false},{"uuid":"4573dc00-df7d-11e9-b5bc-0242ac140003","id":1569122,"name":"keyhole-circle","svg":"svg/monochrome/keyhole-circle.svg","category":"Security","style":"monochrome","tags":["key-hole","lock","privacy","security","protection","safe","key","keyhole","keyhole-circle"],"pro":false},{"uuid":"4573eff0-df7d-11e9-95a5-0242ac140003","id":1569123,"name":"keyhole-square","svg":"svg/monochrome/keyhole-square.svg","category":"Security","style":"monochrome","tags":["keyhole","key-hole","lock","privacy","security","protection","safe","keyhole-square"],"pro":false},{"uuid":"4573c510-df7d-11e9-b4c4-0242ac140003","id":1569121,"name":"keyhole-square-full","svg":"svg/monochrome/keyhole-square-full.svg","category":"Security","style":"monochrome","tags":["key-hole","lock","privacy","security","protection","safe","keyhole","keyhole-square-full"],"pro":false},{"uuid":"cee56450-1b81-11ea-858e-0242ac140003","id":1651009,"name":"layer-group","svg":"svg/monochrome/layer-group.svg","category":"User Interface","style":"monochrome","tags":["layer","layers","arrange","layer-group"],"pro":false},{"uuid":"89fc37a0-df7d-11e9-b9bc-0242ac140003","id":1569150,"name":"layers-alt","svg":"svg/monochrome/layers-alt.svg","category":"Design Tools","style":"monochrome","tags":["layers","layer","design-tool","layers-alt"],"pro":false},{"uuid":"a4d5db40-df7d-11e9-a57e-0242ac140003","id":1569181,"name":"left-indent","svg":"svg/monochrome/left-indent.svg","category":"Content","style":"monochrome","tags":["left-alignment","alignment","align","left-indent"],"pro":false},{"uuid":"a4d4b9b0-df7d-11e9-9571-0242ac140003","id":1569177,"name":"left-indent-alt","svg":"svg/monochrome/left-indent-alt.svg","category":"Content","style":"monochrome","tags":["left-indent","indent","left","alignment","align","left-indent-alt"],"pro":false},{"uuid":"30094e70-f572-11e9-82c4-0242ac140003","id":1597572,"name":"line","svg":"svg/monochrome/line.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","line"],"pro":false},{"uuid":"89fcf3e0-df7d-11e9-a917-0242ac140003","id":1569156,"name":"line-spacing","svg":"svg/monochrome/line-spacing.svg","category":"Design Tools","style":"monochrome","tags":["format-line","line-spacing"],"pro":false},{"uuid":"cee559b0-1b81-11ea-a992-0242ac140003","id":1651008,"name":"link-h","svg":"svg/monochrome/link-h.svg","category":"User Interface","style":"monochrome","tags":["link","chain","hyperlink","web-link","link-h"],"pro":false},{"uuid":"30094320-f572-11e9-a83b-0242ac140003","id":1597571,"name":"linkedin","svg":"svg/monochrome/linkedin.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","linkedin"],"pro":false},{"uuid":"300936b0-f572-11e9-9719-0242ac140003","id":1597570,"name":"linkedin-alt","svg":"svg/monochrome/linkedin-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","linkedin-alt"],"pro":false},{"uuid":"0fc46ba0-349c-11eb-9cf7-0242ac140003","id":2538290,"name":"linux","svg":"svg/monochrome/linux.svg","category":"Brand Logos","style":"monochrome","tags":["os","operating-system","logo","linux"],"pro":false},{"uuid":"a4d4a690-df7d-11e9-bf5c-0242ac140003","id":1569176,"name":"list-ui-alt","svg":"svg/monochrome/list-ui-alt.svg","category":"Content","style":"monochrome","tags":["list","menu","list-ui-alt"],"pro":false},{"uuid":"a4d49440-df7d-11e9-a229-0242ac140003","id":1569175,"name":"list-ul","svg":"svg/monochrome/list-ul.svg","category":"Content","style":"monochrome","tags":["list-format","list","menu","bullets","list-ul"],"pro":false},{"uuid":"45742670-df7d-11e9-8a4c-0242ac140003","id":1569126,"name":"lock","svg":"svg/monochrome/lock.svg","category":"Security","style":"monochrome","tags":["pad-lock","safe","security","protected","lock"],"pro":false},{"uuid":"45747520-df7d-11e9-a634-0242ac140003","id":1569130,"name":"lock-access","svg":"svg/monochrome/lock-access.svg","category":"Security","style":"monochrome","tags":["lock","pad-lock","safe","security","protected","lock-access"],"pro":false},{"uuid":"457460a0-df7d-11e9-8fc0-0242ac140003","id":1569129,"name":"lock-alt","svg":"svg/monochrome/lock-alt.svg","category":"Security","style":"monochrome","tags":["lock","pad-lock","safe","security","protected","lock-alt"],"pro":false},{"uuid":"45741760-df7d-11e9-a2e1-0242ac140003","id":1569125,"name":"lock-open-alt","svg":"svg/monochrome/lock-open-alt.svg","category":"Security","style":"monochrome","tags":["unlock","lock-open","pad-lock","access","lock-open-alt"],"pro":false},{"uuid":"0fc4c720-349c-11eb-aa56-0242ac140003","id":2538296,"name":"lottiefiles","svg":"svg/monochrome/lottiefiles.svg","category":"Brand Logos","style":"monochrome","tags":["lottie-files","brand","logo","lottiefiles"],"pro":false},{"uuid":"300a4100-f572-11e9-8d18-0242ac140003","id":1597592,"name":"master-card","svg":"svg/monochrome/master-card.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","payment-card","payment-method","payment","master-card"],"pro":false},{"uuid":"3008cce0-f572-11e9-b40e-0242ac140003","id":1597561,"name":"medium-m","svg":"svg/monochrome/medium-m.svg","category":"Brand Logos","style":"monochrome","tags":["medium","social-media","blog","blogging-site","logo","medium-m"],"pro":false},{"uuid":"b39e9890-8933-11ea-9ad8-0242ac140003","id":1977300,"name":"microscope","svg":"svg/monochrome/microscope.svg","category":"Medical","style":"monochrome","tags":["medical-equipment","medical","equipment","tool","covid-19","covid","microscope"],"pro":false},{"uuid":"0fc43f00-349c-11eb-ad9f-0242ac140003","id":2538287,"name":"microsoft","svg":"svg/monochrome/microsoft.svg","category":"Brand Logos","style":"monochrome","tags":["brand","logo","microsoft"],"pro":false},{"uuid":"cee52e20-1b81-11ea-8eb8-0242ac140003","id":1651004,"name":"minus-square-full","svg":"svg/monochrome/minus-square-full.svg","category":"User Interface","style":"monochrome","tags":["minus","minimize","close","delete","remove","minus-square-full"],"pro":false},{"uuid":"cee3f400-1b81-11ea-88b8-0242ac140003","id":1650975,"name":"multiply","svg":"svg/monochrome/multiply.svg","category":"User Interface","style":"monochrome","tags":["close","delete","remove","multiplication","multiply"],"pro":false},{"uuid":"89fc01c0-df7d-11e9-a251-0242ac140003","id":1569147,"name":"object-group","svg":"svg/monochrome/object-group.svg","category":"Design Tools","style":"monochrome","tags":["object","design-tool","object-group"],"pro":false},{"uuid":"89fa76c0-df7d-11e9-b9f0-0242ac140003","id":1569139,"name":"object-ungroup","svg":"svg/monochrome/object-ungroup.svg","category":"Design Tools","style":"monochrome","tags":["ungroup","design-tool","object-ungroup"],"pro":false},{"uuid":"0fc499d0-349c-11eb-a773-0242ac140003","id":2538293,"name":"okta","svg":"svg/monochrome/okta.svg","category":"Brand Logos","style":"monochrome","tags":["logo","okta"],"pro":false},{"uuid":"3009d690-f572-11e9-b5af-0242ac140003","id":1597583,"name":"opera","svg":"svg/monochrome/opera.svg","category":"Brand Logos","style":"monochrome","tags":["logo","opera-mini","brand-logo","brand","opera"],"pro":false},{"uuid":"ad762940-1b81-11ea-9fe0-0242ac140003","id":1650967,"name":"opera-alt","svg":"svg/monochrome/opera-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","opera-mini","brand","opera-alt"],"pro":false},{"uuid":"45744d80-df7d-11e9-916c-0242ac140003","id":1569128,"name":"padlock","svg":"svg/monochrome/padlock.svg","category":"Security","style":"monochrome","tags":["lock","pad-lock","safe","security","protected","padlock"],"pro":false},{"uuid":"0fc48890-349c-11eb-aa63-0242ac140003","id":2538292,"name":"pagelines","svg":"svg/monochrome/pagelines.svg","category":"Brand Logos","style":"monochrome","tags":["marketing-platform","platform","design","logo","pagelines"],"pro":false},{"uuid":"0fc42de0-349c-11eb-8b7c-0242ac140003","id":2538286,"name":"pagerduty","svg":"svg/monochrome/pagerduty.svg","category":"Brand Logos","style":"monochrome","tags":["cloud-computing","logo","pagerduty"],"pro":false},{"uuid":"cee44b30-1b81-11ea-b3d2-0242ac140003","id":1650983,"name":"paperclip","svg":"svg/monochrome/paperclip.svg","category":"User Interface","style":"monochrome","tags":["attach","attachment","paperclip"],"pro":false},{"uuid":"a4d407e0-df7d-11e9-980e-0242ac140003","id":1569168,"name":"paragraph","svg":"svg/monochrome/paragraph.svg","category":"Content","style":"monochrome","tags":["short-text","paragraph"],"pro":false},{"uuid":"3008c130-f572-11e9-9435-0242ac140003","id":1597560,"name":"paypal","svg":"svg/monochrome/paypal.svg","category":"Brand Logos","style":"monochrome","tags":["payment-gateway","logo","paypal"],"pro":false},{"uuid":"2c8b7af0-df7d-11e9-bbdb-0242ac140003","id":1569116,"name":"pentagon","svg":"svg/monochrome/pentagon.svg","category":"Shape","style":"monochrome","tags":["shape","design","design-shape","pentagon"],"pro":false},{"uuid":"cee51590-1b81-11ea-a221-0242ac140003","id":1651002,"name":"plus-square","svg":"svg/monochrome/plus-square.svg","category":"User Interface","style":"monochrome","tags":["add","insert","plus-square"],"pro":false},{"uuid":"2c8b6290-df7d-11e9-9258-0242ac140003","id":1569115,"name":"polygon","svg":"svg/monochrome/polygon.svg","category":"Shape","style":"monochrome","tags":["shape","design","design-shape","polygon"],"pro":false},{"uuid":"680f6700-df7d-11e9-9dc8-0242ac140003","id":1569132,"name":"previous","svg":"svg/monochrome/previous.svg","category":"Multimedia","style":"monochrome","tags":["back","media-control","control","media","previous"],"pro":false},{"uuid":"cee4f660-1b81-11ea-9c49-0242ac140003","id":1650999,"name":"process","svg":"svg/monochrome/process.svg","category":"User Interface","style":"monochrome","tags":["repeat","reload","process"],"pro":false},{"uuid":"300a35c0-f572-11e9-bfb4-0242ac140003","id":1597591,"name":"react","svg":"svg/monochrome/react.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","react"],"pro":false},{"uuid":"680f8ef0-df7d-11e9-9ad2-0242ac140003","id":1569134,"name":"record-audio","svg":"svg/monochrome/record-audio.svg","category":"Multimedia","style":"monochrome","tags":["recording","record","record-audio"],"pro":false},{"uuid":"30086260-f572-11e9-9a12-0242ac140003","id":1597552,"name":"reddit-alien-alt","svg":"svg/monochrome/reddit-alien-alt.svg","category":"Brand Logos","style":"monochrome","tags":["development","logo","reddit-alien-alt"],"pro":false},{"uuid":"cee50ae0-1b81-11ea-914d-0242ac140003","id":1651001,"name":"redo","svg":"svg/monochrome/redo.svg","category":"User Interface","style":"monochrome","tags":["reload","refresh","recycle","redo"],"pro":false},{"uuid":"cee50090-1b81-11ea-beb3-0242ac140003","id":1651000,"name":"refresh","svg":"svg/monochrome/refresh.svg","category":"User Interface","style":"monochrome","tags":["reload","sync","refresh"],"pro":false},{"uuid":"89fc13a0-df7d-11e9-877e-0242ac140003","id":1569148,"name":"repeat","svg":"svg/monochrome/repeat.svg","category":"Design Tools","style":"monochrome","tags":["loop","refresh","reload","repeat"],"pro":false},{"uuid":"a4d42ec0-df7d-11e9-9007-0242ac140003","id":1569170,"name":"right-indent-alt","svg":"svg/monochrome/right-indent-alt.svg","category":"Content","style":"monochrome","tags":["right-indent","indent","right-alignment","text-format","right-indent-alt"],"pro":false},{"uuid":"c3c68fd0-8933-11ea-b3b3-0242ac140003","id":1977307,"name":"rocket","svg":"svg/monochrome/rocket.svg","category":"User Interface","style":"monochrome","tags":["startup","launch","missile","rocket"],"pro":false},{"uuid":"89fac930-df7d-11e9-a42e-0242ac140003","id":1569143,"name":"ruler","svg":"svg/monochrome/ruler.svg","category":"Design Tools","style":"monochrome","tags":["scale","measure","design-tool","ruler"],"pro":false},{"uuid":"89fbcae0-df7d-11e9-8d10-0242ac140003","id":1569144,"name":"ruler-combined","svg":"svg/monochrome/ruler-combined.svg","category":"Design Tools","style":"monochrome","tags":["ruler","scale","measure","design-tool","ruler-combined"],"pro":false},{"uuid":"b39df9a0-8933-11ea-8529-0242ac140003","id":1977289,"name":"sanitizer","svg":"svg/monochrome/sanitizer.svg","category":"Medical","style":"monochrome","tags":["alcohol-based-sanitizer","hygiene","covid-19","coronavirus","sanitizer"],"pro":false},{"uuid":"b39deb70-8933-11ea-b07c-0242ac140003","id":1977288,"name":"sanitizer-alt","svg":"svg/monochrome/sanitizer-alt.svg","category":"Medical","style":"monochrome","tags":["alcohol-based-sanitizer","hygiene","sanitizer","covid-19","coronavirus","sanitizer-alt"],"pro":false},{"uuid":"680fb7f0-df7d-11e9-a6e1-0242ac140003","id":1569136,"name":"scenery","svg":"svg/monochrome/scenery.svg","category":"Multimedia","style":"monochrome","tags":["image","picture","photo","gallary","scenery"],"pro":false},{"uuid":"f68d8620-df7d-11e9-8c5c-0242ac140003","id":1569216,"name":"schedule","svg":"svg/monochrome/schedule.svg","category":"Business","style":"monochrome","tags":["calendar","planner","schedule"],"pro":false},{"uuid":"b39e5b30-8933-11ea-981f-0242ac140003","id":1977296,"name":"shield-plus","svg":"svg/monochrome/shield-plus.svg","category":"Medical","style":"monochrome","tags":["security","medical-insurance","insurance","safety","covid-19","health","life-insurance","shield-plus"],"pro":false},{"uuid":"cee4d710-1b81-11ea-a6bd-0242ac140003","id":1650996,"name":"sign-in-alt","svg":"svg/monochrome/sign-in-alt.svg","category":"User Interface","style":"monochrome","tags":["sign-in","login","entry","signin","sign-in-alt"],"pro":false},{"uuid":"cee4c200-1b81-11ea-aedb-0242ac140003","id":1650994,"name":"sign-out-alt","svg":"svg/monochrome/sign-out-alt.svg","category":"User Interface","style":"monochrome","tags":["sign-out","logout","exit","signout","sign-out-alt"],"pro":false},{"uuid":"cee51ff0-1b81-11ea-9831-0242ac140003","id":1651003,"name":"signal-alt","svg":"svg/monochrome/signal-alt.svg","category":"User Interface","style":"monochrome","tags":["network","phone-signal","phone-network","signal-alt"],"pro":false},{"uuid":"cee435b0-1b81-11ea-8518-0242ac140003","id":1650981,"name":"signal-alt-3","svg":"svg/monochrome/signal-alt-3.svg","category":"User Interface","style":"monochrome","tags":["bar-graph","graph","analysis","analytics","signal-alt-3"],"pro":false},{"uuid":"cee4e180-1b81-11ea-b376-0242ac140003","id":1650997,"name":"signin","svg":"svg/monochrome/signin.svg","category":"User Interface","style":"monochrome","tags":["login","entry","sign-in","signin"],"pro":false},{"uuid":"cee4cc80-1b81-11ea-9aab-0242ac140003","id":1650995,"name":"signout","svg":"svg/monochrome/signout.svg","category":"User Interface","style":"monochrome","tags":["sign-out","logout","exit","signout"],"pro":false},{"uuid":"3007f290-f572-11e9-93be-0242ac140003","id":1597543,"name":"skype","svg":"svg/monochrome/skype.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","social-media","skype"],"pro":false},{"uuid":"3007e5c0-f572-11e9-98f2-0242ac140003","id":1597542,"name":"skype-alt","svg":"svg/monochrome/skype-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","social-media","skype-alt"],"pro":false},{"uuid":"3008aa10-f572-11e9-bbee-0242ac140003","id":1597558,"name":"slack","svg":"svg/monochrome/slack.svg","category":"Brand Logos","style":"monochrome","tags":["slack-logo","logo","social-media","brand","slack"],"pro":false},{"uuid":"85684dd0-2282-11ea-9126-0242ac140003","id":1657221,"name":"slack-alt","svg":"svg/monochrome/slack-alt.svg","category":"Brand Logos","style":"monochrome","tags":["brand","logo","slack-logo","slack-alt"],"pro":false},{"uuid":"ad7646a0-1b81-11ea-abea-0242ac140003","id":1650969,"name":"snapchat-alt","svg":"svg/monochrome/snapchat-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","brand-logo","snapchat","snapchat-alt"],"pro":false},{"uuid":"30092ae0-f572-11e9-9561-0242ac140003","id":1597569,"name":"snapchat-ghost","svg":"svg/monochrome/snapchat-ghost.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","snapchat","snapchat-ghost"],"pro":false},{"uuid":"30091f30-f572-11e9-a102-0242ac140003","id":1597568,"name":"snapchat-square","svg":"svg/monochrome/snapchat-square.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","snapchat","snapchat-square"],"pro":false},{"uuid":"b39e3e60-8933-11ea-8e69-0242ac140003","id":1977294,"name":"social-distancing","svg":"svg/monochrome/social-distancing.svg","category":"Medical","style":"monochrome","tags":["social-distance","avoid-crowd","avoid-public","covid-19","covid","public","social-distancing"],"pro":false},{"uuid":"10081a10-df7e-11e9-9312-0242ac140003","id":1569240,"name":"sorting","svg":"svg/monochrome/sorting.svg","category":"Arrows","style":"monochrome","tags":["up-arrow","down-arrow","arrow","ascending","descending","sorting"],"pro":false},{"uuid":"cee4b730-1b81-11ea-a576-0242ac140003","id":1650993,"name":"space-key","svg":"svg/monochrome/space-key.svg","category":"User Interface","style":"monochrome","tags":["space-bar","keyboard","keys","space-key"],"pro":false},{"uuid":"2c8bb620-df7d-11e9-a2c1-0242ac140003","id":1569119,"name":"square","svg":"svg/monochrome/square.svg","category":"Shape","style":"monochrome","tags":["shape","square-shape","design","design-shape","square"],"pro":false},{"uuid":"89fa8990-df7d-11e9-99e4-0242ac140003","id":1569140,"name":"square-full","svg":"svg/monochrome/square-full.svg","category":"Design Tools","style":"monochrome","tags":["uncheck","check-box","box","square","square-full"],"pro":false},{"uuid":"2c8bca20-df7d-11e9-b065-0242ac140003","id":1569120,"name":"squre-shape","svg":"svg/monochrome/squre-shape.svg","category":"Shape","style":"monochrome","tags":["shape","square","design","design-shape","squre-shape"],"pro":false},{"uuid":"2c8b8f30-df7d-11e9-95b8-0242ac140003","id":1569117,"name":"star","svg":"svg/monochrome/star.svg","category":"Shape","style":"monochrome","tags":["star-shape","favorite","bookmark","rate","ratings","star"],"pro":false},{"uuid":"cee4a1c0-1b81-11ea-8b53-0242ac140003","id":1650991,"name":"star-half-alt","svg":"svg/monochrome/star-half-alt.svg","category":"User Interface","style":"monochrome","tags":["star","half-star","ratings","rate","star-half-alt"],"pro":false},{"uuid":"680fa300-df7d-11e9-9e12-0242ac140003","id":1569135,"name":"step-forward","svg":"svg/monochrome/step-forward.svg","category":"Multimedia","style":"monochrome","tags":["next","media-control","control","media","step-forward"],"pro":false},{"uuid":"b39eb5a0-8933-11ea-85a4-0242ac140003","id":1977302,"name":"stethoscope","svg":"svg/monochrome/stethoscope.svg","category":"Medical","style":"monochrome","tags":["medical-equipment","equipment","mediacl","covid-19","covid","stethoscope"],"pro":false},{"uuid":"b39ea7c0-8933-11ea-ac43-0242ac140003","id":1977301,"name":"stethoscope-alt","svg":"svg/monochrome/stethoscope-alt.svg","category":"Medical","style":"monochrome","tags":["medical-equipment","equipment","mediacl","stethoscope","covid-19","stethoscope-alt"],"pro":false},{"uuid":"b39e4db0-8933-11ea-b635-0242ac140003","id":1977295,"name":"store-slash","svg":"svg/monochrome/store-slash.svg","category":"Medical","style":"monochrome","tags":["shop","avoid-shopping","avoid-store","covid-19","avoid-public-place","store-slash"],"pro":false},{"uuid":"a4d4dc20-df7d-11e9-8ba8-0242ac140003","id":1569179,"name":"subject","svg":"svg/monochrome/subject.svg","category":"Content","style":"monochrome","tags":["left-alignment","left-align","alignment","text-formating","align-left","subject"],"pro":false},{"uuid":"3009ee30-f572-11e9-9d45-0242ac140003","id":1597585,"name":"swiggy","svg":"svg/monochrome/swiggy.svg","category":"Brand Logos","style":"monochrome","tags":["logo","food-delivery","brand-logo","brand","swiggy"],"pro":false},{"uuid":"cee48b70-1b81-11ea-bdfe-0242ac140003","id":1650989,"name":"sync-exclamation","svg":"svg/monochrome/sync-exclamation.svg","category":"User Interface","style":"monochrome","tags":["sync-error","reload-error","refresh-error","error","exclamation-mark","sync-exclamation"],"pro":false},{"uuid":"cee49710-1b81-11ea-bc48-0242ac140003","id":1650990,"name":"sync-slash","svg":"svg/monochrome/sync-slash.svg","category":"User Interface","style":"monochrome","tags":["sync-cancel","sync","sync-slash"],"pro":false},{"uuid":"89fcb750-df7d-11e9-9dc4-0242ac140003","id":1569153,"name":"table","svg":"svg/monochrome/table.svg","category":"Design Tools","style":"monochrome","tags":["grid","tile","design-tool","th","table"],"pro":false},{"uuid":"3007d9c0-f572-11e9-9297-0242ac140003","id":1597541,"name":"telegram","svg":"svg/monochrome/telegram.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","social-media","telegram"],"pro":false},{"uuid":"3007cbf0-f572-11e9-8852-0242ac140003","id":1597540,"name":"telegram-alt","svg":"svg/monochrome/telegram-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","social-media","telegram-plane","telegram-alt"],"pro":false},{"uuid":"89fd1780-df7d-11e9-ad3a-0242ac140003","id":1569158,"name":"th-large","svg":"svg/monochrome/th-large.svg","category":"Design Tools","style":"monochrome","tags":["all-border","border","full-boarder","th-large"],"pro":false},{"uuid":"cee3ff70-1b81-11ea-944e-0242ac140003","id":1650976,"name":"times-circle","svg":"svg/monochrome/times-circle.svg","category":"User Interface","style":"monochrome","tags":["close","cancel","delete","cross","times-circle"],"pro":false},{"uuid":"cee480e0-1b81-11ea-9161-0242ac140003","id":1650988,"name":"toggle-off","svg":"svg/monochrome/toggle-off.svg","category":"User Interface","style":"monochrome","tags":["toggle","on","off","switch","on-off","enable","disable","toggle-off"],"pro":false},{"uuid":"cee47660-1b81-11ea-8053-0242ac140003","id":1650987,"name":"toggle-on","svg":"svg/monochrome/toggle-on.svg","category":"User Interface","style":"monochrome","tags":["toggle","on","off","switch","on-off","enable","disable","toggle-on"],"pro":false},{"uuid":"b39e1560-8933-11ea-8b88-0242ac140003","id":1977291,"name":"toilet-paper","svg":"svg/monochrome/toilet-paper.svg","category":"Medical","style":"monochrome","tags":["tissue-paper","tissue-roll","hygiene","covid-19","tissue","precaution","toilet-paper"],"pro":false},{"uuid":"2c8ba2e0-df7d-11e9-aa77-0242ac140003","id":1569118,"name":"triangle","svg":"svg/monochrome/triangle.svg","category":"Shape","style":"monochrome","tags":["shape","design","design-shape","triangle"],"pro":false},{"uuid":"300913e0-f572-11e9-821a-0242ac140003","id":1597567,"name":"tumblr","svg":"svg/monochrome/tumblr.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","tumblr"],"pro":false},{"uuid":"300a2a80-f572-11e9-b34a-0242ac140003","id":1597590,"name":"tumblr-alt","svg":"svg/monochrome/tumblr-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","tumblr-alt"],"pro":false},{"uuid":"300907e0-f572-11e9-8458-0242ac140003","id":1597566,"name":"tumblr-square","svg":"svg/monochrome/tumblr-square.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","tumblr","tumblr-square"],"pro":false},{"uuid":"3008fc50-f572-11e9-a03e-0242ac140003","id":1597565,"name":"twitter","svg":"svg/monochrome/twitter.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","twitter"],"pro":false},{"uuid":"300a1e90-f572-11e9-b27f-0242ac140003","id":1597589,"name":"twitter-alt","svg":"svg/monochrome/twitter-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand-logo","brand","twitter-alt"],"pro":false},{"uuid":"457439c0-df7d-11e9-af45-0242ac140003","id":1569127,"name":"unlock","svg":"svg/monochrome/unlock.svg","category":"Security","style":"monochrome","tags":["lock-open","pad-lock","access","unlock"],"pro":false},{"uuid":"45740510-df7d-11e9-b1d5-0242ac140003","id":1569124,"name":"unlock-alt","svg":"svg/monochrome/unlock-alt.svg","category":"Security","style":"monochrome","tags":["unlock","lock-open","pad-lock","access","unlock-alt"],"pro":false},{"uuid":"1007f690-df7e-11e9-9e91-0242ac140003","id":1569238,"name":"upload-alt","svg":"svg/monochrome/upload-alt.svg","category":"Arrows","style":"monochrome","tags":["upload","up-arrow","arrow","upload-alt"],"pro":false},{"uuid":"b39e3140-8933-11ea-b442-0242ac140003","id":1977293,"name":"user-arrows","svg":"svg/monochrome/user-arrows.svg","category":"Medical","style":"monochrome","tags":["social-distance","distance","avoid-crowd","avoid-public","public","social-distancing","covid-19","covid","user-arrows"],"pro":false},{"uuid":"b39e68a0-8933-11ea-948b-0242ac140003","id":1977297,"name":"user-md","svg":"svg/monochrome/user-md.svg","category":"Medical","style":"monochrome","tags":["professional","avatar","coronavirus","covid","doctor","user-md"],"pro":false},{"uuid":"b39e7720-8933-11ea-93cf-0242ac140003","id":1977298,"name":"user-nurse","svg":"svg/monochrome/user-nurse.svg","category":"Medical","style":"monochrome","tags":["nurse","treatment","coronavirus-patient","covid-19","coronavirus","patient","user-nurse"],"pro":false},{"uuid":"89faad70-df7d-11e9-954c-0242ac140003","id":1569142,"name":"vector-square","svg":"svg/monochrome/vector-square.svg","category":"Design Tools","style":"monochrome","tags":["transform-tool","free-transform","design-tool","vector-square"],"pro":false},{"uuid":"89fa9bc0-df7d-11e9-9f8e-0242ac140003","id":1569141,"name":"vector-square-alt","svg":"svg/monochrome/vector-square-alt.svg","category":"Design Tools","style":"monochrome","tags":["transform-tool","free-transform","design-tool","vector-square-alt"],"pro":false},{"uuid":"b39e8470-8933-11ea-b1bb-0242ac140003","id":1977299,"name":"virus-slash","svg":"svg/monochrome/virus-slash.svg","category":"Medical","style":"monochrome","tags":["no-virus","coronavirus","virus","covid","virus-slash"],"pro":false},{"uuid":"3008d910-f572-11e9-bbb4-0242ac140003","id":1597562,"name":"visual-studio","svg":"svg/monochrome/visual-studio.svg","category":"Brand Logos","style":"monochrome","tags":["logo","vs","brand","visual-studio"],"pro":false},{"uuid":"300aacd0-f572-11e9-bee3-0242ac140003","id":1597601,"name":"vk","svg":"svg/monochrome/vk.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","vk"],"pro":false},{"uuid":"300a9e80-f572-11e9-a265-0242ac140003","id":1597600,"name":"vk-alt","svg":"svg/monochrome/vk-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","brand","vk-alt"],"pro":false},{"uuid":"300a05a0-f572-11e9-afce-0242ac140003","id":1597587,"name":"vuejs","svg":"svg/monochrome/vuejs.svg","category":"Brand Logos","style":"monochrome","tags":["logo","developer-language","coding-language","vuejs"],"pro":false},{"uuid":"3009f9c0-f572-11e9-8847-0242ac140003","id":1597586,"name":"vuejs-alt","svg":"svg/monochrome/vuejs-alt.svg","category":"Brand Logos","style":"monochrome","tags":["logo","developer-language","vuejs-alt"],"pro":false},{"uuid":"be9b5190-df7d-11e9-85ae-0242ac140003","id":1569201,"name":"web-grid","svg":"svg/monochrome/web-grid.svg","category":"Cloud And Web","style":"monochrome","tags":["web-layout","layout","section","grid","web-grid"],"pro":false},{"uuid":"be9b3ea0-df7d-11e9-83b6-0242ac140003","id":1569200,"name":"web-grid-alt","svg":"svg/monochrome/web-grid-alt.svg","category":"Cloud And Web","style":"monochrome","tags":["web-layout","layout","section","grid","web-grid-alt"],"pro":false},{"uuid":"be9b2c00-df7d-11e9-b921-0242ac140003","id":1569199,"name":"web-section","svg":"svg/monochrome/web-section.svg","category":"Cloud And Web","style":"monochrome","tags":["web-layout","layout","section","grid","web-section"],"pro":false},{"uuid":"be9b19d0-df7d-11e9-8fb5-0242ac140003","id":1569198,"name":"web-section-alt","svg":"svg/monochrome/web-section-alt.svg","category":"Cloud And Web","style":"monochrome","tags":["web-layout","layout","section","grid","web-section-alt"],"pro":false},{"uuid":"3008f110-f572-11e9-9d56-0242ac140003","id":1597564,"name":"whatsapp","svg":"svg/monochrome/whatsapp.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","whatsapp"],"pro":false},{"uuid":"be9b06d0-df7d-11e9-b5b5-0242ac140003","id":1569197,"name":"window-grid","svg":"svg/monochrome/window-grid.svg","category":"Cloud And Web","style":"monochrome","tags":["web-layout","layout","section","grid","window-grid"],"pro":false},{"uuid":"be9af490-df7d-11e9-83d5-0242ac140003","id":1569196,"name":"window-maximize","svg":"svg/monochrome/window-maximize.svg","category":"Cloud And Web","style":"monochrome","tags":["web-layout","layout","section","grid","window-maximize"],"pro":false},{"uuid":"be9ae1b0-df7d-11e9-b29d-0242ac140003","id":1569195,"name":"window-section","svg":"svg/monochrome/window-section.svg","category":"Cloud And Web","style":"monochrome","tags":["web-layout","layout","section","grid","window-section"],"pro":false},{"uuid":"0fc44e00-349c-11eb-8110-0242ac140003","id":2538288,"name":"windows","svg":"svg/monochrome/windows.svg","category":"Brand Logos","style":"monochrome","tags":["brand","logo","microsoft","windows"],"pro":false},{"uuid":"c1a12440-9a7d-11ea-a954-0242ac140003","id":2056089,"name":"wordpress","svg":"svg/monochrome/wordpress.svg","category":"Brand Logos","style":"monochrome","tags":["logo","open-source-software","tool","software","wordpress"],"pro":false},{"uuid":"c1a11520-9a7d-11ea-8d5c-0242ac140003","id":2056088,"name":"wordpress-simple","svg":"svg/monochrome/wordpress-simple.svg","category":"Brand Logos","style":"monochrome","tags":["logo","open-source-software","tool","software","wordpress-simple"],"pro":false},{"uuid":"a4d26330-df7d-11e9-9d8d-0242ac140003","id":1569164,"name":"wrap-text","svg":"svg/monochrome/wrap-text.svg","category":"Content","style":"monochrome","tags":["word-wrap","text","wrap-text"],"pro":false},{"uuid":"3008e510-f572-11e9-912d-0242ac140003","id":1597563,"name":"youtube","svg":"svg/monochrome/youtube.svg","category":"Brand Logos","style":"monochrome","tags":["logo","social-media","brand","youtube"],"pro":false}] \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/solid.json b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/solid.json new file mode 100644 index 00000000..11207647 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/solid.json @@ -0,0 +1 @@ +[{"uuid":"6e3f99f0-d7b0-11ea-9c09-0242ac140003","id":2235815,"name":"airplay","svg":"svg/solid/airplay.svg","category":"Multimedia","style":"Solid","tags":["screen-mirroring","screen","airplay"],"code":59518,"unicode":"e87e","pro":false},{"uuid":"f0646420-d7ad-11ea-8bfa-0242ac140003","id":2235284,"name":"align-alt","svg":"svg/solid/align-alt.svg","category":"Content","style":"Solid","tags":["alignment","align","text-adjustment","text-alignment","align-alt"],"code":59473,"unicode":"e851","pro":false},{"uuid":"f0643cd0-d7ad-11ea-baf5-0242ac140003","id":2235281,"name":"align-center","svg":"svg/solid/align-center.svg","category":"Content","style":"Solid","tags":["center-alignment","align","alignment","text-formating","text-format","center","align-center"],"code":59474,"unicode":"e852","pro":false},{"uuid":"f061d1f0-d7ad-11ea-81f4-0242ac140003","id":2235234,"name":"align-center-justify","svg":"svg/solid/align-center-justify.svg","category":"Content","style":"Solid","tags":["center-alignment","alignment","center","align-center-justify"],"code":59410,"unicode":"e812","pro":false},{"uuid":"f063e230-d7ad-11ea-ae2b-0242ac140003","id":2235274,"name":"align-justify","svg":"svg/solid/align-justify.svg","category":"Content","style":"Solid","tags":["justify-alignment","justify","align","text-formating","text-format","alignment","align-justify"],"code":59443,"unicode":"e833","pro":false},{"uuid":"f063c800-d7ad-11ea-b9e6-0242ac140003","id":2235272,"name":"align-left","svg":"svg/solid/align-left.svg","category":"Content","style":"Solid","tags":["left-alignment","left-align","alignment","align-left"],"code":59490,"unicode":"e862","pro":false},{"uuid":"f0632e30-d7ad-11ea-bc46-0242ac140003","id":2235260,"name":"align-left-justify","svg":"svg/solid/align-left-justify.svg","category":"Content","style":"Solid","tags":["subject","left-alignment","left-align","alignment","text-formating","align-left-justify"],"code":59456,"unicode":"e840","pro":false},{"uuid":"f0647090-d7ad-11ea-8219-0242ac140003","id":2235285,"name":"align-letter-right","svg":"svg/solid/align-letter-right.svg","category":"Content","style":"Solid","tags":["align","alignment","align-right","align-letter-right"],"code":59472,"unicode":"e850","pro":false},{"uuid":"f0637b50-d7ad-11ea-875b-0242ac140003","id":2235266,"name":"align-right","svg":"svg/solid/align-right.svg","category":"Content","style":"Solid","tags":["right-alignment","right-align","alignment","align","align-right"],"code":59447,"unicode":"e837","pro":false},{"uuid":"f0636ec0-d7ad-11ea-b22d-0242ac140003","id":2235265,"name":"align-right-justify","svg":"svg/solid/align-right-justify.svg","category":"Content","style":"Solid","tags":["right-alignment","right-align","alignment","align-right-justify"],"code":59452,"unicode":"e83c","pro":false},{"uuid":"b53799c0-d7ac-11ea-ab79-0242ac140003","id":2234945,"name":"analysis","svg":"svg/solid/analysis.svg","category":"Business","style":"Solid","tags":["show-chart","growth-graph","graph","trading","analysis"],"code":59434,"unicode":"e82a","pro":false},{"uuid":"b5377d50-d7ac-11ea-84bf-0242ac140003","id":2234943,"name":"analytics","svg":"svg/solid/analytics.svg","category":"Business","style":"Solid","tags":["bar-graph","graph","analysis","analytics"],"code":59427,"unicode":"e823","pro":false},{"uuid":"9cc705a0-d7b2-11ea-89cb-0242ac140003","id":2236326,"name":"anchor","svg":"svg/solid/anchor.svg","category":"User Interface","style":"Solid","tags":["marine","nautical","anchor"],"code":59573,"unicode":"e8b5","pro":false},{"uuid":"7c60f900-d7ac-11ea-9342-0242ac140003","id":2234865,"name":"angle-double-down","svg":"svg/solid/angle-double-down.svg","category":"Arrows","style":"Solid","tags":["down-chevron","double-chevron","down","chevron","arrow","direction","angle-double-down"],"code":59398,"unicode":"e806","pro":false},{"uuid":"7c612e00-d7ac-11ea-8ceb-0242ac140003","id":2234869,"name":"angle-double-left","svg":"svg/solid/angle-double-left.svg","category":"Arrows","style":"Solid","tags":["double-chevron","left","chevron","arrow","direction","angle-double-left"],"code":59441,"unicode":"e831","pro":false},{"uuid":"7c612040-d7ac-11ea-81fe-0242ac140003","id":2234868,"name":"angle-double-right","svg":"svg/solid/angle-double-right.svg","category":"Arrows","style":"Solid","tags":["double-chevron","right","chevron","arrow","direction","angle-double-right"],"code":59433,"unicode":"e829","pro":false},{"uuid":"7c617da0-d7ac-11ea-b3c1-0242ac140003","id":2234875,"name":"angle-double-up","svg":"svg/solid/angle-double-up.svg","category":"Arrows","style":"Solid","tags":["up-chevron","double-chevron","up","chevron","arrow","direction","angle-double-up"],"code":59413,"unicode":"e815","pro":false},{"uuid":"7c611330-d7ac-11ea-8dc2-0242ac140003","id":2234867,"name":"angle-down","svg":"svg/solid/angle-down.svg","category":"Arrows","style":"Solid","tags":["down-arrow","down","arrow","direction","angle-down"],"code":59419,"unicode":"e81b","pro":false},{"uuid":"7c60d200-d7ac-11ea-b7d6-0242ac140003","id":2234862,"name":"angle-left","svg":"svg/solid/angle-left.svg","category":"Arrows","style":"Solid","tags":["left-arrow","left","arrow","left-side","direction","angle-left"],"code":59439,"unicode":"e82f","pro":false},{"uuid":"7c60aa00-d7ac-11ea-ab80-0242ac140003","id":2234859,"name":"angle-right","svg":"svg/solid/angle-right.svg","category":"Arrows","style":"Solid","tags":["right-arrow","right","arrow","direction","angle-right"],"code":59415,"unicode":"e817","pro":false},{"uuid":"7c6084d0-d7ac-11ea-bbd6-0242ac140003","id":2234857,"name":"angle-right-b","svg":"svg/solid/angle-right-b.svg","category":"Arrows","style":"Solid","tags":["right-arrow","right","arrow","right-side","direction","angle-right-b"],"code":59429,"unicode":"e825","pro":false},{"uuid":"7c616250-d7ac-11ea-942c-0242ac140003","id":2234873,"name":"angle-up","svg":"svg/solid/angle-up.svg","category":"Arrows","style":"Solid","tags":["upper-arrow","top-arrow","up-arrow","arrow","direction","angle-up"],"code":59437,"unicode":"e82d","pro":false},{"uuid":"2921a980-d7ae-11ea-ad13-0242ac140003","id":2235337,"name":"apps","svg":"svg/solid/apps.svg","category":"Design Tools","style":"Solid","tags":["grid","layout","arrange","apps"],"code":59487,"unicode":"e85f","pro":false},{"uuid":"7c610650-d7ac-11ea-a2e2-0242ac140003","id":2234866,"name":"arrow-circle-down","svg":"svg/solid/arrow-circle-down.svg","category":"Arrows","style":"Solid","tags":["down-arrow","down","arrow","direction","arrow-circle-down"],"code":59396,"unicode":"e804","pro":false},{"uuid":"7c60dfc0-d7ac-11ea-95ab-0242ac140003","id":2234863,"name":"arrow-circle-left","svg":"svg/solid/arrow-circle-left.svg","category":"Arrows","style":"Solid","tags":["left-arrow","left","arrow","direction","arrow-circle-left"],"code":59420,"unicode":"e81c","pro":false},{"uuid":"7c609c80-d7ac-11ea-9fb4-0242ac140003","id":2234858,"name":"arrow-circle-right","svg":"svg/solid/arrow-circle-right.svg","category":"Arrows","style":"Solid","tags":["right-arrow","right","arrow","direction","arrow-circle-right"],"code":59421,"unicode":"e81d","pro":false},{"uuid":"7c6155b0-d7ac-11ea-b97c-0242ac140003","id":2234872,"name":"arrow-circle-up","svg":"svg/solid/arrow-circle-up.svg","category":"Arrows","style":"Solid","tags":["upper-arrow","top-arrow","up-arrow","arrow","direction","arrow-circle-up"],"code":59405,"unicode":"e80d","pro":false},{"uuid":"7c60c550-d7ac-11ea-9d62-0242ac140003","id":2234861,"name":"arrow-down-left","svg":"svg/solid/arrow-down-left.svg","category":"Arrows","style":"Solid","tags":["lower-left","left-arrow","left","lower","down-arrow","arrow","direction","arrow-down-left"],"code":59423,"unicode":"e81f","pro":false},{"uuid":"7c60b830-d7ac-11ea-97f5-0242ac140003","id":2234860,"name":"arrow-down-right","svg":"svg/solid/arrow-down-right.svg","category":"Arrows","style":"Solid","tags":["lower-right-arrow","lower-right","arrow","lower","down-arrow","direction","arrow-down-right"],"code":59438,"unicode":"e82e","pro":false},{"uuid":"7c614800-d7ac-11ea-9613-0242ac140003","id":2234871,"name":"arrow-up-left","svg":"svg/solid/arrow-up-left.svg","category":"Arrows","style":"Solid","tags":["upper-left-arrow","upper-left","upper","arrow","direction","arrow-up-left"],"code":59435,"unicode":"e82b","pro":false},{"uuid":"7c613b00-d7ac-11ea-8d8d-0242ac140003","id":2234870,"name":"arrow-up-right","svg":"svg/solid/arrow-up-right.svg","category":"Arrows","style":"Solid","tags":["upper-right-arrow","upper-right","upper","arrow","direction","arrow-up-right"],"code":59424,"unicode":"e820","pro":false},{"uuid":"9cc81240-d7b2-11ea-9f93-0242ac140003","id":2236344,"name":"at","svg":"svg/solid/at.svg","category":"User Interface","style":"Solid","tags":["address","contact","email","at"],"code":59577,"unicode":"e8b9","pro":false},{"uuid":"b537c6f0-d7ac-11ea-9984-0242ac140003","id":2234948,"name":"bag","svg":"svg/solid/bag.svg","category":"Business","style":"Solid","tags":["office-bag","briefcase","portfolio","suitcase","bag"],"code":59400,"unicode":"e808","pro":false},{"uuid":"f063eec0-d7ad-11ea-b0e7-0242ac140003","id":2235275,"name":"bars","svg":"svg/solid/bars.svg","category":"Content","style":"Solid","tags":["justify","hamburger-menu","align","alignment","bars"],"code":59453,"unicode":"e83d","pro":false},{"uuid":"9cc7b8f0-d7b2-11ea-a0ba-0242ac140003","id":2236338,"name":"battery-bolt","svg":"svg/solid/battery-bolt.svg","category":"User Interface","style":"Solid","tags":["battery-charging","battery","charge","charging","battery-bolt"],"code":59560,"unicode":"e8a8","pro":false},{"uuid":"9cc7c7c0-d7b2-11ea-92fa-0242ac140003","id":2236339,"name":"battery-empty","svg":"svg/solid/battery-empty.svg","category":"User Interface","style":"Solid","tags":["battery","low-battery","battery-empty"],"code":59558,"unicode":"e8a6","pro":false},{"uuid":"9cc69120-d7b2-11ea-b937-0242ac140003","id":2236318,"name":"bookmark","svg":"svg/solid/bookmark.svg","category":"User Interface","style":"Solid","tags":["save","tag","bookmark"],"code":59572,"unicode":"e8b4","pro":false},{"uuid":"f0645750-d7ad-11ea-a135-0242ac140003","id":2235283,"name":"border-alt","svg":"svg/solid/border-alt.svg","category":"Content","style":"Solid","tags":["border-style","border","border-alt"],"code":59480,"unicode":"e858","pro":false},{"uuid":"f0644950-d7ad-11ea-a65f-0242ac140003","id":2235282,"name":"border-bottom","svg":"svg/solid/border-bottom.svg","category":"Content","style":"Solid","tags":["bottom-border","border","border-style","border-bottom"],"code":59465,"unicode":"e849","pro":false},{"uuid":"f06387c0-d7ad-11ea-b8bd-0242ac140003","id":2235267,"name":"border-clear","svg":"svg/solid/border-clear.svg","category":"Content","style":"Solid","tags":["none-border","clear-border","border","border-clear"],"code":59457,"unicode":"e841","pro":false},{"uuid":"f0640920-d7ad-11ea-95f8-0242ac140003","id":2235277,"name":"border-horizontal","svg":"svg/solid/border-horizontal.svg","category":"Content","style":"Solid","tags":["horizontal-border","border","border-horizontal"],"code":59460,"unicode":"e844","pro":false},{"uuid":"f063fbb0-d7ad-11ea-aca3-0242ac140003","id":2235276,"name":"border-inner","svg":"svg/solid/border-inner.svg","category":"Content","style":"Solid","tags":["inside-border","inside","border","inner-border","border-inner"],"code":59455,"unicode":"e83f","pro":false},{"uuid":"f063ae00-d7ad-11ea-adc2-0242ac140003","id":2235270,"name":"border-left","svg":"svg/solid/border-left.svg","category":"Content","style":"Solid","tags":["left-border","border","border-left"],"code":59454,"unicode":"e83e","pro":false},{"uuid":"29214290-d7ae-11ea-95da-0242ac140003","id":2235329,"name":"border-out","svg":"svg/solid/border-out.svg","category":"Design Tools","style":"Solid","tags":["outer-border","outer","border","border-out"],"code":59483,"unicode":"e85b","pro":false},{"uuid":"f06361a0-d7ad-11ea-9eef-0242ac140003","id":2235264,"name":"border-right","svg":"svg/solid/border-right.svg","category":"Content","style":"Solid","tags":["right-border","border","border-right"],"code":59451,"unicode":"e83b","pro":false},{"uuid":"f06321b0-d7ad-11ea-af8d-0242ac140003","id":2235259,"name":"border-top","svg":"svg/solid/border-top.svg","category":"Content","style":"Solid","tags":["top-border","top","border","border-top"],"code":59442,"unicode":"e832","pro":false},{"uuid":"f0631500-d7ad-11ea-9958-0242ac140003","id":2235258,"name":"border-vertical","svg":"svg/solid/border-vertical.svg","category":"Content","style":"Solid","tags":["vertical-border","border","vertical-center-border","border-vertical"],"code":59458,"unicode":"e842","pro":false},{"uuid":"b537b910-d7ac-11ea-b883-0242ac140003","id":2234947,"name":"briefcase","svg":"svg/solid/briefcase.svg","category":"Business","style":"Solid","tags":["office-bag","hand-bag","school-bag","bag","briefcase"],"code":59402,"unicode":"e80a","pro":false},{"uuid":"9cc78eb0-d7b2-11ea-ac1c-0242ac140003","id":2236335,"name":"calender","svg":"svg/solid/calender.svg","category":"User Interface","style":"Solid","tags":["date","month","planner","schedule","calender"],"code":59562,"unicode":"e8aa","pro":false},{"uuid":"b5378bb0-d7ac-11ea-9232-0242ac140003","id":2234944,"name":"chart","svg":"svg/solid/chart.svg","category":"Business","style":"Solid","tags":["bar-graph","analysis","analytics","chart"],"code":59430,"unicode":"e826","pro":false},{"uuid":"b537aa70-d7ac-11ea-81c9-0242ac140003","id":2234946,"name":"chart-pie","svg":"svg/solid/chart-pie.svg","category":"Business","style":"Solid","tags":["pie-chart","chart","analysis","analytics","chart-pie"],"code":59422,"unicode":"e81e","pro":false},{"uuid":"9cc7f4b0-d7b2-11ea-8281-0242ac140003","id":2236342,"name":"check","svg":"svg/solid/check.svg","category":"User Interface","style":"Solid","tags":["approve","done","complete","success","right-tick","check"],"code":59579,"unicode":"e8bb","pro":false},{"uuid":"9cc80330-d7b2-11ea-99ab-0242ac140003","id":2236343,"name":"check-circle","svg":"svg/solid/check-circle.svg","category":"User Interface","style":"Solid","tags":["approve","check","done","complete","success","right-tick","check-circle"],"code":59580,"unicode":"e8bc","pro":false},{"uuid":"9cc7aaf0-d7b2-11ea-82d1-0242ac140003","id":2236337,"name":"check-square","svg":"svg/solid/check-square.svg","category":"User Interface","style":"Solid","tags":["checked","ok","right","tick","tick-sign","check-square"],"code":59548,"unicode":"e89c","pro":false},{"uuid":"2921d0e0-d7ae-11ea-be91-0242ac140003","id":2235340,"name":"circle-layer","svg":"svg/solid/circle-layer.svg","category":"Design Tools","style":"Solid","tags":["circle","layer","design-tool","circle-layer"],"code":59486,"unicode":"e85e","pro":false},{"uuid":"b6edbe70-d7af-11ea-8c5b-0242ac140003","id":2235737,"name":"clinic-medical","svg":"svg/solid/clinic-medical.svg","category":"Medical","style":"Solid","tags":["health","clinic","medical","building","covid-19","clinic-medical"],"code":59500,"unicode":"e86c","pro":false},{"uuid":"0a034e80-d7b1-11ea-a6a4-0242ac140003","id":2235960,"name":"clock","svg":"svg/solid/clock.svg","category":"Time","style":"Solid","tags":["watch","time","wall-clock","clock"],"code":59539,"unicode":"e893","pro":false},{"uuid":"0a0340a0-d7b1-11ea-961f-0242ac140003","id":2235959,"name":"clock-eight","svg":"svg/solid/clock-eight.svg","category":"Time","style":"Solid","tags":["clock","watch","time","wall-clock","clock-alt","clock-eight"],"code":59540,"unicode":"e894","pro":false},{"uuid":"0a033370-d7b1-11ea-b1b8-0242ac140003","id":2235958,"name":"clock-five","svg":"svg/solid/clock-five.svg","category":"Time","style":"Solid","tags":["clock","watch","time","wall-clock","clock-alt","clock-five"],"code":59533,"unicode":"e88d","pro":false},{"uuid":"0a032550-d7b1-11ea-aac9-0242ac140003","id":2235957,"name":"clock-nine","svg":"svg/solid/clock-nine.svg","category":"Time","style":"Solid","tags":["clock","watch","time","wall-clock","clock-alt","clock-nine"],"code":59537,"unicode":"e891","pro":false},{"uuid":"0a0316a0-d7b1-11ea-a067-0242ac140003","id":2235956,"name":"clock-seven","svg":"svg/solid/clock-seven.svg","category":"Time","style":"Solid","tags":["clock","watch","time","wall-clock","clock-alt","clock-seven"],"code":59519,"unicode":"e87f","pro":false},{"uuid":"0a030880-d7b1-11ea-b99b-0242ac140003","id":2235955,"name":"clock-ten","svg":"svg/solid/clock-ten.svg","category":"Time","style":"Solid","tags":["clock","watch","time","wall-clock","clock-alt","clock-ten"],"code":59527,"unicode":"e887","pro":false},{"uuid":"0a02f690-d7b1-11ea-981e-0242ac140003","id":2235954,"name":"clock-three","svg":"svg/solid/clock-three.svg","category":"Time","style":"Solid","tags":["clock","watch","time","wall-clock","clock-alt","clock-three"],"code":59531,"unicode":"e88b","pro":false},{"uuid":"0a035c00-d7b1-11ea-8719-0242ac140003","id":2235961,"name":"clock-two","svg":"svg/solid/clock-two.svg","category":"Time","style":"Solid","tags":["clock","watch","time","wall-clock","clock-alt","clock-two"],"code":59559,"unicode":"e8a7","pro":false},{"uuid":"114753c0-d7ad-11ea-b260-0242ac140003","id":2235109,"name":"columns","svg":"svg/solid/columns.svg","category":"Cloud And Web","style":"Solid","tags":["web-layout","layout","section","grid","columns"],"code":59425,"unicode":"e821","pro":false},{"uuid":"e6a053d0-d7ac-11ea-97c4-0242ac140003","id":2235006,"name":"comment-dots","svg":"svg/solid/comment-dots.svg","category":"Chat","style":"Solid","tags":["chat","chatting","comment","message","conversation","comment-dots"],"code":59417,"unicode":"e819","pro":false},{"uuid":"29213620-d7ae-11ea-ba72-0242ac140003","id":2235328,"name":"compress","svg":"svg/solid/compress.svg","category":"Design Tools","style":"Solid","tags":["resize","arrow","compress"],"code":59477,"unicode":"e855","pro":false},{"uuid":"7c606bd0-d7ac-11ea-9dfa-0242ac140003","id":2234855,"name":"corner-down-left","svg":"svg/solid/corner-down-left.svg","category":"Arrows","style":"Solid","tags":["turn-down-left","left-down","left","arrow","corner-down-left"],"code":59409,"unicode":"e811","pro":false},{"uuid":"7c605e20-d7ac-11ea-a908-0242ac140003","id":2234854,"name":"corner-down-right","svg":"svg/solid/corner-down-right.svg","category":"Arrows","style":"Solid","tags":["turn-down-right","right-down","right","arrow","corner-down-right"],"code":59399,"unicode":"e807","pro":false},{"uuid":"7c605180-d7ac-11ea-bb4f-0242ac140003","id":2234853,"name":"corner-left-down","svg":"svg/solid/corner-left-down.svg","category":"Arrows","style":"Solid","tags":["turn-left-down","turn-left","left-down","turning","direction","arrow","corner-left-down"],"code":59397,"unicode":"e805","pro":false},{"uuid":"7c6044c0-d7ac-11ea-ba59-0242ac140003","id":2234852,"name":"corner-right-down","svg":"svg/solid/corner-right-down.svg","category":"Arrows","style":"Solid","tags":["turn-right-down","turn-right","right-down","turning","direction","arrow","corner-right-down"],"code":59394,"unicode":"e802","pro":false},{"uuid":"7c603650-d7ac-11ea-9f42-0242ac140003","id":2234851,"name":"corner-up-left","svg":"svg/solid/corner-up-left.svg","category":"Arrows","style":"Solid","tags":["turn-up-left","turn-left","left-turn","left","arrow","direction","corner-up-left"],"code":59414,"unicode":"e816","pro":false},{"uuid":"7c6029e0-d7ac-11ea-8191-0242ac140003","id":2234850,"name":"corner-up-right","svg":"svg/solid/corner-up-right.svg","category":"Arrows","style":"Solid","tags":["turn-up-right","turn-right","right-turn","right","arrow","direction","corner-up-right"],"code":59393,"unicode":"e801","pro":false},{"uuid":"b6edf780-d7af-11ea-b4f4-0242ac140003","id":2235741,"name":"coronavirus","svg":"svg/solid/coronavirus.svg","category":"Medical","style":"Solid","tags":["virus","covid-19","covid","corona-virus","coronavirus"],"code":59516,"unicode":"e87c","pro":false},{"uuid":"f061c4a0-d7ad-11ea-b171-0242ac140003","id":2235233,"name":"dialpad","svg":"svg/solid/dialpad.svg","category":"Content","style":"Solid","tags":["dial-pad","numpad","dialpad"],"code":59411,"unicode":"e813","pro":false},{"uuid":"7c607860-d7ac-11ea-bffa-0242ac140003","id":2234856,"name":"direction","svg":"svg/solid/direction.svg","category":"Arrows","style":"Solid","tags":["scroll-up","scroll","up-arrow","down-arrow","arrow","up","down","direction"],"code":59403,"unicode":"e80b","pro":false},{"uuid":"f0643010-d7ad-11ea-b9b3-0242ac140003","id":2235280,"name":"document-layout-center","svg":"svg/solid/document-layout-center.svg","category":"Content","style":"Solid","tags":["document-layout","layout","blog","article","image","document-layout-center"],"code":59482,"unicode":"e85a","pro":false},{"uuid":"f061b670-d7ad-11ea-b801-0242ac140003","id":2235232,"name":"document-layout-left","svg":"svg/solid/document-layout-left.svg","category":"Content","style":"Solid","tags":["document-layout","layout","blog","article","image","document-layout-left"],"code":59440,"unicode":"e830","pro":false},{"uuid":"f0642290-d7ad-11ea-866e-0242ac140003","id":2235279,"name":"document-layout-right","svg":"svg/solid/document-layout-right.svg","category":"Content","style":"Solid","tags":["document-layout","layout","left-justify","left-alignment","blog","article","image","document-layout-right"],"code":59488,"unicode":"e860","pro":false},{"uuid":"7c60ec70-d7ac-11ea-b7b2-0242ac140003","id":2234864,"name":"download-alt","svg":"svg/solid/download-alt.svg","category":"Arrows","style":"Solid","tags":["download","down-arrow","arrow","download-alt"],"code":59395,"unicode":"e803","pro":false},{"uuid":"9cc6f7a0-d7b2-11ea-b8b8-0242ac140003","id":2236325,"name":"ellipsis-h","svg":"svg/solid/ellipsis-h.svg","category":"User Interface","style":"Solid","tags":["menu","more","show-more","option","ellipsis-h"],"code":59543,"unicode":"e897","pro":false},{"uuid":"9cc6ea20-d7b2-11ea-9a1f-0242ac140003","id":2236324,"name":"ellipsis-v","svg":"svg/solid/ellipsis-v.svg","category":"User Interface","style":"Solid","tags":["menu","more","show-more","option","ellipsis-v"],"code":59576,"unicode":"e8b8","pro":false},{"uuid":"9cc780c0-d7b2-11ea-bf35-0242ac140003","id":2236334,"name":"exclamation-circle","svg":"svg/solid/exclamation-circle.svg","category":"User Interface","style":"Solid","tags":["exclamation-mark","alert","wrong","exclamation-circle"],"code":59551,"unicode":"e89f","pro":false},{"uuid":"9cc75e70-d7b2-11ea-ad72-0242ac140003","id":2236332,"name":"exclamation-octagon","svg":"svg/solid/exclamation-octagon.svg","category":"User Interface","style":"Solid","tags":["exclamation-mark","mark","alert","warning","error","exclamation-octagon"],"code":59565,"unicode":"e8ad","pro":false},{"uuid":"9cc77160-d7b2-11ea-b66e-0242ac140003","id":2236333,"name":"exclamation-triangle","svg":"svg/solid/exclamation-triangle.svg","category":"User Interface","style":"Solid","tags":["exclamation-mark","mark","alert","warning","error","caution","exclamation-triangle"],"code":59545,"unicode":"e899","pro":false},{"uuid":"9cc666e0-d7b2-11ea-889f-0242ac140003","id":2236315,"name":"favorite","svg":"svg/solid/favorite.svg","category":"User Interface","style":"Solid","tags":["star","bookmark","rate","ratings","favorite"],"code":59547,"unicode":"e89b","pro":false},{"uuid":"29218f40-d7ae-11ea-9134-0242ac140003","id":2235335,"name":"flip-h","svg":"svg/solid/flip-h.svg","category":"Design Tools","style":"Solid","tags":["horizontal-flip","flip","image-flip","mirror-image","flip-h"],"code":59470,"unicode":"e84e","pro":false},{"uuid":"292182e0-d7ae-11ea-af95-0242ac140003","id":2235334,"name":"flip-h-alt","svg":"svg/solid/flip-h-alt.svg","category":"Design Tools","style":"Solid","tags":["horizontal-flip","flip","image-flip","mirror-image","flip-h-alt"],"code":59467,"unicode":"e84b","pro":false},{"uuid":"2920db00-d7ae-11ea-b662-0242ac140003","id":2235321,"name":"flip-v","svg":"svg/solid/flip-v.svg","category":"Design Tools","style":"Solid","tags":["vertical-flip","flip","image-flip","mirror-image","edit","flip-v"],"code":59476,"unicode":"e854","pro":false},{"uuid":"291f6cc0-d7ae-11ea-9b26-0242ac140003","id":2235293,"name":"flip-v-alt","svg":"svg/solid/flip-v-alt.svg","category":"Design Tools","style":"Solid","tags":["vertical-flip","flip","image-flip","mirror-image","edit","flip-v-alt"],"code":59471,"unicode":"e84f","pro":false},{"uuid":"b5376e30-d7ac-11ea-9e85-0242ac140003","id":2234942,"name":"graph-bar","svg":"svg/solid/graph-bar.svg","category":"Business","style":"Solid","tags":["bar-graph","graph","analysis","analytics","graph-bar"],"code":59418,"unicode":"e81a","pro":false},{"uuid":"114760f0-d7ad-11ea-9afe-0242ac140003","id":2235110,"name":"grid","svg":"svg/solid/grid.svg","category":"Cloud And Web","style":"Solid","tags":["web-layout","layout","section","grid"],"code":59428,"unicode":"e824","pro":false},{"uuid":"2921b5d0-d7ae-11ea-aaf5-0242ac140003","id":2235338,"name":"grids","svg":"svg/solid/grids.svg","category":"Design Tools","style":"Solid","tags":["grid","grid-layout","grids"],"code":59489,"unicode":"e861","pro":false},{"uuid":"f06415b0-d7ad-11ea-be7c-0242ac140003","id":2235278,"name":"grip-horizontal-line","svg":"svg/solid/grip-horizontal-line.svg","category":"Content","style":"Solid","tags":["drag-handle","grip-lines","grip-horizontal-line"],"code":59468,"unicode":"e84c","pro":false},{"uuid":"b6eba750-d7af-11ea-bd09-0242ac140003","id":2235703,"name":"head-side","svg":"svg/solid/head-side.svg","category":"Medical","style":"Solid","tags":["man","human","face","head","covid-19","head-side"],"code":59495,"unicode":"e867","pro":false},{"uuid":"b6edccd0-d7af-11ea-9e1f-0242ac140003","id":2235738,"name":"head-side-cough","svg":"svg/solid/head-side-cough.svg","category":"Medical","style":"Solid","tags":["face","dieases","covid-19","coronovirus","cough","coronavirus","head-side-cough"],"code":59508,"unicode":"e874","pro":false},{"uuid":"b6ed9230-d7af-11ea-a0e7-0242ac140003","id":2235734,"name":"head-side-mask","svg":"svg/solid/head-side-mask.svg","category":"Medical","style":"Solid","tags":["mask","face-mask","hygiene","facemask","covid-19","head-side-mask"],"code":59506,"unicode":"e872","pro":false},{"uuid":"9cc7d5c0-d7b2-11ea-8a74-0242ac140003","id":2236340,"name":"history","svg":"svg/solid/history.svg","category":"User Interface","style":"Solid","tags":["backup","restore","revert","history"],"code":59567,"unicode":"e8af","pro":false},{"uuid":"9cc74980-d7b2-11ea-80c1-0242ac140003","id":2236331,"name":"history-alt","svg":"svg/solid/history-alt.svg","category":"User Interface","style":"Solid","tags":["history","backup","restore","revert","history-alt"],"code":59556,"unicode":"e8a4","pro":false},{"uuid":"29216910-d7ae-11ea-b6f7-0242ac140003","id":2235332,"name":"horizontal-align-left","svg":"svg/solid/horizontal-align-left.svg","category":"Design Tools","style":"Solid","tags":["left-align","left-alignment","align","alignment","horizontal-align-left"],"code":59466,"unicode":"e84a","pro":false},{"uuid":"b6eddb60-d7af-11ea-8fad-0242ac140003","id":2235739,"name":"hospital","svg":"svg/solid/hospital.svg","category":"Medical","style":"Solid","tags":["care","mediacl","healthcare","building","covid-19","coronavirus","hospital"],"code":59503,"unicode":"e86f","pro":false},{"uuid":"b6edade0-d7af-11ea-bec0-0242ac140003","id":2235736,"name":"hospital-square-sign","svg":"svg/solid/hospital-square-sign.svg","category":"Medical","style":"Solid","tags":["hospital-sign","medical-sign","h-sign","covid-19","hospital-square-sign"],"code":59501,"unicode":"e86d","pro":false},{"uuid":"b6eda070-d7af-11ea-adfd-0242ac140003","id":2235735,"name":"hospital-symbol","svg":"svg/solid/hospital-symbol.svg","category":"Medical","style":"Solid","tags":["hospital-sign","medical-sign","h-sign","medical","covid-19","hospital-symbol"],"code":59509,"unicode":"e875","pro":false},{"uuid":"b6ed0f90-d7af-11ea-8c9a-0242ac140003","id":2235725,"name":"house-user","svg":"svg/solid/house-user.svg","category":"Medical","style":"Solid","tags":["stay-in-home","home","work-from-home","wfh","house","stay-safe","covid-19","stay-at-home","house-user"],"code":59499,"unicode":"e86b","pro":false},{"uuid":"6e3f7f20-d7b0-11ea-985d-0242ac140003","id":2235813,"name":"image-v","svg":"svg/solid/image-v.svg","category":"Multimedia","style":"Solid","tags":["image","picture","photo","gallary","image-v"],"code":59502,"unicode":"e86e","pro":false},{"uuid":"9cc73c00-d7b2-11ea-9ecb-0242ac140003","id":2236330,"name":"key-skeleton","svg":"svg/solid/key-skeleton.svg","category":"User Interface","style":"Solid","tags":["key","password","lock","key-skeleton"],"code":59546,"unicode":"e89a","pro":false},{"uuid":"9cc72ea0-d7b2-11ea-8042-0242ac140003","id":2236329,"name":"key-skeleton-alt","svg":"svg/solid/key-skeleton-alt.svg","category":"User Interface","style":"Solid","tags":["key","password","lock","key-skeleton-alt"],"code":59552,"unicode":"e8a0","pro":false},{"uuid":"a0808350-d7b0-11ea-8eed-0242ac140003","id":2235838,"name":"keyhole-circle","svg":"svg/solid/keyhole-circle.svg","category":"Security","style":"Solid","tags":["key-hole","lock","privacy","security","protection","safe","key","keyhole","keyhole-circle"],"code":59523,"unicode":"e883","pro":false},{"uuid":"a0800370-d7b0-11ea-8bfb-0242ac140003","id":2235829,"name":"keyhole-square","svg":"svg/solid/keyhole-square.svg","category":"Security","style":"Solid","tags":["keyhole","key-hole","lock","privacy","security","protection","safe","keyhole-square"],"code":59530,"unicode":"e88a","pro":false},{"uuid":"a0806f60-d7b0-11ea-a84e-0242ac140003","id":2235837,"name":"keyhole-square-full","svg":"svg/solid/keyhole-square-full.svg","category":"Security","style":"Solid","tags":["key-hole","lock","privacy","security","protection","safe","keyhole","keyhole-square-full"],"code":59520,"unicode":"e880","pro":false},{"uuid":"9cc72080-d7b2-11ea-90fd-0242ac140003","id":2236328,"name":"layer-group","svg":"svg/solid/layer-group.svg","category":"User Interface","style":"Solid","tags":["layer","layers","arrange","layer-group"],"code":59557,"unicode":"e8a5","pro":false},{"uuid":"29217650-d7ae-11ea-96fd-0242ac140003","id":2235333,"name":"layers-alt","svg":"svg/solid/layers-alt.svg","category":"Design Tools","style":"Solid","tags":["layers","layer","design-tool","layers-alt"],"code":59475,"unicode":"e853","pro":false},{"uuid":"f063d470-d7ad-11ea-b549-0242ac140003","id":2235273,"name":"left-indent","svg":"svg/solid/left-indent.svg","category":"Content","style":"Solid","tags":["left-alignment","alignment","align","left-indent"],"code":59491,"unicode":"e863","pro":false},{"uuid":"f063a1b0-d7ad-11ea-aa0f-0242ac140003","id":2235269,"name":"left-indent-alt","svg":"svg/solid/left-indent-alt.svg","category":"Content","style":"Solid","tags":["left-indent","indent","left","alignment","align","left-indent-alt"],"code":59445,"unicode":"e835","pro":false},{"uuid":"2921c320-d7ae-11ea-a567-0242ac140003","id":2235339,"name":"line-spacing","svg":"svg/solid/line-spacing.svg","category":"Design Tools","style":"Solid","tags":["format-line","line-spacing"],"code":59479,"unicode":"e857","pro":false},{"uuid":"9cc71340-d7b2-11ea-9bc6-0242ac140003","id":2236327,"name":"link-h","svg":"svg/solid/link-h.svg","category":"User Interface","style":"Solid","tags":["link","chain","hyperlink","web-link","link-h"],"code":59554,"unicode":"e8a2","pro":false},{"uuid":"f0639530-d7ad-11ea-b43c-0242ac140003","id":2235268,"name":"list-ui-alt","svg":"svg/solid/list-ui-alt.svg","category":"Content","style":"Solid","tags":["list","menu","list-ui-alt"],"code":59449,"unicode":"e839","pro":false},{"uuid":"f061a3b0-d7ad-11ea-a860-0242ac140003","id":2235231,"name":"list-ul","svg":"svg/solid/list-ul.svg","category":"Content","style":"Solid","tags":["list-format","list","menu","bullets","list-ul"],"code":59432,"unicode":"e828","pro":false},{"uuid":"a07ff0a0-d7b0-11ea-afca-0242ac140003","id":2235828,"name":"lock","svg":"svg/solid/lock.svg","category":"Security","style":"Solid","tags":["pad-lock","safe","security","protected","lock"],"code":59528,"unicode":"e888","pro":false},{"uuid":"a08062a0-d7b0-11ea-b086-0242ac140003","id":2235836,"name":"lock-access","svg":"svg/solid/lock-access.svg","category":"Security","style":"Solid","tags":["lock","pad-lock","safe","security","protected","lock-access"],"code":59513,"unicode":"e879","pro":false},{"uuid":"a08055e0-d7b0-11ea-94a0-0242ac140003","id":2235835,"name":"lock-alt","svg":"svg/solid/lock-alt.svg","category":"Security","style":"Solid","tags":["lock","pad-lock","safe","security","protected","lock-alt"],"code":59515,"unicode":"e87b","pro":false},{"uuid":"a07fdb20-d7b0-11ea-89e6-0242ac140003","id":2235827,"name":"lock-open-alt","svg":"svg/solid/lock-open-alt.svg","category":"Security","style":"Solid","tags":["unlock","lock-open","pad-lock","access","lock-open-alt"],"code":59569,"unicode":"e8b1","pro":false},{"uuid":"b6ed6730-d7af-11ea-abdf-0242ac140003","id":2235731,"name":"microscope","svg":"svg/solid/microscope.svg","category":"Medical","style":"Solid","tags":["medical-equipment","medical","equipment","tool","covid-19","covid","microscope"],"code":59507,"unicode":"e873","pro":false},{"uuid":"9cc6db60-d7b2-11ea-9777-0242ac140003","id":2236323,"name":"minus-square-full","svg":"svg/solid/minus-square-full.svg","category":"User Interface","style":"Solid","tags":["minus","minimize","close","delete","remove","minus-square-full"],"code":59553,"unicode":"e8a1","pro":false},{"uuid":"9cc79c50-d7b2-11ea-903c-0242ac140003","id":2236336,"name":"multiply","svg":"svg/solid/multiply.svg","category":"User Interface","style":"Solid","tags":["close","delete","remove","multiplication","multiply"],"code":59555,"unicode":"e8a3","pro":false},{"uuid":"29215010-d7ae-11ea-a03a-0242ac140003","id":2235330,"name":"object-group","svg":"svg/solid/object-group.svg","category":"Design Tools","style":"Solid","tags":["object","design-tool","object-group"],"code":59481,"unicode":"e859","pro":false},{"uuid":"2920e7e0-d7ae-11ea-9466-0242ac140003","id":2235322,"name":"object-ungroup","svg":"svg/solid/object-ungroup.svg","category":"Design Tools","style":"Solid","tags":["ungroup","design-tool","object-ungroup"],"code":59484,"unicode":"e85c","pro":false},{"uuid":"a0804860-d7b0-11ea-a95b-0242ac140003","id":2235834,"name":"padlock","svg":"svg/solid/padlock.svg","category":"Security","style":"Solid","tags":["lock","pad-lock","safe","security","protected","padlock"],"code":59521,"unicode":"e881","pro":false},{"uuid":"9cc7e360-d7b2-11ea-b947-0242ac140003","id":2236341,"name":"paperclip","svg":"svg/solid/paperclip.svg","category":"User Interface","style":"Solid","tags":["attach","attachment","paperclip"],"code":59578,"unicode":"e8ba","pro":false},{"uuid":"f0633b90-d7ad-11ea-ba6c-0242ac140003","id":2235261,"name":"paragraph","svg":"svg/solid/paragraph.svg","category":"Content","style":"Solid","tags":["short-text","paragraph"],"code":59450,"unicode":"e83a","pro":false},{"uuid":"afcb1590-d7b0-11ea-a680-0242ac140003","id":2235880,"name":"pentagon","svg":"svg/solid/pentagon.svg","category":"Shape","style":"Solid","tags":["shape","design","design-shape","pentagon"],"code":59524,"unicode":"e884","pro":false},{"uuid":"afcb08c0-d7b0-11ea-862c-0242ac140003","id":2235879,"name":"polygon","svg":"svg/solid/polygon.svg","category":"Shape","style":"Solid","tags":["shape","design","design-shape","polygon"],"code":59535,"unicode":"e88f","pro":false},{"uuid":"6e3f8c80-d7b0-11ea-9a34-0242ac140003","id":2235814,"name":"previous","svg":"svg/solid/previous.svg","category":"Multimedia","style":"Solid","tags":["back","media-control","control","media","previous"],"code":59514,"unicode":"e87a","pro":false},{"uuid":"9cc69eb0-d7b2-11ea-af40-0242ac140003","id":2236319,"name":"process","svg":"svg/solid/process.svg","category":"User Interface","style":"Solid","tags":["repeat","reload","process"],"code":59550,"unicode":"e89e","pro":false},{"uuid":"6e3fa750-d7b0-11ea-81a8-0242ac140003","id":2235816,"name":"record-audio","svg":"svg/solid/record-audio.svg","category":"Multimedia","style":"Solid","tags":["recording","record","record-audio"],"code":59512,"unicode":"e878","pro":false},{"uuid":"9cc6bc00-d7b2-11ea-87c0-0242ac140003","id":2236321,"name":"redo","svg":"svg/solid/redo.svg","category":"User Interface","style":"Solid","tags":["reload","refresh","recycle","redo"],"code":59561,"unicode":"e8a9","pro":false},{"uuid":"9cc6abf0-d7b2-11ea-96e9-0242ac140003","id":2236320,"name":"refresh","svg":"svg/solid/refresh.svg","category":"User Interface","style":"Solid","tags":["reload","sync","refresh"],"code":59574,"unicode":"e8b6","pro":false},{"uuid":"29215cd0-d7ae-11ea-9cfe-0242ac140003","id":2235331,"name":"repeat","svg":"svg/solid/repeat.svg","category":"Design Tools","style":"Solid","tags":["loop","refresh","reload","repeat"],"code":59462,"unicode":"e846","pro":false},{"uuid":"f0634830-d7ad-11ea-98c6-0242ac140003","id":2235262,"name":"right-indent","svg":"svg/solid/right-indent.svg","category":"Content","style":"Solid","tags":["right-alignment","alignment","align","right-indent"],"code":59444,"unicode":"e834","pro":false},{"uuid":"f06354a0-d7ad-11ea-9eb5-0242ac140003","id":2235263,"name":"right-indent-alt","svg":"svg/solid/right-indent-alt.svg","category":"Content","style":"Solid","tags":["right-indent","indent","right-alignment","text-format","right-indent-alt"],"code":59459,"unicode":"e843","pro":false},{"uuid":"9cc64c20-d7b2-11ea-bb65-0242ac140003","id":2236313,"name":"rocket","svg":"svg/solid/rocket.svg","category":"User Interface","style":"Solid","tags":["startup","launch","missile","rocket"],"code":59575,"unicode":"e8b7","pro":false},{"uuid":"29211b90-d7ae-11ea-80ef-0242ac140003","id":2235326,"name":"ruler","svg":"svg/solid/ruler.svg","category":"Design Tools","style":"Solid","tags":["scale","measure","design-tool","ruler"],"code":59463,"unicode":"e847","pro":false},{"uuid":"29212980-d7ae-11ea-b837-0242ac140003","id":2235327,"name":"ruler-combined","svg":"svg/solid/ruler-combined.svg","category":"Design Tools","style":"Solid","tags":["ruler","scale","measure","design-tool","ruler-combined"],"code":59461,"unicode":"e845","pro":false},{"uuid":"b6ede990-d7af-11ea-9d12-0242ac140003","id":2235740,"name":"sanitizer","svg":"svg/solid/sanitizer.svg","category":"Medical","style":"Solid","tags":["alcohol-based-sanitizer","hygiene","covid-19","coronavirus","sanitizer"],"code":59517,"unicode":"e87d","pro":false},{"uuid":"b6ebb790-d7af-11ea-911c-0242ac140003","id":2235704,"name":"sanitizer-alt","svg":"svg/solid/sanitizer-alt.svg","category":"Medical","style":"Solid","tags":["alcohol-based-sanitizer","hygiene","sanitizer","covid-19","coronavirus","sanitizer-alt"],"code":59504,"unicode":"e870","pro":false},{"uuid":"6e3fc0a0-d7b0-11ea-b6ce-0242ac140003","id":2235818,"name":"scenery","svg":"svg/solid/scenery.svg","category":"Multimedia","style":"Solid","tags":["image","picture","photo","gallary","scenery"],"code":59522,"unicode":"e882","pro":false},{"uuid":"b537d650-d7ac-11ea-946e-0242ac140003","id":2234949,"name":"schedule","svg":"svg/solid/schedule.svg","category":"Business","style":"Solid","tags":["calendar","planner","schedule"],"code":59416,"unicode":"e818","pro":false},{"uuid":"b6ed3b10-d7af-11ea-8b6b-0242ac140003","id":2235728,"name":"shield-plus","svg":"svg/solid/shield-plus.svg","category":"Medical","style":"Solid","tags":["security","medical-insurance","insurance","safety","covid-19","health","life-insurance","shield-plus"],"code":59532,"unicode":"e88c","pro":false},{"uuid":"9cc6cde0-d7b2-11ea-a663-0242ac140003","id":2236322,"name":"signal-alt","svg":"svg/solid/signal-alt.svg","category":"User Interface","style":"Solid","tags":["network","phone-signal","phone-network","signal-alt"],"code":59566,"unicode":"e8ae","pro":false},{"uuid":"b537e520-d7ac-11ea-8ff1-0242ac140003","id":2234950,"name":"signal-alt-3","svg":"svg/solid/signal-alt-3.svg","category":"Business","style":"Solid","tags":["bar-graph","graph","analysis","analytics","signal-alt-3"],"code":59406,"unicode":"e80e","pro":false},{"uuid":"9cc68300-d7b2-11ea-9cdb-0242ac140003","id":2236317,"name":"signout","svg":"svg/solid/signout.svg","category":"User Interface","style":"Solid","tags":["sign-out","logout","exit","signout"],"code":59549,"unicode":"e89d","pro":false},{"uuid":"b6ed1e80-d7af-11ea-b007-0242ac140003","id":2235726,"name":"social-distancing","svg":"svg/solid/social-distancing.svg","category":"Medical","style":"Solid","tags":["social-distance","avoid-crowd","avoid-public","covid-19","covid","public","social-distancing"],"code":59496,"unicode":"e868","pro":false},{"uuid":"7c601d50-d7ac-11ea-92ca-0242ac140003","id":2234849,"name":"sorting","svg":"svg/solid/sorting.svg","category":"Arrows","style":"Solid","tags":["up-arrow","down-arrow","arrow","ascending","descending","sorting"],"code":59407,"unicode":"e80f","pro":false},{"uuid":"9cc67580-d7b2-11ea-8c64-0242ac140003","id":2236316,"name":"space-key","svg":"svg/solid/space-key.svg","category":"User Interface","style":"Solid","tags":["space-bar","keyboard","keys","space-key"],"code":59571,"unicode":"e8b3","pro":false},{"uuid":"2920f520-d7ae-11ea-ab34-0242ac140003","id":2235323,"name":"square-full","svg":"svg/solid/square-full.svg","category":"Design Tools","style":"Solid","tags":["uncheck","check-box","box","square","square-full"],"code":59464,"unicode":"e848","pro":false},{"uuid":"afcb2380-d7b0-11ea-be88-0242ac140003","id":2235881,"name":"star","svg":"svg/solid/star.svg","category":"Shape","style":"Solid","tags":["star-shape","favorite","bookmark","rate","ratings","star"],"code":59534,"unicode":"e88e","pro":false},{"uuid":"9cc65980-d7b2-11ea-9029-0242ac140003","id":2236314,"name":"star-half-alt","svg":"svg/solid/star-half-alt.svg","category":"User Interface","style":"Solid","tags":["star","half-star","ratings","rate","star-half-alt"],"code":59542,"unicode":"e896","pro":false},{"uuid":"6e3fb3c0-d7b0-11ea-9502-0242ac140003","id":2235817,"name":"step-forward","svg":"svg/solid/step-forward.svg","category":"Multimedia","style":"Solid","tags":["next","media-control","control","media","step-forward"],"code":59538,"unicode":"e892","pro":false},{"uuid":"b6ed8320-d7af-11ea-813e-0242ac140003","id":2235733,"name":"stethoscope","svg":"svg/solid/stethoscope.svg","category":"Medical","style":"Solid","tags":["medical-equipment","equipment","mediacl","covid-19","covid","stethoscope"],"code":59511,"unicode":"e877","pro":false},{"uuid":"b6ed7520-d7af-11ea-9d23-0242ac140003","id":2235732,"name":"stethoscope-alt","svg":"svg/solid/stethoscope-alt.svg","category":"Medical","style":"Solid","tags":["medical-equipment","equipment","mediacl","stethoscope","covid-19","stethoscope-alt"],"code":59494,"unicode":"e866","pro":false},{"uuid":"0a036980-d7b1-11ea-af1f-0242ac140003","id":2235962,"name":"stopwatch","svg":"svg/solid/stopwatch.svg","category":"Time","style":"Solid","tags":["timer","timing","watch","stopwatch"],"code":59568,"unicode":"e8b0","pro":false},{"uuid":"b6ed2c80-d7af-11ea-858c-0242ac140003","id":2235727,"name":"store-slash","svg":"svg/solid/store-slash.svg","category":"Medical","style":"Solid","tags":["shop","avoid-shopping","avoid-store","covid-19","avoid-public-place","store-slash"],"code":59492,"unicode":"e864","pro":false},{"uuid":"f063bb70-d7ad-11ea-8ed6-0242ac140003","id":2235271,"name":"subject","svg":"svg/solid/subject.svg","category":"Content","style":"Solid","tags":["left-alignment","left-align","alignment","text-formating","align-left","subject"],"code":59446,"unicode":"e836","pro":false},{"uuid":"9cc63050-d7b2-11ea-814d-0242ac140003","id":2236311,"name":"sync-exclamation","svg":"svg/solid/sync-exclamation.svg","category":"User Interface","style":"Solid","tags":["sync-error","reload-error","refresh-error","error","exclamation-mark","sync-exclamation"],"code":59544,"unicode":"e898","pro":false},{"uuid":"9cc63da0-d7b2-11ea-9cbe-0242ac140003","id":2236312,"name":"sync-slash","svg":"svg/solid/sync-slash.svg","category":"User Interface","style":"Solid","tags":["sync-cancel","sync","sync-slash"],"code":59541,"unicode":"e895","pro":false},{"uuid":"29219c80-d7ae-11ea-aec3-0242ac140003","id":2235336,"name":"table","svg":"svg/solid/table.svg","category":"Design Tools","style":"Solid","tags":["grid","tile","design-tool","th","table"],"code":59485,"unicode":"e85d","pro":false},{"uuid":"2921dd50-d7ae-11ea-af12-0242ac140003","id":2235341,"name":"th-large","svg":"svg/solid/th-large.svg","category":"Design Tools","style":"Solid","tags":["all-border","border","full-boarder","th-large"],"code":59536,"unicode":"e890","pro":false},{"uuid":"9cbacf80-d7b2-11ea-a0f7-0242ac140003","id":2236131,"name":"times-circle","svg":"svg/solid/times-circle.svg","category":"User Interface","style":"Solid","tags":["close","cancel","delete","cross","times-circle"],"code":59563,"unicode":"e8ab","pro":false},{"uuid":"9cc832c0-d7b2-11ea-9ec1-0242ac140003","id":2236346,"name":"toggle-off","svg":"svg/solid/toggle-off.svg","category":"User Interface","style":"Solid","tags":["toggle","on","off","switch","on-off","enable","disable","toggle-off"],"code":59570,"unicode":"e8b2","pro":false},{"uuid":"9cc82440-d7b2-11ea-90bc-0242ac140003","id":2236345,"name":"toggle-on","svg":"svg/solid/toggle-on.svg","category":"User Interface","style":"Solid","tags":["toggle","on","off","switch","on-off","enable","disable","toggle-on"],"code":59564,"unicode":"e8ac","pro":false},{"uuid":"b6ed0200-d7af-11ea-bfb7-0242ac140003","id":2235724,"name":"toilet-paper","svg":"svg/solid/toilet-paper.svg","category":"Medical","style":"Solid","tags":["tissue-paper","tissue-roll","hygiene","covid-19","tissue","precaution","toilet-paper"],"code":59497,"unicode":"e869","pro":false},{"uuid":"afcafbd0-d7b0-11ea-b129-0242ac140003","id":2235878,"name":"triangle","svg":"svg/solid/triangle.svg","category":"Shape","style":"Solid","tags":["shape","design","design-shape","triangle"],"code":59525,"unicode":"e885","pro":false},{"uuid":"a0803b50-d7b0-11ea-afe7-0242ac140003","id":2235833,"name":"unlock","svg":"svg/solid/unlock.svg","category":"Security","style":"Solid","tags":["lock-open","pad-lock","access","unlock"],"code":59526,"unicode":"e886","pro":false},{"uuid":"a08097a0-d7b0-11ea-8f91-0242ac140003","id":2235839,"name":"unlock-alt","svg":"svg/solid/unlock-alt.svg","category":"Security","style":"Solid","tags":["unlock","lock-open","pad-lock","access","unlock-alt"],"code":59529,"unicode":"e889","pro":false},{"uuid":"7c616fd0-d7ac-11ea-8374-0242ac140003","id":2234874,"name":"upload-alt","svg":"svg/solid/upload-alt.svg","category":"Arrows","style":"Solid","tags":["upload","up-arrow","arrow","upload-alt"],"code":59404,"unicode":"e80c","pro":false},{"uuid":"b6eb8910-d7af-11ea-8b0e-0242ac140003","id":2235701,"name":"user-arrows","svg":"svg/solid/user-arrows.svg","category":"Medical","style":"Solid","tags":["social-distance","distance","avoid-crowd","avoid-public","public","social-distancing","covid-19","covid","user-arrows"],"code":59493,"unicode":"e865","pro":false},{"uuid":"b6ed49c0-d7af-11ea-84a3-0242ac140003","id":2235729,"name":"user-md","svg":"svg/solid/user-md.svg","category":"Medical","style":"Solid","tags":["professional","avatar","coronavirus","covid","doctor","user-md"],"code":59510,"unicode":"e876","pro":false},{"uuid":"b6ed57c0-d7af-11ea-9281-0242ac140003","id":2235730,"name":"user-nurse","svg":"svg/solid/user-nurse.svg","category":"Medical","style":"Solid","tags":["nurse","treatment","coronavirus-patient","covid-19","coronavirus","patient","user-nurse"],"code":59505,"unicode":"e871","pro":false},{"uuid":"29210f50-d7ae-11ea-962d-0242ac140003","id":2235325,"name":"vector-square","svg":"svg/solid/vector-square.svg","category":"Design Tools","style":"Solid","tags":["transform-tool","free-transform","design-tool","vector-square"],"code":59478,"unicode":"e856","pro":false},{"uuid":"292102b0-d7ae-11ea-a12f-0242ac140003","id":2235324,"name":"vector-square-alt","svg":"svg/solid/vector-square-alt.svg","category":"Design Tools","style":"Solid","tags":["transform-tool","free-transform","design-tool","vector-square-alt"],"code":59469,"unicode":"e84d","pro":false},{"uuid":"b6eb9960-d7af-11ea-ab49-0242ac140003","id":2235702,"name":"virus-slash","svg":"svg/solid/virus-slash.svg","category":"Medical","style":"Solid","tags":["no-virus","coronavirus","virus","covid","virus-slash"],"code":59498,"unicode":"e86a","pro":false},{"uuid":"11474520-d7ad-11ea-bd07-0242ac140003","id":2235108,"name":"web-grid","svg":"svg/solid/web-grid.svg","category":"Cloud And Web","style":"Solid","tags":["web-layout","layout","section","grid","web-grid"],"code":59401,"unicode":"e809","pro":false},{"uuid":"11473640-d7ad-11ea-83c2-0242ac140003","id":2235107,"name":"web-grid-alt","svg":"svg/solid/web-grid-alt.svg","category":"Cloud And Web","style":"Solid","tags":["web-layout","layout","section","grid","web-grid-alt"],"code":59436,"unicode":"e82c","pro":false},{"uuid":"114728d0-d7ad-11ea-a359-0242ac140003","id":2235106,"name":"web-section","svg":"svg/solid/web-section.svg","category":"Cloud And Web","style":"Solid","tags":["web-layout","layout","section","grid","web-section"],"code":59426,"unicode":"e822","pro":false},{"uuid":"11471880-d7ad-11ea-8a1d-0242ac140003","id":2235105,"name":"web-section-alt","svg":"svg/solid/web-section-alt.svg","category":"Cloud And Web","style":"Solid","tags":["web-layout","layout","section","grid","web-section-alt"],"code":59392,"unicode":"e800","pro":false},{"uuid":"114704b0-d7ad-11ea-b251-0242ac140003","id":2235104,"name":"window-grid","svg":"svg/solid/window-grid.svg","category":"Cloud And Web","style":"Solid","tags":["web-layout","layout","section","grid","window-grid"],"code":59412,"unicode":"e814","pro":false},{"uuid":"1146f080-d7ad-11ea-a895-0242ac140003","id":2235103,"name":"window-maximize","svg":"svg/solid/window-maximize.svg","category":"Cloud And Web","style":"Solid","tags":["web-layout","layout","section","grid","window-maximize"],"code":59431,"unicode":"e827","pro":false},{"uuid":"11477040-d7ad-11ea-9174-0242ac140003","id":2235111,"name":"window-section","svg":"svg/solid/window-section.svg","category":"Cloud And Web","style":"Solid","tags":["web-layout","layout","section","grid","window-section"],"code":59408,"unicode":"e810","pro":false},{"uuid":"f061dfb0-d7ad-11ea-9656-0242ac140003","id":2235235,"name":"wrap-text","svg":"svg/solid/wrap-text.svg","category":"Content","style":"Solid","tags":["word-wrap","text","wrap-text"],"code":59448,"unicode":"e838","pro":false}] \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/thinline.json b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/thinline.json new file mode 100644 index 00000000..f856eaaa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/json/thinline.json @@ -0,0 +1 @@ +[{"uuid":"b92ab390-b248-11eb-aee5-0242ac140003","id":3094471,"name":"adobe-alt","svg":"svg/thinline/adobe-alt.svg","category":"Brand Logos","style":"Thinline","tags":["adobe","logo","brand-logo","brand","adobe-alt"],"code":59477,"unicode":"e855","pro":false},{"uuid":"a3882a50-b24f-11eb-9926-0242ac140003","id":3094964,"name":"airplay","svg":"svg/thinline/airplay.svg","category":"Multimedia","style":"Thinline","tags":["screen-mirroring","mirror-screen","screen","media","function","airplay"],"code":59559,"unicode":"e8a7","pro":false},{"uuid":"1ba06230-b24c-11eb-8463-0242ac140003","id":3094600,"name":"align-alt","svg":"svg/thinline/align-alt.svg","category":"Content","style":"Thinline","tags":["alignment","align","text-adjustment","adjustment","text-alignment","align-alt"],"code":59512,"unicode":"e878","pro":false},{"uuid":"1b9cdce0-b24c-11eb-9c6f-0242ac140003","id":3094563,"name":"align-center","svg":"svg/thinline/align-center.svg","category":"Content","style":"Thinline","tags":["center-alignment","align","alignment","text-formating","center","align-center"],"code":59498,"unicode":"e86a","pro":false},{"uuid":"1ba04a80-b24c-11eb-b005-0242ac140003","id":3094599,"name":"align-center-alt","svg":"svg/thinline/align-center-alt.svg","category":"Content","style":"Thinline","tags":["align-center","alignment","center","center-alignment","text-align","align-center-alt"],"code":59516,"unicode":"e87c","pro":false},{"uuid":"1ba08fb0-b24c-11eb-ae7d-0242ac140003","id":3094603,"name":"align-center-justify","svg":"svg/thinline/align-center-justify.svg","category":"Content","style":"Thinline","tags":["center-alignment","justify","alignment","center","align-center-justify"],"code":59514,"unicode":"e87a","pro":false},{"uuid":"1b9e5ec0-b24c-11eb-aa97-0242ac140003","id":3094579,"name":"align-left","svg":"svg/thinline/align-left.svg","category":"Content","style":"Thinline","tags":["left-alignment","left-align","alignment","text-formating","align-left"],"code":59511,"unicode":"e877","pro":false},{"uuid":"1b9f5230-b24c-11eb-8a5b-0242ac140003","id":3094589,"name":"align-left-justify","svg":"svg/thinline/align-left-justify.svg","category":"Content","style":"Thinline","tags":["subject","left-alignment","left-align","alignment","text-formating","align-left-justify"],"code":59528,"unicode":"e888","pro":false},{"uuid":"1ba030b0-b24c-11eb-b78b-0242ac140003","id":3094598,"name":"align-letter-right","svg":"svg/thinline/align-letter-right.svg","category":"Content","style":"Thinline","tags":["align","alignment","align-right","right-alignment","align-letter-right"],"code":59531,"unicode":"e88b","pro":false},{"uuid":"1b9ef0e0-b24c-11eb-b873-0242ac140003","id":3094585,"name":"align-right","svg":"svg/thinline/align-right.svg","category":"Content","style":"Thinline","tags":["right-alignment","right-align","alignment","align","align-right"],"code":59529,"unicode":"e889","pro":false},{"uuid":"1b9f0950-b24c-11eb-a1ee-0242ac140003","id":3094586,"name":"align-right-justify","svg":"svg/thinline/align-right-justify.svg","category":"Content","style":"Thinline","tags":["right-alignment","right-align","alignment","align-right-justify"],"code":59532,"unicode":"e88c","pro":false},{"uuid":"a8f2bcb0-b25b-11eb-93be-0242ac140003","id":3095393,"name":"anchor","svg":"svg/thinline/anchor.svg","category":"User Interface","style":"Thinline","tags":["marine","nautical","tool","anchor"],"code":59598,"unicode":"e8ce","pro":false},{"uuid":"b92ca4f0-b248-11eb-9729-0242ac140003","id":3094489,"name":"android-alt","svg":"svg/thinline/android-alt.svg","category":"Brand Logos","style":"Thinline","tags":["android","logo","brand","brand-logo","os","android-alt"],"code":59489,"unicode":"e861","pro":false},{"uuid":"4e5674f0-b248-11eb-a77c-0242ac140003","id":3094407,"name":"angle-double-down","svg":"svg/thinline/angle-double-down.svg","category":"Arrows","style":"Thinline","tags":["down-chevron","double-chevron-arrow","down-arrow","chevron","arrow","direction","angle-double-down"],"code":59474,"unicode":"e852","pro":false},{"uuid":"4e54d0b0-b248-11eb-9933-0242ac140003","id":3094379,"name":"angle-double-left","svg":"svg/thinline/angle-double-left.svg","category":"Arrows","style":"Thinline","tags":["double-chevron","left-chevron","left-arrow","arrow","direction","angle-double-left"],"code":59473,"unicode":"e851","pro":false},{"uuid":"4e564680-b248-11eb-a9de-0242ac140003","id":3094404,"name":"angle-double-right","svg":"svg/thinline/angle-double-right.svg","category":"Arrows","style":"Thinline","tags":["double-chevron","right-arrow","chevron","arrow","direction","angle-double-right"],"code":59453,"unicode":"e83d","pro":false},{"uuid":"4e594820-b248-11eb-981d-0242ac140003","id":3094452,"name":"angle-up","svg":"svg/thinline/angle-up.svg","category":"Arrows","style":"Thinline","tags":["upper-arrow","top-arrow","up-arrow","arrow","direction","angle-up"],"code":59475,"unicode":"e853","pro":false},{"uuid":"a8f02190-b25b-11eb-8264-0242ac140003","id":3095349,"name":"ankh","svg":"svg/thinline/ankh.svg","category":"User Interface","style":"Thinline","tags":["culture","religion","sign","symbol","ankh"],"code":59584,"unicode":"e8c0","pro":false},{"uuid":"b92acda0-b248-11eb-93b6-0242ac140003","id":3094472,"name":"apple-alt","svg":"svg/thinline/apple-alt.svg","category":"Brand Logos","style":"Thinline","tags":["logo","brand-logo","brand","os","apple-alt"],"code":59458,"unicode":"e842","pro":false},{"uuid":"4e565650-b248-11eb-9683-0242ac140003","id":3094405,"name":"arrow-circle-down","svg":"svg/thinline/arrow-circle-down.svg","category":"Arrows","style":"Thinline","tags":["down-arrow","arrow","direction","arrow-circle-down"],"code":59445,"unicode":"e835","pro":false},{"uuid":"4e57bb70-b248-11eb-b2c9-0242ac140003","id":3094426,"name":"arrow-circle-left","svg":"svg/thinline/arrow-circle-left.svg","category":"Arrows","style":"Thinline","tags":["left-arrow","left","arrow","direction","navigation","arrow-circle-left"],"code":59476,"unicode":"e854","pro":false},{"uuid":"4e54eea0-b248-11eb-b0d9-0242ac140003","id":3094381,"name":"arrow-circle-right","svg":"svg/thinline/arrow-circle-right.svg","category":"Arrows","style":"Thinline","tags":["right-arrow","right","arrow","direction","navigation","button","arrow-circle-right"],"code":59490,"unicode":"e862","pro":false},{"uuid":"4e5958f0-b248-11eb-b54a-0242ac140003","id":3094453,"name":"arrow-circle-up","svg":"svg/thinline/arrow-circle-up.svg","category":"Arrows","style":"Thinline","tags":["upper-arrow","top-arrow","up-arrow","arrow","up","direction","arrow-circle-up"],"code":59478,"unicode":"e856","pro":false},{"uuid":"4e57e980-b248-11eb-945f-0242ac140003","id":3094429,"name":"arrow-down-left","svg":"svg/thinline/arrow-down-left.svg","category":"Arrows","style":"Thinline","tags":["lower-left","left-arrow","left","lower-down-arrow","arrow","direction","arrow-down-left"],"code":59471,"unicode":"e84f","pro":false},{"uuid":"4e57f860-b248-11eb-97ed-0242ac140003","id":3094430,"name":"arrow-down-right","svg":"svg/thinline/arrow-down-right.svg","category":"Arrows","style":"Thinline","tags":["lower-right-arrow","lower-right","arrow","lower","down-arrow","direction","arrow-down-right"],"code":59470,"unicode":"e84e","pro":false},{"uuid":"4e5967b0-b248-11eb-b06a-0242ac140003","id":3094454,"name":"arrow-up-left","svg":"svg/thinline/arrow-up-left.svg","category":"Arrows","style":"Thinline","tags":["upper-left-arrow","upper-left","upper-arrow","arrow","direction","arrow-up-left"],"code":59464,"unicode":"e848","pro":false},{"uuid":"4e597780-b248-11eb-af10-0242ac140003","id":3094455,"name":"arrow-up-right","svg":"svg/thinline/arrow-up-right.svg","category":"Arrows","style":"Thinline","tags":["upper-right-arrow","upper-right","upper-arrow","arrow","direction","arrow-up-right"],"code":59486,"unicode":"e85e","pro":false},{"uuid":"a8ed5280-b25b-11eb-95b2-0242ac140003","id":3095301,"name":"at","svg":"svg/thinline/at.svg","category":"User Interface","style":"Thinline","tags":["address","contact","sign","email","at"],"code":59564,"unicode":"e8ac","pro":false},{"uuid":"8e756f00-b249-11eb-a60e-0242ac140003","id":3094543,"name":"bag","svg":"svg/thinline/bag.svg","category":"Business","style":"Thinline","tags":["office-bag","briefcase","portfolio","suitcase","bag"],"code":59495,"unicode":"e867","pro":false},{"uuid":"a8eee760-b25b-11eb-b089-0242ac140003","id":3095328,"name":"battery-bolt","svg":"svg/thinline/battery-bolt.svg","category":"User Interface","style":"Thinline","tags":["battery-charging","battery","charge","charging","battery-bolt"],"code":59577,"unicode":"e8b9","pro":false},{"uuid":"a8eef5b0-b25b-11eb-9db5-0242ac140003","id":3095329,"name":"battery-empty","svg":"svg/thinline/battery-empty.svg","category":"User Interface","style":"Thinline","tags":["battery","low-battery","no-battery","empty-battery","battery-empty"],"code":59524,"unicode":"e884","pro":false},{"uuid":"b92cbe40-b248-11eb-be75-0242ac140003","id":3094490,"name":"behance-alt","svg":"svg/thinline/behance-alt.svg","category":"Brand Logos","style":"Thinline","tags":["behance","logo","brand-logo","brand","behance-alt"],"code":59484,"unicode":"e85c","pro":false},{"uuid":"b92cd580-b248-11eb-b67d-0242ac140003","id":3094491,"name":"bitcoin-alt","svg":"svg/thinline/bitcoin-alt.svg","category":"Brand Logos","style":"Thinline","tags":["bitcoin","logo","brand","brand-logo","bitcoin-alt"],"code":59488,"unicode":"e860","pro":false},{"uuid":"b92ceea0-b248-11eb-b925-0242ac140003","id":3094492,"name":"blogger-alt","svg":"svg/thinline/blogger-alt.svg","category":"Brand Logos","style":"Thinline","tags":["blogger","logo","brand","brand-logo","blogger-alt"],"code":59457,"unicode":"e841","pro":false},{"uuid":"a8f65ca0-b25b-11eb-a093-0242ac140003","id":3095457,"name":"bookmark","svg":"svg/thinline/bookmark.svg","category":"User Interface","style":"Thinline","tags":["save","tag","favourite","label","bookmark"],"code":59576,"unicode":"e8b8","pro":false},{"uuid":"1ba072d0-b24c-11eb-882d-0242ac140003","id":3094601,"name":"border-alt","svg":"svg/thinline/border-alt.svg","category":"Content","style":"Thinline","tags":["border-style","style","text-format","border","border-alt"],"code":59549,"unicode":"e89d","pro":false},{"uuid":"1ba08120-b24c-11eb-a671-0242ac140003","id":3094602,"name":"border-bottom","svg":"svg/thinline/border-bottom.svg","category":"Content","style":"Thinline","tags":["bottom-border","border","border-style","text-format","border-bottom"],"code":59548,"unicode":"e89c","pro":false},{"uuid":"1b9c95f0-b24c-11eb-becf-0242ac140003","id":3094560,"name":"border-clear","svg":"svg/thinline/border-clear.svg","category":"Content","style":"Thinline","tags":["none-border","no-border","clear-border","editing-tool","border","border-clear"],"code":59502,"unicode":"e86e","pro":false},{"uuid":"1b9dcdf0-b24c-11eb-8a4a-0242ac140003","id":3094573,"name":"border-horizontal","svg":"svg/thinline/border-horizontal.svg","category":"Content","style":"Thinline","tags":["horizontal-border","border","dotted-line","border-horizontal"],"code":59507,"unicode":"e873","pro":false},{"uuid":"1b9de6a0-b24c-11eb-afec-0242ac140003","id":3094574,"name":"border-inner","svg":"svg/thinline/border-inner.svg","category":"Content","style":"Thinline","tags":["inside-border","inside","border","inner-border","border-inner"],"code":59506,"unicode":"e872","pro":false},{"uuid":"1b9e77f0-b24c-11eb-9831-0242ac140003","id":3094580,"name":"border-left","svg":"svg/thinline/border-left.svg","category":"Content","style":"Thinline","tags":["left-border","border","editing-tool","tool","formating","border-left"],"code":59513,"unicode":"e879","pro":false},{"uuid":"f586a110-b24c-11eb-a20e-0242ac140003","id":3094691,"name":"border-out","svg":"svg/thinline/border-out.svg","category":"Design Tools","style":"Thinline","tags":["outer-border","outer","border","design-tool","formating","border-out"],"code":59553,"unicode":"e8a1","pro":false},{"uuid":"1b9fe8c0-b24c-11eb-aebe-0242ac140003","id":3094595,"name":"border-top","svg":"svg/thinline/border-top.svg","category":"Content","style":"Thinline","tags":["top-border","top","border","style","editing-tool","border-top"],"code":59517,"unicode":"e87d","pro":false},{"uuid":"1ba00140-b24c-11eb-b145-0242ac140003","id":3094596,"name":"border-vertical","svg":"svg/thinline/border-vertical.svg","category":"Content","style":"Thinline","tags":["vertical-border","border","center-border","editing-tool","tool","border-vertical"],"code":59530,"unicode":"e88a","pro":false},{"uuid":"a8f07f30-b25b-11eb-9c8f-0242ac140003","id":3095355,"name":"calender","svg":"svg/thinline/calender.svg","category":"User Interface","style":"Thinline","tags":["date","month","day","planner","schedule","calender"],"code":59563,"unicode":"e8ab","pro":false},{"uuid":"8e7326f0-b249-11eb-b7d0-0242ac140003","id":3094505,"name":"chart-growth","svg":"svg/thinline/chart-growth.svg","category":"Business","style":"Thinline","tags":["bar-graph","bar-chart","graph","chart","analysis","analytics","infographic","chart-growth"],"code":59496,"unicode":"e868","pro":false},{"uuid":"8e758b40-b249-11eb-b2cc-0242ac140003","id":3094545,"name":"chart-pie","svg":"svg/thinline/chart-pie.svg","category":"Business","style":"Thinline","tags":["piechart","chart","analysis","analytics","pie-chart","statistics","chart-pie"],"code":59499,"unicode":"e86b","pro":false},{"uuid":"a8ee55f0-b25b-11eb-b20f-0242ac140003","id":3095318,"name":"check","svg":"svg/thinline/check.svg","category":"User Interface","style":"Thinline","tags":["approve","done","accept","verify","complete","success","right-tick","check"],"code":59568,"unicode":"e8b0","pro":false},{"uuid":"a8ee4650-b25b-11eb-becd-0242ac140003","id":3095317,"name":"check-circle","svg":"svg/thinline/check-circle.svg","category":"User Interface","style":"Thinline","tags":["approve","accept","verify","check","done","complete","success","right-tick","check-circle"],"code":59562,"unicode":"e8aa","pro":false},{"uuid":"a8efaa30-b25b-11eb-877e-0242ac140003","id":3095341,"name":"check-square","svg":"svg/thinline/check-square.svg","category":"User Interface","style":"Thinline","tags":["checked","ok","right","tick","tick-sign","accept","approve","checkbox","check-square"],"code":59580,"unicode":"e8bc","pro":false},{"uuid":"f584b780-b24c-11eb-ac02-0242ac140003","id":3094657,"name":"circle-layer","svg":"svg/thinline/circle-layer.svg","category":"Design Tools","style":"Thinline","tags":["circle","layers","design-tool","circle-layer"],"code":59533,"unicode":"e88d","pro":false},{"uuid":"f5369b80-a98f-11eb-a476-0242ac140003","id":3052420,"name":"circuit","svg":"svg/thinline/circuit.svg","category":"Devices","style":"Thinline","tags":["chip","microchip","microprocessor","processor","circuit"],"code":59407,"unicode":"e80f","pro":false},{"uuid":"e0cdf390-a9a7-11eb-88db-0242ac140003","id":3053611,"name":"clinic-medical","svg":"svg/thinline/clinic-medical.svg","category":"Medical","style":"Thinline","tags":["health","clinic","medical","building","covid19","clinic-medical"],"code":59413,"unicode":"e815","pro":false},{"uuid":"ec1cb4c0-a96d-11eb-b952-0242ac140003","id":3051382,"name":"clock","svg":"svg/thinline/clock.svg","category":"Time","style":"Thinline","tags":["watch","time","wall-clock","timer","clock"],"code":59396,"unicode":"e804","pro":false},{"uuid":"ec1cc330-a96d-11eb-b114-0242ac140003","id":3051383,"name":"clock-eight","svg":"svg/thinline/clock-eight.svg","category":"Time","style":"Thinline","tags":["clock","watch","time","wall-clock","timer","clock-eight"],"code":59392,"unicode":"e800","pro":false},{"uuid":"ec1cd240-a96d-11eb-a601-0242ac140003","id":3051384,"name":"clock-five","svg":"svg/thinline/clock-five.svg","category":"Time","style":"Thinline","tags":["clock","watch","time","wall-clock","timer","clock-five"],"code":59408,"unicode":"e810","pro":false},{"uuid":"ec1ce0f0-a96d-11eb-9028-0242ac140003","id":3051385,"name":"clock-nine","svg":"svg/thinline/clock-nine.svg","category":"Time","style":"Thinline","tags":["clock","watch","time","wall-clock","timer","clock-nine"],"code":59405,"unicode":"e80d","pro":false},{"uuid":"ec1c35f0-a96d-11eb-a06e-0242ac140003","id":3051374,"name":"clock-seven","svg":"svg/thinline/clock-seven.svg","category":"Time","style":"Thinline","tags":["clock","watch","time","wall-clock","timer","clock-seven"],"code":59414,"unicode":"e816","pro":false},{"uuid":"ec1c4a40-a96d-11eb-9176-0242ac140003","id":3051375,"name":"clock-ten","svg":"svg/thinline/clock-ten.svg","category":"Time","style":"Thinline","tags":["clock","watch","time","wall-clock","timer","clock-ten"],"code":59435,"unicode":"e82b","pro":false},{"uuid":"ec1c5a40-a96d-11eb-9c41-0242ac140003","id":3051376,"name":"clock-three","svg":"svg/thinline/clock-three.svg","category":"Time","style":"Thinline","tags":["clock","watch","time","wall-clock","timer","clock-three"],"code":59403,"unicode":"e80b","pro":false},{"uuid":"ec1c6960-a96d-11eb-a1e8-0242ac140003","id":3051377,"name":"clock-two","svg":"svg/thinline/clock-two.svg","category":"Time","style":"Thinline","tags":["clock","watch","time","wall-clock","timer","clock-two"],"code":59402,"unicode":"e80a","pro":false},{"uuid":"965ab2a0-a9a2-11eb-9736-0242ac140003","id":3053551,"name":"columns","svg":"svg/thinline/columns.svg","category":"Cloud And Web","style":"Thinline","tags":["web-layout","layout","window-layout","page-layout","section","grid","columns"],"code":59418,"unicode":"e81a","pro":false},{"uuid":"6548d090-ad5e-11eb-97d5-0242ac140003","id":3065566,"name":"comment-dots","svg":"svg/thinline/comment-dots.svg","category":"Chat","style":"Thinline","tags":["chat","chatting","typing","comment","message","conversation","comment-dots"],"code":59437,"unicode":"e82d","pro":false},{"uuid":"f586cc00-b24c-11eb-a339-0242ac140003","id":3094694,"name":"compress","svg":"svg/thinline/compress.svg","category":"Design Tools","style":"Thinline","tags":["resize","arrow","shrink","compress"],"code":59520,"unicode":"e880","pro":false},{"uuid":"4e58d890-b248-11eb-a446-0242ac140003","id":3094445,"name":"corner-down-left","svg":"svg/thinline/corner-down-left.svg","category":"Arrows","style":"Thinline","tags":["turn-down-left","left-down","left","arrow","corner-down-left"],"code":59451,"unicode":"e83b","pro":false},{"uuid":"4e58e750-b248-11eb-b19a-0242ac140003","id":3094446,"name":"corner-down-right","svg":"svg/thinline/corner-down-right.svg","category":"Arrows","style":"Thinline","tags":["turn-down-right","right-down","right","arrow","corner-down-right"],"code":59447,"unicode":"e837","pro":false},{"uuid":"4e58f6b0-b248-11eb-a859-0242ac140003","id":3094447,"name":"corner-left-down","svg":"svg/thinline/corner-left-down.svg","category":"Arrows","style":"Thinline","tags":["turn-left-down","turn-left","left-down","turning","direction","arrow","corner-left-down"],"code":59466,"unicode":"e84a","pro":false},{"uuid":"4e590660-b248-11eb-afcf-0242ac140003","id":3094448,"name":"corner-right-down","svg":"svg/thinline/corner-right-down.svg","category":"Arrows","style":"Thinline","tags":["turn-right-down","turn-right","right-down","turning","direction","arrow","corner-right-down"],"code":59480,"unicode":"e858","pro":false},{"uuid":"4e54fd80-b248-11eb-8ecc-0242ac140003","id":3094382,"name":"corner-up-left","svg":"svg/thinline/corner-up-left.svg","category":"Arrows","style":"Thinline","tags":["turn-up-left","turn-left","left-turn","left","arrow","direction","corner-up-left"],"code":59460,"unicode":"e844","pro":false},{"uuid":"4e5917d0-b248-11eb-9751-0242ac140003","id":3094449,"name":"corner-up-right","svg":"svg/thinline/corner-up-right.svg","category":"Arrows","style":"Thinline","tags":["turn-up-right","turn-right","right-turn","right","arrow","direction","corner-up-right"],"code":59483,"unicode":"e85b","pro":false},{"uuid":"e0cf0cb0-a9a7-11eb-87b8-0242ac140003","id":3053630,"name":"covid-19","svg":"svg/thinline/covid-19.svg","category":"Medical","style":"Thinline","tags":["no-virus","virus-free","bio-bubble","coronavirus","virus","covid19","virus-slash","covid-19"],"code":59421,"unicode":"e81d","pro":false},{"uuid":"a8f04e70-b25b-11eb-9f48-0242ac140003","id":3095352,"name":"create-dashboard","svg":"svg/thinline/create-dashboard.svg","category":"User Interface","style":"Thinline","tags":["dashboard","add-dashboard","new-dashboard","create-dashboard"],"code":59586,"unicode":"e8c2","pro":false},{"uuid":"a8ef1280-b25b-11eb-95de-0242ac140003","id":3095331,"name":"desktop-alt-slash","svg":"svg/thinline/desktop-alt-slash.svg","category":"User Interface","style":"Thinline","tags":["block-display","no-preview","no-screen","no-display","block-monitor","desktop-alt-slash"],"code":59574,"unicode":"e8b6","pro":false},{"uuid":"1b9ed780-b24c-11eb-99ec-0242ac140003","id":3094584,"name":"dialpad","svg":"svg/thinline/dialpad.svg","category":"Content","style":"Thinline","tags":["numpad","keypad","numbers","number-keys","dialpad"],"code":59518,"unicode":"e87e","pro":false},{"uuid":"4e5537d0-b248-11eb-b300-0242ac140003","id":3094386,"name":"direction","svg":"svg/thinline/direction.svg","category":"Arrows","style":"Thinline","tags":["scroll-up","scroll","up-arrow","down-arrow","slider","arrow","up","down","direction"],"code":59465,"unicode":"e849","pro":false},{"uuid":"1b9d2580-b24c-11eb-9c9c-0242ac140003","id":3094566,"name":"document-layout-center","svg":"svg/thinline/document-layout-center.svg","category":"Content","style":"Thinline","tags":["document-layout","layout","blog","article","image","document-layout-center"],"code":59503,"unicode":"e86f","pro":false},{"uuid":"1b9d3e50-b24c-11eb-9dd4-0242ac140003","id":3094567,"name":"document-layout-left","svg":"svg/thinline/document-layout-left.svg","category":"Content","style":"Thinline","tags":["document-layout","layout","blog","article","text-format","image","document-layout-left"],"code":59501,"unicode":"e86d","pro":false},{"uuid":"1b9d56a0-b24c-11eb-b492-0242ac140003","id":3094568,"name":"document-layout-right","svg":"svg/thinline/document-layout-right.svg","category":"Content","style":"Thinline","tags":["document-layout","layout","left-justify","left-alignment","blog","article","image","document-layout-right"],"code":59504,"unicode":"e870","pro":false},{"uuid":"4e54df60-b248-11eb-a7f5-0242ac140003","id":3094380,"name":"download-alt","svg":"svg/thinline/download-alt.svg","category":"Arrows","style":"Thinline","tags":["download","down-arrow","arrow","save","save-data","store-data","download-alt"],"code":59469,"unicode":"e84d","pro":false},{"uuid":"b92b0060-b248-11eb-83aa-0242ac140003","id":3094474,"name":"dropbox","svg":"svg/thinline/dropbox.svg","category":"Brand Logos","style":"Thinline","tags":["logo","brand","storage","data-storage","dropbox"],"code":59479,"unicode":"e857","pro":false},{"uuid":"a8f2f6c0-b25b-11eb-bd10-0242ac140003","id":3095397,"name":"ellipsis-h","svg":"svg/thinline/ellipsis-h.svg","category":"User Interface","style":"Thinline","tags":["menu","more","show-more","options","ellipsis-h"],"code":59599,"unicode":"e8cf","pro":false},{"uuid":"a8f30620-b25b-11eb-a8a8-0242ac140003","id":3095398,"name":"ellipsis-v","svg":"svg/thinline/ellipsis-v.svg","category":"User Interface","style":"Thinline","tags":["menu","more","show-more","options","three-dots","ellipsis-v"],"code":59603,"unicode":"e8d3","pro":false},{"uuid":"a8f0cac0-b25b-11eb-902a-0242ac140003","id":3095360,"name":"exclamation-circle","svg":"svg/thinline/exclamation-circle.svg","category":"User Interface","style":"Thinline","tags":["exclamation-mark","alert","wrong","exclamination","error","exclamation-circle"],"code":59588,"unicode":"e8c4","pro":false},{"uuid":"a8f0b960-b25b-11eb-a9a2-0242ac140003","id":3095359,"name":"exclamation-octagon","svg":"svg/thinline/exclamation-octagon.svg","category":"User Interface","style":"Thinline","tags":["exclamation-mark","alert","warning","error","exclamation-octagon"],"code":59585,"unicode":"e8c1","pro":false},{"uuid":"a8f0ab20-b25b-11eb-9b61-0242ac140003","id":3095358,"name":"exclamation-triangle","svg":"svg/thinline/exclamation-triangle.svg","category":"User Interface","style":"Thinline","tags":["exclamation-mark","alert","warning","error","caution","exclamation-triangle"],"code":59589,"unicode":"e8c5","pro":false},{"uuid":"b92b32a0-b248-11eb-80e9-0242ac140003","id":3094476,"name":"facebook-f","svg":"svg/thinline/facebook-f.svg","category":"Brand Logos","style":"Thinline","tags":["logo","social-media","brand","facebook-f"],"code":59452,"unicode":"e83c","pro":false},{"uuid":"b92a5500-b248-11eb-a371-0242ac140003","id":3094467,"name":"facebook-messenger-alt","svg":"svg/thinline/facebook-messenger-alt.svg","category":"Brand Logos","style":"Thinline","tags":["facebook-messenger","facebook","messenger","logo","brand","brand-logo","facebook-messenger-alt"],"code":59492,"unicode":"e864","pro":false},{"uuid":"a8f71060-b25b-11eb-bf47-0242ac140003","id":3095468,"name":"favorite","svg":"svg/thinline/favorite.svg","category":"User Interface","style":"Thinline","tags":["star","bookmark","review","rate","ratings","favorite"],"code":59602,"unicode":"e8d2","pro":false},{"uuid":"f585d820-b24c-11eb-a701-0242ac140003","id":3094677,"name":"flip-h","svg":"svg/thinline/flip-h.svg","category":"Design Tools","style":"Thinline","tags":["horizontal-flip","flip","image-flip","mirror-image","rotate","flip-h"],"code":59540,"unicode":"e894","pro":false},{"uuid":"f585e6b0-b24c-11eb-84f7-0242ac140003","id":3094678,"name":"flip-h-alt","svg":"svg/thinline/flip-h-alt.svg","category":"Design Tools","style":"Thinline","tags":["horizontal-flip","flip","image-flip","mirror-image","rotation","flip-h-alt"],"code":59538,"unicode":"e892","pro":false},{"uuid":"f5876ba0-b24c-11eb-8167-0242ac140003","id":3094705,"name":"flip-v","svg":"svg/thinline/flip-v.svg","category":"Design Tools","style":"Thinline","tags":["vertical-flip","flip","image-flip","mirror-image","edit","flip-v"],"code":59555,"unicode":"e8a3","pro":false},{"uuid":"f5877980-b24c-11eb-bb95-0242ac140003","id":3094706,"name":"flip-v-alt","svg":"svg/thinline/flip-v-alt.svg","category":"Design Tools","style":"Thinline","tags":["vertical-flip","flip","image-flip","mirror-image","edit","flip-v-alt"],"code":59550,"unicode":"e89e","pro":false},{"uuid":"b92d29e0-b248-11eb-adc2-0242ac140003","id":3094495,"name":"github-alt","svg":"svg/thinline/github-alt.svg","category":"Brand Logos","style":"Thinline","tags":["developer-tool","logo","github","brand-logo","development","github-alt"],"code":59462,"unicode":"e846","pro":false},{"uuid":"8e7511d0-b249-11eb-ae52-0242ac140003","id":3094537,"name":"gold","svg":"svg/thinline/gold.svg","category":"Business","style":"Thinline","tags":["money","finance","ingots","goldbars","gold"],"code":59463,"unicode":"e847","pro":false},{"uuid":"b92bb590-b248-11eb-acd8-0242ac140003","id":3094480,"name":"google","svg":"svg/thinline/google.svg","category":"Brand Logos","style":"Thinline","tags":["search-engine","logo","google"],"code":59468,"unicode":"e84c","pro":false},{"uuid":"b92c03e0-b248-11eb-8b85-0242ac140003","id":3094483,"name":"google-drive-alt","svg":"svg/thinline/google-drive-alt.svg","category":"Brand Logos","style":"Thinline","tags":["social-media","logo","brand","google-drive","data-storage","google-drive-alt"],"code":59494,"unicode":"e866","pro":false},{"uuid":"b92d0580-b248-11eb-949a-0242ac140003","id":3094493,"name":"google-hangouts-alt","svg":"svg/thinline/google-hangouts-alt.svg","category":"Brand Logos","style":"Thinline","tags":["brand","brand-logo","logo","google-hangouts","hangouts","google-hangouts-alt"],"code":59493,"unicode":"e865","pro":false},{"uuid":"b92b9b40-b248-11eb-8291-0242ac140003","id":3094479,"name":"google-play","svg":"svg/thinline/google-play.svg","category":"Brand Logos","style":"Thinline","tags":["play-store","store","logo","google-play"],"code":59455,"unicode":"e83f","pro":false},{"uuid":"965aa3d0-a9a2-11eb-9da8-0242ac140003","id":3053550,"name":"grid","svg":"svg/thinline/grid.svg","category":"Cloud And Web","style":"Thinline","tags":["web-layout","layout","window-layout","page-layout","section","grid"],"code":59430,"unicode":"e826","pro":false},{"uuid":"f5858090-b24c-11eb-969a-0242ac140003","id":3094671,"name":"grids","svg":"svg/thinline/grids.svg","category":"Design Tools","style":"Thinline","tags":["grid","grid-layout","layout","grids"],"code":59556,"unicode":"e8a4","pro":false},{"uuid":"1b9d6e90-b24c-11eb-b1f3-0242ac140003","id":3094569,"name":"grip-horizontal-line","svg":"svg/thinline/grip-horizontal-line.svg","category":"Content","style":"Thinline","tags":["drag-handle","grip-lines","menu","lines","grip-horizontal-line"],"code":59505,"unicode":"e871","pro":false},{"uuid":"e0ce4be0-a9a7-11eb-8272-0242ac140003","id":3053617,"name":"head-side","svg":"svg/thinline/head-side.svg","category":"Medical","style":"Thinline","tags":["man","human","face","head","covid19","head-side"],"code":59416,"unicode":"e818","pro":false},{"uuid":"e0d004b0-a9a7-11eb-8b89-0242ac140003","id":3053646,"name":"head-side-cough","svg":"svg/thinline/head-side-cough.svg","category":"Medical","style":"Thinline","tags":["face","dieases","covid19","cough","coronavirus","head-side-cough"],"code":59440,"unicode":"e830","pro":false},{"uuid":"e0ce5a30-a9a7-11eb-b992-0242ac140003","id":3053618,"name":"head-side-mask","svg":"svg/thinline/head-side-mask.svg","category":"Medical","style":"Thinline","tags":["mask","face-mask","hygiene","facemask","covid19","head-side-mask"],"code":59394,"unicode":"e802","pro":false},{"uuid":"a8eeba60-b25b-11eb-b4df-0242ac140003","id":3095325,"name":"history","svg":"svg/thinline/history.svg","category":"User Interface","style":"Thinline","tags":["backup","restore","revert","history"],"code":59575,"unicode":"e8b7","pro":false},{"uuid":"a8f15e60-b25b-11eb-bd4c-0242ac140003","id":3095370,"name":"history-alt","svg":"svg/thinline/history-alt.svg","category":"User Interface","style":"Thinline","tags":["history","backup","restore","old-data","revert","history-alt"],"code":59601,"unicode":"e8d1","pro":false},{"uuid":"f5862ed0-b24c-11eb-a8cb-0242ac140003","id":3094683,"name":"horizontal-align-left","svg":"svg/thinline/horizontal-align-left.svg","category":"Design Tools","style":"Thinline","tags":["left-align","left-alignment","align","alignment","horizontal-align-left"],"code":59543,"unicode":"e897","pro":false},{"uuid":"e0cfe7c0-a9a7-11eb-8f04-0242ac140003","id":3053644,"name":"hospital","svg":"svg/thinline/hospital.svg","category":"Medical","style":"Thinline","tags":["care","mediacl","healthcare","building","covid19","coronavirus","hospital"],"code":59432,"unicode":"e828","pro":false},{"uuid":"e0ce1f50-a9a7-11eb-8561-0242ac140003","id":3053614,"name":"hospital-square-sign","svg":"svg/thinline/hospital-square-sign.svg","category":"Medical","style":"Thinline","tags":["hospital-sign","medical-sign","h-sign","covid19","hospital-square-sign"],"code":59431,"unicode":"e827","pro":false},{"uuid":"e0ce2ea0-a9a7-11eb-a48a-0242ac140003","id":3053615,"name":"hospital-symbol","svg":"svg/thinline/hospital-symbol.svg","category":"Medical","style":"Thinline","tags":["hospital-sign","medical-sign","h-sign","medical","covid19","hospital-symbol"],"code":59419,"unicode":"e81b","pro":false},{"uuid":"e0cf6b80-a9a7-11eb-ab1e-0242ac140003","id":3053636,"name":"house-user","svg":"svg/thinline/house-user.svg","category":"Medical","style":"Thinline","tags":["stay-home","home","work-from-home","wfh","house","stay-safe","covid19","stay-at-home","house-user"],"code":59441,"unicode":"e831","pro":false},{"uuid":"b92a6ea0-b248-11eb-8922-0242ac140003","id":3094468,"name":"html3-alt","svg":"svg/thinline/html3-alt.svg","category":"Brand Logos","style":"Thinline","tags":["html","logo","brand-logo","brand","html3-alt"],"code":59472,"unicode":"e850","pro":false},{"uuid":"a3853450-b24f-11eb-9e6b-0242ac140003","id":3094939,"name":"image-v","svg":"svg/thinline/image-v.svg","category":"Multimedia","style":"Thinline","tags":["image","picture","photo","gallery","image-v"],"code":59545,"unicode":"e899","pro":false},{"uuid":"b92a8080-b248-11eb-8ec1-0242ac140003","id":3094469,"name":"intercom-alt","svg":"svg/thinline/intercom-alt.svg","category":"Brand Logos","style":"Thinline","tags":["intercom","logo","brand","brand-logo","intercom-alt"],"code":59467,"unicode":"e84b","pro":false},{"uuid":"a8f1e740-b25b-11eb-ba9d-0242ac140003","id":3095379,"name":"key-skeleton","svg":"svg/thinline/key-skeleton.svg","category":"User Interface","style":"Thinline","tags":["key","password","lock","secure","key-skeleton"],"code":59591,"unicode":"e8c7","pro":false},{"uuid":"a8f1fab0-b25b-11eb-ad57-0242ac140003","id":3095380,"name":"key-skeleton-alt","svg":"svg/thinline/key-skeleton-alt.svg","category":"User Interface","style":"Thinline","tags":["key","password","lock","secure","key-skeleton-alt"],"code":59595,"unicode":"e8cb","pro":false},{"uuid":"f535c920-a98f-11eb-9588-0242ac140003","id":3052406,"name":"laptop","svg":"svg/thinline/laptop.svg","category":"Devices","style":"Thinline","tags":["computer","screen","display","monitor","device","laptop"],"code":59393,"unicode":"e801","pro":false},{"uuid":"a8f23600-b25b-11eb-b91d-0242ac140003","id":3095384,"name":"layer-group","svg":"svg/thinline/layer-group.svg","category":"User Interface","style":"Thinline","tags":["layer","layers","stack","arrange","layer-group"],"code":59571,"unicode":"e8b3","pro":false},{"uuid":"f584d630-b24c-11eb-8e02-0242ac140003","id":3094659,"name":"layers-alt","svg":"svg/thinline/layers-alt.svg","category":"Design Tools","style":"Thinline","tags":["layers","layer","design-tool","tool","layers-alt"],"code":59535,"unicode":"e88f","pro":false},{"uuid":"1b9e2ef0-b24c-11eb-9ab8-0242ac140003","id":3094577,"name":"left-indent","svg":"svg/thinline/left-indent.svg","category":"Content","style":"Thinline","tags":["left-alignment","alignment","align","text-formating","left-indent"],"code":59509,"unicode":"e875","pro":false},{"uuid":"1b9e8f30-b24c-11eb-b990-0242ac140003","id":3094581,"name":"left-indent-alt","svg":"svg/thinline/left-indent-alt.svg","category":"Content","style":"Thinline","tags":["left-indent","indent","editing-tool","left","alignment","align","left-indent-alt"],"code":59525,"unicode":"e885","pro":false},{"uuid":"f5856490-b24c-11eb-9daf-0242ac140003","id":3094669,"name":"line-spacing","svg":"svg/thinline/line-spacing.svg","category":"Design Tools","style":"Thinline","tags":["format-line","styling","text-styling","edit-text","line-spacing"],"code":59544,"unicode":"e898","pro":false},{"uuid":"a8ef6a10-b25b-11eb-9e14-0242ac140003","id":3095337,"name":"link-broken","svg":"svg/thinline/link-broken.svg","category":"User Interface","style":"Thinline","tags":["broken-chain","broken-link","disconnect","link","link-broken"],"code":59581,"unicode":"e8bd","pro":false},{"uuid":"a8f27060-b25b-11eb-bda0-0242ac140003","id":3095388,"name":"link-h","svg":"svg/thinline/link-h.svg","category":"User Interface","style":"Thinline","tags":["link","chain","hyperlink","weblink","attachment","attach","link-h"],"code":59604,"unicode":"e8d4","pro":false},{"uuid":"b92a97e0-b248-11eb-a599-0242ac140003","id":3094470,"name":"linkedin-alt","svg":"svg/thinline/linkedin-alt.svg","category":"Brand Logos","style":"Thinline","tags":["linkedin","logo","social-media","brand","linkedin-alt"],"code":59449,"unicode":"e839","pro":false},{"uuid":"1b9ec030-b24c-11eb-96d4-0242ac140003","id":3094583,"name":"list-ui-alt","svg":"svg/thinline/list-ui-alt.svg","category":"Content","style":"Thinline","tags":["list","menu","bullet","list-ui-alt"],"code":59527,"unicode":"e887","pro":false},{"uuid":"1b9ea6d0-b24c-11eb-8aaa-0242ac140003","id":3094582,"name":"list-ul","svg":"svg/thinline/list-ul.svg","category":"Content","style":"Thinline","tags":["list-format","list","menu","checklist","bullets","list-ul"],"code":59526,"unicode":"e886","pro":false},{"uuid":"b92b1a40-b248-11eb-9f27-0242ac140003","id":3094475,"name":"master-card","svg":"svg/thinline/master-card.svg","category":"Brand Logos","style":"Thinline","tags":["logo","payment-card","payment-method","payment","transaction","card","master-card"],"code":59481,"unicode":"e859","pro":false},{"uuid":"e0ce9470-a9a7-11eb-9efe-0242ac140003","id":3053622,"name":"microscope","svg":"svg/thinline/microscope.svg","category":"Medical","style":"Thinline","tags":["medical-equipment","medical","equipment","tool","covid19","microscope"],"code":59426,"unicode":"e822","pro":false},{"uuid":"a8f322a0-b25b-11eb-8748-0242ac140003","id":3095400,"name":"minus-square-full","svg":"svg/thinline/minus-square-full.svg","category":"User Interface","style":"Thinline","tags":["minus","minimize","close","delete","remove","minus-square-full"],"code":59570,"unicode":"e8b2","pro":false},{"uuid":"f5366fa0-a98f-11eb-8dc5-0242ac140003","id":3052417,"name":"modem","svg":"svg/thinline/modem.svg","category":"Devices","style":"Thinline","tags":["router","wifi-router","wifi","device","internet-device","modem"],"code":59428,"unicode":"e824","pro":false},{"uuid":"f536b900-a98f-11eb-a44c-0242ac140003","id":3052422,"name":"mouse-alt-2","svg":"svg/thinline/mouse-alt-2.svg","category":"Devices","style":"Thinline","tags":["computer-mouse","input-device","click","hardware","mouse","mouse-alt-2"],"code":59397,"unicode":"e805","pro":false},{"uuid":"a8efd700-b25b-11eb-91a9-0242ac140003","id":3095344,"name":"multiply","svg":"svg/thinline/multiply.svg","category":"User Interface","style":"Thinline","tags":["close","delete","maths-sign","multiplication","multiply"],"code":59583,"unicode":"e8bf","pro":false},{"uuid":"f5869190-b24c-11eb-bd70-0242ac140003","id":3094690,"name":"object-group","svg":"svg/thinline/object-group.svg","category":"Design Tools","style":"Thinline","tags":["object","design-tool","tool","group-object","object-group"],"code":59521,"unicode":"e881","pro":false},{"uuid":"f5872f00-b24c-11eb-a085-0242ac140003","id":3094701,"name":"object-ungroup","svg":"svg/thinline/object-ungroup.svg","category":"Design Tools","style":"Thinline","tags":["ungroup","design-tool","tool","object-ungroup"],"code":59551,"unicode":"e89f","pro":false},{"uuid":"b92ae650-b248-11eb-98cf-0242ac140003","id":3094473,"name":"opera-alt","svg":"svg/thinline/opera-alt.svg","category":"Brand Logos","style":"Thinline","tags":["logo","brand-logo","opera-mini","brand","opera","browser","opera-alt"],"code":59461,"unicode":"e845","pro":false},{"uuid":"a8ee8180-b25b-11eb-8a58-0242ac140003","id":3095321,"name":"paperclip","svg":"svg/thinline/paperclip.svg","category":"User Interface","style":"Thinline","tags":["attach","attachment","clip","paper-clip","stationery","paperclip"],"code":59573,"unicode":"e8b5","pro":false},{"uuid":"1b9f3aa0-b24c-11eb-a063-0242ac140003","id":3094588,"name":"paragraph","svg":"svg/thinline/paragraph.svg","category":"Content","style":"Thinline","tags":["short-text","editing-tool","formating-text","text","text-formating","paragraph"],"code":59515,"unicode":"e87b","pro":false},{"uuid":"b92b7db0-b248-11eb-9d49-0242ac140003","id":3094478,"name":"paypal","svg":"svg/thinline/paypal.svg","category":"Brand Logos","style":"Thinline","tags":["payment-gateway","logo","payment","transaction","paypal"],"code":59446,"unicode":"e836","pro":false},{"uuid":"a13f69d0-a96d-11eb-b6aa-0242ac140003","id":3051372,"name":"pentagon","svg":"svg/thinline/pentagon.svg","category":"Shape","style":"Thinline","tags":["shape","design","tool","pentagon"],"code":59422,"unicode":"e81e","pro":false},{"uuid":"a13f7a00-a96d-11eb-b5c2-0242ac140003","id":3051373,"name":"polygon","svg":"svg/thinline/polygon.svg","category":"Shape","style":"Thinline","tags":["shape","design","tool","polygon"],"code":59420,"unicode":"e81c","pro":false},{"uuid":"a38aa610-b24f-11eb-9da3-0242ac140003","id":3094982,"name":"previous","svg":"svg/thinline/previous.svg","category":"Multimedia","style":"Thinline","tags":["back","media-control","multimedia","control","media","previous"],"code":59561,"unicode":"e8a9","pro":false},{"uuid":"f535e9d0-a98f-11eb-88f1-0242ac140003","id":3052408,"name":"print","svg":"svg/thinline/print.svg","category":"Devices","style":"Thinline","tags":["printer","page","print-page","device","print"],"code":59399,"unicode":"e807","pro":false},{"uuid":"a8f616b0-b25b-11eb-ad09-0242ac140003","id":3095452,"name":"process","svg":"svg/thinline/process.svg","category":"User Interface","style":"Thinline","tags":["repeat","reload","refresh","loading","process"],"code":59572,"unicode":"e8b4","pro":false},{"uuid":"a8f12140-b25b-11eb-9698-0242ac140003","id":3095366,"name":"pump","svg":"svg/thinline/pump.svg","category":"User Interface","style":"Thinline","tags":["fuel","petrol-pump","gas-pump","pump"],"code":59587,"unicode":"e8c3","pro":false},{"uuid":"a8f14eb0-b25b-11eb-ad8d-0242ac140003","id":3095369,"name":"question-circle","svg":"svg/thinline/question-circle.svg","category":"User Interface","style":"Thinline","tags":["help","question","questionmark","ask","info","question-circle"],"code":59592,"unicode":"e8c8","pro":false},{"uuid":"a387d440-b24f-11eb-a046-0242ac140003","id":3094961,"name":"record-audio","svg":"svg/thinline/record-audio.svg","category":"Multimedia","style":"Thinline","tags":["recording","record","audio","voice-recording","record-audio"],"code":59560,"unicode":"e8a8","pro":false},{"uuid":"b92a3880-b248-11eb-9635-0242ac140003","id":3094466,"name":"reddit-alien-alt","svg":"svg/thinline/reddit-alien-alt.svg","category":"Brand Logos","style":"Thinline","tags":["development","logo","brand-logo","reddit-alien-alt"],"code":59491,"unicode":"e863","pro":false},{"uuid":"a8f5dd30-b25b-11eb-873d-0242ac140003","id":3095448,"name":"redo","svg":"svg/thinline/redo.svg","category":"User Interface","style":"Thinline","tags":["reload","refresh","sync","synchronization","recycle","redo"],"code":59596,"unicode":"e8cc","pro":false},{"uuid":"a8f5ebe0-b25b-11eb-82db-0242ac140003","id":3095449,"name":"refresh","svg":"svg/thinline/refresh.svg","category":"User Interface","style":"Thinline","tags":["reload","sync","synchronization","refresh"],"code":59593,"unicode":"e8c9","pro":false},{"uuid":"f5864b00-b24c-11eb-ad85-0242ac140003","id":3094685,"name":"repeat","svg":"svg/thinline/repeat.svg","category":"Design Tools","style":"Thinline","tags":["loop","retry","refresh","reload","repeat"],"code":59539,"unicode":"e893","pro":false},{"uuid":"1b9cab40-b24c-11eb-8d2a-0242ac140003","id":3094561,"name":"right-indent","svg":"svg/thinline/right-indent.svg","category":"Content","style":"Thinline","tags":["right-alignment","alignment","text-formating","editing-tool","align","right-indent"],"code":59510,"unicode":"e876","pro":false},{"uuid":"1b9f2200-b24c-11eb-b0c7-0242ac140003","id":3094587,"name":"right-indent-alt","svg":"svg/thinline/right-indent-alt.svg","category":"Content","style":"Thinline","tags":["right-indent","indent","right-alignment","text-format","right-indent-alt"],"code":59557,"unicode":"e8a5","pro":false},{"uuid":"a8f73080-b25b-11eb-b0af-0242ac140003","id":3095470,"name":"rocket","svg":"svg/thinline/rocket.svg","category":"User Interface","style":"Thinline","tags":["startup","launch","missile","new-launch","rocket"],"code":59597,"unicode":"e8cd","pro":false},{"uuid":"f586e890-b24c-11eb-b526-0242ac140003","id":3094696,"name":"ruler","svg":"svg/thinline/ruler.svg","category":"Design Tools","style":"Thinline","tags":["scale","measure","design-tool","tool","equipment","stationery","ruler"],"code":59558,"unicode":"e8a6","pro":false},{"uuid":"f584a630-b24c-11eb-af8d-0242ac140003","id":3094656,"name":"ruler-combined","svg":"svg/thinline/ruler-combined.svg","category":"Design Tools","style":"Thinline","tags":["ruler","scale","measure","design-tool","equipment","ruler-combined"],"code":59537,"unicode":"e891","pro":false},{"uuid":"e0cf9b00-a9a7-11eb-a2b6-0242ac140003","id":3053639,"name":"sanitizer","svg":"svg/thinline/sanitizer.svg","category":"Medical","style":"Thinline","tags":["alcohol-based-sanitizer","hygiene","covid","covid19","coronavirus","sanitizer"],"code":59443,"unicode":"e833","pro":false},{"uuid":"e0cfaa10-a9a7-11eb-a486-0242ac140003","id":3053640,"name":"sanitizer-alt","svg":"svg/thinline/sanitizer-alt.svg","category":"Medical","style":"Thinline","tags":["alcohol-based-sanitizer","hygiene","covid19","sanitizer","covid","coronavirus","sanitizer-alt"],"code":59415,"unicode":"e817","pro":false},{"uuid":"a38557d0-b24f-11eb-a515-0242ac140003","id":3094940,"name":"scenery","svg":"svg/thinline/scenery.svg","category":"Multimedia","style":"Thinline","tags":["image","picture","photo","gallery","scenery"],"code":59554,"unicode":"e8a2","pro":false},{"uuid":"dbc5bb00-a977-11eb-81c3-0242ac140003","id":3051505,"name":"shield","svg":"svg/thinline/shield.svg","category":"Security","style":"Thinline","tags":["secure","protection","safe","antivirus","protect","shield"],"code":59404,"unicode":"e80c","pro":false},{"uuid":"dbc57250-a977-11eb-9004-0242ac140003","id":3051500,"name":"shield-check","svg":"svg/thinline/shield-check.svg","category":"Security","style":"Thinline","tags":["shield","secured","protected","safe","antivirus","protect","shield-check"],"code":59401,"unicode":"e809","pro":false},{"uuid":"dbc5c8f0-a977-11eb-b03f-0242ac140003","id":3051506,"name":"shield-exclamation","svg":"svg/thinline/shield-exclamation.svg","category":"Security","style":"Thinline","tags":["security-warning","warning","no-safety","no-security","shield-exclamation"],"code":59398,"unicode":"e806","pro":false},{"uuid":"e0cf3ba0-a9a7-11eb-9bc4-0242ac140003","id":3053633,"name":"shield-plus","svg":"svg/thinline/shield-plus.svg","category":"Medical","style":"Thinline","tags":["security","medical-insurance","insurance","safety","covid19","health","life-insurance","shield-plus"],"code":59423,"unicode":"e81f","pro":false},{"uuid":"dbc56010-a977-11eb-a693-0242ac140003","id":3051499,"name":"shield-question","svg":"svg/thinline/shield-question.svg","category":"Security","style":"Thinline","tags":["safety-help","security-info","protected","shield","secure","safe","shield-question"],"code":59417,"unicode":"e819","pro":false},{"uuid":"dbc62fa0-a977-11eb-84e6-0242ac140003","id":3051513,"name":"shield-slash","svg":"svg/thinline/shield-slash.svg","category":"Security","style":"Thinline","tags":["not-protected","unsecure","unsafe","shield","no-protection","shield-slash"],"code":59442,"unicode":"e832","pro":false},{"uuid":"a8f37ae0-b25b-11eb-a412-0242ac140003","id":3095406,"name":"signal-alt","svg":"svg/thinline/signal-alt.svg","category":"User Interface","style":"Thinline","tags":["network","phone-signal","phone-network","signal","signal-alt"],"code":59590,"unicode":"e8c6","pro":false},{"uuid":"8e7309b0-b249-11eb-9bed-0242ac140003","id":3094503,"name":"signal-alt-3","svg":"svg/thinline/signal-alt-3.svg","category":"Business","style":"Thinline","tags":["bar-chart","graph","statistics","infographics","analysis","analytics","bar-graph","signal-alt-3"],"code":59500,"unicode":"e86c","pro":false},{"uuid":"a8ebbe80-b25b-11eb-a7d8-0242ac140003","id":3095274,"name":"signout","svg":"svg/thinline/signout.svg","category":"User Interface","style":"Thinline","tags":["logout","log-out","out","sign-out","exit","signout"],"code":59523,"unicode":"e883","pro":false},{"uuid":"a8efc7d0-b25b-11eb-94bf-0242ac140003","id":3095343,"name":"sim-card","svg":"svg/thinline/sim-card.svg","category":"User Interface","style":"Thinline","tags":["chip","card","circuit","sim","sim-card"],"code":59582,"unicode":"e8be","pro":false},{"uuid":"b92bcf80-b248-11eb-ae6d-0242ac140003","id":3094481,"name":"skype-alt","svg":"svg/thinline/skype-alt.svg","category":"Brand Logos","style":"Thinline","tags":["skype","logo","brand","social-media","skype-alt"],"code":59450,"unicode":"e83a","pro":false},{"uuid":"b92d1a40-b248-11eb-846a-0242ac140003","id":3094494,"name":"slack-alt","svg":"svg/thinline/slack-alt.svg","category":"Brand Logos","style":"Thinline","tags":["brand","logo","brand-logo","slack","slack-alt"],"code":59456,"unicode":"e840","pro":false},{"uuid":"b92be930-b248-11eb-9750-0242ac140003","id":3094482,"name":"snapchat-alt","svg":"svg/thinline/snapchat-alt.svg","category":"Brand Logos","style":"Thinline","tags":["snapchat","logo","brand","brand-logo","snapchat-alt"],"code":59444,"unicode":"e834","pro":false},{"uuid":"e0cf49f0-a9a7-11eb-8e9f-0242ac140003","id":3053634,"name":"social-distancing","svg":"svg/thinline/social-distancing.svg","category":"Medical","style":"Thinline","tags":["social-distance","avoid-crowd","avoid-public","covid19","public","social-distancing"],"code":59412,"unicode":"e814","pro":false},{"uuid":"a8f6d230-b25b-11eb-bad1-0242ac140003","id":3095465,"name":"space-key","svg":"svg/thinline/space-key.svg","category":"User Interface","style":"Thinline","tags":["space-bar","keyboard","keys","space","space-key"],"code":59578,"unicode":"e8ba","pro":false},{"uuid":"f5872170-b24c-11eb-af65-0242ac140003","id":3094700,"name":"square-full","svg":"svg/thinline/square-full.svg","category":"Design Tools","style":"Thinline","tags":["uncheck","checkbox","box","square","shape","square-full"],"code":59536,"unicode":"e890","pro":false},{"uuid":"a13f4bc0-a96d-11eb-ba1b-0242ac140003","id":3051370,"name":"star","svg":"svg/thinline/star.svg","category":"Shape","style":"Thinline","tags":["star-shape","favorite","bookmark","rate","ratings","review","feedback","star"],"code":59433,"unicode":"e829","pro":false},{"uuid":"a8f720a0-b25b-11eb-9e40-0242ac140003","id":3095469,"name":"star-half-alt","svg":"svg/thinline/star-half-alt.svg","category":"User Interface","style":"Thinline","tags":["star","half-star","ratings","rate","half-ratings","star-half-alt"],"code":59579,"unicode":"e8bb","pro":false},{"uuid":"a38684c0-b24f-11eb-889e-0242ac140003","id":3094949,"name":"step-forward","svg":"svg/thinline/step-forward.svg","category":"Multimedia","style":"Thinline","tags":["next","media-control","control","media","multimedia","function","step-forward"],"code":59552,"unicode":"e8a0","pro":false},{"uuid":"e0ce77f0-a9a7-11eb-b914-0242ac140003","id":3053620,"name":"stethoscope","svg":"svg/thinline/stethoscope.svg","category":"Medical","style":"Thinline","tags":["medical-equipment","equipment","tool","mediacl","covid19","stethoscope"],"code":59438,"unicode":"e82e","pro":false},{"uuid":"e0ce6850-a9a7-11eb-aa93-0242ac140003","id":3053619,"name":"stethoscope-alt","svg":"svg/thinline/stethoscope-alt.svg","category":"Medical","style":"Thinline","tags":["medical-equipment","equipment","medical","stethoscope","covid19","stethoscope-alt"],"code":59409,"unicode":"e811","pro":false},{"uuid":"ec1ca5b0-a96d-11eb-b9fd-0242ac140003","id":3051381,"name":"stopwatch","svg":"svg/thinline/stopwatch.svg","category":"Time","style":"Thinline","tags":["timer","timing","watch","device","stopwatch"],"code":59395,"unicode":"e803","pro":false},{"uuid":"e0cfb8c0-a9a7-11eb-a3b7-0242ac140003","id":3053641,"name":"store-slash","svg":"svg/thinline/store-slash.svg","category":"Medical","style":"Thinline","tags":["avoid-shopping","avoid-store","shop","covid19","avoid-public-place","public-place","store-slash"],"code":59411,"unicode":"e813","pro":false},{"uuid":"1b9e4670-b24c-11eb-b7bf-0242ac140003","id":3094578,"name":"subject","svg":"svg/thinline/subject.svg","category":"Content","style":"Thinline","tags":["left-alignment","left-align","alignment","text-formating","align-left","subject"],"code":59508,"unicode":"e874","pro":false},{"uuid":"a8f77d40-b25b-11eb-8771-0242ac140003","id":3095475,"name":"sync-exclamation","svg":"svg/thinline/sync-exclamation.svg","category":"User Interface","style":"Thinline","tags":["sync-error","reload-error","synchronize-warning","error","exclamation-mark","sync-exclamation"],"code":59605,"unicode":"e8d5","pro":false},{"uuid":"a8f76ba0-b25b-11eb-aa8d-0242ac140003","id":3095474,"name":"sync-slash","svg":"svg/thinline/sync-slash.svg","category":"User Interface","style":"Thinline","tags":["sync-cancel","sync","stop-synchronize","no-synchronize","synchronize","sync-slash"],"code":59600,"unicode":"e8d0","pro":false},{"uuid":"f584c740-b24c-11eb-9d3d-0242ac140003","id":3094658,"name":"table","svg":"svg/thinline/table.svg","category":"Design Tools","style":"Thinline","tags":["grid","tiles","design-tool","th","table"],"code":59534,"unicode":"e88e","pro":false},{"uuid":"b92c1dc0-b248-11eb-8422-0242ac140003","id":3094484,"name":"telegram-alt","svg":"svg/thinline/telegram-alt.svg","category":"Brand Logos","style":"Thinline","tags":["telegram","messaging-app","app","logo","brand","social-media","telegram-plane","telegram-alt"],"code":59497,"unicode":"e869","pro":false},{"uuid":"f5859d40-b24c-11eb-95b8-0242ac140003","id":3094673,"name":"th","svg":"svg/thinline/th.svg","category":"Design Tools","style":"Thinline","tags":["grid","web-layout","layout","th"],"code":59541,"unicode":"e895","pro":false},{"uuid":"f587b850-b24c-11eb-9097-0242ac140003","id":3094710,"name":"th-large","svg":"svg/thinline/th-large.svg","category":"Design Tools","style":"Thinline","tags":["all-border","border","full-border","th-large"],"code":59547,"unicode":"e89b","pro":false},{"uuid":"a8eba010-b25b-11eb-9816-0242ac140003","id":3095272,"name":"times-circle","svg":"svg/thinline/times-circle.svg","category":"User Interface","style":"Thinline","tags":["close","cancel","delete","cross","remove","times-circle"],"code":59522,"unicode":"e882","pro":false},{"uuid":"a8ec2460-b25b-11eb-a432-0242ac140003","id":3095281,"name":"toggle-off","svg":"svg/thinline/toggle-off.svg","category":"User Interface","style":"Thinline","tags":["toggle","on","off","switch","on-off","enable","disable","toggle-off"],"code":59566,"unicode":"e8ae","pro":false},{"uuid":"a8ec34f0-b25b-11eb-a81f-0242ac140003","id":3095282,"name":"toggle-on","svg":"svg/thinline/toggle-on.svg","category":"User Interface","style":"Thinline","tags":["toggle","on","off","switch","on-off","enable","disable","toggle-on"],"code":59567,"unicode":"e8af","pro":false},{"uuid":"e0cde500-a9a7-11eb-bc63-0242ac140003","id":3053610,"name":"toilet-paper","svg":"svg/thinline/toilet-paper.svg","category":"Medical","style":"Thinline","tags":["tissue-paper","tissue-roll","tissue","hygiene","covid19","precaution","toilet-paper"],"code":59436,"unicode":"e82c","pro":false},{"uuid":"a8ec4330-b25b-11eb-bf16-0242ac140003","id":3095283,"name":"traffic-light","svg":"svg/thinline/traffic-light.svg","category":"User Interface","style":"Thinline","tags":["traffic-signal","signal-light","light","red","green","traffic","yellow","traffic-light"],"code":59565,"unicode":"e8ad","pro":false},{"uuid":"a13ee390-a96d-11eb-b960-0242ac140003","id":3051365,"name":"triangle","svg":"svg/thinline/triangle.svg","category":"Shape","style":"Thinline","tags":["shape","design","tool","triangle"],"code":59425,"unicode":"e821","pro":false},{"uuid":"b92c3860-b248-11eb-8bd2-0242ac140003","id":3094485,"name":"tumblr-alt","svg":"svg/thinline/tumblr-alt.svg","category":"Brand Logos","style":"Thinline","tags":["tumblr","logo","brand-logo","brand","tumblr-alt"],"code":59454,"unicode":"e83e","pro":false},{"uuid":"b92c5250-b248-11eb-b0ad-0242ac140003","id":3094486,"name":"twitter-alt","svg":"svg/thinline/twitter-alt.svg","category":"Brand Logos","style":"Thinline","tags":["twitter","logo","brand-logo","brand","twitter-alt"],"code":59448,"unicode":"e838","pro":false},{"uuid":"a8f5a290-b25b-11eb-9072-0242ac140003","id":3095444,"name":"umbrella","svg":"svg/thinline/umbrella.svg","category":"User Interface","style":"Thinline","tags":["rain-protection","protection","equipment","umbrella"],"code":59569,"unicode":"e8b1","pro":false},{"uuid":"4e5937a0-b248-11eb-b491-0242ac140003","id":3094451,"name":"upload-alt","svg":"svg/thinline/upload-alt.svg","category":"Arrows","style":"Thinline","tags":["upload","up-arrow","arrow","data","upload-data","upload-alt"],"code":59485,"unicode":"e85d","pro":false},{"uuid":"e0cf5b10-a9a7-11eb-9ee5-0242ac140003","id":3053635,"name":"user-arrows","svg":"svg/thinline/user-arrows.svg","category":"Medical","style":"Thinline","tags":["social-distance","distance","avoid-crowd","avoid-public","social-distancing","covid19","user-arrows"],"code":59406,"unicode":"e80e","pro":false},{"uuid":"f58704c0-b24c-11eb-9d4c-0242ac140003","id":3094698,"name":"vector-square","svg":"svg/thinline/vector-square.svg","category":"Design Tools","style":"Thinline","tags":["transform-tool","free-transform","design-tool","tool","vector-square"],"code":59546,"unicode":"e89a","pro":false},{"uuid":"f5871380-b24c-11eb-a218-0242ac140003","id":3094699,"name":"vector-square-alt","svg":"svg/thinline/vector-square-alt.svg","category":"Design Tools","style":"Thinline","tags":["transform-tool","free-transform","design-tool","tool","vector-square-alt"],"code":59519,"unicode":"e87f","pro":false},{"uuid":"b92c6d40-b248-11eb-bdbd-0242ac140003","id":3094487,"name":"vk-alt","svg":"svg/thinline/vk-alt.svg","category":"Brand Logos","style":"Thinline","tags":["vk","logo","brand","vk-alt"],"code":59482,"unicode":"e85a","pro":false},{"uuid":"b92c8b40-b248-11eb-b8f0-0242ac140003","id":3094488,"name":"vuejs-alt","svg":"svg/thinline/vuejs-alt.svg","category":"Brand Logos","style":"Thinline","tags":["vuejs","logo","developer-language","vuejs-alt"],"code":59459,"unicode":"e843","pro":false},{"uuid":"a8f59340-b25b-11eb-8ac7-0242ac140003","id":3095443,"name":"wallet","svg":"svg/thinline/wallet.svg","category":"User Interface","style":"Thinline","tags":["purse","holder","money","payment","transaction","wallet"],"code":59594,"unicode":"e8ca","pro":false},{"uuid":"965ac070-a9a2-11eb-81e0-0242ac140003","id":3053552,"name":"web-grid","svg":"svg/thinline/web-grid.svg","category":"Cloud And Web","style":"Thinline","tags":["web-layout","layout","window-layout","page-layout","section","grid","web-grid"],"code":59439,"unicode":"e82f","pro":false},{"uuid":"965ad1e0-a9a2-11eb-a6bf-0242ac140003","id":3053553,"name":"web-grid-alt","svg":"svg/thinline/web-grid-alt.svg","category":"Cloud And Web","style":"Thinline","tags":["web-layout","layout","window-layout","page-layout","section","grid","web-grid-alt"],"code":59400,"unicode":"e808","pro":false},{"uuid":"965ae180-a9a2-11eb-a074-0242ac140003","id":3053554,"name":"web-section","svg":"svg/thinline/web-section.svg","category":"Cloud And Web","style":"Thinline","tags":["web-layout","layout","window-layout","page-layout","section","grid","web-section"],"code":59424,"unicode":"e820","pro":false},{"uuid":"965aef60-a9a2-11eb-84b3-0242ac140003","id":3053555,"name":"web-section-alt","svg":"svg/thinline/web-section-alt.svg","category":"Cloud And Web","style":"Thinline","tags":["web-layout","layout","window-layout","page-layout","section","grid","web-section-alt"],"code":59434,"unicode":"e82a","pro":false},{"uuid":"965afe50-a9a2-11eb-94e3-0242ac140003","id":3053556,"name":"window-grid","svg":"svg/thinline/window-grid.svg","category":"Cloud And Web","style":"Thinline","tags":["web-layout","layout","window-layout","page-layout","section","grid","window-grid"],"code":59410,"unicode":"e812","pro":false},{"uuid":"965b0ca0-a9a2-11eb-b1f1-0242ac140003","id":3053557,"name":"window-maximize","svg":"svg/thinline/window-maximize.svg","category":"Cloud And Web","style":"Thinline","tags":["web-layout","layout","window-layout","page-layout","section","grid","window-maximize"],"code":59427,"unicode":"e823","pro":false},{"uuid":"965b1b60-a9a2-11eb-9efd-0242ac140003","id":3053558,"name":"window-section","svg":"svg/thinline/window-section.svg","category":"Cloud And Web","style":"Thinline","tags":["web-layout","layout","window-layout","page-layout","section","grid","window-section"],"code":59429,"unicode":"e825","pro":false},{"uuid":"1ba01860-b24c-11eb-9067-0242ac140003","id":3094597,"name":"wrap-text","svg":"svg/thinline/wrap-text.svg","category":"Content","style":"Thinline","tags":["word","wrap","text","editing-tool","tool","wrap-text"],"code":59542,"unicode":"e896","pro":false},{"uuid":"b92b5a10-b248-11eb-855f-0242ac140003","id":3094477,"name":"youtube","svg":"svg/thinline/youtube.svg","category":"Brand Logos","style":"Thinline","tags":["logo","social-media","brand","youtube"],"code":59487,"unicode":"e85f","pro":false}] \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/script/monochrome/bundle.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/script/monochrome/bundle.js new file mode 100644 index 00000000..63bcec22 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/script/monochrome/bundle.js @@ -0,0 +1,2 @@ +!function(t){var n={};function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{enumerable:!0,get:r})},e.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},e.t=function(t,n){if(1&n&&(t=e(t)),8&n)return t;if(4&n&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(e.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&n&&"string"!=typeof t)for(var o in t)e.d(r,o,function(n){return t[n]}.bind(null,o));return r},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},e.p="script/monochrome/",e(e.s=0)}([function(t,n,e){e(1),t.exports=e(2)},function(t,n,e){var r=function(t){"use strict";var n,e=Object.prototype,r=e.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",a=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function u(t,n,e,r){var o=n&&n.prototype instanceof p?n:p,i=Object.create(o.prototype),a=new k(r||[]);return i._invoke=function(t,n,e){var r=l;return function(o,i){if(r===h)throw new Error("Generator is already running");if(r===m){if("throw"===o)throw i;return S()}for(e.method=o,e.arg=i;;){var a=e.delegate;if(a){var c=O(a,e);if(c){if(c===d)continue;return c}}if("next"===e.method)e.sent=e._sent=e.arg;else if("throw"===e.method){if(r===l)throw r=m,e.arg;e.dispatchException(e.arg)}else"return"===e.method&&e.abrupt("return",e.arg);r=h;var u=s(t,n,e);if("normal"===u.type){if(r=e.done?m:f,u.arg===d)continue;return{value:u.arg,done:e.done}}"throw"===u.type&&(r=m,e.method="throw",e.arg=u.arg)}}}(t,e,a),i}function s(t,n,e){try{return{type:"normal",arg:t.call(n,e)}}catch(t){return{type:"throw",arg:t}}}t.wrap=u;var l="suspendedStart",f="suspendedYield",h="executing",m="completed",d={};function p(){}function y(){}function v(){}var g={};g[i]=function(){return this};var w=Object.getPrototypeOf,L=w&&w(w(T([])));L&&L!==e&&r.call(L,i)&&(g=L);var E=v.prototype=p.prototype=Object.create(g);function b(t){["next","throw","return"].forEach((function(n){t[n]=function(t){return this._invoke(n,t)}}))}function x(t){var n;this._invoke=function(e,o){function i(){return new Promise((function(n,i){!function n(e,o,i,a){var c=s(t[e],t,o);if("throw"!==c.type){var u=c.arg,l=u.value;return l&&"object"==typeof l&&r.call(l,"__await")?Promise.resolve(l.__await).then((function(t){n("next",t,i,a)}),(function(t){n("throw",t,i,a)})):Promise.resolve(l).then((function(t){u.value=t,i(u)}),(function(t){return n("throw",t,i,a)}))}a(c.arg)}(e,o,n,i)}))}return n=n?n.then(i,i):i()}}function O(t,e){var r=t.iterator[e.method];if(r===n){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=n,O(t,e),"throw"===e.method))return d;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return d}var o=s(r,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,d;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=n),e.delegate=null,d):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,d)}function _(t){var n={tryLoc:t[0]};1 in t&&(n.catchLoc=t[1]),2 in t&&(n.finallyLoc=t[2],n.afterLoc=t[3]),this.tryEntries.push(n)}function N(t){var n=t.completion||{};n.type="normal",delete n.arg,t.completion=n}function k(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(_,this),this.reset(!0)}function T(t){if(t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,a=function e(){for(;++o=0;--i){var a=this.tryEntries[i],c=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var u=r.call(a,"catchLoc"),s=r.call(a,"finallyLoc");if(u&&s){if(this.prev=0;--e){var o=this.tryEntries[e];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--n){var e=this.tryEntries[n];if(e.finallyLoc===t)return this.complete(e.completion,e.afterLoc),N(e),d}},catch:function(t){for(var n=this.tryEntries.length-1;n>=0;--n){var e=this.tryEntries[n];if(e.tryLoc===t){var r=e.completion;if("throw"===r.type){var o=r.arg;N(e)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:T(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=n),d}},t}(t.exports);try{regeneratorRuntime=r}catch(t){Function("r","regeneratorRuntime = r")(r)}},function(t,n,e){var r="https://unicons.iconscout.com/".concat("release","/").concat("v4.0.8","/svg/monochrome/");window.Unicons=window.Unicons||{},window.Unicons.DEBUG=window.Unicons.DEBUG||!1;var o=function(t){fetch("".concat(r).concat(t,".svg")).then((function(t){return t.text()})).then((function(n){return i(t,n)}))},i=function(t,n){for(var e=document.getElementsByClassName("".concat("uim-").concat(t));e.length>0;){var o=e[0],i=document.createElement("span");i.innerHTML=n,i.classList.add("uim-svg"),i.firstChild.setAttribute("width","1em"),i.style.cssText=o.style.cssText,o.classList.contains("uim-white")&&(i.style.mask="url(".concat(r).concat(t,".svg)"),i.style.webkitMask="url(".concat(r).concat(t,".svg)"),i.style.background="white"),o.replaceWith(i)}},a=function(){var t=document.getElementsByClassName("uim"),n=[];window.Unicons.DEBUG&&console.log("Replacing ".concat(t.length," icons"));for(var e=0;e { + if (err) console.log(err) + }) + + console.log(`Wrote Sprite for ${writtenFiles} files`) +}) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/download.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/download.js new file mode 100644 index 00000000..3e1b457e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/download.js @@ -0,0 +1,132 @@ +const fs = require('fs') +const path = require('path') +const axios = require('axios') +const eachLimit = require('async/eachLimit') +const uniq = require('lodash/uniq') +const filter = require('lodash/filter') +const sortBy = require('lodash/sortBy') +const maxBy = require('lodash/maxBy') +const upperFirst = require('lodash/upperFirst') + +const countDuplicates = require('../utils/countDuplicates') +const downloadImage = require('../utils/downloadImage') + +const targetPath = path.join(process.cwd(), `json/${process.env.STYLE}.json`) +const targetImagePath = path.join(process.cwd(), `svg/${process.env.STYLE}`) + +const existingConfig = JSON.parse( + fs.readFileSync( + path.join(process.cwd(), `json/${process.env.STYLE}.json`), + 'utf-8', + ), +) + +const url = process.env[`API_DOWNLOAD_${process.env.STYLE.toUpperCase()}`] +const breakOnError = true + +const existingMaxIcon = maxBy(existingConfig, 'code') +let startCharCode = existingMaxIcon ? existingMaxIcon.code + 1 : 59392 + +if (!fs.existsSync(path.join(process.cwd(), 'json'))) { + fs.mkdirSync(path.join(process.cwd(), 'json')) +} + +console.log( + `Download SVGs in ${process.cwd()}. Next Starting Char Code ${startCharCode}, Unicode ${startCharCode.toString( + 16, + )}.`, +) + +axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest' +axios.defaults.headers.common['Accept'] = 'application/json' +axios.defaults.withCredentials = true + +const response = axios.get(url).then((response) => { + const data = [] + const icons = response.data.response.unicons.map((item) => ({ + ...item, + allTags: item.name, + name: item.tags[item.tags.length - 1], + })) + + const names = icons.map((icon) => icon.name) + const uniqueNames = uniq(names) + const repeated = countDuplicates(names) + const duplicates = filter(repeated, (item) => item.count > 1) + + if (duplicates.length && breakOnError) { + console.log( + `Total Icons: ${names.length}, Unique Names: ${uniqueNames.length}`, + ) + + console.log(`${process.env.STYLE} Duplicates:`, duplicates) + + let dupFiles = [] + duplicates.forEach((d) => { + dupFiles = [...dupFiles, ...filter(icons, { name: d.value })] + }) + + fs.writeFileSync( + `${process.env.STYLE}-duplicates.json`, + JSON.stringify(dupFiles), + 'utf-8', + ) + + throw new Error('There are duplicate files') + } + + // Download All the icons from Iconscout + eachLimit( + icons, + 50, + async (row) => { + const url = row.svg + // const ext = url.indexOf('.gif') === -1 ? 'jpg' : 'gif' + const name = row.name + const fileName = `${name}.svg` + const filePath = path.resolve(targetImagePath, fileName) + + try { + await downloadImage(url, filePath) + + const charCodeExists = existingConfig.find((i) => i.name === name) + const charCode = + charCodeExists && charCodeExists.code + ? charCodeExists.code + : startCharCode++ + + data.push({ + uuid: row.uuid, + id: row.id, + name: name, + svg: `svg/${process.env.STYLE}/${fileName}`, + category: row.category, + style: upperFirst(process.env.STYLE), + tags: row.tags, + code: charCode, + unicode: charCode.toString(16), + pro: Boolean(row.price), + }) + } catch (error) { + console.error(error) + console.log('Error Downloading:', name) + } + }, + (err, results) => { + if (err) { + console.log(results) + throw err + } + + console.log(`${data.length} Images Downloaded!`) + // Save the Airtable data as json + fs.writeFileSync( + targetPath, + JSON.stringify(sortBy(data, 'name')), + 'utf-8', + ) + + // console.log(`New Data saved from Airtable to ${targetPath}!`) + }, + ) +}) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/folder-move.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/folder-move.js new file mode 100644 index 00000000..f9bcd03d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/folder-move.js @@ -0,0 +1,41 @@ +const fs = require('fs-plus') +const path = require('path') +const glob = require('glob') + +const sourcePath = path.join(process.cwd(), 'fontello-*') +const destPath = path.join(process.cwd()) + +glob(sourcePath, function (err, files) { + const fontFolder = files[0] + console.log(fontFolder, destPath) + + // Keep Custom Files + // i.e. Animations + fs.renameSync(destPath + '/css/animation.css', fontFolder + '/css/animation.css', (err) => { + if (err) throw err + console.log('Animation.css moved!') + }) + + // Clear Directories + fs.removeSync(destPath + '/font') + fs.removeSync(destPath + '/css') + fs.removeSync(destPath + '/index.html') + + // Move Font Files + fs.rename(fontFolder + '/font', destPath + '/font', (err) => { + if (err) throw err + console.log('Fonts moved!') + }) + + // Move CSS Files + fs.rename(fontFolder + '/css', destPath + '/css', (err) => { + if (err) throw err + console.log('CSS moved!') + }) + + // Move Demo File + fs.rename(fontFolder + '/demo.html', destPath + '/index.html', (err) => { + if (err) throw err + console.log('Demo.html moved!') + }) +}) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/generate-fontello-config.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/generate-fontello-config.js new file mode 100644 index 00000000..aae32d1d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/generate-fontello-config.js @@ -0,0 +1,104 @@ +const fs = require('fs-plus') +const path = require('path') +const cheerio = require('cheerio') +const uuidv4 = require('uuid/v4') +const chunk = require('lodash/chunk') +const sortBy = require('lodash/sortBy') +const parse = require('parse-svg-path') +const scale = require('scale-svg-path') +const serialize = require('serialize-svg-path') + +const JSONConfig = JSON.parse( + fs.readFileSync( + path.join(process.cwd(), `json/${process.env.STYLE}.json`), + 'utf-8', + ), +) +const targetFileDir = path.join(process.cwd(), 'dist/config') + +fs.removeSync(path.join(process.cwd(), 'dist')) +fs.mkdirSync(path.join(process.cwd(), 'dist')) +fs.mkdirSync(targetFileDir) + +const baseConfig = { + name: `unicons-${process.env.STYLE}`, + css_prefix_text: `${process.env.CSS_PREFIX}-`, + css_use_suffix: false, + hinting: true, + units_per_em: 1000, + ascent: 850, + copyright: 'IconScout', + glyphs: [], +} + +const saveConfig = (glyphs, name, file) => { + const config = { + ...baseConfig, + name, + glyphs, + } + + fs.writeFileSync(file, JSON.stringify(config), 'utf-8') +} + +const failedFiles = [] + +// Create all svgo promises +// We've to Sort the config so that we can generate proper Unicode-range limits in @font-face +chunk(sortBy(JSONConfig, 'code'), 60).forEach((chunk, chunkIndex) => { + const promises = [] + const configIcons = [] + + chunk.forEach((icon) => { + const filename = icon.svg + let name = path.basename(filename).split('.')[0] + const content = fs.readFileSync(filename, 'utf-8') + + // Get Path Content from SVG + const $ = cheerio.load(content, { + xmlMode: true, + }) + + const svgPaths = $('path') + if (svgPaths.length === 1) { + const svgPath = svgPaths.attr('d') + const uid = uuidv4().replace(/-/g, '') + + // Resize SVG Path to 1000 width + let path = parse(svgPath) + path = serialize(scale(path, 1000 / 24)) + + if (name && name !== '') { + configIcons.push({ + uid: uid, + css: name, + code: icon.code, + src: 'custom_icons', + selected: true, + svg: { + path: path, + width: 1000, + }, + search: [name], + }) + } else { + console.log(`Skipped empty name ${filename}`) + } + } else { + failedFiles.push(name) + // console.error(name) + } + }) + + // On Complete icon generation show status + if (failedFiles.length) { + console.error('Icons Generation Failed for following files') + console.error(failedFiles) + throw new Error('Some icons are not in compound path') + } else { + const file = path.join(targetFileDir, `config${chunkIndex}.json`) + // Save Fontello Config + saveConfig(configIcons, `unicons-${chunkIndex}`, file) + console.log(`Fontello config generated to ${file}`) + } +}) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/generate-fonts-css.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/generate-fonts-css.js new file mode 100644 index 00000000..9044a1ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/generate-fonts-css.js @@ -0,0 +1,88 @@ +const path = require('path') +const glob = require('glob') +const fs = require('fs-plus') +const fontello = require('fontello-cli/lib/fontello') +const sourcePath = path.join(process.cwd(), 'dist/config/*.json') +const fontsPath = path.join(process.cwd(), `fonts/${process.env.STYLE}`) +const cssTempPath = path.join(process.cwd(), 'dist/') +const cssPath = path.join(process.cwd(), `css/${process.env.STYLE}.css`) + +const cssBefore = fs + .readFileSync(path.join(process.cwd(), 'css/before.css'), 'utf-8') + .replace(/\{CSS_PREFIX\}/g, process.env.CSS_PREFIX) + .replace(/\{STYLE\}/g, process.env.STYLE) +const cssFontFaceList = [] +let cssCodesList = [] + +const msleep = (n) => { + Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, n) +} + +if (!fs.existsSync(fontsPath)) { + fs.mkdirSync(fontsPath, { recursive: true }) +} + +glob(sourcePath, (err, files) => { + files.forEach((file) => { + console.log(`Generating ${process.env.STYLE} Font for ${file}`) + + // Remove Fontello Session + const fontelloSession = path.join(process.cwd(), '.fontello-session') + if (fs.existsSync(fontelloSession)) { + fs.unlinkSync(fontelloSession) + } + + fontello.install({ + config: file, + css: cssTempPath, + font: fontsPath, + }) + + // Append Font Face + const configData = JSON.parse(fs.readFileSync(file, 'utf-8')) + const allowedChars = configData.glyphs.map((g) => g.code) + const firstChar = allowedChars[0].toString(16) + const lastChar = allowedChars[allowedChars.length - 1].toString(16) + + cssFontFaceList.push(`@font-face { + font-family: 'unicons-${process.env.STYLE}'; + src: url('../fonts/${process.env.STYLE}/${configData.name}.eot'); + src: url('../fonts/${process.env.STYLE}/${ + configData.name + }.eot#iefix') format('embedded-opentype'), + url('../fonts/${process.env.STYLE}/${ + configData.name + }.woff2') format('woff2'), + url('../fonts/${process.env.STYLE}/${ + configData.name + }.woff') format('woff'), + url('../fonts/${process.env.STYLE}/${ + configData.name + }.ttf') format('truetype'), + url('../fonts/${process.env.STYLE}/${ + configData.name + }.svg#unicons') format('svg'); + font-weight: normal; + font-style: normal; + unicode-range: U+${firstChar.toUpperCase()}-${lastChar.toUpperCase()}; +}`) + + cssCodesList = [ + ...cssCodesList, + ...configData.glyphs.map( + (g) => + `.${process.env.CSS_PREFIX}-${ + g.css + }:before { content: '\\${g.code.toString(16)}'; }`, + ), + ] + + msleep(3000) + }) + + // Write `unicons.css` file + const cssUnicons = `${cssFontFaceList.join( + '\n', + )}${cssBefore}${cssCodesList.join('')}` + fs.writeFileSync(cssPath, cssUnicons, 'utf-8') +}) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/generate-single-font.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/generate-single-font.js new file mode 100644 index 00000000..4c2630be --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/generate-single-font.js @@ -0,0 +1,42 @@ +const path = require('path') +const glob = require('glob') +const fs = require('fs-plus') +const fontello = require('fontello-cli/lib/fontello') +const sourcePath = path.join(process.cwd(), 'dist/config/*.json') +const targetPath = path.join(process.cwd(), 'dist/config.json') +const fontsPath = path.join(process.cwd(), `fonts/${process.env.STYLE}`) +const cssTempPath = path.join(process.cwd(), 'dist/') + +if (!fs.existsSync(fontsPath)) { + fs.mkdirSync(fontsPath, { recursive: true }) +} + +glob(sourcePath, (err, files) => { + const allFilesJSONArray = files.map((f) => { + return JSON.parse(fs.readFileSync(f)) + }) + + const allFilesJSON = { + ...allFilesJSONArray[0], + name: `unicons-${process.env.STYLE}`, + } + + allFilesJSONArray.forEach((j) => { + allFilesJSON.glyphs = [...allFilesJSON.glyphs, ...j.glyphs] + }) + + console.log(`Merging total ${allFilesJSONArray.length} configs.`) + fs.writeFileSync(targetPath, JSON.stringify(allFilesJSON), 'utf-8') + + // Remove Fontello Session + const fontelloSession = path.join(process.cwd(), '.fontello-session') + if (fs.existsSync(fontelloSession)) { + fs.unlinkSync(fontelloSession) + } + + fontello.install({ + config: targetPath, + css: cssTempPath, + font: fontsPath, + }) +}) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/overwriteWoff2.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/overwriteWoff2.js new file mode 100644 index 00000000..02581aa9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/overwriteWoff2.js @@ -0,0 +1,16 @@ +const ttf2woff2 = require('ttf2woff2') +const path = require('path') +const fs = require('fs-plus') +const glob = require('glob') + +const sourcePath = path.join(process.cwd(), `fonts/${process.env.STYLE}/*.ttf`) +const fontsPath = path.join(process.cwd(), `fonts/${process.env.STYLE}`) + +glob(sourcePath, (err, files) => { + files.forEach((file) => { + const fontName = `${file.split('/').pop().split('.').shift()}.woff2` + console.log(`Overwriting ${process.env.STYLE}: ${fontName}`) + const input = fs.readFileSync(file) + fs.writeFileSync(`${fontsPath}/${fontName}`, ttf2woff2(input)) + }) +}) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/svgoConfig.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/svgoConfig.js new file mode 100644 index 00000000..552a0e95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/line/svgoConfig.js @@ -0,0 +1,33 @@ +module.exports = { + plugins: [ + { + removeAttrs: { + attrs: ['(path|rect|circle|polygon|line|polyline|g|ellipse)'] + } + }, + { + removeTitle: true + }, + { + removeStyleElement: true + }, + { + removeComments: true + }, + { + removeDesc: true + }, + { + removeUselessDefs: true + }, + { + cleanupIDs: { + remove: true, + prefix: 'svgicon-' + } + }, + { + convertShapeToPath: true + } + ] +} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/download.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/download.js new file mode 100644 index 00000000..59517187 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/download.js @@ -0,0 +1,112 @@ +const fs = require('fs-plus') +const path = require('path') +const axios = require('axios') +const targetPath = path.join(process.cwd(), 'json/monochrome.json') +const targetImagePath = path.join(process.cwd(), 'svg/monochrome') +const eachLimit = require('async/eachLimit') +const uniq = require('lodash/uniq') +const filter = require('lodash/filter') +const sortBy = require('lodash/sortBy') + +const countDuplicates = require('../utils/countDuplicates') +const downloadImage = require('../utils/downloadImage') +const replaceFill = require('./replaceFill') + +const url = process.env.API_DOWNLOAD_MONOCHROME +const breakOnError = true + +if (!fs.existsSync(path.join(process.cwd(), 'json'))) { + fs.mkdirSync(path.join(process.cwd(), 'json')) +} + +axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest' +axios.defaults.headers.common['Accept'] = 'application/json' +axios.defaults.withCredentials = true + +const response = axios + .get(url) + .then((response) => { + const data = [] + const icons = response.data.response.unicons.map((item) => ({ + ...item, + allTags: item.name, + name: item.tags[item.tags.length - 1], + })) + + console.log(`Download ${icons.length} SVGs in ${process.cwd()}`) + + const names = icons.map((icon) => icon.name) + const uniqueNames = uniq(names) + const repeated = countDuplicates(names) + const duplicates = filter(repeated, (item) => item.count > 1) + + if (duplicates.length && breakOnError) { + console.log(`Unique Names: ${uniqueNames.length}`) + console.log(`Monochrome Duplicates found:`, duplicates) + + let dupFiles = [] + duplicates.forEach((d) => { + dupFiles = [...dupFiles, ...filter(icons, { name: d.value })] + }) + + fs.writeFileSync( + 'monochrome-duplicates.json', + JSON.stringify(dupFiles), + 'utf-8', + ) + + throw new Error('There are duplicate files') + } + + // Download All the icons from Iconscout + eachLimit( + icons, + 20, + async (row) => { + const url = row.svg + // const ext = url.indexOf('.gif') === -1 ? 'jpg' : 'gif' + const name = row.name + const fileName = `${name}.svg` + const filePath = path.resolve(targetImagePath, fileName) + + try { + await downloadImage(url, filePath, (svg) => { + return replaceFill(svg, fileName) + }) + + data.push({ + uuid: row.uuid, + id: row.id, + name: name, + svg: `svg/monochrome/${fileName}`, + category: row.category, + style: 'monochrome', + tags: row.tags, + pro: Boolean(row.price), + }) + } catch (error) { + console.error(error) + console.log('Error Downloading:', name) + } + }, + (err, results) => { + if (err) { + console.log(results) + throw err + } + + console.log(`${data.length} Images Downloaded!`) + // Save the Airtable data as json + fs.writeFileSync( + targetPath, + JSON.stringify(sortBy(data, 'name')), + 'utf-8', + ) + + // console.log(`New Data saved from Airtable to ${targetPath}!`) + }, + ) + }) + .catch((e) => { + console.error(e) + }) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/replaceFill.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/replaceFill.js new file mode 100644 index 00000000..5b9fda55 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/replaceFill.js @@ -0,0 +1,44 @@ +const SVGO = require('svgo') +const svgoOptions = require('./svgoOptions') + +const COLOR_CLASS = { + 'fill="#6563ff"': 'class="uim-primary"', + 'fill="#8c8aff"': 'class="uim-secondary"', + 'fill="#b2b1ff"': 'class="uim-tertiary"', + 'fill="#d8d8ff"': 'class="uim-quaternary"', + 'fill="#ffffff"': 'class="uim-quinary"', + 'fill="#fff"': 'class="uim-quinary"', +} + +const replaceFillWithClass = async (svg, name) => { + // Parse it via SVGO + let processedSVG = await processSVG(svg) + const hexList = processedSVG.match(/(fill=\"\#)([A-F0-9a-f]{3,6})\"/gi) + + if (hexList) { + hexList.forEach(hex => { + // console.log(COLOR_CLASS[hex]) + if (COLOR_CLASS[hex]) { + processedSVG = processedSVG.replace(hex, COLOR_CLASS[hex]) + } else { + console.error(`Unidentified Color found: ${name}: ${hex}`) + } + }) + + return processedSVG + } else { + throw new Error(`No Colors found: ${name}`) + } +} + +const processSVG = async (data) => { + const svgo = new SVGO(svgoOptions) + const result = await new Promise ((resolve, reject) => { + svgo.optimize(data).then(function(result) { + resolve(result) + }) + }) + return result.data +} + +module.exports = replaceFillWithClass diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/script.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/script.js new file mode 100644 index 00000000..273b1270 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/script.js @@ -0,0 +1,133 @@ +const SVG_URL_BASE = `https://unicons.iconscout.com/${ + process.env.RELEASE_DIR || 'release' +}/${process.env.CI_COMMIT_REF_NAME}/svg/monochrome/` +const iconPrefix = 'uim-' + +// Add Unicons Window +window.Unicons = window.Unicons || {} +window.Unicons.DEBUG = window.Unicons.DEBUG || false + +const apply = (element) => { + element.classList.forEach((className) => { + if (className.includes(iconPrefix)) { + fetchIconsAndReplace( + className.toLocaleLowerCase().replace(iconPrefix, ''), + ) + } + }) +} + +const fetchIconsAndReplace = (iconName) => { + fetch(`${SVG_URL_BASE}${iconName}.svg`) + .then((res) => res.text()) + .then((svg) => replaceWithSVG(iconName, svg)) +} + +const replaceWithSVG = (name, svg) => { + // Replace it with SVG + const elements = document.getElementsByClassName(`${iconPrefix}${name}`) + + while (elements.length > 0) { + const element = elements[0] + const span = document.createElement('span') + span.innerHTML = svg + span.classList.add('uim-svg') + span.firstChild.setAttribute('width', '1em') + + // Add existing styles to the element + span.style.cssText = element.style.cssText + + // If user wants white bg rather than opacity + if (element.classList.contains('uim-white')) { + span.style.mask = `url(${SVG_URL_BASE}${name}.svg)` + span.style.webkitMask = `url(${SVG_URL_BASE}${name}.svg)` + span.style.background = 'white' + } + + element.replaceWith(span) + } +} + +const replaceAllIcons = () => { + const elements = document.getElementsByClassName('uim') + const iconsToFetch = [] + + if (window.Unicons.DEBUG) { + console.log(`Replacing ${elements.length} icons`) + } + + for (let i = 0; i < elements.length; i++) { + const element = elements[i] + element.classList.forEach((className) => { + if (className.includes(iconPrefix)) { + const iconName = className.toLocaleLowerCase().replace(iconPrefix, '') + if (!iconsToFetch.includes(iconName)) { + fetchIconsAndReplace(iconName) + iconsToFetch.push(iconName) + } + } + }) + } +} + +const watch = () => { + const insertionQ = require('insertion-query') + insertionQ('.uim').every((element) => { + apply(element) + return element + }) + window.Unicons.WATCHER = true + if (window.Unicons.DEBUG) { + console.log('Monochrome watcher started') + } +} + +const init = () => { + replaceAllIcons() + if (!window.Unicons.WATCHER) { + watch() + } + if (window.Unicons.DEBUG) { + console.log('Monochrome initiated') + } +} + +window.onload = init +window.Unicons.refresh = replaceAllIcons + +// Append CSS +const style = document.createElement('style') +style.innerHTML = `:root { + --uim-primary-opacity: 1; + --uim-secondary-opacity: 0.70; + --uim-tertiary-opacity: 0.50; + --uim-quaternary-opacity: 0.25; + --uim-quinary-opacity: 0; +} +.uim-svg { + display: inline-block; + height: 1em; + vertical-align: -0.125em; + font-size: inherit; + fill: var(--uim-color, currentColor); +} +.uim-svg svg { + display: inline-block; +} +.uim-primary { + opacity: var(--uim-primary-opacity); +} +.uim-secondary { + opacity: var(--uim-secondary-opacity); +} +.uim-tertiary { + opacity: var(--uim-tertiary-opacity); +} +.uim-quaternary { + opacity: var(--uim-quaternary-opacity); +} +.uim-quinary { + opacity: var(--uim-quinary-opacity); +}` + +document.head.appendChild(style) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/svgoOptions.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/svgoOptions.js new file mode 100644 index 00000000..727884e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/svgoOptions.js @@ -0,0 +1,142 @@ +module.exports = { + comment: 'This is the settings file for IconScout SVG Compression.', + pretty: true, + indent: 2, + floatPrecision: 3, + plugins: [ + { + removeDoctype: true, + }, + { + removeXMLProcInst: true, + }, + { + removeComments: true, + }, + { + removeMetadata: true, + }, + { + removeXMLNS: false, + }, + { + removeEditorsNSData: true, + }, + { + cleanupAttrs: false, + }, + { + inlineStyles: { + onlyMatchedOnce: false, + }, + }, + { + minifyStyles: true, + }, + { + convertStyleToAttrs: true, + }, + { + cleanupIDs: true, + }, + { + prefixIds: false, + }, + { + removeRasterImages: true, + }, + { + removeUselessDefs: true, + }, + { + cleanupNumericValues: true, + }, + { + cleanupListOfValues: true, + }, + { + convertColors: true, + }, + { + removeUnknownsAndDefaults: true, + }, + { + removeNonInheritableGroupAttrs: true, + }, + { + removeUselessStrokeAndFill: true, + }, + { + removeViewBox: false, + }, + { + cleanupEnableBackground: false, + }, + { + removeHiddenElems: false, + }, + { + removeEmptyText: true, + }, + { + convertShapeToPath: false, + }, + { + moveElemsAttrsToGroup: false, + }, + { + moveGroupAttrsToElems: false, + }, + { + collapseGroups: true, + }, + { + convertPathData: false, + }, + { + convertTransform: true, + }, + { + removeEmptyAttrs: true, + }, + { + removeEmptyContainers: true, + }, + { + mergePaths: true, + }, + { + removeUnusedNS: true, + }, + { + sortAttrs: true, + }, + { + removeTitle: true, + }, + { + removeDesc: true, + }, + { + removeDimensions: false, + }, + { + removeAttrs: false, + }, + { + removeElementsByAttr: false, + }, + { + addClassesToSVGElement: false, + }, + { + removeStyleElement: true, + }, + { + removeScriptElement: true, + }, + { + addAttributesToSVGElement: false, + }, + ], +} diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/validate.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/validate.js new file mode 100644 index 00000000..844294c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/monochrome/validate.js @@ -0,0 +1,19 @@ +const path = require('path') +const glob = require('glob') +const fs = require('fs-plus') +const sourcePath = path.join(process.cwd(), 'dist/test', '**/*.svg') +const replaceFill = require('./replaceFill') + +glob(sourcePath, function (err, files) { + if (err) { + console.log(err) + return false + } + + files = files.map((f) => path.normalize(f)) + + files.forEach(filename => { + const svg = fs.readFileSync(filename, 'utf-8') + replaceFill(svg, filename) + }) +}) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/update-json.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/update-json.js new file mode 100644 index 00000000..a17a4d7c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/update-json.js @@ -0,0 +1,25 @@ +const { exec } = require('child_process') +const axios = require('axios') +const path = require('path') +const fs = require('fs') + +const pkg = require('../package.json') + +exec(`npm view ${pkg.name} version`, async (err, out) => { + const latestVersion = out.trim() + + const styles = ['solid'] + + for (let index = 0; index < styles.length; index++) { + const style = styles[index] + + const url = `https://unicons.iconscout.com/release-pro/v${latestVersion}/json/${style}.json` + const response = await axios({ + method: 'GET', + url, + }) + + const targetPath = path.join(process.cwd(), `json/${style}.json`) + fs.writeFileSync(targetPath, JSON.stringify(response.data), 'utf-8') + } +}) diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/utils/countDuplicates.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/utils/countDuplicates.js new file mode 100644 index 00000000..9b83e1f5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/utils/countDuplicates.js @@ -0,0 +1,30 @@ +const compressArray = original => { + var compressed = [] + // make a copy of the input array + var copy = original.slice(0) + + // first loop goes over every element + for (var i = 0; i < original.length; i++) { + var myCount = 0 + // loop over every element in the copy and see if it's the same + for (var w = 0; w < copy.length; w++) { + if (original[i] == copy[w]) { + // increase amount of times duplicate is found + myCount++ + // sets item to undefined + delete copy[w] + } + } + + if (myCount > 0) { + var a = new Object() + a.value = original[i] + a.count = myCount + compressed.push(a) + } + } + + return compressed +} + +module.exports = compressArray diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/utils/downloadImage.js b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/utils/downloadImage.js new file mode 100644 index 00000000..6764aaec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/scripts/utils/downloadImage.js @@ -0,0 +1,23 @@ +const fs = require('fs') +const axios = require('axios') + +const downloadImage = async (url, path, parseSVG) => { + // console.log(`Downloading Image: ${url}`) + // axios image download with response type "stream" + const response = await axios({ + method: 'GET', + url: url + }) + + // Replace extra characters such as new lines, tabs from file + let svg = response.data.replace(/\r+|\n+|\t+/gm, '') + + // If we've to modify svg before saving + if (parseSVG) { + svg = await parseSVG(svg) + } + + fs.writeFileSync(path, svg, 'utf-8') +} + +module.exports = downloadImage diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite.html b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite.html new file mode 100644 index 00000000..445e59f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite.html @@ -0,0 +1,15 @@ + + + + + + + Unicons SVG Sprite + + +

Unicons SVG Sprite Sample

+ + + + + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite/line/unicons.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite/line/unicons.svg new file mode 100644 index 00000000..d185fba9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite/line/unicons.svg @@ -0,0 +1 @@ +Artboard 5 copy 21EarSnapchatArtboard 10 copy 6Artboard 9 copy 6telegramTelegram Glyph \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite/solid/unicons.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite/solid/unicons.svg new file mode 100644 index 00000000..e210247a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite/solid/unicons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite/thinline/unicons.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite/thinline/unicons.svg new file mode 100644 index 00000000..56104994 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/sprite/thinline/unicons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/0-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/0-plus.svg new file mode 100644 index 00000000..71660215 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/0-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/10-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/10-plus.svg new file mode 100644 index 00000000..097acb9e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/10-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/12-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/12-plus.svg new file mode 100644 index 00000000..12ba8369 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/12-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/13-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/13-plus.svg new file mode 100644 index 00000000..9800eb10 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/13-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/16-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/16-plus.svg new file mode 100644 index 00000000..f94587a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/16-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/17-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/17-plus.svg new file mode 100644 index 00000000..e737acc1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/17-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/18-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/18-plus.svg new file mode 100644 index 00000000..6fc8aacd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/18-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/21-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/21-plus.svg new file mode 100644 index 00000000..8de87603 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/21-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/3-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/3-plus.svg new file mode 100644 index 00000000..d9f0aa04 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/3-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/500px.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/500px.svg new file mode 100644 index 00000000..c5dc7d2b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/500px.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/6-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/6-plus.svg new file mode 100644 index 00000000..fbb4d737 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/6-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/abacus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/abacus.svg new file mode 100644 index 00000000..0fe7c0d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/abacus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/accessible-icon-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/accessible-icon-alt.svg new file mode 100644 index 00000000..3dcd9ddd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/accessible-icon-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust-alt.svg new file mode 100644 index 00000000..aae7a245 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust-circle.svg new file mode 100644 index 00000000..9671174c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust-half.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust-half.svg new file mode 100644 index 00000000..da7696b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust.svg new file mode 100644 index 00000000..25b87fd0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adjust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adobe-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adobe-alt.svg new file mode 100644 index 00000000..449fc067 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adobe-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adobe.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adobe.svg new file mode 100644 index 00000000..ccf5c09f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/adobe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/airplay.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/airplay.svg new file mode 100644 index 00000000..1d93b80f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-alt.svg new file mode 100644 index 00000000..9f639f8c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-alt.svg new file mode 100644 index 00000000..474f517d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-h.svg new file mode 100644 index 00000000..bd41efc3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-justify.svg new file mode 100644 index 00000000..18169475 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-v.svg new file mode 100644 index 00000000..9f5ae39f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center.svg new file mode 100644 index 00000000..bb022fb1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-justify.svg new file mode 100644 index 00000000..4d25ad5a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-left-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-left-justify.svg new file mode 100644 index 00000000..65975cc8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-left-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-left.svg new file mode 100644 index 00000000..85db219a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-letter-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-letter-right.svg new file mode 100644 index 00000000..d08566ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-letter-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-right-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-right-justify.svg new file mode 100644 index 00000000..662aaeb0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-right-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-right.svg new file mode 100644 index 00000000..21d27aca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align.svg new file mode 100644 index 00000000..6e638795 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/align.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/amazon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/amazon.svg new file mode 100644 index 00000000..0af93549 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/amazon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ambulance.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ambulance.svg new file mode 100644 index 00000000..07e124db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ambulance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/analysis.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/analysis.svg new file mode 100644 index 00000000..c04b3314 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/analysis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/analytics.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/analytics.svg new file mode 100644 index 00000000..21810df0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/anchor.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/anchor.svg new file mode 100644 index 00000000..cc203977 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/android-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/android-alt.svg new file mode 100644 index 00000000..6bdb80c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/android-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/android-phone-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/android-phone-slash.svg new file mode 100644 index 00000000..238ebb7e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/android-phone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/android.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/android.svg new file mode 100644 index 00000000..372f120e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-down.svg new file mode 100644 index 00000000..848604c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-left.svg new file mode 100644 index 00000000..5b9f7fbd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-right.svg new file mode 100644 index 00000000..f24b2633 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-up.svg new file mode 100644 index 00000000..c496dc1f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-double-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-down.svg new file mode 100644 index 00000000..df3b9410 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-left-b.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-left-b.svg new file mode 100644 index 00000000..efce7757 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-left-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-left.svg new file mode 100644 index 00000000..25cd536a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-right-b.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-right-b.svg new file mode 100644 index 00000000..b174cd26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-right-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-right.svg new file mode 100644 index 00000000..b21121fe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-up.svg new file mode 100644 index 00000000..1309a2ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angry.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angry.svg new file mode 100644 index 00000000..faf47462 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/angry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ankh.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ankh.svg new file mode 100644 index 00000000..01e826c2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ankh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/annoyed-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/annoyed-alt.svg new file mode 100644 index 00000000..afac8e3f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/annoyed-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/annoyed.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/annoyed.svg new file mode 100644 index 00000000..599028dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/annoyed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/apple-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/apple-alt.svg new file mode 100644 index 00000000..b2c9e639 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/apple-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/apple.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/apple.svg new file mode 100644 index 00000000..e365fc91 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/apps.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/apps.svg new file mode 100644 index 00000000..7d51d736 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/archive-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/archive-alt.svg new file mode 100644 index 00000000..7c6243ba --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/archive-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/archive.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/archive.svg new file mode 100644 index 00000000..c61a0c05 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/archway.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/archway.svg new file mode 100644 index 00000000..9e0f87f8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/archway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-break.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-break.svg new file mode 100644 index 00000000..abe45b49 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-break.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-down.svg new file mode 100644 index 00000000..97f2081b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-left.svg new file mode 100644 index 00000000..d2521b69 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-right.svg new file mode 100644 index 00000000..93608a22 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-up.svg new file mode 100644 index 00000000..d4d2e0a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-compress-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-compress-h.svg new file mode 100644 index 00000000..9e0dba6c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-compress-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-down-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-down-left.svg new file mode 100644 index 00000000..f160c685 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-down-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-down-right.svg new file mode 100644 index 00000000..9e6281e2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-down.svg new file mode 100644 index 00000000..9bd09a5b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-from-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-from-right.svg new file mode 100644 index 00000000..5a057900 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-from-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-from-top.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-from-top.svg new file mode 100644 index 00000000..c267a1c8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-from-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-growth.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-growth.svg new file mode 100644 index 00000000..21a0398c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-growth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-left.svg new file mode 100644 index 00000000..69253987 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-random.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-random.svg new file mode 100644 index 00000000..353d6c12 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-random.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-resize-diagonal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-resize-diagonal.svg new file mode 100644 index 00000000..8a1eec12 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-resize-diagonal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-right.svg new file mode 100644 index 00000000..2b2ada35 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-to-bottom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-to-bottom.svg new file mode 100644 index 00000000..5bb8417c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-to-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-to-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-to-right.svg new file mode 100644 index 00000000..49435236 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-to-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-up-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-up-left.svg new file mode 100644 index 00000000..3bf2abd9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-up-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-up-right.svg new file mode 100644 index 00000000..67b90149 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-up.svg new file mode 100644 index 00000000..b5771deb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow.svg new file mode 100644 index 00000000..2c1e398f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-h-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-h-alt.svg new file mode 100644 index 00000000..ddf31fdb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-h-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-h.svg new file mode 100644 index 00000000..e7a0619d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-left-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-left-down.svg new file mode 100644 index 00000000..54ad2e99 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-maximize.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-maximize.svg new file mode 100644 index 00000000..b8f4c461 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-merge.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-merge.svg new file mode 100644 index 00000000..3745ff19 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-resize-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-resize-h.svg new file mode 100644 index 00000000..862a5820 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-resize-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-resize-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-resize-v.svg new file mode 100644 index 00000000..e7631a21 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-resize-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-resize.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-resize.svg new file mode 100644 index 00000000..4a1420db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-right-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-right-down.svg new file mode 100644 index 00000000..4830cb80 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-shrink-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-shrink-h.svg new file mode 100644 index 00000000..3238402c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-shrink-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-shrink-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-shrink-v.svg new file mode 100644 index 00000000..66bf2f1f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-shrink-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-up-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-up-right.svg new file mode 100644 index 00000000..2c5f35cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-v-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-v-alt.svg new file mode 100644 index 00000000..8723f644 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-v.svg new file mode 100644 index 00000000..d1ff46cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/arrows-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/assistive-listening-systems.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/assistive-listening-systems.svg new file mode 100644 index 00000000..9e71c03b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/assistive-listening-systems.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/asterisk.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/asterisk.svg new file mode 100644 index 00000000..fb3dfe74 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/asterisk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/at.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/at.svg new file mode 100644 index 00000000..b9956d10 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/atom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/atom.svg new file mode 100644 index 00000000..e83c8ab5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/auto-flash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/auto-flash.svg new file mode 100644 index 00000000..380276f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/auto-flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/award-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/award-alt.svg new file mode 100644 index 00000000..dfb80a4e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/award-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/award.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/award.svg new file mode 100644 index 00000000..40961793 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/award.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/baby-carriage.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/baby-carriage.svg new file mode 100644 index 00000000..441b3980 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/baby-carriage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/backpack.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/backpack.svg new file mode 100644 index 00000000..b8363d00 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/backpack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/backspace.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/backspace.svg new file mode 100644 index 00000000..a2002516 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/backward.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/backward.svg new file mode 100644 index 00000000..5697eac4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bag-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bag-alt.svg new file mode 100644 index 00000000..465269a6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bag-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bag-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bag-slash.svg new file mode 100644 index 00000000..ab18f9fe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bag-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bag.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bag.svg new file mode 100644 index 00000000..3e38713d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/balance-scale.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/balance-scale.svg new file mode 100644 index 00000000..c89cac26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/balance-scale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ban.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ban.svg new file mode 100644 index 00000000..6389f760 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/band-aid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/band-aid.svg new file mode 100644 index 00000000..49380998 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/band-aid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bars.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bars.svg new file mode 100644 index 00000000..b19cbe40 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/baseball-ball.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/baseball-ball.svg new file mode 100644 index 00000000..d47e1a19 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/baseball-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/basketball-hoop.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/basketball-hoop.svg new file mode 100644 index 00000000..ce3ccf09 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/basketball-hoop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/basketball.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/basketball.svg new file mode 100644 index 00000000..c1904cec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bath.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bath.svg new file mode 100644 index 00000000..924c7520 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bath.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/battery-bolt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/battery-bolt.svg new file mode 100644 index 00000000..56a6de39 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/battery-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/battery-empty.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/battery-empty.svg new file mode 100644 index 00000000..a26f9eeb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bed-double.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bed-double.svg new file mode 100644 index 00000000..8f64d668 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bed-double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bed.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bed.svg new file mode 100644 index 00000000..0516c554 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/behance-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/behance-alt.svg new file mode 100644 index 00000000..18251d18 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/behance-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/behance.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/behance.svg new file mode 100644 index 00000000..f5b421f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/behance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bell-school.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bell-school.svg new file mode 100644 index 00000000..a90511e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bell-school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bell-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bell-slash.svg new file mode 100644 index 00000000..6914ed2a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bell.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bell.svg new file mode 100644 index 00000000..3fbc40a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bill.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bill.svg new file mode 100644 index 00000000..e16f5ccd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bing.svg new file mode 100644 index 00000000..c3225adb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin-alt.svg new file mode 100644 index 00000000..40d7125e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin-circle.svg new file mode 100644 index 00000000..7c893a4c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin-sign.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin-sign.svg new file mode 100644 index 00000000..a25bdc07 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin.svg new file mode 100644 index 00000000..7a2f1ed9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bitcoin.svg @@ -0,0 +1 @@ +Artboard 5 copy 21 \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/black-berry.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/black-berry.svg new file mode 100644 index 00000000..383cd182 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/black-berry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/blogger-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/blogger-alt.svg new file mode 100644 index 00000000..834d195d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/blogger-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/blogger.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/blogger.svg new file mode 100644 index 00000000..998e1035 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/blogger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bluetooth-b.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bluetooth-b.svg new file mode 100644 index 00000000..31394e88 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bluetooth-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bold.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bold.svg new file mode 100644 index 00000000..938e87af --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bolt-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bolt-alt.svg new file mode 100644 index 00000000..b6e667c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bolt-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bolt-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bolt-slash.svg new file mode 100644 index 00000000..0f9930a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bolt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bolt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bolt.svg new file mode 100644 index 00000000..4d4e0e62 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-alt.svg new file mode 100644 index 00000000..da3c0174 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-medical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-medical.svg new file mode 100644 index 00000000..fda28b7f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-open.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-open.svg new file mode 100644 index 00000000..91347309 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-reader.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-reader.svg new file mode 100644 index 00000000..78131965 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book-reader.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book.svg new file mode 100644 index 00000000..8e59539d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bookmark-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bookmark-full.svg new file mode 100644 index 00000000..84d7bcff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bookmark-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bookmark.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bookmark.svg new file mode 100644 index 00000000..5acd3c8a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/books.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/books.svg new file mode 100644 index 00000000..46e6d1bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/books.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/boombox.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/boombox.svg new file mode 100644 index 00000000..a3997d07 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/boombox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-alt.svg new file mode 100644 index 00000000..7614b5e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-bottom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-bottom.svg new file mode 100644 index 00000000..fd13df06 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-clear.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-clear.svg new file mode 100644 index 00000000..e895a037 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-clear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-horizontal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-horizontal.svg new file mode 100644 index 00000000..90dc412e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-inner.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-inner.svg new file mode 100644 index 00000000..d1569ae6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-inner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-left.svg new file mode 100644 index 00000000..4c72445e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-out.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-out.svg new file mode 100644 index 00000000..3fcd9677 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-right.svg new file mode 100644 index 00000000..44080485 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-top.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-top.svg new file mode 100644 index 00000000..252cbd6c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-vertical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-vertical.svg new file mode 100644 index 00000000..9da27735 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/border-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bowling-ball.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bowling-ball.svg new file mode 100644 index 00000000..5a0df530 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bowling-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/box.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/box.svg new file mode 100644 index 00000000..ba5b3d63 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brackets-curly.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brackets-curly.svg new file mode 100644 index 00000000..db52f35b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brackets-curly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brain.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brain.svg new file mode 100644 index 00000000..da7a6566 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/briefcase-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/briefcase-alt.svg new file mode 100644 index 00000000..b06a2eb9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/briefcase-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/briefcase.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/briefcase.svg new file mode 100644 index 00000000..c206ad05 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bright.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bright.svg new file mode 100644 index 00000000..f64e2087 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-empty.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-empty.svg new file mode 100644 index 00000000..a92e7a0c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-half.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-half.svg new file mode 100644 index 00000000..fc00d2fc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-low.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-low.svg new file mode 100644 index 00000000..c4584c74 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-minus.svg new file mode 100644 index 00000000..0f01f75b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-plus.svg new file mode 100644 index 00000000..b3569bd1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness.svg new file mode 100644 index 00000000..b1e44331 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brightness.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bring-bottom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bring-bottom.svg new file mode 100644 index 00000000..22d8989b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bring-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bring-front.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bring-front.svg new file mode 100644 index 00000000..ba9352af --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bring-front.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/browser.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/browser.svg new file mode 100644 index 00000000..d6142cd7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/browser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brush-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brush-alt.svg new file mode 100644 index 00000000..c3437ec2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/brush-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bug.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bug.svg new file mode 100644 index 00000000..ae0f0548 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/building.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/building.svg new file mode 100644 index 00000000..ce05d400 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bullseye.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bullseye.svg new file mode 100644 index 00000000..af716b3b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bullseye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bus-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bus-alt.svg new file mode 100644 index 00000000..78bbf99c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bus-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bus-school.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bus-school.svg new file mode 100644 index 00000000..67f4baeb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bus-school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bus.svg new file mode 100644 index 00000000..31a21c2e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calculator-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calculator-alt.svg new file mode 100644 index 00000000..ab108ad9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calculator-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calculator.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calculator.svg new file mode 100644 index 00000000..422df1fe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calendar-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calendar-alt.svg new file mode 100644 index 00000000..53524f42 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calendar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calendar-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calendar-slash.svg new file mode 100644 index 00000000..7744addb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calendar-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calender.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calender.svg new file mode 100644 index 00000000..cc8e7ccb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calling.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calling.svg new file mode 100644 index 00000000..e3569e04 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/calling.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera-change.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera-change.svg new file mode 100644 index 00000000..3001337b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera-change.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera-plus.svg new file mode 100644 index 00000000..a10cd198 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera-slash.svg new file mode 100644 index 00000000..41e33c0b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera.svg new file mode 100644 index 00000000..b5386e2c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cancel.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cancel.svg new file mode 100644 index 00000000..138499ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cancel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/capsule.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/capsule.svg new file mode 100644 index 00000000..94b948f6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/capsule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/capture.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/capture.svg new file mode 100644 index 00000000..a984e562 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/capture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car-sideview.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car-sideview.svg new file mode 100644 index 00000000..47ea0b61 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car-sideview.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car-slash.svg new file mode 100644 index 00000000..fd87682c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car-wash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car-wash.svg new file mode 100644 index 00000000..11aa342b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car-wash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car.svg new file mode 100644 index 00000000..c0dd697a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/card-atm.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/card-atm.svg new file mode 100644 index 00000000..fd92764c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/card-atm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/caret-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/caret-right.svg new file mode 100644 index 00000000..3965abec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/caret-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cell.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cell.svg new file mode 100644 index 00000000..328748c8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/celsius.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/celsius.svg new file mode 100644 index 00000000..476765c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/celsius.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/channel-add.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/channel-add.svg new file mode 100644 index 00000000..25a35c92 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/channel-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/channel.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/channel.svg new file mode 100644 index 00000000..bc01d1a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/channel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-bar-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-bar-alt.svg new file mode 100644 index 00000000..318d8c26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-bar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-bar.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-bar.svg new file mode 100644 index 00000000..5825ff83 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-down.svg new file mode 100644 index 00000000..d21bd9c5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-growth-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-growth-alt.svg new file mode 100644 index 00000000..4aed9c25 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-growth-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-growth.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-growth.svg new file mode 100644 index 00000000..f5f846d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-growth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-line.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-line.svg new file mode 100644 index 00000000..8b697a3d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-pie-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-pie-alt.svg new file mode 100644 index 00000000..c3d157d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-pie-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-pie.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-pie.svg new file mode 100644 index 00000000..bd2b1026 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart.svg new file mode 100644 index 00000000..8adab433 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chat-bubble-user.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chat-bubble-user.svg new file mode 100644 index 00000000..57a77279 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chat-bubble-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chat-info.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chat-info.svg new file mode 100644 index 00000000..6a98cc69 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chat-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chat.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chat.svg new file mode 100644 index 00000000..05afcb94 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/chat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/check-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/check-circle.svg new file mode 100644 index 00000000..0924f9b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/check-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/check-square.svg new file mode 100644 index 00000000..02d0c70d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/check.svg new file mode 100644 index 00000000..dec3efeb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/circle-layer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/circle-layer.svg new file mode 100644 index 00000000..ce18336d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/circle-layer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/circle.svg new file mode 100644 index 00000000..bbb2e635 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/circuit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/circuit.svg new file mode 100644 index 00000000..b8011447 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/circuit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clapper-board.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clapper-board.svg new file mode 100644 index 00000000..1bcb4526 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clapper-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clinic-medical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clinic-medical.svg new file mode 100644 index 00000000..0e7158c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clinic-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard-alt.svg new file mode 100644 index 00000000..11ccde65 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard-blank.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard-blank.svg new file mode 100644 index 00000000..24a49ac1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard-notes.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard-notes.svg new file mode 100644 index 00000000..47ec0111 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard.svg new file mode 100644 index 00000000..98b4343a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-eight.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-eight.svg new file mode 100644 index 00000000..37434182 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-eight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-five.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-five.svg new file mode 100644 index 00000000..bb96618c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-nine.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-nine.svg new file mode 100644 index 00000000..8f71b539 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-seven.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-seven.svg new file mode 100644 index 00000000..c0c929e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-seven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-ten.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-ten.svg new file mode 100644 index 00000000..26646d6d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-ten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-three.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-three.svg new file mode 100644 index 00000000..6559c780 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-two.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-two.svg new file mode 100644 index 00000000..00b026e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock.svg new file mode 100644 index 00000000..1eb1218e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/closed-captioning-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/closed-captioning-slash.svg new file mode 100644 index 00000000..49007faa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/closed-captioning-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/closed-captioning.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/closed-captioning.svg new file mode 100644 index 00000000..ab7120f4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-block.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-block.svg new file mode 100644 index 00000000..4ee82b8e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-bookmark.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-bookmark.svg new file mode 100644 index 00000000..3f21a960 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-check.svg new file mode 100644 index 00000000..0fafa0e3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-computing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-computing.svg new file mode 100644 index 00000000..b5559389 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-computing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-data-connection.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-data-connection.svg new file mode 100644 index 00000000..c4b8b90d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-data-connection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-database-tree.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-database-tree.svg new file mode 100644 index 00000000..aaa8c73b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-database-tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-download.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-download.svg new file mode 100644 index 00000000..5ebba2cd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-drizzle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-drizzle.svg new file mode 100644 index 00000000..615e7620 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-drizzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-exclamation.svg new file mode 100644 index 00000000..f6c430ec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-hail.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-hail.svg new file mode 100644 index 00000000..04213577 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-hail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-heart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-heart.svg new file mode 100644 index 00000000..28923908 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-info.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-info.svg new file mode 100644 index 00000000..8934c0dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-lock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-lock.svg new file mode 100644 index 00000000..6bd0298e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-meatball.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-meatball.svg new file mode 100644 index 00000000..af0348b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-meatball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-hail.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-hail.svg new file mode 100644 index 00000000..24c6ca47 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-hail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-meatball.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-meatball.svg new file mode 100644 index 00000000..c5aa1a0f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-meatball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-rain.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-rain.svg new file mode 100644 index 00000000..e23d20e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-showers.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-showers.svg new file mode 100644 index 00000000..ab7db986 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon-showers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon.svg new file mode 100644 index 00000000..00a5f6a8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-question.svg new file mode 100644 index 00000000..77842795 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-rain-sun.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-rain-sun.svg new file mode 100644 index 00000000..9eea6b47 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-rain-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-rain.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-rain.svg new file mode 100644 index 00000000..1ac79d15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-redo.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-redo.svg new file mode 100644 index 00000000..23895904 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-share.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-share.svg new file mode 100644 index 00000000..7ca7b621 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-shield.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-shield.svg new file mode 100644 index 00000000..80fe720e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-showers-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-showers-alt.svg new file mode 100644 index 00000000..3e557100 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-showers-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-showers-heavy.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-showers-heavy.svg new file mode 100644 index 00000000..53062d3b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-showers-heavy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-showers.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-showers.svg new file mode 100644 index 00000000..e91836f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-showers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-slash.svg new file mode 100644 index 00000000..807a6922 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-hail.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-hail.svg new file mode 100644 index 00000000..2d225a3f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-hail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-meatball.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-meatball.svg new file mode 100644 index 00000000..cc3d946c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-meatball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-rain-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-rain-alt.svg new file mode 100644 index 00000000..0cac3d20 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-rain-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-rain.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-rain.svg new file mode 100644 index 00000000..be60b470 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-tear.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-tear.svg new file mode 100644 index 00000000..b35ecccd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun.svg new file mode 100644 index 00000000..0cc85ce7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-times.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-times.svg new file mode 100644 index 00000000..610e6ae1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-unlock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-unlock.svg new file mode 100644 index 00000000..24ed718e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-upload.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-upload.svg new file mode 100644 index 00000000..e90d346c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-wifi.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-wifi.svg new file mode 100644 index 00000000..4b1a6015 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-wind.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-wind.svg new file mode 100644 index 00000000..45822179 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud-wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud.svg new file mode 100644 index 00000000..925e54e7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clouds.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clouds.svg new file mode 100644 index 00000000..d0277adf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/clouds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/club.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/club.svg new file mode 100644 index 00000000..ac3b134d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/code-branch.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/code-branch.svg new file mode 100644 index 00000000..7b52d88c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/code-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/coffee.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/coffee.svg new file mode 100644 index 00000000..e2393ca6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cog.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cog.svg new file mode 100644 index 00000000..982d8663 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/coins.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/coins.svg new file mode 100644 index 00000000..2a5a2d7a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/coins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/columns.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/columns.svg new file mode 100644 index 00000000..d61c50e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-add.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-add.svg new file mode 100644 index 00000000..d379837f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-block.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-block.svg new file mode 100644 index 00000000..3d5ce39a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-chart-lines.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-chart-lines.svg new file mode 100644 index 00000000..cdbd90d7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-chart-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-check.svg new file mode 100644 index 00000000..278144db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-dots.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-dots.svg new file mode 100644 index 00000000..08062be3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-download.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-download.svg new file mode 100644 index 00000000..2c763228 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-edit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-edit.svg new file mode 100644 index 00000000..160e773b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-exclamation.svg new file mode 100644 index 00000000..ca654f9e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-heart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-heart.svg new file mode 100644 index 00000000..9c508b93 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-image.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-image.svg new file mode 100644 index 00000000..9f8c8728 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-info.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-info.svg new file mode 100644 index 00000000..bd5dc564 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-lines.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-lines.svg new file mode 100644 index 00000000..8a2197d3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-lock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-lock.svg new file mode 100644 index 00000000..5cbe93a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-medical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-medical.svg new file mode 100644 index 00000000..d58c28e2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-message.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-message.svg new file mode 100644 index 00000000..09dacb6d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-notes.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-notes.svg new file mode 100644 index 00000000..fac5b51a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-plus.svg new file mode 100644 index 00000000..3b412b5c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-question.svg new file mode 100644 index 00000000..db93992a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-redo.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-redo.svg new file mode 100644 index 00000000..a81bf375 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-search.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-search.svg new file mode 100644 index 00000000..45c0d743 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-share.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-share.svg new file mode 100644 index 00000000..c9cd3c82 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-shield.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-shield.svg new file mode 100644 index 00000000..1862ca78 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-slash.svg new file mode 100644 index 00000000..886ea547 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-upload.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-upload.svg new file mode 100644 index 00000000..50a5ad7f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-verify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-verify.svg new file mode 100644 index 00000000..820b7f03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt-verify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt.svg new file mode 100644 index 00000000..4d8da86f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-block.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-block.svg new file mode 100644 index 00000000..bd736653 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-chart-line.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-chart-line.svg new file mode 100644 index 00000000..304982bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-chart-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-check.svg new file mode 100644 index 00000000..7cd7de70 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-dots.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-dots.svg new file mode 100644 index 00000000..644628f0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-download.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-download.svg new file mode 100644 index 00000000..f55044e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-edit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-edit.svg new file mode 100644 index 00000000..4bc845dc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-exclamation.svg new file mode 100644 index 00000000..3dd87b94 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-heart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-heart.svg new file mode 100644 index 00000000..e3094254 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-image.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-image.svg new file mode 100644 index 00000000..168f5a60 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-info-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-info-alt.svg new file mode 100644 index 00000000..285a2821 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-info-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-info.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-info.svg new file mode 100644 index 00000000..dad84924 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-lines.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-lines.svg new file mode 100644 index 00000000..30ed30b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-lock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-lock.svg new file mode 100644 index 00000000..619b81a0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-medical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-medical.svg new file mode 100644 index 00000000..060e3fdd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-message.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-message.svg new file mode 100644 index 00000000..082e0293 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-notes.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-notes.svg new file mode 100644 index 00000000..b56f53ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-plus.svg new file mode 100644 index 00000000..b303c38a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-question.svg new file mode 100644 index 00000000..f5bd066b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-redo.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-redo.svg new file mode 100644 index 00000000..8dabbbda --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-search.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-search.svg new file mode 100644 index 00000000..8f26159f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-share.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-share.svg new file mode 100644 index 00000000..8793b738 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-shield.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-shield.svg new file mode 100644 index 00000000..bb1eb376 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-slash.svg new file mode 100644 index 00000000..8afa2c5f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-upload.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-upload.svg new file mode 100644 index 00000000..299d435c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-verify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-verify.svg new file mode 100644 index 00000000..e9481222 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment-verify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment.svg new file mode 100644 index 00000000..6188444f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comments-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comments-alt.svg new file mode 100644 index 00000000..98a060f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comments-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comments.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comments.svg new file mode 100644 index 00000000..b93b5fc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comments.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compact-disc.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compact-disc.svg new file mode 100644 index 00000000..547a3070 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compact-disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comparison.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comparison.svg new file mode 100644 index 00000000..7ad377b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/comparison.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compass.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compass.svg new file mode 100644 index 00000000..2055f01a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-alt-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-alt-left.svg new file mode 100644 index 00000000..643f2511 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-alt-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-alt.svg new file mode 100644 index 00000000..fd9eaf79 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-arrows.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-arrows.svg new file mode 100644 index 00000000..5fca9154 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-lines.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-lines.svg new file mode 100644 index 00000000..94bcdaa3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-lines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-point.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-point.svg new file mode 100644 index 00000000..55295e26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-point.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-v.svg new file mode 100644 index 00000000..328abb83 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress.svg new file mode 100644 index 00000000..1d9b6a45 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/compress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/confused.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/confused.svg new file mode 100644 index 00000000..558d6c18 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/confused.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/constructor.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/constructor.svg new file mode 100644 index 00000000..ea7c948e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/constructor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copy-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copy-alt.svg new file mode 100644 index 00000000..1f0401fc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copy-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copy-landscape.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copy-landscape.svg new file mode 100644 index 00000000..f2a46d67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copy-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copy.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copy.svg new file mode 100644 index 00000000..1404ed25 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copyright.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copyright.svg new file mode 100644 index 00000000..5c877393 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/copyright.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-down-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-down-left.svg new file mode 100644 index 00000000..f240f359 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-down-right-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-down-right-alt.svg new file mode 100644 index 00000000..2dbd839e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-down-right-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-down-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-down-right.svg new file mode 100644 index 00000000..e180216f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-left-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-left-down.svg new file mode 100644 index 00000000..663e1b45 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-right-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-right-down.svg new file mode 100644 index 00000000..093d7ac4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-left-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-left-alt.svg new file mode 100644 index 00000000..524670bc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-left-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-left.svg new file mode 100644 index 00000000..cf80615f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-right-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-right-alt.svg new file mode 100644 index 00000000..db620d76 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-right-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-right.svg new file mode 100644 index 00000000..86b88314 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/corner-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/coronavirus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/coronavirus.svg new file mode 100644 index 00000000..39fef3c5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/coronavirus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/create-dashboard.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/create-dashboard.svg new file mode 100644 index 00000000..79d5e9ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/create-dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/creative-commons-pd.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/creative-commons-pd.svg new file mode 100644 index 00000000..aa766a65 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/creative-commons-pd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/credit-card-search.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/credit-card-search.svg new file mode 100644 index 00000000..23b3c250 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/credit-card-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/credit-card.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/credit-card.svg new file mode 100644 index 00000000..4f74502a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crockery.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crockery.svg new file mode 100644 index 00000000..b4eee6ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crockery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crop-alt-rotate-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crop-alt-rotate-left.svg new file mode 100644 index 00000000..ee24e17b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crop-alt-rotate-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crop-alt-rotate-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crop-alt-rotate-right.svg new file mode 100644 index 00000000..cf938644 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crop-alt-rotate-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crop-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crop-alt.svg new file mode 100644 index 00000000..e3657468 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crop-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crosshair-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crosshair-alt.svg new file mode 100644 index 00000000..960b6c37 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crosshair-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crosshair.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crosshair.svg new file mode 100644 index 00000000..1bdcded9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crosshair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crosshairs.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crosshairs.svg new file mode 100644 index 00000000..d1dbde2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/crosshairs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/css3-simple.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/css3-simple.svg new file mode 100644 index 00000000..828b4418 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/css3-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cube.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cube.svg new file mode 100644 index 00000000..c365b525 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dashboard.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dashboard.svg new file mode 100644 index 00000000..5e698696 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/data-sharing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/data-sharing.svg new file mode 100644 index 00000000..0c3700c5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/data-sharing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/database-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/database-alt.svg new file mode 100644 index 00000000..29535921 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/database-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/database.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/database.svg new file mode 100644 index 00000000..dc7d33ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desert.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desert.svg new file mode 100644 index 00000000..af7a92b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-alt-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-alt-slash.svg new file mode 100644 index 00000000..27ad6d0d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-alt.svg new file mode 100644 index 00000000..421b9f81 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-cloud-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-cloud-alt.svg new file mode 100644 index 00000000..b5d15612 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-cloud-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-slash.svg new file mode 100644 index 00000000..5a62adbf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop.svg new file mode 100644 index 00000000..57d9d36f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dialpad-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dialpad-alt.svg new file mode 100644 index 00000000..89487798 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dialpad-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dialpad.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dialpad.svg new file mode 100644 index 00000000..7b1e47d3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dialpad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/diamond.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/diamond.svg new file mode 100644 index 00000000..34af97c2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/diary-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/diary-alt.svg new file mode 100644 index 00000000..d216320f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/diary-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/diary.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/diary.svg new file mode 100644 index 00000000..8e2e3817 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/diary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-five.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-five.svg new file mode 100644 index 00000000..7a435b2b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-four.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-four.svg new file mode 100644 index 00000000..1bba1878 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-one.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-one.svg new file mode 100644 index 00000000..04b80df4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-one.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-six.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-six.svg new file mode 100644 index 00000000..d56ab21f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-six.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-three.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-three.svg new file mode 100644 index 00000000..041d80aa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-two.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-two.svg new file mode 100644 index 00000000..425f3a48 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dice-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/direction.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/direction.svg new file mode 100644 index 00000000..dcbc6976 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/directions.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/directions.svg new file mode 100644 index 00000000..eb39ecc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/directions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/discord.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/discord.svg new file mode 100644 index 00000000..149ee80d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dizzy-meh.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dizzy-meh.svg new file mode 100644 index 00000000..ee63c786 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dizzy-meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dna.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dna.svg new file mode 100644 index 00000000..405bd867 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/docker.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/docker.svg new file mode 100644 index 00000000..9f7110bb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/docker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-info.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-info.svg new file mode 100644 index 00000000..dc5b17e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-layout-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-layout-center.svg new file mode 100644 index 00000000..12ad1179 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-layout-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-layout-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-layout-left.svg new file mode 100644 index 00000000..f7b798f4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-layout-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-layout-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-layout-right.svg new file mode 100644 index 00000000..bd0b43dc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/document-layout-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dollar-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dollar-alt.svg new file mode 100644 index 00000000..ed0a2693 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dollar-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dollar-sign-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dollar-sign-alt.svg new file mode 100644 index 00000000..e97680d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dollar-sign-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dollar-sign.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dollar-sign.svg new file mode 100644 index 00000000..e97680d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dollar-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/download-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/download-alt.svg new file mode 100644 index 00000000..574f0a1b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/draggabledots.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/draggabledots.svg new file mode 100644 index 00000000..4e5d98a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/draggabledots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dribbble.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dribbble.svg new file mode 100644 index 00000000..30c8c5cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dribbble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/drill.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/drill.svg new file mode 100644 index 00000000..17a9fd18 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/drill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dropbox.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dropbox.svg new file mode 100644 index 00000000..ce0c22b1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dumbbell.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dumbbell.svg new file mode 100644 index 00000000..bb591867 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/dumbbell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ear.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ear.svg new file mode 100644 index 00000000..cef66835 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ear.svg @@ -0,0 +1 @@ +Ear \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/edit-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/edit-alt.svg new file mode 100644 index 00000000..f1a2cd61 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/edit-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/edit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/edit.svg new file mode 100644 index 00000000..62b89468 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/elipsis-double-v-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/elipsis-double-v-alt.svg new file mode 100644 index 00000000..139862bd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/elipsis-double-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ellipsis-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ellipsis-h.svg new file mode 100644 index 00000000..629a1208 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ellipsis-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ellipsis-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ellipsis-v.svg new file mode 100644 index 00000000..676776e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ellipsis-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/emoji.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/emoji.svg new file mode 100644 index 00000000..df229b98 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/emoji.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/english-to-chinese.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/english-to-chinese.svg new file mode 100644 index 00000000..1cdf4529 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/english-to-chinese.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/enter.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/enter.svg new file mode 100644 index 00000000..7458836c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/enter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-add.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-add.svg new file mode 100644 index 00000000..1664c1c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-alt.svg new file mode 100644 index 00000000..2474f096 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-block.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-block.svg new file mode 100644 index 00000000..c7540296 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-bookmark.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-bookmark.svg new file mode 100644 index 00000000..21b6875c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-check.svg new file mode 100644 index 00000000..b8fc89f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-download-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-download-alt.svg new file mode 100644 index 00000000..a5435d3d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-download.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-download.svg new file mode 100644 index 00000000..3f2a77fd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-edit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-edit.svg new file mode 100644 index 00000000..a79c846f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-exclamation.svg new file mode 100644 index 00000000..a6739b75 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-heart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-heart.svg new file mode 100644 index 00000000..dc0958d1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-info.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-info.svg new file mode 100644 index 00000000..60f9c0ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-lock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-lock.svg new file mode 100644 index 00000000..d9e8dbcf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-minus.svg new file mode 100644 index 00000000..c0964765 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-open.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-open.svg new file mode 100644 index 00000000..50bece7a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-question.svg new file mode 100644 index 00000000..eb84a10b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-receive.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-receive.svg new file mode 100644 index 00000000..1107934c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-receive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-redo.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-redo.svg new file mode 100644 index 00000000..dc933a22 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-search.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-search.svg new file mode 100644 index 00000000..0aa84a20 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-send.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-send.svg new file mode 100644 index 00000000..33287d50 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-share.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-share.svg new file mode 100644 index 00000000..b72b9cbb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-shield.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-shield.svg new file mode 100644 index 00000000..a760411c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-star.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-star.svg new file mode 100644 index 00000000..23942795 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-times.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-times.svg new file mode 100644 index 00000000..cb7ff2c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-upload-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-upload-alt.svg new file mode 100644 index 00000000..a7807293 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-upload.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-upload.svg new file mode 100644 index 00000000..a4604f02 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope.svg new file mode 100644 index 00000000..f88dd1dc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelopes.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelopes.svg new file mode 100644 index 00000000..b02eb179 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/envelopes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/equal-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/equal-circle.svg new file mode 100644 index 00000000..d0f2c02e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/equal-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/estate.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/estate.svg new file mode 100644 index 00000000..798130de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/estate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/euro-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/euro-circle.svg new file mode 100644 index 00000000..4b98785c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/euro-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/euro.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/euro.svg new file mode 100644 index 00000000..84688e0e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/euro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exchange-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exchange-alt.svg new file mode 100644 index 00000000..b36fd9ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exchange-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exchange.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exchange.svg new file mode 100644 index 00000000..37b3114f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exchange.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation-circle.svg new file mode 100644 index 00000000..ed889cdb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation-octagon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation-octagon.svg new file mode 100644 index 00000000..e68532fb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation-triangle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation-triangle.svg new file mode 100644 index 00000000..49d4ec27 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation.svg new file mode 100644 index 00000000..d283f072 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclude.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclude.svg new file mode 100644 index 00000000..e4b25a4d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exclude.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exit.svg new file mode 100644 index 00000000..4009a265 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-alt.svg new file mode 100644 index 00000000..3817a587 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-arrows-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-arrows-alt.svg new file mode 100644 index 00000000..0197d115 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-arrows-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-arrows.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-arrows.svg new file mode 100644 index 00000000..906d9fff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-from-corner.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-from-corner.svg new file mode 100644 index 00000000..d8dcb4f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-from-corner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-left.svg new file mode 100644 index 00000000..565aea09 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-right.svg new file mode 100644 index 00000000..6b0fb1c7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/expand-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/export.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/export.svg new file mode 100644 index 00000000..64b67451 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exposure-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exposure-alt.svg new file mode 100644 index 00000000..b17b9594 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exposure-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exposure-increase.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exposure-increase.svg new file mode 100644 index 00000000..eb3dc393 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/exposure-increase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/external-link-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/external-link-alt.svg new file mode 100644 index 00000000..196abdfa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/external-link-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/eye-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/eye-slash.svg new file mode 100644 index 00000000..702f0a87 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/eye-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/eye.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/eye.svg new file mode 100644 index 00000000..5f7293fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook-f.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook-f.svg new file mode 100644 index 00000000..f1a9f164 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook-messenger-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook-messenger-alt.svg new file mode 100644 index 00000000..47a18587 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook-messenger-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook-messenger.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook-messenger.svg new file mode 100644 index 00000000..32465e10 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook.svg new file mode 100644 index 00000000..c1be95a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fahrenheit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fahrenheit.svg new file mode 100644 index 00000000..8af9d000 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fahrenheit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fast-mail-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fast-mail-alt.svg new file mode 100644 index 00000000..123e3706 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fast-mail-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fast-mail.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fast-mail.svg new file mode 100644 index 00000000..78134876 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fast-mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/favorite.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/favorite.svg new file mode 100644 index 00000000..3a22c296 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/feedback.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/feedback.svg new file mode 100644 index 00000000..663d7a09 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/feedback.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fidget-spinner.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fidget-spinner.svg new file mode 100644 index 00000000..18bd7603 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fidget-spinner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-alt.svg new file mode 100644 index 00000000..d2f33814 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-blank.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-blank.svg new file mode 100644 index 00000000..3462dc71 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-block-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-block-alt.svg new file mode 100644 index 00000000..473d710c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-block-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-bookmark-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-bookmark-alt.svg new file mode 100644 index 00000000..778bbbf9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-bookmark-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-check-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-check-alt.svg new file mode 100644 index 00000000..c689bb71 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-check-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-check.svg new file mode 100644 index 00000000..ceeb2ab6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-contract-dollar.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-contract-dollar.svg new file mode 100644 index 00000000..4f1286db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-contract-dollar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-contract.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-contract.svg new file mode 100644 index 00000000..36294fa9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-contract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-copy-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-copy-alt.svg new file mode 100644 index 00000000..578263ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-copy-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-download-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-download-alt.svg new file mode 100644 index 00000000..f8c604f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-download.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-download.svg new file mode 100644 index 00000000..2a3e7495 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-edit-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-edit-alt.svg new file mode 100644 index 00000000..71edd3f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-edit-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-exclamation-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-exclamation-alt.svg new file mode 100644 index 00000000..fe0cf9d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-exclamation-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-exclamation.svg new file mode 100644 index 00000000..a594dda0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-export.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-export.svg new file mode 100644 index 00000000..df89a79a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-graph.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-graph.svg new file mode 100644 index 00000000..9129f453 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-graph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-heart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-heart.svg new file mode 100644 index 00000000..8dad6d16 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-import.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-import.svg new file mode 100644 index 00000000..02fa203a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-info-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-info-alt.svg new file mode 100644 index 00000000..42b1c713 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-info-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-landscape-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-landscape-alt.svg new file mode 100644 index 00000000..61d665cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-landscape-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-landscape.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-landscape.svg new file mode 100644 index 00000000..06a88141 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-lanscape-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-lanscape-slash.svg new file mode 100644 index 00000000..9785da2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-lanscape-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-lock-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-lock-alt.svg new file mode 100644 index 00000000..9eb030a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-lock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-medical-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-medical-alt.svg new file mode 100644 index 00000000..a07ed3a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-medical-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-medical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-medical.svg new file mode 100644 index 00000000..0e0fc2db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-minus-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-minus-alt.svg new file mode 100644 index 00000000..2241ed91 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-minus-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-minus.svg new file mode 100644 index 00000000..c7210262 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-network.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-network.svg new file mode 100644 index 00000000..dbfec229 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-plus-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-plus-alt.svg new file mode 100644 index 00000000..caf7adad --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-plus-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-plus.svg new file mode 100644 index 00000000..a378a74c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-question-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-question-alt.svg new file mode 100644 index 00000000..ae91dd2a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-question-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-question.svg new file mode 100644 index 00000000..a11da238 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-redo-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-redo-alt.svg new file mode 100644 index 00000000..5cb444b1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-redo-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-search-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-search-alt.svg new file mode 100644 index 00000000..54b4a551 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-search-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-share-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-share-alt.svg new file mode 100644 index 00000000..4239cfeb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-shield-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-shield-alt.svg new file mode 100644 index 00000000..46e3d6d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-shield-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-slash.svg new file mode 100644 index 00000000..18416ffe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-times-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-times-alt.svg new file mode 100644 index 00000000..66724983 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-times-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-times.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-times.svg new file mode 100644 index 00000000..4399302b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-upload-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-upload-alt.svg new file mode 100644 index 00000000..be87c540 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-upload.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-upload.svg new file mode 100644 index 00000000..a87ebcbf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file.svg new file mode 100644 index 00000000..a6a34603 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/files-landscapes-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/files-landscapes-alt.svg new file mode 100644 index 00000000..8a934f33 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/files-landscapes-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/files-landscapes.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/files-landscapes.svg new file mode 100644 index 00000000..7bbf700d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/files-landscapes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/film.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/film.svg new file mode 100644 index 00000000..4f4f47dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/filter-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/filter-slash.svg new file mode 100644 index 00000000..3c4342b4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/filter-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/filter.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/filter.svg new file mode 100644 index 00000000..f7f8681c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fire.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fire.svg new file mode 100644 index 00000000..14245fca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flask-potion.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flask-potion.svg new file mode 100644 index 00000000..543dda89 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flask-potion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flask.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flask.svg new file mode 100644 index 00000000..28c4078a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-h-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-h-alt.svg new file mode 100644 index 00000000..4491c5ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-h-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-h.svg new file mode 100644 index 00000000..efa607c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-v-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-v-alt.svg new file mode 100644 index 00000000..4672f9d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-v.svg new file mode 100644 index 00000000..34c86391 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flip-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flower.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flower.svg new file mode 100644 index 00000000..c049f3f6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/focus-add.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/focus-add.svg new file mode 100644 index 00000000..8b262356 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/focus-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/focus-target.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/focus-target.svg new file mode 100644 index 00000000..36af61a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/focus-target.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/focus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/focus.svg new file mode 100644 index 00000000..386ce829 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/focus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-check.svg new file mode 100644 index 00000000..3015ec07 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-download.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-download.svg new file mode 100644 index 00000000..f9c0de25 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-exclamation.svg new file mode 100644 index 00000000..29ca0b05 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-heart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-heart.svg new file mode 100644 index 00000000..b7addc43 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-info.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-info.svg new file mode 100644 index 00000000..b37eab1b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-lock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-lock.svg new file mode 100644 index 00000000..ee2c366a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-medical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-medical.svg new file mode 100644 index 00000000..8c0fba6a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-minus.svg new file mode 100644 index 00000000..856b9acf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-network.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-network.svg new file mode 100644 index 00000000..27ecb206 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-open.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-open.svg new file mode 100644 index 00000000..d69f6179 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-plus.svg new file mode 100644 index 00000000..8c0fba6a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-question.svg new file mode 100644 index 00000000..f211841d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-slash.svg new file mode 100644 index 00000000..7a6b8f6b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-times.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-times.svg new file mode 100644 index 00000000..4864355a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-upload.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-upload.svg new file mode 100644 index 00000000..f911607d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder.svg new file mode 100644 index 00000000..0127e9bd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/font.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/font.svg new file mode 100644 index 00000000..fca165f8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/font.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/football-american.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/football-american.svg new file mode 100644 index 00000000..f50c79d6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/football-american.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/football-ball.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/football-ball.svg new file mode 100644 index 00000000..e9446dee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/football-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/football.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/football.svg new file mode 100644 index 00000000..67ebd24a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/forecastcloud-moon-tear.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/forecastcloud-moon-tear.svg new file mode 100644 index 00000000..6a940148 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/forecastcloud-moon-tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/forwaded-call.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/forwaded-call.svg new file mode 100644 index 00000000..f61d55d7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/forwaded-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/forward.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/forward.svg new file mode 100644 index 00000000..d0f27c5d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/frown.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/frown.svg new file mode 100644 index 00000000..7a83728c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/game-structure.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/game-structure.svg new file mode 100644 index 00000000..e795fd97 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/game-structure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/gift.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/gift.svg new file mode 100644 index 00000000..f5ad39b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/github-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/github-alt.svg new file mode 100644 index 00000000..8ea8b9ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/github-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/github.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/github.svg new file mode 100644 index 00000000..24024a64 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/gitlab.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/gitlab.svg new file mode 100644 index 00000000..f0705eb0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-martini-alt-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-martini-alt-slash.svg new file mode 100644 index 00000000..edec0a60 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-martini-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-martini-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-martini-alt.svg new file mode 100644 index 00000000..34fb0307 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-martini-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-martini.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-martini.svg new file mode 100644 index 00000000..7a4ffc4a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-martini.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-tea.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-tea.svg new file mode 100644 index 00000000..bdab95b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass-tea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass.svg new file mode 100644 index 00000000..444ca514 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/globe.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/globe.svg new file mode 100644 index 00000000..714fd374 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/gold.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/gold.svg new file mode 100644 index 00000000..f3fba2c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/golf-ball.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/golf-ball.svg new file mode 100644 index 00000000..1bf48a55 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/golf-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-drive-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-drive-alt.svg new file mode 100644 index 00000000..a84c8baf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-drive-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-drive.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-drive.svg new file mode 100644 index 00000000..166736ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-hangouts-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-hangouts-alt.svg new file mode 100644 index 00000000..6daa88dc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-hangouts-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-hangouts.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-hangouts.svg new file mode 100644 index 00000000..fbce5acf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-hangouts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-play.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-play.svg new file mode 100644 index 00000000..517eb082 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google.svg new file mode 100644 index 00000000..80340154 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/graduation-cap.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/graduation-cap.svg new file mode 100644 index 00000000..c68f63d1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/graduation-cap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/graph-bar.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/graph-bar.svg new file mode 100644 index 00000000..af01d934 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/graph-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grid.svg new file mode 100644 index 00000000..7e329c61 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grids.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grids.svg new file mode 100644 index 00000000..365b935e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grids.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grin-tongue-wink-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grin-tongue-wink-alt.svg new file mode 100644 index 00000000..34665870 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grin-tongue-wink-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grin-tongue-wink.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grin-tongue-wink.svg new file mode 100644 index 00000000..79062e98 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grin-tongue-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grin.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grin.svg new file mode 100644 index 00000000..f8e6b593 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grip-horizontal-line.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grip-horizontal-line.svg new file mode 100644 index 00000000..7e735700 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/grip-horizontal-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hard-hat.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hard-hat.svg new file mode 100644 index 00000000..8b9c1886 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hard-hat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hdd.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hdd.svg new file mode 100644 index 00000000..ed7d65b2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hdd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/head-side-cough.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/head-side-cough.svg new file mode 100644 index 00000000..db8f4f8d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/head-side-cough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/head-side-mask.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/head-side-mask.svg new file mode 100644 index 00000000..9361ac42 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/head-side-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/head-side.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/head-side.svg new file mode 100644 index 00000000..86458546 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/head-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/headphone-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/headphone-slash.svg new file mode 100644 index 00000000..f3600225 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/headphone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/headphones-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/headphones-alt.svg new file mode 100644 index 00000000..41117fae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/headphones-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/headphones.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/headphones.svg new file mode 100644 index 00000000..58540796 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-alt.svg new file mode 100644 index 00000000..9a0b8499 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-break.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-break.svg new file mode 100644 index 00000000..116bcf72 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-break.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-medical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-medical.svg new file mode 100644 index 00000000..8ad025bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-rate.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-rate.svg new file mode 100644 index 00000000..ff779bb3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-rate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-sign.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-sign.svg new file mode 100644 index 00000000..ae38adf0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart.svg new file mode 100644 index 00000000..2d0107bc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heartbeat.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heartbeat.svg new file mode 100644 index 00000000..0667ff05 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/heartbeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hindi-to-chinese.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hindi-to-chinese.svg new file mode 100644 index 00000000..602169c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hindi-to-chinese.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hipchat.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hipchat.svg new file mode 100644 index 00000000..d0ecfa0a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hipchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/history-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/history-alt.svg new file mode 100644 index 00000000..10d42733 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/history-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/history.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/history.svg new file mode 100644 index 00000000..c85b7703 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/home-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/home-alt.svg new file mode 100644 index 00000000..798130de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/home-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/home.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/home.svg new file mode 100644 index 00000000..a937bb66 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-align-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-align-center.svg new file mode 100644 index 00000000..f702b34e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-align-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-align-left.svg new file mode 100644 index 00000000..5f115c70 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-align-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-align-right.svg new file mode 100644 index 00000000..7a9266d6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-distribution-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-distribution-center.svg new file mode 100644 index 00000000..face1016 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-distribution-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-distribution-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-distribution-left.svg new file mode 100644 index 00000000..309e0a8e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-distribution-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-distribution-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-distribution-right.svg new file mode 100644 index 00000000..0788c4f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/horizontal-distribution-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hospital-square-sign.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hospital-square-sign.svg new file mode 100644 index 00000000..59809b7a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hospital-square-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hospital-symbol.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hospital-symbol.svg new file mode 100644 index 00000000..6460cd42 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hospital-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hospital.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hospital.svg new file mode 100644 index 00000000..01ef0ed8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hourglass.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hourglass.svg new file mode 100644 index 00000000..3a1946bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/house-user.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/house-user.svg new file mode 100644 index 00000000..3368e6cd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/house-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html3-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html3-alt.svg new file mode 100644 index 00000000..d4a2e60b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html3-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html3.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html3.svg new file mode 100644 index 00000000..1855b17c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html5-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html5-alt.svg new file mode 100644 index 00000000..45436381 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html5-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html5.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html5.svg new file mode 100644 index 00000000..76d53944 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hunting.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hunting.svg new file mode 100644 index 00000000..3aff6681 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/hunting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/icons.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/icons.svg new file mode 100644 index 00000000..7e9cd14a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/icons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/illustration.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/illustration.svg new file mode 100644 index 00000000..68ec41d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/illustration.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-alt-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-alt-slash.svg new file mode 100644 index 00000000..39cbbb01 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-block.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-block.svg new file mode 100644 index 00000000..389475f5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-broken.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-broken.svg new file mode 100644 index 00000000..cb2f44e9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-check.svg new file mode 100644 index 00000000..ff00249d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-download.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-download.svg new file mode 100644 index 00000000..eebef140 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-edit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-edit.svg new file mode 100644 index 00000000..e06d36f4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-lock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-lock.svg new file mode 100644 index 00000000..05bbaf72 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-minus.svg new file mode 100644 index 00000000..174b6e0d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-plus.svg new file mode 100644 index 00000000..18563f12 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-question.svg new file mode 100644 index 00000000..3f457034 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-redo.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-redo.svg new file mode 100644 index 00000000..2987416b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-resize-landscape.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-resize-landscape.svg new file mode 100644 index 00000000..6532370c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-resize-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-resize-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-resize-square.svg new file mode 100644 index 00000000..38766f2b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-resize-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-search.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-search.svg new file mode 100644 index 00000000..5283d106 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-share.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-share.svg new file mode 100644 index 00000000..10f74623 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-shield.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-shield.svg new file mode 100644 index 00000000..ef0210e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-slash.svg new file mode 100644 index 00000000..573e5c0a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-times.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-times.svg new file mode 100644 index 00000000..c7555577 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-upload.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-upload.svg new file mode 100644 index 00000000..ba627e08 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-v.svg new file mode 100644 index 00000000..c9abb06f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image.svg new file mode 100644 index 00000000..15700482 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/images.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/images.svg new file mode 100644 index 00000000..dbf9da48 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/import.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/import.svg new file mode 100644 index 00000000..0eff75e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/inbox.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/inbox.svg new file mode 100644 index 00000000..cf35f3b9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/incoming-call.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/incoming-call.svg new file mode 100644 index 00000000..751128a6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/incoming-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/info-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/info-circle.svg new file mode 100644 index 00000000..8047ca19 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/info-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/info.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/info.svg new file mode 100644 index 00000000..ff73496d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/instagram-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/instagram-alt.svg new file mode 100644 index 00000000..11edadae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/instagram-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/instagram.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/instagram.svg new file mode 100644 index 00000000..fd2d9e13 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/intercom-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/intercom-alt.svg new file mode 100644 index 00000000..a071ce47 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/intercom-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/intercom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/intercom.svg new file mode 100644 index 00000000..fcdab02f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/intercom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/invoice.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/invoice.svg new file mode 100644 index 00000000..a463608f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/invoice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/italic.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/italic.svg new file mode 100644 index 00000000..2b571ac0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/jackhammer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/jackhammer.svg new file mode 100644 index 00000000..32575b41 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/jackhammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/java-script.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/java-script.svg new file mode 100644 index 00000000..cfb5216e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/java-script.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/kayak.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/kayak.svg new file mode 100644 index 00000000..89af5fac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/kayak.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/key-skeleton-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/key-skeleton-alt.svg new file mode 100644 index 00000000..e3c7f73e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/key-skeleton-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/key-skeleton.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/key-skeleton.svg new file mode 100644 index 00000000..b3a77b40 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/key-skeleton.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard-alt.svg new file mode 100644 index 00000000..994fed4c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard-hide.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard-hide.svg new file mode 100644 index 00000000..1d7897c8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard-hide.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard-show.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard-show.svg new file mode 100644 index 00000000..61a761d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard-show.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard.svg new file mode 100644 index 00000000..06e3e2cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyhole-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyhole-circle.svg new file mode 100644 index 00000000..7a2b3538 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyhole-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyhole-square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyhole-square-full.svg new file mode 100644 index 00000000..c0248210 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyhole-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyhole-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyhole-square.svg new file mode 100644 index 00000000..c04c20f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/keyhole-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/kid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/kid.svg new file mode 100644 index 00000000..4cca4f13 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/kid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/label-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/label-alt.svg new file mode 100644 index 00000000..152d21f0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/label-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/label.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/label.svg new file mode 100644 index 00000000..176643b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/label.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lamp.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lamp.svg new file mode 100644 index 00000000..d9715b43 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/language.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/language.svg new file mode 100644 index 00000000..a90afc19 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laptop-cloud.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laptop-cloud.svg new file mode 100644 index 00000000..25d8be51 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laptop-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laptop-connection.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laptop-connection.svg new file mode 100644 index 00000000..ee999396 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laptop-connection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laptop.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laptop.svg new file mode 100644 index 00000000..0634d68e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laughing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laughing.svg new file mode 100644 index 00000000..8fe80ffd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/laughing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layer-group-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layer-group-slash.svg new file mode 100644 index 00000000..0b623dd2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layer-group-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layer-group.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layer-group.svg new file mode 100644 index 00000000..5fa2364d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layer-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layers-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layers-alt.svg new file mode 100644 index 00000000..7e02288f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layers-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layers-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layers-slash.svg new file mode 100644 index 00000000..dd16a79b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layers-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layers.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layers.svg new file mode 100644 index 00000000..7f90af89 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-arrow-from-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-arrow-from-left.svg new file mode 100644 index 00000000..d22657eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-arrow-from-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-arrow-to-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-arrow-to-left.svg new file mode 100644 index 00000000..0304637e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-arrow-to-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-indent-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-indent-alt.svg new file mode 100644 index 00000000..18f1b49b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-indent.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-indent.svg new file mode 100644 index 00000000..3cd3e957 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-to-right-text-direction.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-to-right-text-direction.svg new file mode 100644 index 00000000..ba755a02 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/left-to-right-text-direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-chinese-a.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-chinese-a.svg new file mode 100644 index 00000000..475612f0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-chinese-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-english-a.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-english-a.svg new file mode 100644 index 00000000..73ec88c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-english-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-hindi-a.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-hindi-a.svg new file mode 100644 index 00000000..2bbd2bec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-hindi-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-japanese-a.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-japanese-a.svg new file mode 100644 index 00000000..a4ceaa08 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/letter-japanese-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/life-ring.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/life-ring.svg new file mode 100644 index 00000000..9727a434 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/life-ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lightbulb-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lightbulb-alt.svg new file mode 100644 index 00000000..dc1d1efb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lightbulb-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lightbulb.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lightbulb.svg new file mode 100644 index 00000000..cd395b6c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/line-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/line-alt.svg new file mode 100644 index 00000000..55d857e2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/line-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/line-spacing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/line-spacing.svg new file mode 100644 index 00000000..5fcf76fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/line-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/line.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/line.svg new file mode 100644 index 00000000..012c4f38 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-add.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-add.svg new file mode 100644 index 00000000..29e79c47 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-alt.svg new file mode 100644 index 00000000..726adeac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-broken.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-broken.svg new file mode 100644 index 00000000..6d09f33b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-h.svg new file mode 100644 index 00000000..bef7f5b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link.svg new file mode 100644 index 00000000..e4387170 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/linkedin-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/linkedin-alt.svg new file mode 100644 index 00000000..d48cf468 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/linkedin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/linkedin.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/linkedin.svg new file mode 100644 index 00000000..35475751 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/linux.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/linux.svg new file mode 100644 index 00000000..a092a559 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/linux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lira-sign.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lira-sign.svg new file mode 100644 index 00000000..d83306e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lira-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ol-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ol-alt.svg new file mode 100644 index 00000000..80468916 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ol-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ol.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ol.svg new file mode 100644 index 00000000..6363815e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ui-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ui-alt.svg new file mode 100644 index 00000000..6b9d95d3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ui-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ul.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ul.svg new file mode 100644 index 00000000..75fcddf4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/list-ul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-arrow-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-arrow-alt.svg new file mode 100644 index 00000000..1247746f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-arrow-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-arrow.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-arrow.svg new file mode 100644 index 00000000..b21c6509 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-pin-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-pin-alt.svg new file mode 100644 index 00000000..29c519d0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-pin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-point.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-point.svg new file mode 100644 index 00000000..1be62295 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/location-point.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-access.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-access.svg new file mode 100644 index 00000000..4545207d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-access.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-alt.svg new file mode 100644 index 00000000..9f2dedd6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-open-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-open-alt.svg new file mode 100644 index 00000000..0551710b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-open-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-slash.svg new file mode 100644 index 00000000..233acf8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock.svg new file mode 100644 index 00000000..3ca5d82e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lottiefiles-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lottiefiles-alt.svg new file mode 100644 index 00000000..5ba4073c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lottiefiles-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lottiefiles.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lottiefiles.svg new file mode 100644 index 00000000..9b2fb47b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/lottiefiles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/luggage-cart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/luggage-cart.svg new file mode 100644 index 00000000..3bf5cdff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/luggage-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mailbox-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mailbox-alt.svg new file mode 100644 index 00000000..3760ff12 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mailbox-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mailbox.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mailbox.svg new file mode 100644 index 00000000..c8699843 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mailbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-alt.svg new file mode 100644 index 00000000..bb64d402 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-edit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-edit.svg new file mode 100644 index 00000000..f65e543c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-info.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-info.svg new file mode 100644 index 00000000..b7adca33 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-minus.svg new file mode 100644 index 00000000..55c2aa5b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-plus.svg new file mode 100644 index 00000000..b0b7202d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-question.svg new file mode 100644 index 00000000..43b0c622 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-shield.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-shield.svg new file mode 100644 index 00000000..b95e4816 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-slash.svg new file mode 100644 index 00000000..5d0272d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker.svg new file mode 100644 index 00000000..4d8d8109 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-marker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-pin-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-pin-alt.svg new file mode 100644 index 00000000..5fc22cf3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-pin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-pin.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-pin.svg new file mode 100644 index 00000000..14df04c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map.svg new file mode 100644 index 00000000..9c072c51 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mars.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mars.svg new file mode 100644 index 00000000..0490e7d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/master-card.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/master-card.svg new file mode 100644 index 00000000..1105bf0d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/master-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/maximize-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/maximize-left.svg new file mode 100644 index 00000000..c9acf3d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/maximize-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medal.svg new file mode 100644 index 00000000..a4606f27 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medical-drip.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medical-drip.svg new file mode 100644 index 00000000..ef7f629a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medical-drip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medical-square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medical-square-full.svg new file mode 100644 index 00000000..2b2e7897 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medical-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medical-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medical-square.svg new file mode 100644 index 00000000..a8ebd145 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medical-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medium-m.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medium-m.svg new file mode 100644 index 00000000..8e086b0f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medium-m.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medkit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medkit.svg new file mode 100644 index 00000000..2be7f4f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meeting-board.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meeting-board.svg new file mode 100644 index 00000000..96284c7d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meeting-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/megaphone.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/megaphone.svg new file mode 100644 index 00000000..de53e5fc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/megaphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meh-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meh-alt.svg new file mode 100644 index 00000000..d1c408a1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meh-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meh-closed-eye.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meh-closed-eye.svg new file mode 100644 index 00000000..afc796de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meh-closed-eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meh.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meh.svg new file mode 100644 index 00000000..50c924ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/message.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/message.svg new file mode 100644 index 00000000..e127f808 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/metro.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/metro.svg new file mode 100644 index 00000000..17a3e278 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/metro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microphone-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microphone-slash.svg new file mode 100644 index 00000000..a2c30be9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microphone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microphone.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microphone.svg new file mode 100644 index 00000000..b24c6c94 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microscope.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microscope.svg new file mode 100644 index 00000000..3132e070 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microsoft.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microsoft.svg new file mode 100644 index 00000000..fe83b6d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/microsoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-circle.svg new file mode 100644 index 00000000..95f0d31d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-path.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-path.svg new file mode 100644 index 00000000..747a636a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-path.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-square-full.svg new file mode 100644 index 00000000..5958d87a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-square.svg new file mode 100644 index 00000000..c221682d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus.svg new file mode 100644 index 00000000..1431a275 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/missed-call.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/missed-call.svg new file mode 100644 index 00000000..86404cec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/missed-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mobile-android-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mobile-android-alt.svg new file mode 100644 index 00000000..5bbed561 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mobile-android-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mobile-android.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mobile-android.svg new file mode 100644 index 00000000..19662540 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mobile-android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mobile-vibrate.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mobile-vibrate.svg new file mode 100644 index 00000000..3be068af --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mobile-vibrate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/modem.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/modem.svg new file mode 100644 index 00000000..01ba062d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/modem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-bill-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-bill-slash.svg new file mode 100644 index 00000000..273e3e17 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-bill-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-bill-stack.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-bill-stack.svg new file mode 100644 index 00000000..724ea170 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-bill-stack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-bill.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-bill.svg new file mode 100644 index 00000000..b32dcde4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-bill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-insert.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-insert.svg new file mode 100644 index 00000000..43c94324 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-insert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-stack.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-stack.svg new file mode 100644 index 00000000..26e06d38 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-stack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-withdraw.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-withdraw.svg new file mode 100644 index 00000000..c6cbe2c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-withdraw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-withdrawal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-withdrawal.svg new file mode 100644 index 00000000..d988f66b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/money-withdrawal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moneybag-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moneybag-alt.svg new file mode 100644 index 00000000..1216fe39 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moneybag-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moneybag.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moneybag.svg new file mode 100644 index 00000000..33731154 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moneybag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/monitor-heart-rate.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/monitor-heart-rate.svg new file mode 100644 index 00000000..56f6a2c7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/monitor-heart-rate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/monitor.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/monitor.svg new file mode 100644 index 00000000..2510a7f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/monitor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moon-eclipse.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moon-eclipse.svg new file mode 100644 index 00000000..eeab8a9b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moon-eclipse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moon.svg new file mode 100644 index 00000000..dce131c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moonset.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moonset.svg new file mode 100644 index 00000000..c13f1c7b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/moonset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mountains-sun.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mountains-sun.svg new file mode 100644 index 00000000..6ff47aff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mountains-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mountains.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mountains.svg new file mode 100644 index 00000000..64f9b5dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mountains.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mouse-alt-2.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mouse-alt-2.svg new file mode 100644 index 00000000..a5a1fc6c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mouse-alt-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mouse-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mouse-alt.svg new file mode 100644 index 00000000..dfbf4c14 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mouse-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mouse.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mouse.svg new file mode 100644 index 00000000..3083cfd6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/mouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/multiply.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/multiply.svg new file mode 100644 index 00000000..f1432176 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/multiply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/music-note.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/music-note.svg new file mode 100644 index 00000000..b4326467 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/music-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/music-tune-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/music-tune-slash.svg new file mode 100644 index 00000000..56af3c57 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/music-tune-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/music.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/music.svg new file mode 100644 index 00000000..bf24f5e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/n-a.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/n-a.svg new file mode 100644 index 00000000..a3bfe507 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/n-a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/navigator.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/navigator.svg new file mode 100644 index 00000000..63508c77 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/navigator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/nerd.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/nerd.svg new file mode 100644 index 00000000..2c6b292e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/nerd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/newspaper.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/newspaper.svg new file mode 100644 index 00000000..a54486d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ninja.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ninja.svg new file mode 100644 index 00000000..ea3f77ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ninja.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/no-entry.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/no-entry.svg new file mode 100644 index 00000000..6bda430d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/no-entry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/notebooks.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/notebooks.svg new file mode 100644 index 00000000..61893985 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/notebooks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/notes.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/notes.svg new file mode 100644 index 00000000..62b7c52b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/object-group.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/object-group.svg new file mode 100644 index 00000000..cb295809 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/object-ungroup.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/object-ungroup.svg new file mode 100644 index 00000000..c86af38c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/octagon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/octagon.svg new file mode 100644 index 00000000..b13dd410 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/okta.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/okta.svg new file mode 100644 index 00000000..5c61f9d7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/okta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/opera-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/opera-alt.svg new file mode 100644 index 00000000..be5a1e76 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/opera-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/opera.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/opera.svg new file mode 100644 index 00000000..da6e1ee5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/opera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/outgoing-call.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/outgoing-call.svg new file mode 100644 index 00000000..d7520f7e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/outgoing-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/package.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/package.svg new file mode 100644 index 00000000..58327595 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/package.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/padlock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/padlock.svg new file mode 100644 index 00000000..42055ac3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/padlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pagelines.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pagelines.svg new file mode 100644 index 00000000..549bd873 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pagelines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pagerduty.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pagerduty.svg new file mode 100644 index 00000000..5a6ddaef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pagerduty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paint-tool.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paint-tool.svg new file mode 100644 index 00000000..41612cbd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paint-tool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/palette.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/palette.svg new file mode 100644 index 00000000..12d5e2f8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panel-add.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panel-add.svg new file mode 100644 index 00000000..44588892 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panel-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panorama-h-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panorama-h-alt.svg new file mode 100644 index 00000000..ab8b19cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panorama-h-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panorama-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panorama-h.svg new file mode 100644 index 00000000..fd3a9eba --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panorama-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panorama-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panorama-v.svg new file mode 100644 index 00000000..0ba9770a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/panorama-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paperclip.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paperclip.svg new file mode 100644 index 00000000..8b90eff0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paragraph.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paragraph.svg new file mode 100644 index 00000000..422c44fe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/parcel.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/parcel.svg new file mode 100644 index 00000000..4be7d82b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/parcel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/parking-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/parking-circle.svg new file mode 100644 index 00000000..3a7d1341 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/parking-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/parking-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/parking-square.svg new file mode 100644 index 00000000..cee7b358 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/parking-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pathfinder-unite.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pathfinder-unite.svg new file mode 100644 index 00000000..da16fde2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pathfinder-unite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pathfinder.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pathfinder.svg new file mode 100644 index 00000000..4aa1c3ad --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pathfinder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pause-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pause-circle.svg new file mode 100644 index 00000000..98f7effb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pause.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pause.svg new file mode 100644 index 00000000..06fb2270 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paypal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paypal.svg new file mode 100644 index 00000000..b2fc3f93 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pen.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pen.svg new file mode 100644 index 00000000..e10bfd8c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pentagon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pentagon.svg new file mode 100644 index 00000000..409d8177 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pentagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/percentage.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/percentage.svg new file mode 100644 index 00000000..ace24e2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/percentage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-alt.svg new file mode 100644 index 00000000..4496fa1b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-pause.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-pause.svg new file mode 100644 index 00000000..b1177e80 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-slash.svg new file mode 100644 index 00000000..847c48ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-times.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-times.svg new file mode 100644 index 00000000..cbaaf588 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-volume.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-volume.svg new file mode 100644 index 00000000..4f4529d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone-volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone.svg new file mode 100644 index 00000000..77803625 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/picture.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/picture.svg new file mode 100644 index 00000000..9e17ba0e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/picture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pizza-slice.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pizza-slice.svg new file mode 100644 index 00000000..ee233279 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pizza-slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane-arrival.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane-arrival.svg new file mode 100644 index 00000000..2619a81d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane-arrival.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane-departure.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane-departure.svg new file mode 100644 index 00000000..ff10e8c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane-departure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane-fly.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane-fly.svg new file mode 100644 index 00000000..abf3b1c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane-fly.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane.svg new file mode 100644 index 00000000..39fd8c8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/play-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/play-circle.svg new file mode 100644 index 00000000..6c06e6c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/play.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/play.svg new file mode 100644 index 00000000..98d8d491 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plug.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plug.svg new file mode 100644 index 00000000..9abe3b8e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plus-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plus-circle.svg new file mode 100644 index 00000000..77a94259 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plus-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plus-square.svg new file mode 100644 index 00000000..3876d520 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plus.svg new file mode 100644 index 00000000..399f7492 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/podium.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/podium.svg new file mode 100644 index 00000000..9c78b32b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/podium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/polygon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/polygon.svg new file mode 100644 index 00000000..05fcefc9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/post-stamp.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/post-stamp.svg new file mode 100644 index 00000000..050c67ee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/post-stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/postcard.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/postcard.svg new file mode 100644 index 00000000..55c07a3b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/postcard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pound-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pound-circle.svg new file mode 100644 index 00000000..5dba6f1e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pound-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pound.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pound.svg new file mode 100644 index 00000000..68ad8e87 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pound.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/power.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/power.svg new file mode 100644 index 00000000..71986c63 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/prescription-bottle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/prescription-bottle.svg new file mode 100644 index 00000000..71fb244c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/prescription-bottle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-check.svg new file mode 100644 index 00000000..2468ad56 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-edit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-edit.svg new file mode 100644 index 00000000..c8b7091f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-line.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-line.svg new file mode 100644 index 00000000..2d83f075 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-lines-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-lines-alt.svg new file mode 100644 index 00000000..9ee00a3d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-lines-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-minus.svg new file mode 100644 index 00000000..5f26fd70 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-play.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-play.svg new file mode 100644 index 00000000..bcb27f25 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-plus.svg new file mode 100644 index 00000000..76e44f02 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-times.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-times.svg new file mode 100644 index 00000000..0a485ff2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation.svg new file mode 100644 index 00000000..32b993c4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/presentation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/previous.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/previous.svg new file mode 100644 index 00000000..1547eb9f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/previous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pricetag-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pricetag-alt.svg new file mode 100644 index 00000000..d07f5427 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pricetag-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/print-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/print-slash.svg new file mode 100644 index 00000000..556285df --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/print-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/print.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/print.svg new file mode 100644 index 00000000..0ecd0b9c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/process.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/process.svg new file mode 100644 index 00000000..b2f6516a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/process.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/processor.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/processor.svg new file mode 100644 index 00000000..561e2709 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/processor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/programming-language.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/programming-language.svg new file mode 100644 index 00000000..bcf6699a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/programming-language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pump.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pump.svg new file mode 100644 index 00000000..d6a54f3e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/puzzle-piece.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/puzzle-piece.svg new file mode 100644 index 00000000..403ecab8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/puzzle-piece.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/qrcode-scan.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/qrcode-scan.svg new file mode 100644 index 00000000..435d156e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/qrcode-scan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/question-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/question-circle.svg new file mode 100644 index 00000000..fb077c98 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/question-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/question.svg new file mode 100644 index 00000000..e11ab847 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rainbow.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rainbow.svg new file mode 100644 index 00000000..7a063694 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rainbow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/raindrops-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/raindrops-alt.svg new file mode 100644 index 00000000..e7bffea3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/raindrops-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/raindrops.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/raindrops.svg new file mode 100644 index 00000000..61c2c17f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/raindrops.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/react.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/react.svg new file mode 100644 index 00000000..190e395a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/receipt-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/receipt-alt.svg new file mode 100644 index 00000000..657adfba --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/receipt-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/receipt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/receipt.svg new file mode 100644 index 00000000..7961669f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/receipt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/record-audio.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/record-audio.svg new file mode 100644 index 00000000..6f6a8154 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/record-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/reddit-alien-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/reddit-alien-alt.svg new file mode 100644 index 00000000..95f86d62 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/reddit-alien-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/redo.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/redo.svg new file mode 100644 index 00000000..6f7f8246 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/refresh.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/refresh.svg new file mode 100644 index 00000000..59291c95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/registered.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/registered.svg new file mode 100644 index 00000000..567c7377 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/registered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/repeat.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/repeat.svg new file mode 100644 index 00000000..7edc1116 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/restaurant.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/restaurant.svg new file mode 100644 index 00000000..41f1925d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/restaurant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/right-indent-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/right-indent-alt.svg new file mode 100644 index 00000000..539613e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/right-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/right-to-left-text-direction.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/right-to-left-text-direction.svg new file mode 100644 index 00000000..8bb6c248 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/right-to-left-text-direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/robot.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/robot.svg new file mode 100644 index 00000000..8ee6c71a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/robot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rocket.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rocket.svg new file mode 100644 index 00000000..f8aee7a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rope-way.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rope-way.svg new file mode 100644 index 00000000..566c2e42 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rope-way.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rotate-360.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rotate-360.svg new file mode 100644 index 00000000..80ad8aa4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rotate-360.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rss-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rss-alt.svg new file mode 100644 index 00000000..7fe7f26e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rss-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rss-interface.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rss-interface.svg new file mode 100644 index 00000000..d22faf7a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rss-interface.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rss.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rss.svg new file mode 100644 index 00000000..5d0c50c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ruler-combined.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ruler-combined.svg new file mode 100644 index 00000000..aab5576c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ruler-combined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ruler.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ruler.svg new file mode 100644 index 00000000..78d8e95d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rupee-sign.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rupee-sign.svg new file mode 100644 index 00000000..316a4dd1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/rupee-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-cry.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-cry.svg new file mode 100644 index 00000000..3fdce281 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-cry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-crying.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-crying.svg new file mode 100644 index 00000000..1ac7645b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-crying.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-dizzy.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-dizzy.svg new file mode 100644 index 00000000..ab121e7b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-squint.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-squint.svg new file mode 100644 index 00000000..7fb6a6b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad.svg new file mode 100644 index 00000000..72e84b80 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sanitizer-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sanitizer-alt.svg new file mode 100644 index 00000000..941fa3e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sanitizer-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sanitizer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sanitizer.svg new file mode 100644 index 00000000..1ac70ca6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sanitizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/save.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/save.svg new file mode 100644 index 00000000..a2069de1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scaling-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scaling-left.svg new file mode 100644 index 00000000..52de7b76 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scaling-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scaling-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scaling-right.svg new file mode 100644 index 00000000..57ca633c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scaling-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scenery.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scenery.svg new file mode 100644 index 00000000..0ebe431e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scenery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/schedule.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/schedule.svg new file mode 100644 index 00000000..3b4ee31b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/schedule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/screw.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/screw.svg new file mode 100644 index 00000000..98289690 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/screw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scroll-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scroll-h.svg new file mode 100644 index 00000000..0d5ca49a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scroll-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scroll.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scroll.svg new file mode 100644 index 00000000..4188e638 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/scroll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search-alt.svg new file mode 100644 index 00000000..a94d4c32 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search-minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search-minus.svg new file mode 100644 index 00000000..2ce6e0aa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search-plus.svg new file mode 100644 index 00000000..18f99d89 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search.svg new file mode 100644 index 00000000..39f5b14c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/selfie.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/selfie.svg new file mode 100644 index 00000000..c0ae0e50 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/selfie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-alt.svg new file mode 100644 index 00000000..e026407d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-connection.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-connection.svg new file mode 100644 index 00000000..c5e299e9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-connection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-network-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-network-alt.svg new file mode 100644 index 00000000..6bc11218 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-network-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-network.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-network.svg new file mode 100644 index 00000000..3db3b2d1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server.svg new file mode 100644 index 00000000..16720738 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/servers.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/servers.svg new file mode 100644 index 00000000..bae348e6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/servers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/servicemark.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/servicemark.svg new file mode 100644 index 00000000..d05c5ee7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/servicemark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/setting.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/setting.svg new file mode 100644 index 00000000..f899972b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/setting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/share-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/share-alt.svg new file mode 100644 index 00000000..d153312f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/share-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/share.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/share.svg new file mode 100644 index 00000000..f3f4d72d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-check.svg new file mode 100644 index 00000000..15b906af --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-exclamation.svg new file mode 100644 index 00000000..273b02b1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-plus.svg new file mode 100644 index 00000000..5d3c9d84 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-question.svg new file mode 100644 index 00000000..f59e3e29 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-slash.svg new file mode 100644 index 00000000..314a1188 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield.svg new file mode 100644 index 00000000..736f02a0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ship.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ship.svg new file mode 100644 index 00000000..98f744c8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shop.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shop.svg new file mode 100644 index 00000000..429898c7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-bag.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-bag.svg new file mode 100644 index 00000000..fa86e81e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-basket.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-basket.svg new file mode 100644 index 00000000..c2dab16c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-cart-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-cart-alt.svg new file mode 100644 index 00000000..974e30f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-cart-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-cart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-cart.svg new file mode 100644 index 00000000..91635831 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shopping-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shovel.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shovel.svg new file mode 100644 index 00000000..5a2b2297 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shovel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shrink.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shrink.svg new file mode 100644 index 00000000..dca99922 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shrink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shuffle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shuffle.svg new file mode 100644 index 00000000..5abfc2bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shutter-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shutter-alt.svg new file mode 100644 index 00000000..6c917967 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shutter-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shutter.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shutter.svg new file mode 100644 index 00000000..b6b65c0a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/shutter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sick.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sick.svg new file mode 100644 index 00000000..b5c3e1ba --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sigma.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sigma.svg new file mode 100644 index 00000000..0098f028 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sigma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-alt.svg new file mode 100644 index 00000000..2120e680 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-in-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-in-alt.svg new file mode 100644 index 00000000..41707d0e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-in-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-left.svg new file mode 100644 index 00000000..94b4ac4f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-out-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-out-alt.svg new file mode 100644 index 00000000..39494d8e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-out-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-right.svg new file mode 100644 index 00000000..5eb35c43 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sign-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signal-alt-3.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signal-alt-3.svg new file mode 100644 index 00000000..bd80f55b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signal-alt-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signal-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signal-alt.svg new file mode 100644 index 00000000..424ee553 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signal-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signal.svg new file mode 100644 index 00000000..95523452 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signin.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signin.svg new file mode 100644 index 00000000..a3ac7e9b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signout.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signout.svg new file mode 100644 index 00000000..4009a265 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/signout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/silence.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/silence.svg new file mode 100644 index 00000000..f87e6c38 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/silence.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/silent-squint.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/silent-squint.svg new file mode 100644 index 00000000..ee01d94c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/silent-squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sim-card.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sim-card.svg new file mode 100644 index 00000000..b2ff02b7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sim-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sitemap.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sitemap.svg new file mode 100644 index 00000000..3c5cd8d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sitemap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skip-forward-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skip-forward-alt.svg new file mode 100644 index 00000000..b31c5f8a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skip-forward-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skip-forward-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skip-forward-circle.svg new file mode 100644 index 00000000..ba9efe0d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skip-forward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skip-forward.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skip-forward.svg new file mode 100644 index 00000000..46e4595f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skype-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skype-alt.svg new file mode 100644 index 00000000..a4eb1161 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skype-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skype.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skype.svg new file mode 100644 index 00000000..e0f0cc66 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slack-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slack-alt.svg new file mode 100644 index 00000000..150ae868 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slack-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slack.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slack.svg new file mode 100644 index 00000000..edf70d18 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slider-h-range.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slider-h-range.svg new file mode 100644 index 00000000..27b9a2d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slider-h-range.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slider-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slider-h.svg new file mode 100644 index 00000000..38f08f6f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/slider-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sliders-v-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sliders-v-alt.svg new file mode 100644 index 00000000..868914ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sliders-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sliders-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sliders-v.svg new file mode 100644 index 00000000..72900a40 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sliders-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-beam.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-beam.svg new file mode 100644 index 00000000..23d9b577 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-beam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-dizzy.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-dizzy.svg new file mode 100644 index 00000000..b4cb029a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-dizzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-squint-wink-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-squint-wink-alt.svg new file mode 100644 index 00000000..7a31e08e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-squint-wink-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-squint-wink.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-squint-wink.svg new file mode 100644 index 00000000..7113fe40 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-squint-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-wink-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-wink-alt.svg new file mode 100644 index 00000000..ac7fee59 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-wink-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-wink.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-wink.svg new file mode 100644 index 00000000..94d1856c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile-wink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile.svg new file mode 100644 index 00000000..10cbe5ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snapchat-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snapchat-alt.svg new file mode 100644 index 00000000..14bedf68 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snapchat-alt.svg @@ -0,0 +1 @@ +Snapchat \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snapchat-ghost.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snapchat-ghost.svg new file mode 100644 index 00000000..ff83a401 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snapchat-ghost.svg @@ -0,0 +1 @@ +Artboard 10 copy 6 \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snapchat-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snapchat-square.svg new file mode 100644 index 00000000..b814cc57 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snapchat-square.svg @@ -0,0 +1 @@ +Artboard 9 copy 6 \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snow-flake.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snow-flake.svg new file mode 100644 index 00000000..8331caa5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snow-flake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snowflake-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snowflake-alt.svg new file mode 100644 index 00000000..88f64a25 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snowflake-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snowflake.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snowflake.svg new file mode 100644 index 00000000..efce5051 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/social-distancing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/social-distancing.svg new file mode 100644 index 00000000..cbbf14e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/social-distancing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sort-amount-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sort-amount-down.svg new file mode 100644 index 00000000..f120ee01 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sort-amount-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sort-amount-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sort-amount-up.svg new file mode 100644 index 00000000..076ebf98 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sort-amount-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sort.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sort.svg new file mode 100644 index 00000000..5e84f0ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sort.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sorting.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sorting.svg new file mode 100644 index 00000000..a4b64d0b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sorting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/space-key.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/space-key.svg new file mode 100644 index 00000000..9e980bab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/space-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spade.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spade.svg new file mode 100644 index 00000000..0bbc135c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sperms.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sperms.svg new file mode 100644 index 00000000..64211c57 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sperms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spin.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spin.svg new file mode 100644 index 00000000..e62116df --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spinner-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spinner-alt.svg new file mode 100644 index 00000000..d6af33ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spinner-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spinner.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spinner.svg new file mode 100644 index 00000000..8de093ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/spinner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/square-full.svg new file mode 100644 index 00000000..c7e13a96 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/square-shape.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/square-shape.svg new file mode 100644 index 00000000..960560f6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/square-shape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/square.svg new file mode 100644 index 00000000..c7e13a96 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/squint.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/squint.svg new file mode 100644 index 00000000..52356958 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/squint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/star-half-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/star-half-alt.svg new file mode 100644 index 00000000..0924414e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/star-half-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/star.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/star.svg new file mode 100644 index 00000000..7fc7a836 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-backward-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-backward-alt.svg new file mode 100644 index 00000000..4e38e256 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-backward-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-backward-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-backward-circle.svg new file mode 100644 index 00000000..f136c848 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-backward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-backward.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-backward.svg new file mode 100644 index 00000000..b8832353 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-backward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-forward.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-forward.svg new file mode 100644 index 00000000..eb1ca86d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/step-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stethoscope-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stethoscope-alt.svg new file mode 100644 index 00000000..c53dca8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stethoscope-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stethoscope.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stethoscope.svg new file mode 100644 index 00000000..de8de87c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stop-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stop-circle.svg new file mode 100644 index 00000000..653dd755 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stopwatch-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stopwatch-slash.svg new file mode 100644 index 00000000..e220fda9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stopwatch-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stopwatch.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stopwatch.svg new file mode 100644 index 00000000..042caabb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/store-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/store-alt.svg new file mode 100644 index 00000000..57bb1c29 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/store-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/store-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/store-slash.svg new file mode 100644 index 00000000..c160137a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/store-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/store.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/store.svg new file mode 100644 index 00000000..216e66a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/streering.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/streering.svg new file mode 100644 index 00000000..29075811 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/streering.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stretcher.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stretcher.svg new file mode 100644 index 00000000..2949c4d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/stretcher.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/subject.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/subject.svg new file mode 100644 index 00000000..122181eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/subject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/subway-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/subway-alt.svg new file mode 100644 index 00000000..ccb70ea7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/subway-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/subway.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/subway.svg new file mode 100644 index 00000000..948b28ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/suitcase-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/suitcase-alt.svg new file mode 100644 index 00000000..9beddb68 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/suitcase-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/suitcase.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/suitcase.svg new file mode 100644 index 00000000..09c80638 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/suitcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sun.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sun.svg new file mode 100644 index 00000000..7002f027 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sunset.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sunset.svg new file mode 100644 index 00000000..86effd92 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sunset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/surprise.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/surprise.svg new file mode 100644 index 00000000..597c0b8f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/surprise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/swatchbook.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/swatchbook.svg new file mode 100644 index 00000000..fff4dca0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/swatchbook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/swiggy.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/swiggy.svg new file mode 100644 index 00000000..7feaf005 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/swiggy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/swimmer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/swimmer.svg new file mode 100644 index 00000000..9774dcf0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/swimmer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sync-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sync-exclamation.svg new file mode 100644 index 00000000..7b2951e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sync-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sync-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sync-slash.svg new file mode 100644 index 00000000..a4e908a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sync-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sync.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sync.svg new file mode 100644 index 00000000..efb196ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/syringe.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/syringe.svg new file mode 100644 index 00000000..c52b8b57 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/syringe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/table-tennis.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/table-tennis.svg new file mode 100644 index 00000000..c7df0988 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/table-tennis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/table.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/table.svg new file mode 100644 index 00000000..9d733a34 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tablet.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tablet.svg new file mode 100644 index 00000000..ec866d1f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tablets.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tablets.svg new file mode 100644 index 00000000..8fa45052 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tablets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tachometer-fast-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tachometer-fast-alt.svg new file mode 100644 index 00000000..8e8bef8f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tachometer-fast-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tachometer-fast.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tachometer-fast.svg new file mode 100644 index 00000000..7e48907b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tachometer-fast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tag-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tag-alt.svg new file mode 100644 index 00000000..992db25b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tag-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tag.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tag.svg new file mode 100644 index 00000000..6c8af9ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tape.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tape.svg new file mode 100644 index 00000000..60d28a47 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/taxi.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/taxi.svg new file mode 100644 index 00000000..dbe6f4db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/taxi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tear.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tear.svg new file mode 100644 index 00000000..0842dd4d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/telegram-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/telegram-alt.svg new file mode 100644 index 00000000..46aaad98 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/telegram-alt.svg @@ -0,0 +1 @@ +telegram \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/telegram.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/telegram.svg new file mode 100644 index 00000000..b8c4ceda --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/telegram.svg @@ -0,0 +1 @@ +Telegram Glyph \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/telescope.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/telescope.svg new file mode 100644 index 00000000..fa952654 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/telescope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-empty.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-empty.svg new file mode 100644 index 00000000..e5a69a1b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-half.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-half.svg new file mode 100644 index 00000000..b2c52bd0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-minus.svg new file mode 100644 index 00000000..3906d5d3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-plus.svg new file mode 100644 index 00000000..13a167cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-quarter.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-quarter.svg new file mode 100644 index 00000000..4da7f352 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-three-quarter.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-three-quarter.svg new file mode 100644 index 00000000..29f3d53d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature-three-quarter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature.svg new file mode 100644 index 00000000..421a7bf7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/temperature.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tennis-ball.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tennis-ball.svg new file mode 100644 index 00000000..0f1d9f12 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tennis-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text-fields.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text-fields.svg new file mode 100644 index 00000000..edce4350 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text-fields.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text-size.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text-size.svg new file mode 100644 index 00000000..c1a344ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text-size.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text-strike-through.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text-strike-through.svg new file mode 100644 index 00000000..b9ec5c15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text-strike-through.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text.svg new file mode 100644 index 00000000..54873935 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/th-large.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/th-large.svg new file mode 100644 index 00000000..a9c752af --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/th-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/th-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/th-slash.svg new file mode 100644 index 00000000..f3c3d23e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/th-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/th.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/th.svg new file mode 100644 index 00000000..1a9e479a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/th.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thermometer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thermometer.svg new file mode 100644 index 00000000..b25c7ca9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thumbs-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thumbs-down.svg new file mode 100644 index 00000000..ff8a48d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thumbs-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thumbs-up.svg new file mode 100644 index 00000000..acd0bf3d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thunderstorm-moon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thunderstorm-moon.svg new file mode 100644 index 00000000..fe7d2fc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thunderstorm-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thunderstorm-sun.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thunderstorm-sun.svg new file mode 100644 index 00000000..694a6cea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thunderstorm-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thunderstorm.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thunderstorm.svg new file mode 100644 index 00000000..61bb5d77 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/thunderstorm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ticket.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ticket.svg new file mode 100644 index 00000000..7f9f2c51 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/ticket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/times-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/times-circle.svg new file mode 100644 index 00000000..cef7d52c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/times-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/times-square.svg new file mode 100644 index 00000000..f4cf17a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/times-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/times.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/times.svg new file mode 100644 index 00000000..11e673b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/toggle-off.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/toggle-off.svg new file mode 100644 index 00000000..694299f7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/toggle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/toggle-on.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/toggle-on.svg new file mode 100644 index 00000000..046e6408 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/toggle-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/toilet-paper.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/toilet-paper.svg new file mode 100644 index 00000000..e783f777 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/toilet-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/top-arrow-from-top.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/top-arrow-from-top.svg new file mode 100644 index 00000000..6087a3d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/top-arrow-from-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/top-arrow-to-top.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/top-arrow-to-top.svg new file mode 100644 index 00000000..8d868e8b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/top-arrow-to-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tornado.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tornado.svg new file mode 100644 index 00000000..c7815c27 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tornado.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trademark-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trademark-circle.svg new file mode 100644 index 00000000..a7b58815 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trademark-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trademark.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trademark.svg new file mode 100644 index 00000000..955ec0b9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trademark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/traffic-barrier.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/traffic-barrier.svg new file mode 100644 index 00000000..a3bedd9e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/traffic-barrier.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/traffic-light.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/traffic-light.svg new file mode 100644 index 00000000..10923acb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/traffic-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/transaction.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/transaction.svg new file mode 100644 index 00000000..3f5b6104 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/transaction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trash-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trash-alt.svg new file mode 100644 index 00000000..54bef885 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trash-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trash.svg new file mode 100644 index 00000000..e8804ced --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trees.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trees.svg new file mode 100644 index 00000000..9293888c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trees.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/triangle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/triangle.svg new file mode 100644 index 00000000..9258e6e1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trophy.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trophy.svg new file mode 100644 index 00000000..b961d0e0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trowel.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trowel.svg new file mode 100644 index 00000000..e2dcbb6d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/trowel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/truck-loading.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/truck-loading.svg new file mode 100644 index 00000000..489595ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/truck-loading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/truck.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/truck.svg new file mode 100644 index 00000000..1c2706bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tumblr-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tumblr-alt.svg new file mode 100644 index 00000000..714f65d7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tumblr-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tumblr-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tumblr-square.svg new file mode 100644 index 00000000..9ef79a6f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tumblr-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tumblr.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tumblr.svg new file mode 100644 index 00000000..b885dea7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tv-retro-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tv-retro-slash.svg new file mode 100644 index 00000000..3278c6a8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tv-retro-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tv-retro.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tv-retro.svg new file mode 100644 index 00000000..de2004b9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/tv-retro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/twitter-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/twitter-alt.svg new file mode 100644 index 00000000..69ad23ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/twitter-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/twitter.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/twitter.svg new file mode 100644 index 00000000..8089fd65 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/umbrella.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/umbrella.svg new file mode 100644 index 00000000..fcd07b74 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/unamused.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/unamused.svg new file mode 100644 index 00000000..fa06815f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/unamused.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/underline.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/underline.svg new file mode 100644 index 00000000..f273668d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/university.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/university.svg new file mode 100644 index 00000000..3fce80a1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/university.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/unlock-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/unlock-alt.svg new file mode 100644 index 00000000..0dffa4bd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/unlock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/unlock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/unlock.svg new file mode 100644 index 00000000..67864413 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/upload-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/upload-alt.svg new file mode 100644 index 00000000..c2afb1fe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/upload.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/upload.svg new file mode 100644 index 00000000..ac85cdff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/usd-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/usd-circle.svg new file mode 100644 index 00000000..ffc2f3dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/usd-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/usd-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/usd-square.svg new file mode 100644 index 00000000..c7fb9a80 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/usd-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-arrows.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-arrows.svg new file mode 100644 index 00000000..ef9a7fc0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-check.svg new file mode 100644 index 00000000..76b14703 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-circle.svg new file mode 100644 index 00000000..d13264c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-exclamation.svg new file mode 100644 index 00000000..cc15e15e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-location.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-location.svg new file mode 100644 index 00000000..72663461 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-md.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-md.svg new file mode 100644 index 00000000..eb99dbc8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-md.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-minus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-minus.svg new file mode 100644 index 00000000..31998c63 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-nurse.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-nurse.svg new file mode 100644 index 00000000..8cbcebfc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-nurse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-plus.svg new file mode 100644 index 00000000..2f94312a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-square.svg new file mode 100644 index 00000000..270dfdd0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-times.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-times.svg new file mode 100644 index 00000000..8bb66cfc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user-times.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user.svg new file mode 100644 index 00000000..2236c900 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/users-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/users-alt.svg new file mode 100644 index 00000000..93184b9d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/users-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/utensils-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/utensils-alt.svg new file mode 100644 index 00000000..5ae00f93 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/utensils-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/utensils.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/utensils.svg new file mode 100644 index 00000000..3be83fd4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/utensils.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vector-square-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vector-square-alt.svg new file mode 100644 index 00000000..08bcc079 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vector-square-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vector-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vector-square.svg new file mode 100644 index 00000000..7c7fd6f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/venus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/venus.svg new file mode 100644 index 00000000..16fb91a6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/venus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-align-bottom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-align-bottom.svg new file mode 100644 index 00000000..de486c4f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-align-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-align-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-align-center.svg new file mode 100644 index 00000000..0720428e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-align-top.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-align-top.svg new file mode 100644 index 00000000..d2a5d961 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-align-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-distribute-bottom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-distribute-bottom.svg new file mode 100644 index 00000000..e2df0ae6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-distribute-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-distribution-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-distribution-center.svg new file mode 100644 index 00000000..c255f9ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-distribution-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-distribution-top.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-distribution-top.svg new file mode 100644 index 00000000..0ffa3b06 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vertical-distribution-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/video-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/video-question.svg new file mode 100644 index 00000000..5aac3a58 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/video-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/video-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/video-slash.svg new file mode 100644 index 00000000..16c66964 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/video-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/video.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/video.svg new file mode 100644 index 00000000..961d625a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/virus-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/virus-slash.svg new file mode 100644 index 00000000..0336765d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/virus-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/visual-studio.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/visual-studio.svg new file mode 100644 index 00000000..5a6d8037 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/visual-studio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vk-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vk-alt.svg new file mode 100644 index 00000000..8d1df612 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vk-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vk.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vk.svg new file mode 100644 index 00000000..66dc206a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/voicemail-rectangle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/voicemail-rectangle.svg new file mode 100644 index 00000000..61cf5c55 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/voicemail-rectangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/voicemail.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/voicemail.svg new file mode 100644 index 00000000..83c6745a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/voicemail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volleyball.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volleyball.svg new file mode 100644 index 00000000..39f27509 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volleyball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-down.svg new file mode 100644 index 00000000..57b8e0e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-mute.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-mute.svg new file mode 100644 index 00000000..66b7a152 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-off.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-off.svg new file mode 100644 index 00000000..6acb25f7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-up.svg new file mode 100644 index 00000000..850a7af5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume.svg new file mode 100644 index 00000000..768de6c0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vuejs-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vuejs-alt.svg new file mode 100644 index 00000000..ed5ab157 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vuejs-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vuejs.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vuejs.svg new file mode 100644 index 00000000..57de8001 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/vuejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wall.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wall.svg new file mode 100644 index 00000000..3d2c850e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wall.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wallet.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wallet.svg new file mode 100644 index 00000000..84bce73f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/watch-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/watch-alt.svg new file mode 100644 index 00000000..c3497fec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/watch-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/watch.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/watch.svg new file mode 100644 index 00000000..59154836 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/water-drop-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/water-drop-slash.svg new file mode 100644 index 00000000..446123ec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/water-drop-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/water-glass.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/water-glass.svg new file mode 100644 index 00000000..e419fede --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/water-glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/water.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/water.svg new file mode 100644 index 00000000..1bc0eb41 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-grid-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-grid-alt.svg new file mode 100644 index 00000000..9cfa4603 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-grid-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-grid.svg new file mode 100644 index 00000000..de270f80 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-section-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-section-alt.svg new file mode 100644 index 00000000..2ac16c2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-section-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-section.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-section.svg new file mode 100644 index 00000000..2dda3cb0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/web-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/webcam.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/webcam.svg new file mode 100644 index 00000000..cedd4565 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/webcam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/weight.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/weight.svg new file mode 100644 index 00000000..dfb0c42a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/weight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/whatsapp-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/whatsapp-alt.svg new file mode 100644 index 00000000..e2b238cc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/whatsapp-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/whatsapp.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/whatsapp.svg new file mode 100644 index 00000000..859beb7a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wheel-barrow.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wheel-barrow.svg new file mode 100644 index 00000000..db9ff03c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wheel-barrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wheelchair-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wheelchair-alt.svg new file mode 100644 index 00000000..6ae3ea1a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wheelchair-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wheelchair.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wheelchair.svg new file mode 100644 index 00000000..b8a45e2a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wheelchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wifi-router.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wifi-router.svg new file mode 100644 index 00000000..a0e97fc1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wifi-router.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wifi-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wifi-slash.svg new file mode 100644 index 00000000..327f95cc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wifi-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wifi.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wifi.svg new file mode 100644 index 00000000..7b51637c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wind-moon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wind-moon.svg new file mode 100644 index 00000000..9c573492 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wind-moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wind-sun.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wind-sun.svg new file mode 100644 index 00000000..fa1481ce --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wind-sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wind.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wind.svg new file mode 100644 index 00000000..3473b1b4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window-grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window-grid.svg new file mode 100644 index 00000000..8dc57c6a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window-maximize.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window-maximize.svg new file mode 100644 index 00000000..1058e121 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window-section.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window-section.svg new file mode 100644 index 00000000..028e5d39 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window.svg new file mode 100644 index 00000000..88831912 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/windows.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/windows.svg new file mode 100644 index 00000000..050e8d0a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/windsock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/windsock.svg new file mode 100644 index 00000000..bb2708c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/windsock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/windy.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/windy.svg new file mode 100644 index 00000000..3926f584 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/windy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wordpress-simple.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wordpress-simple.svg new file mode 100644 index 00000000..72affdf0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wordpress-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wordpress.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wordpress.svg new file mode 100644 index 00000000..692b478c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wrap-text.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wrap-text.svg new file mode 100644 index 00000000..5836bc2e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wrap-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wrench.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wrench.svg new file mode 100644 index 00000000..d5a006f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/x-add.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/x-add.svg new file mode 100644 index 00000000..e087d4e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/x-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/x.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/x.svg new file mode 100644 index 00000000..04f15c52 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/yen-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/yen-circle.svg new file mode 100644 index 00000000..5539c20b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/yen-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/yen.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/yen.svg new file mode 100644 index 00000000..5bd7b056 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/yen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/yin-yang.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/yin-yang.svg new file mode 100644 index 00000000..7ebcffaa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/yin-yang.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/youtube.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/youtube.svg new file mode 100644 index 00000000..1ef0d17c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/line/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/500px.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/500px.svg new file mode 100644 index 00000000..b6d2288d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/500px.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/adobe-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/adobe-alt.svg new file mode 100644 index 00000000..988e08a0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/adobe-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/adobe.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/adobe.svg new file mode 100644 index 00000000..b7d718a6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/adobe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/airplay.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/airplay.svg new file mode 100644 index 00000000..c3b1c5f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-alt.svg new file mode 100644 index 00000000..97728f7d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-center-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-center-justify.svg new file mode 100644 index 00000000..782656eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-center-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-center.svg new file mode 100644 index 00000000..55c6cda0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-justify.svg new file mode 100644 index 00000000..a4dece10 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-left-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-left-justify.svg new file mode 100644 index 00000000..ec132ae8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-left-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-left.svg new file mode 100644 index 00000000..524bdcf8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-letter-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-letter-right.svg new file mode 100644 index 00000000..98f03b1d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-letter-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-right-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-right-justify.svg new file mode 100644 index 00000000..a3377a55 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-right-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-right.svg new file mode 100644 index 00000000..187eabc4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align.svg new file mode 100644 index 00000000..a06874b3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/align.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/amazon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/amazon.svg new file mode 100644 index 00000000..3e4e9fda --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/amazon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/analysis.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/analysis.svg new file mode 100644 index 00000000..40e7c02e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/analysis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/analytics.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/analytics.svg new file mode 100644 index 00000000..710240bb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/anchor.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/anchor.svg new file mode 100644 index 00000000..6c81f0a3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/android-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/android-alt.svg new file mode 100644 index 00000000..4e90ce9e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/android-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/android.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/android.svg new file mode 100644 index 00000000..eea86215 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-down.svg new file mode 100644 index 00000000..85c7921c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-left.svg new file mode 100644 index 00000000..745ab104 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-right.svg new file mode 100644 index 00000000..94bdd17d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-up.svg new file mode 100644 index 00000000..ff24f3e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-double-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-down.svg new file mode 100644 index 00000000..198a3ca3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-left.svg new file mode 100644 index 00000000..35fd300c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-right-b.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-right-b.svg new file mode 100644 index 00000000..28e2908c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-right-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-right.svg new file mode 100644 index 00000000..e5441838 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-up.svg new file mode 100644 index 00000000..e827a502 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/angle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/apple-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/apple-alt.svg new file mode 100644 index 00000000..7bdd4a1d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/apple-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/apple.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/apple.svg new file mode 100644 index 00000000..d0e660c7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/apps.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/apps.svg new file mode 100644 index 00000000..c142223c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-down.svg new file mode 100644 index 00000000..497ac73a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-left.svg new file mode 100644 index 00000000..85fdb1e7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-right.svg new file mode 100644 index 00000000..82910950 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-up.svg new file mode 100644 index 00000000..1ec4033b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-down-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-down-left.svg new file mode 100644 index 00000000..fc20043a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-down-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-down-right.svg new file mode 100644 index 00000000..586b405d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-up-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-up-left.svg new file mode 100644 index 00000000..3981a0e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-up-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-up-right.svg new file mode 100644 index 00000000..8b32c2bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/at.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/at.svg new file mode 100644 index 00000000..8e79a9eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bag.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bag.svg new file mode 100644 index 00000000..5e429a7d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bars.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bars.svg new file mode 100644 index 00000000..7c1448b9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/battery-bolt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/battery-bolt.svg new file mode 100644 index 00000000..537a9f15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/battery-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/battery-empty.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/battery-empty.svg new file mode 100644 index 00000000..91b27cc3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/behance-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/behance-alt.svg new file mode 100644 index 00000000..5a4120d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/behance-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/behance.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/behance.svg new file mode 100644 index 00000000..16022137 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/behance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bing.svg new file mode 100644 index 00000000..73acd0c7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bitcoin-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bitcoin-alt.svg new file mode 100644 index 00000000..4fca958f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bitcoin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bitcoin.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bitcoin.svg new file mode 100644 index 00000000..36e5934b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bitcoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/blackberry.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/blackberry.svg new file mode 100644 index 00000000..062b4439 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/blackberry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/blogger-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/blogger-alt.svg new file mode 100644 index 00000000..35ef36fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/blogger-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/blogger.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/blogger.svg new file mode 100644 index 00000000..ce83af77 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/blogger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bookmark.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bookmark.svg new file mode 100644 index 00000000..caacec16 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-alt.svg new file mode 100644 index 00000000..9e13ff4c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-bottom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-bottom.svg new file mode 100644 index 00000000..9bb07c40 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-clear.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-clear.svg new file mode 100644 index 00000000..91353820 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-clear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-horizontal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-horizontal.svg new file mode 100644 index 00000000..ecc4b3f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-inner.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-inner.svg new file mode 100644 index 00000000..94e16f3a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-inner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-left.svg new file mode 100644 index 00000000..eac188c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-out.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-out.svg new file mode 100644 index 00000000..4d90cb79 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-right.svg new file mode 100644 index 00000000..d68fa406 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-top.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-top.svg new file mode 100644 index 00000000..e292bcb3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-vertical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-vertical.svg new file mode 100644 index 00000000..4061796c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/border-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/box.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/box.svg new file mode 100644 index 00000000..ee0b0959 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/briefcase.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/briefcase.svg new file mode 100644 index 00000000..7fbf4553 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/calender.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/calender.svg new file mode 100644 index 00000000..3fc96933 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/calender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/chart-pie.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/chart-pie.svg new file mode 100644 index 00000000..9824ce11 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/chart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/chart.svg new file mode 100644 index 00000000..581f37de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/check-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/check-circle.svg new file mode 100644 index 00000000..0f423390 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/check-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/check-square.svg new file mode 100644 index 00000000..82b9f9fc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/check.svg new file mode 100644 index 00000000..aaeaea06 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/circle-layer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/circle-layer.svg new file mode 100644 index 00000000..311a5bb6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/circle-layer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/circle.svg new file mode 100644 index 00000000..0a9fb72c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clinic-medical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clinic-medical.svg new file mode 100644 index 00000000..43bb5808 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clinic-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-eight.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-eight.svg new file mode 100644 index 00000000..1c734151 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-eight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-five.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-five.svg new file mode 100644 index 00000000..5c2b3796 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-nine.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-nine.svg new file mode 100644 index 00000000..ec48e88b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-seven.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-seven.svg new file mode 100644 index 00000000..da5a01a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-seven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-ten.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-ten.svg new file mode 100644 index 00000000..752ec617 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-ten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-three.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-three.svg new file mode 100644 index 00000000..92c6a392 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-two.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-two.svg new file mode 100644 index 00000000..acfc9c74 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock.svg new file mode 100644 index 00000000..9ad4534f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/columns.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/columns.svg new file mode 100644 index 00000000..c327d7d6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt-dots.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt-dots.svg new file mode 100644 index 00000000..367452cd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt-message.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt-message.svg new file mode 100644 index 00000000..cbc84848 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt-message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt-plus.svg new file mode 100644 index 00000000..5ada659e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt.svg new file mode 100644 index 00000000..d26c6b95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-dots.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-dots.svg new file mode 100644 index 00000000..46aef931 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-message.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-message.svg new file mode 100644 index 00000000..c13b9733 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-message.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-plus.svg new file mode 100644 index 00000000..6027d2ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment.svg new file mode 100644 index 00000000..cf9629ba --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/compress.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/compress.svg new file mode 100644 index 00000000..052c9c66 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/compress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-down-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-down-left.svg new file mode 100644 index 00000000..208ad04f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-down-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-down-right.svg new file mode 100644 index 00000000..a0d298c5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-left-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-left-down.svg new file mode 100644 index 00000000..eceb7386 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-right-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-right-down.svg new file mode 100644 index 00000000..2ec6ae67 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-up-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-up-left.svg new file mode 100644 index 00000000..e3c4b6bc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-up-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-up-right.svg new file mode 100644 index 00000000..20769dd4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/corner-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/coronavirus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/coronavirus.svg new file mode 100644 index 00000000..bf86c75e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/coronavirus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/css3-simple.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/css3-simple.svg new file mode 100644 index 00000000..15c9a4c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/css3-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/css3.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/css3.svg new file mode 100644 index 00000000..47d080c7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/css3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/cube.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/cube.svg new file mode 100644 index 00000000..dd663df8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dialpad-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dialpad-alt.svg new file mode 100644 index 00000000..fc2b0f38 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dialpad-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dialpad.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dialpad.svg new file mode 100644 index 00000000..924cc9d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dialpad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/direction.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/direction.svg new file mode 100644 index 00000000..0bed9f57 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/discord.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/discord.svg new file mode 100644 index 00000000..346be2be --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/docker.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/docker.svg new file mode 100644 index 00000000..d5f27871 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/docker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/document-layout-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/document-layout-center.svg new file mode 100644 index 00000000..b221a291 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/document-layout-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/document-layout-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/document-layout-left.svg new file mode 100644 index 00000000..d6da95a1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/document-layout-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/document-layout-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/document-layout-right.svg new file mode 100644 index 00000000..8fdfba08 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/document-layout-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/download-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/download-alt.svg new file mode 100644 index 00000000..b59fc798 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dribbble.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dribbble.svg new file mode 100644 index 00000000..84227f34 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dribbble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dropbox.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dropbox.svg new file mode 100644 index 00000000..ab3cc5b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ellipsis-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ellipsis-h.svg new file mode 100644 index 00000000..b5fa6037 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ellipsis-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ellipsis-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ellipsis-v.svg new file mode 100644 index 00000000..0e6c9449 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ellipsis-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/entry.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/entry.svg new file mode 100644 index 00000000..5119654a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/entry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exclamation-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exclamation-circle.svg new file mode 100644 index 00000000..189666a3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exclamation-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exclamation-octagon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exclamation-octagon.svg new file mode 100644 index 00000000..c3c7f092 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exclamation-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exclamation-triangle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exclamation-triangle.svg new file mode 100644 index 00000000..153fee22 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exclamation-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exit.svg new file mode 100644 index 00000000..9121ebf1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook-f.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook-f.svg new file mode 100644 index 00000000..23a27576 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook-messenger-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook-messenger-alt.svg new file mode 100644 index 00000000..47767832 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook-messenger-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook-messenger.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook-messenger.svg new file mode 100644 index 00000000..e2012fb0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook-messenger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook.svg new file mode 100644 index 00000000..d29dfffa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/favorite.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/favorite.svg new file mode 100644 index 00000000..4634931c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-h-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-h-alt.svg new file mode 100644 index 00000000..9b7b489c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-h-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-h.svg new file mode 100644 index 00000000..ae951783 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-v-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-v-alt.svg new file mode 100644 index 00000000..19fd43ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-v.svg new file mode 100644 index 00000000..1237a2c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/flip-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/github-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/github-alt.svg new file mode 100644 index 00000000..3ba2ed35 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/github-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/github.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/github.svg new file mode 100644 index 00000000..1581d5b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/gitlab-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/gitlab-alt.svg new file mode 100644 index 00000000..88c6cd6e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/gitlab-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/gitlab.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/gitlab.svg new file mode 100644 index 00000000..c886883d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-drive-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-drive-alt.svg new file mode 100644 index 00000000..a9fde5a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-drive-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-drive.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-drive.svg new file mode 100644 index 00000000..e230adf2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-hangouts-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-hangouts-alt.svg new file mode 100644 index 00000000..23deb9e7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-hangouts-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-hangouts.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-hangouts.svg new file mode 100644 index 00000000..ac7a566e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-hangouts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-play.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-play.svg new file mode 100644 index 00000000..a22a89d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google.svg new file mode 100644 index 00000000..6f4cb9da --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/graph-bar.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/graph-bar.svg new file mode 100644 index 00000000..74853532 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/graph-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/grid.svg new file mode 100644 index 00000000..54bb085d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/grids.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/grids.svg new file mode 100644 index 00000000..c4406d6e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/grids.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/grip-horizontal-line.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/grip-horizontal-line.svg new file mode 100644 index 00000000..1cc48b7f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/grip-horizontal-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/head-side-cough.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/head-side-cough.svg new file mode 100644 index 00000000..9405b89a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/head-side-cough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/head-side-mask.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/head-side-mask.svg new file mode 100644 index 00000000..d665b791 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/head-side-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/head-side.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/head-side.svg new file mode 100644 index 00000000..b4debfb6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/head-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hipchat.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hipchat.svg new file mode 100644 index 00000000..9724f94d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hipchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/history-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/history-alt.svg new file mode 100644 index 00000000..2f87d5d8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/history-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/history.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/history.svg new file mode 100644 index 00000000..a64775e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/horizontal-align-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/horizontal-align-left.svg new file mode 100644 index 00000000..5d4d5cb3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/horizontal-align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hospital-square-sign.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hospital-square-sign.svg new file mode 100644 index 00000000..933e0260 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hospital-square-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hospital-symbol.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hospital-symbol.svg new file mode 100644 index 00000000..241f1df9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hospital-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hospital.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hospital.svg new file mode 100644 index 00000000..d6e545f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/house-user.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/house-user.svg new file mode 100644 index 00000000..20286d91 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/house-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html3-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html3-alt.svg new file mode 100644 index 00000000..0509a306 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html3-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html3.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html3.svg new file mode 100644 index 00000000..3e30b2e3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html5-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html5-alt.svg new file mode 100644 index 00000000..6136a4c8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html5-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html5.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html5.svg new file mode 100644 index 00000000..7b4784ac --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/image-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/image-v.svg new file mode 100644 index 00000000..e95bb23b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/image-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/instagram-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/instagram-alt.svg new file mode 100644 index 00000000..38d5d083 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/instagram-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/instagram.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/instagram.svg new file mode 100644 index 00000000..2ca6814d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/intercom-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/intercom-alt.svg new file mode 100644 index 00000000..a682fcd0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/intercom-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/intercom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/intercom.svg new file mode 100644 index 00000000..ef844758 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/intercom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/java-script.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/java-script.svg new file mode 100644 index 00000000..52bf506d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/java-script.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/key-skeleton-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/key-skeleton-alt.svg new file mode 100644 index 00000000..f327735c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/key-skeleton-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/key-skeleton.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/key-skeleton.svg new file mode 100644 index 00000000..26faac36 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/key-skeleton.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/keyhole-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/keyhole-circle.svg new file mode 100644 index 00000000..b2b52109 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/keyhole-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/keyhole-square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/keyhole-square-full.svg new file mode 100644 index 00000000..eb675199 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/keyhole-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/keyhole-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/keyhole-square.svg new file mode 100644 index 00000000..b808b2b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/keyhole-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/layer-group.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/layer-group.svg new file mode 100644 index 00000000..aed1ad24 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/layer-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/layers-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/layers-alt.svg new file mode 100644 index 00000000..c6dbd72e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/layers-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/left-indent-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/left-indent-alt.svg new file mode 100644 index 00000000..1ae49815 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/left-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/left-indent.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/left-indent.svg new file mode 100644 index 00000000..f1f1721f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/left-indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/line-spacing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/line-spacing.svg new file mode 100644 index 00000000..467df6f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/line-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/line.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/line.svg new file mode 100644 index 00000000..f4ed7fc5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/link-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/link-h.svg new file mode 100644 index 00000000..8b7807cd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/link-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/linkedin-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/linkedin-alt.svg new file mode 100644 index 00000000..0e24e531 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/linkedin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/linkedin.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/linkedin.svg new file mode 100644 index 00000000..2d646462 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/linux.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/linux.svg new file mode 100644 index 00000000..6460fd1f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/linux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/list-ui-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/list-ui-alt.svg new file mode 100644 index 00000000..1a5b88b3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/list-ui-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/list-ul.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/list-ul.svg new file mode 100644 index 00000000..3bce24b7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/list-ul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock-access.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock-access.svg new file mode 100644 index 00000000..b70e8c0c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock-access.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock-alt.svg new file mode 100644 index 00000000..a9497560 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock-open-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock-open-alt.svg new file mode 100644 index 00000000..b49c3afc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock-open-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock.svg new file mode 100644 index 00000000..de119e21 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lottiefiles.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lottiefiles.svg new file mode 100644 index 00000000..84298be2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/lottiefiles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/master-card.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/master-card.svg new file mode 100644 index 00000000..310646b7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/master-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/medium-m.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/medium-m.svg new file mode 100644 index 00000000..afd1cf62 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/medium-m.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/microscope.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/microscope.svg new file mode 100644 index 00000000..d2e07d8a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/microsoft.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/microsoft.svg new file mode 100644 index 00000000..45c19371 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/microsoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/minus-square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/minus-square-full.svg new file mode 100644 index 00000000..4de75729 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/minus-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/multiply.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/multiply.svg new file mode 100644 index 00000000..5f4538b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/multiply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/object-group.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/object-group.svg new file mode 100644 index 00000000..4e296fd5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/object-ungroup.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/object-ungroup.svg new file mode 100644 index 00000000..a50a4975 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/okta.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/okta.svg new file mode 100644 index 00000000..c791d8da --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/okta.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/opera-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/opera-alt.svg new file mode 100644 index 00000000..63c28625 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/opera-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/opera.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/opera.svg new file mode 100644 index 00000000..0d05fd55 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/opera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/padlock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/padlock.svg new file mode 100644 index 00000000..588af00f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/padlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/pagelines.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/pagelines.svg new file mode 100644 index 00000000..04612631 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/pagelines.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/pagerduty.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/pagerduty.svg new file mode 100644 index 00000000..abee10c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/pagerduty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/paperclip.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/paperclip.svg new file mode 100644 index 00000000..b972cf68 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/paragraph.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/paragraph.svg new file mode 100644 index 00000000..616c5680 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/paypal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/paypal.svg new file mode 100644 index 00000000..73830283 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/pentagon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/pentagon.svg new file mode 100644 index 00000000..231c7e95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/pentagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/plus-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/plus-square.svg new file mode 100644 index 00000000..e5e36a29 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/polygon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/polygon.svg new file mode 100644 index 00000000..2dce0c0f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/previous.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/previous.svg new file mode 100644 index 00000000..961f41a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/previous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/process.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/process.svg new file mode 100644 index 00000000..46c23c32 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/process.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/react.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/react.svg new file mode 100644 index 00000000..26391c02 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/record-audio.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/record-audio.svg new file mode 100644 index 00000000..a471287b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/record-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/reddit-alien-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/reddit-alien-alt.svg new file mode 100644 index 00000000..e86e9538 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/reddit-alien-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/redo.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/redo.svg new file mode 100644 index 00000000..c74cb1ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/refresh.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/refresh.svg new file mode 100644 index 00000000..af925941 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/repeat.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/repeat.svg new file mode 100644 index 00000000..93c3e28a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/right-indent-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/right-indent-alt.svg new file mode 100644 index 00000000..2af7bf74 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/right-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/rocket.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/rocket.svg new file mode 100644 index 00000000..10c47c46 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ruler-combined.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ruler-combined.svg new file mode 100644 index 00000000..7c5e3ba7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ruler-combined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ruler.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ruler.svg new file mode 100644 index 00000000..22fb6742 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sanitizer-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sanitizer-alt.svg new file mode 100644 index 00000000..cdf37c79 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sanitizer-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sanitizer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sanitizer.svg new file mode 100644 index 00000000..61040fa4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sanitizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/scenery.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/scenery.svg new file mode 100644 index 00000000..00eee84f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/scenery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/schedule.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/schedule.svg new file mode 100644 index 00000000..1d5be01d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/schedule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/shield-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/shield-plus.svg new file mode 100644 index 00000000..d01d5fee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/shield-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sign-in-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sign-in-alt.svg new file mode 100644 index 00000000..9d006cfd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sign-in-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sign-in.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sign-in.svg new file mode 100644 index 00000000..5119654a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sign-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sign-out-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sign-out-alt.svg new file mode 100644 index 00000000..b1385cd8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sign-out-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signal-alt-3.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signal-alt-3.svg new file mode 100644 index 00000000..dde3ce73 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signal-alt-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signal-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signal-alt.svg new file mode 100644 index 00000000..03fffd29 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signal-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signin.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signin.svg new file mode 100644 index 00000000..c672979d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signout.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signout.svg new file mode 100644 index 00000000..327ef4b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/signout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/skype-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/skype-alt.svg new file mode 100644 index 00000000..de925dd6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/skype-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/skype.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/skype.svg new file mode 100644 index 00000000..b85ef5ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/slack-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/slack-alt.svg new file mode 100644 index 00000000..a00a7e41 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/slack-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/slack.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/slack.svg new file mode 100644 index 00000000..e5b91672 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/snapchat-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/snapchat-alt.svg new file mode 100644 index 00000000..4a3d0207 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/snapchat-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/snapchat-ghost.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/snapchat-ghost.svg new file mode 100644 index 00000000..060dd3f5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/snapchat-ghost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/snapchat-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/snapchat-square.svg new file mode 100644 index 00000000..fa984b26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/snapchat-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/social-distancing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/social-distancing.svg new file mode 100644 index 00000000..419ae325 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/social-distancing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sorting.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sorting.svg new file mode 100644 index 00000000..3c92e5ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sorting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/space-key.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/space-key.svg new file mode 100644 index 00000000..67847e4a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/space-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/square-full.svg new file mode 100644 index 00000000..02ebd6ad --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/square-shape.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/square-shape.svg new file mode 100644 index 00000000..dede1b57 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/square-shape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/square.svg new file mode 100644 index 00000000..dede1b57 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/squre-shape.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/squre-shape.svg new file mode 100644 index 00000000..dd26d26d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/squre-shape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/star-half-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/star-half-alt.svg new file mode 100644 index 00000000..ca857955 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/star-half-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/star.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/star.svg new file mode 100644 index 00000000..c6f76919 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/step-forward.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/step-forward.svg new file mode 100644 index 00000000..3df0e95f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/step-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/stethoscope-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/stethoscope-alt.svg new file mode 100644 index 00000000..f2c1655d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/stethoscope-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/stethoscope.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/stethoscope.svg new file mode 100644 index 00000000..67095b30 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/store-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/store-slash.svg new file mode 100644 index 00000000..1b100a49 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/store-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/subject.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/subject.svg new file mode 100644 index 00000000..6a36c6f5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/subject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/swiggy.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/swiggy.svg new file mode 100644 index 00000000..c71fc6ce --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/swiggy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sync-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sync-exclamation.svg new file mode 100644 index 00000000..93279c99 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sync-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sync-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sync-slash.svg new file mode 100644 index 00000000..74e257af --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/sync-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/table.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/table.svg new file mode 100644 index 00000000..bbec8abe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/telegram-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/telegram-alt.svg new file mode 100644 index 00000000..bd0af2cc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/telegram-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/telegram.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/telegram.svg new file mode 100644 index 00000000..6650ed68 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/telegram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/th-large.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/th-large.svg new file mode 100644 index 00000000..a9ca670b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/th-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/times-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/times-circle.svg new file mode 100644 index 00000000..7fcc13a6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/toggle-off.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/toggle-off.svg new file mode 100644 index 00000000..2a935821 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/toggle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/toggle-on.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/toggle-on.svg new file mode 100644 index 00000000..50c8be0c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/toggle-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/toilet-paper.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/toilet-paper.svg new file mode 100644 index 00000000..49046172 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/toilet-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/triangle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/triangle.svg new file mode 100644 index 00000000..9d193b54 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/tumblr-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/tumblr-alt.svg new file mode 100644 index 00000000..7c64eb87 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/tumblr-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/tumblr-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/tumblr-square.svg new file mode 100644 index 00000000..478ba140 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/tumblr-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/tumblr.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/tumblr.svg new file mode 100644 index 00000000..75c3f76b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/twitter-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/twitter-alt.svg new file mode 100644 index 00000000..dd510500 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/twitter-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/twitter.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/twitter.svg new file mode 100644 index 00000000..2860930d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/unlock-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/unlock-alt.svg new file mode 100644 index 00000000..a37b4392 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/unlock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/unlock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/unlock.svg new file mode 100644 index 00000000..123975fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/upload-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/upload-alt.svg new file mode 100644 index 00000000..a725d22c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/user-arrows.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/user-arrows.svg new file mode 100644 index 00000000..d8d66568 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/user-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/user-md.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/user-md.svg new file mode 100644 index 00000000..c6d598c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/user-md.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/user-nurse.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/user-nurse.svg new file mode 100644 index 00000000..1513e064 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/user-nurse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vector-square-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vector-square-alt.svg new file mode 100644 index 00000000..3b34b101 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vector-square-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vector-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vector-square.svg new file mode 100644 index 00000000..370f360c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/virus-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/virus-slash.svg new file mode 100644 index 00000000..36ee1c08 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/virus-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/visual-studio.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/visual-studio.svg new file mode 100644 index 00000000..7b745969 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/visual-studio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vk-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vk-alt.svg new file mode 100644 index 00000000..97627ffd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vk-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vk.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vk.svg new file mode 100644 index 00000000..41b31dc0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vuejs-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vuejs-alt.svg new file mode 100644 index 00000000..9c5244f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vuejs-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vuejs.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vuejs.svg new file mode 100644 index 00000000..77177f03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/vuejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-grid-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-grid-alt.svg new file mode 100644 index 00000000..6b89c049 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-grid-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-grid.svg new file mode 100644 index 00000000..b2df8e52 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-section-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-section-alt.svg new file mode 100644 index 00000000..71ef894e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-section-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-section.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-section.svg new file mode 100644 index 00000000..7b556260 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/web-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/whatsapp.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/whatsapp.svg new file mode 100644 index 00000000..7c97a994 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/window-grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/window-grid.svg new file mode 100644 index 00000000..44f0c115 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/window-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/window-maximize.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/window-maximize.svg new file mode 100644 index 00000000..dc4713c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/window-section.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/window-section.svg new file mode 100644 index 00000000..64255f6f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/window-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/windows.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/windows.svg new file mode 100644 index 00000000..79bf16dc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/wordpress-simple.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/wordpress-simple.svg new file mode 100644 index 00000000..aede6a94 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/wordpress-simple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/wordpress.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/wordpress.svg new file mode 100644 index 00000000..e93ef4f8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/wrap-text.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/wrap-text.svg new file mode 100644 index 00000000..c47b57a9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/wrap-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/youtube.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/youtube.svg new file mode 100644 index 00000000..55b24db6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/monochrome/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/airplay.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/airplay.svg new file mode 100644 index 00000000..1e5591a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-alt.svg new file mode 100644 index 00000000..8e4bbed8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-center-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-center-justify.svg new file mode 100644 index 00000000..1cbbfcdf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-center-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-center.svg new file mode 100644 index 00000000..131e6a6e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-justify.svg new file mode 100644 index 00000000..9da41bb1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-left-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-left-justify.svg new file mode 100644 index 00000000..d700bf2f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-left-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-left.svg new file mode 100644 index 00000000..61a006e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-letter-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-letter-right.svg new file mode 100644 index 00000000..e107058e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-letter-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-right-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-right-justify.svg new file mode 100644 index 00000000..8e5aa55d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-right-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-right.svg new file mode 100644 index 00000000..4afd6675 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/analysis.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/analysis.svg new file mode 100644 index 00000000..0782b57d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/analysis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/analytics.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/analytics.svg new file mode 100644 index 00000000..760e60c9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/anchor.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/anchor.svg new file mode 100644 index 00000000..8dd4f23d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-down.svg new file mode 100644 index 00000000..3b3210c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-left.svg new file mode 100644 index 00000000..7e64106e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-right.svg new file mode 100644 index 00000000..f47f8515 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-up.svg new file mode 100644 index 00000000..fdbe2fc0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-double-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-down.svg new file mode 100644 index 00000000..6a9d706b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-left.svg new file mode 100644 index 00000000..0c061adc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-right-b.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-right-b.svg new file mode 100644 index 00000000..ae0f35ec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-right-b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-right.svg new file mode 100644 index 00000000..5751cbe3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-up.svg new file mode 100644 index 00000000..f85b9839 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/angle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/apps.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/apps.svg new file mode 100644 index 00000000..76956206 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-down.svg new file mode 100644 index 00000000..d22d6b05 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-left.svg new file mode 100644 index 00000000..3beb5dbb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-right.svg new file mode 100644 index 00000000..dba3a3f9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-up.svg new file mode 100644 index 00000000..88a14990 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-down-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-down-left.svg new file mode 100644 index 00000000..64ed50cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-down-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-down-right.svg new file mode 100644 index 00000000..d8332451 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-up-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-up-left.svg new file mode 100644 index 00000000..0c450450 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-up-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-up-right.svg new file mode 100644 index 00000000..6574fe26 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/at.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/at.svg new file mode 100644 index 00000000..2957f916 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/bag.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/bag.svg new file mode 100644 index 00000000..7d72e9bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/bars.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/bars.svg new file mode 100644 index 00000000..a0410b75 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/battery-bolt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/battery-bolt.svg new file mode 100644 index 00000000..2a863b07 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/battery-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/battery-empty.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/battery-empty.svg new file mode 100644 index 00000000..288270aa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/bookmark.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/bookmark.svg new file mode 100644 index 00000000..edf1cf5e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-alt.svg new file mode 100644 index 00000000..3cd6ece3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-bottom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-bottom.svg new file mode 100644 index 00000000..13365636 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-clear.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-clear.svg new file mode 100644 index 00000000..c6ee1380 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-clear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-horizontal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-horizontal.svg new file mode 100644 index 00000000..01512df9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-inner.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-inner.svg new file mode 100644 index 00000000..e2280304 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-inner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-left.svg new file mode 100644 index 00000000..cb7927e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-out.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-out.svg new file mode 100644 index 00000000..b473abe6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-right.svg new file mode 100644 index 00000000..eba9f4e7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-top.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-top.svg new file mode 100644 index 00000000..c2e13d81 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-vertical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-vertical.svg new file mode 100644 index 00000000..86ea8cf9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/border-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/briefcase.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/briefcase.svg new file mode 100644 index 00000000..598e1711 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/calender.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/calender.svg new file mode 100644 index 00000000..7e2f17ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/calender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/chart-pie.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/chart-pie.svg new file mode 100644 index 00000000..f8d3be4e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/chart.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/chart.svg new file mode 100644 index 00000000..2f164ca4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/check-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/check-circle.svg new file mode 100644 index 00000000..bf8eaa1d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/check-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/check-square.svg new file mode 100644 index 00000000..04ae667d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/check.svg new file mode 100644 index 00000000..1df5f7a3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/circle-layer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/circle-layer.svg new file mode 100644 index 00000000..352440e5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/circle-layer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clinic-medical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clinic-medical.svg new file mode 100644 index 00000000..8e0b29b1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clinic-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-eight.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-eight.svg new file mode 100644 index 00000000..8fba03c1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-eight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-five.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-five.svg new file mode 100644 index 00000000..adb76279 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-nine.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-nine.svg new file mode 100644 index 00000000..0994077d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-seven.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-seven.svg new file mode 100644 index 00000000..26df9ede --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-seven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-ten.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-ten.svg new file mode 100644 index 00000000..1d7ac11d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-ten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-three.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-three.svg new file mode 100644 index 00000000..03589294 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-two.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-two.svg new file mode 100644 index 00000000..0a2a5762 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock.svg new file mode 100644 index 00000000..5c7626e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/columns.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/columns.svg new file mode 100644 index 00000000..7d9096e9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/comment-dots.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/comment-dots.svg new file mode 100644 index 00000000..90e4d5be --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/compress.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/compress.svg new file mode 100644 index 00000000..f2427e15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/compress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-down-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-down-left.svg new file mode 100644 index 00000000..95c66bbe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-down-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-down-right.svg new file mode 100644 index 00000000..611b2182 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-left-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-left-down.svg new file mode 100644 index 00000000..6e244a92 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-right-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-right-down.svg new file mode 100644 index 00000000..cf969497 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-up-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-up-left.svg new file mode 100644 index 00000000..b38e35d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-up-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-up-right.svg new file mode 100644 index 00000000..f2f3d841 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/corner-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/coronavirus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/coronavirus.svg new file mode 100644 index 00000000..00862e79 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/coronavirus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/dialpad.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/dialpad.svg new file mode 100644 index 00000000..f0b0e17b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/dialpad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/direction.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/direction.svg new file mode 100644 index 00000000..1fec5b3e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/document-layout-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/document-layout-center.svg new file mode 100644 index 00000000..1130088c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/document-layout-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/document-layout-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/document-layout-left.svg new file mode 100644 index 00000000..3986fc4b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/document-layout-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/document-layout-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/document-layout-right.svg new file mode 100644 index 00000000..0bd1f49f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/document-layout-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/download-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/download-alt.svg new file mode 100644 index 00000000..7aca3e5f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ellipsis-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ellipsis-h.svg new file mode 100644 index 00000000..3d494bbd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ellipsis-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ellipsis-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ellipsis-v.svg new file mode 100644 index 00000000..137102a8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ellipsis-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/exclamation-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/exclamation-circle.svg new file mode 100644 index 00000000..bcc36260 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/exclamation-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/exclamation-octagon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/exclamation-octagon.svg new file mode 100644 index 00000000..8d51600d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/exclamation-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/exclamation-triangle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/exclamation-triangle.svg new file mode 100644 index 00000000..d0c7ea03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/exclamation-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/favorite.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/favorite.svg new file mode 100644 index 00000000..c2c10760 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-h-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-h-alt.svg new file mode 100644 index 00000000..584e6900 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-h-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-h.svg new file mode 100644 index 00000000..ce7694e7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-v-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-v-alt.svg new file mode 100644 index 00000000..b416fb35 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-v.svg new file mode 100644 index 00000000..979853d9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/flip-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/graph-bar.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/graph-bar.svg new file mode 100644 index 00000000..97d30e11 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/graph-bar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/grid.svg new file mode 100644 index 00000000..29684c6f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/grids.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/grids.svg new file mode 100644 index 00000000..5dd4ff86 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/grids.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/grip-horizontal-line.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/grip-horizontal-line.svg new file mode 100644 index 00000000..1745c9f1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/grip-horizontal-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/head-side-cough.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/head-side-cough.svg new file mode 100644 index 00000000..ceaacbcf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/head-side-cough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/head-side-mask.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/head-side-mask.svg new file mode 100644 index 00000000..57be6292 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/head-side-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/head-side.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/head-side.svg new file mode 100644 index 00000000..978e0a2f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/head-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/history-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/history-alt.svg new file mode 100644 index 00000000..36b36078 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/history-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/history.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/history.svg new file mode 100644 index 00000000..939a4816 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/horizontal-align-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/horizontal-align-left.svg new file mode 100644 index 00000000..40d0d07f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/horizontal-align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/hospital-square-sign.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/hospital-square-sign.svg new file mode 100644 index 00000000..ba1a14d0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/hospital-square-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/hospital-symbol.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/hospital-symbol.svg new file mode 100644 index 00000000..0e4ea59f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/hospital-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/hospital.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/hospital.svg new file mode 100644 index 00000000..cb0a5278 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/house-user.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/house-user.svg new file mode 100644 index 00000000..f412b5a3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/house-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/image-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/image-v.svg new file mode 100644 index 00000000..0bf92fb9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/image-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/key-skeleton-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/key-skeleton-alt.svg new file mode 100644 index 00000000..b2e1c8e0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/key-skeleton-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/key-skeleton.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/key-skeleton.svg new file mode 100644 index 00000000..64cc1fc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/key-skeleton.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/keyhole-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/keyhole-circle.svg new file mode 100644 index 00000000..3f519ba0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/keyhole-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/keyhole-square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/keyhole-square-full.svg new file mode 100644 index 00000000..76e6d3c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/keyhole-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/keyhole-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/keyhole-square.svg new file mode 100644 index 00000000..bc997151 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/keyhole-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/layer-group.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/layer-group.svg new file mode 100644 index 00000000..44fbddc0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/layer-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/layers-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/layers-alt.svg new file mode 100644 index 00000000..99ea91f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/layers-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/left-indent-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/left-indent-alt.svg new file mode 100644 index 00000000..9e6867db --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/left-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/left-indent.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/left-indent.svg new file mode 100644 index 00000000..1235786f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/left-indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/line-spacing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/line-spacing.svg new file mode 100644 index 00000000..b209524a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/line-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/link-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/link-h.svg new file mode 100644 index 00000000..3ebf547c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/link-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/list-ui-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/list-ui-alt.svg new file mode 100644 index 00000000..fc117a7a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/list-ui-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/list-ul.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/list-ul.svg new file mode 100644 index 00000000..fa3fa6a2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/list-ul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock-access.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock-access.svg new file mode 100644 index 00000000..8145d57f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock-access.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock-alt.svg new file mode 100644 index 00000000..62ed0532 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock-open-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock-open-alt.svg new file mode 100644 index 00000000..991ba619 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock-open-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock.svg new file mode 100644 index 00000000..7bd7408d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/microscope.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/microscope.svg new file mode 100644 index 00000000..eb9c6ccd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/minus-square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/minus-square-full.svg new file mode 100644 index 00000000..972903f8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/minus-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/multiply.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/multiply.svg new file mode 100644 index 00000000..6ef5c96a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/multiply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/object-group.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/object-group.svg new file mode 100644 index 00000000..206c04df --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/object-ungroup.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/object-ungroup.svg new file mode 100644 index 00000000..aa112262 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/padlock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/padlock.svg new file mode 100644 index 00000000..aa633e73 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/padlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/paperclip.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/paperclip.svg new file mode 100644 index 00000000..3ab05fc2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/paragraph.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/paragraph.svg new file mode 100644 index 00000000..3b629b78 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/pentagon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/pentagon.svg new file mode 100644 index 00000000..0db6ae8d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/pentagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/polygon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/polygon.svg new file mode 100644 index 00000000..608b9519 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/previous.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/previous.svg new file mode 100644 index 00000000..fa78797d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/previous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/process.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/process.svg new file mode 100644 index 00000000..5ee731eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/process.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/record-audio.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/record-audio.svg new file mode 100644 index 00000000..87d54aa8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/record-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/redo.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/redo.svg new file mode 100644 index 00000000..0700cf74 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/refresh.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/refresh.svg new file mode 100644 index 00000000..f9eaf11b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/repeat.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/repeat.svg new file mode 100644 index 00000000..917188ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/right-indent-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/right-indent-alt.svg new file mode 100644 index 00000000..f499353d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/right-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/right-indent.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/right-indent.svg new file mode 100644 index 00000000..f90ec045 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/right-indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/rocket.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/rocket.svg new file mode 100644 index 00000000..48ab0202 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ruler-combined.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ruler-combined.svg new file mode 100644 index 00000000..f0cd52c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ruler-combined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ruler.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ruler.svg new file mode 100644 index 00000000..dd85fd4e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sanitizer-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sanitizer-alt.svg new file mode 100644 index 00000000..60f6bdf3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sanitizer-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sanitizer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sanitizer.svg new file mode 100644 index 00000000..4d2949d4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sanitizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/scenery.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/scenery.svg new file mode 100644 index 00000000..cf918194 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/scenery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/schedule.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/schedule.svg new file mode 100644 index 00000000..11b95f64 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/schedule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/shield-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/shield-plus.svg new file mode 100644 index 00000000..d56bc00d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/shield-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/signal-alt-3.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/signal-alt-3.svg new file mode 100644 index 00000000..1a1aaa3c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/signal-alt-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/signal-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/signal-alt.svg new file mode 100644 index 00000000..0df47465 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/signal-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/signout.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/signout.svg new file mode 100644 index 00000000..8eeea860 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/signout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/social-distancing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/social-distancing.svg new file mode 100644 index 00000000..5e4a7232 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/social-distancing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sorting.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sorting.svg new file mode 100644 index 00000000..c460d177 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sorting.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/space-key.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/space-key.svg new file mode 100644 index 00000000..b59d3901 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/space-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/square-full.svg new file mode 100644 index 00000000..0701ca0e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/star-half-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/star-half-alt.svg new file mode 100644 index 00000000..70ed0816 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/star-half-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/star.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/star.svg new file mode 100644 index 00000000..7a1655b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/step-forward.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/step-forward.svg new file mode 100644 index 00000000..2ff51b61 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/step-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/stethoscope-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/stethoscope-alt.svg new file mode 100644 index 00000000..9a8598f3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/stethoscope-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/stethoscope.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/stethoscope.svg new file mode 100644 index 00000000..a933977b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/stopwatch.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/stopwatch.svg new file mode 100644 index 00000000..7e888291 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/store-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/store-slash.svg new file mode 100644 index 00000000..f6175330 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/store-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/subject.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/subject.svg new file mode 100644 index 00000000..edf84361 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/subject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sync-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sync-exclamation.svg new file mode 100644 index 00000000..3457ed07 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sync-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sync-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sync-slash.svg new file mode 100644 index 00000000..cd9e93c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/sync-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/table.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/table.svg new file mode 100644 index 00000000..f2f5371b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/th-large.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/th-large.svg new file mode 100644 index 00000000..fe7e2a40 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/th-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/times-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/times-circle.svg new file mode 100644 index 00000000..dab3da6c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/toggle-off.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/toggle-off.svg new file mode 100644 index 00000000..99e1a9da --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/toggle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/toggle-on.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/toggle-on.svg new file mode 100644 index 00000000..a2b034ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/toggle-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/toilet-paper.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/toilet-paper.svg new file mode 100644 index 00000000..955af967 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/toilet-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/triangle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/triangle.svg new file mode 100644 index 00000000..21fc1fd2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/unlock-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/unlock-alt.svg new file mode 100644 index 00000000..adcef068 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/unlock-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/unlock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/unlock.svg new file mode 100644 index 00000000..fec722f6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/upload-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/upload-alt.svg new file mode 100644 index 00000000..db768b9d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/user-arrows.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/user-arrows.svg new file mode 100644 index 00000000..3829ce14 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/user-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/user-md.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/user-md.svg new file mode 100644 index 00000000..961a8eae --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/user-md.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/user-nurse.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/user-nurse.svg new file mode 100644 index 00000000..b46dbcf0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/user-nurse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/vector-square-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/vector-square-alt.svg new file mode 100644 index 00000000..b1cba4e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/vector-square-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/vector-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/vector-square.svg new file mode 100644 index 00000000..e436bd03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/virus-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/virus-slash.svg new file mode 100644 index 00000000..2f75fe27 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/virus-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-grid-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-grid-alt.svg new file mode 100644 index 00000000..86bb0331 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-grid-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-grid.svg new file mode 100644 index 00000000..3af017fb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-section-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-section-alt.svg new file mode 100644 index 00000000..6be291ee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-section-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-section.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-section.svg new file mode 100644 index 00000000..efbcc79a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/web-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/window-grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/window-grid.svg new file mode 100644 index 00000000..4a89697e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/window-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/window-maximize.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/window-maximize.svg new file mode 100644 index 00000000..40cb46da --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/window-section.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/window-section.svg new file mode 100644 index 00000000..36cd59a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/window-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/wrap-text.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/wrap-text.svg new file mode 100644 index 00000000..e6c06aa5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/solid/wrap-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/adobe-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/adobe-alt.svg new file mode 100644 index 00000000..e190b560 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/adobe-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/airplay.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/airplay.svg new file mode 100644 index 00000000..7f8cc3ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-alt.svg new file mode 100644 index 00000000..f0ca2c36 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-center-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-center-alt.svg new file mode 100644 index 00000000..971c69ef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-center-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-center-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-center-justify.svg new file mode 100644 index 00000000..862e4547 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-center-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-center.svg new file mode 100644 index 00000000..d038a545 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-left-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-left-justify.svg new file mode 100644 index 00000000..1dbf3b3b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-left-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-left.svg new file mode 100644 index 00000000..977d065b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-letter-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-letter-right.svg new file mode 100644 index 00000000..12bf9c3e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-letter-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-right-justify.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-right-justify.svg new file mode 100644 index 00000000..16c008cf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-right-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-right.svg new file mode 100644 index 00000000..25d58bd2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/anchor.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/anchor.svg new file mode 100644 index 00000000..abc597d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/android-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/android-alt.svg new file mode 100644 index 00000000..a00c2606 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/android-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-double-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-double-down.svg new file mode 100644 index 00000000..097c16a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-double-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-double-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-double-left.svg new file mode 100644 index 00000000..0dcf2ae2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-double-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-double-right.svg new file mode 100644 index 00000000..5f12585c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-up.svg new file mode 100644 index 00000000..17339d94 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/angle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ankh.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ankh.svg new file mode 100644 index 00000000..e5c90756 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ankh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/apple-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/apple-alt.svg new file mode 100644 index 00000000..856179b5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/apple-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-down.svg new file mode 100644 index 00000000..007ec529 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-left.svg new file mode 100644 index 00000000..bd6da0cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-right.svg new file mode 100644 index 00000000..94aaf8e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-up.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-up.svg new file mode 100644 index 00000000..227dfa1e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-down-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-down-left.svg new file mode 100644 index 00000000..ff69b9a4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-down-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-down-right.svg new file mode 100644 index 00000000..1a5223dd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-up-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-up-left.svg new file mode 100644 index 00000000..04ca4958 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-up-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-up-right.svg new file mode 100644 index 00000000..57cd6f13 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/at.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/at.svg new file mode 100644 index 00000000..8f4337d7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/bag.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/bag.svg new file mode 100644 index 00000000..f5e9053b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/battery-bolt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/battery-bolt.svg new file mode 100644 index 00000000..03a226de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/battery-bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/battery-empty.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/battery-empty.svg new file mode 100644 index 00000000..9d60a6e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/battery-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/behance-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/behance-alt.svg new file mode 100644 index 00000000..59b52b9c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/behance-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/bitcoin-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/bitcoin-alt.svg new file mode 100644 index 00000000..9fdb5f68 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/bitcoin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/blogger-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/blogger-alt.svg new file mode 100644 index 00000000..d7bcd5bb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/blogger-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/bookmark.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/bookmark.svg new file mode 100644 index 00000000..cfc3956a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-alt.svg new file mode 100644 index 00000000..ca10f9f0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-bottom.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-bottom.svg new file mode 100644 index 00000000..6b77b6ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-clear.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-clear.svg new file mode 100644 index 00000000..b4739644 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-clear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-horizontal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-horizontal.svg new file mode 100644 index 00000000..b8131c69 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-inner.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-inner.svg new file mode 100644 index 00000000..8bfc123f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-inner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-left.svg new file mode 100644 index 00000000..4c8fd466 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-out.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-out.svg new file mode 100644 index 00000000..52a3c711 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-top.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-top.svg new file mode 100644 index 00000000..087811e8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-top.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-vertical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-vertical.svg new file mode 100644 index 00000000..a9abf911 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/border-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/calender.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/calender.svg new file mode 100644 index 00000000..6a62c561 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/calender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/chart-growth.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/chart-growth.svg new file mode 100644 index 00000000..d0bedf6d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/chart-growth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/chart-pie.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/chart-pie.svg new file mode 100644 index 00000000..f85a837a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/chart-pie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/check-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/check-circle.svg new file mode 100644 index 00000000..f76441cb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/check-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/check-square.svg new file mode 100644 index 00000000..4fa47e2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/check.svg new file mode 100644 index 00000000..43c14366 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/circle-layer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/circle-layer.svg new file mode 100644 index 00000000..8cc9556f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/circle-layer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/circuit.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/circuit.svg new file mode 100644 index 00000000..cbb00197 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/circuit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clinic-medical.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clinic-medical.svg new file mode 100644 index 00000000..273fadf9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clinic-medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-eight.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-eight.svg new file mode 100644 index 00000000..616af492 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-eight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-five.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-five.svg new file mode 100644 index 00000000..6bce6ef7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-five.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-nine.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-nine.svg new file mode 100644 index 00000000..6f78cf37 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-nine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-seven.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-seven.svg new file mode 100644 index 00000000..9f0842bc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-seven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-ten.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-ten.svg new file mode 100644 index 00000000..d8270a33 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-ten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-three.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-three.svg new file mode 100644 index 00000000..1b0bef15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-two.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-two.svg new file mode 100644 index 00000000..0e418385 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock.svg new file mode 100644 index 00000000..19860343 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/columns.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/columns.svg new file mode 100644 index 00000000..7497668b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/comment-dots.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/comment-dots.svg new file mode 100644 index 00000000..3c33da5d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/comment-dots.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/compress.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/compress.svg new file mode 100644 index 00000000..5552c0f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/compress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-down-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-down-left.svg new file mode 100644 index 00000000..4508d879 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-down-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-down-right.svg new file mode 100644 index 00000000..bd1ca2e0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-left-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-left-down.svg new file mode 100644 index 00000000..2bff33ee --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-right-down.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-right-down.svg new file mode 100644 index 00000000..63f49c1e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-up-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-up-left.svg new file mode 100644 index 00000000..4f28b4a8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-up-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-up-right.svg new file mode 100644 index 00000000..8d59faa3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/corner-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/covid-19.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/covid-19.svg new file mode 100644 index 00000000..a18c9a74 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/covid-19.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/create-dashboard.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/create-dashboard.svg new file mode 100644 index 00000000..476984c3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/create-dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/desktop-alt-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/desktop-alt-slash.svg new file mode 100644 index 00000000..43243c76 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/desktop-alt-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/dialpad.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/dialpad.svg new file mode 100644 index 00000000..442fc1b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/dialpad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/direction.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/direction.svg new file mode 100644 index 00000000..2b2a737c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/direction.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/document-layout-center.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/document-layout-center.svg new file mode 100644 index 00000000..d8e9e747 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/document-layout-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/document-layout-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/document-layout-left.svg new file mode 100644 index 00000000..9a43e271 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/document-layout-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/document-layout-right.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/document-layout-right.svg new file mode 100644 index 00000000..ebbb979a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/document-layout-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/download-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/download-alt.svg new file mode 100644 index 00000000..9d974fc5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/download-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/dropbox.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/dropbox.svg new file mode 100644 index 00000000..edafb6c6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ellipsis-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ellipsis-h.svg new file mode 100644 index 00000000..1117b4cc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ellipsis-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ellipsis-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ellipsis-v.svg new file mode 100644 index 00000000..658d63d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ellipsis-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/exclamation-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/exclamation-circle.svg new file mode 100644 index 00000000..be272540 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/exclamation-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/exclamation-octagon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/exclamation-octagon.svg new file mode 100644 index 00000000..ea163231 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/exclamation-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/exclamation-triangle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/exclamation-triangle.svg new file mode 100644 index 00000000..009ffa95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/exclamation-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/facebook-f.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/facebook-f.svg new file mode 100644 index 00000000..656e98ff --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/facebook-f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/facebook-messenger-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/facebook-messenger-alt.svg new file mode 100644 index 00000000..603f9694 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/facebook-messenger-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/favorite.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/favorite.svg new file mode 100644 index 00000000..72c5c00e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/favorite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-h-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-h-alt.svg new file mode 100644 index 00000000..b00dc203 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-h-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-h.svg new file mode 100644 index 00000000..58b6ebd3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-v-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-v-alt.svg new file mode 100644 index 00000000..e30af6fd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-v-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-v.svg new file mode 100644 index 00000000..382e98a9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/flip-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/github-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/github-alt.svg new file mode 100644 index 00000000..10261b31 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/github-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/gold.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/gold.svg new file mode 100644 index 00000000..bd489f9d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/gold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google-drive-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google-drive-alt.svg new file mode 100644 index 00000000..5876b80e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google-drive-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google-hangouts-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google-hangouts-alt.svg new file mode 100644 index 00000000..c35b7277 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google-hangouts-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google-play.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google-play.svg new file mode 100644 index 00000000..4efe9068 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google-play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google.svg new file mode 100644 index 00000000..b2219fa9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/grid.svg new file mode 100644 index 00000000..9da59991 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/grids.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/grids.svg new file mode 100644 index 00000000..3b272e57 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/grids.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/grip-horizontal-line.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/grip-horizontal-line.svg new file mode 100644 index 00000000..94113500 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/grip-horizontal-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/head-side-cough.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/head-side-cough.svg new file mode 100644 index 00000000..7e79b2de --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/head-side-cough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/head-side-mask.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/head-side-mask.svg new file mode 100644 index 00000000..90189cbd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/head-side-mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/head-side.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/head-side.svg new file mode 100644 index 00000000..bee9898a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/head-side.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/history-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/history-alt.svg new file mode 100644 index 00000000..3f0fb0b2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/history-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/history.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/history.svg new file mode 100644 index 00000000..0db6a2bf --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/horizontal-align-left.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/horizontal-align-left.svg new file mode 100644 index 00000000..7f862481 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/horizontal-align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/hospital-square-sign.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/hospital-square-sign.svg new file mode 100644 index 00000000..e3477edd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/hospital-square-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/hospital-symbol.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/hospital-symbol.svg new file mode 100644 index 00000000..fe06e1cd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/hospital-symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/hospital.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/hospital.svg new file mode 100644 index 00000000..29c0926d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/hospital.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/house-user.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/house-user.svg new file mode 100644 index 00000000..77a3768d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/house-user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/html3-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/html3-alt.svg new file mode 100644 index 00000000..11afc524 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/html3-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/image-v.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/image-v.svg new file mode 100644 index 00000000..2d4b1a03 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/image-v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/intercom-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/intercom-alt.svg new file mode 100644 index 00000000..83ee4375 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/intercom-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/key-skeleton-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/key-skeleton-alt.svg new file mode 100644 index 00000000..058f5625 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/key-skeleton-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/key-skeleton.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/key-skeleton.svg new file mode 100644 index 00000000..d6914eb6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/key-skeleton.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/laptop.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/laptop.svg new file mode 100644 index 00000000..a87ba00b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/layer-group.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/layer-group.svg new file mode 100644 index 00000000..191b71b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/layer-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/layers-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/layers-alt.svg new file mode 100644 index 00000000..4e8e9753 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/layers-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/left-indent-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/left-indent-alt.svg new file mode 100644 index 00000000..4efd5f1c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/left-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/left-indent.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/left-indent.svg new file mode 100644 index 00000000..04767aef --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/left-indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/line-spacing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/line-spacing.svg new file mode 100644 index 00000000..351769fa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/line-spacing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/link-broken.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/link-broken.svg new file mode 100644 index 00000000..e54fa45f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/link-broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/link-h.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/link-h.svg new file mode 100644 index 00000000..829f37bc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/link-h.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/linkedin-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/linkedin-alt.svg new file mode 100644 index 00000000..0ef594ed --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/linkedin-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/list-ui-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/list-ui-alt.svg new file mode 100644 index 00000000..eb92db32 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/list-ui-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/list-ul.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/list-ul.svg new file mode 100644 index 00000000..db00504b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/list-ul.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/master-card.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/master-card.svg new file mode 100644 index 00000000..dee013e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/master-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/microscope.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/microscope.svg new file mode 100644 index 00000000..82cfdce9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/microscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/minus-square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/minus-square-full.svg new file mode 100644 index 00000000..1f7c66a3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/minus-square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/modem.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/modem.svg new file mode 100644 index 00000000..0364d276 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/modem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/mouse-alt-2.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/mouse-alt-2.svg new file mode 100644 index 00000000..8ac7c3bc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/mouse-alt-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/multiply.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/multiply.svg new file mode 100644 index 00000000..0b83a750 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/multiply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/object-group.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/object-group.svg new file mode 100644 index 00000000..c6ac1b61 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/object-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/object-ungroup.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/object-ungroup.svg new file mode 100644 index 00000000..a7f98763 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/object-ungroup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/opera-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/opera-alt.svg new file mode 100644 index 00000000..12cd467a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/opera-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/paperclip.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/paperclip.svg new file mode 100644 index 00000000..49e0c3d2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/paragraph.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/paragraph.svg new file mode 100644 index 00000000..b7d6422f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/paypal.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/paypal.svg new file mode 100644 index 00000000..30360121 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/pentagon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/pentagon.svg new file mode 100644 index 00000000..7e62de4a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/pentagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/polygon.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/polygon.svg new file mode 100644 index 00000000..adb7a055 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/polygon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/previous.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/previous.svg new file mode 100644 index 00000000..419d085b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/previous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/print.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/print.svg new file mode 100644 index 00000000..51b00ea5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/process.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/process.svg new file mode 100644 index 00000000..70a755e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/process.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/pump.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/pump.svg new file mode 100644 index 00000000..cd9226f6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/question-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/question-circle.svg new file mode 100644 index 00000000..7c7db2b7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/question-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/record-audio.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/record-audio.svg new file mode 100644 index 00000000..82b654eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/record-audio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/reddit-alien-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/reddit-alien-alt.svg new file mode 100644 index 00000000..b4e00b17 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/reddit-alien-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/redo.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/redo.svg new file mode 100644 index 00000000..12271c4f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/refresh.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/refresh.svg new file mode 100644 index 00000000..003c531f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/repeat.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/repeat.svg new file mode 100644 index 00000000..23b48257 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/right-indent-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/right-indent-alt.svg new file mode 100644 index 00000000..85030309 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/right-indent-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/right-indent.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/right-indent.svg new file mode 100644 index 00000000..44ca1bf0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/right-indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/rocket.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/rocket.svg new file mode 100644 index 00000000..9fe79001 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ruler-combined.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ruler-combined.svg new file mode 100644 index 00000000..e41ab22f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ruler-combined.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ruler.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ruler.svg new file mode 100644 index 00000000..ffadf452 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sanitizer-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sanitizer-alt.svg new file mode 100644 index 00000000..cae1eee8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sanitizer-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sanitizer.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sanitizer.svg new file mode 100644 index 00000000..9aa74aa3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sanitizer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/scenery.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/scenery.svg new file mode 100644 index 00000000..1cbc1a00 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/scenery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-check.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-check.svg new file mode 100644 index 00000000..2ef4dff7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-exclamation.svg new file mode 100644 index 00000000..8fb6f9ab --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-plus.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-plus.svg new file mode 100644 index 00000000..c3185034 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-question.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-question.svg new file mode 100644 index 00000000..069e52aa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-slash.svg new file mode 100644 index 00000000..7dcd0801 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield.svg new file mode 100644 index 00000000..c38da8f2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/signal-alt-3.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/signal-alt-3.svg new file mode 100644 index 00000000..a2cdedbe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/signal-alt-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/signal-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/signal-alt.svg new file mode 100644 index 00000000..192ac5a7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/signal-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/signout.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/signout.svg new file mode 100644 index 00000000..bc2862d5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/signout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sim-card.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sim-card.svg new file mode 100644 index 00000000..844b298b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sim-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/skype-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/skype-alt.svg new file mode 100644 index 00000000..4ebbb71b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/skype-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/slack-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/slack-alt.svg new file mode 100644 index 00000000..4cbdbe69 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/slack-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/snapchat-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/snapchat-alt.svg new file mode 100644 index 00000000..61d3e3f0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/snapchat-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/social-distancing.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/social-distancing.svg new file mode 100644 index 00000000..bf021730 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/social-distancing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/space-key.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/space-key.svg new file mode 100644 index 00000000..487a0852 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/space-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/square-full.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/square-full.svg new file mode 100644 index 00000000..9bd0ed1e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/square-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/star-half-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/star-half-alt.svg new file mode 100644 index 00000000..3c598686 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/star-half-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/star.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/star.svg new file mode 100644 index 00000000..136bba51 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/step-forward.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/step-forward.svg new file mode 100644 index 00000000..389baafa --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/step-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/stethoscope-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/stethoscope-alt.svg new file mode 100644 index 00000000..8d835149 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/stethoscope-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/stethoscope.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/stethoscope.svg new file mode 100644 index 00000000..01b630e4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/stethoscope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/stopwatch.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/stopwatch.svg new file mode 100644 index 00000000..1f8091d1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/store-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/store-slash.svg new file mode 100644 index 00000000..38bdebb7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/store-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/subject.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/subject.svg new file mode 100644 index 00000000..6e5762ca --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/subject.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sync-exclamation.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sync-exclamation.svg new file mode 100644 index 00000000..e25d113e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sync-exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sync-slash.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sync-slash.svg new file mode 100644 index 00000000..fbb61589 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/sync-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/table.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/table.svg new file mode 100644 index 00000000..9a642d83 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/telegram-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/telegram-alt.svg new file mode 100644 index 00000000..58c088b9 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/telegram-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/th-large.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/th-large.svg new file mode 100644 index 00000000..a18b81b8 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/th-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/th.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/th.svg new file mode 100644 index 00000000..7e807794 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/th.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/times-circle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/times-circle.svg new file mode 100644 index 00000000..8b2d3d95 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/times-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/toggle-off.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/toggle-off.svg new file mode 100644 index 00000000..fbb4d26c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/toggle-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/toggle-on.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/toggle-on.svg new file mode 100644 index 00000000..e723a736 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/toggle-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/toilet-paper.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/toilet-paper.svg new file mode 100644 index 00000000..77a871b0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/toilet-paper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/traffic-light.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/traffic-light.svg new file mode 100644 index 00000000..33aa7a63 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/traffic-light.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/triangle.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/triangle.svg new file mode 100644 index 00000000..80bca897 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/tumblr-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/tumblr-alt.svg new file mode 100644 index 00000000..0cb24e49 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/tumblr-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/twitter-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/twitter-alt.svg new file mode 100644 index 00000000..5b25d9cd --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/twitter-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/umbrella.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/umbrella.svg new file mode 100644 index 00000000..71049a2d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/upload-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/upload-alt.svg new file mode 100644 index 00000000..1ddfbb32 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/upload-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/user-arrows.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/user-arrows.svg new file mode 100644 index 00000000..5ed85671 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/user-arrows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vector-square-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vector-square-alt.svg new file mode 100644 index 00000000..6e133078 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vector-square-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vector-square.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vector-square.svg new file mode 100644 index 00000000..108db004 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vector-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vk-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vk-alt.svg new file mode 100644 index 00000000..cfd6577f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vk-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vuejs-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vuejs-alt.svg new file mode 100644 index 00000000..69af0713 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/vuejs-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/wallet.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/wallet.svg new file mode 100644 index 00000000..5072bb4c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-grid-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-grid-alt.svg new file mode 100644 index 00000000..31a463a5 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-grid-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-grid.svg new file mode 100644 index 00000000..a9eaac78 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-section-alt.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-section-alt.svg new file mode 100644 index 00000000..46ecb517 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-section-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-section.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-section.svg new file mode 100644 index 00000000..3cd44a98 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/web-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/window-grid.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/window-grid.svg new file mode 100644 index 00000000..4a8884d1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/window-grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/window-maximize.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/window-maximize.svg new file mode 100644 index 00000000..a573362f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/window-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/window-section.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/window-section.svg new file mode 100644 index 00000000..54c22fa4 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/window-section.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/wrap-text.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/wrap-text.svg new file mode 100644 index 00000000..5ee1befe --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/wrap-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/youtube.svg b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/youtube.svg new file mode 100644 index 00000000..078f3f58 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/svg/thinline/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@iconscout/unicons/test.npmrc b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/test.npmrc new file mode 100644 index 00000000..8cfc47e2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@iconscout/unicons/test.npmrc @@ -0,0 +1,2 @@ +@iconscout:registry=https://npm-proxy.fury.io/iconscout/ +//npm-proxy.fury.io/iconscout/:_authToken= \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@mdi/font/css/materialdesignicons.min.css b/dj_backend_server/web/static/assets/libs/@mdi/font/css/materialdesignicons.min.css new file mode 100644 index 00000000..c07b2561 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@mdi/font/css/materialdesignicons.min.css @@ -0,0 +1,3 @@ +@font-face{font-family:"Material Design Icons";src:url("../fonts/materialdesignicons-webfont.eot?v=7.2.96");src:url("../fonts/materialdesignicons-webfont.eot?#iefix&v=7.2.96") format("embedded-opentype"),url("../fonts/materialdesignicons-webfont.woff2?v=7.2.96") format("woff2"),url("../fonts/materialdesignicons-webfont.woff?v=7.2.96") format("woff"),url("../fonts/materialdesignicons-webfont.ttf?v=7.2.96") format("truetype");font-weight:normal;font-style:normal}.mdi:before,.mdi-set{display:inline-block;font:normal normal normal 24px/1 "Material Design Icons";font-size:inherit;text-rendering:auto;line-height:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mdi-ab-testing::before{content:"\F01C9"}.mdi-abacus::before{content:"\F16E0"}.mdi-abjad-arabic::before{content:"\F1328"}.mdi-abjad-hebrew::before{content:"\F1329"}.mdi-abugida-devanagari::before{content:"\F132A"}.mdi-abugida-thai::before{content:"\F132B"}.mdi-access-point::before{content:"\F0003"}.mdi-access-point-check::before{content:"\F1538"}.mdi-access-point-minus::before{content:"\F1539"}.mdi-access-point-network::before{content:"\F0002"}.mdi-access-point-network-off::before{content:"\F0BE1"}.mdi-access-point-off::before{content:"\F1511"}.mdi-access-point-plus::before{content:"\F153A"}.mdi-access-point-remove::before{content:"\F153B"}.mdi-account::before{content:"\F0004"}.mdi-account-alert::before{content:"\F0005"}.mdi-account-alert-outline::before{content:"\F0B50"}.mdi-account-arrow-down::before{content:"\F1868"}.mdi-account-arrow-down-outline::before{content:"\F1869"}.mdi-account-arrow-left::before{content:"\F0B51"}.mdi-account-arrow-left-outline::before{content:"\F0B52"}.mdi-account-arrow-right::before{content:"\F0B53"}.mdi-account-arrow-right-outline::before{content:"\F0B54"}.mdi-account-arrow-up::before{content:"\F1867"}.mdi-account-arrow-up-outline::before{content:"\F186A"}.mdi-account-badge::before{content:"\F1B0A"}.mdi-account-badge-outline::before{content:"\F1B0B"}.mdi-account-box::before{content:"\F0006"}.mdi-account-box-multiple::before{content:"\F0934"}.mdi-account-box-multiple-outline::before{content:"\F100A"}.mdi-account-box-outline::before{content:"\F0007"}.mdi-account-cancel::before{content:"\F12DF"}.mdi-account-cancel-outline::before{content:"\F12E0"}.mdi-account-card::before{content:"\F1BA4"}.mdi-account-card-outline::before{content:"\F1BA5"}.mdi-account-cash::before{content:"\F1097"}.mdi-account-cash-outline::before{content:"\F1098"}.mdi-account-check::before{content:"\F0008"}.mdi-account-check-outline::before{content:"\F0BE2"}.mdi-account-child::before{content:"\F0A89"}.mdi-account-child-circle::before{content:"\F0A8A"}.mdi-account-child-outline::before{content:"\F10C8"}.mdi-account-circle::before{content:"\F0009"}.mdi-account-circle-outline::before{content:"\F0B55"}.mdi-account-clock::before{content:"\F0B56"}.mdi-account-clock-outline::before{content:"\F0B57"}.mdi-account-cog::before{content:"\F1370"}.mdi-account-cog-outline::before{content:"\F1371"}.mdi-account-convert::before{content:"\F000A"}.mdi-account-convert-outline::before{content:"\F1301"}.mdi-account-cowboy-hat::before{content:"\F0E9B"}.mdi-account-cowboy-hat-outline::before{content:"\F17F3"}.mdi-account-credit-card::before{content:"\F1BA6"}.mdi-account-credit-card-outline::before{content:"\F1BA7"}.mdi-account-details::before{content:"\F0631"}.mdi-account-details-outline::before{content:"\F1372"}.mdi-account-edit::before{content:"\F06BC"}.mdi-account-edit-outline::before{content:"\F0FFB"}.mdi-account-eye::before{content:"\F0420"}.mdi-account-eye-outline::before{content:"\F127B"}.mdi-account-filter::before{content:"\F0936"}.mdi-account-filter-outline::before{content:"\F0F9D"}.mdi-account-group::before{content:"\F0849"}.mdi-account-group-outline::before{content:"\F0B58"}.mdi-account-hard-hat::before{content:"\F05B5"}.mdi-account-hard-hat-outline::before{content:"\F1A1F"}.mdi-account-heart::before{content:"\F0899"}.mdi-account-heart-outline::before{content:"\F0BE3"}.mdi-account-injury::before{content:"\F1815"}.mdi-account-injury-outline::before{content:"\F1816"}.mdi-account-key::before{content:"\F000B"}.mdi-account-key-outline::before{content:"\F0BE4"}.mdi-account-lock::before{content:"\F115E"}.mdi-account-lock-open::before{content:"\F1960"}.mdi-account-lock-open-outline::before{content:"\F1961"}.mdi-account-lock-outline::before{content:"\F115F"}.mdi-account-minus::before{content:"\F000D"}.mdi-account-minus-outline::before{content:"\F0AEC"}.mdi-account-multiple::before{content:"\F000E"}.mdi-account-multiple-check::before{content:"\F08C5"}.mdi-account-multiple-check-outline::before{content:"\F11FE"}.mdi-account-multiple-minus::before{content:"\F05D3"}.mdi-account-multiple-minus-outline::before{content:"\F0BE5"}.mdi-account-multiple-outline::before{content:"\F000F"}.mdi-account-multiple-plus::before{content:"\F0010"}.mdi-account-multiple-plus-outline::before{content:"\F0800"}.mdi-account-multiple-remove::before{content:"\F120A"}.mdi-account-multiple-remove-outline::before{content:"\F120B"}.mdi-account-music::before{content:"\F0803"}.mdi-account-music-outline::before{content:"\F0CE9"}.mdi-account-network::before{content:"\F0011"}.mdi-account-network-off::before{content:"\F1AF1"}.mdi-account-network-off-outline::before{content:"\F1AF2"}.mdi-account-network-outline::before{content:"\F0BE6"}.mdi-account-off::before{content:"\F0012"}.mdi-account-off-outline::before{content:"\F0BE7"}.mdi-account-outline::before{content:"\F0013"}.mdi-account-plus::before{content:"\F0014"}.mdi-account-plus-outline::before{content:"\F0801"}.mdi-account-question::before{content:"\F0B59"}.mdi-account-question-outline::before{content:"\F0B5A"}.mdi-account-reactivate::before{content:"\F152B"}.mdi-account-reactivate-outline::before{content:"\F152C"}.mdi-account-remove::before{content:"\F0015"}.mdi-account-remove-outline::before{content:"\F0AED"}.mdi-account-school::before{content:"\F1A20"}.mdi-account-school-outline::before{content:"\F1A21"}.mdi-account-search::before{content:"\F0016"}.mdi-account-search-outline::before{content:"\F0935"}.mdi-account-settings::before{content:"\F0630"}.mdi-account-settings-outline::before{content:"\F10C9"}.mdi-account-star::before{content:"\F0017"}.mdi-account-star-outline::before{content:"\F0BE8"}.mdi-account-supervisor::before{content:"\F0A8B"}.mdi-account-supervisor-circle::before{content:"\F0A8C"}.mdi-account-supervisor-circle-outline::before{content:"\F14EC"}.mdi-account-supervisor-outline::before{content:"\F112D"}.mdi-account-switch::before{content:"\F0019"}.mdi-account-switch-outline::before{content:"\F04CB"}.mdi-account-sync::before{content:"\F191B"}.mdi-account-sync-outline::before{content:"\F191C"}.mdi-account-tag::before{content:"\F1C1B"}.mdi-account-tag-outline::before{content:"\F1C1C"}.mdi-account-tie::before{content:"\F0CE3"}.mdi-account-tie-hat::before{content:"\F1898"}.mdi-account-tie-hat-outline::before{content:"\F1899"}.mdi-account-tie-outline::before{content:"\F10CA"}.mdi-account-tie-voice::before{content:"\F1308"}.mdi-account-tie-voice-off::before{content:"\F130A"}.mdi-account-tie-voice-off-outline::before{content:"\F130B"}.mdi-account-tie-voice-outline::before{content:"\F1309"}.mdi-account-tie-woman::before{content:"\F1A8C"}.mdi-account-voice::before{content:"\F05CB"}.mdi-account-voice-off::before{content:"\F0ED4"}.mdi-account-wrench::before{content:"\F189A"}.mdi-account-wrench-outline::before{content:"\F189B"}.mdi-adjust::before{content:"\F001A"}.mdi-advertisements::before{content:"\F192A"}.mdi-advertisements-off::before{content:"\F192B"}.mdi-air-conditioner::before{content:"\F001B"}.mdi-air-filter::before{content:"\F0D43"}.mdi-air-horn::before{content:"\F0DAC"}.mdi-air-humidifier::before{content:"\F1099"}.mdi-air-humidifier-off::before{content:"\F1466"}.mdi-air-purifier::before{content:"\F0D44"}.mdi-air-purifier-off::before{content:"\F1B57"}.mdi-airbag::before{content:"\F0BE9"}.mdi-airballoon::before{content:"\F001C"}.mdi-airballoon-outline::before{content:"\F100B"}.mdi-airplane::before{content:"\F001D"}.mdi-airplane-alert::before{content:"\F187A"}.mdi-airplane-check::before{content:"\F187B"}.mdi-airplane-clock::before{content:"\F187C"}.mdi-airplane-cog::before{content:"\F187D"}.mdi-airplane-edit::before{content:"\F187E"}.mdi-airplane-landing::before{content:"\F05D4"}.mdi-airplane-marker::before{content:"\F187F"}.mdi-airplane-minus::before{content:"\F1880"}.mdi-airplane-off::before{content:"\F001E"}.mdi-airplane-plus::before{content:"\F1881"}.mdi-airplane-remove::before{content:"\F1882"}.mdi-airplane-search::before{content:"\F1883"}.mdi-airplane-settings::before{content:"\F1884"}.mdi-airplane-takeoff::before{content:"\F05D5"}.mdi-airport::before{content:"\F084B"}.mdi-alarm::before{content:"\F0020"}.mdi-alarm-bell::before{content:"\F078E"}.mdi-alarm-check::before{content:"\F0021"}.mdi-alarm-light::before{content:"\F078F"}.mdi-alarm-light-off::before{content:"\F171E"}.mdi-alarm-light-off-outline::before{content:"\F171F"}.mdi-alarm-light-outline::before{content:"\F0BEA"}.mdi-alarm-multiple::before{content:"\F0022"}.mdi-alarm-note::before{content:"\F0E71"}.mdi-alarm-note-off::before{content:"\F0E72"}.mdi-alarm-off::before{content:"\F0023"}.mdi-alarm-panel::before{content:"\F15C4"}.mdi-alarm-panel-outline::before{content:"\F15C5"}.mdi-alarm-plus::before{content:"\F0024"}.mdi-alarm-snooze::before{content:"\F068E"}.mdi-album::before{content:"\F0025"}.mdi-alert::before{content:"\F0026"}.mdi-alert-box::before{content:"\F0027"}.mdi-alert-box-outline::before{content:"\F0CE4"}.mdi-alert-circle::before{content:"\F0028"}.mdi-alert-circle-check::before{content:"\F11ED"}.mdi-alert-circle-check-outline::before{content:"\F11EE"}.mdi-alert-circle-outline::before{content:"\F05D6"}.mdi-alert-decagram::before{content:"\F06BD"}.mdi-alert-decagram-outline::before{content:"\F0CE5"}.mdi-alert-minus::before{content:"\F14BB"}.mdi-alert-minus-outline::before{content:"\F14BE"}.mdi-alert-octagon::before{content:"\F0029"}.mdi-alert-octagon-outline::before{content:"\F0CE6"}.mdi-alert-octagram::before{content:"\F0767"}.mdi-alert-octagram-outline::before{content:"\F0CE7"}.mdi-alert-outline::before{content:"\F002A"}.mdi-alert-plus::before{content:"\F14BA"}.mdi-alert-plus-outline::before{content:"\F14BD"}.mdi-alert-remove::before{content:"\F14BC"}.mdi-alert-remove-outline::before{content:"\F14BF"}.mdi-alert-rhombus::before{content:"\F11CE"}.mdi-alert-rhombus-outline::before{content:"\F11CF"}.mdi-alien::before{content:"\F089A"}.mdi-alien-outline::before{content:"\F10CB"}.mdi-align-horizontal-center::before{content:"\F11C3"}.mdi-align-horizontal-distribute::before{content:"\F1962"}.mdi-align-horizontal-left::before{content:"\F11C2"}.mdi-align-horizontal-right::before{content:"\F11C4"}.mdi-align-vertical-bottom::before{content:"\F11C5"}.mdi-align-vertical-center::before{content:"\F11C6"}.mdi-align-vertical-distribute::before{content:"\F1963"}.mdi-align-vertical-top::before{content:"\F11C7"}.mdi-all-inclusive::before{content:"\F06BE"}.mdi-all-inclusive-box::before{content:"\F188D"}.mdi-all-inclusive-box-outline::before{content:"\F188E"}.mdi-allergy::before{content:"\F1258"}.mdi-alpha::before{content:"\F002B"}.mdi-alpha-a::before{content:"\F0AEE"}.mdi-alpha-a-box::before{content:"\F0B08"}.mdi-alpha-a-box-outline::before{content:"\F0BEB"}.mdi-alpha-a-circle::before{content:"\F0BEC"}.mdi-alpha-a-circle-outline::before{content:"\F0BED"}.mdi-alpha-b::before{content:"\F0AEF"}.mdi-alpha-b-box::before{content:"\F0B09"}.mdi-alpha-b-box-outline::before{content:"\F0BEE"}.mdi-alpha-b-circle::before{content:"\F0BEF"}.mdi-alpha-b-circle-outline::before{content:"\F0BF0"}.mdi-alpha-c::before{content:"\F0AF0"}.mdi-alpha-c-box::before{content:"\F0B0A"}.mdi-alpha-c-box-outline::before{content:"\F0BF1"}.mdi-alpha-c-circle::before{content:"\F0BF2"}.mdi-alpha-c-circle-outline::before{content:"\F0BF3"}.mdi-alpha-d::before{content:"\F0AF1"}.mdi-alpha-d-box::before{content:"\F0B0B"}.mdi-alpha-d-box-outline::before{content:"\F0BF4"}.mdi-alpha-d-circle::before{content:"\F0BF5"}.mdi-alpha-d-circle-outline::before{content:"\F0BF6"}.mdi-alpha-e::before{content:"\F0AF2"}.mdi-alpha-e-box::before{content:"\F0B0C"}.mdi-alpha-e-box-outline::before{content:"\F0BF7"}.mdi-alpha-e-circle::before{content:"\F0BF8"}.mdi-alpha-e-circle-outline::before{content:"\F0BF9"}.mdi-alpha-f::before{content:"\F0AF3"}.mdi-alpha-f-box::before{content:"\F0B0D"}.mdi-alpha-f-box-outline::before{content:"\F0BFA"}.mdi-alpha-f-circle::before{content:"\F0BFB"}.mdi-alpha-f-circle-outline::before{content:"\F0BFC"}.mdi-alpha-g::before{content:"\F0AF4"}.mdi-alpha-g-box::before{content:"\F0B0E"}.mdi-alpha-g-box-outline::before{content:"\F0BFD"}.mdi-alpha-g-circle::before{content:"\F0BFE"}.mdi-alpha-g-circle-outline::before{content:"\F0BFF"}.mdi-alpha-h::before{content:"\F0AF5"}.mdi-alpha-h-box::before{content:"\F0B0F"}.mdi-alpha-h-box-outline::before{content:"\F0C00"}.mdi-alpha-h-circle::before{content:"\F0C01"}.mdi-alpha-h-circle-outline::before{content:"\F0C02"}.mdi-alpha-i::before{content:"\F0AF6"}.mdi-alpha-i-box::before{content:"\F0B10"}.mdi-alpha-i-box-outline::before{content:"\F0C03"}.mdi-alpha-i-circle::before{content:"\F0C04"}.mdi-alpha-i-circle-outline::before{content:"\F0C05"}.mdi-alpha-j::before{content:"\F0AF7"}.mdi-alpha-j-box::before{content:"\F0B11"}.mdi-alpha-j-box-outline::before{content:"\F0C06"}.mdi-alpha-j-circle::before{content:"\F0C07"}.mdi-alpha-j-circle-outline::before{content:"\F0C08"}.mdi-alpha-k::before{content:"\F0AF8"}.mdi-alpha-k-box::before{content:"\F0B12"}.mdi-alpha-k-box-outline::before{content:"\F0C09"}.mdi-alpha-k-circle::before{content:"\F0C0A"}.mdi-alpha-k-circle-outline::before{content:"\F0C0B"}.mdi-alpha-l::before{content:"\F0AF9"}.mdi-alpha-l-box::before{content:"\F0B13"}.mdi-alpha-l-box-outline::before{content:"\F0C0C"}.mdi-alpha-l-circle::before{content:"\F0C0D"}.mdi-alpha-l-circle-outline::before{content:"\F0C0E"}.mdi-alpha-m::before{content:"\F0AFA"}.mdi-alpha-m-box::before{content:"\F0B14"}.mdi-alpha-m-box-outline::before{content:"\F0C0F"}.mdi-alpha-m-circle::before{content:"\F0C10"}.mdi-alpha-m-circle-outline::before{content:"\F0C11"}.mdi-alpha-n::before{content:"\F0AFB"}.mdi-alpha-n-box::before{content:"\F0B15"}.mdi-alpha-n-box-outline::before{content:"\F0C12"}.mdi-alpha-n-circle::before{content:"\F0C13"}.mdi-alpha-n-circle-outline::before{content:"\F0C14"}.mdi-alpha-o::before{content:"\F0AFC"}.mdi-alpha-o-box::before{content:"\F0B16"}.mdi-alpha-o-box-outline::before{content:"\F0C15"}.mdi-alpha-o-circle::before{content:"\F0C16"}.mdi-alpha-o-circle-outline::before{content:"\F0C17"}.mdi-alpha-p::before{content:"\F0AFD"}.mdi-alpha-p-box::before{content:"\F0B17"}.mdi-alpha-p-box-outline::before{content:"\F0C18"}.mdi-alpha-p-circle::before{content:"\F0C19"}.mdi-alpha-p-circle-outline::before{content:"\F0C1A"}.mdi-alpha-q::before{content:"\F0AFE"}.mdi-alpha-q-box::before{content:"\F0B18"}.mdi-alpha-q-box-outline::before{content:"\F0C1B"}.mdi-alpha-q-circle::before{content:"\F0C1C"}.mdi-alpha-q-circle-outline::before{content:"\F0C1D"}.mdi-alpha-r::before{content:"\F0AFF"}.mdi-alpha-r-box::before{content:"\F0B19"}.mdi-alpha-r-box-outline::before{content:"\F0C1E"}.mdi-alpha-r-circle::before{content:"\F0C1F"}.mdi-alpha-r-circle-outline::before{content:"\F0C20"}.mdi-alpha-s::before{content:"\F0B00"}.mdi-alpha-s-box::before{content:"\F0B1A"}.mdi-alpha-s-box-outline::before{content:"\F0C21"}.mdi-alpha-s-circle::before{content:"\F0C22"}.mdi-alpha-s-circle-outline::before{content:"\F0C23"}.mdi-alpha-t::before{content:"\F0B01"}.mdi-alpha-t-box::before{content:"\F0B1B"}.mdi-alpha-t-box-outline::before{content:"\F0C24"}.mdi-alpha-t-circle::before{content:"\F0C25"}.mdi-alpha-t-circle-outline::before{content:"\F0C26"}.mdi-alpha-u::before{content:"\F0B02"}.mdi-alpha-u-box::before{content:"\F0B1C"}.mdi-alpha-u-box-outline::before{content:"\F0C27"}.mdi-alpha-u-circle::before{content:"\F0C28"}.mdi-alpha-u-circle-outline::before{content:"\F0C29"}.mdi-alpha-v::before{content:"\F0B03"}.mdi-alpha-v-box::before{content:"\F0B1D"}.mdi-alpha-v-box-outline::before{content:"\F0C2A"}.mdi-alpha-v-circle::before{content:"\F0C2B"}.mdi-alpha-v-circle-outline::before{content:"\F0C2C"}.mdi-alpha-w::before{content:"\F0B04"}.mdi-alpha-w-box::before{content:"\F0B1E"}.mdi-alpha-w-box-outline::before{content:"\F0C2D"}.mdi-alpha-w-circle::before{content:"\F0C2E"}.mdi-alpha-w-circle-outline::before{content:"\F0C2F"}.mdi-alpha-x::before{content:"\F0B05"}.mdi-alpha-x-box::before{content:"\F0B1F"}.mdi-alpha-x-box-outline::before{content:"\F0C30"}.mdi-alpha-x-circle::before{content:"\F0C31"}.mdi-alpha-x-circle-outline::before{content:"\F0C32"}.mdi-alpha-y::before{content:"\F0B06"}.mdi-alpha-y-box::before{content:"\F0B20"}.mdi-alpha-y-box-outline::before{content:"\F0C33"}.mdi-alpha-y-circle::before{content:"\F0C34"}.mdi-alpha-y-circle-outline::before{content:"\F0C35"}.mdi-alpha-z::before{content:"\F0B07"}.mdi-alpha-z-box::before{content:"\F0B21"}.mdi-alpha-z-box-outline::before{content:"\F0C36"}.mdi-alpha-z-circle::before{content:"\F0C37"}.mdi-alpha-z-circle-outline::before{content:"\F0C38"}.mdi-alphabet-aurebesh::before{content:"\F132C"}.mdi-alphabet-cyrillic::before{content:"\F132D"}.mdi-alphabet-greek::before{content:"\F132E"}.mdi-alphabet-latin::before{content:"\F132F"}.mdi-alphabet-piqad::before{content:"\F1330"}.mdi-alphabet-tengwar::before{content:"\F1337"}.mdi-alphabetical::before{content:"\F002C"}.mdi-alphabetical-off::before{content:"\F100C"}.mdi-alphabetical-variant::before{content:"\F100D"}.mdi-alphabetical-variant-off::before{content:"\F100E"}.mdi-altimeter::before{content:"\F05D7"}.mdi-ambulance::before{content:"\F002F"}.mdi-ammunition::before{content:"\F0CE8"}.mdi-ampersand::before{content:"\F0A8D"}.mdi-amplifier::before{content:"\F0030"}.mdi-amplifier-off::before{content:"\F11B5"}.mdi-anchor::before{content:"\F0031"}.mdi-android::before{content:"\F0032"}.mdi-android-studio::before{content:"\F0034"}.mdi-angle-acute::before{content:"\F0937"}.mdi-angle-obtuse::before{content:"\F0938"}.mdi-angle-right::before{content:"\F0939"}.mdi-angular::before{content:"\F06B2"}.mdi-angularjs::before{content:"\F06BF"}.mdi-animation::before{content:"\F05D8"}.mdi-animation-outline::before{content:"\F0A8F"}.mdi-animation-play::before{content:"\F093A"}.mdi-animation-play-outline::before{content:"\F0A90"}.mdi-ansible::before{content:"\F109A"}.mdi-antenna::before{content:"\F1119"}.mdi-anvil::before{content:"\F089B"}.mdi-apache-kafka::before{content:"\F100F"}.mdi-api::before{content:"\F109B"}.mdi-api-off::before{content:"\F1257"}.mdi-apple::before{content:"\F0035"}.mdi-apple-finder::before{content:"\F0036"}.mdi-apple-icloud::before{content:"\F0038"}.mdi-apple-ios::before{content:"\F0037"}.mdi-apple-keyboard-caps::before{content:"\F0632"}.mdi-apple-keyboard-command::before{content:"\F0633"}.mdi-apple-keyboard-control::before{content:"\F0634"}.mdi-apple-keyboard-option::before{content:"\F0635"}.mdi-apple-keyboard-shift::before{content:"\F0636"}.mdi-apple-safari::before{content:"\F0039"}.mdi-application::before{content:"\F08C6"}.mdi-application-array::before{content:"\F10F5"}.mdi-application-array-outline::before{content:"\F10F6"}.mdi-application-braces::before{content:"\F10F7"}.mdi-application-braces-outline::before{content:"\F10F8"}.mdi-application-brackets::before{content:"\F0C8B"}.mdi-application-brackets-outline::before{content:"\F0C8C"}.mdi-application-cog::before{content:"\F0675"}.mdi-application-cog-outline::before{content:"\F1577"}.mdi-application-edit::before{content:"\F00AE"}.mdi-application-edit-outline::before{content:"\F0619"}.mdi-application-export::before{content:"\F0DAD"}.mdi-application-import::before{content:"\F0DAE"}.mdi-application-outline::before{content:"\F0614"}.mdi-application-parentheses::before{content:"\F10F9"}.mdi-application-parentheses-outline::before{content:"\F10FA"}.mdi-application-settings::before{content:"\F0B60"}.mdi-application-settings-outline::before{content:"\F1555"}.mdi-application-variable::before{content:"\F10FB"}.mdi-application-variable-outline::before{content:"\F10FC"}.mdi-approximately-equal::before{content:"\F0F9E"}.mdi-approximately-equal-box::before{content:"\F0F9F"}.mdi-apps::before{content:"\F003B"}.mdi-apps-box::before{content:"\F0D46"}.mdi-arch::before{content:"\F08C7"}.mdi-archive::before{content:"\F003C"}.mdi-archive-alert::before{content:"\F14FD"}.mdi-archive-alert-outline::before{content:"\F14FE"}.mdi-archive-arrow-down::before{content:"\F1259"}.mdi-archive-arrow-down-outline::before{content:"\F125A"}.mdi-archive-arrow-up::before{content:"\F125B"}.mdi-archive-arrow-up-outline::before{content:"\F125C"}.mdi-archive-cancel::before{content:"\F174B"}.mdi-archive-cancel-outline::before{content:"\F174C"}.mdi-archive-check::before{content:"\F174D"}.mdi-archive-check-outline::before{content:"\F174E"}.mdi-archive-clock::before{content:"\F174F"}.mdi-archive-clock-outline::before{content:"\F1750"}.mdi-archive-cog::before{content:"\F1751"}.mdi-archive-cog-outline::before{content:"\F1752"}.mdi-archive-edit::before{content:"\F1753"}.mdi-archive-edit-outline::before{content:"\F1754"}.mdi-archive-eye::before{content:"\F1755"}.mdi-archive-eye-outline::before{content:"\F1756"}.mdi-archive-lock::before{content:"\F1757"}.mdi-archive-lock-open::before{content:"\F1758"}.mdi-archive-lock-open-outline::before{content:"\F1759"}.mdi-archive-lock-outline::before{content:"\F175A"}.mdi-archive-marker::before{content:"\F175B"}.mdi-archive-marker-outline::before{content:"\F175C"}.mdi-archive-minus::before{content:"\F175D"}.mdi-archive-minus-outline::before{content:"\F175E"}.mdi-archive-music::before{content:"\F175F"}.mdi-archive-music-outline::before{content:"\F1760"}.mdi-archive-off::before{content:"\F1761"}.mdi-archive-off-outline::before{content:"\F1762"}.mdi-archive-outline::before{content:"\F120E"}.mdi-archive-plus::before{content:"\F1763"}.mdi-archive-plus-outline::before{content:"\F1764"}.mdi-archive-refresh::before{content:"\F1765"}.mdi-archive-refresh-outline::before{content:"\F1766"}.mdi-archive-remove::before{content:"\F1767"}.mdi-archive-remove-outline::before{content:"\F1768"}.mdi-archive-search::before{content:"\F1769"}.mdi-archive-search-outline::before{content:"\F176A"}.mdi-archive-settings::before{content:"\F176B"}.mdi-archive-settings-outline::before{content:"\F176C"}.mdi-archive-star::before{content:"\F176D"}.mdi-archive-star-outline::before{content:"\F176E"}.mdi-archive-sync::before{content:"\F176F"}.mdi-archive-sync-outline::before{content:"\F1770"}.mdi-arm-flex::before{content:"\F0FD7"}.mdi-arm-flex-outline::before{content:"\F0FD6"}.mdi-arrange-bring-forward::before{content:"\F003D"}.mdi-arrange-bring-to-front::before{content:"\F003E"}.mdi-arrange-send-backward::before{content:"\F003F"}.mdi-arrange-send-to-back::before{content:"\F0040"}.mdi-arrow-all::before{content:"\F0041"}.mdi-arrow-bottom-left::before{content:"\F0042"}.mdi-arrow-bottom-left-bold-box::before{content:"\F1964"}.mdi-arrow-bottom-left-bold-box-outline::before{content:"\F1965"}.mdi-arrow-bottom-left-bold-outline::before{content:"\F09B7"}.mdi-arrow-bottom-left-thick::before{content:"\F09B8"}.mdi-arrow-bottom-left-thin::before{content:"\F19B6"}.mdi-arrow-bottom-left-thin-circle-outline::before{content:"\F1596"}.mdi-arrow-bottom-right::before{content:"\F0043"}.mdi-arrow-bottom-right-bold-box::before{content:"\F1966"}.mdi-arrow-bottom-right-bold-box-outline::before{content:"\F1967"}.mdi-arrow-bottom-right-bold-outline::before{content:"\F09B9"}.mdi-arrow-bottom-right-thick::before{content:"\F09BA"}.mdi-arrow-bottom-right-thin::before{content:"\F19B7"}.mdi-arrow-bottom-right-thin-circle-outline::before{content:"\F1595"}.mdi-arrow-collapse::before{content:"\F0615"}.mdi-arrow-collapse-all::before{content:"\F0044"}.mdi-arrow-collapse-down::before{content:"\F0792"}.mdi-arrow-collapse-horizontal::before{content:"\F084C"}.mdi-arrow-collapse-left::before{content:"\F0793"}.mdi-arrow-collapse-right::before{content:"\F0794"}.mdi-arrow-collapse-up::before{content:"\F0795"}.mdi-arrow-collapse-vertical::before{content:"\F084D"}.mdi-arrow-decision::before{content:"\F09BB"}.mdi-arrow-decision-auto::before{content:"\F09BC"}.mdi-arrow-decision-auto-outline::before{content:"\F09BD"}.mdi-arrow-decision-outline::before{content:"\F09BE"}.mdi-arrow-down::before{content:"\F0045"}.mdi-arrow-down-bold::before{content:"\F072E"}.mdi-arrow-down-bold-box::before{content:"\F072F"}.mdi-arrow-down-bold-box-outline::before{content:"\F0730"}.mdi-arrow-down-bold-circle::before{content:"\F0047"}.mdi-arrow-down-bold-circle-outline::before{content:"\F0048"}.mdi-arrow-down-bold-hexagon-outline::before{content:"\F0049"}.mdi-arrow-down-bold-outline::before{content:"\F09BF"}.mdi-arrow-down-box::before{content:"\F06C0"}.mdi-arrow-down-circle::before{content:"\F0CDB"}.mdi-arrow-down-circle-outline::before{content:"\F0CDC"}.mdi-arrow-down-drop-circle::before{content:"\F004A"}.mdi-arrow-down-drop-circle-outline::before{content:"\F004B"}.mdi-arrow-down-left::before{content:"\F17A1"}.mdi-arrow-down-left-bold::before{content:"\F17A2"}.mdi-arrow-down-right::before{content:"\F17A3"}.mdi-arrow-down-right-bold::before{content:"\F17A4"}.mdi-arrow-down-thick::before{content:"\F0046"}.mdi-arrow-down-thin::before{content:"\F19B3"}.mdi-arrow-down-thin-circle-outline::before{content:"\F1599"}.mdi-arrow-expand::before{content:"\F0616"}.mdi-arrow-expand-all::before{content:"\F004C"}.mdi-arrow-expand-down::before{content:"\F0796"}.mdi-arrow-expand-horizontal::before{content:"\F084E"}.mdi-arrow-expand-left::before{content:"\F0797"}.mdi-arrow-expand-right::before{content:"\F0798"}.mdi-arrow-expand-up::before{content:"\F0799"}.mdi-arrow-expand-vertical::before{content:"\F084F"}.mdi-arrow-horizontal-lock::before{content:"\F115B"}.mdi-arrow-left::before{content:"\F004D"}.mdi-arrow-left-bold::before{content:"\F0731"}.mdi-arrow-left-bold-box::before{content:"\F0732"}.mdi-arrow-left-bold-box-outline::before{content:"\F0733"}.mdi-arrow-left-bold-circle::before{content:"\F004F"}.mdi-arrow-left-bold-circle-outline::before{content:"\F0050"}.mdi-arrow-left-bold-hexagon-outline::before{content:"\F0051"}.mdi-arrow-left-bold-outline::before{content:"\F09C0"}.mdi-arrow-left-bottom::before{content:"\F17A5"}.mdi-arrow-left-bottom-bold::before{content:"\F17A6"}.mdi-arrow-left-box::before{content:"\F06C1"}.mdi-arrow-left-circle::before{content:"\F0CDD"}.mdi-arrow-left-circle-outline::before{content:"\F0CDE"}.mdi-arrow-left-drop-circle::before{content:"\F0052"}.mdi-arrow-left-drop-circle-outline::before{content:"\F0053"}.mdi-arrow-left-right::before{content:"\F0E73"}.mdi-arrow-left-right-bold::before{content:"\F0E74"}.mdi-arrow-left-right-bold-outline::before{content:"\F09C1"}.mdi-arrow-left-thick::before{content:"\F004E"}.mdi-arrow-left-thin::before{content:"\F19B1"}.mdi-arrow-left-thin-circle-outline::before{content:"\F159A"}.mdi-arrow-left-top::before{content:"\F17A7"}.mdi-arrow-left-top-bold::before{content:"\F17A8"}.mdi-arrow-projectile::before{content:"\F1840"}.mdi-arrow-projectile-multiple::before{content:"\F183F"}.mdi-arrow-right::before{content:"\F0054"}.mdi-arrow-right-bold::before{content:"\F0734"}.mdi-arrow-right-bold-box::before{content:"\F0735"}.mdi-arrow-right-bold-box-outline::before{content:"\F0736"}.mdi-arrow-right-bold-circle::before{content:"\F0056"}.mdi-arrow-right-bold-circle-outline::before{content:"\F0057"}.mdi-arrow-right-bold-hexagon-outline::before{content:"\F0058"}.mdi-arrow-right-bold-outline::before{content:"\F09C2"}.mdi-arrow-right-bottom::before{content:"\F17A9"}.mdi-arrow-right-bottom-bold::before{content:"\F17AA"}.mdi-arrow-right-box::before{content:"\F06C2"}.mdi-arrow-right-circle::before{content:"\F0CDF"}.mdi-arrow-right-circle-outline::before{content:"\F0CE0"}.mdi-arrow-right-drop-circle::before{content:"\F0059"}.mdi-arrow-right-drop-circle-outline::before{content:"\F005A"}.mdi-arrow-right-thick::before{content:"\F0055"}.mdi-arrow-right-thin::before{content:"\F19B0"}.mdi-arrow-right-thin-circle-outline::before{content:"\F1598"}.mdi-arrow-right-top::before{content:"\F17AB"}.mdi-arrow-right-top-bold::before{content:"\F17AC"}.mdi-arrow-split-horizontal::before{content:"\F093B"}.mdi-arrow-split-vertical::before{content:"\F093C"}.mdi-arrow-top-left::before{content:"\F005B"}.mdi-arrow-top-left-bold-box::before{content:"\F1968"}.mdi-arrow-top-left-bold-box-outline::before{content:"\F1969"}.mdi-arrow-top-left-bold-outline::before{content:"\F09C3"}.mdi-arrow-top-left-bottom-right::before{content:"\F0E75"}.mdi-arrow-top-left-bottom-right-bold::before{content:"\F0E76"}.mdi-arrow-top-left-thick::before{content:"\F09C4"}.mdi-arrow-top-left-thin::before{content:"\F19B5"}.mdi-arrow-top-left-thin-circle-outline::before{content:"\F1593"}.mdi-arrow-top-right::before{content:"\F005C"}.mdi-arrow-top-right-bold-box::before{content:"\F196A"}.mdi-arrow-top-right-bold-box-outline::before{content:"\F196B"}.mdi-arrow-top-right-bold-outline::before{content:"\F09C5"}.mdi-arrow-top-right-bottom-left::before{content:"\F0E77"}.mdi-arrow-top-right-bottom-left-bold::before{content:"\F0E78"}.mdi-arrow-top-right-thick::before{content:"\F09C6"}.mdi-arrow-top-right-thin::before{content:"\F19B4"}.mdi-arrow-top-right-thin-circle-outline::before{content:"\F1594"}.mdi-arrow-u-down-left::before{content:"\F17AD"}.mdi-arrow-u-down-left-bold::before{content:"\F17AE"}.mdi-arrow-u-down-right::before{content:"\F17AF"}.mdi-arrow-u-down-right-bold::before{content:"\F17B0"}.mdi-arrow-u-left-bottom::before{content:"\F17B1"}.mdi-arrow-u-left-bottom-bold::before{content:"\F17B2"}.mdi-arrow-u-left-top::before{content:"\F17B3"}.mdi-arrow-u-left-top-bold::before{content:"\F17B4"}.mdi-arrow-u-right-bottom::before{content:"\F17B5"}.mdi-arrow-u-right-bottom-bold::before{content:"\F17B6"}.mdi-arrow-u-right-top::before{content:"\F17B7"}.mdi-arrow-u-right-top-bold::before{content:"\F17B8"}.mdi-arrow-u-up-left::before{content:"\F17B9"}.mdi-arrow-u-up-left-bold::before{content:"\F17BA"}.mdi-arrow-u-up-right::before{content:"\F17BB"}.mdi-arrow-u-up-right-bold::before{content:"\F17BC"}.mdi-arrow-up::before{content:"\F005D"}.mdi-arrow-up-bold::before{content:"\F0737"}.mdi-arrow-up-bold-box::before{content:"\F0738"}.mdi-arrow-up-bold-box-outline::before{content:"\F0739"}.mdi-arrow-up-bold-circle::before{content:"\F005F"}.mdi-arrow-up-bold-circle-outline::before{content:"\F0060"}.mdi-arrow-up-bold-hexagon-outline::before{content:"\F0061"}.mdi-arrow-up-bold-outline::before{content:"\F09C7"}.mdi-arrow-up-box::before{content:"\F06C3"}.mdi-arrow-up-circle::before{content:"\F0CE1"}.mdi-arrow-up-circle-outline::before{content:"\F0CE2"}.mdi-arrow-up-down::before{content:"\F0E79"}.mdi-arrow-up-down-bold::before{content:"\F0E7A"}.mdi-arrow-up-down-bold-outline::before{content:"\F09C8"}.mdi-arrow-up-drop-circle::before{content:"\F0062"}.mdi-arrow-up-drop-circle-outline::before{content:"\F0063"}.mdi-arrow-up-left::before{content:"\F17BD"}.mdi-arrow-up-left-bold::before{content:"\F17BE"}.mdi-arrow-up-right::before{content:"\F17BF"}.mdi-arrow-up-right-bold::before{content:"\F17C0"}.mdi-arrow-up-thick::before{content:"\F005E"}.mdi-arrow-up-thin::before{content:"\F19B2"}.mdi-arrow-up-thin-circle-outline::before{content:"\F1597"}.mdi-arrow-vertical-lock::before{content:"\F115C"}.mdi-artboard::before{content:"\F1B9A"}.mdi-artstation::before{content:"\F0B5B"}.mdi-aspect-ratio::before{content:"\F0A24"}.mdi-assistant::before{content:"\F0064"}.mdi-asterisk::before{content:"\F06C4"}.mdi-asterisk-circle-outline::before{content:"\F1A27"}.mdi-at::before{content:"\F0065"}.mdi-atlassian::before{content:"\F0804"}.mdi-atm::before{content:"\F0D47"}.mdi-atom::before{content:"\F0768"}.mdi-atom-variant::before{content:"\F0E7B"}.mdi-attachment::before{content:"\F0066"}.mdi-attachment-check::before{content:"\F1AC1"}.mdi-attachment-lock::before{content:"\F19C4"}.mdi-attachment-minus::before{content:"\F1AC2"}.mdi-attachment-off::before{content:"\F1AC3"}.mdi-attachment-plus::before{content:"\F1AC4"}.mdi-attachment-remove::before{content:"\F1AC5"}.mdi-atv::before{content:"\F1B70"}.mdi-audio-input-rca::before{content:"\F186B"}.mdi-audio-input-stereo-minijack::before{content:"\F186C"}.mdi-audio-input-xlr::before{content:"\F186D"}.mdi-audio-video::before{content:"\F093D"}.mdi-audio-video-off::before{content:"\F11B6"}.mdi-augmented-reality::before{content:"\F0850"}.mdi-aurora::before{content:"\F1BB9"}.mdi-auto-download::before{content:"\F137E"}.mdi-auto-fix::before{content:"\F0068"}.mdi-auto-mode::before{content:"\F1C20"}.mdi-auto-upload::before{content:"\F0069"}.mdi-autorenew::before{content:"\F006A"}.mdi-autorenew-off::before{content:"\F19E7"}.mdi-av-timer::before{content:"\F006B"}.mdi-awning::before{content:"\F1B87"}.mdi-awning-outline::before{content:"\F1B88"}.mdi-aws::before{content:"\F0E0F"}.mdi-axe::before{content:"\F08C8"}.mdi-axe-battle::before{content:"\F1842"}.mdi-axis::before{content:"\F0D48"}.mdi-axis-arrow::before{content:"\F0D49"}.mdi-axis-arrow-info::before{content:"\F140E"}.mdi-axis-arrow-lock::before{content:"\F0D4A"}.mdi-axis-lock::before{content:"\F0D4B"}.mdi-axis-x-arrow::before{content:"\F0D4C"}.mdi-axis-x-arrow-lock::before{content:"\F0D4D"}.mdi-axis-x-rotate-clockwise::before{content:"\F0D4E"}.mdi-axis-x-rotate-counterclockwise::before{content:"\F0D4F"}.mdi-axis-x-y-arrow-lock::before{content:"\F0D50"}.mdi-axis-y-arrow::before{content:"\F0D51"}.mdi-axis-y-arrow-lock::before{content:"\F0D52"}.mdi-axis-y-rotate-clockwise::before{content:"\F0D53"}.mdi-axis-y-rotate-counterclockwise::before{content:"\F0D54"}.mdi-axis-z-arrow::before{content:"\F0D55"}.mdi-axis-z-arrow-lock::before{content:"\F0D56"}.mdi-axis-z-rotate-clockwise::before{content:"\F0D57"}.mdi-axis-z-rotate-counterclockwise::before{content:"\F0D58"}.mdi-babel::before{content:"\F0A25"}.mdi-baby::before{content:"\F006C"}.mdi-baby-bottle::before{content:"\F0F39"}.mdi-baby-bottle-outline::before{content:"\F0F3A"}.mdi-baby-buggy::before{content:"\F13E0"}.mdi-baby-buggy-off::before{content:"\F1AF3"}.mdi-baby-carriage::before{content:"\F068F"}.mdi-baby-carriage-off::before{content:"\F0FA0"}.mdi-baby-face::before{content:"\F0E7C"}.mdi-baby-face-outline::before{content:"\F0E7D"}.mdi-backburger::before{content:"\F006D"}.mdi-backspace::before{content:"\F006E"}.mdi-backspace-outline::before{content:"\F0B5C"}.mdi-backspace-reverse::before{content:"\F0E7E"}.mdi-backspace-reverse-outline::before{content:"\F0E7F"}.mdi-backup-restore::before{content:"\F006F"}.mdi-bacteria::before{content:"\F0ED5"}.mdi-bacteria-outline::before{content:"\F0ED6"}.mdi-badge-account::before{content:"\F0DA7"}.mdi-badge-account-alert::before{content:"\F0DA8"}.mdi-badge-account-alert-outline::before{content:"\F0DA9"}.mdi-badge-account-horizontal::before{content:"\F0E0D"}.mdi-badge-account-horizontal-outline::before{content:"\F0E0E"}.mdi-badge-account-outline::before{content:"\F0DAA"}.mdi-badminton::before{content:"\F0851"}.mdi-bag-carry-on::before{content:"\F0F3B"}.mdi-bag-carry-on-check::before{content:"\F0D65"}.mdi-bag-carry-on-off::before{content:"\F0F3C"}.mdi-bag-checked::before{content:"\F0F3D"}.mdi-bag-personal::before{content:"\F0E10"}.mdi-bag-personal-off::before{content:"\F0E11"}.mdi-bag-personal-off-outline::before{content:"\F0E12"}.mdi-bag-personal-outline::before{content:"\F0E13"}.mdi-bag-personal-tag::before{content:"\F1B0C"}.mdi-bag-personal-tag-outline::before{content:"\F1B0D"}.mdi-bag-suitcase::before{content:"\F158B"}.mdi-bag-suitcase-off::before{content:"\F158D"}.mdi-bag-suitcase-off-outline::before{content:"\F158E"}.mdi-bag-suitcase-outline::before{content:"\F158C"}.mdi-baguette::before{content:"\F0F3E"}.mdi-balcony::before{content:"\F1817"}.mdi-balloon::before{content:"\F0A26"}.mdi-ballot::before{content:"\F09C9"}.mdi-ballot-outline::before{content:"\F09CA"}.mdi-ballot-recount::before{content:"\F0C39"}.mdi-ballot-recount-outline::before{content:"\F0C3A"}.mdi-bandage::before{content:"\F0DAF"}.mdi-bank::before{content:"\F0070"}.mdi-bank-check::before{content:"\F1655"}.mdi-bank-circle::before{content:"\F1C03"}.mdi-bank-circle-outline::before{content:"\F1C04"}.mdi-bank-minus::before{content:"\F0DB0"}.mdi-bank-off::before{content:"\F1656"}.mdi-bank-off-outline::before{content:"\F1657"}.mdi-bank-outline::before{content:"\F0E80"}.mdi-bank-plus::before{content:"\F0DB1"}.mdi-bank-remove::before{content:"\F0DB2"}.mdi-bank-transfer::before{content:"\F0A27"}.mdi-bank-transfer-in::before{content:"\F0A28"}.mdi-bank-transfer-out::before{content:"\F0A29"}.mdi-barcode::before{content:"\F0071"}.mdi-barcode-off::before{content:"\F1236"}.mdi-barcode-scan::before{content:"\F0072"}.mdi-barley::before{content:"\F0073"}.mdi-barley-off::before{content:"\F0B5D"}.mdi-barn::before{content:"\F0B5E"}.mdi-barrel::before{content:"\F0074"}.mdi-barrel-outline::before{content:"\F1A28"}.mdi-baseball::before{content:"\F0852"}.mdi-baseball-bat::before{content:"\F0853"}.mdi-baseball-diamond::before{content:"\F15EC"}.mdi-baseball-diamond-outline::before{content:"\F15ED"}.mdi-baseball-outline::before{content:"\F1C5A"}.mdi-bash::before{content:"\F1183"}.mdi-basket::before{content:"\F0076"}.mdi-basket-check::before{content:"\F18E5"}.mdi-basket-check-outline::before{content:"\F18E6"}.mdi-basket-fill::before{content:"\F0077"}.mdi-basket-minus::before{content:"\F1523"}.mdi-basket-minus-outline::before{content:"\F1524"}.mdi-basket-off::before{content:"\F1525"}.mdi-basket-off-outline::before{content:"\F1526"}.mdi-basket-outline::before{content:"\F1181"}.mdi-basket-plus::before{content:"\F1527"}.mdi-basket-plus-outline::before{content:"\F1528"}.mdi-basket-remove::before{content:"\F1529"}.mdi-basket-remove-outline::before{content:"\F152A"}.mdi-basket-unfill::before{content:"\F0078"}.mdi-basketball::before{content:"\F0806"}.mdi-basketball-hoop::before{content:"\F0C3B"}.mdi-basketball-hoop-outline::before{content:"\F0C3C"}.mdi-bat::before{content:"\F0B5F"}.mdi-bathtub::before{content:"\F1818"}.mdi-bathtub-outline::before{content:"\F1819"}.mdi-battery::before{content:"\F0079"}.mdi-battery-10::before{content:"\F007A"}.mdi-battery-10-bluetooth::before{content:"\F093E"}.mdi-battery-20::before{content:"\F007B"}.mdi-battery-20-bluetooth::before{content:"\F093F"}.mdi-battery-30::before{content:"\F007C"}.mdi-battery-30-bluetooth::before{content:"\F0940"}.mdi-battery-40::before{content:"\F007D"}.mdi-battery-40-bluetooth::before{content:"\F0941"}.mdi-battery-50::before{content:"\F007E"}.mdi-battery-50-bluetooth::before{content:"\F0942"}.mdi-battery-60::before{content:"\F007F"}.mdi-battery-60-bluetooth::before{content:"\F0943"}.mdi-battery-70::before{content:"\F0080"}.mdi-battery-70-bluetooth::before{content:"\F0944"}.mdi-battery-80::before{content:"\F0081"}.mdi-battery-80-bluetooth::before{content:"\F0945"}.mdi-battery-90::before{content:"\F0082"}.mdi-battery-90-bluetooth::before{content:"\F0946"}.mdi-battery-alert::before{content:"\F0083"}.mdi-battery-alert-bluetooth::before{content:"\F0947"}.mdi-battery-alert-variant::before{content:"\F10CC"}.mdi-battery-alert-variant-outline::before{content:"\F10CD"}.mdi-battery-arrow-down::before{content:"\F17DE"}.mdi-battery-arrow-down-outline::before{content:"\F17DF"}.mdi-battery-arrow-up::before{content:"\F17E0"}.mdi-battery-arrow-up-outline::before{content:"\F17E1"}.mdi-battery-bluetooth::before{content:"\F0948"}.mdi-battery-bluetooth-variant::before{content:"\F0949"}.mdi-battery-charging::before{content:"\F0084"}.mdi-battery-charging-10::before{content:"\F089C"}.mdi-battery-charging-100::before{content:"\F0085"}.mdi-battery-charging-20::before{content:"\F0086"}.mdi-battery-charging-30::before{content:"\F0087"}.mdi-battery-charging-40::before{content:"\F0088"}.mdi-battery-charging-50::before{content:"\F089D"}.mdi-battery-charging-60::before{content:"\F0089"}.mdi-battery-charging-70::before{content:"\F089E"}.mdi-battery-charging-80::before{content:"\F008A"}.mdi-battery-charging-90::before{content:"\F008B"}.mdi-battery-charging-high::before{content:"\F12A6"}.mdi-battery-charging-low::before{content:"\F12A4"}.mdi-battery-charging-medium::before{content:"\F12A5"}.mdi-battery-charging-outline::before{content:"\F089F"}.mdi-battery-charging-wireless::before{content:"\F0807"}.mdi-battery-charging-wireless-10::before{content:"\F0808"}.mdi-battery-charging-wireless-20::before{content:"\F0809"}.mdi-battery-charging-wireless-30::before{content:"\F080A"}.mdi-battery-charging-wireless-40::before{content:"\F080B"}.mdi-battery-charging-wireless-50::before{content:"\F080C"}.mdi-battery-charging-wireless-60::before{content:"\F080D"}.mdi-battery-charging-wireless-70::before{content:"\F080E"}.mdi-battery-charging-wireless-80::before{content:"\F080F"}.mdi-battery-charging-wireless-90::before{content:"\F0810"}.mdi-battery-charging-wireless-alert::before{content:"\F0811"}.mdi-battery-charging-wireless-outline::before{content:"\F0812"}.mdi-battery-check::before{content:"\F17E2"}.mdi-battery-check-outline::before{content:"\F17E3"}.mdi-battery-clock::before{content:"\F19E5"}.mdi-battery-clock-outline::before{content:"\F19E6"}.mdi-battery-heart::before{content:"\F120F"}.mdi-battery-heart-outline::before{content:"\F1210"}.mdi-battery-heart-variant::before{content:"\F1211"}.mdi-battery-high::before{content:"\F12A3"}.mdi-battery-lock::before{content:"\F179C"}.mdi-battery-lock-open::before{content:"\F179D"}.mdi-battery-low::before{content:"\F12A1"}.mdi-battery-medium::before{content:"\F12A2"}.mdi-battery-minus::before{content:"\F17E4"}.mdi-battery-minus-outline::before{content:"\F17E5"}.mdi-battery-minus-variant::before{content:"\F008C"}.mdi-battery-negative::before{content:"\F008D"}.mdi-battery-off::before{content:"\F125D"}.mdi-battery-off-outline::before{content:"\F125E"}.mdi-battery-outline::before{content:"\F008E"}.mdi-battery-plus::before{content:"\F17E6"}.mdi-battery-plus-outline::before{content:"\F17E7"}.mdi-battery-plus-variant::before{content:"\F008F"}.mdi-battery-positive::before{content:"\F0090"}.mdi-battery-remove::before{content:"\F17E8"}.mdi-battery-remove-outline::before{content:"\F17E9"}.mdi-battery-sync::before{content:"\F1834"}.mdi-battery-sync-outline::before{content:"\F1835"}.mdi-battery-unknown::before{content:"\F0091"}.mdi-battery-unknown-bluetooth::before{content:"\F094A"}.mdi-beach::before{content:"\F0092"}.mdi-beaker::before{content:"\F0CEA"}.mdi-beaker-alert::before{content:"\F1229"}.mdi-beaker-alert-outline::before{content:"\F122A"}.mdi-beaker-check::before{content:"\F122B"}.mdi-beaker-check-outline::before{content:"\F122C"}.mdi-beaker-minus::before{content:"\F122D"}.mdi-beaker-minus-outline::before{content:"\F122E"}.mdi-beaker-outline::before{content:"\F0690"}.mdi-beaker-plus::before{content:"\F122F"}.mdi-beaker-plus-outline::before{content:"\F1230"}.mdi-beaker-question::before{content:"\F1231"}.mdi-beaker-question-outline::before{content:"\F1232"}.mdi-beaker-remove::before{content:"\F1233"}.mdi-beaker-remove-outline::before{content:"\F1234"}.mdi-bed::before{content:"\F02E3"}.mdi-bed-clock::before{content:"\F1B94"}.mdi-bed-double::before{content:"\F0FD4"}.mdi-bed-double-outline::before{content:"\F0FD3"}.mdi-bed-empty::before{content:"\F08A0"}.mdi-bed-king::before{content:"\F0FD2"}.mdi-bed-king-outline::before{content:"\F0FD1"}.mdi-bed-outline::before{content:"\F0099"}.mdi-bed-queen::before{content:"\F0FD0"}.mdi-bed-queen-outline::before{content:"\F0FDB"}.mdi-bed-single::before{content:"\F106D"}.mdi-bed-single-outline::before{content:"\F106E"}.mdi-bee::before{content:"\F0FA1"}.mdi-bee-flower::before{content:"\F0FA2"}.mdi-beehive-off-outline::before{content:"\F13ED"}.mdi-beehive-outline::before{content:"\F10CE"}.mdi-beekeeper::before{content:"\F14E2"}.mdi-beer::before{content:"\F0098"}.mdi-beer-outline::before{content:"\F130C"}.mdi-bell::before{content:"\F009A"}.mdi-bell-alert::before{content:"\F0D59"}.mdi-bell-alert-outline::before{content:"\F0E81"}.mdi-bell-badge::before{content:"\F116B"}.mdi-bell-badge-outline::before{content:"\F0178"}.mdi-bell-cancel::before{content:"\F13E7"}.mdi-bell-cancel-outline::before{content:"\F13E8"}.mdi-bell-check::before{content:"\F11E5"}.mdi-bell-check-outline::before{content:"\F11E6"}.mdi-bell-circle::before{content:"\F0D5A"}.mdi-bell-circle-outline::before{content:"\F0D5B"}.mdi-bell-cog::before{content:"\F1A29"}.mdi-bell-cog-outline::before{content:"\F1A2A"}.mdi-bell-minus::before{content:"\F13E9"}.mdi-bell-minus-outline::before{content:"\F13EA"}.mdi-bell-off::before{content:"\F009B"}.mdi-bell-off-outline::before{content:"\F0A91"}.mdi-bell-outline::before{content:"\F009C"}.mdi-bell-plus::before{content:"\F009D"}.mdi-bell-plus-outline::before{content:"\F0A92"}.mdi-bell-remove::before{content:"\F13EB"}.mdi-bell-remove-outline::before{content:"\F13EC"}.mdi-bell-ring::before{content:"\F009E"}.mdi-bell-ring-outline::before{content:"\F009F"}.mdi-bell-sleep::before{content:"\F00A0"}.mdi-bell-sleep-outline::before{content:"\F0A93"}.mdi-bench::before{content:"\F1C21"}.mdi-bench-back::before{content:"\F1C22"}.mdi-beta::before{content:"\F00A1"}.mdi-betamax::before{content:"\F09CB"}.mdi-biathlon::before{content:"\F0E14"}.mdi-bicycle::before{content:"\F109C"}.mdi-bicycle-basket::before{content:"\F1235"}.mdi-bicycle-cargo::before{content:"\F189C"}.mdi-bicycle-electric::before{content:"\F15B4"}.mdi-bicycle-penny-farthing::before{content:"\F15E9"}.mdi-bike::before{content:"\F00A3"}.mdi-bike-fast::before{content:"\F111F"}.mdi-bike-pedal::before{content:"\F1C23"}.mdi-bike-pedal-clipless::before{content:"\F1C24"}.mdi-bike-pedal-mountain::before{content:"\F1C25"}.mdi-billboard::before{content:"\F1010"}.mdi-billiards::before{content:"\F0B61"}.mdi-billiards-rack::before{content:"\F0B62"}.mdi-binoculars::before{content:"\F00A5"}.mdi-bio::before{content:"\F00A6"}.mdi-biohazard::before{content:"\F00A7"}.mdi-bird::before{content:"\F15C6"}.mdi-bitbucket::before{content:"\F00A8"}.mdi-bitcoin::before{content:"\F0813"}.mdi-black-mesa::before{content:"\F00A9"}.mdi-blender::before{content:"\F0CEB"}.mdi-blender-outline::before{content:"\F181A"}.mdi-blender-software::before{content:"\F00AB"}.mdi-blinds::before{content:"\F00AC"}.mdi-blinds-horizontal::before{content:"\F1A2B"}.mdi-blinds-horizontal-closed::before{content:"\F1A2C"}.mdi-blinds-open::before{content:"\F1011"}.mdi-blinds-vertical::before{content:"\F1A2D"}.mdi-blinds-vertical-closed::before{content:"\F1A2E"}.mdi-block-helper::before{content:"\F00AD"}.mdi-blood-bag::before{content:"\F0CEC"}.mdi-bluetooth::before{content:"\F00AF"}.mdi-bluetooth-audio::before{content:"\F00B0"}.mdi-bluetooth-connect::before{content:"\F00B1"}.mdi-bluetooth-off::before{content:"\F00B2"}.mdi-bluetooth-settings::before{content:"\F00B3"}.mdi-bluetooth-transfer::before{content:"\F00B4"}.mdi-blur::before{content:"\F00B5"}.mdi-blur-linear::before{content:"\F00B6"}.mdi-blur-off::before{content:"\F00B7"}.mdi-blur-radial::before{content:"\F00B8"}.mdi-bolt::before{content:"\F0DB3"}.mdi-bomb::before{content:"\F0691"}.mdi-bomb-off::before{content:"\F06C5"}.mdi-bone::before{content:"\F00B9"}.mdi-bone-off::before{content:"\F19E0"}.mdi-book::before{content:"\F00BA"}.mdi-book-account::before{content:"\F13AD"}.mdi-book-account-outline::before{content:"\F13AE"}.mdi-book-alert::before{content:"\F167C"}.mdi-book-alert-outline::before{content:"\F167D"}.mdi-book-alphabet::before{content:"\F061D"}.mdi-book-arrow-down::before{content:"\F167E"}.mdi-book-arrow-down-outline::before{content:"\F167F"}.mdi-book-arrow-left::before{content:"\F1680"}.mdi-book-arrow-left-outline::before{content:"\F1681"}.mdi-book-arrow-right::before{content:"\F1682"}.mdi-book-arrow-right-outline::before{content:"\F1683"}.mdi-book-arrow-up::before{content:"\F1684"}.mdi-book-arrow-up-outline::before{content:"\F1685"}.mdi-book-cancel::before{content:"\F1686"}.mdi-book-cancel-outline::before{content:"\F1687"}.mdi-book-check::before{content:"\F14F3"}.mdi-book-check-outline::before{content:"\F14F4"}.mdi-book-clock::before{content:"\F1688"}.mdi-book-clock-outline::before{content:"\F1689"}.mdi-book-cog::before{content:"\F168A"}.mdi-book-cog-outline::before{content:"\F168B"}.mdi-book-cross::before{content:"\F00A2"}.mdi-book-edit::before{content:"\F168C"}.mdi-book-edit-outline::before{content:"\F168D"}.mdi-book-education::before{content:"\F16C9"}.mdi-book-education-outline::before{content:"\F16CA"}.mdi-book-heart::before{content:"\F1A1D"}.mdi-book-heart-outline::before{content:"\F1A1E"}.mdi-book-information-variant::before{content:"\F106F"}.mdi-book-lock::before{content:"\F079A"}.mdi-book-lock-open::before{content:"\F079B"}.mdi-book-lock-open-outline::before{content:"\F168E"}.mdi-book-lock-outline::before{content:"\F168F"}.mdi-book-marker::before{content:"\F1690"}.mdi-book-marker-outline::before{content:"\F1691"}.mdi-book-minus::before{content:"\F05D9"}.mdi-book-minus-multiple::before{content:"\F0A94"}.mdi-book-minus-multiple-outline::before{content:"\F090B"}.mdi-book-minus-outline::before{content:"\F1692"}.mdi-book-multiple::before{content:"\F00BB"}.mdi-book-multiple-outline::before{content:"\F0436"}.mdi-book-music::before{content:"\F0067"}.mdi-book-music-outline::before{content:"\F1693"}.mdi-book-off::before{content:"\F1694"}.mdi-book-off-outline::before{content:"\F1695"}.mdi-book-open::before{content:"\F00BD"}.mdi-book-open-blank-variant::before{content:"\F00BE"}.mdi-book-open-outline::before{content:"\F0B63"}.mdi-book-open-page-variant::before{content:"\F05DA"}.mdi-book-open-page-variant-outline::before{content:"\F15D6"}.mdi-book-open-variant::before{content:"\F14F7"}.mdi-book-outline::before{content:"\F0B64"}.mdi-book-play::before{content:"\F0E82"}.mdi-book-play-outline::before{content:"\F0E83"}.mdi-book-plus::before{content:"\F05DB"}.mdi-book-plus-multiple::before{content:"\F0A95"}.mdi-book-plus-multiple-outline::before{content:"\F0ADE"}.mdi-book-plus-outline::before{content:"\F1696"}.mdi-book-refresh::before{content:"\F1697"}.mdi-book-refresh-outline::before{content:"\F1698"}.mdi-book-remove::before{content:"\F0A97"}.mdi-book-remove-multiple::before{content:"\F0A96"}.mdi-book-remove-multiple-outline::before{content:"\F04CA"}.mdi-book-remove-outline::before{content:"\F1699"}.mdi-book-search::before{content:"\F0E84"}.mdi-book-search-outline::before{content:"\F0E85"}.mdi-book-settings::before{content:"\F169A"}.mdi-book-settings-outline::before{content:"\F169B"}.mdi-book-sync::before{content:"\F169C"}.mdi-book-sync-outline::before{content:"\F16C8"}.mdi-book-variant::before{content:"\F00BF"}.mdi-bookmark::before{content:"\F00C0"}.mdi-bookmark-box::before{content:"\F1B75"}.mdi-bookmark-box-multiple::before{content:"\F196C"}.mdi-bookmark-box-multiple-outline::before{content:"\F196D"}.mdi-bookmark-box-outline::before{content:"\F1B76"}.mdi-bookmark-check::before{content:"\F00C1"}.mdi-bookmark-check-outline::before{content:"\F137B"}.mdi-bookmark-minus::before{content:"\F09CC"}.mdi-bookmark-minus-outline::before{content:"\F09CD"}.mdi-bookmark-multiple::before{content:"\F0E15"}.mdi-bookmark-multiple-outline::before{content:"\F0E16"}.mdi-bookmark-music::before{content:"\F00C2"}.mdi-bookmark-music-outline::before{content:"\F1379"}.mdi-bookmark-off::before{content:"\F09CE"}.mdi-bookmark-off-outline::before{content:"\F09CF"}.mdi-bookmark-outline::before{content:"\F00C3"}.mdi-bookmark-plus::before{content:"\F00C5"}.mdi-bookmark-plus-outline::before{content:"\F00C4"}.mdi-bookmark-remove::before{content:"\F00C6"}.mdi-bookmark-remove-outline::before{content:"\F137A"}.mdi-bookshelf::before{content:"\F125F"}.mdi-boom-gate::before{content:"\F0E86"}.mdi-boom-gate-alert::before{content:"\F0E87"}.mdi-boom-gate-alert-outline::before{content:"\F0E88"}.mdi-boom-gate-arrow-down::before{content:"\F0E89"}.mdi-boom-gate-arrow-down-outline::before{content:"\F0E8A"}.mdi-boom-gate-arrow-up::before{content:"\F0E8C"}.mdi-boom-gate-arrow-up-outline::before{content:"\F0E8D"}.mdi-boom-gate-outline::before{content:"\F0E8B"}.mdi-boom-gate-up::before{content:"\F17F9"}.mdi-boom-gate-up-outline::before{content:"\F17FA"}.mdi-boombox::before{content:"\F05DC"}.mdi-boomerang::before{content:"\F10CF"}.mdi-bootstrap::before{content:"\F06C6"}.mdi-border-all::before{content:"\F00C7"}.mdi-border-all-variant::before{content:"\F08A1"}.mdi-border-bottom::before{content:"\F00C8"}.mdi-border-bottom-variant::before{content:"\F08A2"}.mdi-border-color::before{content:"\F00C9"}.mdi-border-horizontal::before{content:"\F00CA"}.mdi-border-inside::before{content:"\F00CB"}.mdi-border-left::before{content:"\F00CC"}.mdi-border-left-variant::before{content:"\F08A3"}.mdi-border-none::before{content:"\F00CD"}.mdi-border-none-variant::before{content:"\F08A4"}.mdi-border-outside::before{content:"\F00CE"}.mdi-border-radius::before{content:"\F1AF4"}.mdi-border-right::before{content:"\F00CF"}.mdi-border-right-variant::before{content:"\F08A5"}.mdi-border-style::before{content:"\F00D0"}.mdi-border-top::before{content:"\F00D1"}.mdi-border-top-variant::before{content:"\F08A6"}.mdi-border-vertical::before{content:"\F00D2"}.mdi-bottle-soda::before{content:"\F1070"}.mdi-bottle-soda-classic::before{content:"\F1071"}.mdi-bottle-soda-classic-outline::before{content:"\F1363"}.mdi-bottle-soda-outline::before{content:"\F1072"}.mdi-bottle-tonic::before{content:"\F112E"}.mdi-bottle-tonic-outline::before{content:"\F112F"}.mdi-bottle-tonic-plus::before{content:"\F1130"}.mdi-bottle-tonic-plus-outline::before{content:"\F1131"}.mdi-bottle-tonic-skull::before{content:"\F1132"}.mdi-bottle-tonic-skull-outline::before{content:"\F1133"}.mdi-bottle-wine::before{content:"\F0854"}.mdi-bottle-wine-outline::before{content:"\F1310"}.mdi-bow-arrow::before{content:"\F1841"}.mdi-bow-tie::before{content:"\F0678"}.mdi-bowl::before{content:"\F028E"}.mdi-bowl-mix::before{content:"\F0617"}.mdi-bowl-mix-outline::before{content:"\F02E4"}.mdi-bowl-outline::before{content:"\F02A9"}.mdi-bowling::before{content:"\F00D3"}.mdi-box::before{content:"\F00D4"}.mdi-box-cutter::before{content:"\F00D5"}.mdi-box-cutter-off::before{content:"\F0B4A"}.mdi-box-shadow::before{content:"\F0637"}.mdi-boxing-glove::before{content:"\F0B65"}.mdi-braille::before{content:"\F09D0"}.mdi-brain::before{content:"\F09D1"}.mdi-bread-slice::before{content:"\F0CEE"}.mdi-bread-slice-outline::before{content:"\F0CEF"}.mdi-bridge::before{content:"\F0618"}.mdi-briefcase::before{content:"\F00D6"}.mdi-briefcase-account::before{content:"\F0CF0"}.mdi-briefcase-account-outline::before{content:"\F0CF1"}.mdi-briefcase-arrow-left-right::before{content:"\F1A8D"}.mdi-briefcase-arrow-left-right-outline::before{content:"\F1A8E"}.mdi-briefcase-arrow-up-down::before{content:"\F1A8F"}.mdi-briefcase-arrow-up-down-outline::before{content:"\F1A90"}.mdi-briefcase-check::before{content:"\F00D7"}.mdi-briefcase-check-outline::before{content:"\F131E"}.mdi-briefcase-clock::before{content:"\F10D0"}.mdi-briefcase-clock-outline::before{content:"\F10D1"}.mdi-briefcase-download::before{content:"\F00D8"}.mdi-briefcase-download-outline::before{content:"\F0C3D"}.mdi-briefcase-edit::before{content:"\F0A98"}.mdi-briefcase-edit-outline::before{content:"\F0C3E"}.mdi-briefcase-eye::before{content:"\F17D9"}.mdi-briefcase-eye-outline::before{content:"\F17DA"}.mdi-briefcase-minus::before{content:"\F0A2A"}.mdi-briefcase-minus-outline::before{content:"\F0C3F"}.mdi-briefcase-off::before{content:"\F1658"}.mdi-briefcase-off-outline::before{content:"\F1659"}.mdi-briefcase-outline::before{content:"\F0814"}.mdi-briefcase-plus::before{content:"\F0A2B"}.mdi-briefcase-plus-outline::before{content:"\F0C40"}.mdi-briefcase-remove::before{content:"\F0A2C"}.mdi-briefcase-remove-outline::before{content:"\F0C41"}.mdi-briefcase-search::before{content:"\F0A2D"}.mdi-briefcase-search-outline::before{content:"\F0C42"}.mdi-briefcase-upload::before{content:"\F00D9"}.mdi-briefcase-upload-outline::before{content:"\F0C43"}.mdi-briefcase-variant::before{content:"\F1494"}.mdi-briefcase-variant-off::before{content:"\F165A"}.mdi-briefcase-variant-off-outline::before{content:"\F165B"}.mdi-briefcase-variant-outline::before{content:"\F1495"}.mdi-brightness-1::before{content:"\F00DA"}.mdi-brightness-2::before{content:"\F00DB"}.mdi-brightness-3::before{content:"\F00DC"}.mdi-brightness-4::before{content:"\F00DD"}.mdi-brightness-5::before{content:"\F00DE"}.mdi-brightness-6::before{content:"\F00DF"}.mdi-brightness-7::before{content:"\F00E0"}.mdi-brightness-auto::before{content:"\F00E1"}.mdi-brightness-percent::before{content:"\F0CF2"}.mdi-broadcast::before{content:"\F1720"}.mdi-broadcast-off::before{content:"\F1721"}.mdi-broom::before{content:"\F00E2"}.mdi-brush::before{content:"\F00E3"}.mdi-brush-off::before{content:"\F1771"}.mdi-brush-outline::before{content:"\F1A0D"}.mdi-brush-variant::before{content:"\F1813"}.mdi-bucket::before{content:"\F1415"}.mdi-bucket-outline::before{content:"\F1416"}.mdi-buffet::before{content:"\F0578"}.mdi-bug::before{content:"\F00E4"}.mdi-bug-check::before{content:"\F0A2E"}.mdi-bug-check-outline::before{content:"\F0A2F"}.mdi-bug-outline::before{content:"\F0A30"}.mdi-bug-pause::before{content:"\F1AF5"}.mdi-bug-pause-outline::before{content:"\F1AF6"}.mdi-bug-play::before{content:"\F1AF7"}.mdi-bug-play-outline::before{content:"\F1AF8"}.mdi-bug-stop::before{content:"\F1AF9"}.mdi-bug-stop-outline::before{content:"\F1AFA"}.mdi-bugle::before{content:"\F0DB4"}.mdi-bulkhead-light::before{content:"\F1A2F"}.mdi-bulldozer::before{content:"\F0B22"}.mdi-bullet::before{content:"\F0CF3"}.mdi-bulletin-board::before{content:"\F00E5"}.mdi-bullhorn::before{content:"\F00E6"}.mdi-bullhorn-outline::before{content:"\F0B23"}.mdi-bullhorn-variant::before{content:"\F196E"}.mdi-bullhorn-variant-outline::before{content:"\F196F"}.mdi-bullseye::before{content:"\F05DD"}.mdi-bullseye-arrow::before{content:"\F08C9"}.mdi-bulma::before{content:"\F12E7"}.mdi-bunk-bed::before{content:"\F1302"}.mdi-bunk-bed-outline::before{content:"\F0097"}.mdi-bus::before{content:"\F00E7"}.mdi-bus-alert::before{content:"\F0A99"}.mdi-bus-articulated-end::before{content:"\F079C"}.mdi-bus-articulated-front::before{content:"\F079D"}.mdi-bus-clock::before{content:"\F08CA"}.mdi-bus-double-decker::before{content:"\F079E"}.mdi-bus-electric::before{content:"\F191D"}.mdi-bus-marker::before{content:"\F1212"}.mdi-bus-multiple::before{content:"\F0F3F"}.mdi-bus-school::before{content:"\F079F"}.mdi-bus-side::before{content:"\F07A0"}.mdi-bus-stop::before{content:"\F1012"}.mdi-bus-stop-covered::before{content:"\F1013"}.mdi-bus-stop-uncovered::before{content:"\F1014"}.mdi-butterfly::before{content:"\F1589"}.mdi-butterfly-outline::before{content:"\F158A"}.mdi-button-cursor::before{content:"\F1B4F"}.mdi-button-pointer::before{content:"\F1B50"}.mdi-cabin-a-frame::before{content:"\F188C"}.mdi-cable-data::before{content:"\F1394"}.mdi-cached::before{content:"\F00E8"}.mdi-cactus::before{content:"\F0DB5"}.mdi-cake::before{content:"\F00E9"}.mdi-cake-layered::before{content:"\F00EA"}.mdi-cake-variant::before{content:"\F00EB"}.mdi-cake-variant-outline::before{content:"\F17F0"}.mdi-calculator::before{content:"\F00EC"}.mdi-calculator-variant::before{content:"\F0A9A"}.mdi-calculator-variant-outline::before{content:"\F15A6"}.mdi-calendar::before{content:"\F00ED"}.mdi-calendar-account::before{content:"\F0ED7"}.mdi-calendar-account-outline::before{content:"\F0ED8"}.mdi-calendar-alert::before{content:"\F0A31"}.mdi-calendar-alert-outline::before{content:"\F1B62"}.mdi-calendar-arrow-left::before{content:"\F1134"}.mdi-calendar-arrow-right::before{content:"\F1135"}.mdi-calendar-badge::before{content:"\F1B9D"}.mdi-calendar-badge-outline::before{content:"\F1B9E"}.mdi-calendar-blank::before{content:"\F00EE"}.mdi-calendar-blank-multiple::before{content:"\F1073"}.mdi-calendar-blank-outline::before{content:"\F0B66"}.mdi-calendar-check::before{content:"\F00EF"}.mdi-calendar-check-outline::before{content:"\F0C44"}.mdi-calendar-clock::before{content:"\F00F0"}.mdi-calendar-clock-outline::before{content:"\F16E1"}.mdi-calendar-collapse-horizontal::before{content:"\F189D"}.mdi-calendar-collapse-horizontal-outline::before{content:"\F1B63"}.mdi-calendar-cursor::before{content:"\F157B"}.mdi-calendar-cursor-outline::before{content:"\F1B64"}.mdi-calendar-edit::before{content:"\F08A7"}.mdi-calendar-edit-outline::before{content:"\F1B65"}.mdi-calendar-end::before{content:"\F166C"}.mdi-calendar-end-outline::before{content:"\F1B66"}.mdi-calendar-expand-horizontal::before{content:"\F189E"}.mdi-calendar-expand-horizontal-outline::before{content:"\F1B67"}.mdi-calendar-export::before{content:"\F0B24"}.mdi-calendar-export-outline::before{content:"\F1B68"}.mdi-calendar-filter::before{content:"\F1A32"}.mdi-calendar-filter-outline::before{content:"\F1A33"}.mdi-calendar-heart::before{content:"\F09D2"}.mdi-calendar-heart-outline::before{content:"\F1B69"}.mdi-calendar-import::before{content:"\F0B25"}.mdi-calendar-import-outline::before{content:"\F1B6A"}.mdi-calendar-lock::before{content:"\F1641"}.mdi-calendar-lock-open::before{content:"\F1B5B"}.mdi-calendar-lock-open-outline::before{content:"\F1B5C"}.mdi-calendar-lock-outline::before{content:"\F1642"}.mdi-calendar-minus::before{content:"\F0D5C"}.mdi-calendar-minus-outline::before{content:"\F1B6B"}.mdi-calendar-month::before{content:"\F0E17"}.mdi-calendar-month-outline::before{content:"\F0E18"}.mdi-calendar-multiple::before{content:"\F00F1"}.mdi-calendar-multiple-check::before{content:"\F00F2"}.mdi-calendar-multiselect::before{content:"\F0A32"}.mdi-calendar-multiselect-outline::before{content:"\F1B55"}.mdi-calendar-outline::before{content:"\F0B67"}.mdi-calendar-plus::before{content:"\F00F3"}.mdi-calendar-plus-outline::before{content:"\F1B6C"}.mdi-calendar-question::before{content:"\F0692"}.mdi-calendar-question-outline::before{content:"\F1B6D"}.mdi-calendar-range::before{content:"\F0679"}.mdi-calendar-range-outline::before{content:"\F0B68"}.mdi-calendar-refresh::before{content:"\F01E1"}.mdi-calendar-refresh-outline::before{content:"\F0203"}.mdi-calendar-remove::before{content:"\F00F4"}.mdi-calendar-remove-outline::before{content:"\F0C45"}.mdi-calendar-search::before{content:"\F094C"}.mdi-calendar-search-outline::before{content:"\F1B6E"}.mdi-calendar-star::before{content:"\F09D3"}.mdi-calendar-star-four-points::before{content:"\F1C1F"}.mdi-calendar-star-outline::before{content:"\F1B53"}.mdi-calendar-start::before{content:"\F166D"}.mdi-calendar-start-outline::before{content:"\F1B6F"}.mdi-calendar-sync::before{content:"\F0E8E"}.mdi-calendar-sync-outline::before{content:"\F0E8F"}.mdi-calendar-text::before{content:"\F00F5"}.mdi-calendar-text-outline::before{content:"\F0C46"}.mdi-calendar-today::before{content:"\F00F6"}.mdi-calendar-today-outline::before{content:"\F1A30"}.mdi-calendar-week::before{content:"\F0A33"}.mdi-calendar-week-begin::before{content:"\F0A34"}.mdi-calendar-week-begin-outline::before{content:"\F1A31"}.mdi-calendar-week-outline::before{content:"\F1A34"}.mdi-calendar-weekend::before{content:"\F0ED9"}.mdi-calendar-weekend-outline::before{content:"\F0EDA"}.mdi-call-made::before{content:"\F00F7"}.mdi-call-merge::before{content:"\F00F8"}.mdi-call-missed::before{content:"\F00F9"}.mdi-call-received::before{content:"\F00FA"}.mdi-call-split::before{content:"\F00FB"}.mdi-camcorder::before{content:"\F00FC"}.mdi-camcorder-off::before{content:"\F00FF"}.mdi-camera::before{content:"\F0100"}.mdi-camera-account::before{content:"\F08CB"}.mdi-camera-burst::before{content:"\F0693"}.mdi-camera-control::before{content:"\F0B69"}.mdi-camera-document::before{content:"\F1871"}.mdi-camera-document-off::before{content:"\F1872"}.mdi-camera-enhance::before{content:"\F0101"}.mdi-camera-enhance-outline::before{content:"\F0B6A"}.mdi-camera-flip::before{content:"\F15D9"}.mdi-camera-flip-outline::before{content:"\F15DA"}.mdi-camera-front::before{content:"\F0102"}.mdi-camera-front-variant::before{content:"\F0103"}.mdi-camera-gopro::before{content:"\F07A1"}.mdi-camera-image::before{content:"\F08CC"}.mdi-camera-iris::before{content:"\F0104"}.mdi-camera-lock::before{content:"\F1A14"}.mdi-camera-lock-open::before{content:"\F1C0D"}.mdi-camera-lock-open-outline::before{content:"\F1C0E"}.mdi-camera-lock-outline::before{content:"\F1A15"}.mdi-camera-marker::before{content:"\F19A7"}.mdi-camera-marker-outline::before{content:"\F19A8"}.mdi-camera-metering-center::before{content:"\F07A2"}.mdi-camera-metering-matrix::before{content:"\F07A3"}.mdi-camera-metering-partial::before{content:"\F07A4"}.mdi-camera-metering-spot::before{content:"\F07A5"}.mdi-camera-off::before{content:"\F05DF"}.mdi-camera-off-outline::before{content:"\F19BF"}.mdi-camera-outline::before{content:"\F0D5D"}.mdi-camera-party-mode::before{content:"\F0105"}.mdi-camera-plus::before{content:"\F0EDB"}.mdi-camera-plus-outline::before{content:"\F0EDC"}.mdi-camera-rear::before{content:"\F0106"}.mdi-camera-rear-variant::before{content:"\F0107"}.mdi-camera-retake::before{content:"\F0E19"}.mdi-camera-retake-outline::before{content:"\F0E1A"}.mdi-camera-switch::before{content:"\F0108"}.mdi-camera-switch-outline::before{content:"\F084A"}.mdi-camera-timer::before{content:"\F0109"}.mdi-camera-wireless::before{content:"\F0DB6"}.mdi-camera-wireless-outline::before{content:"\F0DB7"}.mdi-campfire::before{content:"\F0EDD"}.mdi-cancel::before{content:"\F073A"}.mdi-candelabra::before{content:"\F17D2"}.mdi-candelabra-fire::before{content:"\F17D3"}.mdi-candle::before{content:"\F05E2"}.mdi-candy::before{content:"\F1970"}.mdi-candy-off::before{content:"\F1971"}.mdi-candy-off-outline::before{content:"\F1972"}.mdi-candy-outline::before{content:"\F1973"}.mdi-candycane::before{content:"\F010A"}.mdi-cannabis::before{content:"\F07A6"}.mdi-cannabis-off::before{content:"\F166E"}.mdi-caps-lock::before{content:"\F0A9B"}.mdi-car::before{content:"\F010B"}.mdi-car-2-plus::before{content:"\F1015"}.mdi-car-3-plus::before{content:"\F1016"}.mdi-car-arrow-left::before{content:"\F13B2"}.mdi-car-arrow-right::before{content:"\F13B3"}.mdi-car-back::before{content:"\F0E1B"}.mdi-car-battery::before{content:"\F010C"}.mdi-car-brake-abs::before{content:"\F0C47"}.mdi-car-brake-alert::before{content:"\F0C48"}.mdi-car-brake-fluid-level::before{content:"\F1909"}.mdi-car-brake-hold::before{content:"\F0D5E"}.mdi-car-brake-low-pressure::before{content:"\F190A"}.mdi-car-brake-parking::before{content:"\F0D5F"}.mdi-car-brake-retarder::before{content:"\F1017"}.mdi-car-brake-temperature::before{content:"\F190B"}.mdi-car-brake-worn-linings::before{content:"\F190C"}.mdi-car-child-seat::before{content:"\F0FA3"}.mdi-car-clock::before{content:"\F1974"}.mdi-car-clutch::before{content:"\F1018"}.mdi-car-cog::before{content:"\F13CC"}.mdi-car-connected::before{content:"\F010D"}.mdi-car-convertible::before{content:"\F07A7"}.mdi-car-coolant-level::before{content:"\F1019"}.mdi-car-cruise-control::before{content:"\F0D60"}.mdi-car-defrost-front::before{content:"\F0D61"}.mdi-car-defrost-rear::before{content:"\F0D62"}.mdi-car-door::before{content:"\F0B6B"}.mdi-car-door-lock::before{content:"\F109D"}.mdi-car-electric::before{content:"\F0B6C"}.mdi-car-electric-outline::before{content:"\F15B5"}.mdi-car-emergency::before{content:"\F160F"}.mdi-car-esp::before{content:"\F0C49"}.mdi-car-estate::before{content:"\F07A8"}.mdi-car-hatchback::before{content:"\F07A9"}.mdi-car-info::before{content:"\F11BE"}.mdi-car-key::before{content:"\F0B6D"}.mdi-car-lifted-pickup::before{content:"\F152D"}.mdi-car-light-alert::before{content:"\F190D"}.mdi-car-light-dimmed::before{content:"\F0C4A"}.mdi-car-light-fog::before{content:"\F0C4B"}.mdi-car-light-high::before{content:"\F0C4C"}.mdi-car-limousine::before{content:"\F08CD"}.mdi-car-multiple::before{content:"\F0B6E"}.mdi-car-off::before{content:"\F0E1C"}.mdi-car-outline::before{content:"\F14ED"}.mdi-car-parking-lights::before{content:"\F0D63"}.mdi-car-pickup::before{content:"\F07AA"}.mdi-car-search::before{content:"\F1B8D"}.mdi-car-search-outline::before{content:"\F1B8E"}.mdi-car-seat::before{content:"\F0FA4"}.mdi-car-seat-cooler::before{content:"\F0FA5"}.mdi-car-seat-heater::before{content:"\F0FA6"}.mdi-car-select::before{content:"\F1879"}.mdi-car-settings::before{content:"\F13CD"}.mdi-car-shift-pattern::before{content:"\F0F40"}.mdi-car-side::before{content:"\F07AB"}.mdi-car-speed-limiter::before{content:"\F190E"}.mdi-car-sports::before{content:"\F07AC"}.mdi-car-tire-alert::before{content:"\F0C4D"}.mdi-car-traction-control::before{content:"\F0D64"}.mdi-car-turbocharger::before{content:"\F101A"}.mdi-car-wash::before{content:"\F010E"}.mdi-car-windshield::before{content:"\F101B"}.mdi-car-windshield-outline::before{content:"\F101C"}.mdi-car-wireless::before{content:"\F1878"}.mdi-car-wrench::before{content:"\F1814"}.mdi-carabiner::before{content:"\F14C0"}.mdi-caravan::before{content:"\F07AD"}.mdi-card::before{content:"\F0B6F"}.mdi-card-account-details::before{content:"\F05D2"}.mdi-card-account-details-outline::before{content:"\F0DAB"}.mdi-card-account-details-star::before{content:"\F02A3"}.mdi-card-account-details-star-outline::before{content:"\F06DB"}.mdi-card-account-mail::before{content:"\F018E"}.mdi-card-account-mail-outline::before{content:"\F0E98"}.mdi-card-account-phone::before{content:"\F0E99"}.mdi-card-account-phone-outline::before{content:"\F0E9A"}.mdi-card-bulleted::before{content:"\F0B70"}.mdi-card-bulleted-off::before{content:"\F0B71"}.mdi-card-bulleted-off-outline::before{content:"\F0B72"}.mdi-card-bulleted-outline::before{content:"\F0B73"}.mdi-card-bulleted-settings::before{content:"\F0B74"}.mdi-card-bulleted-settings-outline::before{content:"\F0B75"}.mdi-card-minus::before{content:"\F1600"}.mdi-card-minus-outline::before{content:"\F1601"}.mdi-card-multiple::before{content:"\F17F1"}.mdi-card-multiple-outline::before{content:"\F17F2"}.mdi-card-off::before{content:"\F1602"}.mdi-card-off-outline::before{content:"\F1603"}.mdi-card-outline::before{content:"\F0B76"}.mdi-card-plus::before{content:"\F11FF"}.mdi-card-plus-outline::before{content:"\F1200"}.mdi-card-remove::before{content:"\F1604"}.mdi-card-remove-outline::before{content:"\F1605"}.mdi-card-search::before{content:"\F1074"}.mdi-card-search-outline::before{content:"\F1075"}.mdi-card-text::before{content:"\F0B77"}.mdi-card-text-outline::before{content:"\F0B78"}.mdi-cards::before{content:"\F0638"}.mdi-cards-club::before{content:"\F08CE"}.mdi-cards-club-outline::before{content:"\F189F"}.mdi-cards-diamond::before{content:"\F08CF"}.mdi-cards-diamond-outline::before{content:"\F101D"}.mdi-cards-heart::before{content:"\F08D0"}.mdi-cards-heart-outline::before{content:"\F18A0"}.mdi-cards-outline::before{content:"\F0639"}.mdi-cards-playing::before{content:"\F18A1"}.mdi-cards-playing-club::before{content:"\F18A2"}.mdi-cards-playing-club-multiple::before{content:"\F18A3"}.mdi-cards-playing-club-multiple-outline::before{content:"\F18A4"}.mdi-cards-playing-club-outline::before{content:"\F18A5"}.mdi-cards-playing-diamond::before{content:"\F18A6"}.mdi-cards-playing-diamond-multiple::before{content:"\F18A7"}.mdi-cards-playing-diamond-multiple-outline::before{content:"\F18A8"}.mdi-cards-playing-diamond-outline::before{content:"\F18A9"}.mdi-cards-playing-heart::before{content:"\F18AA"}.mdi-cards-playing-heart-multiple::before{content:"\F18AB"}.mdi-cards-playing-heart-multiple-outline::before{content:"\F18AC"}.mdi-cards-playing-heart-outline::before{content:"\F18AD"}.mdi-cards-playing-outline::before{content:"\F063A"}.mdi-cards-playing-spade::before{content:"\F18AE"}.mdi-cards-playing-spade-multiple::before{content:"\F18AF"}.mdi-cards-playing-spade-multiple-outline::before{content:"\F18B0"}.mdi-cards-playing-spade-outline::before{content:"\F18B1"}.mdi-cards-spade::before{content:"\F08D1"}.mdi-cards-spade-outline::before{content:"\F18B2"}.mdi-cards-variant::before{content:"\F06C7"}.mdi-carrot::before{content:"\F010F"}.mdi-cart::before{content:"\F0110"}.mdi-cart-arrow-down::before{content:"\F0D66"}.mdi-cart-arrow-right::before{content:"\F0C4E"}.mdi-cart-arrow-up::before{content:"\F0D67"}.mdi-cart-check::before{content:"\F15EA"}.mdi-cart-heart::before{content:"\F18E0"}.mdi-cart-minus::before{content:"\F0D68"}.mdi-cart-off::before{content:"\F066B"}.mdi-cart-outline::before{content:"\F0111"}.mdi-cart-percent::before{content:"\F1BAE"}.mdi-cart-plus::before{content:"\F0112"}.mdi-cart-remove::before{content:"\F0D69"}.mdi-cart-variant::before{content:"\F15EB"}.mdi-case-sensitive-alt::before{content:"\F0113"}.mdi-cash::before{content:"\F0114"}.mdi-cash-100::before{content:"\F0115"}.mdi-cash-check::before{content:"\F14EE"}.mdi-cash-clock::before{content:"\F1A91"}.mdi-cash-fast::before{content:"\F185C"}.mdi-cash-lock::before{content:"\F14EA"}.mdi-cash-lock-open::before{content:"\F14EB"}.mdi-cash-marker::before{content:"\F0DB8"}.mdi-cash-minus::before{content:"\F1260"}.mdi-cash-multiple::before{content:"\F0116"}.mdi-cash-off::before{content:"\F1C79"}.mdi-cash-plus::before{content:"\F1261"}.mdi-cash-refund::before{content:"\F0A9C"}.mdi-cash-register::before{content:"\F0CF4"}.mdi-cash-remove::before{content:"\F1262"}.mdi-cash-sync::before{content:"\F1A92"}.mdi-cassette::before{content:"\F09D4"}.mdi-cast::before{content:"\F0118"}.mdi-cast-audio::before{content:"\F101E"}.mdi-cast-audio-variant::before{content:"\F1749"}.mdi-cast-connected::before{content:"\F0119"}.mdi-cast-education::before{content:"\F0E1D"}.mdi-cast-off::before{content:"\F078A"}.mdi-cast-variant::before{content:"\F001F"}.mdi-castle::before{content:"\F011A"}.mdi-cat::before{content:"\F011B"}.mdi-cctv::before{content:"\F07AE"}.mdi-cctv-off::before{content:"\F185F"}.mdi-ceiling-fan::before{content:"\F1797"}.mdi-ceiling-fan-light::before{content:"\F1798"}.mdi-ceiling-light::before{content:"\F0769"}.mdi-ceiling-light-multiple::before{content:"\F18DD"}.mdi-ceiling-light-multiple-outline::before{content:"\F18DE"}.mdi-ceiling-light-outline::before{content:"\F17C7"}.mdi-cellphone::before{content:"\F011C"}.mdi-cellphone-arrow-down::before{content:"\F09D5"}.mdi-cellphone-arrow-down-variant::before{content:"\F19C5"}.mdi-cellphone-basic::before{content:"\F011E"}.mdi-cellphone-charging::before{content:"\F1397"}.mdi-cellphone-check::before{content:"\F17FD"}.mdi-cellphone-cog::before{content:"\F0951"}.mdi-cellphone-dock::before{content:"\F011F"}.mdi-cellphone-information::before{content:"\F0F41"}.mdi-cellphone-key::before{content:"\F094E"}.mdi-cellphone-link::before{content:"\F0121"}.mdi-cellphone-link-off::before{content:"\F0122"}.mdi-cellphone-lock::before{content:"\F094F"}.mdi-cellphone-marker::before{content:"\F183A"}.mdi-cellphone-message::before{content:"\F08D3"}.mdi-cellphone-message-off::before{content:"\F10D2"}.mdi-cellphone-nfc::before{content:"\F0E90"}.mdi-cellphone-nfc-off::before{content:"\F12D8"}.mdi-cellphone-off::before{content:"\F0950"}.mdi-cellphone-play::before{content:"\F101F"}.mdi-cellphone-remove::before{content:"\F094D"}.mdi-cellphone-screenshot::before{content:"\F0A35"}.mdi-cellphone-settings::before{content:"\F0123"}.mdi-cellphone-sound::before{content:"\F0952"}.mdi-cellphone-text::before{content:"\F08D2"}.mdi-cellphone-wireless::before{content:"\F0815"}.mdi-centos::before{content:"\F111A"}.mdi-certificate::before{content:"\F0124"}.mdi-certificate-outline::before{content:"\F1188"}.mdi-chair-rolling::before{content:"\F0F48"}.mdi-chair-school::before{content:"\F0125"}.mdi-chandelier::before{content:"\F1793"}.mdi-charity::before{content:"\F0C4F"}.mdi-chart-arc::before{content:"\F0126"}.mdi-chart-areaspline::before{content:"\F0127"}.mdi-chart-areaspline-variant::before{content:"\F0E91"}.mdi-chart-bar::before{content:"\F0128"}.mdi-chart-bar-stacked::before{content:"\F076A"}.mdi-chart-bell-curve::before{content:"\F0C50"}.mdi-chart-bell-curve-cumulative::before{content:"\F0FA7"}.mdi-chart-box::before{content:"\F154D"}.mdi-chart-box-outline::before{content:"\F154E"}.mdi-chart-box-plus-outline::before{content:"\F154F"}.mdi-chart-bubble::before{content:"\F05E3"}.mdi-chart-donut::before{content:"\F07AF"}.mdi-chart-donut-variant::before{content:"\F07B0"}.mdi-chart-gantt::before{content:"\F066C"}.mdi-chart-histogram::before{content:"\F0129"}.mdi-chart-line::before{content:"\F012A"}.mdi-chart-line-stacked::before{content:"\F076B"}.mdi-chart-line-variant::before{content:"\F07B1"}.mdi-chart-multiline::before{content:"\F08D4"}.mdi-chart-multiple::before{content:"\F1213"}.mdi-chart-pie::before{content:"\F012B"}.mdi-chart-pie-outline::before{content:"\F1BDF"}.mdi-chart-ppf::before{content:"\F1380"}.mdi-chart-sankey::before{content:"\F11DF"}.mdi-chart-sankey-variant::before{content:"\F11E0"}.mdi-chart-scatter-plot::before{content:"\F0E92"}.mdi-chart-scatter-plot-hexbin::before{content:"\F066D"}.mdi-chart-timeline::before{content:"\F066E"}.mdi-chart-timeline-variant::before{content:"\F0E93"}.mdi-chart-timeline-variant-shimmer::before{content:"\F15B6"}.mdi-chart-tree::before{content:"\F0E94"}.mdi-chart-waterfall::before{content:"\F1918"}.mdi-chat::before{content:"\F0B79"}.mdi-chat-alert::before{content:"\F0B7A"}.mdi-chat-alert-outline::before{content:"\F12C9"}.mdi-chat-minus::before{content:"\F1410"}.mdi-chat-minus-outline::before{content:"\F1413"}.mdi-chat-outline::before{content:"\F0EDE"}.mdi-chat-plus::before{content:"\F140F"}.mdi-chat-plus-outline::before{content:"\F1412"}.mdi-chat-processing::before{content:"\F0B7B"}.mdi-chat-processing-outline::before{content:"\F12CA"}.mdi-chat-question::before{content:"\F1738"}.mdi-chat-question-outline::before{content:"\F1739"}.mdi-chat-remove::before{content:"\F1411"}.mdi-chat-remove-outline::before{content:"\F1414"}.mdi-chat-sleep::before{content:"\F12D1"}.mdi-chat-sleep-outline::before{content:"\F12D2"}.mdi-check::before{content:"\F012C"}.mdi-check-all::before{content:"\F012D"}.mdi-check-bold::before{content:"\F0E1E"}.mdi-check-circle::before{content:"\F05E0"}.mdi-check-circle-outline::before{content:"\F05E1"}.mdi-check-decagram::before{content:"\F0791"}.mdi-check-decagram-outline::before{content:"\F1740"}.mdi-check-network::before{content:"\F0C53"}.mdi-check-network-outline::before{content:"\F0C54"}.mdi-check-outline::before{content:"\F0855"}.mdi-check-underline::before{content:"\F0E1F"}.mdi-check-underline-circle::before{content:"\F0E20"}.mdi-check-underline-circle-outline::before{content:"\F0E21"}.mdi-checkbook::before{content:"\F0A9D"}.mdi-checkbook-arrow-left::before{content:"\F1C1D"}.mdi-checkbook-arrow-right::before{content:"\F1C1E"}.mdi-checkbox-blank::before{content:"\F012E"}.mdi-checkbox-blank-badge::before{content:"\F1176"}.mdi-checkbox-blank-badge-outline::before{content:"\F0117"}.mdi-checkbox-blank-circle::before{content:"\F012F"}.mdi-checkbox-blank-circle-outline::before{content:"\F0130"}.mdi-checkbox-blank-off::before{content:"\F12EC"}.mdi-checkbox-blank-off-outline::before{content:"\F12ED"}.mdi-checkbox-blank-outline::before{content:"\F0131"}.mdi-checkbox-intermediate::before{content:"\F0856"}.mdi-checkbox-intermediate-variant::before{content:"\F1B54"}.mdi-checkbox-marked::before{content:"\F0132"}.mdi-checkbox-marked-circle::before{content:"\F0133"}.mdi-checkbox-marked-circle-auto-outline::before{content:"\F1C26"}.mdi-checkbox-marked-circle-minus-outline::before{content:"\F1C27"}.mdi-checkbox-marked-circle-outline::before{content:"\F0134"}.mdi-checkbox-marked-circle-plus-outline::before{content:"\F1927"}.mdi-checkbox-marked-outline::before{content:"\F0135"}.mdi-checkbox-multiple-blank::before{content:"\F0136"}.mdi-checkbox-multiple-blank-circle::before{content:"\F063B"}.mdi-checkbox-multiple-blank-circle-outline::before{content:"\F063C"}.mdi-checkbox-multiple-blank-outline::before{content:"\F0137"}.mdi-checkbox-multiple-marked::before{content:"\F0138"}.mdi-checkbox-multiple-marked-circle::before{content:"\F063D"}.mdi-checkbox-multiple-marked-circle-outline::before{content:"\F063E"}.mdi-checkbox-multiple-marked-outline::before{content:"\F0139"}.mdi-checkbox-multiple-outline::before{content:"\F0C51"}.mdi-checkbox-outline::before{content:"\F0C52"}.mdi-checkerboard::before{content:"\F013A"}.mdi-checkerboard-minus::before{content:"\F1202"}.mdi-checkerboard-plus::before{content:"\F1201"}.mdi-checkerboard-remove::before{content:"\F1203"}.mdi-cheese::before{content:"\F12B9"}.mdi-cheese-off::before{content:"\F13EE"}.mdi-chef-hat::before{content:"\F0B7C"}.mdi-chemical-weapon::before{content:"\F013B"}.mdi-chess-bishop::before{content:"\F085C"}.mdi-chess-king::before{content:"\F0857"}.mdi-chess-knight::before{content:"\F0858"}.mdi-chess-pawn::before{content:"\F0859"}.mdi-chess-queen::before{content:"\F085A"}.mdi-chess-rook::before{content:"\F085B"}.mdi-chevron-double-down::before{content:"\F013C"}.mdi-chevron-double-left::before{content:"\F013D"}.mdi-chevron-double-right::before{content:"\F013E"}.mdi-chevron-double-up::before{content:"\F013F"}.mdi-chevron-down::before{content:"\F0140"}.mdi-chevron-down-box::before{content:"\F09D6"}.mdi-chevron-down-box-outline::before{content:"\F09D7"}.mdi-chevron-down-circle::before{content:"\F0B26"}.mdi-chevron-down-circle-outline::before{content:"\F0B27"}.mdi-chevron-left::before{content:"\F0141"}.mdi-chevron-left-box::before{content:"\F09D8"}.mdi-chevron-left-box-outline::before{content:"\F09D9"}.mdi-chevron-left-circle::before{content:"\F0B28"}.mdi-chevron-left-circle-outline::before{content:"\F0B29"}.mdi-chevron-right::before{content:"\F0142"}.mdi-chevron-right-box::before{content:"\F09DA"}.mdi-chevron-right-box-outline::before{content:"\F09DB"}.mdi-chevron-right-circle::before{content:"\F0B2A"}.mdi-chevron-right-circle-outline::before{content:"\F0B2B"}.mdi-chevron-triple-down::before{content:"\F0DB9"}.mdi-chevron-triple-left::before{content:"\F0DBA"}.mdi-chevron-triple-right::before{content:"\F0DBB"}.mdi-chevron-triple-up::before{content:"\F0DBC"}.mdi-chevron-up::before{content:"\F0143"}.mdi-chevron-up-box::before{content:"\F09DC"}.mdi-chevron-up-box-outline::before{content:"\F09DD"}.mdi-chevron-up-circle::before{content:"\F0B2C"}.mdi-chevron-up-circle-outline::before{content:"\F0B2D"}.mdi-chili-alert::before{content:"\F17EA"}.mdi-chili-alert-outline::before{content:"\F17EB"}.mdi-chili-hot::before{content:"\F07B2"}.mdi-chili-hot-outline::before{content:"\F17EC"}.mdi-chili-medium::before{content:"\F07B3"}.mdi-chili-medium-outline::before{content:"\F17ED"}.mdi-chili-mild::before{content:"\F07B4"}.mdi-chili-mild-outline::before{content:"\F17EE"}.mdi-chili-off::before{content:"\F1467"}.mdi-chili-off-outline::before{content:"\F17EF"}.mdi-chip::before{content:"\F061A"}.mdi-church::before{content:"\F0144"}.mdi-church-outline::before{content:"\F1B02"}.mdi-cigar::before{content:"\F1189"}.mdi-cigar-off::before{content:"\F141B"}.mdi-circle::before{content:"\F0765"}.mdi-circle-box::before{content:"\F15DC"}.mdi-circle-box-outline::before{content:"\F15DD"}.mdi-circle-double::before{content:"\F0E95"}.mdi-circle-edit-outline::before{content:"\F08D5"}.mdi-circle-expand::before{content:"\F0E96"}.mdi-circle-half::before{content:"\F1395"}.mdi-circle-half-full::before{content:"\F1396"}.mdi-circle-medium::before{content:"\F09DE"}.mdi-circle-multiple::before{content:"\F0B38"}.mdi-circle-multiple-outline::before{content:"\F0695"}.mdi-circle-off-outline::before{content:"\F10D3"}.mdi-circle-opacity::before{content:"\F1853"}.mdi-circle-outline::before{content:"\F0766"}.mdi-circle-slice-1::before{content:"\F0A9E"}.mdi-circle-slice-2::before{content:"\F0A9F"}.mdi-circle-slice-3::before{content:"\F0AA0"}.mdi-circle-slice-4::before{content:"\F0AA1"}.mdi-circle-slice-5::before{content:"\F0AA2"}.mdi-circle-slice-6::before{content:"\F0AA3"}.mdi-circle-slice-7::before{content:"\F0AA4"}.mdi-circle-slice-8::before{content:"\F0AA5"}.mdi-circle-small::before{content:"\F09DF"}.mdi-circular-saw::before{content:"\F0E22"}.mdi-city::before{content:"\F0146"}.mdi-city-switch::before{content:"\F1C28"}.mdi-city-variant::before{content:"\F0A36"}.mdi-city-variant-outline::before{content:"\F0A37"}.mdi-clipboard::before{content:"\F0147"}.mdi-clipboard-account::before{content:"\F0148"}.mdi-clipboard-account-outline::before{content:"\F0C55"}.mdi-clipboard-alert::before{content:"\F0149"}.mdi-clipboard-alert-outline::before{content:"\F0CF7"}.mdi-clipboard-arrow-down::before{content:"\F014A"}.mdi-clipboard-arrow-down-outline::before{content:"\F0C56"}.mdi-clipboard-arrow-left::before{content:"\F014B"}.mdi-clipboard-arrow-left-outline::before{content:"\F0CF8"}.mdi-clipboard-arrow-right::before{content:"\F0CF9"}.mdi-clipboard-arrow-right-outline::before{content:"\F0CFA"}.mdi-clipboard-arrow-up::before{content:"\F0C57"}.mdi-clipboard-arrow-up-outline::before{content:"\F0C58"}.mdi-clipboard-check::before{content:"\F014E"}.mdi-clipboard-check-multiple::before{content:"\F1263"}.mdi-clipboard-check-multiple-outline::before{content:"\F1264"}.mdi-clipboard-check-outline::before{content:"\F08A8"}.mdi-clipboard-clock::before{content:"\F16E2"}.mdi-clipboard-clock-outline::before{content:"\F16E3"}.mdi-clipboard-edit::before{content:"\F14E5"}.mdi-clipboard-edit-outline::before{content:"\F14E6"}.mdi-clipboard-file::before{content:"\F1265"}.mdi-clipboard-file-outline::before{content:"\F1266"}.mdi-clipboard-flow::before{content:"\F06C8"}.mdi-clipboard-flow-outline::before{content:"\F1117"}.mdi-clipboard-list::before{content:"\F10D4"}.mdi-clipboard-list-outline::before{content:"\F10D5"}.mdi-clipboard-minus::before{content:"\F1618"}.mdi-clipboard-minus-outline::before{content:"\F1619"}.mdi-clipboard-multiple::before{content:"\F1267"}.mdi-clipboard-multiple-outline::before{content:"\F1268"}.mdi-clipboard-off::before{content:"\F161A"}.mdi-clipboard-off-outline::before{content:"\F161B"}.mdi-clipboard-outline::before{content:"\F014C"}.mdi-clipboard-play::before{content:"\F0C59"}.mdi-clipboard-play-multiple::before{content:"\F1269"}.mdi-clipboard-play-multiple-outline::before{content:"\F126A"}.mdi-clipboard-play-outline::before{content:"\F0C5A"}.mdi-clipboard-plus::before{content:"\F0751"}.mdi-clipboard-plus-outline::before{content:"\F131F"}.mdi-clipboard-pulse::before{content:"\F085D"}.mdi-clipboard-pulse-outline::before{content:"\F085E"}.mdi-clipboard-remove::before{content:"\F161C"}.mdi-clipboard-remove-outline::before{content:"\F161D"}.mdi-clipboard-search::before{content:"\F161E"}.mdi-clipboard-search-outline::before{content:"\F161F"}.mdi-clipboard-text::before{content:"\F014D"}.mdi-clipboard-text-clock::before{content:"\F18F9"}.mdi-clipboard-text-clock-outline::before{content:"\F18FA"}.mdi-clipboard-text-multiple::before{content:"\F126B"}.mdi-clipboard-text-multiple-outline::before{content:"\F126C"}.mdi-clipboard-text-off::before{content:"\F1620"}.mdi-clipboard-text-off-outline::before{content:"\F1621"}.mdi-clipboard-text-outline::before{content:"\F0A38"}.mdi-clipboard-text-play::before{content:"\F0C5B"}.mdi-clipboard-text-play-outline::before{content:"\F0C5C"}.mdi-clipboard-text-search::before{content:"\F1622"}.mdi-clipboard-text-search-outline::before{content:"\F1623"}.mdi-clippy::before{content:"\F014F"}.mdi-clock::before{content:"\F0954"}.mdi-clock-alert::before{content:"\F0955"}.mdi-clock-alert-outline::before{content:"\F05CE"}.mdi-clock-check::before{content:"\F0FA8"}.mdi-clock-check-outline::before{content:"\F0FA9"}.mdi-clock-digital::before{content:"\F0E97"}.mdi-clock-edit::before{content:"\F19BA"}.mdi-clock-edit-outline::before{content:"\F19BB"}.mdi-clock-end::before{content:"\F0151"}.mdi-clock-fast::before{content:"\F0152"}.mdi-clock-in::before{content:"\F0153"}.mdi-clock-minus::before{content:"\F1863"}.mdi-clock-minus-outline::before{content:"\F1864"}.mdi-clock-out::before{content:"\F0154"}.mdi-clock-outline::before{content:"\F0150"}.mdi-clock-plus::before{content:"\F1861"}.mdi-clock-plus-outline::before{content:"\F1862"}.mdi-clock-remove::before{content:"\F1865"}.mdi-clock-remove-outline::before{content:"\F1866"}.mdi-clock-star-four-points::before{content:"\F1C29"}.mdi-clock-star-four-points-outline::before{content:"\F1C2A"}.mdi-clock-start::before{content:"\F0155"}.mdi-clock-time-eight::before{content:"\F1446"}.mdi-clock-time-eight-outline::before{content:"\F1452"}.mdi-clock-time-eleven::before{content:"\F1449"}.mdi-clock-time-eleven-outline::before{content:"\F1455"}.mdi-clock-time-five::before{content:"\F1443"}.mdi-clock-time-five-outline::before{content:"\F144F"}.mdi-clock-time-four::before{content:"\F1442"}.mdi-clock-time-four-outline::before{content:"\F144E"}.mdi-clock-time-nine::before{content:"\F1447"}.mdi-clock-time-nine-outline::before{content:"\F1453"}.mdi-clock-time-one::before{content:"\F143F"}.mdi-clock-time-one-outline::before{content:"\F144B"}.mdi-clock-time-seven::before{content:"\F1445"}.mdi-clock-time-seven-outline::before{content:"\F1451"}.mdi-clock-time-six::before{content:"\F1444"}.mdi-clock-time-six-outline::before{content:"\F1450"}.mdi-clock-time-ten::before{content:"\F1448"}.mdi-clock-time-ten-outline::before{content:"\F1454"}.mdi-clock-time-three::before{content:"\F1441"}.mdi-clock-time-three-outline::before{content:"\F144D"}.mdi-clock-time-twelve::before{content:"\F144A"}.mdi-clock-time-twelve-outline::before{content:"\F1456"}.mdi-clock-time-two::before{content:"\F1440"}.mdi-clock-time-two-outline::before{content:"\F144C"}.mdi-close::before{content:"\F0156"}.mdi-close-box::before{content:"\F0157"}.mdi-close-box-multiple::before{content:"\F0C5D"}.mdi-close-box-multiple-outline::before{content:"\F0C5E"}.mdi-close-box-outline::before{content:"\F0158"}.mdi-close-circle::before{content:"\F0159"}.mdi-close-circle-multiple::before{content:"\F062A"}.mdi-close-circle-multiple-outline::before{content:"\F0883"}.mdi-close-circle-outline::before{content:"\F015A"}.mdi-close-network::before{content:"\F015B"}.mdi-close-network-outline::before{content:"\F0C5F"}.mdi-close-octagon::before{content:"\F015C"}.mdi-close-octagon-outline::before{content:"\F015D"}.mdi-close-outline::before{content:"\F06C9"}.mdi-close-thick::before{content:"\F1398"}.mdi-closed-caption::before{content:"\F015E"}.mdi-closed-caption-outline::before{content:"\F0DBD"}.mdi-cloud::before{content:"\F015F"}.mdi-cloud-alert::before{content:"\F09E0"}.mdi-cloud-alert-outline::before{content:"\F1BE0"}.mdi-cloud-arrow-down::before{content:"\F1BE1"}.mdi-cloud-arrow-down-outline::before{content:"\F1BE2"}.mdi-cloud-arrow-left::before{content:"\F1BE3"}.mdi-cloud-arrow-left-outline::before{content:"\F1BE4"}.mdi-cloud-arrow-right::before{content:"\F1BE5"}.mdi-cloud-arrow-right-outline::before{content:"\F1BE6"}.mdi-cloud-arrow-up::before{content:"\F1BE7"}.mdi-cloud-arrow-up-outline::before{content:"\F1BE8"}.mdi-cloud-braces::before{content:"\F07B5"}.mdi-cloud-cancel::before{content:"\F1BE9"}.mdi-cloud-cancel-outline::before{content:"\F1BEA"}.mdi-cloud-check::before{content:"\F1BEB"}.mdi-cloud-check-outline::before{content:"\F1BEC"}.mdi-cloud-check-variant::before{content:"\F0160"}.mdi-cloud-check-variant-outline::before{content:"\F12CC"}.mdi-cloud-circle::before{content:"\F0161"}.mdi-cloud-circle-outline::before{content:"\F1BED"}.mdi-cloud-clock::before{content:"\F1BEE"}.mdi-cloud-clock-outline::before{content:"\F1BEF"}.mdi-cloud-cog::before{content:"\F1BF0"}.mdi-cloud-cog-outline::before{content:"\F1BF1"}.mdi-cloud-download::before{content:"\F0162"}.mdi-cloud-download-outline::before{content:"\F0B7D"}.mdi-cloud-lock::before{content:"\F11F1"}.mdi-cloud-lock-open::before{content:"\F1BF2"}.mdi-cloud-lock-open-outline::before{content:"\F1BF3"}.mdi-cloud-lock-outline::before{content:"\F11F2"}.mdi-cloud-minus::before{content:"\F1BF4"}.mdi-cloud-minus-outline::before{content:"\F1BF5"}.mdi-cloud-off::before{content:"\F1BF6"}.mdi-cloud-off-outline::before{content:"\F0164"}.mdi-cloud-outline::before{content:"\F0163"}.mdi-cloud-percent::before{content:"\F1A35"}.mdi-cloud-percent-outline::before{content:"\F1A36"}.mdi-cloud-plus::before{content:"\F1BF7"}.mdi-cloud-plus-outline::before{content:"\F1BF8"}.mdi-cloud-print::before{content:"\F0165"}.mdi-cloud-print-outline::before{content:"\F0166"}.mdi-cloud-question::before{content:"\F0A39"}.mdi-cloud-question-outline::before{content:"\F1BF9"}.mdi-cloud-refresh::before{content:"\F1BFA"}.mdi-cloud-refresh-outline::before{content:"\F1BFB"}.mdi-cloud-refresh-variant::before{content:"\F052A"}.mdi-cloud-refresh-variant-outline::before{content:"\F1BFC"}.mdi-cloud-remove::before{content:"\F1BFD"}.mdi-cloud-remove-outline::before{content:"\F1BFE"}.mdi-cloud-search::before{content:"\F0956"}.mdi-cloud-search-outline::before{content:"\F0957"}.mdi-cloud-sync::before{content:"\F063F"}.mdi-cloud-sync-outline::before{content:"\F12D6"}.mdi-cloud-tags::before{content:"\F07B6"}.mdi-cloud-upload::before{content:"\F0167"}.mdi-cloud-upload-outline::before{content:"\F0B7E"}.mdi-clouds::before{content:"\F1B95"}.mdi-clover::before{content:"\F0816"}.mdi-clover-outline::before{content:"\F1C62"}.mdi-coach-lamp::before{content:"\F1020"}.mdi-coach-lamp-variant::before{content:"\F1A37"}.mdi-coat-rack::before{content:"\F109E"}.mdi-code-array::before{content:"\F0168"}.mdi-code-braces::before{content:"\F0169"}.mdi-code-braces-box::before{content:"\F10D6"}.mdi-code-brackets::before{content:"\F016A"}.mdi-code-equal::before{content:"\F016B"}.mdi-code-greater-than::before{content:"\F016C"}.mdi-code-greater-than-or-equal::before{content:"\F016D"}.mdi-code-json::before{content:"\F0626"}.mdi-code-less-than::before{content:"\F016E"}.mdi-code-less-than-or-equal::before{content:"\F016F"}.mdi-code-not-equal::before{content:"\F0170"}.mdi-code-not-equal-variant::before{content:"\F0171"}.mdi-code-parentheses::before{content:"\F0172"}.mdi-code-parentheses-box::before{content:"\F10D7"}.mdi-code-string::before{content:"\F0173"}.mdi-code-tags::before{content:"\F0174"}.mdi-code-tags-check::before{content:"\F0694"}.mdi-codepen::before{content:"\F0175"}.mdi-coffee::before{content:"\F0176"}.mdi-coffee-maker::before{content:"\F109F"}.mdi-coffee-maker-check::before{content:"\F1931"}.mdi-coffee-maker-check-outline::before{content:"\F1932"}.mdi-coffee-maker-outline::before{content:"\F181B"}.mdi-coffee-off::before{content:"\F0FAA"}.mdi-coffee-off-outline::before{content:"\F0FAB"}.mdi-coffee-outline::before{content:"\F06CA"}.mdi-coffee-to-go::before{content:"\F0177"}.mdi-coffee-to-go-outline::before{content:"\F130E"}.mdi-coffin::before{content:"\F0B7F"}.mdi-cog::before{content:"\F0493"}.mdi-cog-box::before{content:"\F0494"}.mdi-cog-clockwise::before{content:"\F11DD"}.mdi-cog-counterclockwise::before{content:"\F11DE"}.mdi-cog-off::before{content:"\F13CE"}.mdi-cog-off-outline::before{content:"\F13CF"}.mdi-cog-outline::before{content:"\F08BB"}.mdi-cog-pause::before{content:"\F1933"}.mdi-cog-pause-outline::before{content:"\F1934"}.mdi-cog-play::before{content:"\F1935"}.mdi-cog-play-outline::before{content:"\F1936"}.mdi-cog-refresh::before{content:"\F145E"}.mdi-cog-refresh-outline::before{content:"\F145F"}.mdi-cog-stop::before{content:"\F1937"}.mdi-cog-stop-outline::before{content:"\F1938"}.mdi-cog-sync::before{content:"\F1460"}.mdi-cog-sync-outline::before{content:"\F1461"}.mdi-cog-transfer::before{content:"\F105B"}.mdi-cog-transfer-outline::before{content:"\F105C"}.mdi-cogs::before{content:"\F08D6"}.mdi-collage::before{content:"\F0640"}.mdi-collapse-all::before{content:"\F0AA6"}.mdi-collapse-all-outline::before{content:"\F0AA7"}.mdi-color-helper::before{content:"\F0179"}.mdi-comma::before{content:"\F0E23"}.mdi-comma-box::before{content:"\F0E2B"}.mdi-comma-box-outline::before{content:"\F0E24"}.mdi-comma-circle::before{content:"\F0E25"}.mdi-comma-circle-outline::before{content:"\F0E26"}.mdi-comment::before{content:"\F017A"}.mdi-comment-account::before{content:"\F017B"}.mdi-comment-account-outline::before{content:"\F017C"}.mdi-comment-alert::before{content:"\F017D"}.mdi-comment-alert-outline::before{content:"\F017E"}.mdi-comment-arrow-left::before{content:"\F09E1"}.mdi-comment-arrow-left-outline::before{content:"\F09E2"}.mdi-comment-arrow-right::before{content:"\F09E3"}.mdi-comment-arrow-right-outline::before{content:"\F09E4"}.mdi-comment-bookmark::before{content:"\F15AE"}.mdi-comment-bookmark-outline::before{content:"\F15AF"}.mdi-comment-check::before{content:"\F017F"}.mdi-comment-check-outline::before{content:"\F0180"}.mdi-comment-edit::before{content:"\F11BF"}.mdi-comment-edit-outline::before{content:"\F12C4"}.mdi-comment-eye::before{content:"\F0A3A"}.mdi-comment-eye-outline::before{content:"\F0A3B"}.mdi-comment-flash::before{content:"\F15B0"}.mdi-comment-flash-outline::before{content:"\F15B1"}.mdi-comment-minus::before{content:"\F15DF"}.mdi-comment-minus-outline::before{content:"\F15E0"}.mdi-comment-multiple::before{content:"\F085F"}.mdi-comment-multiple-outline::before{content:"\F0181"}.mdi-comment-off::before{content:"\F15E1"}.mdi-comment-off-outline::before{content:"\F15E2"}.mdi-comment-outline::before{content:"\F0182"}.mdi-comment-plus::before{content:"\F09E5"}.mdi-comment-plus-outline::before{content:"\F0183"}.mdi-comment-processing::before{content:"\F0184"}.mdi-comment-processing-outline::before{content:"\F0185"}.mdi-comment-question::before{content:"\F0817"}.mdi-comment-question-outline::before{content:"\F0186"}.mdi-comment-quote::before{content:"\F1021"}.mdi-comment-quote-outline::before{content:"\F1022"}.mdi-comment-remove::before{content:"\F05DE"}.mdi-comment-remove-outline::before{content:"\F0187"}.mdi-comment-search::before{content:"\F0A3C"}.mdi-comment-search-outline::before{content:"\F0A3D"}.mdi-comment-text::before{content:"\F0188"}.mdi-comment-text-multiple::before{content:"\F0860"}.mdi-comment-text-multiple-outline::before{content:"\F0861"}.mdi-comment-text-outline::before{content:"\F0189"}.mdi-compare::before{content:"\F018A"}.mdi-compare-horizontal::before{content:"\F1492"}.mdi-compare-remove::before{content:"\F18B3"}.mdi-compare-vertical::before{content:"\F1493"}.mdi-compass::before{content:"\F018B"}.mdi-compass-off::before{content:"\F0B80"}.mdi-compass-off-outline::before{content:"\F0B81"}.mdi-compass-outline::before{content:"\F018C"}.mdi-compass-rose::before{content:"\F1382"}.mdi-compost::before{content:"\F1A38"}.mdi-cone::before{content:"\F194C"}.mdi-cone-off::before{content:"\F194D"}.mdi-connection::before{content:"\F1616"}.mdi-console::before{content:"\F018D"}.mdi-console-line::before{content:"\F07B7"}.mdi-console-network::before{content:"\F08A9"}.mdi-console-network-outline::before{content:"\F0C60"}.mdi-consolidate::before{content:"\F10D8"}.mdi-contactless-payment::before{content:"\F0D6A"}.mdi-contactless-payment-circle::before{content:"\F0321"}.mdi-contactless-payment-circle-outline::before{content:"\F0408"}.mdi-contacts::before{content:"\F06CB"}.mdi-contacts-outline::before{content:"\F05B8"}.mdi-contain::before{content:"\F0A3E"}.mdi-contain-end::before{content:"\F0A3F"}.mdi-contain-start::before{content:"\F0A40"}.mdi-content-copy::before{content:"\F018F"}.mdi-content-cut::before{content:"\F0190"}.mdi-content-duplicate::before{content:"\F0191"}.mdi-content-paste::before{content:"\F0192"}.mdi-content-save::before{content:"\F0193"}.mdi-content-save-alert::before{content:"\F0F42"}.mdi-content-save-alert-outline::before{content:"\F0F43"}.mdi-content-save-all::before{content:"\F0194"}.mdi-content-save-all-outline::before{content:"\F0F44"}.mdi-content-save-check::before{content:"\F18EA"}.mdi-content-save-check-outline::before{content:"\F18EB"}.mdi-content-save-cog::before{content:"\F145B"}.mdi-content-save-cog-outline::before{content:"\F145C"}.mdi-content-save-edit::before{content:"\F0CFB"}.mdi-content-save-edit-outline::before{content:"\F0CFC"}.mdi-content-save-minus::before{content:"\F1B43"}.mdi-content-save-minus-outline::before{content:"\F1B44"}.mdi-content-save-move::before{content:"\F0E27"}.mdi-content-save-move-outline::before{content:"\F0E28"}.mdi-content-save-off::before{content:"\F1643"}.mdi-content-save-off-outline::before{content:"\F1644"}.mdi-content-save-outline::before{content:"\F0818"}.mdi-content-save-plus::before{content:"\F1B41"}.mdi-content-save-plus-outline::before{content:"\F1B42"}.mdi-content-save-settings::before{content:"\F061B"}.mdi-content-save-settings-outline::before{content:"\F0B2E"}.mdi-contrast::before{content:"\F0195"}.mdi-contrast-box::before{content:"\F0196"}.mdi-contrast-circle::before{content:"\F0197"}.mdi-controller::before{content:"\F02B4"}.mdi-controller-classic::before{content:"\F0B82"}.mdi-controller-classic-outline::before{content:"\F0B83"}.mdi-controller-off::before{content:"\F02B5"}.mdi-cookie::before{content:"\F0198"}.mdi-cookie-alert::before{content:"\F16D0"}.mdi-cookie-alert-outline::before{content:"\F16D1"}.mdi-cookie-check::before{content:"\F16D2"}.mdi-cookie-check-outline::before{content:"\F16D3"}.mdi-cookie-clock::before{content:"\F16E4"}.mdi-cookie-clock-outline::before{content:"\F16E5"}.mdi-cookie-cog::before{content:"\F16D4"}.mdi-cookie-cog-outline::before{content:"\F16D5"}.mdi-cookie-edit::before{content:"\F16E6"}.mdi-cookie-edit-outline::before{content:"\F16E7"}.mdi-cookie-lock::before{content:"\F16E8"}.mdi-cookie-lock-outline::before{content:"\F16E9"}.mdi-cookie-minus::before{content:"\F16DA"}.mdi-cookie-minus-outline::before{content:"\F16DB"}.mdi-cookie-off::before{content:"\F16EA"}.mdi-cookie-off-outline::before{content:"\F16EB"}.mdi-cookie-outline::before{content:"\F16DE"}.mdi-cookie-plus::before{content:"\F16D6"}.mdi-cookie-plus-outline::before{content:"\F16D7"}.mdi-cookie-refresh::before{content:"\F16EC"}.mdi-cookie-refresh-outline::before{content:"\F16ED"}.mdi-cookie-remove::before{content:"\F16D8"}.mdi-cookie-remove-outline::before{content:"\F16D9"}.mdi-cookie-settings::before{content:"\F16DC"}.mdi-cookie-settings-outline::before{content:"\F16DD"}.mdi-coolant-temperature::before{content:"\F03C8"}.mdi-copyleft::before{content:"\F1939"}.mdi-copyright::before{content:"\F05E6"}.mdi-cordova::before{content:"\F0958"}.mdi-corn::before{content:"\F07B8"}.mdi-corn-off::before{content:"\F13EF"}.mdi-cosine-wave::before{content:"\F1479"}.mdi-counter::before{content:"\F0199"}.mdi-countertop::before{content:"\F181C"}.mdi-countertop-outline::before{content:"\F181D"}.mdi-cow::before{content:"\F019A"}.mdi-cow-off::before{content:"\F18FC"}.mdi-cpu-32-bit::before{content:"\F0EDF"}.mdi-cpu-64-bit::before{content:"\F0EE0"}.mdi-cradle::before{content:"\F198B"}.mdi-cradle-outline::before{content:"\F1991"}.mdi-crane::before{content:"\F0862"}.mdi-creation::before{content:"\F0674"}.mdi-creation-outline::before{content:"\F1C2B"}.mdi-creative-commons::before{content:"\F0D6B"}.mdi-credit-card::before{content:"\F0FEF"}.mdi-credit-card-check::before{content:"\F13D0"}.mdi-credit-card-check-outline::before{content:"\F13D1"}.mdi-credit-card-chip::before{content:"\F190F"}.mdi-credit-card-chip-outline::before{content:"\F1910"}.mdi-credit-card-clock::before{content:"\F0EE1"}.mdi-credit-card-clock-outline::before{content:"\F0EE2"}.mdi-credit-card-edit::before{content:"\F17D7"}.mdi-credit-card-edit-outline::before{content:"\F17D8"}.mdi-credit-card-fast::before{content:"\F1911"}.mdi-credit-card-fast-outline::before{content:"\F1912"}.mdi-credit-card-lock::before{content:"\F18E7"}.mdi-credit-card-lock-outline::before{content:"\F18E8"}.mdi-credit-card-marker::before{content:"\F06A8"}.mdi-credit-card-marker-outline::before{content:"\F0DBE"}.mdi-credit-card-minus::before{content:"\F0FAC"}.mdi-credit-card-minus-outline::before{content:"\F0FAD"}.mdi-credit-card-multiple::before{content:"\F0FF0"}.mdi-credit-card-multiple-outline::before{content:"\F019C"}.mdi-credit-card-off::before{content:"\F0FF1"}.mdi-credit-card-off-outline::before{content:"\F05E4"}.mdi-credit-card-outline::before{content:"\F019B"}.mdi-credit-card-plus::before{content:"\F0FF2"}.mdi-credit-card-plus-outline::before{content:"\F0676"}.mdi-credit-card-refresh::before{content:"\F1645"}.mdi-credit-card-refresh-outline::before{content:"\F1646"}.mdi-credit-card-refund::before{content:"\F0FF3"}.mdi-credit-card-refund-outline::before{content:"\F0AA8"}.mdi-credit-card-remove::before{content:"\F0FAE"}.mdi-credit-card-remove-outline::before{content:"\F0FAF"}.mdi-credit-card-scan::before{content:"\F0FF4"}.mdi-credit-card-scan-outline::before{content:"\F019D"}.mdi-credit-card-search::before{content:"\F1647"}.mdi-credit-card-search-outline::before{content:"\F1648"}.mdi-credit-card-settings::before{content:"\F0FF5"}.mdi-credit-card-settings-outline::before{content:"\F08D7"}.mdi-credit-card-sync::before{content:"\F1649"}.mdi-credit-card-sync-outline::before{content:"\F164A"}.mdi-credit-card-wireless::before{content:"\F0802"}.mdi-credit-card-wireless-off::before{content:"\F057A"}.mdi-credit-card-wireless-off-outline::before{content:"\F057B"}.mdi-credit-card-wireless-outline::before{content:"\F0D6C"}.mdi-cricket::before{content:"\F0D6D"}.mdi-crop::before{content:"\F019E"}.mdi-crop-free::before{content:"\F019F"}.mdi-crop-landscape::before{content:"\F01A0"}.mdi-crop-portrait::before{content:"\F01A1"}.mdi-crop-rotate::before{content:"\F0696"}.mdi-crop-square::before{content:"\F01A2"}.mdi-cross::before{content:"\F0953"}.mdi-cross-bolnisi::before{content:"\F0CED"}.mdi-cross-celtic::before{content:"\F0CF5"}.mdi-cross-outline::before{content:"\F0CF6"}.mdi-crosshairs::before{content:"\F01A3"}.mdi-crosshairs-gps::before{content:"\F01A4"}.mdi-crosshairs-off::before{content:"\F0F45"}.mdi-crosshairs-question::before{content:"\F1136"}.mdi-crowd::before{content:"\F1975"}.mdi-crown::before{content:"\F01A5"}.mdi-crown-circle::before{content:"\F17DC"}.mdi-crown-circle-outline::before{content:"\F17DD"}.mdi-crown-outline::before{content:"\F11D0"}.mdi-cryengine::before{content:"\F0959"}.mdi-crystal-ball::before{content:"\F0B2F"}.mdi-cube::before{content:"\F01A6"}.mdi-cube-off::before{content:"\F141C"}.mdi-cube-off-outline::before{content:"\F141D"}.mdi-cube-outline::before{content:"\F01A7"}.mdi-cube-scan::before{content:"\F0B84"}.mdi-cube-send::before{content:"\F01A8"}.mdi-cube-unfolded::before{content:"\F01A9"}.mdi-cup::before{content:"\F01AA"}.mdi-cup-off::before{content:"\F05E5"}.mdi-cup-off-outline::before{content:"\F137D"}.mdi-cup-outline::before{content:"\F130F"}.mdi-cup-water::before{content:"\F01AB"}.mdi-cupboard::before{content:"\F0F46"}.mdi-cupboard-outline::before{content:"\F0F47"}.mdi-cupcake::before{content:"\F095A"}.mdi-curling::before{content:"\F0863"}.mdi-currency-bdt::before{content:"\F0864"}.mdi-currency-brl::before{content:"\F0B85"}.mdi-currency-btc::before{content:"\F01AC"}.mdi-currency-cny::before{content:"\F07BA"}.mdi-currency-eth::before{content:"\F07BB"}.mdi-currency-eur::before{content:"\F01AD"}.mdi-currency-eur-off::before{content:"\F1315"}.mdi-currency-fra::before{content:"\F1A39"}.mdi-currency-gbp::before{content:"\F01AE"}.mdi-currency-ils::before{content:"\F0C61"}.mdi-currency-inr::before{content:"\F01AF"}.mdi-currency-jpy::before{content:"\F07BC"}.mdi-currency-krw::before{content:"\F07BD"}.mdi-currency-kzt::before{content:"\F0865"}.mdi-currency-mnt::before{content:"\F1512"}.mdi-currency-ngn::before{content:"\F01B0"}.mdi-currency-php::before{content:"\F09E6"}.mdi-currency-rial::before{content:"\F0E9C"}.mdi-currency-rub::before{content:"\F01B1"}.mdi-currency-rupee::before{content:"\F1976"}.mdi-currency-sign::before{content:"\F07BE"}.mdi-currency-thb::before{content:"\F1C05"}.mdi-currency-try::before{content:"\F01B2"}.mdi-currency-twd::before{content:"\F07BF"}.mdi-currency-uah::before{content:"\F1B9B"}.mdi-currency-usd::before{content:"\F01C1"}.mdi-currency-usd-off::before{content:"\F067A"}.mdi-current-ac::before{content:"\F1480"}.mdi-current-dc::before{content:"\F095C"}.mdi-cursor-default::before{content:"\F01C0"}.mdi-cursor-default-click::before{content:"\F0CFD"}.mdi-cursor-default-click-outline::before{content:"\F0CFE"}.mdi-cursor-default-gesture::before{content:"\F1127"}.mdi-cursor-default-gesture-outline::before{content:"\F1128"}.mdi-cursor-default-outline::before{content:"\F01BF"}.mdi-cursor-move::before{content:"\F01BE"}.mdi-cursor-pointer::before{content:"\F01BD"}.mdi-cursor-text::before{content:"\F05E7"}.mdi-curtains::before{content:"\F1846"}.mdi-curtains-closed::before{content:"\F1847"}.mdi-cylinder::before{content:"\F194E"}.mdi-cylinder-off::before{content:"\F194F"}.mdi-dance-ballroom::before{content:"\F15FB"}.mdi-dance-pole::before{content:"\F1578"}.mdi-data-matrix::before{content:"\F153C"}.mdi-data-matrix-edit::before{content:"\F153D"}.mdi-data-matrix-minus::before{content:"\F153E"}.mdi-data-matrix-plus::before{content:"\F153F"}.mdi-data-matrix-remove::before{content:"\F1540"}.mdi-data-matrix-scan::before{content:"\F1541"}.mdi-database::before{content:"\F01BC"}.mdi-database-alert::before{content:"\F163A"}.mdi-database-alert-outline::before{content:"\F1624"}.mdi-database-arrow-down::before{content:"\F163B"}.mdi-database-arrow-down-outline::before{content:"\F1625"}.mdi-database-arrow-left::before{content:"\F163C"}.mdi-database-arrow-left-outline::before{content:"\F1626"}.mdi-database-arrow-right::before{content:"\F163D"}.mdi-database-arrow-right-outline::before{content:"\F1627"}.mdi-database-arrow-up::before{content:"\F163E"}.mdi-database-arrow-up-outline::before{content:"\F1628"}.mdi-database-check::before{content:"\F0AA9"}.mdi-database-check-outline::before{content:"\F1629"}.mdi-database-clock::before{content:"\F163F"}.mdi-database-clock-outline::before{content:"\F162A"}.mdi-database-cog::before{content:"\F164B"}.mdi-database-cog-outline::before{content:"\F164C"}.mdi-database-edit::before{content:"\F0B86"}.mdi-database-edit-outline::before{content:"\F162B"}.mdi-database-export::before{content:"\F095E"}.mdi-database-export-outline::before{content:"\F162C"}.mdi-database-eye::before{content:"\F191F"}.mdi-database-eye-off::before{content:"\F1920"}.mdi-database-eye-off-outline::before{content:"\F1921"}.mdi-database-eye-outline::before{content:"\F1922"}.mdi-database-import::before{content:"\F095D"}.mdi-database-import-outline::before{content:"\F162D"}.mdi-database-lock::before{content:"\F0AAA"}.mdi-database-lock-outline::before{content:"\F162E"}.mdi-database-marker::before{content:"\F12F6"}.mdi-database-marker-outline::before{content:"\F162F"}.mdi-database-minus::before{content:"\F01BB"}.mdi-database-minus-outline::before{content:"\F1630"}.mdi-database-off::before{content:"\F1640"}.mdi-database-off-outline::before{content:"\F1631"}.mdi-database-outline::before{content:"\F1632"}.mdi-database-plus::before{content:"\F01BA"}.mdi-database-plus-outline::before{content:"\F1633"}.mdi-database-refresh::before{content:"\F05C2"}.mdi-database-refresh-outline::before{content:"\F1634"}.mdi-database-remove::before{content:"\F0D00"}.mdi-database-remove-outline::before{content:"\F1635"}.mdi-database-search::before{content:"\F0866"}.mdi-database-search-outline::before{content:"\F1636"}.mdi-database-settings::before{content:"\F0D01"}.mdi-database-settings-outline::before{content:"\F1637"}.mdi-database-sync::before{content:"\F0CFF"}.mdi-database-sync-outline::before{content:"\F1638"}.mdi-death-star::before{content:"\F08D8"}.mdi-death-star-variant::before{content:"\F08D9"}.mdi-deathly-hallows::before{content:"\F0B87"}.mdi-debian::before{content:"\F08DA"}.mdi-debug-step-into::before{content:"\F01B9"}.mdi-debug-step-out::before{content:"\F01B8"}.mdi-debug-step-over::before{content:"\F01B7"}.mdi-decagram::before{content:"\F076C"}.mdi-decagram-outline::before{content:"\F076D"}.mdi-decimal::before{content:"\F10A1"}.mdi-decimal-comma::before{content:"\F10A2"}.mdi-decimal-comma-decrease::before{content:"\F10A3"}.mdi-decimal-comma-increase::before{content:"\F10A4"}.mdi-decimal-decrease::before{content:"\F01B6"}.mdi-decimal-increase::before{content:"\F01B5"}.mdi-delete::before{content:"\F01B4"}.mdi-delete-alert::before{content:"\F10A5"}.mdi-delete-alert-outline::before{content:"\F10A6"}.mdi-delete-circle::before{content:"\F0683"}.mdi-delete-circle-outline::before{content:"\F0B88"}.mdi-delete-clock::before{content:"\F1556"}.mdi-delete-clock-outline::before{content:"\F1557"}.mdi-delete-empty::before{content:"\F06CC"}.mdi-delete-empty-outline::before{content:"\F0E9D"}.mdi-delete-forever::before{content:"\F05E8"}.mdi-delete-forever-outline::before{content:"\F0B89"}.mdi-delete-off::before{content:"\F10A7"}.mdi-delete-off-outline::before{content:"\F10A8"}.mdi-delete-outline::before{content:"\F09E7"}.mdi-delete-restore::before{content:"\F0819"}.mdi-delete-sweep::before{content:"\F05E9"}.mdi-delete-sweep-outline::before{content:"\F0C62"}.mdi-delete-variant::before{content:"\F01B3"}.mdi-delta::before{content:"\F01C2"}.mdi-desk::before{content:"\F1239"}.mdi-desk-lamp::before{content:"\F095F"}.mdi-desk-lamp-off::before{content:"\F1B1F"}.mdi-desk-lamp-on::before{content:"\F1B20"}.mdi-deskphone::before{content:"\F01C3"}.mdi-desktop-classic::before{content:"\F07C0"}.mdi-desktop-tower::before{content:"\F01C5"}.mdi-desktop-tower-monitor::before{content:"\F0AAB"}.mdi-details::before{content:"\F01C6"}.mdi-dev-to::before{content:"\F0D6E"}.mdi-developer-board::before{content:"\F0697"}.mdi-deviantart::before{content:"\F01C7"}.mdi-devices::before{content:"\F0FB0"}.mdi-dharmachakra::before{content:"\F094B"}.mdi-diabetes::before{content:"\F1126"}.mdi-dialpad::before{content:"\F061C"}.mdi-diameter::before{content:"\F0C63"}.mdi-diameter-outline::before{content:"\F0C64"}.mdi-diameter-variant::before{content:"\F0C65"}.mdi-diamond::before{content:"\F0B8A"}.mdi-diamond-outline::before{content:"\F0B8B"}.mdi-diamond-stone::before{content:"\F01C8"}.mdi-dice-1::before{content:"\F01CA"}.mdi-dice-1-outline::before{content:"\F114A"}.mdi-dice-2::before{content:"\F01CB"}.mdi-dice-2-outline::before{content:"\F114B"}.mdi-dice-3::before{content:"\F01CC"}.mdi-dice-3-outline::before{content:"\F114C"}.mdi-dice-4::before{content:"\F01CD"}.mdi-dice-4-outline::before{content:"\F114D"}.mdi-dice-5::before{content:"\F01CE"}.mdi-dice-5-outline::before{content:"\F114E"}.mdi-dice-6::before{content:"\F01CF"}.mdi-dice-6-outline::before{content:"\F114F"}.mdi-dice-d10::before{content:"\F1153"}.mdi-dice-d10-outline::before{content:"\F076F"}.mdi-dice-d12::before{content:"\F1154"}.mdi-dice-d12-outline::before{content:"\F0867"}.mdi-dice-d20::before{content:"\F1155"}.mdi-dice-d20-outline::before{content:"\F05EA"}.mdi-dice-d4::before{content:"\F1150"}.mdi-dice-d4-outline::before{content:"\F05EB"}.mdi-dice-d6::before{content:"\F1151"}.mdi-dice-d6-outline::before{content:"\F05ED"}.mdi-dice-d8::before{content:"\F1152"}.mdi-dice-d8-outline::before{content:"\F05EC"}.mdi-dice-multiple::before{content:"\F076E"}.mdi-dice-multiple-outline::before{content:"\F1156"}.mdi-digital-ocean::before{content:"\F1237"}.mdi-dip-switch::before{content:"\F07C1"}.mdi-directions::before{content:"\F01D0"}.mdi-directions-fork::before{content:"\F0641"}.mdi-disc::before{content:"\F05EE"}.mdi-disc-alert::before{content:"\F01D1"}.mdi-disc-player::before{content:"\F0960"}.mdi-dishwasher::before{content:"\F0AAC"}.mdi-dishwasher-alert::before{content:"\F11B8"}.mdi-dishwasher-off::before{content:"\F11B9"}.mdi-disqus::before{content:"\F01D2"}.mdi-distribute-horizontal-center::before{content:"\F11C9"}.mdi-distribute-horizontal-left::before{content:"\F11C8"}.mdi-distribute-horizontal-right::before{content:"\F11CA"}.mdi-distribute-vertical-bottom::before{content:"\F11CB"}.mdi-distribute-vertical-center::before{content:"\F11CC"}.mdi-distribute-vertical-top::before{content:"\F11CD"}.mdi-diversify::before{content:"\F1877"}.mdi-diving::before{content:"\F1977"}.mdi-diving-flippers::before{content:"\F0DBF"}.mdi-diving-helmet::before{content:"\F0DC0"}.mdi-diving-scuba::before{content:"\F1B77"}.mdi-diving-scuba-flag::before{content:"\F0DC2"}.mdi-diving-scuba-mask::before{content:"\F0DC1"}.mdi-diving-scuba-tank::before{content:"\F0DC3"}.mdi-diving-scuba-tank-multiple::before{content:"\F0DC4"}.mdi-diving-snorkel::before{content:"\F0DC5"}.mdi-division::before{content:"\F01D4"}.mdi-division-box::before{content:"\F01D5"}.mdi-dlna::before{content:"\F0A41"}.mdi-dna::before{content:"\F0684"}.mdi-dns::before{content:"\F01D6"}.mdi-dns-outline::before{content:"\F0B8C"}.mdi-dock-bottom::before{content:"\F10A9"}.mdi-dock-left::before{content:"\F10AA"}.mdi-dock-right::before{content:"\F10AB"}.mdi-dock-top::before{content:"\F1513"}.mdi-dock-window::before{content:"\F10AC"}.mdi-docker::before{content:"\F0868"}.mdi-doctor::before{content:"\F0A42"}.mdi-dog::before{content:"\F0A43"}.mdi-dog-service::before{content:"\F0AAD"}.mdi-dog-side::before{content:"\F0A44"}.mdi-dog-side-off::before{content:"\F16EE"}.mdi-dolby::before{content:"\F06B3"}.mdi-dolly::before{content:"\F0E9E"}.mdi-dolphin::before{content:"\F18B4"}.mdi-domain::before{content:"\F01D7"}.mdi-domain-off::before{content:"\F0D6F"}.mdi-domain-plus::before{content:"\F10AD"}.mdi-domain-remove::before{content:"\F10AE"}.mdi-domain-switch::before{content:"\F1C2C"}.mdi-dome-light::before{content:"\F141E"}.mdi-domino-mask::before{content:"\F1023"}.mdi-donkey::before{content:"\F07C2"}.mdi-door::before{content:"\F081A"}.mdi-door-closed::before{content:"\F081B"}.mdi-door-closed-lock::before{content:"\F10AF"}.mdi-door-open::before{content:"\F081C"}.mdi-door-sliding::before{content:"\F181E"}.mdi-door-sliding-lock::before{content:"\F181F"}.mdi-door-sliding-open::before{content:"\F1820"}.mdi-doorbell::before{content:"\F12E6"}.mdi-doorbell-video::before{content:"\F0869"}.mdi-dot-net::before{content:"\F0AAE"}.mdi-dots-circle::before{content:"\F1978"}.mdi-dots-grid::before{content:"\F15FC"}.mdi-dots-hexagon::before{content:"\F15FF"}.mdi-dots-horizontal::before{content:"\F01D8"}.mdi-dots-horizontal-circle::before{content:"\F07C3"}.mdi-dots-horizontal-circle-outline::before{content:"\F0B8D"}.mdi-dots-square::before{content:"\F15FD"}.mdi-dots-triangle::before{content:"\F15FE"}.mdi-dots-vertical::before{content:"\F01D9"}.mdi-dots-vertical-circle::before{content:"\F07C4"}.mdi-dots-vertical-circle-outline::before{content:"\F0B8E"}.mdi-download::before{content:"\F01DA"}.mdi-download-box::before{content:"\F1462"}.mdi-download-box-outline::before{content:"\F1463"}.mdi-download-circle::before{content:"\F1464"}.mdi-download-circle-outline::before{content:"\F1465"}.mdi-download-lock::before{content:"\F1320"}.mdi-download-lock-outline::before{content:"\F1321"}.mdi-download-multiple::before{content:"\F09E9"}.mdi-download-network::before{content:"\F06F4"}.mdi-download-network-outline::before{content:"\F0C66"}.mdi-download-off::before{content:"\F10B0"}.mdi-download-off-outline::before{content:"\F10B1"}.mdi-download-outline::before{content:"\F0B8F"}.mdi-drag::before{content:"\F01DB"}.mdi-drag-horizontal::before{content:"\F01DC"}.mdi-drag-horizontal-variant::before{content:"\F12F0"}.mdi-drag-variant::before{content:"\F0B90"}.mdi-drag-vertical::before{content:"\F01DD"}.mdi-drag-vertical-variant::before{content:"\F12F1"}.mdi-drama-masks::before{content:"\F0D02"}.mdi-draw::before{content:"\F0F49"}.mdi-draw-pen::before{content:"\F19B9"}.mdi-drawing::before{content:"\F01DE"}.mdi-drawing-box::before{content:"\F01DF"}.mdi-dresser::before{content:"\F0F4A"}.mdi-dresser-outline::before{content:"\F0F4B"}.mdi-drone::before{content:"\F01E2"}.mdi-dropbox::before{content:"\F01E3"}.mdi-drupal::before{content:"\F01E4"}.mdi-duck::before{content:"\F01E5"}.mdi-dumbbell::before{content:"\F01E6"}.mdi-dump-truck::before{content:"\F0C67"}.mdi-ear-hearing::before{content:"\F07C5"}.mdi-ear-hearing-loop::before{content:"\F1AEE"}.mdi-ear-hearing-off::before{content:"\F0A45"}.mdi-earbuds::before{content:"\F184F"}.mdi-earbuds-off::before{content:"\F1850"}.mdi-earbuds-off-outline::before{content:"\F1851"}.mdi-earbuds-outline::before{content:"\F1852"}.mdi-earth::before{content:"\F01E7"}.mdi-earth-arrow-right::before{content:"\F1311"}.mdi-earth-box::before{content:"\F06CD"}.mdi-earth-box-minus::before{content:"\F1407"}.mdi-earth-box-off::before{content:"\F06CE"}.mdi-earth-box-plus::before{content:"\F1406"}.mdi-earth-box-remove::before{content:"\F1408"}.mdi-earth-minus::before{content:"\F1404"}.mdi-earth-off::before{content:"\F01E8"}.mdi-earth-plus::before{content:"\F1403"}.mdi-earth-remove::before{content:"\F1405"}.mdi-egg::before{content:"\F0AAF"}.mdi-egg-easter::before{content:"\F0AB0"}.mdi-egg-fried::before{content:"\F184A"}.mdi-egg-off::before{content:"\F13F0"}.mdi-egg-off-outline::before{content:"\F13F1"}.mdi-egg-outline::before{content:"\F13F2"}.mdi-eiffel-tower::before{content:"\F156B"}.mdi-eight-track::before{content:"\F09EA"}.mdi-eject::before{content:"\F01EA"}.mdi-eject-circle::before{content:"\F1B23"}.mdi-eject-circle-outline::before{content:"\F1B24"}.mdi-eject-outline::before{content:"\F0B91"}.mdi-electric-switch::before{content:"\F0E9F"}.mdi-electric-switch-closed::before{content:"\F10D9"}.mdi-electron-framework::before{content:"\F1024"}.mdi-elephant::before{content:"\F07C6"}.mdi-elevation-decline::before{content:"\F01EB"}.mdi-elevation-rise::before{content:"\F01EC"}.mdi-elevator::before{content:"\F01ED"}.mdi-elevator-down::before{content:"\F12C2"}.mdi-elevator-passenger::before{content:"\F1381"}.mdi-elevator-passenger-off::before{content:"\F1979"}.mdi-elevator-passenger-off-outline::before{content:"\F197A"}.mdi-elevator-passenger-outline::before{content:"\F197B"}.mdi-elevator-up::before{content:"\F12C1"}.mdi-ellipse::before{content:"\F0EA0"}.mdi-ellipse-outline::before{content:"\F0EA1"}.mdi-email::before{content:"\F01EE"}.mdi-email-alert::before{content:"\F06CF"}.mdi-email-alert-outline::before{content:"\F0D42"}.mdi-email-arrow-left::before{content:"\F10DA"}.mdi-email-arrow-left-outline::before{content:"\F10DB"}.mdi-email-arrow-right::before{content:"\F10DC"}.mdi-email-arrow-right-outline::before{content:"\F10DD"}.mdi-email-box::before{content:"\F0D03"}.mdi-email-check::before{content:"\F0AB1"}.mdi-email-check-outline::before{content:"\F0AB2"}.mdi-email-edit::before{content:"\F0EE3"}.mdi-email-edit-outline::before{content:"\F0EE4"}.mdi-email-fast::before{content:"\F186F"}.mdi-email-fast-outline::before{content:"\F1870"}.mdi-email-heart-outline::before{content:"\F1C5B"}.mdi-email-lock::before{content:"\F01F1"}.mdi-email-lock-outline::before{content:"\F1B61"}.mdi-email-mark-as-unread::before{content:"\F0B92"}.mdi-email-minus::before{content:"\F0EE5"}.mdi-email-minus-outline::before{content:"\F0EE6"}.mdi-email-multiple::before{content:"\F0EE7"}.mdi-email-multiple-outline::before{content:"\F0EE8"}.mdi-email-newsletter::before{content:"\F0FB1"}.mdi-email-off::before{content:"\F13E3"}.mdi-email-off-outline::before{content:"\F13E4"}.mdi-email-open::before{content:"\F01EF"}.mdi-email-open-heart-outline::before{content:"\F1C5C"}.mdi-email-open-multiple::before{content:"\F0EE9"}.mdi-email-open-multiple-outline::before{content:"\F0EEA"}.mdi-email-open-outline::before{content:"\F05EF"}.mdi-email-outline::before{content:"\F01F0"}.mdi-email-plus::before{content:"\F09EB"}.mdi-email-plus-outline::before{content:"\F09EC"}.mdi-email-remove::before{content:"\F1661"}.mdi-email-remove-outline::before{content:"\F1662"}.mdi-email-seal::before{content:"\F195B"}.mdi-email-seal-outline::before{content:"\F195C"}.mdi-email-search::before{content:"\F0961"}.mdi-email-search-outline::before{content:"\F0962"}.mdi-email-sync::before{content:"\F12C7"}.mdi-email-sync-outline::before{content:"\F12C8"}.mdi-email-variant::before{content:"\F05F0"}.mdi-ember::before{content:"\F0B30"}.mdi-emby::before{content:"\F06B4"}.mdi-emoticon::before{content:"\F0C68"}.mdi-emoticon-angry::before{content:"\F0C69"}.mdi-emoticon-angry-outline::before{content:"\F0C6A"}.mdi-emoticon-confused::before{content:"\F10DE"}.mdi-emoticon-confused-outline::before{content:"\F10DF"}.mdi-emoticon-cool::before{content:"\F0C6B"}.mdi-emoticon-cool-outline::before{content:"\F01F3"}.mdi-emoticon-cry::before{content:"\F0C6C"}.mdi-emoticon-cry-outline::before{content:"\F0C6D"}.mdi-emoticon-dead::before{content:"\F0C6E"}.mdi-emoticon-dead-outline::before{content:"\F069B"}.mdi-emoticon-devil::before{content:"\F0C6F"}.mdi-emoticon-devil-outline::before{content:"\F01F4"}.mdi-emoticon-excited::before{content:"\F0C70"}.mdi-emoticon-excited-outline::before{content:"\F069C"}.mdi-emoticon-frown::before{content:"\F0F4C"}.mdi-emoticon-frown-outline::before{content:"\F0F4D"}.mdi-emoticon-happy::before{content:"\F0C71"}.mdi-emoticon-happy-outline::before{content:"\F01F5"}.mdi-emoticon-kiss::before{content:"\F0C72"}.mdi-emoticon-kiss-outline::before{content:"\F0C73"}.mdi-emoticon-lol::before{content:"\F1214"}.mdi-emoticon-lol-outline::before{content:"\F1215"}.mdi-emoticon-neutral::before{content:"\F0C74"}.mdi-emoticon-neutral-outline::before{content:"\F01F6"}.mdi-emoticon-outline::before{content:"\F01F2"}.mdi-emoticon-poop::before{content:"\F01F7"}.mdi-emoticon-poop-outline::before{content:"\F0C75"}.mdi-emoticon-sad::before{content:"\F0C76"}.mdi-emoticon-sad-outline::before{content:"\F01F8"}.mdi-emoticon-sick::before{content:"\F157C"}.mdi-emoticon-sick-outline::before{content:"\F157D"}.mdi-emoticon-tongue::before{content:"\F01F9"}.mdi-emoticon-tongue-outline::before{content:"\F0C77"}.mdi-emoticon-wink::before{content:"\F0C78"}.mdi-emoticon-wink-outline::before{content:"\F0C79"}.mdi-engine::before{content:"\F01FA"}.mdi-engine-off::before{content:"\F0A46"}.mdi-engine-off-outline::before{content:"\F0A47"}.mdi-engine-outline::before{content:"\F01FB"}.mdi-epsilon::before{content:"\F10E0"}.mdi-equal::before{content:"\F01FC"}.mdi-equal-box::before{content:"\F01FD"}.mdi-equalizer::before{content:"\F0EA2"}.mdi-equalizer-outline::before{content:"\F0EA3"}.mdi-eraser::before{content:"\F01FE"}.mdi-eraser-variant::before{content:"\F0642"}.mdi-escalator::before{content:"\F01FF"}.mdi-escalator-box::before{content:"\F1399"}.mdi-escalator-down::before{content:"\F12C0"}.mdi-escalator-up::before{content:"\F12BF"}.mdi-eslint::before{content:"\F0C7A"}.mdi-et::before{content:"\F0AB3"}.mdi-ethereum::before{content:"\F086A"}.mdi-ethernet::before{content:"\F0200"}.mdi-ethernet-cable::before{content:"\F0201"}.mdi-ethernet-cable-off::before{content:"\F0202"}.mdi-ev-plug-ccs1::before{content:"\F1519"}.mdi-ev-plug-ccs2::before{content:"\F151A"}.mdi-ev-plug-chademo::before{content:"\F151B"}.mdi-ev-plug-tesla::before{content:"\F151C"}.mdi-ev-plug-type1::before{content:"\F151D"}.mdi-ev-plug-type2::before{content:"\F151E"}.mdi-ev-station::before{content:"\F05F1"}.mdi-evernote::before{content:"\F0204"}.mdi-excavator::before{content:"\F1025"}.mdi-exclamation::before{content:"\F0205"}.mdi-exclamation-thick::before{content:"\F1238"}.mdi-exit-run::before{content:"\F0A48"}.mdi-exit-to-app::before{content:"\F0206"}.mdi-expand-all::before{content:"\F0AB4"}.mdi-expand-all-outline::before{content:"\F0AB5"}.mdi-expansion-card::before{content:"\F08AE"}.mdi-expansion-card-variant::before{content:"\F0FB2"}.mdi-exponent::before{content:"\F0963"}.mdi-exponent-box::before{content:"\F0964"}.mdi-export::before{content:"\F0207"}.mdi-export-variant::before{content:"\F0B93"}.mdi-eye::before{content:"\F0208"}.mdi-eye-arrow-left::before{content:"\F18FD"}.mdi-eye-arrow-left-outline::before{content:"\F18FE"}.mdi-eye-arrow-right::before{content:"\F18FF"}.mdi-eye-arrow-right-outline::before{content:"\F1900"}.mdi-eye-check::before{content:"\F0D04"}.mdi-eye-check-outline::before{content:"\F0D05"}.mdi-eye-circle::before{content:"\F0B94"}.mdi-eye-circle-outline::before{content:"\F0B95"}.mdi-eye-lock::before{content:"\F1C06"}.mdi-eye-lock-open::before{content:"\F1C07"}.mdi-eye-lock-open-outline::before{content:"\F1C08"}.mdi-eye-lock-outline::before{content:"\F1C09"}.mdi-eye-minus::before{content:"\F1026"}.mdi-eye-minus-outline::before{content:"\F1027"}.mdi-eye-off::before{content:"\F0209"}.mdi-eye-off-outline::before{content:"\F06D1"}.mdi-eye-outline::before{content:"\F06D0"}.mdi-eye-plus::before{content:"\F086B"}.mdi-eye-plus-outline::before{content:"\F086C"}.mdi-eye-refresh::before{content:"\F197C"}.mdi-eye-refresh-outline::before{content:"\F197D"}.mdi-eye-remove::before{content:"\F15E3"}.mdi-eye-remove-outline::before{content:"\F15E4"}.mdi-eye-settings::before{content:"\F086D"}.mdi-eye-settings-outline::before{content:"\F086E"}.mdi-eyedropper::before{content:"\F020A"}.mdi-eyedropper-minus::before{content:"\F13DD"}.mdi-eyedropper-off::before{content:"\F13DF"}.mdi-eyedropper-plus::before{content:"\F13DC"}.mdi-eyedropper-remove::before{content:"\F13DE"}.mdi-eyedropper-variant::before{content:"\F020B"}.mdi-face-agent::before{content:"\F0D70"}.mdi-face-man::before{content:"\F0643"}.mdi-face-man-outline::before{content:"\F0B96"}.mdi-face-man-profile::before{content:"\F0644"}.mdi-face-man-shimmer::before{content:"\F15CC"}.mdi-face-man-shimmer-outline::before{content:"\F15CD"}.mdi-face-mask::before{content:"\F1586"}.mdi-face-mask-outline::before{content:"\F1587"}.mdi-face-recognition::before{content:"\F0C7B"}.mdi-face-woman::before{content:"\F1077"}.mdi-face-woman-outline::before{content:"\F1078"}.mdi-face-woman-profile::before{content:"\F1076"}.mdi-face-woman-shimmer::before{content:"\F15CE"}.mdi-face-woman-shimmer-outline::before{content:"\F15CF"}.mdi-facebook::before{content:"\F020C"}.mdi-facebook-gaming::before{content:"\F07DD"}.mdi-facebook-messenger::before{content:"\F020E"}.mdi-facebook-workplace::before{content:"\F0B31"}.mdi-factory::before{content:"\F020F"}.mdi-family-tree::before{content:"\F160E"}.mdi-fan::before{content:"\F0210"}.mdi-fan-alert::before{content:"\F146C"}.mdi-fan-auto::before{content:"\F171D"}.mdi-fan-chevron-down::before{content:"\F146D"}.mdi-fan-chevron-up::before{content:"\F146E"}.mdi-fan-clock::before{content:"\F1A3A"}.mdi-fan-minus::before{content:"\F1470"}.mdi-fan-off::before{content:"\F081D"}.mdi-fan-plus::before{content:"\F146F"}.mdi-fan-remove::before{content:"\F1471"}.mdi-fan-speed-1::before{content:"\F1472"}.mdi-fan-speed-2::before{content:"\F1473"}.mdi-fan-speed-3::before{content:"\F1474"}.mdi-fast-forward::before{content:"\F0211"}.mdi-fast-forward-10::before{content:"\F0D71"}.mdi-fast-forward-15::before{content:"\F193A"}.mdi-fast-forward-30::before{content:"\F0D06"}.mdi-fast-forward-45::before{content:"\F1B12"}.mdi-fast-forward-5::before{content:"\F11F8"}.mdi-fast-forward-60::before{content:"\F160B"}.mdi-fast-forward-outline::before{content:"\F06D2"}.mdi-faucet::before{content:"\F1B29"}.mdi-faucet-variant::before{content:"\F1B2A"}.mdi-fax::before{content:"\F0212"}.mdi-feather::before{content:"\F06D3"}.mdi-feature-search::before{content:"\F0A49"}.mdi-feature-search-outline::before{content:"\F0A4A"}.mdi-fedora::before{content:"\F08DB"}.mdi-fence::before{content:"\F179A"}.mdi-fence-electric::before{content:"\F17F6"}.mdi-fencing::before{content:"\F14C1"}.mdi-ferris-wheel::before{content:"\F0EA4"}.mdi-ferry::before{content:"\F0213"}.mdi-file::before{content:"\F0214"}.mdi-file-account::before{content:"\F073B"}.mdi-file-account-outline::before{content:"\F1028"}.mdi-file-alert::before{content:"\F0A4B"}.mdi-file-alert-outline::before{content:"\F0A4C"}.mdi-file-arrow-left-right::before{content:"\F1A93"}.mdi-file-arrow-left-right-outline::before{content:"\F1A94"}.mdi-file-arrow-up-down::before{content:"\F1A95"}.mdi-file-arrow-up-down-outline::before{content:"\F1A96"}.mdi-file-cabinet::before{content:"\F0AB6"}.mdi-file-cad::before{content:"\F0EEB"}.mdi-file-cad-box::before{content:"\F0EEC"}.mdi-file-cancel::before{content:"\F0DC6"}.mdi-file-cancel-outline::before{content:"\F0DC7"}.mdi-file-certificate::before{content:"\F1186"}.mdi-file-certificate-outline::before{content:"\F1187"}.mdi-file-chart::before{content:"\F0215"}.mdi-file-chart-check::before{content:"\F19C6"}.mdi-file-chart-check-outline::before{content:"\F19C7"}.mdi-file-chart-outline::before{content:"\F1029"}.mdi-file-check::before{content:"\F0216"}.mdi-file-check-outline::before{content:"\F0E29"}.mdi-file-clock::before{content:"\F12E1"}.mdi-file-clock-outline::before{content:"\F12E2"}.mdi-file-cloud::before{content:"\F0217"}.mdi-file-cloud-outline::before{content:"\F102A"}.mdi-file-code::before{content:"\F022E"}.mdi-file-code-outline::before{content:"\F102B"}.mdi-file-cog::before{content:"\F107B"}.mdi-file-cog-outline::before{content:"\F107C"}.mdi-file-compare::before{content:"\F08AA"}.mdi-file-delimited::before{content:"\F0218"}.mdi-file-delimited-outline::before{content:"\F0EA5"}.mdi-file-document::before{content:"\F0219"}.mdi-file-document-alert::before{content:"\F1A97"}.mdi-file-document-alert-outline::before{content:"\F1A98"}.mdi-file-document-arrow-right::before{content:"\F1C0F"}.mdi-file-document-arrow-right-outline::before{content:"\F1C10"}.mdi-file-document-check::before{content:"\F1A99"}.mdi-file-document-check-outline::before{content:"\F1A9A"}.mdi-file-document-edit::before{content:"\F0DC8"}.mdi-file-document-edit-outline::before{content:"\F0DC9"}.mdi-file-document-minus::before{content:"\F1A9B"}.mdi-file-document-minus-outline::before{content:"\F1A9C"}.mdi-file-document-multiple::before{content:"\F1517"}.mdi-file-document-multiple-outline::before{content:"\F1518"}.mdi-file-document-outline::before{content:"\F09EE"}.mdi-file-document-plus::before{content:"\F1A9D"}.mdi-file-document-plus-outline::before{content:"\F1A9E"}.mdi-file-document-refresh::before{content:"\F1C7A"}.mdi-file-document-refresh-outline::before{content:"\F1C7B"}.mdi-file-document-remove::before{content:"\F1A9F"}.mdi-file-document-remove-outline::before{content:"\F1AA0"}.mdi-file-download::before{content:"\F0965"}.mdi-file-download-outline::before{content:"\F0966"}.mdi-file-edit::before{content:"\F11E7"}.mdi-file-edit-outline::before{content:"\F11E8"}.mdi-file-excel::before{content:"\F021B"}.mdi-file-excel-box::before{content:"\F021C"}.mdi-file-excel-box-outline::before{content:"\F102C"}.mdi-file-excel-outline::before{content:"\F102D"}.mdi-file-export::before{content:"\F021D"}.mdi-file-export-outline::before{content:"\F102E"}.mdi-file-eye::before{content:"\F0DCA"}.mdi-file-eye-outline::before{content:"\F0DCB"}.mdi-file-find::before{content:"\F021E"}.mdi-file-find-outline::before{content:"\F0B97"}.mdi-file-gif-box::before{content:"\F0D78"}.mdi-file-hidden::before{content:"\F0613"}.mdi-file-image::before{content:"\F021F"}.mdi-file-image-marker::before{content:"\F1772"}.mdi-file-image-marker-outline::before{content:"\F1773"}.mdi-file-image-minus::before{content:"\F193B"}.mdi-file-image-minus-outline::before{content:"\F193C"}.mdi-file-image-outline::before{content:"\F0EB0"}.mdi-file-image-plus::before{content:"\F193D"}.mdi-file-image-plus-outline::before{content:"\F193E"}.mdi-file-image-remove::before{content:"\F193F"}.mdi-file-image-remove-outline::before{content:"\F1940"}.mdi-file-import::before{content:"\F0220"}.mdi-file-import-outline::before{content:"\F102F"}.mdi-file-jpg-box::before{content:"\F0225"}.mdi-file-key::before{content:"\F1184"}.mdi-file-key-outline::before{content:"\F1185"}.mdi-file-link::before{content:"\F1177"}.mdi-file-link-outline::before{content:"\F1178"}.mdi-file-lock::before{content:"\F0221"}.mdi-file-lock-open::before{content:"\F19C8"}.mdi-file-lock-open-outline::before{content:"\F19C9"}.mdi-file-lock-outline::before{content:"\F1030"}.mdi-file-marker::before{content:"\F1774"}.mdi-file-marker-outline::before{content:"\F1775"}.mdi-file-minus::before{content:"\F1AA1"}.mdi-file-minus-outline::before{content:"\F1AA2"}.mdi-file-move::before{content:"\F0AB9"}.mdi-file-move-outline::before{content:"\F1031"}.mdi-file-multiple::before{content:"\F0222"}.mdi-file-multiple-outline::before{content:"\F1032"}.mdi-file-music::before{content:"\F0223"}.mdi-file-music-outline::before{content:"\F0E2A"}.mdi-file-outline::before{content:"\F0224"}.mdi-file-pdf-box::before{content:"\F0226"}.mdi-file-percent::before{content:"\F081E"}.mdi-file-percent-outline::before{content:"\F1033"}.mdi-file-phone::before{content:"\F1179"}.mdi-file-phone-outline::before{content:"\F117A"}.mdi-file-plus::before{content:"\F0752"}.mdi-file-plus-outline::before{content:"\F0EED"}.mdi-file-png-box::before{content:"\F0E2D"}.mdi-file-powerpoint::before{content:"\F0227"}.mdi-file-powerpoint-box::before{content:"\F0228"}.mdi-file-powerpoint-box-outline::before{content:"\F1034"}.mdi-file-powerpoint-outline::before{content:"\F1035"}.mdi-file-presentation-box::before{content:"\F0229"}.mdi-file-question::before{content:"\F086F"}.mdi-file-question-outline::before{content:"\F1036"}.mdi-file-refresh::before{content:"\F0918"}.mdi-file-refresh-outline::before{content:"\F0541"}.mdi-file-remove::before{content:"\F0B98"}.mdi-file-remove-outline::before{content:"\F1037"}.mdi-file-replace::before{content:"\F0B32"}.mdi-file-replace-outline::before{content:"\F0B33"}.mdi-file-restore::before{content:"\F0670"}.mdi-file-restore-outline::before{content:"\F1038"}.mdi-file-rotate-left::before{content:"\F1A3B"}.mdi-file-rotate-left-outline::before{content:"\F1A3C"}.mdi-file-rotate-right::before{content:"\F1A3D"}.mdi-file-rotate-right-outline::before{content:"\F1A3E"}.mdi-file-search::before{content:"\F0C7C"}.mdi-file-search-outline::before{content:"\F0C7D"}.mdi-file-send::before{content:"\F022A"}.mdi-file-send-outline::before{content:"\F1039"}.mdi-file-settings::before{content:"\F1079"}.mdi-file-settings-outline::before{content:"\F107A"}.mdi-file-sign::before{content:"\F19C3"}.mdi-file-star::before{content:"\F103A"}.mdi-file-star-four-points::before{content:"\F1C2D"}.mdi-file-star-four-points-outline::before{content:"\F1C2E"}.mdi-file-star-outline::before{content:"\F103B"}.mdi-file-swap::before{content:"\F0FB4"}.mdi-file-swap-outline::before{content:"\F0FB5"}.mdi-file-sync::before{content:"\F1216"}.mdi-file-sync-outline::before{content:"\F1217"}.mdi-file-table::before{content:"\F0C7E"}.mdi-file-table-box::before{content:"\F10E1"}.mdi-file-table-box-multiple::before{content:"\F10E2"}.mdi-file-table-box-multiple-outline::before{content:"\F10E3"}.mdi-file-table-box-outline::before{content:"\F10E4"}.mdi-file-table-outline::before{content:"\F0C7F"}.mdi-file-tree::before{content:"\F0645"}.mdi-file-tree-outline::before{content:"\F13D2"}.mdi-file-undo::before{content:"\F08DC"}.mdi-file-undo-outline::before{content:"\F103C"}.mdi-file-upload::before{content:"\F0A4D"}.mdi-file-upload-outline::before{content:"\F0A4E"}.mdi-file-video::before{content:"\F022B"}.mdi-file-video-outline::before{content:"\F0E2C"}.mdi-file-word::before{content:"\F022C"}.mdi-file-word-box::before{content:"\F022D"}.mdi-file-word-box-outline::before{content:"\F103D"}.mdi-file-word-outline::before{content:"\F103E"}.mdi-file-xml-box::before{content:"\F1B4B"}.mdi-film::before{content:"\F022F"}.mdi-filmstrip::before{content:"\F0230"}.mdi-filmstrip-box::before{content:"\F0332"}.mdi-filmstrip-box-multiple::before{content:"\F0D18"}.mdi-filmstrip-off::before{content:"\F0231"}.mdi-filter::before{content:"\F0232"}.mdi-filter-check::before{content:"\F18EC"}.mdi-filter-check-outline::before{content:"\F18ED"}.mdi-filter-cog::before{content:"\F1AA3"}.mdi-filter-cog-outline::before{content:"\F1AA4"}.mdi-filter-menu::before{content:"\F10E5"}.mdi-filter-menu-outline::before{content:"\F10E6"}.mdi-filter-minus::before{content:"\F0EEE"}.mdi-filter-minus-outline::before{content:"\F0EEF"}.mdi-filter-multiple::before{content:"\F1A3F"}.mdi-filter-multiple-outline::before{content:"\F1A40"}.mdi-filter-off::before{content:"\F14EF"}.mdi-filter-off-outline::before{content:"\F14F0"}.mdi-filter-outline::before{content:"\F0233"}.mdi-filter-plus::before{content:"\F0EF0"}.mdi-filter-plus-outline::before{content:"\F0EF1"}.mdi-filter-remove::before{content:"\F0234"}.mdi-filter-remove-outline::before{content:"\F0235"}.mdi-filter-settings::before{content:"\F1AA5"}.mdi-filter-settings-outline::before{content:"\F1AA6"}.mdi-filter-variant::before{content:"\F0236"}.mdi-filter-variant-minus::before{content:"\F1112"}.mdi-filter-variant-plus::before{content:"\F1113"}.mdi-filter-variant-remove::before{content:"\F103F"}.mdi-finance::before{content:"\F081F"}.mdi-find-replace::before{content:"\F06D4"}.mdi-fingerprint::before{content:"\F0237"}.mdi-fingerprint-off::before{content:"\F0EB1"}.mdi-fire::before{content:"\F0238"}.mdi-fire-alert::before{content:"\F15D7"}.mdi-fire-circle::before{content:"\F1807"}.mdi-fire-extinguisher::before{content:"\F0EF2"}.mdi-fire-hydrant::before{content:"\F1137"}.mdi-fire-hydrant-alert::before{content:"\F1138"}.mdi-fire-hydrant-off::before{content:"\F1139"}.mdi-fire-off::before{content:"\F1722"}.mdi-fire-truck::before{content:"\F08AB"}.mdi-firebase::before{content:"\F0967"}.mdi-firefox::before{content:"\F0239"}.mdi-fireplace::before{content:"\F0E2E"}.mdi-fireplace-off::before{content:"\F0E2F"}.mdi-firewire::before{content:"\F05BE"}.mdi-firework::before{content:"\F0E30"}.mdi-firework-off::before{content:"\F1723"}.mdi-fish::before{content:"\F023A"}.mdi-fish-off::before{content:"\F13F3"}.mdi-fishbowl::before{content:"\F0EF3"}.mdi-fishbowl-outline::before{content:"\F0EF4"}.mdi-fit-to-page::before{content:"\F0EF5"}.mdi-fit-to-page-outline::before{content:"\F0EF6"}.mdi-fit-to-screen::before{content:"\F18F4"}.mdi-fit-to-screen-outline::before{content:"\F18F5"}.mdi-flag::before{content:"\F023B"}.mdi-flag-checkered::before{content:"\F023C"}.mdi-flag-minus::before{content:"\F0B99"}.mdi-flag-minus-outline::before{content:"\F10B2"}.mdi-flag-off::before{content:"\F18EE"}.mdi-flag-off-outline::before{content:"\F18EF"}.mdi-flag-outline::before{content:"\F023D"}.mdi-flag-plus::before{content:"\F0B9A"}.mdi-flag-plus-outline::before{content:"\F10B3"}.mdi-flag-remove::before{content:"\F0B9B"}.mdi-flag-remove-outline::before{content:"\F10B4"}.mdi-flag-triangle::before{content:"\F023F"}.mdi-flag-variant::before{content:"\F0240"}.mdi-flag-variant-minus::before{content:"\F1BB4"}.mdi-flag-variant-minus-outline::before{content:"\F1BB5"}.mdi-flag-variant-off::before{content:"\F1BB0"}.mdi-flag-variant-off-outline::before{content:"\F1BB1"}.mdi-flag-variant-outline::before{content:"\F023E"}.mdi-flag-variant-plus::before{content:"\F1BB2"}.mdi-flag-variant-plus-outline::before{content:"\F1BB3"}.mdi-flag-variant-remove::before{content:"\F1BB6"}.mdi-flag-variant-remove-outline::before{content:"\F1BB7"}.mdi-flare::before{content:"\F0D72"}.mdi-flash::before{content:"\F0241"}.mdi-flash-alert::before{content:"\F0EF7"}.mdi-flash-alert-outline::before{content:"\F0EF8"}.mdi-flash-auto::before{content:"\F0242"}.mdi-flash-off::before{content:"\F0243"}.mdi-flash-off-outline::before{content:"\F1B45"}.mdi-flash-outline::before{content:"\F06D5"}.mdi-flash-red-eye::before{content:"\F067B"}.mdi-flash-triangle::before{content:"\F1B1D"}.mdi-flash-triangle-outline::before{content:"\F1B1E"}.mdi-flashlight::before{content:"\F0244"}.mdi-flashlight-off::before{content:"\F0245"}.mdi-flask::before{content:"\F0093"}.mdi-flask-empty::before{content:"\F0094"}.mdi-flask-empty-minus::before{content:"\F123A"}.mdi-flask-empty-minus-outline::before{content:"\F123B"}.mdi-flask-empty-off::before{content:"\F13F4"}.mdi-flask-empty-off-outline::before{content:"\F13F5"}.mdi-flask-empty-outline::before{content:"\F0095"}.mdi-flask-empty-plus::before{content:"\F123C"}.mdi-flask-empty-plus-outline::before{content:"\F123D"}.mdi-flask-empty-remove::before{content:"\F123E"}.mdi-flask-empty-remove-outline::before{content:"\F123F"}.mdi-flask-minus::before{content:"\F1240"}.mdi-flask-minus-outline::before{content:"\F1241"}.mdi-flask-off::before{content:"\F13F6"}.mdi-flask-off-outline::before{content:"\F13F7"}.mdi-flask-outline::before{content:"\F0096"}.mdi-flask-plus::before{content:"\F1242"}.mdi-flask-plus-outline::before{content:"\F1243"}.mdi-flask-remove::before{content:"\F1244"}.mdi-flask-remove-outline::before{content:"\F1245"}.mdi-flask-round-bottom::before{content:"\F124B"}.mdi-flask-round-bottom-empty::before{content:"\F124C"}.mdi-flask-round-bottom-empty-outline::before{content:"\F124D"}.mdi-flask-round-bottom-outline::before{content:"\F124E"}.mdi-fleur-de-lis::before{content:"\F1303"}.mdi-flip-horizontal::before{content:"\F10E7"}.mdi-flip-to-back::before{content:"\F0247"}.mdi-flip-to-front::before{content:"\F0248"}.mdi-flip-vertical::before{content:"\F10E8"}.mdi-floor-lamp::before{content:"\F08DD"}.mdi-floor-lamp-dual::before{content:"\F1040"}.mdi-floor-lamp-dual-outline::before{content:"\F17CE"}.mdi-floor-lamp-outline::before{content:"\F17C8"}.mdi-floor-lamp-torchiere::before{content:"\F1747"}.mdi-floor-lamp-torchiere-outline::before{content:"\F17D6"}.mdi-floor-lamp-torchiere-variant::before{content:"\F1041"}.mdi-floor-lamp-torchiere-variant-outline::before{content:"\F17CF"}.mdi-floor-plan::before{content:"\F0821"}.mdi-floppy::before{content:"\F0249"}.mdi-floppy-variant::before{content:"\F09EF"}.mdi-flower::before{content:"\F024A"}.mdi-flower-outline::before{content:"\F09F0"}.mdi-flower-pollen::before{content:"\F1885"}.mdi-flower-pollen-outline::before{content:"\F1886"}.mdi-flower-poppy::before{content:"\F0D08"}.mdi-flower-tulip::before{content:"\F09F1"}.mdi-flower-tulip-outline::before{content:"\F09F2"}.mdi-focus-auto::before{content:"\F0F4E"}.mdi-focus-field::before{content:"\F0F4F"}.mdi-focus-field-horizontal::before{content:"\F0F50"}.mdi-focus-field-vertical::before{content:"\F0F51"}.mdi-folder::before{content:"\F024B"}.mdi-folder-account::before{content:"\F024C"}.mdi-folder-account-outline::before{content:"\F0B9C"}.mdi-folder-alert::before{content:"\F0DCC"}.mdi-folder-alert-outline::before{content:"\F0DCD"}.mdi-folder-arrow-down::before{content:"\F19E8"}.mdi-folder-arrow-down-outline::before{content:"\F19E9"}.mdi-folder-arrow-left::before{content:"\F19EA"}.mdi-folder-arrow-left-outline::before{content:"\F19EB"}.mdi-folder-arrow-left-right::before{content:"\F19EC"}.mdi-folder-arrow-left-right-outline::before{content:"\F19ED"}.mdi-folder-arrow-right::before{content:"\F19EE"}.mdi-folder-arrow-right-outline::before{content:"\F19EF"}.mdi-folder-arrow-up::before{content:"\F19F0"}.mdi-folder-arrow-up-down::before{content:"\F19F1"}.mdi-folder-arrow-up-down-outline::before{content:"\F19F2"}.mdi-folder-arrow-up-outline::before{content:"\F19F3"}.mdi-folder-cancel::before{content:"\F19F4"}.mdi-folder-cancel-outline::before{content:"\F19F5"}.mdi-folder-check::before{content:"\F197E"}.mdi-folder-check-outline::before{content:"\F197F"}.mdi-folder-clock::before{content:"\F0ABA"}.mdi-folder-clock-outline::before{content:"\F0ABB"}.mdi-folder-cog::before{content:"\F107F"}.mdi-folder-cog-outline::before{content:"\F1080"}.mdi-folder-download::before{content:"\F024D"}.mdi-folder-download-outline::before{content:"\F10E9"}.mdi-folder-edit::before{content:"\F08DE"}.mdi-folder-edit-outline::before{content:"\F0DCE"}.mdi-folder-eye::before{content:"\F178A"}.mdi-folder-eye-outline::before{content:"\F178B"}.mdi-folder-file::before{content:"\F19F6"}.mdi-folder-file-outline::before{content:"\F19F7"}.mdi-folder-google-drive::before{content:"\F024E"}.mdi-folder-heart::before{content:"\F10EA"}.mdi-folder-heart-outline::before{content:"\F10EB"}.mdi-folder-hidden::before{content:"\F179E"}.mdi-folder-home::before{content:"\F10B5"}.mdi-folder-home-outline::before{content:"\F10B6"}.mdi-folder-image::before{content:"\F024F"}.mdi-folder-information::before{content:"\F10B7"}.mdi-folder-information-outline::before{content:"\F10B8"}.mdi-folder-key::before{content:"\F08AC"}.mdi-folder-key-network::before{content:"\F08AD"}.mdi-folder-key-network-outline::before{content:"\F0C80"}.mdi-folder-key-outline::before{content:"\F10EC"}.mdi-folder-lock::before{content:"\F0250"}.mdi-folder-lock-open::before{content:"\F0251"}.mdi-folder-lock-open-outline::before{content:"\F1AA7"}.mdi-folder-lock-outline::before{content:"\F1AA8"}.mdi-folder-marker::before{content:"\F126D"}.mdi-folder-marker-outline::before{content:"\F126E"}.mdi-folder-minus::before{content:"\F1B49"}.mdi-folder-minus-outline::before{content:"\F1B4A"}.mdi-folder-move::before{content:"\F0252"}.mdi-folder-move-outline::before{content:"\F1246"}.mdi-folder-multiple::before{content:"\F0253"}.mdi-folder-multiple-image::before{content:"\F0254"}.mdi-folder-multiple-outline::before{content:"\F0255"}.mdi-folder-multiple-plus::before{content:"\F147E"}.mdi-folder-multiple-plus-outline::before{content:"\F147F"}.mdi-folder-music::before{content:"\F1359"}.mdi-folder-music-outline::before{content:"\F135A"}.mdi-folder-network::before{content:"\F0870"}.mdi-folder-network-outline::before{content:"\F0C81"}.mdi-folder-off::before{content:"\F19F8"}.mdi-folder-off-outline::before{content:"\F19F9"}.mdi-folder-open::before{content:"\F0770"}.mdi-folder-open-outline::before{content:"\F0DCF"}.mdi-folder-outline::before{content:"\F0256"}.mdi-folder-play::before{content:"\F19FA"}.mdi-folder-play-outline::before{content:"\F19FB"}.mdi-folder-plus::before{content:"\F0257"}.mdi-folder-plus-outline::before{content:"\F0B9D"}.mdi-folder-pound::before{content:"\F0D09"}.mdi-folder-pound-outline::before{content:"\F0D0A"}.mdi-folder-question::before{content:"\F19CA"}.mdi-folder-question-outline::before{content:"\F19CB"}.mdi-folder-refresh::before{content:"\F0749"}.mdi-folder-refresh-outline::before{content:"\F0542"}.mdi-folder-remove::before{content:"\F0258"}.mdi-folder-remove-outline::before{content:"\F0B9E"}.mdi-folder-search::before{content:"\F0968"}.mdi-folder-search-outline::before{content:"\F0969"}.mdi-folder-settings::before{content:"\F107D"}.mdi-folder-settings-outline::before{content:"\F107E"}.mdi-folder-star::before{content:"\F069D"}.mdi-folder-star-multiple::before{content:"\F13D3"}.mdi-folder-star-multiple-outline::before{content:"\F13D4"}.mdi-folder-star-outline::before{content:"\F0B9F"}.mdi-folder-swap::before{content:"\F0FB6"}.mdi-folder-swap-outline::before{content:"\F0FB7"}.mdi-folder-sync::before{content:"\F0D0B"}.mdi-folder-sync-outline::before{content:"\F0D0C"}.mdi-folder-table::before{content:"\F12E3"}.mdi-folder-table-outline::before{content:"\F12E4"}.mdi-folder-text::before{content:"\F0C82"}.mdi-folder-text-outline::before{content:"\F0C83"}.mdi-folder-upload::before{content:"\F0259"}.mdi-folder-upload-outline::before{content:"\F10ED"}.mdi-folder-wrench::before{content:"\F19FC"}.mdi-folder-wrench-outline::before{content:"\F19FD"}.mdi-folder-zip::before{content:"\F06EB"}.mdi-folder-zip-outline::before{content:"\F07B9"}.mdi-font-awesome::before{content:"\F003A"}.mdi-food::before{content:"\F025A"}.mdi-food-apple::before{content:"\F025B"}.mdi-food-apple-outline::before{content:"\F0C84"}.mdi-food-croissant::before{content:"\F07C8"}.mdi-food-drumstick::before{content:"\F141F"}.mdi-food-drumstick-off::before{content:"\F1468"}.mdi-food-drumstick-off-outline::before{content:"\F1469"}.mdi-food-drumstick-outline::before{content:"\F1420"}.mdi-food-fork-drink::before{content:"\F05F2"}.mdi-food-halal::before{content:"\F1572"}.mdi-food-hot-dog::before{content:"\F184B"}.mdi-food-kosher::before{content:"\F1573"}.mdi-food-off::before{content:"\F05F3"}.mdi-food-off-outline::before{content:"\F1915"}.mdi-food-outline::before{content:"\F1916"}.mdi-food-steak::before{content:"\F146A"}.mdi-food-steak-off::before{content:"\F146B"}.mdi-food-takeout-box::before{content:"\F1836"}.mdi-food-takeout-box-outline::before{content:"\F1837"}.mdi-food-turkey::before{content:"\F171C"}.mdi-food-variant::before{content:"\F025C"}.mdi-food-variant-off::before{content:"\F13E5"}.mdi-foot-print::before{content:"\F0F52"}.mdi-football::before{content:"\F025D"}.mdi-football-australian::before{content:"\F025E"}.mdi-football-helmet::before{content:"\F025F"}.mdi-forest::before{content:"\F1897"}.mdi-forest-outline::before{content:"\F1C63"}.mdi-forklift::before{content:"\F07C9"}.mdi-form-dropdown::before{content:"\F1400"}.mdi-form-select::before{content:"\F1401"}.mdi-form-textarea::before{content:"\F1095"}.mdi-form-textbox::before{content:"\F060E"}.mdi-form-textbox-lock::before{content:"\F135D"}.mdi-form-textbox-password::before{content:"\F07F5"}.mdi-format-align-bottom::before{content:"\F0753"}.mdi-format-align-center::before{content:"\F0260"}.mdi-format-align-justify::before{content:"\F0261"}.mdi-format-align-left::before{content:"\F0262"}.mdi-format-align-middle::before{content:"\F0754"}.mdi-format-align-right::before{content:"\F0263"}.mdi-format-align-top::before{content:"\F0755"}.mdi-format-annotation-minus::before{content:"\F0ABC"}.mdi-format-annotation-plus::before{content:"\F0646"}.mdi-format-bold::before{content:"\F0264"}.mdi-format-clear::before{content:"\F0265"}.mdi-format-color-fill::before{content:"\F0266"}.mdi-format-color-highlight::before{content:"\F0E31"}.mdi-format-color-marker-cancel::before{content:"\F1313"}.mdi-format-color-text::before{content:"\F069E"}.mdi-format-columns::before{content:"\F08DF"}.mdi-format-float-center::before{content:"\F0267"}.mdi-format-float-left::before{content:"\F0268"}.mdi-format-float-none::before{content:"\F0269"}.mdi-format-float-right::before{content:"\F026A"}.mdi-format-font::before{content:"\F06D6"}.mdi-format-font-size-decrease::before{content:"\F09F3"}.mdi-format-font-size-increase::before{content:"\F09F4"}.mdi-format-header-1::before{content:"\F026B"}.mdi-format-header-2::before{content:"\F026C"}.mdi-format-header-3::before{content:"\F026D"}.mdi-format-header-4::before{content:"\F026E"}.mdi-format-header-5::before{content:"\F026F"}.mdi-format-header-6::before{content:"\F0270"}.mdi-format-header-decrease::before{content:"\F0271"}.mdi-format-header-equal::before{content:"\F0272"}.mdi-format-header-increase::before{content:"\F0273"}.mdi-format-header-pound::before{content:"\F0274"}.mdi-format-horizontal-align-center::before{content:"\F061E"}.mdi-format-horizontal-align-left::before{content:"\F061F"}.mdi-format-horizontal-align-right::before{content:"\F0620"}.mdi-format-indent-decrease::before{content:"\F0275"}.mdi-format-indent-increase::before{content:"\F0276"}.mdi-format-italic::before{content:"\F0277"}.mdi-format-letter-case::before{content:"\F0B34"}.mdi-format-letter-case-lower::before{content:"\F0B35"}.mdi-format-letter-case-upper::before{content:"\F0B36"}.mdi-format-letter-ends-with::before{content:"\F0FB8"}.mdi-format-letter-matches::before{content:"\F0FB9"}.mdi-format-letter-spacing::before{content:"\F1956"}.mdi-format-letter-spacing-variant::before{content:"\F1AFB"}.mdi-format-letter-starts-with::before{content:"\F0FBA"}.mdi-format-line-height::before{content:"\F1AFC"}.mdi-format-line-spacing::before{content:"\F0278"}.mdi-format-line-style::before{content:"\F05C8"}.mdi-format-line-weight::before{content:"\F05C9"}.mdi-format-list-bulleted::before{content:"\F0279"}.mdi-format-list-bulleted-square::before{content:"\F0DD0"}.mdi-format-list-bulleted-triangle::before{content:"\F0EB2"}.mdi-format-list-bulleted-type::before{content:"\F027A"}.mdi-format-list-checkbox::before{content:"\F096A"}.mdi-format-list-checks::before{content:"\F0756"}.mdi-format-list-group::before{content:"\F1860"}.mdi-format-list-group-plus::before{content:"\F1B56"}.mdi-format-list-numbered::before{content:"\F027B"}.mdi-format-list-numbered-rtl::before{content:"\F0D0D"}.mdi-format-list-text::before{content:"\F126F"}.mdi-format-overline::before{content:"\F0EB3"}.mdi-format-page-break::before{content:"\F06D7"}.mdi-format-page-split::before{content:"\F1917"}.mdi-format-paint::before{content:"\F027C"}.mdi-format-paragraph::before{content:"\F027D"}.mdi-format-paragraph-spacing::before{content:"\F1AFD"}.mdi-format-pilcrow::before{content:"\F06D8"}.mdi-format-pilcrow-arrow-left::before{content:"\F0286"}.mdi-format-pilcrow-arrow-right::before{content:"\F0285"}.mdi-format-quote-close::before{content:"\F027E"}.mdi-format-quote-close-outline::before{content:"\F11A8"}.mdi-format-quote-open::before{content:"\F0757"}.mdi-format-quote-open-outline::before{content:"\F11A7"}.mdi-format-rotate-90::before{content:"\F06AA"}.mdi-format-section::before{content:"\F069F"}.mdi-format-size::before{content:"\F027F"}.mdi-format-strikethrough::before{content:"\F0280"}.mdi-format-strikethrough-variant::before{content:"\F0281"}.mdi-format-subscript::before{content:"\F0282"}.mdi-format-superscript::before{content:"\F0283"}.mdi-format-text::before{content:"\F0284"}.mdi-format-text-rotation-angle-down::before{content:"\F0FBB"}.mdi-format-text-rotation-angle-up::before{content:"\F0FBC"}.mdi-format-text-rotation-down::before{content:"\F0D73"}.mdi-format-text-rotation-down-vertical::before{content:"\F0FBD"}.mdi-format-text-rotation-none::before{content:"\F0D74"}.mdi-format-text-rotation-up::before{content:"\F0FBE"}.mdi-format-text-rotation-vertical::before{content:"\F0FBF"}.mdi-format-text-variant::before{content:"\F0E32"}.mdi-format-text-variant-outline::before{content:"\F150F"}.mdi-format-text-wrapping-clip::before{content:"\F0D0E"}.mdi-format-text-wrapping-overflow::before{content:"\F0D0F"}.mdi-format-text-wrapping-wrap::before{content:"\F0D10"}.mdi-format-textbox::before{content:"\F0D11"}.mdi-format-title::before{content:"\F05F4"}.mdi-format-underline::before{content:"\F0287"}.mdi-format-underline-wavy::before{content:"\F18E9"}.mdi-format-vertical-align-bottom::before{content:"\F0621"}.mdi-format-vertical-align-center::before{content:"\F0622"}.mdi-format-vertical-align-top::before{content:"\F0623"}.mdi-format-wrap-inline::before{content:"\F0288"}.mdi-format-wrap-square::before{content:"\F0289"}.mdi-format-wrap-tight::before{content:"\F028A"}.mdi-format-wrap-top-bottom::before{content:"\F028B"}.mdi-forum::before{content:"\F028C"}.mdi-forum-minus::before{content:"\F1AA9"}.mdi-forum-minus-outline::before{content:"\F1AAA"}.mdi-forum-outline::before{content:"\F0822"}.mdi-forum-plus::before{content:"\F1AAB"}.mdi-forum-plus-outline::before{content:"\F1AAC"}.mdi-forum-remove::before{content:"\F1AAD"}.mdi-forum-remove-outline::before{content:"\F1AAE"}.mdi-forward::before{content:"\F028D"}.mdi-forwardburger::before{content:"\F0D75"}.mdi-fountain::before{content:"\F096B"}.mdi-fountain-pen::before{content:"\F0D12"}.mdi-fountain-pen-tip::before{content:"\F0D13"}.mdi-fraction-one-half::before{content:"\F1992"}.mdi-freebsd::before{content:"\F08E0"}.mdi-french-fries::before{content:"\F1957"}.mdi-frequently-asked-questions::before{content:"\F0EB4"}.mdi-fridge::before{content:"\F0290"}.mdi-fridge-alert::before{content:"\F11B1"}.mdi-fridge-alert-outline::before{content:"\F11B2"}.mdi-fridge-bottom::before{content:"\F0292"}.mdi-fridge-industrial::before{content:"\F15EE"}.mdi-fridge-industrial-alert::before{content:"\F15EF"}.mdi-fridge-industrial-alert-outline::before{content:"\F15F0"}.mdi-fridge-industrial-off::before{content:"\F15F1"}.mdi-fridge-industrial-off-outline::before{content:"\F15F2"}.mdi-fridge-industrial-outline::before{content:"\F15F3"}.mdi-fridge-off::before{content:"\F11AF"}.mdi-fridge-off-outline::before{content:"\F11B0"}.mdi-fridge-outline::before{content:"\F028F"}.mdi-fridge-top::before{content:"\F0291"}.mdi-fridge-variant::before{content:"\F15F4"}.mdi-fridge-variant-alert::before{content:"\F15F5"}.mdi-fridge-variant-alert-outline::before{content:"\F15F6"}.mdi-fridge-variant-off::before{content:"\F15F7"}.mdi-fridge-variant-off-outline::before{content:"\F15F8"}.mdi-fridge-variant-outline::before{content:"\F15F9"}.mdi-fruit-cherries::before{content:"\F1042"}.mdi-fruit-cherries-off::before{content:"\F13F8"}.mdi-fruit-citrus::before{content:"\F1043"}.mdi-fruit-citrus-off::before{content:"\F13F9"}.mdi-fruit-grapes::before{content:"\F1044"}.mdi-fruit-grapes-outline::before{content:"\F1045"}.mdi-fruit-pear::before{content:"\F1A0E"}.mdi-fruit-pineapple::before{content:"\F1046"}.mdi-fruit-watermelon::before{content:"\F1047"}.mdi-fuel::before{content:"\F07CA"}.mdi-fuel-cell::before{content:"\F18B5"}.mdi-fullscreen::before{content:"\F0293"}.mdi-fullscreen-exit::before{content:"\F0294"}.mdi-function::before{content:"\F0295"}.mdi-function-variant::before{content:"\F0871"}.mdi-furigana-horizontal::before{content:"\F1081"}.mdi-furigana-vertical::before{content:"\F1082"}.mdi-fuse::before{content:"\F0C85"}.mdi-fuse-alert::before{content:"\F142D"}.mdi-fuse-blade::before{content:"\F0C86"}.mdi-fuse-off::before{content:"\F142C"}.mdi-gamepad::before{content:"\F0296"}.mdi-gamepad-circle::before{content:"\F0E33"}.mdi-gamepad-circle-down::before{content:"\F0E34"}.mdi-gamepad-circle-left::before{content:"\F0E35"}.mdi-gamepad-circle-outline::before{content:"\F0E36"}.mdi-gamepad-circle-right::before{content:"\F0E37"}.mdi-gamepad-circle-up::before{content:"\F0E38"}.mdi-gamepad-down::before{content:"\F0E39"}.mdi-gamepad-left::before{content:"\F0E3A"}.mdi-gamepad-outline::before{content:"\F1919"}.mdi-gamepad-right::before{content:"\F0E3B"}.mdi-gamepad-round::before{content:"\F0E3C"}.mdi-gamepad-round-down::before{content:"\F0E3D"}.mdi-gamepad-round-left::before{content:"\F0E3E"}.mdi-gamepad-round-outline::before{content:"\F0E3F"}.mdi-gamepad-round-right::before{content:"\F0E40"}.mdi-gamepad-round-up::before{content:"\F0E41"}.mdi-gamepad-square::before{content:"\F0EB5"}.mdi-gamepad-square-outline::before{content:"\F0EB6"}.mdi-gamepad-up::before{content:"\F0E42"}.mdi-gamepad-variant::before{content:"\F0297"}.mdi-gamepad-variant-outline::before{content:"\F0EB7"}.mdi-gamma::before{content:"\F10EE"}.mdi-gantry-crane::before{content:"\F0DD1"}.mdi-garage::before{content:"\F06D9"}.mdi-garage-alert::before{content:"\F0872"}.mdi-garage-alert-variant::before{content:"\F12D5"}.mdi-garage-lock::before{content:"\F17FB"}.mdi-garage-open::before{content:"\F06DA"}.mdi-garage-open-variant::before{content:"\F12D4"}.mdi-garage-variant::before{content:"\F12D3"}.mdi-garage-variant-lock::before{content:"\F17FC"}.mdi-gas-burner::before{content:"\F1A1B"}.mdi-gas-cylinder::before{content:"\F0647"}.mdi-gas-station::before{content:"\F0298"}.mdi-gas-station-off::before{content:"\F1409"}.mdi-gas-station-off-outline::before{content:"\F140A"}.mdi-gas-station-outline::before{content:"\F0EB8"}.mdi-gate::before{content:"\F0299"}.mdi-gate-alert::before{content:"\F17F8"}.mdi-gate-and::before{content:"\F08E1"}.mdi-gate-arrow-left::before{content:"\F17F7"}.mdi-gate-arrow-right::before{content:"\F1169"}.mdi-gate-buffer::before{content:"\F1AFE"}.mdi-gate-nand::before{content:"\F08E2"}.mdi-gate-nor::before{content:"\F08E3"}.mdi-gate-not::before{content:"\F08E4"}.mdi-gate-open::before{content:"\F116A"}.mdi-gate-or::before{content:"\F08E5"}.mdi-gate-xnor::before{content:"\F08E6"}.mdi-gate-xor::before{content:"\F08E7"}.mdi-gatsby::before{content:"\F0E43"}.mdi-gauge::before{content:"\F029A"}.mdi-gauge-empty::before{content:"\F0873"}.mdi-gauge-full::before{content:"\F0874"}.mdi-gauge-low::before{content:"\F0875"}.mdi-gavel::before{content:"\F029B"}.mdi-gender-female::before{content:"\F029C"}.mdi-gender-male::before{content:"\F029D"}.mdi-gender-male-female::before{content:"\F029E"}.mdi-gender-male-female-variant::before{content:"\F113F"}.mdi-gender-non-binary::before{content:"\F1140"}.mdi-gender-transgender::before{content:"\F029F"}.mdi-gentoo::before{content:"\F08E8"}.mdi-gesture::before{content:"\F07CB"}.mdi-gesture-double-tap::before{content:"\F073C"}.mdi-gesture-pinch::before{content:"\F0ABD"}.mdi-gesture-spread::before{content:"\F0ABE"}.mdi-gesture-swipe::before{content:"\F0D76"}.mdi-gesture-swipe-down::before{content:"\F073D"}.mdi-gesture-swipe-horizontal::before{content:"\F0ABF"}.mdi-gesture-swipe-left::before{content:"\F073E"}.mdi-gesture-swipe-right::before{content:"\F073F"}.mdi-gesture-swipe-up::before{content:"\F0740"}.mdi-gesture-swipe-vertical::before{content:"\F0AC0"}.mdi-gesture-tap::before{content:"\F0741"}.mdi-gesture-tap-box::before{content:"\F12A9"}.mdi-gesture-tap-button::before{content:"\F12A8"}.mdi-gesture-tap-hold::before{content:"\F0D77"}.mdi-gesture-two-double-tap::before{content:"\F0742"}.mdi-gesture-two-tap::before{content:"\F0743"}.mdi-ghost::before{content:"\F02A0"}.mdi-ghost-off::before{content:"\F09F5"}.mdi-ghost-off-outline::before{content:"\F165C"}.mdi-ghost-outline::before{content:"\F165D"}.mdi-gift::before{content:"\F0E44"}.mdi-gift-off::before{content:"\F16EF"}.mdi-gift-off-outline::before{content:"\F16F0"}.mdi-gift-open::before{content:"\F16F1"}.mdi-gift-open-outline::before{content:"\F16F2"}.mdi-gift-outline::before{content:"\F02A1"}.mdi-git::before{content:"\F02A2"}.mdi-github::before{content:"\F02A4"}.mdi-gitlab::before{content:"\F0BA0"}.mdi-glass-cocktail::before{content:"\F0356"}.mdi-glass-cocktail-off::before{content:"\F15E6"}.mdi-glass-flute::before{content:"\F02A5"}.mdi-glass-fragile::before{content:"\F1873"}.mdi-glass-mug::before{content:"\F02A6"}.mdi-glass-mug-off::before{content:"\F15E7"}.mdi-glass-mug-variant::before{content:"\F1116"}.mdi-glass-mug-variant-off::before{content:"\F15E8"}.mdi-glass-pint-outline::before{content:"\F130D"}.mdi-glass-stange::before{content:"\F02A7"}.mdi-glass-tulip::before{content:"\F02A8"}.mdi-glass-wine::before{content:"\F0876"}.mdi-glasses::before{content:"\F02AA"}.mdi-globe-light::before{content:"\F066F"}.mdi-globe-light-outline::before{content:"\F12D7"}.mdi-globe-model::before{content:"\F08E9"}.mdi-gmail::before{content:"\F02AB"}.mdi-gnome::before{content:"\F02AC"}.mdi-go-kart::before{content:"\F0D79"}.mdi-go-kart-track::before{content:"\F0D7A"}.mdi-gog::before{content:"\F0BA1"}.mdi-gold::before{content:"\F124F"}.mdi-golf::before{content:"\F0823"}.mdi-golf-cart::before{content:"\F11A4"}.mdi-golf-tee::before{content:"\F1083"}.mdi-gondola::before{content:"\F0686"}.mdi-goodreads::before{content:"\F0D7B"}.mdi-google::before{content:"\F02AD"}.mdi-google-ads::before{content:"\F0C87"}.mdi-google-analytics::before{content:"\F07CC"}.mdi-google-assistant::before{content:"\F07CD"}.mdi-google-cardboard::before{content:"\F02AE"}.mdi-google-chrome::before{content:"\F02AF"}.mdi-google-circles::before{content:"\F02B0"}.mdi-google-circles-communities::before{content:"\F02B1"}.mdi-google-circles-extended::before{content:"\F02B2"}.mdi-google-circles-group::before{content:"\F02B3"}.mdi-google-classroom::before{content:"\F02C0"}.mdi-google-cloud::before{content:"\F11F6"}.mdi-google-downasaur::before{content:"\F1362"}.mdi-google-drive::before{content:"\F02B6"}.mdi-google-earth::before{content:"\F02B7"}.mdi-google-fit::before{content:"\F096C"}.mdi-google-glass::before{content:"\F02B8"}.mdi-google-hangouts::before{content:"\F02C9"}.mdi-google-keep::before{content:"\F06DC"}.mdi-google-lens::before{content:"\F09F6"}.mdi-google-maps::before{content:"\F05F5"}.mdi-google-my-business::before{content:"\F1048"}.mdi-google-nearby::before{content:"\F02B9"}.mdi-google-play::before{content:"\F02BC"}.mdi-google-plus::before{content:"\F02BD"}.mdi-google-podcast::before{content:"\F0EB9"}.mdi-google-spreadsheet::before{content:"\F09F7"}.mdi-google-street-view::before{content:"\F0C88"}.mdi-google-translate::before{content:"\F02BF"}.mdi-gradient-horizontal::before{content:"\F174A"}.mdi-gradient-vertical::before{content:"\F06A0"}.mdi-grain::before{content:"\F0D7C"}.mdi-graph::before{content:"\F1049"}.mdi-graph-outline::before{content:"\F104A"}.mdi-graphql::before{content:"\F0877"}.mdi-grass::before{content:"\F1510"}.mdi-grave-stone::before{content:"\F0BA2"}.mdi-grease-pencil::before{content:"\F0648"}.mdi-greater-than::before{content:"\F096D"}.mdi-greater-than-or-equal::before{content:"\F096E"}.mdi-greenhouse::before{content:"\F002D"}.mdi-grid::before{content:"\F02C1"}.mdi-grid-large::before{content:"\F0758"}.mdi-grid-off::before{content:"\F02C2"}.mdi-grill::before{content:"\F0E45"}.mdi-grill-outline::before{content:"\F118A"}.mdi-group::before{content:"\F02C3"}.mdi-guitar-acoustic::before{content:"\F0771"}.mdi-guitar-electric::before{content:"\F02C4"}.mdi-guitar-pick::before{content:"\F02C5"}.mdi-guitar-pick-outline::before{content:"\F02C6"}.mdi-guy-fawkes-mask::before{content:"\F0825"}.mdi-gymnastics::before{content:"\F1A41"}.mdi-hail::before{content:"\F0AC1"}.mdi-hair-dryer::before{content:"\F10EF"}.mdi-hair-dryer-outline::before{content:"\F10F0"}.mdi-halloween::before{content:"\F0BA3"}.mdi-hamburger::before{content:"\F0685"}.mdi-hamburger-check::before{content:"\F1776"}.mdi-hamburger-minus::before{content:"\F1777"}.mdi-hamburger-off::before{content:"\F1778"}.mdi-hamburger-plus::before{content:"\F1779"}.mdi-hamburger-remove::before{content:"\F177A"}.mdi-hammer::before{content:"\F08EA"}.mdi-hammer-screwdriver::before{content:"\F1322"}.mdi-hammer-sickle::before{content:"\F1887"}.mdi-hammer-wrench::before{content:"\F1323"}.mdi-hand-back-left::before{content:"\F0E46"}.mdi-hand-back-left-off::before{content:"\F1830"}.mdi-hand-back-left-off-outline::before{content:"\F1832"}.mdi-hand-back-left-outline::before{content:"\F182C"}.mdi-hand-back-right::before{content:"\F0E47"}.mdi-hand-back-right-off::before{content:"\F1831"}.mdi-hand-back-right-off-outline::before{content:"\F1833"}.mdi-hand-back-right-outline::before{content:"\F182D"}.mdi-hand-clap::before{content:"\F194B"}.mdi-hand-clap-off::before{content:"\F1A42"}.mdi-hand-coin::before{content:"\F188F"}.mdi-hand-coin-outline::before{content:"\F1890"}.mdi-hand-cycle::before{content:"\F1B9C"}.mdi-hand-extended::before{content:"\F18B6"}.mdi-hand-extended-outline::before{content:"\F18B7"}.mdi-hand-front-left::before{content:"\F182B"}.mdi-hand-front-left-outline::before{content:"\F182E"}.mdi-hand-front-right::before{content:"\F0A4F"}.mdi-hand-front-right-outline::before{content:"\F182F"}.mdi-hand-heart::before{content:"\F10F1"}.mdi-hand-heart-outline::before{content:"\F157E"}.mdi-hand-okay::before{content:"\F0A50"}.mdi-hand-peace::before{content:"\F0A51"}.mdi-hand-peace-variant::before{content:"\F0A52"}.mdi-hand-pointing-down::before{content:"\F0A53"}.mdi-hand-pointing-left::before{content:"\F0A54"}.mdi-hand-pointing-right::before{content:"\F02C7"}.mdi-hand-pointing-up::before{content:"\F0A55"}.mdi-hand-saw::before{content:"\F0E48"}.mdi-hand-wash::before{content:"\F157F"}.mdi-hand-wash-outline::before{content:"\F1580"}.mdi-hand-water::before{content:"\F139F"}.mdi-hand-wave::before{content:"\F1821"}.mdi-hand-wave-outline::before{content:"\F1822"}.mdi-handball::before{content:"\F0F53"}.mdi-handcuffs::before{content:"\F113E"}.mdi-hands-pray::before{content:"\F0579"}.mdi-handshake::before{content:"\F1218"}.mdi-handshake-outline::before{content:"\F15A1"}.mdi-hanger::before{content:"\F02C8"}.mdi-hard-hat::before{content:"\F096F"}.mdi-harddisk::before{content:"\F02CA"}.mdi-harddisk-plus::before{content:"\F104B"}.mdi-harddisk-remove::before{content:"\F104C"}.mdi-hat-fedora::before{content:"\F0BA4"}.mdi-hazard-lights::before{content:"\F0C89"}.mdi-hdmi-port::before{content:"\F1BB8"}.mdi-hdr::before{content:"\F0D7D"}.mdi-hdr-off::before{content:"\F0D7E"}.mdi-head::before{content:"\F135E"}.mdi-head-alert::before{content:"\F1338"}.mdi-head-alert-outline::before{content:"\F1339"}.mdi-head-check::before{content:"\F133A"}.mdi-head-check-outline::before{content:"\F133B"}.mdi-head-cog::before{content:"\F133C"}.mdi-head-cog-outline::before{content:"\F133D"}.mdi-head-dots-horizontal::before{content:"\F133E"}.mdi-head-dots-horizontal-outline::before{content:"\F133F"}.mdi-head-flash::before{content:"\F1340"}.mdi-head-flash-outline::before{content:"\F1341"}.mdi-head-heart::before{content:"\F1342"}.mdi-head-heart-outline::before{content:"\F1343"}.mdi-head-lightbulb::before{content:"\F1344"}.mdi-head-lightbulb-outline::before{content:"\F1345"}.mdi-head-minus::before{content:"\F1346"}.mdi-head-minus-outline::before{content:"\F1347"}.mdi-head-outline::before{content:"\F135F"}.mdi-head-plus::before{content:"\F1348"}.mdi-head-plus-outline::before{content:"\F1349"}.mdi-head-question::before{content:"\F134A"}.mdi-head-question-outline::before{content:"\F134B"}.mdi-head-remove::before{content:"\F134C"}.mdi-head-remove-outline::before{content:"\F134D"}.mdi-head-snowflake::before{content:"\F134E"}.mdi-head-snowflake-outline::before{content:"\F134F"}.mdi-head-sync::before{content:"\F1350"}.mdi-head-sync-outline::before{content:"\F1351"}.mdi-headphones::before{content:"\F02CB"}.mdi-headphones-bluetooth::before{content:"\F0970"}.mdi-headphones-box::before{content:"\F02CC"}.mdi-headphones-off::before{content:"\F07CE"}.mdi-headphones-settings::before{content:"\F02CD"}.mdi-headset::before{content:"\F02CE"}.mdi-headset-dock::before{content:"\F02CF"}.mdi-headset-off::before{content:"\F02D0"}.mdi-heart::before{content:"\F02D1"}.mdi-heart-box::before{content:"\F02D2"}.mdi-heart-box-outline::before{content:"\F02D3"}.mdi-heart-broken::before{content:"\F02D4"}.mdi-heart-broken-outline::before{content:"\F0D14"}.mdi-heart-circle::before{content:"\F0971"}.mdi-heart-circle-outline::before{content:"\F0972"}.mdi-heart-cog::before{content:"\F1663"}.mdi-heart-cog-outline::before{content:"\F1664"}.mdi-heart-flash::before{content:"\F0EF9"}.mdi-heart-half::before{content:"\F06DF"}.mdi-heart-half-full::before{content:"\F06DE"}.mdi-heart-half-outline::before{content:"\F06E0"}.mdi-heart-minus::before{content:"\F142F"}.mdi-heart-minus-outline::before{content:"\F1432"}.mdi-heart-multiple::before{content:"\F0A56"}.mdi-heart-multiple-outline::before{content:"\F0A57"}.mdi-heart-off::before{content:"\F0759"}.mdi-heart-off-outline::before{content:"\F1434"}.mdi-heart-outline::before{content:"\F02D5"}.mdi-heart-plus::before{content:"\F142E"}.mdi-heart-plus-outline::before{content:"\F1431"}.mdi-heart-pulse::before{content:"\F05F6"}.mdi-heart-remove::before{content:"\F1430"}.mdi-heart-remove-outline::before{content:"\F1433"}.mdi-heart-settings::before{content:"\F1665"}.mdi-heart-settings-outline::before{content:"\F1666"}.mdi-heat-pump::before{content:"\F1A43"}.mdi-heat-pump-outline::before{content:"\F1A44"}.mdi-heat-wave::before{content:"\F1A45"}.mdi-heating-coil::before{content:"\F1AAF"}.mdi-helicopter::before{content:"\F0AC2"}.mdi-help::before{content:"\F02D6"}.mdi-help-box::before{content:"\F078B"}.mdi-help-box-multiple::before{content:"\F1C0A"}.mdi-help-box-multiple-outline::before{content:"\F1C0B"}.mdi-help-box-outline::before{content:"\F1C0C"}.mdi-help-circle::before{content:"\F02D7"}.mdi-help-circle-outline::before{content:"\F0625"}.mdi-help-network::before{content:"\F06F5"}.mdi-help-network-outline::before{content:"\F0C8A"}.mdi-help-rhombus::before{content:"\F0BA5"}.mdi-help-rhombus-outline::before{content:"\F0BA6"}.mdi-hexadecimal::before{content:"\F12A7"}.mdi-hexagon::before{content:"\F02D8"}.mdi-hexagon-multiple::before{content:"\F06E1"}.mdi-hexagon-multiple-outline::before{content:"\F10F2"}.mdi-hexagon-outline::before{content:"\F02D9"}.mdi-hexagon-slice-1::before{content:"\F0AC3"}.mdi-hexagon-slice-2::before{content:"\F0AC4"}.mdi-hexagon-slice-3::before{content:"\F0AC5"}.mdi-hexagon-slice-4::before{content:"\F0AC6"}.mdi-hexagon-slice-5::before{content:"\F0AC7"}.mdi-hexagon-slice-6::before{content:"\F0AC8"}.mdi-hexagram::before{content:"\F0AC9"}.mdi-hexagram-outline::before{content:"\F0ACA"}.mdi-high-definition::before{content:"\F07CF"}.mdi-high-definition-box::before{content:"\F0878"}.mdi-highway::before{content:"\F05F7"}.mdi-hiking::before{content:"\F0D7F"}.mdi-history::before{content:"\F02DA"}.mdi-hockey-puck::before{content:"\F0879"}.mdi-hockey-sticks::before{content:"\F087A"}.mdi-hololens::before{content:"\F02DB"}.mdi-home::before{content:"\F02DC"}.mdi-home-account::before{content:"\F0826"}.mdi-home-alert::before{content:"\F087B"}.mdi-home-alert-outline::before{content:"\F15D0"}.mdi-home-analytics::before{content:"\F0EBA"}.mdi-home-assistant::before{content:"\F07D0"}.mdi-home-automation::before{content:"\F07D1"}.mdi-home-battery::before{content:"\F1901"}.mdi-home-battery-outline::before{content:"\F1902"}.mdi-home-circle::before{content:"\F07D2"}.mdi-home-circle-outline::before{content:"\F104D"}.mdi-home-city::before{content:"\F0D15"}.mdi-home-city-outline::before{content:"\F0D16"}.mdi-home-clock::before{content:"\F1A12"}.mdi-home-clock-outline::before{content:"\F1A13"}.mdi-home-edit::before{content:"\F1159"}.mdi-home-edit-outline::before{content:"\F115A"}.mdi-home-export-outline::before{content:"\F0F9B"}.mdi-home-flood::before{content:"\F0EFA"}.mdi-home-floor-0::before{content:"\F0DD2"}.mdi-home-floor-1::before{content:"\F0D80"}.mdi-home-floor-2::before{content:"\F0D81"}.mdi-home-floor-3::before{content:"\F0D82"}.mdi-home-floor-a::before{content:"\F0D83"}.mdi-home-floor-b::before{content:"\F0D84"}.mdi-home-floor-g::before{content:"\F0D85"}.mdi-home-floor-l::before{content:"\F0D86"}.mdi-home-floor-negative-1::before{content:"\F0DD3"}.mdi-home-group::before{content:"\F0DD4"}.mdi-home-group-minus::before{content:"\F19C1"}.mdi-home-group-plus::before{content:"\F19C0"}.mdi-home-group-remove::before{content:"\F19C2"}.mdi-home-heart::before{content:"\F0827"}.mdi-home-import-outline::before{content:"\F0F9C"}.mdi-home-lightbulb::before{content:"\F1251"}.mdi-home-lightbulb-outline::before{content:"\F1252"}.mdi-home-lightning-bolt::before{content:"\F1903"}.mdi-home-lightning-bolt-outline::before{content:"\F1904"}.mdi-home-lock::before{content:"\F08EB"}.mdi-home-lock-open::before{content:"\F08EC"}.mdi-home-map-marker::before{content:"\F05F8"}.mdi-home-minus::before{content:"\F0974"}.mdi-home-minus-outline::before{content:"\F13D5"}.mdi-home-modern::before{content:"\F02DD"}.mdi-home-off::before{content:"\F1A46"}.mdi-home-off-outline::before{content:"\F1A47"}.mdi-home-outline::before{content:"\F06A1"}.mdi-home-percent::before{content:"\F1C7C"}.mdi-home-percent-outline::before{content:"\F1C7D"}.mdi-home-plus::before{content:"\F0975"}.mdi-home-plus-outline::before{content:"\F13D6"}.mdi-home-remove::before{content:"\F1247"}.mdi-home-remove-outline::before{content:"\F13D7"}.mdi-home-roof::before{content:"\F112B"}.mdi-home-search::before{content:"\F13B0"}.mdi-home-search-outline::before{content:"\F13B1"}.mdi-home-silo::before{content:"\F1BA0"}.mdi-home-silo-outline::before{content:"\F1BA1"}.mdi-home-sound-in::before{content:"\F1C2F"}.mdi-home-sound-in-outline::before{content:"\F1C30"}.mdi-home-sound-out::before{content:"\F1C31"}.mdi-home-sound-out-outline::before{content:"\F1C32"}.mdi-home-switch::before{content:"\F1794"}.mdi-home-switch-outline::before{content:"\F1795"}.mdi-home-thermometer::before{content:"\F0F54"}.mdi-home-thermometer-outline::before{content:"\F0F55"}.mdi-home-variant::before{content:"\F02DE"}.mdi-home-variant-outline::before{content:"\F0BA7"}.mdi-hook::before{content:"\F06E2"}.mdi-hook-off::before{content:"\F06E3"}.mdi-hoop-house::before{content:"\F0E56"}.mdi-hops::before{content:"\F02DF"}.mdi-horizontal-rotate-clockwise::before{content:"\F10F3"}.mdi-horizontal-rotate-counterclockwise::before{content:"\F10F4"}.mdi-horse::before{content:"\F15BF"}.mdi-horse-human::before{content:"\F15C0"}.mdi-horse-variant::before{content:"\F15C1"}.mdi-horse-variant-fast::before{content:"\F186E"}.mdi-horseshoe::before{content:"\F0A58"}.mdi-hospital::before{content:"\F0FF6"}.mdi-hospital-box::before{content:"\F02E0"}.mdi-hospital-box-outline::before{content:"\F0FF7"}.mdi-hospital-building::before{content:"\F02E1"}.mdi-hospital-marker::before{content:"\F02E2"}.mdi-hot-tub::before{content:"\F0828"}.mdi-hours-24::before{content:"\F1478"}.mdi-hubspot::before{content:"\F0D17"}.mdi-hulu::before{content:"\F0829"}.mdi-human::before{content:"\F02E6"}.mdi-human-baby-changing-table::before{content:"\F138B"}.mdi-human-cane::before{content:"\F1581"}.mdi-human-capacity-decrease::before{content:"\F159B"}.mdi-human-capacity-increase::before{content:"\F159C"}.mdi-human-child::before{content:"\F02E7"}.mdi-human-dolly::before{content:"\F1980"}.mdi-human-edit::before{content:"\F14E8"}.mdi-human-female::before{content:"\F0649"}.mdi-human-female-boy::before{content:"\F0A59"}.mdi-human-female-dance::before{content:"\F15C9"}.mdi-human-female-female::before{content:"\F0A5A"}.mdi-human-female-girl::before{content:"\F0A5B"}.mdi-human-greeting::before{content:"\F17C4"}.mdi-human-greeting-proximity::before{content:"\F159D"}.mdi-human-greeting-variant::before{content:"\F064A"}.mdi-human-handsdown::before{content:"\F064B"}.mdi-human-handsup::before{content:"\F064C"}.mdi-human-male::before{content:"\F064D"}.mdi-human-male-board::before{content:"\F0890"}.mdi-human-male-board-poll::before{content:"\F0846"}.mdi-human-male-boy::before{content:"\F0A5C"}.mdi-human-male-child::before{content:"\F138C"}.mdi-human-male-female::before{content:"\F02E8"}.mdi-human-male-female-child::before{content:"\F1823"}.mdi-human-male-girl::before{content:"\F0A5D"}.mdi-human-male-height::before{content:"\F0EFB"}.mdi-human-male-height-variant::before{content:"\F0EFC"}.mdi-human-male-male::before{content:"\F0A5E"}.mdi-human-non-binary::before{content:"\F1848"}.mdi-human-pregnant::before{content:"\F05CF"}.mdi-human-queue::before{content:"\F1571"}.mdi-human-scooter::before{content:"\F11E9"}.mdi-human-walker::before{content:"\F1B71"}.mdi-human-wheelchair::before{content:"\F138D"}.mdi-human-white-cane::before{content:"\F1981"}.mdi-humble-bundle::before{content:"\F0744"}.mdi-hvac::before{content:"\F1352"}.mdi-hvac-off::before{content:"\F159E"}.mdi-hydraulic-oil-level::before{content:"\F1324"}.mdi-hydraulic-oil-temperature::before{content:"\F1325"}.mdi-hydro-power::before{content:"\F12E5"}.mdi-hydrogen-station::before{content:"\F1894"}.mdi-ice-cream::before{content:"\F082A"}.mdi-ice-cream-off::before{content:"\F0E52"}.mdi-ice-pop::before{content:"\F0EFD"}.mdi-id-card::before{content:"\F0FC0"}.mdi-identifier::before{content:"\F0EFE"}.mdi-ideogram-cjk::before{content:"\F1331"}.mdi-ideogram-cjk-variant::before{content:"\F1332"}.mdi-image::before{content:"\F02E9"}.mdi-image-album::before{content:"\F02EA"}.mdi-image-area::before{content:"\F02EB"}.mdi-image-area-close::before{content:"\F02EC"}.mdi-image-auto-adjust::before{content:"\F0FC1"}.mdi-image-broken::before{content:"\F02ED"}.mdi-image-broken-variant::before{content:"\F02EE"}.mdi-image-check::before{content:"\F1B25"}.mdi-image-check-outline::before{content:"\F1B26"}.mdi-image-edit::before{content:"\F11E3"}.mdi-image-edit-outline::before{content:"\F11E4"}.mdi-image-filter-black-white::before{content:"\F02F0"}.mdi-image-filter-center-focus::before{content:"\F02F1"}.mdi-image-filter-center-focus-strong::before{content:"\F0EFF"}.mdi-image-filter-center-focus-strong-outline::before{content:"\F0F00"}.mdi-image-filter-center-focus-weak::before{content:"\F02F2"}.mdi-image-filter-drama::before{content:"\F02F3"}.mdi-image-filter-drama-outline::before{content:"\F1BFF"}.mdi-image-filter-frames::before{content:"\F02F4"}.mdi-image-filter-hdr::before{content:"\F02F5"}.mdi-image-filter-hdr-outline::before{content:"\F1C64"}.mdi-image-filter-none::before{content:"\F02F6"}.mdi-image-filter-tilt-shift::before{content:"\F02F7"}.mdi-image-filter-vintage::before{content:"\F02F8"}.mdi-image-frame::before{content:"\F0E49"}.mdi-image-lock::before{content:"\F1AB0"}.mdi-image-lock-outline::before{content:"\F1AB1"}.mdi-image-marker::before{content:"\F177B"}.mdi-image-marker-outline::before{content:"\F177C"}.mdi-image-minus::before{content:"\F1419"}.mdi-image-minus-outline::before{content:"\F1B47"}.mdi-image-move::before{content:"\F09F8"}.mdi-image-multiple::before{content:"\F02F9"}.mdi-image-multiple-outline::before{content:"\F02EF"}.mdi-image-off::before{content:"\F082B"}.mdi-image-off-outline::before{content:"\F11D1"}.mdi-image-outline::before{content:"\F0976"}.mdi-image-plus::before{content:"\F087C"}.mdi-image-plus-outline::before{content:"\F1B46"}.mdi-image-refresh::before{content:"\F19FE"}.mdi-image-refresh-outline::before{content:"\F19FF"}.mdi-image-remove::before{content:"\F1418"}.mdi-image-remove-outline::before{content:"\F1B48"}.mdi-image-search::before{content:"\F0977"}.mdi-image-search-outline::before{content:"\F0978"}.mdi-image-size-select-actual::before{content:"\F0C8D"}.mdi-image-size-select-large::before{content:"\F0C8E"}.mdi-image-size-select-small::before{content:"\F0C8F"}.mdi-image-sync::before{content:"\F1A00"}.mdi-image-sync-outline::before{content:"\F1A01"}.mdi-image-text::before{content:"\F160D"}.mdi-import::before{content:"\F02FA"}.mdi-inbox::before{content:"\F0687"}.mdi-inbox-arrow-down::before{content:"\F02FB"}.mdi-inbox-arrow-down-outline::before{content:"\F1270"}.mdi-inbox-arrow-up::before{content:"\F03D1"}.mdi-inbox-arrow-up-outline::before{content:"\F1271"}.mdi-inbox-full::before{content:"\F1272"}.mdi-inbox-full-outline::before{content:"\F1273"}.mdi-inbox-multiple::before{content:"\F08B0"}.mdi-inbox-multiple-outline::before{content:"\F0BA8"}.mdi-inbox-outline::before{content:"\F1274"}.mdi-inbox-remove::before{content:"\F159F"}.mdi-inbox-remove-outline::before{content:"\F15A0"}.mdi-incognito::before{content:"\F05F9"}.mdi-incognito-circle::before{content:"\F1421"}.mdi-incognito-circle-off::before{content:"\F1422"}.mdi-incognito-off::before{content:"\F0075"}.mdi-induction::before{content:"\F184C"}.mdi-infinity::before{content:"\F06E4"}.mdi-information::before{content:"\F02FC"}.mdi-information-box::before{content:"\F1C65"}.mdi-information-box-outline::before{content:"\F1C66"}.mdi-information-off::before{content:"\F178C"}.mdi-information-off-outline::before{content:"\F178D"}.mdi-information-outline::before{content:"\F02FD"}.mdi-information-slab-box::before{content:"\F1C67"}.mdi-information-slab-box-outline::before{content:"\F1C68"}.mdi-information-slab-circle::before{content:"\F1C69"}.mdi-information-slab-circle-outline::before{content:"\F1C6A"}.mdi-information-slab-symbol::before{content:"\F1C6B"}.mdi-information-symbol::before{content:"\F1C6C"}.mdi-information-variant::before{content:"\F064E"}.mdi-information-variant-box::before{content:"\F1C6D"}.mdi-information-variant-box-outline::before{content:"\F1C6E"}.mdi-information-variant-circle::before{content:"\F1C6F"}.mdi-information-variant-circle-outline::before{content:"\F1C70"}.mdi-instagram::before{content:"\F02FE"}.mdi-instrument-triangle::before{content:"\F104E"}.mdi-integrated-circuit-chip::before{content:"\F1913"}.mdi-invert-colors::before{content:"\F0301"}.mdi-invert-colors-off::before{content:"\F0E4A"}.mdi-iobroker::before{content:"\F12E8"}.mdi-ip::before{content:"\F0A5F"}.mdi-ip-network::before{content:"\F0A60"}.mdi-ip-network-outline::before{content:"\F0C90"}.mdi-ip-outline::before{content:"\F1982"}.mdi-ipod::before{content:"\F0C91"}.mdi-iron::before{content:"\F1824"}.mdi-iron-board::before{content:"\F1838"}.mdi-iron-outline::before{content:"\F1825"}.mdi-island::before{content:"\F104F"}.mdi-iv-bag::before{content:"\F10B9"}.mdi-jabber::before{content:"\F0DD5"}.mdi-jeepney::before{content:"\F0302"}.mdi-jellyfish::before{content:"\F0F01"}.mdi-jellyfish-outline::before{content:"\F0F02"}.mdi-jira::before{content:"\F0303"}.mdi-jquery::before{content:"\F087D"}.mdi-jsfiddle::before{content:"\F0304"}.mdi-jump-rope::before{content:"\F12FF"}.mdi-kabaddi::before{content:"\F0D87"}.mdi-kangaroo::before{content:"\F1558"}.mdi-karate::before{content:"\F082C"}.mdi-kayaking::before{content:"\F08AF"}.mdi-keg::before{content:"\F0305"}.mdi-kettle::before{content:"\F05FA"}.mdi-kettle-alert::before{content:"\F1317"}.mdi-kettle-alert-outline::before{content:"\F1318"}.mdi-kettle-off::before{content:"\F131B"}.mdi-kettle-off-outline::before{content:"\F131C"}.mdi-kettle-outline::before{content:"\F0F56"}.mdi-kettle-pour-over::before{content:"\F173C"}.mdi-kettle-steam::before{content:"\F1319"}.mdi-kettle-steam-outline::before{content:"\F131A"}.mdi-kettlebell::before{content:"\F1300"}.mdi-key::before{content:"\F0306"}.mdi-key-alert::before{content:"\F1983"}.mdi-key-alert-outline::before{content:"\F1984"}.mdi-key-arrow-right::before{content:"\F1312"}.mdi-key-chain::before{content:"\F1574"}.mdi-key-chain-variant::before{content:"\F1575"}.mdi-key-change::before{content:"\F0307"}.mdi-key-link::before{content:"\F119F"}.mdi-key-minus::before{content:"\F0308"}.mdi-key-outline::before{content:"\F0DD6"}.mdi-key-plus::before{content:"\F0309"}.mdi-key-remove::before{content:"\F030A"}.mdi-key-star::before{content:"\F119E"}.mdi-key-variant::before{content:"\F030B"}.mdi-key-wireless::before{content:"\F0FC2"}.mdi-keyboard::before{content:"\F030C"}.mdi-keyboard-backspace::before{content:"\F030D"}.mdi-keyboard-caps::before{content:"\F030E"}.mdi-keyboard-close::before{content:"\F030F"}.mdi-keyboard-close-outline::before{content:"\F1C00"}.mdi-keyboard-esc::before{content:"\F12B7"}.mdi-keyboard-f1::before{content:"\F12AB"}.mdi-keyboard-f10::before{content:"\F12B4"}.mdi-keyboard-f11::before{content:"\F12B5"}.mdi-keyboard-f12::before{content:"\F12B6"}.mdi-keyboard-f2::before{content:"\F12AC"}.mdi-keyboard-f3::before{content:"\F12AD"}.mdi-keyboard-f4::before{content:"\F12AE"}.mdi-keyboard-f5::before{content:"\F12AF"}.mdi-keyboard-f6::before{content:"\F12B0"}.mdi-keyboard-f7::before{content:"\F12B1"}.mdi-keyboard-f8::before{content:"\F12B2"}.mdi-keyboard-f9::before{content:"\F12B3"}.mdi-keyboard-off::before{content:"\F0310"}.mdi-keyboard-off-outline::before{content:"\F0E4B"}.mdi-keyboard-outline::before{content:"\F097B"}.mdi-keyboard-return::before{content:"\F0311"}.mdi-keyboard-settings::before{content:"\F09F9"}.mdi-keyboard-settings-outline::before{content:"\F09FA"}.mdi-keyboard-space::before{content:"\F1050"}.mdi-keyboard-tab::before{content:"\F0312"}.mdi-keyboard-tab-reverse::before{content:"\F0325"}.mdi-keyboard-variant::before{content:"\F0313"}.mdi-khanda::before{content:"\F10FD"}.mdi-kickstarter::before{content:"\F0745"}.mdi-kite::before{content:"\F1985"}.mdi-kite-outline::before{content:"\F1986"}.mdi-kitesurfing::before{content:"\F1744"}.mdi-klingon::before{content:"\F135B"}.mdi-knife::before{content:"\F09FB"}.mdi-knife-military::before{content:"\F09FC"}.mdi-knob::before{content:"\F1B96"}.mdi-koala::before{content:"\F173F"}.mdi-kodi::before{content:"\F0314"}.mdi-kubernetes::before{content:"\F10FE"}.mdi-label::before{content:"\F0315"}.mdi-label-multiple::before{content:"\F1375"}.mdi-label-multiple-outline::before{content:"\F1376"}.mdi-label-off::before{content:"\F0ACB"}.mdi-label-off-outline::before{content:"\F0ACC"}.mdi-label-outline::before{content:"\F0316"}.mdi-label-percent::before{content:"\F12EA"}.mdi-label-percent-outline::before{content:"\F12EB"}.mdi-label-variant::before{content:"\F0ACD"}.mdi-label-variant-outline::before{content:"\F0ACE"}.mdi-ladder::before{content:"\F15A2"}.mdi-ladybug::before{content:"\F082D"}.mdi-lambda::before{content:"\F0627"}.mdi-lamp::before{content:"\F06B5"}.mdi-lamp-outline::before{content:"\F17D0"}.mdi-lamps::before{content:"\F1576"}.mdi-lamps-outline::before{content:"\F17D1"}.mdi-lan::before{content:"\F0317"}.mdi-lan-check::before{content:"\F12AA"}.mdi-lan-connect::before{content:"\F0318"}.mdi-lan-disconnect::before{content:"\F0319"}.mdi-lan-pending::before{content:"\F031A"}.mdi-land-fields::before{content:"\F1AB2"}.mdi-land-plots::before{content:"\F1AB3"}.mdi-land-plots-circle::before{content:"\F1AB4"}.mdi-land-plots-circle-variant::before{content:"\F1AB5"}.mdi-land-plots-marker::before{content:"\F1C5D"}.mdi-land-rows-horizontal::before{content:"\F1AB6"}.mdi-land-rows-vertical::before{content:"\F1AB7"}.mdi-landslide::before{content:"\F1A48"}.mdi-landslide-outline::before{content:"\F1A49"}.mdi-language-c::before{content:"\F0671"}.mdi-language-cpp::before{content:"\F0672"}.mdi-language-csharp::before{content:"\F031B"}.mdi-language-css3::before{content:"\F031C"}.mdi-language-fortran::before{content:"\F121A"}.mdi-language-go::before{content:"\F07D3"}.mdi-language-haskell::before{content:"\F0C92"}.mdi-language-html5::before{content:"\F031D"}.mdi-language-java::before{content:"\F0B37"}.mdi-language-javascript::before{content:"\F031E"}.mdi-language-kotlin::before{content:"\F1219"}.mdi-language-lua::before{content:"\F08B1"}.mdi-language-markdown::before{content:"\F0354"}.mdi-language-markdown-outline::before{content:"\F0F5B"}.mdi-language-php::before{content:"\F031F"}.mdi-language-python::before{content:"\F0320"}.mdi-language-r::before{content:"\F07D4"}.mdi-language-ruby::before{content:"\F0D2D"}.mdi-language-ruby-on-rails::before{content:"\F0ACF"}.mdi-language-rust::before{content:"\F1617"}.mdi-language-swift::before{content:"\F06E5"}.mdi-language-typescript::before{content:"\F06E6"}.mdi-language-xaml::before{content:"\F0673"}.mdi-laptop::before{content:"\F0322"}.mdi-laptop-account::before{content:"\F1A4A"}.mdi-laptop-off::before{content:"\F06E7"}.mdi-laravel::before{content:"\F0AD0"}.mdi-laser-pointer::before{content:"\F1484"}.mdi-lasso::before{content:"\F0F03"}.mdi-lastpass::before{content:"\F0446"}.mdi-latitude::before{content:"\F0F57"}.mdi-launch::before{content:"\F0327"}.mdi-lava-lamp::before{content:"\F07D5"}.mdi-layers::before{content:"\F0328"}.mdi-layers-edit::before{content:"\F1892"}.mdi-layers-minus::before{content:"\F0E4C"}.mdi-layers-off::before{content:"\F0329"}.mdi-layers-off-outline::before{content:"\F09FD"}.mdi-layers-outline::before{content:"\F09FE"}.mdi-layers-plus::before{content:"\F0E4D"}.mdi-layers-remove::before{content:"\F0E4E"}.mdi-layers-search::before{content:"\F1206"}.mdi-layers-search-outline::before{content:"\F1207"}.mdi-layers-triple::before{content:"\F0F58"}.mdi-layers-triple-outline::before{content:"\F0F59"}.mdi-lead-pencil::before{content:"\F064F"}.mdi-leaf::before{content:"\F032A"}.mdi-leaf-circle::before{content:"\F1905"}.mdi-leaf-circle-outline::before{content:"\F1906"}.mdi-leaf-maple::before{content:"\F0C93"}.mdi-leaf-maple-off::before{content:"\F12DA"}.mdi-leaf-off::before{content:"\F12D9"}.mdi-leak::before{content:"\F0DD7"}.mdi-leak-off::before{content:"\F0DD8"}.mdi-lectern::before{content:"\F1AF0"}.mdi-led-off::before{content:"\F032B"}.mdi-led-on::before{content:"\F032C"}.mdi-led-outline::before{content:"\F032D"}.mdi-led-strip::before{content:"\F07D6"}.mdi-led-strip-variant::before{content:"\F1051"}.mdi-led-strip-variant-off::before{content:"\F1A4B"}.mdi-led-variant-off::before{content:"\F032E"}.mdi-led-variant-on::before{content:"\F032F"}.mdi-led-variant-outline::before{content:"\F0330"}.mdi-leek::before{content:"\F117D"}.mdi-less-than::before{content:"\F097C"}.mdi-less-than-or-equal::before{content:"\F097D"}.mdi-library::before{content:"\F0331"}.mdi-library-outline::before{content:"\F1A22"}.mdi-library-shelves::before{content:"\F0BA9"}.mdi-license::before{content:"\F0FC3"}.mdi-lifebuoy::before{content:"\F087E"}.mdi-light-flood-down::before{content:"\F1987"}.mdi-light-flood-up::before{content:"\F1988"}.mdi-light-recessed::before{content:"\F179B"}.mdi-light-switch::before{content:"\F097E"}.mdi-light-switch-off::before{content:"\F1A24"}.mdi-lightbulb::before{content:"\F0335"}.mdi-lightbulb-alert::before{content:"\F19E1"}.mdi-lightbulb-alert-outline::before{content:"\F19E2"}.mdi-lightbulb-auto::before{content:"\F1800"}.mdi-lightbulb-auto-outline::before{content:"\F1801"}.mdi-lightbulb-cfl::before{content:"\F1208"}.mdi-lightbulb-cfl-off::before{content:"\F1209"}.mdi-lightbulb-cfl-spiral::before{content:"\F1275"}.mdi-lightbulb-cfl-spiral-off::before{content:"\F12C3"}.mdi-lightbulb-fluorescent-tube::before{content:"\F1804"}.mdi-lightbulb-fluorescent-tube-outline::before{content:"\F1805"}.mdi-lightbulb-group::before{content:"\F1253"}.mdi-lightbulb-group-off::before{content:"\F12CD"}.mdi-lightbulb-group-off-outline::before{content:"\F12CE"}.mdi-lightbulb-group-outline::before{content:"\F1254"}.mdi-lightbulb-multiple::before{content:"\F1255"}.mdi-lightbulb-multiple-off::before{content:"\F12CF"}.mdi-lightbulb-multiple-off-outline::before{content:"\F12D0"}.mdi-lightbulb-multiple-outline::before{content:"\F1256"}.mdi-lightbulb-night::before{content:"\F1A4C"}.mdi-lightbulb-night-outline::before{content:"\F1A4D"}.mdi-lightbulb-off::before{content:"\F0E4F"}.mdi-lightbulb-off-outline::before{content:"\F0E50"}.mdi-lightbulb-on::before{content:"\F06E8"}.mdi-lightbulb-on-10::before{content:"\F1A4E"}.mdi-lightbulb-on-20::before{content:"\F1A4F"}.mdi-lightbulb-on-30::before{content:"\F1A50"}.mdi-lightbulb-on-40::before{content:"\F1A51"}.mdi-lightbulb-on-50::before{content:"\F1A52"}.mdi-lightbulb-on-60::before{content:"\F1A53"}.mdi-lightbulb-on-70::before{content:"\F1A54"}.mdi-lightbulb-on-80::before{content:"\F1A55"}.mdi-lightbulb-on-90::before{content:"\F1A56"}.mdi-lightbulb-on-outline::before{content:"\F06E9"}.mdi-lightbulb-outline::before{content:"\F0336"}.mdi-lightbulb-question::before{content:"\F19E3"}.mdi-lightbulb-question-outline::before{content:"\F19E4"}.mdi-lightbulb-spot::before{content:"\F17F4"}.mdi-lightbulb-spot-off::before{content:"\F17F5"}.mdi-lightbulb-variant::before{content:"\F1802"}.mdi-lightbulb-variant-outline::before{content:"\F1803"}.mdi-lighthouse::before{content:"\F09FF"}.mdi-lighthouse-on::before{content:"\F0A00"}.mdi-lightning-bolt::before{content:"\F140B"}.mdi-lightning-bolt-circle::before{content:"\F0820"}.mdi-lightning-bolt-outline::before{content:"\F140C"}.mdi-line-scan::before{content:"\F0624"}.mdi-lingerie::before{content:"\F1476"}.mdi-link::before{content:"\F0337"}.mdi-link-box::before{content:"\F0D1A"}.mdi-link-box-outline::before{content:"\F0D1B"}.mdi-link-box-variant::before{content:"\F0D1C"}.mdi-link-box-variant-outline::before{content:"\F0D1D"}.mdi-link-lock::before{content:"\F10BA"}.mdi-link-off::before{content:"\F0338"}.mdi-link-plus::before{content:"\F0C94"}.mdi-link-variant::before{content:"\F0339"}.mdi-link-variant-minus::before{content:"\F10FF"}.mdi-link-variant-off::before{content:"\F033A"}.mdi-link-variant-plus::before{content:"\F1100"}.mdi-link-variant-remove::before{content:"\F1101"}.mdi-linkedin::before{content:"\F033B"}.mdi-linux::before{content:"\F033D"}.mdi-linux-mint::before{content:"\F08ED"}.mdi-lipstick::before{content:"\F13B5"}.mdi-liquid-spot::before{content:"\F1826"}.mdi-liquor::before{content:"\F191E"}.mdi-list-box::before{content:"\F1B7B"}.mdi-list-box-outline::before{content:"\F1B7C"}.mdi-list-status::before{content:"\F15AB"}.mdi-litecoin::before{content:"\F0A61"}.mdi-loading::before{content:"\F0772"}.mdi-location-enter::before{content:"\F0FC4"}.mdi-location-exit::before{content:"\F0FC5"}.mdi-lock::before{content:"\F033E"}.mdi-lock-alert::before{content:"\F08EE"}.mdi-lock-alert-outline::before{content:"\F15D1"}.mdi-lock-check::before{content:"\F139A"}.mdi-lock-check-outline::before{content:"\F16A8"}.mdi-lock-clock::before{content:"\F097F"}.mdi-lock-minus::before{content:"\F16A9"}.mdi-lock-minus-outline::before{content:"\F16AA"}.mdi-lock-off::before{content:"\F1671"}.mdi-lock-off-outline::before{content:"\F1672"}.mdi-lock-open::before{content:"\F033F"}.mdi-lock-open-alert::before{content:"\F139B"}.mdi-lock-open-alert-outline::before{content:"\F15D2"}.mdi-lock-open-check::before{content:"\F139C"}.mdi-lock-open-check-outline::before{content:"\F16AB"}.mdi-lock-open-minus::before{content:"\F16AC"}.mdi-lock-open-minus-outline::before{content:"\F16AD"}.mdi-lock-open-outline::before{content:"\F0340"}.mdi-lock-open-plus::before{content:"\F16AE"}.mdi-lock-open-plus-outline::before{content:"\F16AF"}.mdi-lock-open-remove::before{content:"\F16B0"}.mdi-lock-open-remove-outline::before{content:"\F16B1"}.mdi-lock-open-variant::before{content:"\F0FC6"}.mdi-lock-open-variant-outline::before{content:"\F0FC7"}.mdi-lock-outline::before{content:"\F0341"}.mdi-lock-pattern::before{content:"\F06EA"}.mdi-lock-percent::before{content:"\F1C12"}.mdi-lock-percent-open::before{content:"\F1C13"}.mdi-lock-percent-open-outline::before{content:"\F1C14"}.mdi-lock-percent-open-variant::before{content:"\F1C15"}.mdi-lock-percent-open-variant-outline::before{content:"\F1C16"}.mdi-lock-percent-outline::before{content:"\F1C17"}.mdi-lock-plus::before{content:"\F05FB"}.mdi-lock-plus-outline::before{content:"\F16B2"}.mdi-lock-question::before{content:"\F08EF"}.mdi-lock-remove::before{content:"\F16B3"}.mdi-lock-remove-outline::before{content:"\F16B4"}.mdi-lock-reset::before{content:"\F0773"}.mdi-lock-smart::before{content:"\F08B2"}.mdi-locker::before{content:"\F07D7"}.mdi-locker-multiple::before{content:"\F07D8"}.mdi-login::before{content:"\F0342"}.mdi-login-variant::before{content:"\F05FC"}.mdi-logout::before{content:"\F0343"}.mdi-logout-variant::before{content:"\F05FD"}.mdi-longitude::before{content:"\F0F5A"}.mdi-looks::before{content:"\F0344"}.mdi-lotion::before{content:"\F1582"}.mdi-lotion-outline::before{content:"\F1583"}.mdi-lotion-plus::before{content:"\F1584"}.mdi-lotion-plus-outline::before{content:"\F1585"}.mdi-loupe::before{content:"\F0345"}.mdi-lumx::before{content:"\F0346"}.mdi-lungs::before{content:"\F1084"}.mdi-mace::before{content:"\F1843"}.mdi-magazine-pistol::before{content:"\F0324"}.mdi-magazine-rifle::before{content:"\F0323"}.mdi-magic-staff::before{content:"\F1844"}.mdi-magnet::before{content:"\F0347"}.mdi-magnet-on::before{content:"\F0348"}.mdi-magnify::before{content:"\F0349"}.mdi-magnify-close::before{content:"\F0980"}.mdi-magnify-expand::before{content:"\F1874"}.mdi-magnify-minus::before{content:"\F034A"}.mdi-magnify-minus-cursor::before{content:"\F0A62"}.mdi-magnify-minus-outline::before{content:"\F06EC"}.mdi-magnify-plus::before{content:"\F034B"}.mdi-magnify-plus-cursor::before{content:"\F0A63"}.mdi-magnify-plus-outline::before{content:"\F06ED"}.mdi-magnify-remove-cursor::before{content:"\F120C"}.mdi-magnify-remove-outline::before{content:"\F120D"}.mdi-magnify-scan::before{content:"\F1276"}.mdi-mail::before{content:"\F0EBB"}.mdi-mailbox::before{content:"\F06EE"}.mdi-mailbox-open::before{content:"\F0D88"}.mdi-mailbox-open-outline::before{content:"\F0D89"}.mdi-mailbox-open-up::before{content:"\F0D8A"}.mdi-mailbox-open-up-outline::before{content:"\F0D8B"}.mdi-mailbox-outline::before{content:"\F0D8C"}.mdi-mailbox-up::before{content:"\F0D8D"}.mdi-mailbox-up-outline::before{content:"\F0D8E"}.mdi-manjaro::before{content:"\F160A"}.mdi-map::before{content:"\F034D"}.mdi-map-check::before{content:"\F0EBC"}.mdi-map-check-outline::before{content:"\F0EBD"}.mdi-map-clock::before{content:"\F0D1E"}.mdi-map-clock-outline::before{content:"\F0D1F"}.mdi-map-legend::before{content:"\F0A01"}.mdi-map-marker::before{content:"\F034E"}.mdi-map-marker-account::before{content:"\F18E3"}.mdi-map-marker-account-outline::before{content:"\F18E4"}.mdi-map-marker-alert::before{content:"\F0F05"}.mdi-map-marker-alert-outline::before{content:"\F0F06"}.mdi-map-marker-check::before{content:"\F0C95"}.mdi-map-marker-check-outline::before{content:"\F12FB"}.mdi-map-marker-circle::before{content:"\F034F"}.mdi-map-marker-distance::before{content:"\F08F0"}.mdi-map-marker-down::before{content:"\F1102"}.mdi-map-marker-left::before{content:"\F12DB"}.mdi-map-marker-left-outline::before{content:"\F12DD"}.mdi-map-marker-minus::before{content:"\F0650"}.mdi-map-marker-minus-outline::before{content:"\F12F9"}.mdi-map-marker-multiple::before{content:"\F0350"}.mdi-map-marker-multiple-outline::before{content:"\F1277"}.mdi-map-marker-off::before{content:"\F0351"}.mdi-map-marker-off-outline::before{content:"\F12FD"}.mdi-map-marker-outline::before{content:"\F07D9"}.mdi-map-marker-path::before{content:"\F0D20"}.mdi-map-marker-plus::before{content:"\F0651"}.mdi-map-marker-plus-outline::before{content:"\F12F8"}.mdi-map-marker-question::before{content:"\F0F07"}.mdi-map-marker-question-outline::before{content:"\F0F08"}.mdi-map-marker-radius::before{content:"\F0352"}.mdi-map-marker-radius-outline::before{content:"\F12FC"}.mdi-map-marker-remove::before{content:"\F0F09"}.mdi-map-marker-remove-outline::before{content:"\F12FA"}.mdi-map-marker-remove-variant::before{content:"\F0F0A"}.mdi-map-marker-right::before{content:"\F12DC"}.mdi-map-marker-right-outline::before{content:"\F12DE"}.mdi-map-marker-star::before{content:"\F1608"}.mdi-map-marker-star-outline::before{content:"\F1609"}.mdi-map-marker-up::before{content:"\F1103"}.mdi-map-minus::before{content:"\F0981"}.mdi-map-outline::before{content:"\F0982"}.mdi-map-plus::before{content:"\F0983"}.mdi-map-search::before{content:"\F0984"}.mdi-map-search-outline::before{content:"\F0985"}.mdi-mapbox::before{content:"\F0BAA"}.mdi-margin::before{content:"\F0353"}.mdi-marker::before{content:"\F0652"}.mdi-marker-cancel::before{content:"\F0DD9"}.mdi-marker-check::before{content:"\F0355"}.mdi-mastodon::before{content:"\F0AD1"}.mdi-material-design::before{content:"\F0986"}.mdi-material-ui::before{content:"\F0357"}.mdi-math-compass::before{content:"\F0358"}.mdi-math-cos::before{content:"\F0C96"}.mdi-math-integral::before{content:"\F0FC8"}.mdi-math-integral-box::before{content:"\F0FC9"}.mdi-math-log::before{content:"\F1085"}.mdi-math-norm::before{content:"\F0FCA"}.mdi-math-norm-box::before{content:"\F0FCB"}.mdi-math-sin::before{content:"\F0C97"}.mdi-math-tan::before{content:"\F0C98"}.mdi-matrix::before{content:"\F0628"}.mdi-medal::before{content:"\F0987"}.mdi-medal-outline::before{content:"\F1326"}.mdi-medical-bag::before{content:"\F06EF"}.mdi-medical-cotton-swab::before{content:"\F1AB8"}.mdi-medication::before{content:"\F1B14"}.mdi-medication-outline::before{content:"\F1B15"}.mdi-meditation::before{content:"\F117B"}.mdi-memory::before{content:"\F035B"}.mdi-menorah::before{content:"\F17D4"}.mdi-menorah-fire::before{content:"\F17D5"}.mdi-menu::before{content:"\F035C"}.mdi-menu-down::before{content:"\F035D"}.mdi-menu-down-outline::before{content:"\F06B6"}.mdi-menu-left::before{content:"\F035E"}.mdi-menu-left-outline::before{content:"\F0A02"}.mdi-menu-open::before{content:"\F0BAB"}.mdi-menu-right::before{content:"\F035F"}.mdi-menu-right-outline::before{content:"\F0A03"}.mdi-menu-swap::before{content:"\F0A64"}.mdi-menu-swap-outline::before{content:"\F0A65"}.mdi-menu-up::before{content:"\F0360"}.mdi-menu-up-outline::before{content:"\F06B7"}.mdi-merge::before{content:"\F0F5C"}.mdi-message::before{content:"\F0361"}.mdi-message-alert::before{content:"\F0362"}.mdi-message-alert-outline::before{content:"\F0A04"}.mdi-message-arrow-left::before{content:"\F12F2"}.mdi-message-arrow-left-outline::before{content:"\F12F3"}.mdi-message-arrow-right::before{content:"\F12F4"}.mdi-message-arrow-right-outline::before{content:"\F12F5"}.mdi-message-badge::before{content:"\F1941"}.mdi-message-badge-outline::before{content:"\F1942"}.mdi-message-bookmark::before{content:"\F15AC"}.mdi-message-bookmark-outline::before{content:"\F15AD"}.mdi-message-bulleted::before{content:"\F06A2"}.mdi-message-bulleted-off::before{content:"\F06A3"}.mdi-message-check::before{content:"\F1B8A"}.mdi-message-check-outline::before{content:"\F1B8B"}.mdi-message-cog::before{content:"\F06F1"}.mdi-message-cog-outline::before{content:"\F1172"}.mdi-message-draw::before{content:"\F0363"}.mdi-message-fast::before{content:"\F19CC"}.mdi-message-fast-outline::before{content:"\F19CD"}.mdi-message-flash::before{content:"\F15A9"}.mdi-message-flash-outline::before{content:"\F15AA"}.mdi-message-image::before{content:"\F0364"}.mdi-message-image-outline::before{content:"\F116C"}.mdi-message-lock::before{content:"\F0FCC"}.mdi-message-lock-outline::before{content:"\F116D"}.mdi-message-minus::before{content:"\F116E"}.mdi-message-minus-outline::before{content:"\F116F"}.mdi-message-off::before{content:"\F164D"}.mdi-message-off-outline::before{content:"\F164E"}.mdi-message-outline::before{content:"\F0365"}.mdi-message-plus::before{content:"\F0653"}.mdi-message-plus-outline::before{content:"\F10BB"}.mdi-message-processing::before{content:"\F0366"}.mdi-message-processing-outline::before{content:"\F1170"}.mdi-message-question::before{content:"\F173A"}.mdi-message-question-outline::before{content:"\F173B"}.mdi-message-reply::before{content:"\F0367"}.mdi-message-reply-outline::before{content:"\F173D"}.mdi-message-reply-text::before{content:"\F0368"}.mdi-message-reply-text-outline::before{content:"\F173E"}.mdi-message-settings::before{content:"\F06F0"}.mdi-message-settings-outline::before{content:"\F1171"}.mdi-message-star::before{content:"\F069A"}.mdi-message-star-outline::before{content:"\F1250"}.mdi-message-text::before{content:"\F0369"}.mdi-message-text-clock::before{content:"\F1173"}.mdi-message-text-clock-outline::before{content:"\F1174"}.mdi-message-text-fast::before{content:"\F19CE"}.mdi-message-text-fast-outline::before{content:"\F19CF"}.mdi-message-text-lock::before{content:"\F0FCD"}.mdi-message-text-lock-outline::before{content:"\F1175"}.mdi-message-text-outline::before{content:"\F036A"}.mdi-message-video::before{content:"\F036B"}.mdi-meteor::before{content:"\F0629"}.mdi-meter-electric::before{content:"\F1A57"}.mdi-meter-electric-outline::before{content:"\F1A58"}.mdi-meter-gas::before{content:"\F1A59"}.mdi-meter-gas-outline::before{content:"\F1A5A"}.mdi-metronome::before{content:"\F07DA"}.mdi-metronome-tick::before{content:"\F07DB"}.mdi-micro-sd::before{content:"\F07DC"}.mdi-microphone::before{content:"\F036C"}.mdi-microphone-message::before{content:"\F050A"}.mdi-microphone-message-off::before{content:"\F050B"}.mdi-microphone-minus::before{content:"\F08B3"}.mdi-microphone-off::before{content:"\F036D"}.mdi-microphone-outline::before{content:"\F036E"}.mdi-microphone-plus::before{content:"\F08B4"}.mdi-microphone-question::before{content:"\F1989"}.mdi-microphone-question-outline::before{content:"\F198A"}.mdi-microphone-settings::before{content:"\F036F"}.mdi-microphone-variant::before{content:"\F0370"}.mdi-microphone-variant-off::before{content:"\F0371"}.mdi-microscope::before{content:"\F0654"}.mdi-microsoft::before{content:"\F0372"}.mdi-microsoft-access::before{content:"\F138E"}.mdi-microsoft-azure::before{content:"\F0805"}.mdi-microsoft-azure-devops::before{content:"\F0FD5"}.mdi-microsoft-bing::before{content:"\F00A4"}.mdi-microsoft-dynamics-365::before{content:"\F0988"}.mdi-microsoft-edge::before{content:"\F01E9"}.mdi-microsoft-excel::before{content:"\F138F"}.mdi-microsoft-internet-explorer::before{content:"\F0300"}.mdi-microsoft-office::before{content:"\F03C6"}.mdi-microsoft-onedrive::before{content:"\F03CA"}.mdi-microsoft-onenote::before{content:"\F0747"}.mdi-microsoft-outlook::before{content:"\F0D22"}.mdi-microsoft-powerpoint::before{content:"\F1390"}.mdi-microsoft-sharepoint::before{content:"\F1391"}.mdi-microsoft-teams::before{content:"\F02BB"}.mdi-microsoft-visual-studio::before{content:"\F0610"}.mdi-microsoft-visual-studio-code::before{content:"\F0A1E"}.mdi-microsoft-windows::before{content:"\F05B3"}.mdi-microsoft-windows-classic::before{content:"\F0A21"}.mdi-microsoft-word::before{content:"\F1392"}.mdi-microsoft-xbox::before{content:"\F05B9"}.mdi-microsoft-xbox-controller::before{content:"\F05BA"}.mdi-microsoft-xbox-controller-battery-alert::before{content:"\F074B"}.mdi-microsoft-xbox-controller-battery-charging::before{content:"\F0A22"}.mdi-microsoft-xbox-controller-battery-empty::before{content:"\F074C"}.mdi-microsoft-xbox-controller-battery-full::before{content:"\F074D"}.mdi-microsoft-xbox-controller-battery-low::before{content:"\F074E"}.mdi-microsoft-xbox-controller-battery-medium::before{content:"\F074F"}.mdi-microsoft-xbox-controller-battery-unknown::before{content:"\F0750"}.mdi-microsoft-xbox-controller-menu::before{content:"\F0E6F"}.mdi-microsoft-xbox-controller-off::before{content:"\F05BB"}.mdi-microsoft-xbox-controller-view::before{content:"\F0E70"}.mdi-microwave::before{content:"\F0C99"}.mdi-microwave-off::before{content:"\F1423"}.mdi-middleware::before{content:"\F0F5D"}.mdi-middleware-outline::before{content:"\F0F5E"}.mdi-midi::before{content:"\F08F1"}.mdi-midi-port::before{content:"\F08F2"}.mdi-mine::before{content:"\F0DDA"}.mdi-minecraft::before{content:"\F0373"}.mdi-mini-sd::before{content:"\F0A05"}.mdi-minidisc::before{content:"\F0A06"}.mdi-minus::before{content:"\F0374"}.mdi-minus-box::before{content:"\F0375"}.mdi-minus-box-multiple::before{content:"\F1141"}.mdi-minus-box-multiple-outline::before{content:"\F1142"}.mdi-minus-box-outline::before{content:"\F06F2"}.mdi-minus-circle::before{content:"\F0376"}.mdi-minus-circle-multiple::before{content:"\F035A"}.mdi-minus-circle-multiple-outline::before{content:"\F0AD3"}.mdi-minus-circle-off::before{content:"\F1459"}.mdi-minus-circle-off-outline::before{content:"\F145A"}.mdi-minus-circle-outline::before{content:"\F0377"}.mdi-minus-network::before{content:"\F0378"}.mdi-minus-network-outline::before{content:"\F0C9A"}.mdi-minus-thick::before{content:"\F1639"}.mdi-mirror::before{content:"\F11FD"}.mdi-mirror-rectangle::before{content:"\F179F"}.mdi-mirror-variant::before{content:"\F17A0"}.mdi-mixed-martial-arts::before{content:"\F0D8F"}.mdi-mixed-reality::before{content:"\F087F"}.mdi-molecule::before{content:"\F0BAC"}.mdi-molecule-co::before{content:"\F12FE"}.mdi-molecule-co2::before{content:"\F07E4"}.mdi-monitor::before{content:"\F0379"}.mdi-monitor-account::before{content:"\F1A5B"}.mdi-monitor-arrow-down::before{content:"\F19D0"}.mdi-monitor-arrow-down-variant::before{content:"\F19D1"}.mdi-monitor-cellphone::before{content:"\F0989"}.mdi-monitor-cellphone-star::before{content:"\F098A"}.mdi-monitor-dashboard::before{content:"\F0A07"}.mdi-monitor-edit::before{content:"\F12C6"}.mdi-monitor-eye::before{content:"\F13B4"}.mdi-monitor-lock::before{content:"\F0DDB"}.mdi-monitor-multiple::before{content:"\F037A"}.mdi-monitor-off::before{content:"\F0D90"}.mdi-monitor-screenshot::before{content:"\F0E51"}.mdi-monitor-share::before{content:"\F1483"}.mdi-monitor-shimmer::before{content:"\F1104"}.mdi-monitor-small::before{content:"\F1876"}.mdi-monitor-speaker::before{content:"\F0F5F"}.mdi-monitor-speaker-off::before{content:"\F0F60"}.mdi-monitor-star::before{content:"\F0DDC"}.mdi-monitor-vertical::before{content:"\F1C33"}.mdi-moon-first-quarter::before{content:"\F0F61"}.mdi-moon-full::before{content:"\F0F62"}.mdi-moon-last-quarter::before{content:"\F0F63"}.mdi-moon-new::before{content:"\F0F64"}.mdi-moon-waning-crescent::before{content:"\F0F65"}.mdi-moon-waning-gibbous::before{content:"\F0F66"}.mdi-moon-waxing-crescent::before{content:"\F0F67"}.mdi-moon-waxing-gibbous::before{content:"\F0F68"}.mdi-moped::before{content:"\F1086"}.mdi-moped-electric::before{content:"\F15B7"}.mdi-moped-electric-outline::before{content:"\F15B8"}.mdi-moped-outline::before{content:"\F15B9"}.mdi-more::before{content:"\F037B"}.mdi-mortar-pestle::before{content:"\F1748"}.mdi-mortar-pestle-plus::before{content:"\F03F1"}.mdi-mosque::before{content:"\F0D45"}.mdi-mosque-outline::before{content:"\F1827"}.mdi-mother-heart::before{content:"\F1314"}.mdi-mother-nurse::before{content:"\F0D21"}.mdi-motion::before{content:"\F15B2"}.mdi-motion-outline::before{content:"\F15B3"}.mdi-motion-pause::before{content:"\F1590"}.mdi-motion-pause-outline::before{content:"\F1592"}.mdi-motion-play::before{content:"\F158F"}.mdi-motion-play-outline::before{content:"\F1591"}.mdi-motion-sensor::before{content:"\F0D91"}.mdi-motion-sensor-off::before{content:"\F1435"}.mdi-motorbike::before{content:"\F037C"}.mdi-motorbike-electric::before{content:"\F15BA"}.mdi-motorbike-off::before{content:"\F1B16"}.mdi-mouse::before{content:"\F037D"}.mdi-mouse-bluetooth::before{content:"\F098B"}.mdi-mouse-move-down::before{content:"\F1550"}.mdi-mouse-move-up::before{content:"\F1551"}.mdi-mouse-move-vertical::before{content:"\F1552"}.mdi-mouse-off::before{content:"\F037E"}.mdi-mouse-variant::before{content:"\F037F"}.mdi-mouse-variant-off::before{content:"\F0380"}.mdi-move-resize::before{content:"\F0655"}.mdi-move-resize-variant::before{content:"\F0656"}.mdi-movie::before{content:"\F0381"}.mdi-movie-check::before{content:"\F16F3"}.mdi-movie-check-outline::before{content:"\F16F4"}.mdi-movie-cog::before{content:"\F16F5"}.mdi-movie-cog-outline::before{content:"\F16F6"}.mdi-movie-edit::before{content:"\F1122"}.mdi-movie-edit-outline::before{content:"\F1123"}.mdi-movie-filter::before{content:"\F1124"}.mdi-movie-filter-outline::before{content:"\F1125"}.mdi-movie-minus::before{content:"\F16F7"}.mdi-movie-minus-outline::before{content:"\F16F8"}.mdi-movie-off::before{content:"\F16F9"}.mdi-movie-off-outline::before{content:"\F16FA"}.mdi-movie-open::before{content:"\F0FCE"}.mdi-movie-open-check::before{content:"\F16FB"}.mdi-movie-open-check-outline::before{content:"\F16FC"}.mdi-movie-open-cog::before{content:"\F16FD"}.mdi-movie-open-cog-outline::before{content:"\F16FE"}.mdi-movie-open-edit::before{content:"\F16FF"}.mdi-movie-open-edit-outline::before{content:"\F1700"}.mdi-movie-open-minus::before{content:"\F1701"}.mdi-movie-open-minus-outline::before{content:"\F1702"}.mdi-movie-open-off::before{content:"\F1703"}.mdi-movie-open-off-outline::before{content:"\F1704"}.mdi-movie-open-outline::before{content:"\F0FCF"}.mdi-movie-open-play::before{content:"\F1705"}.mdi-movie-open-play-outline::before{content:"\F1706"}.mdi-movie-open-plus::before{content:"\F1707"}.mdi-movie-open-plus-outline::before{content:"\F1708"}.mdi-movie-open-remove::before{content:"\F1709"}.mdi-movie-open-remove-outline::before{content:"\F170A"}.mdi-movie-open-settings::before{content:"\F170B"}.mdi-movie-open-settings-outline::before{content:"\F170C"}.mdi-movie-open-star::before{content:"\F170D"}.mdi-movie-open-star-outline::before{content:"\F170E"}.mdi-movie-outline::before{content:"\F0DDD"}.mdi-movie-play::before{content:"\F170F"}.mdi-movie-play-outline::before{content:"\F1710"}.mdi-movie-plus::before{content:"\F1711"}.mdi-movie-plus-outline::before{content:"\F1712"}.mdi-movie-remove::before{content:"\F1713"}.mdi-movie-remove-outline::before{content:"\F1714"}.mdi-movie-roll::before{content:"\F07DE"}.mdi-movie-search::before{content:"\F11D2"}.mdi-movie-search-outline::before{content:"\F11D3"}.mdi-movie-settings::before{content:"\F1715"}.mdi-movie-settings-outline::before{content:"\F1716"}.mdi-movie-star::before{content:"\F1717"}.mdi-movie-star-outline::before{content:"\F1718"}.mdi-mower::before{content:"\F166F"}.mdi-mower-bag::before{content:"\F1670"}.mdi-mower-bag-on::before{content:"\F1B60"}.mdi-mower-on::before{content:"\F1B5F"}.mdi-muffin::before{content:"\F098C"}.mdi-multicast::before{content:"\F1893"}.mdi-multimedia::before{content:"\F1B97"}.mdi-multiplication::before{content:"\F0382"}.mdi-multiplication-box::before{content:"\F0383"}.mdi-mushroom::before{content:"\F07DF"}.mdi-mushroom-off::before{content:"\F13FA"}.mdi-mushroom-off-outline::before{content:"\F13FB"}.mdi-mushroom-outline::before{content:"\F07E0"}.mdi-music::before{content:"\F075A"}.mdi-music-accidental-double-flat::before{content:"\F0F69"}.mdi-music-accidental-double-sharp::before{content:"\F0F6A"}.mdi-music-accidental-flat::before{content:"\F0F6B"}.mdi-music-accidental-natural::before{content:"\F0F6C"}.mdi-music-accidental-sharp::before{content:"\F0F6D"}.mdi-music-box::before{content:"\F0384"}.mdi-music-box-multiple::before{content:"\F0333"}.mdi-music-box-multiple-outline::before{content:"\F0F04"}.mdi-music-box-outline::before{content:"\F0385"}.mdi-music-circle::before{content:"\F0386"}.mdi-music-circle-outline::before{content:"\F0AD4"}.mdi-music-clef-alto::before{content:"\F0F6E"}.mdi-music-clef-bass::before{content:"\F0F6F"}.mdi-music-clef-treble::before{content:"\F0F70"}.mdi-music-note::before{content:"\F0387"}.mdi-music-note-bluetooth::before{content:"\F05FE"}.mdi-music-note-bluetooth-off::before{content:"\F05FF"}.mdi-music-note-eighth::before{content:"\F0388"}.mdi-music-note-eighth-dotted::before{content:"\F0F71"}.mdi-music-note-half::before{content:"\F0389"}.mdi-music-note-half-dotted::before{content:"\F0F72"}.mdi-music-note-minus::before{content:"\F1B89"}.mdi-music-note-off::before{content:"\F038A"}.mdi-music-note-off-outline::before{content:"\F0F73"}.mdi-music-note-outline::before{content:"\F0F74"}.mdi-music-note-plus::before{content:"\F0DDE"}.mdi-music-note-quarter::before{content:"\F038B"}.mdi-music-note-quarter-dotted::before{content:"\F0F75"}.mdi-music-note-sixteenth::before{content:"\F038C"}.mdi-music-note-sixteenth-dotted::before{content:"\F0F76"}.mdi-music-note-whole::before{content:"\F038D"}.mdi-music-note-whole-dotted::before{content:"\F0F77"}.mdi-music-off::before{content:"\F075B"}.mdi-music-rest-eighth::before{content:"\F0F78"}.mdi-music-rest-half::before{content:"\F0F79"}.mdi-music-rest-quarter::before{content:"\F0F7A"}.mdi-music-rest-sixteenth::before{content:"\F0F7B"}.mdi-music-rest-whole::before{content:"\F0F7C"}.mdi-mustache::before{content:"\F15DE"}.mdi-nail::before{content:"\F0DDF"}.mdi-nas::before{content:"\F08F3"}.mdi-nativescript::before{content:"\F0880"}.mdi-nature::before{content:"\F038E"}.mdi-nature-outline::before{content:"\F1C71"}.mdi-nature-people::before{content:"\F038F"}.mdi-nature-people-outline::before{content:"\F1C72"}.mdi-navigation::before{content:"\F0390"}.mdi-navigation-outline::before{content:"\F1607"}.mdi-navigation-variant::before{content:"\F18F0"}.mdi-navigation-variant-outline::before{content:"\F18F1"}.mdi-near-me::before{content:"\F05CD"}.mdi-necklace::before{content:"\F0F0B"}.mdi-needle::before{content:"\F0391"}.mdi-needle-off::before{content:"\F19D2"}.mdi-netflix::before{content:"\F0746"}.mdi-network::before{content:"\F06F3"}.mdi-network-off::before{content:"\F0C9B"}.mdi-network-off-outline::before{content:"\F0C9C"}.mdi-network-outline::before{content:"\F0C9D"}.mdi-network-pos::before{content:"\F1ACB"}.mdi-network-strength-1::before{content:"\F08F4"}.mdi-network-strength-1-alert::before{content:"\F08F5"}.mdi-network-strength-2::before{content:"\F08F6"}.mdi-network-strength-2-alert::before{content:"\F08F7"}.mdi-network-strength-3::before{content:"\F08F8"}.mdi-network-strength-3-alert::before{content:"\F08F9"}.mdi-network-strength-4::before{content:"\F08FA"}.mdi-network-strength-4-alert::before{content:"\F08FB"}.mdi-network-strength-4-cog::before{content:"\F191A"}.mdi-network-strength-off::before{content:"\F08FC"}.mdi-network-strength-off-outline::before{content:"\F08FD"}.mdi-network-strength-outline::before{content:"\F08FE"}.mdi-new-box::before{content:"\F0394"}.mdi-newspaper::before{content:"\F0395"}.mdi-newspaper-check::before{content:"\F1943"}.mdi-newspaper-minus::before{content:"\F0F0C"}.mdi-newspaper-plus::before{content:"\F0F0D"}.mdi-newspaper-remove::before{content:"\F1944"}.mdi-newspaper-variant::before{content:"\F1001"}.mdi-newspaper-variant-multiple::before{content:"\F1002"}.mdi-newspaper-variant-multiple-outline::before{content:"\F1003"}.mdi-newspaper-variant-outline::before{content:"\F1004"}.mdi-nfc::before{content:"\F0396"}.mdi-nfc-search-variant::before{content:"\F0E53"}.mdi-nfc-tap::before{content:"\F0397"}.mdi-nfc-variant::before{content:"\F0398"}.mdi-nfc-variant-off::before{content:"\F0E54"}.mdi-ninja::before{content:"\F0774"}.mdi-nintendo-game-boy::before{content:"\F1393"}.mdi-nintendo-switch::before{content:"\F07E1"}.mdi-nintendo-wii::before{content:"\F05AB"}.mdi-nintendo-wiiu::before{content:"\F072D"}.mdi-nix::before{content:"\F1105"}.mdi-nodejs::before{content:"\F0399"}.mdi-noodles::before{content:"\F117E"}.mdi-not-equal::before{content:"\F098D"}.mdi-not-equal-variant::before{content:"\F098E"}.mdi-note::before{content:"\F039A"}.mdi-note-alert::before{content:"\F177D"}.mdi-note-alert-outline::before{content:"\F177E"}.mdi-note-check::before{content:"\F177F"}.mdi-note-check-outline::before{content:"\F1780"}.mdi-note-edit::before{content:"\F1781"}.mdi-note-edit-outline::before{content:"\F1782"}.mdi-note-minus::before{content:"\F164F"}.mdi-note-minus-outline::before{content:"\F1650"}.mdi-note-multiple::before{content:"\F06B8"}.mdi-note-multiple-outline::before{content:"\F06B9"}.mdi-note-off::before{content:"\F1783"}.mdi-note-off-outline::before{content:"\F1784"}.mdi-note-outline::before{content:"\F039B"}.mdi-note-plus::before{content:"\F039C"}.mdi-note-plus-outline::before{content:"\F039D"}.mdi-note-remove::before{content:"\F1651"}.mdi-note-remove-outline::before{content:"\F1652"}.mdi-note-search::before{content:"\F1653"}.mdi-note-search-outline::before{content:"\F1654"}.mdi-note-text::before{content:"\F039E"}.mdi-note-text-outline::before{content:"\F11D7"}.mdi-notebook::before{content:"\F082E"}.mdi-notebook-check::before{content:"\F14F5"}.mdi-notebook-check-outline::before{content:"\F14F6"}.mdi-notebook-edit::before{content:"\F14E7"}.mdi-notebook-edit-outline::before{content:"\F14E9"}.mdi-notebook-heart::before{content:"\F1A0B"}.mdi-notebook-heart-outline::before{content:"\F1A0C"}.mdi-notebook-minus::before{content:"\F1610"}.mdi-notebook-minus-outline::before{content:"\F1611"}.mdi-notebook-multiple::before{content:"\F0E55"}.mdi-notebook-outline::before{content:"\F0EBF"}.mdi-notebook-plus::before{content:"\F1612"}.mdi-notebook-plus-outline::before{content:"\F1613"}.mdi-notebook-remove::before{content:"\F1614"}.mdi-notebook-remove-outline::before{content:"\F1615"}.mdi-notification-clear-all::before{content:"\F039F"}.mdi-npm::before{content:"\F06F7"}.mdi-nuke::before{content:"\F06A4"}.mdi-null::before{content:"\F07E2"}.mdi-numeric::before{content:"\F03A0"}.mdi-numeric-0::before{content:"\F0B39"}.mdi-numeric-0-box::before{content:"\F03A1"}.mdi-numeric-0-box-multiple::before{content:"\F0F0E"}.mdi-numeric-0-box-multiple-outline::before{content:"\F03A2"}.mdi-numeric-0-box-outline::before{content:"\F03A3"}.mdi-numeric-0-circle::before{content:"\F0C9E"}.mdi-numeric-0-circle-outline::before{content:"\F0C9F"}.mdi-numeric-1::before{content:"\F0B3A"}.mdi-numeric-1-box::before{content:"\F03A4"}.mdi-numeric-1-box-multiple::before{content:"\F0F0F"}.mdi-numeric-1-box-multiple-outline::before{content:"\F03A5"}.mdi-numeric-1-box-outline::before{content:"\F03A6"}.mdi-numeric-1-circle::before{content:"\F0CA0"}.mdi-numeric-1-circle-outline::before{content:"\F0CA1"}.mdi-numeric-10::before{content:"\F0FE9"}.mdi-numeric-10-box::before{content:"\F0F7D"}.mdi-numeric-10-box-multiple::before{content:"\F0FEA"}.mdi-numeric-10-box-multiple-outline::before{content:"\F0FEB"}.mdi-numeric-10-box-outline::before{content:"\F0F7E"}.mdi-numeric-10-circle::before{content:"\F0FEC"}.mdi-numeric-10-circle-outline::before{content:"\F0FED"}.mdi-numeric-2::before{content:"\F0B3B"}.mdi-numeric-2-box::before{content:"\F03A7"}.mdi-numeric-2-box-multiple::before{content:"\F0F10"}.mdi-numeric-2-box-multiple-outline::before{content:"\F03A8"}.mdi-numeric-2-box-outline::before{content:"\F03A9"}.mdi-numeric-2-circle::before{content:"\F0CA2"}.mdi-numeric-2-circle-outline::before{content:"\F0CA3"}.mdi-numeric-3::before{content:"\F0B3C"}.mdi-numeric-3-box::before{content:"\F03AA"}.mdi-numeric-3-box-multiple::before{content:"\F0F11"}.mdi-numeric-3-box-multiple-outline::before{content:"\F03AB"}.mdi-numeric-3-box-outline::before{content:"\F03AC"}.mdi-numeric-3-circle::before{content:"\F0CA4"}.mdi-numeric-3-circle-outline::before{content:"\F0CA5"}.mdi-numeric-4::before{content:"\F0B3D"}.mdi-numeric-4-box::before{content:"\F03AD"}.mdi-numeric-4-box-multiple::before{content:"\F0F12"}.mdi-numeric-4-box-multiple-outline::before{content:"\F03B2"}.mdi-numeric-4-box-outline::before{content:"\F03AE"}.mdi-numeric-4-circle::before{content:"\F0CA6"}.mdi-numeric-4-circle-outline::before{content:"\F0CA7"}.mdi-numeric-5::before{content:"\F0B3E"}.mdi-numeric-5-box::before{content:"\F03B1"}.mdi-numeric-5-box-multiple::before{content:"\F0F13"}.mdi-numeric-5-box-multiple-outline::before{content:"\F03AF"}.mdi-numeric-5-box-outline::before{content:"\F03B0"}.mdi-numeric-5-circle::before{content:"\F0CA8"}.mdi-numeric-5-circle-outline::before{content:"\F0CA9"}.mdi-numeric-6::before{content:"\F0B3F"}.mdi-numeric-6-box::before{content:"\F03B3"}.mdi-numeric-6-box-multiple::before{content:"\F0F14"}.mdi-numeric-6-box-multiple-outline::before{content:"\F03B4"}.mdi-numeric-6-box-outline::before{content:"\F03B5"}.mdi-numeric-6-circle::before{content:"\F0CAA"}.mdi-numeric-6-circle-outline::before{content:"\F0CAB"}.mdi-numeric-7::before{content:"\F0B40"}.mdi-numeric-7-box::before{content:"\F03B6"}.mdi-numeric-7-box-multiple::before{content:"\F0F15"}.mdi-numeric-7-box-multiple-outline::before{content:"\F03B7"}.mdi-numeric-7-box-outline::before{content:"\F03B8"}.mdi-numeric-7-circle::before{content:"\F0CAC"}.mdi-numeric-7-circle-outline::before{content:"\F0CAD"}.mdi-numeric-8::before{content:"\F0B41"}.mdi-numeric-8-box::before{content:"\F03B9"}.mdi-numeric-8-box-multiple::before{content:"\F0F16"}.mdi-numeric-8-box-multiple-outline::before{content:"\F03BA"}.mdi-numeric-8-box-outline::before{content:"\F03BB"}.mdi-numeric-8-circle::before{content:"\F0CAE"}.mdi-numeric-8-circle-outline::before{content:"\F0CAF"}.mdi-numeric-9::before{content:"\F0B42"}.mdi-numeric-9-box::before{content:"\F03BC"}.mdi-numeric-9-box-multiple::before{content:"\F0F17"}.mdi-numeric-9-box-multiple-outline::before{content:"\F03BD"}.mdi-numeric-9-box-outline::before{content:"\F03BE"}.mdi-numeric-9-circle::before{content:"\F0CB0"}.mdi-numeric-9-circle-outline::before{content:"\F0CB1"}.mdi-numeric-9-plus::before{content:"\F0FEE"}.mdi-numeric-9-plus-box::before{content:"\F03BF"}.mdi-numeric-9-plus-box-multiple::before{content:"\F0F18"}.mdi-numeric-9-plus-box-multiple-outline::before{content:"\F03C0"}.mdi-numeric-9-plus-box-outline::before{content:"\F03C1"}.mdi-numeric-9-plus-circle::before{content:"\F0CB2"}.mdi-numeric-9-plus-circle-outline::before{content:"\F0CB3"}.mdi-numeric-negative-1::before{content:"\F1052"}.mdi-numeric-off::before{content:"\F19D3"}.mdi-numeric-positive-1::before{content:"\F15CB"}.mdi-nut::before{content:"\F06F8"}.mdi-nutrition::before{content:"\F03C2"}.mdi-nuxt::before{content:"\F1106"}.mdi-oar::before{content:"\F067C"}.mdi-ocarina::before{content:"\F0DE0"}.mdi-oci::before{content:"\F12E9"}.mdi-ocr::before{content:"\F113A"}.mdi-octagon::before{content:"\F03C3"}.mdi-octagon-outline::before{content:"\F03C4"}.mdi-octagram::before{content:"\F06F9"}.mdi-octagram-edit::before{content:"\F1C34"}.mdi-octagram-edit-outline::before{content:"\F1C35"}.mdi-octagram-minus::before{content:"\F1C36"}.mdi-octagram-minus-outline::before{content:"\F1C37"}.mdi-octagram-outline::before{content:"\F0775"}.mdi-octagram-plus::before{content:"\F1C38"}.mdi-octagram-plus-outline::before{content:"\F1C39"}.mdi-octahedron::before{content:"\F1950"}.mdi-octahedron-off::before{content:"\F1951"}.mdi-odnoklassniki::before{content:"\F03C5"}.mdi-offer::before{content:"\F121B"}.mdi-office-building::before{content:"\F0991"}.mdi-office-building-cog::before{content:"\F1949"}.mdi-office-building-cog-outline::before{content:"\F194A"}.mdi-office-building-marker::before{content:"\F1520"}.mdi-office-building-marker-outline::before{content:"\F1521"}.mdi-office-building-minus::before{content:"\F1BAA"}.mdi-office-building-minus-outline::before{content:"\F1BAB"}.mdi-office-building-outline::before{content:"\F151F"}.mdi-office-building-plus::before{content:"\F1BA8"}.mdi-office-building-plus-outline::before{content:"\F1BA9"}.mdi-office-building-remove::before{content:"\F1BAC"}.mdi-office-building-remove-outline::before{content:"\F1BAD"}.mdi-oil::before{content:"\F03C7"}.mdi-oil-lamp::before{content:"\F0F19"}.mdi-oil-level::before{content:"\F1053"}.mdi-oil-temperature::before{content:"\F0FF8"}.mdi-om::before{content:"\F0973"}.mdi-omega::before{content:"\F03C9"}.mdi-one-up::before{content:"\F0BAD"}.mdi-onepassword::before{content:"\F0881"}.mdi-opacity::before{content:"\F05CC"}.mdi-open-in-app::before{content:"\F03CB"}.mdi-open-in-new::before{content:"\F03CC"}.mdi-open-source-initiative::before{content:"\F0BAE"}.mdi-openid::before{content:"\F03CD"}.mdi-opera::before{content:"\F03CE"}.mdi-orbit::before{content:"\F0018"}.mdi-orbit-variant::before{content:"\F15DB"}.mdi-order-alphabetical-ascending::before{content:"\F020D"}.mdi-order-alphabetical-descending::before{content:"\F0D07"}.mdi-order-bool-ascending::before{content:"\F02BE"}.mdi-order-bool-ascending-variant::before{content:"\F098F"}.mdi-order-bool-descending::before{content:"\F1384"}.mdi-order-bool-descending-variant::before{content:"\F0990"}.mdi-order-numeric-ascending::before{content:"\F0545"}.mdi-order-numeric-descending::before{content:"\F0546"}.mdi-origin::before{content:"\F0B43"}.mdi-ornament::before{content:"\F03CF"}.mdi-ornament-variant::before{content:"\F03D0"}.mdi-outdoor-lamp::before{content:"\F1054"}.mdi-overscan::before{content:"\F1005"}.mdi-owl::before{content:"\F03D2"}.mdi-pac-man::before{content:"\F0BAF"}.mdi-package::before{content:"\F03D3"}.mdi-package-check::before{content:"\F1B51"}.mdi-package-down::before{content:"\F03D4"}.mdi-package-up::before{content:"\F03D5"}.mdi-package-variant::before{content:"\F03D6"}.mdi-package-variant-closed::before{content:"\F03D7"}.mdi-package-variant-closed-check::before{content:"\F1B52"}.mdi-package-variant-closed-minus::before{content:"\F19D4"}.mdi-package-variant-closed-plus::before{content:"\F19D5"}.mdi-package-variant-closed-remove::before{content:"\F19D6"}.mdi-package-variant-minus::before{content:"\F19D7"}.mdi-package-variant-plus::before{content:"\F19D8"}.mdi-package-variant-remove::before{content:"\F19D9"}.mdi-page-first::before{content:"\F0600"}.mdi-page-last::before{content:"\F0601"}.mdi-page-layout-body::before{content:"\F06FA"}.mdi-page-layout-footer::before{content:"\F06FB"}.mdi-page-layout-header::before{content:"\F06FC"}.mdi-page-layout-header-footer::before{content:"\F0F7F"}.mdi-page-layout-sidebar-left::before{content:"\F06FD"}.mdi-page-layout-sidebar-right::before{content:"\F06FE"}.mdi-page-next::before{content:"\F0BB0"}.mdi-page-next-outline::before{content:"\F0BB1"}.mdi-page-previous::before{content:"\F0BB2"}.mdi-page-previous-outline::before{content:"\F0BB3"}.mdi-pail::before{content:"\F1417"}.mdi-pail-minus::before{content:"\F1437"}.mdi-pail-minus-outline::before{content:"\F143C"}.mdi-pail-off::before{content:"\F1439"}.mdi-pail-off-outline::before{content:"\F143E"}.mdi-pail-outline::before{content:"\F143A"}.mdi-pail-plus::before{content:"\F1436"}.mdi-pail-plus-outline::before{content:"\F143B"}.mdi-pail-remove::before{content:"\F1438"}.mdi-pail-remove-outline::before{content:"\F143D"}.mdi-palette::before{content:"\F03D8"}.mdi-palette-advanced::before{content:"\F03D9"}.mdi-palette-outline::before{content:"\F0E0C"}.mdi-palette-swatch::before{content:"\F08B5"}.mdi-palette-swatch-outline::before{content:"\F135C"}.mdi-palette-swatch-variant::before{content:"\F195A"}.mdi-palm-tree::before{content:"\F1055"}.mdi-pan::before{content:"\F0BB4"}.mdi-pan-bottom-left::before{content:"\F0BB5"}.mdi-pan-bottom-right::before{content:"\F0BB6"}.mdi-pan-down::before{content:"\F0BB7"}.mdi-pan-horizontal::before{content:"\F0BB8"}.mdi-pan-left::before{content:"\F0BB9"}.mdi-pan-right::before{content:"\F0BBA"}.mdi-pan-top-left::before{content:"\F0BBB"}.mdi-pan-top-right::before{content:"\F0BBC"}.mdi-pan-up::before{content:"\F0BBD"}.mdi-pan-vertical::before{content:"\F0BBE"}.mdi-panda::before{content:"\F03DA"}.mdi-pandora::before{content:"\F03DB"}.mdi-panorama::before{content:"\F03DC"}.mdi-panorama-fisheye::before{content:"\F03DD"}.mdi-panorama-horizontal::before{content:"\F1928"}.mdi-panorama-horizontal-outline::before{content:"\F03DE"}.mdi-panorama-outline::before{content:"\F198C"}.mdi-panorama-sphere::before{content:"\F198D"}.mdi-panorama-sphere-outline::before{content:"\F198E"}.mdi-panorama-variant::before{content:"\F198F"}.mdi-panorama-variant-outline::before{content:"\F1990"}.mdi-panorama-vertical::before{content:"\F1929"}.mdi-panorama-vertical-outline::before{content:"\F03DF"}.mdi-panorama-wide-angle::before{content:"\F195F"}.mdi-panorama-wide-angle-outline::before{content:"\F03E0"}.mdi-paper-cut-vertical::before{content:"\F03E1"}.mdi-paper-roll::before{content:"\F1157"}.mdi-paper-roll-outline::before{content:"\F1158"}.mdi-paperclip::before{content:"\F03E2"}.mdi-paperclip-check::before{content:"\F1AC6"}.mdi-paperclip-lock::before{content:"\F19DA"}.mdi-paperclip-minus::before{content:"\F1AC7"}.mdi-paperclip-off::before{content:"\F1AC8"}.mdi-paperclip-plus::before{content:"\F1AC9"}.mdi-paperclip-remove::before{content:"\F1ACA"}.mdi-parachute::before{content:"\F0CB4"}.mdi-parachute-outline::before{content:"\F0CB5"}.mdi-paragliding::before{content:"\F1745"}.mdi-parking::before{content:"\F03E3"}.mdi-party-popper::before{content:"\F1056"}.mdi-passport::before{content:"\F07E3"}.mdi-passport-biometric::before{content:"\F0DE1"}.mdi-pasta::before{content:"\F1160"}.mdi-patio-heater::before{content:"\F0F80"}.mdi-patreon::before{content:"\F0882"}.mdi-pause::before{content:"\F03E4"}.mdi-pause-box::before{content:"\F00BC"}.mdi-pause-box-outline::before{content:"\F1B7A"}.mdi-pause-circle::before{content:"\F03E5"}.mdi-pause-circle-outline::before{content:"\F03E6"}.mdi-pause-octagon::before{content:"\F03E7"}.mdi-pause-octagon-outline::before{content:"\F03E8"}.mdi-paw::before{content:"\F03E9"}.mdi-paw-off::before{content:"\F0657"}.mdi-paw-off-outline::before{content:"\F1676"}.mdi-paw-outline::before{content:"\F1675"}.mdi-peace::before{content:"\F0884"}.mdi-peanut::before{content:"\F0FFC"}.mdi-peanut-off::before{content:"\F0FFD"}.mdi-peanut-off-outline::before{content:"\F0FFF"}.mdi-peanut-outline::before{content:"\F0FFE"}.mdi-pen::before{content:"\F03EA"}.mdi-pen-lock::before{content:"\F0DE2"}.mdi-pen-minus::before{content:"\F0DE3"}.mdi-pen-off::before{content:"\F0DE4"}.mdi-pen-plus::before{content:"\F0DE5"}.mdi-pen-remove::before{content:"\F0DE6"}.mdi-pencil::before{content:"\F03EB"}.mdi-pencil-box::before{content:"\F03EC"}.mdi-pencil-box-multiple::before{content:"\F1144"}.mdi-pencil-box-multiple-outline::before{content:"\F1145"}.mdi-pencil-box-outline::before{content:"\F03ED"}.mdi-pencil-circle::before{content:"\F06FF"}.mdi-pencil-circle-outline::before{content:"\F0776"}.mdi-pencil-lock::before{content:"\F03EE"}.mdi-pencil-lock-outline::before{content:"\F0DE7"}.mdi-pencil-minus::before{content:"\F0DE8"}.mdi-pencil-minus-outline::before{content:"\F0DE9"}.mdi-pencil-off::before{content:"\F03EF"}.mdi-pencil-off-outline::before{content:"\F0DEA"}.mdi-pencil-outline::before{content:"\F0CB6"}.mdi-pencil-plus::before{content:"\F0DEB"}.mdi-pencil-plus-outline::before{content:"\F0DEC"}.mdi-pencil-remove::before{content:"\F0DED"}.mdi-pencil-remove-outline::before{content:"\F0DEE"}.mdi-pencil-ruler::before{content:"\F1353"}.mdi-pencil-ruler-outline::before{content:"\F1C11"}.mdi-penguin::before{content:"\F0EC0"}.mdi-pentagon::before{content:"\F0701"}.mdi-pentagon-outline::before{content:"\F0700"}.mdi-pentagram::before{content:"\F1667"}.mdi-percent::before{content:"\F03F0"}.mdi-percent-box::before{content:"\F1A02"}.mdi-percent-box-outline::before{content:"\F1A03"}.mdi-percent-circle::before{content:"\F1A04"}.mdi-percent-circle-outline::before{content:"\F1A05"}.mdi-percent-outline::before{content:"\F1278"}.mdi-periodic-table::before{content:"\F08B6"}.mdi-perspective-less::before{content:"\F0D23"}.mdi-perspective-more::before{content:"\F0D24"}.mdi-ph::before{content:"\F17C5"}.mdi-phone::before{content:"\F03F2"}.mdi-phone-alert::before{content:"\F0F1A"}.mdi-phone-alert-outline::before{content:"\F118E"}.mdi-phone-bluetooth::before{content:"\F03F3"}.mdi-phone-bluetooth-outline::before{content:"\F118F"}.mdi-phone-cancel::before{content:"\F10BC"}.mdi-phone-cancel-outline::before{content:"\F1190"}.mdi-phone-check::before{content:"\F11A9"}.mdi-phone-check-outline::before{content:"\F11AA"}.mdi-phone-classic::before{content:"\F0602"}.mdi-phone-classic-off::before{content:"\F1279"}.mdi-phone-clock::before{content:"\F19DB"}.mdi-phone-dial::before{content:"\F1559"}.mdi-phone-dial-outline::before{content:"\F155A"}.mdi-phone-forward::before{content:"\F03F4"}.mdi-phone-forward-outline::before{content:"\F1191"}.mdi-phone-hangup::before{content:"\F03F5"}.mdi-phone-hangup-outline::before{content:"\F1192"}.mdi-phone-in-talk::before{content:"\F03F6"}.mdi-phone-in-talk-outline::before{content:"\F1182"}.mdi-phone-incoming::before{content:"\F03F7"}.mdi-phone-incoming-outgoing::before{content:"\F1B3F"}.mdi-phone-incoming-outgoing-outline::before{content:"\F1B40"}.mdi-phone-incoming-outline::before{content:"\F1193"}.mdi-phone-lock::before{content:"\F03F8"}.mdi-phone-lock-outline::before{content:"\F1194"}.mdi-phone-log::before{content:"\F03F9"}.mdi-phone-log-outline::before{content:"\F1195"}.mdi-phone-message::before{content:"\F1196"}.mdi-phone-message-outline::before{content:"\F1197"}.mdi-phone-minus::before{content:"\F0658"}.mdi-phone-minus-outline::before{content:"\F1198"}.mdi-phone-missed::before{content:"\F03FA"}.mdi-phone-missed-outline::before{content:"\F11A5"}.mdi-phone-off::before{content:"\F0DEF"}.mdi-phone-off-outline::before{content:"\F11A6"}.mdi-phone-outgoing::before{content:"\F03FB"}.mdi-phone-outgoing-outline::before{content:"\F1199"}.mdi-phone-outline::before{content:"\F0DF0"}.mdi-phone-paused::before{content:"\F03FC"}.mdi-phone-paused-outline::before{content:"\F119A"}.mdi-phone-plus::before{content:"\F0659"}.mdi-phone-plus-outline::before{content:"\F119B"}.mdi-phone-refresh::before{content:"\F1993"}.mdi-phone-refresh-outline::before{content:"\F1994"}.mdi-phone-remove::before{content:"\F152F"}.mdi-phone-remove-outline::before{content:"\F1530"}.mdi-phone-return::before{content:"\F082F"}.mdi-phone-return-outline::before{content:"\F119C"}.mdi-phone-ring::before{content:"\F11AB"}.mdi-phone-ring-outline::before{content:"\F11AC"}.mdi-phone-rotate-landscape::before{content:"\F0885"}.mdi-phone-rotate-portrait::before{content:"\F0886"}.mdi-phone-settings::before{content:"\F03FD"}.mdi-phone-settings-outline::before{content:"\F119D"}.mdi-phone-sync::before{content:"\F1995"}.mdi-phone-sync-outline::before{content:"\F1996"}.mdi-phone-voip::before{content:"\F03FE"}.mdi-pi::before{content:"\F03FF"}.mdi-pi-box::before{content:"\F0400"}.mdi-pi-hole::before{content:"\F0DF1"}.mdi-piano::before{content:"\F067D"}.mdi-piano-off::before{content:"\F0698"}.mdi-pickaxe::before{content:"\F08B7"}.mdi-picture-in-picture-bottom-right::before{content:"\F0E57"}.mdi-picture-in-picture-bottom-right-outline::before{content:"\F0E58"}.mdi-picture-in-picture-top-right::before{content:"\F0E59"}.mdi-picture-in-picture-top-right-outline::before{content:"\F0E5A"}.mdi-pier::before{content:"\F0887"}.mdi-pier-crane::before{content:"\F0888"}.mdi-pig::before{content:"\F0401"}.mdi-pig-variant::before{content:"\F1006"}.mdi-pig-variant-outline::before{content:"\F1678"}.mdi-piggy-bank::before{content:"\F1007"}.mdi-piggy-bank-outline::before{content:"\F1679"}.mdi-pill::before{content:"\F0402"}.mdi-pill-multiple::before{content:"\F1B4C"}.mdi-pill-off::before{content:"\F1A5C"}.mdi-pillar::before{content:"\F0702"}.mdi-pin::before{content:"\F0403"}.mdi-pin-off::before{content:"\F0404"}.mdi-pin-off-outline::before{content:"\F0930"}.mdi-pin-outline::before{content:"\F0931"}.mdi-pine-tree::before{content:"\F0405"}.mdi-pine-tree-box::before{content:"\F0406"}.mdi-pine-tree-fire::before{content:"\F141A"}.mdi-pine-tree-variant::before{content:"\F1C73"}.mdi-pine-tree-variant-outline::before{content:"\F1C74"}.mdi-pinterest::before{content:"\F0407"}.mdi-pinwheel::before{content:"\F0AD5"}.mdi-pinwheel-outline::before{content:"\F0AD6"}.mdi-pipe::before{content:"\F07E5"}.mdi-pipe-disconnected::before{content:"\F07E6"}.mdi-pipe-leak::before{content:"\F0889"}.mdi-pipe-valve::before{content:"\F184D"}.mdi-pipe-wrench::before{content:"\F1354"}.mdi-pirate::before{content:"\F0A08"}.mdi-pistol::before{content:"\F0703"}.mdi-piston::before{content:"\F088A"}.mdi-pitchfork::before{content:"\F1553"}.mdi-pizza::before{content:"\F0409"}.mdi-plane-car::before{content:"\F1AFF"}.mdi-plane-train::before{content:"\F1B00"}.mdi-play::before{content:"\F040A"}.mdi-play-box::before{content:"\F127A"}.mdi-play-box-edit-outline::before{content:"\F1C3A"}.mdi-play-box-lock::before{content:"\F1A16"}.mdi-play-box-lock-open::before{content:"\F1A17"}.mdi-play-box-lock-open-outline::before{content:"\F1A18"}.mdi-play-box-lock-outline::before{content:"\F1A19"}.mdi-play-box-multiple::before{content:"\F0D19"}.mdi-play-box-multiple-outline::before{content:"\F13E6"}.mdi-play-box-outline::before{content:"\F040B"}.mdi-play-circle::before{content:"\F040C"}.mdi-play-circle-outline::before{content:"\F040D"}.mdi-play-network::before{content:"\F088B"}.mdi-play-network-outline::before{content:"\F0CB7"}.mdi-play-outline::before{content:"\F0F1B"}.mdi-play-pause::before{content:"\F040E"}.mdi-play-protected-content::before{content:"\F040F"}.mdi-play-speed::before{content:"\F08FF"}.mdi-playlist-check::before{content:"\F05C7"}.mdi-playlist-edit::before{content:"\F0900"}.mdi-playlist-minus::before{content:"\F0410"}.mdi-playlist-music::before{content:"\F0CB8"}.mdi-playlist-music-outline::before{content:"\F0CB9"}.mdi-playlist-play::before{content:"\F0411"}.mdi-playlist-plus::before{content:"\F0412"}.mdi-playlist-remove::before{content:"\F0413"}.mdi-playlist-star::before{content:"\F0DF2"}.mdi-plex::before{content:"\F06BA"}.mdi-pliers::before{content:"\F19A4"}.mdi-plus::before{content:"\F0415"}.mdi-plus-box::before{content:"\F0416"}.mdi-plus-box-multiple::before{content:"\F0334"}.mdi-plus-box-multiple-outline::before{content:"\F1143"}.mdi-plus-box-outline::before{content:"\F0704"}.mdi-plus-circle::before{content:"\F0417"}.mdi-plus-circle-multiple::before{content:"\F034C"}.mdi-plus-circle-multiple-outline::before{content:"\F0418"}.mdi-plus-circle-outline::before{content:"\F0419"}.mdi-plus-lock::before{content:"\F1A5D"}.mdi-plus-lock-open::before{content:"\F1A5E"}.mdi-plus-minus::before{content:"\F0992"}.mdi-plus-minus-box::before{content:"\F0993"}.mdi-plus-minus-variant::before{content:"\F14C9"}.mdi-plus-network::before{content:"\F041A"}.mdi-plus-network-outline::before{content:"\F0CBA"}.mdi-plus-outline::before{content:"\F0705"}.mdi-plus-thick::before{content:"\F11EC"}.mdi-podcast::before{content:"\F0994"}.mdi-podium::before{content:"\F0D25"}.mdi-podium-bronze::before{content:"\F0D26"}.mdi-podium-gold::before{content:"\F0D27"}.mdi-podium-silver::before{content:"\F0D28"}.mdi-point-of-sale::before{content:"\F0D92"}.mdi-pokeball::before{content:"\F041D"}.mdi-pokemon-go::before{content:"\F0A09"}.mdi-poker-chip::before{content:"\F0830"}.mdi-polaroid::before{content:"\F041E"}.mdi-police-badge::before{content:"\F1167"}.mdi-police-badge-outline::before{content:"\F1168"}.mdi-police-station::before{content:"\F1839"}.mdi-poll::before{content:"\F041F"}.mdi-polo::before{content:"\F14C3"}.mdi-polymer::before{content:"\F0421"}.mdi-pool::before{content:"\F0606"}.mdi-pool-thermometer::before{content:"\F1A5F"}.mdi-popcorn::before{content:"\F0422"}.mdi-post::before{content:"\F1008"}.mdi-post-lamp::before{content:"\F1A60"}.mdi-post-outline::before{content:"\F1009"}.mdi-postage-stamp::before{content:"\F0CBB"}.mdi-pot::before{content:"\F02E5"}.mdi-pot-mix::before{content:"\F065B"}.mdi-pot-mix-outline::before{content:"\F0677"}.mdi-pot-outline::before{content:"\F02FF"}.mdi-pot-steam::before{content:"\F065A"}.mdi-pot-steam-outline::before{content:"\F0326"}.mdi-pound::before{content:"\F0423"}.mdi-pound-box::before{content:"\F0424"}.mdi-pound-box-outline::before{content:"\F117F"}.mdi-power::before{content:"\F0425"}.mdi-power-cycle::before{content:"\F0901"}.mdi-power-off::before{content:"\F0902"}.mdi-power-on::before{content:"\F0903"}.mdi-power-plug::before{content:"\F06A5"}.mdi-power-plug-battery::before{content:"\F1C3B"}.mdi-power-plug-battery-outline::before{content:"\F1C3C"}.mdi-power-plug-off::before{content:"\F06A6"}.mdi-power-plug-off-outline::before{content:"\F1424"}.mdi-power-plug-outline::before{content:"\F1425"}.mdi-power-settings::before{content:"\F0426"}.mdi-power-sleep::before{content:"\F0904"}.mdi-power-socket::before{content:"\F0427"}.mdi-power-socket-au::before{content:"\F0905"}.mdi-power-socket-ch::before{content:"\F0FB3"}.mdi-power-socket-de::before{content:"\F1107"}.mdi-power-socket-eu::before{content:"\F07E7"}.mdi-power-socket-fr::before{content:"\F1108"}.mdi-power-socket-it::before{content:"\F14FF"}.mdi-power-socket-jp::before{content:"\F1109"}.mdi-power-socket-uk::before{content:"\F07E8"}.mdi-power-socket-us::before{content:"\F07E9"}.mdi-power-standby::before{content:"\F0906"}.mdi-powershell::before{content:"\F0A0A"}.mdi-prescription::before{content:"\F0706"}.mdi-presentation::before{content:"\F0428"}.mdi-presentation-play::before{content:"\F0429"}.mdi-pretzel::before{content:"\F1562"}.mdi-printer::before{content:"\F042A"}.mdi-printer-3d::before{content:"\F042B"}.mdi-printer-3d-nozzle::before{content:"\F0E5B"}.mdi-printer-3d-nozzle-alert::before{content:"\F11C0"}.mdi-printer-3d-nozzle-alert-outline::before{content:"\F11C1"}.mdi-printer-3d-nozzle-heat::before{content:"\F18B8"}.mdi-printer-3d-nozzle-heat-outline::before{content:"\F18B9"}.mdi-printer-3d-nozzle-off::before{content:"\F1B19"}.mdi-printer-3d-nozzle-off-outline::before{content:"\F1B1A"}.mdi-printer-3d-nozzle-outline::before{content:"\F0E5C"}.mdi-printer-3d-off::before{content:"\F1B0E"}.mdi-printer-alert::before{content:"\F042C"}.mdi-printer-check::before{content:"\F1146"}.mdi-printer-eye::before{content:"\F1458"}.mdi-printer-off::before{content:"\F0E5D"}.mdi-printer-off-outline::before{content:"\F1785"}.mdi-printer-outline::before{content:"\F1786"}.mdi-printer-pos::before{content:"\F1057"}.mdi-printer-pos-alert::before{content:"\F1BBC"}.mdi-printer-pos-alert-outline::before{content:"\F1BBD"}.mdi-printer-pos-cancel::before{content:"\F1BBE"}.mdi-printer-pos-cancel-outline::before{content:"\F1BBF"}.mdi-printer-pos-check::before{content:"\F1BC0"}.mdi-printer-pos-check-outline::before{content:"\F1BC1"}.mdi-printer-pos-cog::before{content:"\F1BC2"}.mdi-printer-pos-cog-outline::before{content:"\F1BC3"}.mdi-printer-pos-edit::before{content:"\F1BC4"}.mdi-printer-pos-edit-outline::before{content:"\F1BC5"}.mdi-printer-pos-minus::before{content:"\F1BC6"}.mdi-printer-pos-minus-outline::before{content:"\F1BC7"}.mdi-printer-pos-network::before{content:"\F1BC8"}.mdi-printer-pos-network-outline::before{content:"\F1BC9"}.mdi-printer-pos-off::before{content:"\F1BCA"}.mdi-printer-pos-off-outline::before{content:"\F1BCB"}.mdi-printer-pos-outline::before{content:"\F1BCC"}.mdi-printer-pos-pause::before{content:"\F1BCD"}.mdi-printer-pos-pause-outline::before{content:"\F1BCE"}.mdi-printer-pos-play::before{content:"\F1BCF"}.mdi-printer-pos-play-outline::before{content:"\F1BD0"}.mdi-printer-pos-plus::before{content:"\F1BD1"}.mdi-printer-pos-plus-outline::before{content:"\F1BD2"}.mdi-printer-pos-refresh::before{content:"\F1BD3"}.mdi-printer-pos-refresh-outline::before{content:"\F1BD4"}.mdi-printer-pos-remove::before{content:"\F1BD5"}.mdi-printer-pos-remove-outline::before{content:"\F1BD6"}.mdi-printer-pos-star::before{content:"\F1BD7"}.mdi-printer-pos-star-outline::before{content:"\F1BD8"}.mdi-printer-pos-stop::before{content:"\F1BD9"}.mdi-printer-pos-stop-outline::before{content:"\F1BDA"}.mdi-printer-pos-sync::before{content:"\F1BDB"}.mdi-printer-pos-sync-outline::before{content:"\F1BDC"}.mdi-printer-pos-wrench::before{content:"\F1BDD"}.mdi-printer-pos-wrench-outline::before{content:"\F1BDE"}.mdi-printer-search::before{content:"\F1457"}.mdi-printer-settings::before{content:"\F0707"}.mdi-printer-wireless::before{content:"\F0A0B"}.mdi-priority-high::before{content:"\F0603"}.mdi-priority-low::before{content:"\F0604"}.mdi-professional-hexagon::before{content:"\F042D"}.mdi-progress-alert::before{content:"\F0CBC"}.mdi-progress-check::before{content:"\F0995"}.mdi-progress-clock::before{content:"\F0996"}.mdi-progress-close::before{content:"\F110A"}.mdi-progress-download::before{content:"\F0997"}.mdi-progress-helper::before{content:"\F1BA2"}.mdi-progress-pencil::before{content:"\F1787"}.mdi-progress-question::before{content:"\F1522"}.mdi-progress-star::before{content:"\F1788"}.mdi-progress-star-four-points::before{content:"\F1C3D"}.mdi-progress-upload::before{content:"\F0998"}.mdi-progress-wrench::before{content:"\F0CBD"}.mdi-projector::before{content:"\F042E"}.mdi-projector-off::before{content:"\F1A23"}.mdi-projector-screen::before{content:"\F042F"}.mdi-projector-screen-off::before{content:"\F180D"}.mdi-projector-screen-off-outline::before{content:"\F180E"}.mdi-projector-screen-outline::before{content:"\F1724"}.mdi-projector-screen-variant::before{content:"\F180F"}.mdi-projector-screen-variant-off::before{content:"\F1810"}.mdi-projector-screen-variant-off-outline::before{content:"\F1811"}.mdi-projector-screen-variant-outline::before{content:"\F1812"}.mdi-propane-tank::before{content:"\F1357"}.mdi-propane-tank-outline::before{content:"\F1358"}.mdi-protocol::before{content:"\F0FD8"}.mdi-publish::before{content:"\F06A7"}.mdi-publish-off::before{content:"\F1945"}.mdi-pulse::before{content:"\F0430"}.mdi-pump::before{content:"\F1402"}.mdi-pump-off::before{content:"\F1B22"}.mdi-pumpkin::before{content:"\F0BBF"}.mdi-purse::before{content:"\F0F1C"}.mdi-purse-outline::before{content:"\F0F1D"}.mdi-puzzle::before{content:"\F0431"}.mdi-puzzle-check::before{content:"\F1426"}.mdi-puzzle-check-outline::before{content:"\F1427"}.mdi-puzzle-edit::before{content:"\F14D3"}.mdi-puzzle-edit-outline::before{content:"\F14D9"}.mdi-puzzle-heart::before{content:"\F14D4"}.mdi-puzzle-heart-outline::before{content:"\F14DA"}.mdi-puzzle-minus::before{content:"\F14D1"}.mdi-puzzle-minus-outline::before{content:"\F14D7"}.mdi-puzzle-outline::before{content:"\F0A66"}.mdi-puzzle-plus::before{content:"\F14D0"}.mdi-puzzle-plus-outline::before{content:"\F14D6"}.mdi-puzzle-remove::before{content:"\F14D2"}.mdi-puzzle-remove-outline::before{content:"\F14D8"}.mdi-puzzle-star::before{content:"\F14D5"}.mdi-puzzle-star-outline::before{content:"\F14DB"}.mdi-pyramid::before{content:"\F1952"}.mdi-pyramid-off::before{content:"\F1953"}.mdi-qi::before{content:"\F0999"}.mdi-qqchat::before{content:"\F0605"}.mdi-qrcode::before{content:"\F0432"}.mdi-qrcode-edit::before{content:"\F08B8"}.mdi-qrcode-minus::before{content:"\F118C"}.mdi-qrcode-plus::before{content:"\F118B"}.mdi-qrcode-remove::before{content:"\F118D"}.mdi-qrcode-scan::before{content:"\F0433"}.mdi-quadcopter::before{content:"\F0434"}.mdi-quality-high::before{content:"\F0435"}.mdi-quality-low::before{content:"\F0A0C"}.mdi-quality-medium::before{content:"\F0A0D"}.mdi-quora::before{content:"\F0D29"}.mdi-rabbit::before{content:"\F0907"}.mdi-rabbit-variant::before{content:"\F1A61"}.mdi-rabbit-variant-outline::before{content:"\F1A62"}.mdi-racing-helmet::before{content:"\F0D93"}.mdi-racquetball::before{content:"\F0D94"}.mdi-radar::before{content:"\F0437"}.mdi-radiator::before{content:"\F0438"}.mdi-radiator-disabled::before{content:"\F0AD7"}.mdi-radiator-off::before{content:"\F0AD8"}.mdi-radio::before{content:"\F0439"}.mdi-radio-am::before{content:"\F0CBE"}.mdi-radio-fm::before{content:"\F0CBF"}.mdi-radio-handheld::before{content:"\F043A"}.mdi-radio-off::before{content:"\F121C"}.mdi-radio-tower::before{content:"\F043B"}.mdi-radioactive::before{content:"\F043C"}.mdi-radioactive-circle::before{content:"\F185D"}.mdi-radioactive-circle-outline::before{content:"\F185E"}.mdi-radioactive-off::before{content:"\F0EC1"}.mdi-radiobox-blank::before{content:"\F043D"}.mdi-radiobox-indeterminate-variant::before{content:"\F1C5E"}.mdi-radiobox-marked::before{content:"\F043E"}.mdi-radiology-box::before{content:"\F14C5"}.mdi-radiology-box-outline::before{content:"\F14C6"}.mdi-radius::before{content:"\F0CC0"}.mdi-radius-outline::before{content:"\F0CC1"}.mdi-railroad-light::before{content:"\F0F1E"}.mdi-rake::before{content:"\F1544"}.mdi-raspberry-pi::before{content:"\F043F"}.mdi-raw::before{content:"\F1A0F"}.mdi-raw-off::before{content:"\F1A10"}.mdi-ray-end::before{content:"\F0440"}.mdi-ray-end-arrow::before{content:"\F0441"}.mdi-ray-start::before{content:"\F0442"}.mdi-ray-start-arrow::before{content:"\F0443"}.mdi-ray-start-end::before{content:"\F0444"}.mdi-ray-start-vertex-end::before{content:"\F15D8"}.mdi-ray-vertex::before{content:"\F0445"}.mdi-razor-double-edge::before{content:"\F1997"}.mdi-razor-single-edge::before{content:"\F1998"}.mdi-react::before{content:"\F0708"}.mdi-read::before{content:"\F0447"}.mdi-receipt::before{content:"\F0824"}.mdi-receipt-clock::before{content:"\F1C3E"}.mdi-receipt-clock-outline::before{content:"\F1C3F"}.mdi-receipt-outline::before{content:"\F04F7"}.mdi-receipt-send::before{content:"\F1C40"}.mdi-receipt-send-outline::before{content:"\F1C41"}.mdi-receipt-text::before{content:"\F0449"}.mdi-receipt-text-arrow-left::before{content:"\F1C42"}.mdi-receipt-text-arrow-left-outline::before{content:"\F1C43"}.mdi-receipt-text-arrow-right::before{content:"\F1C44"}.mdi-receipt-text-arrow-right-outline::before{content:"\F1C45"}.mdi-receipt-text-check::before{content:"\F1A63"}.mdi-receipt-text-check-outline::before{content:"\F1A64"}.mdi-receipt-text-clock::before{content:"\F1C46"}.mdi-receipt-text-clock-outline::before{content:"\F1C47"}.mdi-receipt-text-edit::before{content:"\F1C48"}.mdi-receipt-text-edit-outline::before{content:"\F1C49"}.mdi-receipt-text-minus::before{content:"\F1A65"}.mdi-receipt-text-minus-outline::before{content:"\F1A66"}.mdi-receipt-text-outline::before{content:"\F19DC"}.mdi-receipt-text-plus::before{content:"\F1A67"}.mdi-receipt-text-plus-outline::before{content:"\F1A68"}.mdi-receipt-text-remove::before{content:"\F1A69"}.mdi-receipt-text-remove-outline::before{content:"\F1A6A"}.mdi-receipt-text-send::before{content:"\F1C4A"}.mdi-receipt-text-send-outline::before{content:"\F1C4B"}.mdi-record::before{content:"\F044A"}.mdi-record-circle::before{content:"\F0EC2"}.mdi-record-circle-outline::before{content:"\F0EC3"}.mdi-record-player::before{content:"\F099A"}.mdi-record-rec::before{content:"\F044B"}.mdi-rectangle::before{content:"\F0E5E"}.mdi-rectangle-outline::before{content:"\F0E5F"}.mdi-recycle::before{content:"\F044C"}.mdi-recycle-variant::before{content:"\F139D"}.mdi-reddit::before{content:"\F044D"}.mdi-redhat::before{content:"\F111B"}.mdi-redo::before{content:"\F044E"}.mdi-redo-variant::before{content:"\F044F"}.mdi-reflect-horizontal::before{content:"\F0A0E"}.mdi-reflect-vertical::before{content:"\F0A0F"}.mdi-refresh::before{content:"\F0450"}.mdi-refresh-auto::before{content:"\F18F2"}.mdi-refresh-circle::before{content:"\F1377"}.mdi-regex::before{content:"\F0451"}.mdi-registered-trademark::before{content:"\F0A67"}.mdi-reiterate::before{content:"\F1588"}.mdi-relation-many-to-many::before{content:"\F1496"}.mdi-relation-many-to-one::before{content:"\F1497"}.mdi-relation-many-to-one-or-many::before{content:"\F1498"}.mdi-relation-many-to-only-one::before{content:"\F1499"}.mdi-relation-many-to-zero-or-many::before{content:"\F149A"}.mdi-relation-many-to-zero-or-one::before{content:"\F149B"}.mdi-relation-one-or-many-to-many::before{content:"\F149C"}.mdi-relation-one-or-many-to-one::before{content:"\F149D"}.mdi-relation-one-or-many-to-one-or-many::before{content:"\F149E"}.mdi-relation-one-or-many-to-only-one::before{content:"\F149F"}.mdi-relation-one-or-many-to-zero-or-many::before{content:"\F14A0"}.mdi-relation-one-or-many-to-zero-or-one::before{content:"\F14A1"}.mdi-relation-one-to-many::before{content:"\F14A2"}.mdi-relation-one-to-one::before{content:"\F14A3"}.mdi-relation-one-to-one-or-many::before{content:"\F14A4"}.mdi-relation-one-to-only-one::before{content:"\F14A5"}.mdi-relation-one-to-zero-or-many::before{content:"\F14A6"}.mdi-relation-one-to-zero-or-one::before{content:"\F14A7"}.mdi-relation-only-one-to-many::before{content:"\F14A8"}.mdi-relation-only-one-to-one::before{content:"\F14A9"}.mdi-relation-only-one-to-one-or-many::before{content:"\F14AA"}.mdi-relation-only-one-to-only-one::before{content:"\F14AB"}.mdi-relation-only-one-to-zero-or-many::before{content:"\F14AC"}.mdi-relation-only-one-to-zero-or-one::before{content:"\F14AD"}.mdi-relation-zero-or-many-to-many::before{content:"\F14AE"}.mdi-relation-zero-or-many-to-one::before{content:"\F14AF"}.mdi-relation-zero-or-many-to-one-or-many::before{content:"\F14B0"}.mdi-relation-zero-or-many-to-only-one::before{content:"\F14B1"}.mdi-relation-zero-or-many-to-zero-or-many::before{content:"\F14B2"}.mdi-relation-zero-or-many-to-zero-or-one::before{content:"\F14B3"}.mdi-relation-zero-or-one-to-many::before{content:"\F14B4"}.mdi-relation-zero-or-one-to-one::before{content:"\F14B5"}.mdi-relation-zero-or-one-to-one-or-many::before{content:"\F14B6"}.mdi-relation-zero-or-one-to-only-one::before{content:"\F14B7"}.mdi-relation-zero-or-one-to-zero-or-many::before{content:"\F14B8"}.mdi-relation-zero-or-one-to-zero-or-one::before{content:"\F14B9"}.mdi-relative-scale::before{content:"\F0452"}.mdi-reload::before{content:"\F0453"}.mdi-reload-alert::before{content:"\F110B"}.mdi-reminder::before{content:"\F088C"}.mdi-remote::before{content:"\F0454"}.mdi-remote-desktop::before{content:"\F08B9"}.mdi-remote-off::before{content:"\F0EC4"}.mdi-remote-tv::before{content:"\F0EC5"}.mdi-remote-tv-off::before{content:"\F0EC6"}.mdi-rename::before{content:"\F1C18"}.mdi-rename-box::before{content:"\F0455"}.mdi-rename-box-outline::before{content:"\F1C19"}.mdi-rename-outline::before{content:"\F1C1A"}.mdi-reorder-horizontal::before{content:"\F0688"}.mdi-reorder-vertical::before{content:"\F0689"}.mdi-repeat::before{content:"\F0456"}.mdi-repeat-off::before{content:"\F0457"}.mdi-repeat-once::before{content:"\F0458"}.mdi-repeat-variant::before{content:"\F0547"}.mdi-replay::before{content:"\F0459"}.mdi-reply::before{content:"\F045A"}.mdi-reply-all::before{content:"\F045B"}.mdi-reply-all-outline::before{content:"\F0F1F"}.mdi-reply-circle::before{content:"\F11AE"}.mdi-reply-outline::before{content:"\F0F20"}.mdi-reproduction::before{content:"\F045C"}.mdi-resistor::before{content:"\F0B44"}.mdi-resistor-nodes::before{content:"\F0B45"}.mdi-resize::before{content:"\F0A68"}.mdi-resize-bottom-right::before{content:"\F045D"}.mdi-responsive::before{content:"\F045E"}.mdi-restart::before{content:"\F0709"}.mdi-restart-alert::before{content:"\F110C"}.mdi-restart-off::before{content:"\F0D95"}.mdi-restore::before{content:"\F099B"}.mdi-restore-alert::before{content:"\F110D"}.mdi-rewind::before{content:"\F045F"}.mdi-rewind-10::before{content:"\F0D2A"}.mdi-rewind-15::before{content:"\F1946"}.mdi-rewind-30::before{content:"\F0D96"}.mdi-rewind-45::before{content:"\F1B13"}.mdi-rewind-5::before{content:"\F11F9"}.mdi-rewind-60::before{content:"\F160C"}.mdi-rewind-outline::before{content:"\F070A"}.mdi-rhombus::before{content:"\F070B"}.mdi-rhombus-medium::before{content:"\F0A10"}.mdi-rhombus-medium-outline::before{content:"\F14DC"}.mdi-rhombus-outline::before{content:"\F070C"}.mdi-rhombus-split::before{content:"\F0A11"}.mdi-rhombus-split-outline::before{content:"\F14DD"}.mdi-ribbon::before{content:"\F0460"}.mdi-rice::before{content:"\F07EA"}.mdi-rickshaw::before{content:"\F15BB"}.mdi-rickshaw-electric::before{content:"\F15BC"}.mdi-ring::before{content:"\F07EB"}.mdi-rivet::before{content:"\F0E60"}.mdi-road::before{content:"\F0461"}.mdi-road-variant::before{content:"\F0462"}.mdi-robber::before{content:"\F1058"}.mdi-robot::before{content:"\F06A9"}.mdi-robot-angry::before{content:"\F169D"}.mdi-robot-angry-outline::before{content:"\F169E"}.mdi-robot-confused::before{content:"\F169F"}.mdi-robot-confused-outline::before{content:"\F16A0"}.mdi-robot-dead::before{content:"\F16A1"}.mdi-robot-dead-outline::before{content:"\F16A2"}.mdi-robot-excited::before{content:"\F16A3"}.mdi-robot-excited-outline::before{content:"\F16A4"}.mdi-robot-happy::before{content:"\F1719"}.mdi-robot-happy-outline::before{content:"\F171A"}.mdi-robot-industrial::before{content:"\F0B46"}.mdi-robot-industrial-outline::before{content:"\F1A1A"}.mdi-robot-love::before{content:"\F16A5"}.mdi-robot-love-outline::before{content:"\F16A6"}.mdi-robot-mower::before{content:"\F11F7"}.mdi-robot-mower-outline::before{content:"\F11F3"}.mdi-robot-off::before{content:"\F16A7"}.mdi-robot-off-outline::before{content:"\F167B"}.mdi-robot-outline::before{content:"\F167A"}.mdi-robot-vacuum::before{content:"\F070D"}.mdi-robot-vacuum-alert::before{content:"\F1B5D"}.mdi-robot-vacuum-off::before{content:"\F1C01"}.mdi-robot-vacuum-variant::before{content:"\F0908"}.mdi-robot-vacuum-variant-alert::before{content:"\F1B5E"}.mdi-robot-vacuum-variant-off::before{content:"\F1C02"}.mdi-rocket::before{content:"\F0463"}.mdi-rocket-launch::before{content:"\F14DE"}.mdi-rocket-launch-outline::before{content:"\F14DF"}.mdi-rocket-outline::before{content:"\F13AF"}.mdi-rodent::before{content:"\F1327"}.mdi-roller-shade::before{content:"\F1A6B"}.mdi-roller-shade-closed::before{content:"\F1A6C"}.mdi-roller-skate::before{content:"\F0D2B"}.mdi-roller-skate-off::before{content:"\F0145"}.mdi-rollerblade::before{content:"\F0D2C"}.mdi-rollerblade-off::before{content:"\F002E"}.mdi-rollupjs::before{content:"\F0BC0"}.mdi-rolodex::before{content:"\F1AB9"}.mdi-rolodex-outline::before{content:"\F1ABA"}.mdi-roman-numeral-1::before{content:"\F1088"}.mdi-roman-numeral-10::before{content:"\F1091"}.mdi-roman-numeral-2::before{content:"\F1089"}.mdi-roman-numeral-3::before{content:"\F108A"}.mdi-roman-numeral-4::before{content:"\F108B"}.mdi-roman-numeral-5::before{content:"\F108C"}.mdi-roman-numeral-6::before{content:"\F108D"}.mdi-roman-numeral-7::before{content:"\F108E"}.mdi-roman-numeral-8::before{content:"\F108F"}.mdi-roman-numeral-9::before{content:"\F1090"}.mdi-room-service::before{content:"\F088D"}.mdi-room-service-outline::before{content:"\F0D97"}.mdi-rotate-360::before{content:"\F1999"}.mdi-rotate-3d::before{content:"\F0EC7"}.mdi-rotate-3d-variant::before{content:"\F0464"}.mdi-rotate-left::before{content:"\F0465"}.mdi-rotate-left-variant::before{content:"\F0466"}.mdi-rotate-orbit::before{content:"\F0D98"}.mdi-rotate-right::before{content:"\F0467"}.mdi-rotate-right-variant::before{content:"\F0468"}.mdi-rounded-corner::before{content:"\F0607"}.mdi-router::before{content:"\F11E2"}.mdi-router-network::before{content:"\F1087"}.mdi-router-wireless::before{content:"\F0469"}.mdi-router-wireless-off::before{content:"\F15A3"}.mdi-router-wireless-settings::before{content:"\F0A69"}.mdi-routes::before{content:"\F046A"}.mdi-routes-clock::before{content:"\F1059"}.mdi-rowing::before{content:"\F0608"}.mdi-rss::before{content:"\F046B"}.mdi-rss-box::before{content:"\F046C"}.mdi-rss-off::before{content:"\F0F21"}.mdi-rug::before{content:"\F1475"}.mdi-rugby::before{content:"\F0D99"}.mdi-ruler::before{content:"\F046D"}.mdi-ruler-square::before{content:"\F0CC2"}.mdi-ruler-square-compass::before{content:"\F0EBE"}.mdi-run::before{content:"\F070E"}.mdi-run-fast::before{content:"\F046E"}.mdi-rv-truck::before{content:"\F11D4"}.mdi-sack::before{content:"\F0D2E"}.mdi-sack-outline::before{content:"\F1C4C"}.mdi-sack-percent::before{content:"\F0D2F"}.mdi-safe::before{content:"\F0A6A"}.mdi-safe-square::before{content:"\F127C"}.mdi-safe-square-outline::before{content:"\F127D"}.mdi-safety-goggles::before{content:"\F0D30"}.mdi-sail-boat::before{content:"\F0EC8"}.mdi-sail-boat-sink::before{content:"\F1AEF"}.mdi-sale::before{content:"\F046F"}.mdi-sale-outline::before{content:"\F1A06"}.mdi-salesforce::before{content:"\F088E"}.mdi-sass::before{content:"\F07EC"}.mdi-satellite::before{content:"\F0470"}.mdi-satellite-uplink::before{content:"\F0909"}.mdi-satellite-variant::before{content:"\F0471"}.mdi-sausage::before{content:"\F08BA"}.mdi-sausage-off::before{content:"\F1789"}.mdi-saw-blade::before{content:"\F0E61"}.mdi-sawtooth-wave::before{content:"\F147A"}.mdi-saxophone::before{content:"\F0609"}.mdi-scale::before{content:"\F0472"}.mdi-scale-balance::before{content:"\F05D1"}.mdi-scale-bathroom::before{content:"\F0473"}.mdi-scale-off::before{content:"\F105A"}.mdi-scale-unbalanced::before{content:"\F19B8"}.mdi-scan-helper::before{content:"\F13D8"}.mdi-scanner::before{content:"\F06AB"}.mdi-scanner-off::before{content:"\F090A"}.mdi-scatter-plot::before{content:"\F0EC9"}.mdi-scatter-plot-outline::before{content:"\F0ECA"}.mdi-scent::before{content:"\F1958"}.mdi-scent-off::before{content:"\F1959"}.mdi-school::before{content:"\F0474"}.mdi-school-outline::before{content:"\F1180"}.mdi-scissors-cutting::before{content:"\F0A6B"}.mdi-scooter::before{content:"\F15BD"}.mdi-scooter-electric::before{content:"\F15BE"}.mdi-scoreboard::before{content:"\F127E"}.mdi-scoreboard-outline::before{content:"\F127F"}.mdi-screen-rotation::before{content:"\F0475"}.mdi-screen-rotation-lock::before{content:"\F0478"}.mdi-screw-flat-top::before{content:"\F0DF3"}.mdi-screw-lag::before{content:"\F0DF4"}.mdi-screw-machine-flat-top::before{content:"\F0DF5"}.mdi-screw-machine-round-top::before{content:"\F0DF6"}.mdi-screw-round-top::before{content:"\F0DF7"}.mdi-screwdriver::before{content:"\F0476"}.mdi-script::before{content:"\F0BC1"}.mdi-script-outline::before{content:"\F0477"}.mdi-script-text::before{content:"\F0BC2"}.mdi-script-text-key::before{content:"\F1725"}.mdi-script-text-key-outline::before{content:"\F1726"}.mdi-script-text-outline::before{content:"\F0BC3"}.mdi-script-text-play::before{content:"\F1727"}.mdi-script-text-play-outline::before{content:"\F1728"}.mdi-sd::before{content:"\F0479"}.mdi-seal::before{content:"\F047A"}.mdi-seal-variant::before{content:"\F0FD9"}.mdi-search-web::before{content:"\F070F"}.mdi-seat::before{content:"\F0CC3"}.mdi-seat-flat::before{content:"\F047B"}.mdi-seat-flat-angled::before{content:"\F047C"}.mdi-seat-individual-suite::before{content:"\F047D"}.mdi-seat-legroom-extra::before{content:"\F047E"}.mdi-seat-legroom-normal::before{content:"\F047F"}.mdi-seat-legroom-reduced::before{content:"\F0480"}.mdi-seat-outline::before{content:"\F0CC4"}.mdi-seat-passenger::before{content:"\F1249"}.mdi-seat-recline-extra::before{content:"\F0481"}.mdi-seat-recline-normal::before{content:"\F0482"}.mdi-seatbelt::before{content:"\F0CC5"}.mdi-security::before{content:"\F0483"}.mdi-security-network::before{content:"\F0484"}.mdi-seed::before{content:"\F0E62"}.mdi-seed-off::before{content:"\F13FD"}.mdi-seed-off-outline::before{content:"\F13FE"}.mdi-seed-outline::before{content:"\F0E63"}.mdi-seed-plus::before{content:"\F1A6D"}.mdi-seed-plus-outline::before{content:"\F1A6E"}.mdi-seesaw::before{content:"\F15A4"}.mdi-segment::before{content:"\F0ECB"}.mdi-select::before{content:"\F0485"}.mdi-select-all::before{content:"\F0486"}.mdi-select-arrow-down::before{content:"\F1B59"}.mdi-select-arrow-up::before{content:"\F1B58"}.mdi-select-color::before{content:"\F0D31"}.mdi-select-compare::before{content:"\F0AD9"}.mdi-select-drag::before{content:"\F0A6C"}.mdi-select-group::before{content:"\F0F82"}.mdi-select-inverse::before{content:"\F0487"}.mdi-select-marker::before{content:"\F1280"}.mdi-select-multiple::before{content:"\F1281"}.mdi-select-multiple-marker::before{content:"\F1282"}.mdi-select-off::before{content:"\F0488"}.mdi-select-place::before{content:"\F0FDA"}.mdi-select-remove::before{content:"\F17C1"}.mdi-select-search::before{content:"\F1204"}.mdi-selection::before{content:"\F0489"}.mdi-selection-drag::before{content:"\F0A6D"}.mdi-selection-ellipse::before{content:"\F0D32"}.mdi-selection-ellipse-arrow-inside::before{content:"\F0F22"}.mdi-selection-ellipse-remove::before{content:"\F17C2"}.mdi-selection-marker::before{content:"\F1283"}.mdi-selection-multiple::before{content:"\F1285"}.mdi-selection-multiple-marker::before{content:"\F1284"}.mdi-selection-off::before{content:"\F0777"}.mdi-selection-remove::before{content:"\F17C3"}.mdi-selection-search::before{content:"\F1205"}.mdi-semantic-web::before{content:"\F1316"}.mdi-send::before{content:"\F048A"}.mdi-send-check::before{content:"\F1161"}.mdi-send-check-outline::before{content:"\F1162"}.mdi-send-circle::before{content:"\F0DF8"}.mdi-send-circle-outline::before{content:"\F0DF9"}.mdi-send-clock::before{content:"\F1163"}.mdi-send-clock-outline::before{content:"\F1164"}.mdi-send-lock::before{content:"\F07ED"}.mdi-send-lock-outline::before{content:"\F1166"}.mdi-send-outline::before{content:"\F1165"}.mdi-send-variant::before{content:"\F1C4D"}.mdi-send-variant-clock::before{content:"\F1C7E"}.mdi-send-variant-clock-outline::before{content:"\F1C7F"}.mdi-send-variant-outline::before{content:"\F1C4E"}.mdi-serial-port::before{content:"\F065C"}.mdi-server::before{content:"\F048B"}.mdi-server-minus::before{content:"\F048C"}.mdi-server-network::before{content:"\F048D"}.mdi-server-network-off::before{content:"\F048E"}.mdi-server-off::before{content:"\F048F"}.mdi-server-plus::before{content:"\F0490"}.mdi-server-remove::before{content:"\F0491"}.mdi-server-security::before{content:"\F0492"}.mdi-set-all::before{content:"\F0778"}.mdi-set-center::before{content:"\F0779"}.mdi-set-center-right::before{content:"\F077A"}.mdi-set-left::before{content:"\F077B"}.mdi-set-left-center::before{content:"\F077C"}.mdi-set-left-right::before{content:"\F077D"}.mdi-set-merge::before{content:"\F14E0"}.mdi-set-none::before{content:"\F077E"}.mdi-set-right::before{content:"\F077F"}.mdi-set-split::before{content:"\F14E1"}.mdi-set-square::before{content:"\F145D"}.mdi-set-top-box::before{content:"\F099F"}.mdi-settings-helper::before{content:"\F0A6E"}.mdi-shaker::before{content:"\F110E"}.mdi-shaker-outline::before{content:"\F110F"}.mdi-shape::before{content:"\F0831"}.mdi-shape-circle-plus::before{content:"\F065D"}.mdi-shape-outline::before{content:"\F0832"}.mdi-shape-oval-plus::before{content:"\F11FA"}.mdi-shape-plus::before{content:"\F0495"}.mdi-shape-plus-outline::before{content:"\F1C4F"}.mdi-shape-polygon-plus::before{content:"\F065E"}.mdi-shape-rectangle-plus::before{content:"\F065F"}.mdi-shape-square-plus::before{content:"\F0660"}.mdi-shape-square-rounded-plus::before{content:"\F14FA"}.mdi-share::before{content:"\F0496"}.mdi-share-all::before{content:"\F11F4"}.mdi-share-all-outline::before{content:"\F11F5"}.mdi-share-circle::before{content:"\F11AD"}.mdi-share-off::before{content:"\F0F23"}.mdi-share-off-outline::before{content:"\F0F24"}.mdi-share-outline::before{content:"\F0932"}.mdi-share-variant::before{content:"\F0497"}.mdi-share-variant-outline::before{content:"\F1514"}.mdi-shark::before{content:"\F18BA"}.mdi-shark-fin::before{content:"\F1673"}.mdi-shark-fin-outline::before{content:"\F1674"}.mdi-shark-off::before{content:"\F18BB"}.mdi-sheep::before{content:"\F0CC6"}.mdi-shield::before{content:"\F0498"}.mdi-shield-account::before{content:"\F088F"}.mdi-shield-account-outline::before{content:"\F0A12"}.mdi-shield-account-variant::before{content:"\F15A7"}.mdi-shield-account-variant-outline::before{content:"\F15A8"}.mdi-shield-airplane::before{content:"\F06BB"}.mdi-shield-airplane-outline::before{content:"\F0CC7"}.mdi-shield-alert::before{content:"\F0ECC"}.mdi-shield-alert-outline::before{content:"\F0ECD"}.mdi-shield-bug::before{content:"\F13DA"}.mdi-shield-bug-outline::before{content:"\F13DB"}.mdi-shield-car::before{content:"\F0F83"}.mdi-shield-check::before{content:"\F0565"}.mdi-shield-check-outline::before{content:"\F0CC8"}.mdi-shield-cross::before{content:"\F0CC9"}.mdi-shield-cross-outline::before{content:"\F0CCA"}.mdi-shield-crown::before{content:"\F18BC"}.mdi-shield-crown-outline::before{content:"\F18BD"}.mdi-shield-edit::before{content:"\F11A0"}.mdi-shield-edit-outline::before{content:"\F11A1"}.mdi-shield-half::before{content:"\F1360"}.mdi-shield-half-full::before{content:"\F0780"}.mdi-shield-home::before{content:"\F068A"}.mdi-shield-home-outline::before{content:"\F0CCB"}.mdi-shield-key::before{content:"\F0BC4"}.mdi-shield-key-outline::before{content:"\F0BC5"}.mdi-shield-link-variant::before{content:"\F0D33"}.mdi-shield-link-variant-outline::before{content:"\F0D34"}.mdi-shield-lock::before{content:"\F099D"}.mdi-shield-lock-open::before{content:"\F199A"}.mdi-shield-lock-open-outline::before{content:"\F199B"}.mdi-shield-lock-outline::before{content:"\F0CCC"}.mdi-shield-moon::before{content:"\F1828"}.mdi-shield-moon-outline::before{content:"\F1829"}.mdi-shield-off::before{content:"\F099E"}.mdi-shield-off-outline::before{content:"\F099C"}.mdi-shield-outline::before{content:"\F0499"}.mdi-shield-plus::before{content:"\F0ADA"}.mdi-shield-plus-outline::before{content:"\F0ADB"}.mdi-shield-refresh::before{content:"\F00AA"}.mdi-shield-refresh-outline::before{content:"\F01E0"}.mdi-shield-remove::before{content:"\F0ADC"}.mdi-shield-remove-outline::before{content:"\F0ADD"}.mdi-shield-search::before{content:"\F0D9A"}.mdi-shield-star::before{content:"\F113B"}.mdi-shield-star-outline::before{content:"\F113C"}.mdi-shield-sun::before{content:"\F105D"}.mdi-shield-sun-outline::before{content:"\F105E"}.mdi-shield-sword::before{content:"\F18BE"}.mdi-shield-sword-outline::before{content:"\F18BF"}.mdi-shield-sync::before{content:"\F11A2"}.mdi-shield-sync-outline::before{content:"\F11A3"}.mdi-shimmer::before{content:"\F1545"}.mdi-ship-wheel::before{content:"\F0833"}.mdi-shipping-pallet::before{content:"\F184E"}.mdi-shoe-ballet::before{content:"\F15CA"}.mdi-shoe-cleat::before{content:"\F15C7"}.mdi-shoe-formal::before{content:"\F0B47"}.mdi-shoe-heel::before{content:"\F0B48"}.mdi-shoe-print::before{content:"\F0DFA"}.mdi-shoe-sneaker::before{content:"\F15C8"}.mdi-shopping::before{content:"\F049A"}.mdi-shopping-music::before{content:"\F049B"}.mdi-shopping-outline::before{content:"\F11D5"}.mdi-shopping-search::before{content:"\F0F84"}.mdi-shopping-search-outline::before{content:"\F1A6F"}.mdi-shore::before{content:"\F14F9"}.mdi-shovel::before{content:"\F0710"}.mdi-shovel-off::before{content:"\F0711"}.mdi-shower::before{content:"\F09A0"}.mdi-shower-head::before{content:"\F09A1"}.mdi-shredder::before{content:"\F049C"}.mdi-shuffle::before{content:"\F049D"}.mdi-shuffle-disabled::before{content:"\F049E"}.mdi-shuffle-variant::before{content:"\F049F"}.mdi-shuriken::before{content:"\F137F"}.mdi-sickle::before{content:"\F18C0"}.mdi-sigma::before{content:"\F04A0"}.mdi-sigma-lower::before{content:"\F062B"}.mdi-sign-caution::before{content:"\F04A1"}.mdi-sign-direction::before{content:"\F0781"}.mdi-sign-direction-minus::before{content:"\F1000"}.mdi-sign-direction-plus::before{content:"\F0FDC"}.mdi-sign-direction-remove::before{content:"\F0FDD"}.mdi-sign-language::before{content:"\F1B4D"}.mdi-sign-language-outline::before{content:"\F1B4E"}.mdi-sign-pole::before{content:"\F14F8"}.mdi-sign-real-estate::before{content:"\F1118"}.mdi-sign-text::before{content:"\F0782"}.mdi-sign-yield::before{content:"\F1BAF"}.mdi-signal::before{content:"\F04A2"}.mdi-signal-2g::before{content:"\F0712"}.mdi-signal-3g::before{content:"\F0713"}.mdi-signal-4g::before{content:"\F0714"}.mdi-signal-5g::before{content:"\F0A6F"}.mdi-signal-cellular-1::before{content:"\F08BC"}.mdi-signal-cellular-2::before{content:"\F08BD"}.mdi-signal-cellular-3::before{content:"\F08BE"}.mdi-signal-cellular-outline::before{content:"\F08BF"}.mdi-signal-distance-variant::before{content:"\F0E64"}.mdi-signal-hspa::before{content:"\F0715"}.mdi-signal-hspa-plus::before{content:"\F0716"}.mdi-signal-off::before{content:"\F0783"}.mdi-signal-variant::before{content:"\F060A"}.mdi-signature::before{content:"\F0DFB"}.mdi-signature-freehand::before{content:"\F0DFC"}.mdi-signature-image::before{content:"\F0DFD"}.mdi-signature-text::before{content:"\F0DFE"}.mdi-silo::before{content:"\F1B9F"}.mdi-silo-outline::before{content:"\F0B49"}.mdi-silverware::before{content:"\F04A3"}.mdi-silverware-clean::before{content:"\F0FDE"}.mdi-silverware-fork::before{content:"\F04A4"}.mdi-silverware-fork-knife::before{content:"\F0A70"}.mdi-silverware-spoon::before{content:"\F04A5"}.mdi-silverware-variant::before{content:"\F04A6"}.mdi-sim::before{content:"\F04A7"}.mdi-sim-alert::before{content:"\F04A8"}.mdi-sim-alert-outline::before{content:"\F15D3"}.mdi-sim-off::before{content:"\F04A9"}.mdi-sim-off-outline::before{content:"\F15D4"}.mdi-sim-outline::before{content:"\F15D5"}.mdi-simple-icons::before{content:"\F131D"}.mdi-sina-weibo::before{content:"\F0ADF"}.mdi-sine-wave::before{content:"\F095B"}.mdi-sitemap::before{content:"\F04AA"}.mdi-sitemap-outline::before{content:"\F199C"}.mdi-size-l::before{content:"\F13A6"}.mdi-size-m::before{content:"\F13A5"}.mdi-size-s::before{content:"\F13A4"}.mdi-size-xl::before{content:"\F13A7"}.mdi-size-xs::before{content:"\F13A3"}.mdi-size-xxl::before{content:"\F13A8"}.mdi-size-xxs::before{content:"\F13A2"}.mdi-size-xxxl::before{content:"\F13A9"}.mdi-skate::before{content:"\F0D35"}.mdi-skate-off::before{content:"\F0699"}.mdi-skateboard::before{content:"\F14C2"}.mdi-skateboarding::before{content:"\F0501"}.mdi-skew-less::before{content:"\F0D36"}.mdi-skew-more::before{content:"\F0D37"}.mdi-ski::before{content:"\F1304"}.mdi-ski-cross-country::before{content:"\F1305"}.mdi-ski-water::before{content:"\F1306"}.mdi-skip-backward::before{content:"\F04AB"}.mdi-skip-backward-outline::before{content:"\F0F25"}.mdi-skip-forward::before{content:"\F04AC"}.mdi-skip-forward-outline::before{content:"\F0F26"}.mdi-skip-next::before{content:"\F04AD"}.mdi-skip-next-circle::before{content:"\F0661"}.mdi-skip-next-circle-outline::before{content:"\F0662"}.mdi-skip-next-outline::before{content:"\F0F27"}.mdi-skip-previous::before{content:"\F04AE"}.mdi-skip-previous-circle::before{content:"\F0663"}.mdi-skip-previous-circle-outline::before{content:"\F0664"}.mdi-skip-previous-outline::before{content:"\F0F28"}.mdi-skull::before{content:"\F068C"}.mdi-skull-crossbones::before{content:"\F0BC6"}.mdi-skull-crossbones-outline::before{content:"\F0BC7"}.mdi-skull-outline::before{content:"\F0BC8"}.mdi-skull-scan::before{content:"\F14C7"}.mdi-skull-scan-outline::before{content:"\F14C8"}.mdi-skype::before{content:"\F04AF"}.mdi-skype-business::before{content:"\F04B0"}.mdi-slack::before{content:"\F04B1"}.mdi-slash-forward::before{content:"\F0FDF"}.mdi-slash-forward-box::before{content:"\F0FE0"}.mdi-sledding::before{content:"\F041B"}.mdi-sleep::before{content:"\F04B2"}.mdi-sleep-off::before{content:"\F04B3"}.mdi-slide::before{content:"\F15A5"}.mdi-slope-downhill::before{content:"\F0DFF"}.mdi-slope-uphill::before{content:"\F0E00"}.mdi-slot-machine::before{content:"\F1114"}.mdi-slot-machine-outline::before{content:"\F1115"}.mdi-smart-card::before{content:"\F10BD"}.mdi-smart-card-off::before{content:"\F18F7"}.mdi-smart-card-off-outline::before{content:"\F18F8"}.mdi-smart-card-outline::before{content:"\F10BE"}.mdi-smart-card-reader::before{content:"\F10BF"}.mdi-smart-card-reader-outline::before{content:"\F10C0"}.mdi-smog::before{content:"\F0A71"}.mdi-smoke::before{content:"\F1799"}.mdi-smoke-detector::before{content:"\F0392"}.mdi-smoke-detector-alert::before{content:"\F192E"}.mdi-smoke-detector-alert-outline::before{content:"\F192F"}.mdi-smoke-detector-off::before{content:"\F1809"}.mdi-smoke-detector-off-outline::before{content:"\F180A"}.mdi-smoke-detector-outline::before{content:"\F1808"}.mdi-smoke-detector-variant::before{content:"\F180B"}.mdi-smoke-detector-variant-alert::before{content:"\F1930"}.mdi-smoke-detector-variant-off::before{content:"\F180C"}.mdi-smoking::before{content:"\F04B4"}.mdi-smoking-off::before{content:"\F04B5"}.mdi-smoking-pipe::before{content:"\F140D"}.mdi-smoking-pipe-off::before{content:"\F1428"}.mdi-snail::before{content:"\F1677"}.mdi-snake::before{content:"\F150E"}.mdi-snapchat::before{content:"\F04B6"}.mdi-snowboard::before{content:"\F1307"}.mdi-snowflake::before{content:"\F0717"}.mdi-snowflake-alert::before{content:"\F0F29"}.mdi-snowflake-check::before{content:"\F1A70"}.mdi-snowflake-melt::before{content:"\F12CB"}.mdi-snowflake-off::before{content:"\F14E3"}.mdi-snowflake-thermometer::before{content:"\F1A71"}.mdi-snowflake-variant::before{content:"\F0F2A"}.mdi-snowman::before{content:"\F04B7"}.mdi-snowmobile::before{content:"\F06DD"}.mdi-snowshoeing::before{content:"\F1A72"}.mdi-soccer::before{content:"\F04B8"}.mdi-soccer-field::before{content:"\F0834"}.mdi-social-distance-2-meters::before{content:"\F1579"}.mdi-social-distance-6-feet::before{content:"\F157A"}.mdi-sofa::before{content:"\F04B9"}.mdi-sofa-outline::before{content:"\F156D"}.mdi-sofa-single::before{content:"\F156E"}.mdi-sofa-single-outline::before{content:"\F156F"}.mdi-solar-panel::before{content:"\F0D9B"}.mdi-solar-panel-large::before{content:"\F0D9C"}.mdi-solar-power::before{content:"\F0A72"}.mdi-solar-power-variant::before{content:"\F1A73"}.mdi-solar-power-variant-outline::before{content:"\F1A74"}.mdi-soldering-iron::before{content:"\F1092"}.mdi-solid::before{content:"\F068D"}.mdi-sony-playstation::before{content:"\F0414"}.mdi-sort::before{content:"\F04BA"}.mdi-sort-alphabetical-ascending::before{content:"\F05BD"}.mdi-sort-alphabetical-ascending-variant::before{content:"\F1148"}.mdi-sort-alphabetical-descending::before{content:"\F05BF"}.mdi-sort-alphabetical-descending-variant::before{content:"\F1149"}.mdi-sort-alphabetical-variant::before{content:"\F04BB"}.mdi-sort-ascending::before{content:"\F04BC"}.mdi-sort-bool-ascending::before{content:"\F1385"}.mdi-sort-bool-ascending-variant::before{content:"\F1386"}.mdi-sort-bool-descending::before{content:"\F1387"}.mdi-sort-bool-descending-variant::before{content:"\F1388"}.mdi-sort-calendar-ascending::before{content:"\F1547"}.mdi-sort-calendar-descending::before{content:"\F1548"}.mdi-sort-clock-ascending::before{content:"\F1549"}.mdi-sort-clock-ascending-outline::before{content:"\F154A"}.mdi-sort-clock-descending::before{content:"\F154B"}.mdi-sort-clock-descending-outline::before{content:"\F154C"}.mdi-sort-descending::before{content:"\F04BD"}.mdi-sort-numeric-ascending::before{content:"\F1389"}.mdi-sort-numeric-ascending-variant::before{content:"\F090D"}.mdi-sort-numeric-descending::before{content:"\F138A"}.mdi-sort-numeric-descending-variant::before{content:"\F0AD2"}.mdi-sort-numeric-variant::before{content:"\F04BE"}.mdi-sort-reverse-variant::before{content:"\F033C"}.mdi-sort-variant::before{content:"\F04BF"}.mdi-sort-variant-lock::before{content:"\F0CCD"}.mdi-sort-variant-lock-open::before{content:"\F0CCE"}.mdi-sort-variant-off::before{content:"\F1ABB"}.mdi-sort-variant-remove::before{content:"\F1147"}.mdi-soundbar::before{content:"\F17DB"}.mdi-soundcloud::before{content:"\F04C0"}.mdi-source-branch::before{content:"\F062C"}.mdi-source-branch-check::before{content:"\F14CF"}.mdi-source-branch-minus::before{content:"\F14CB"}.mdi-source-branch-plus::before{content:"\F14CA"}.mdi-source-branch-refresh::before{content:"\F14CD"}.mdi-source-branch-remove::before{content:"\F14CC"}.mdi-source-branch-sync::before{content:"\F14CE"}.mdi-source-commit::before{content:"\F0718"}.mdi-source-commit-end::before{content:"\F0719"}.mdi-source-commit-end-local::before{content:"\F071A"}.mdi-source-commit-local::before{content:"\F071B"}.mdi-source-commit-next-local::before{content:"\F071C"}.mdi-source-commit-start::before{content:"\F071D"}.mdi-source-commit-start-next-local::before{content:"\F071E"}.mdi-source-fork::before{content:"\F04C1"}.mdi-source-merge::before{content:"\F062D"}.mdi-source-pull::before{content:"\F04C2"}.mdi-source-repository::before{content:"\F0CCF"}.mdi-source-repository-multiple::before{content:"\F0CD0"}.mdi-soy-sauce::before{content:"\F07EE"}.mdi-soy-sauce-off::before{content:"\F13FC"}.mdi-spa::before{content:"\F0CD1"}.mdi-spa-outline::before{content:"\F0CD2"}.mdi-space-invaders::before{content:"\F0BC9"}.mdi-space-station::before{content:"\F1383"}.mdi-spade::before{content:"\F0E65"}.mdi-speaker::before{content:"\F04C3"}.mdi-speaker-bluetooth::before{content:"\F09A2"}.mdi-speaker-message::before{content:"\F1B11"}.mdi-speaker-multiple::before{content:"\F0D38"}.mdi-speaker-off::before{content:"\F04C4"}.mdi-speaker-pause::before{content:"\F1B73"}.mdi-speaker-play::before{content:"\F1B72"}.mdi-speaker-stop::before{content:"\F1B74"}.mdi-speaker-wireless::before{content:"\F071F"}.mdi-spear::before{content:"\F1845"}.mdi-speedometer::before{content:"\F04C5"}.mdi-speedometer-medium::before{content:"\F0F85"}.mdi-speedometer-slow::before{content:"\F0F86"}.mdi-spellcheck::before{content:"\F04C6"}.mdi-sphere::before{content:"\F1954"}.mdi-sphere-off::before{content:"\F1955"}.mdi-spider::before{content:"\F11EA"}.mdi-spider-outline::before{content:"\F1C75"}.mdi-spider-thread::before{content:"\F11EB"}.mdi-spider-web::before{content:"\F0BCA"}.mdi-spirit-level::before{content:"\F14F1"}.mdi-spoon-sugar::before{content:"\F1429"}.mdi-spotify::before{content:"\F04C7"}.mdi-spotlight::before{content:"\F04C8"}.mdi-spotlight-beam::before{content:"\F04C9"}.mdi-spray::before{content:"\F0665"}.mdi-spray-bottle::before{content:"\F0AE0"}.mdi-sprinkler::before{content:"\F105F"}.mdi-sprinkler-fire::before{content:"\F199D"}.mdi-sprinkler-variant::before{content:"\F1060"}.mdi-sprout::before{content:"\F0E66"}.mdi-sprout-outline::before{content:"\F0E67"}.mdi-square::before{content:"\F0764"}.mdi-square-circle::before{content:"\F1500"}.mdi-square-circle-outline::before{content:"\F1C50"}.mdi-square-edit-outline::before{content:"\F090C"}.mdi-square-medium::before{content:"\F0A13"}.mdi-square-medium-outline::before{content:"\F0A14"}.mdi-square-off::before{content:"\F12EE"}.mdi-square-off-outline::before{content:"\F12EF"}.mdi-square-opacity::before{content:"\F1854"}.mdi-square-outline::before{content:"\F0763"}.mdi-square-root::before{content:"\F0784"}.mdi-square-root-box::before{content:"\F09A3"}.mdi-square-rounded::before{content:"\F14FB"}.mdi-square-rounded-badge::before{content:"\F1A07"}.mdi-square-rounded-badge-outline::before{content:"\F1A08"}.mdi-square-rounded-outline::before{content:"\F14FC"}.mdi-square-small::before{content:"\F0A15"}.mdi-square-wave::before{content:"\F147B"}.mdi-squeegee::before{content:"\F0AE1"}.mdi-ssh::before{content:"\F08C0"}.mdi-stack-exchange::before{content:"\F060B"}.mdi-stack-overflow::before{content:"\F04CC"}.mdi-stackpath::before{content:"\F0359"}.mdi-stadium::before{content:"\F0FF9"}.mdi-stadium-outline::before{content:"\F1B03"}.mdi-stadium-variant::before{content:"\F0720"}.mdi-stairs::before{content:"\F04CD"}.mdi-stairs-box::before{content:"\F139E"}.mdi-stairs-down::before{content:"\F12BE"}.mdi-stairs-up::before{content:"\F12BD"}.mdi-stamper::before{content:"\F0D39"}.mdi-standard-definition::before{content:"\F07EF"}.mdi-star::before{content:"\F04CE"}.mdi-star-box::before{content:"\F0A73"}.mdi-star-box-multiple::before{content:"\F1286"}.mdi-star-box-multiple-outline::before{content:"\F1287"}.mdi-star-box-outline::before{content:"\F0A74"}.mdi-star-check::before{content:"\F1566"}.mdi-star-check-outline::before{content:"\F156A"}.mdi-star-circle::before{content:"\F04CF"}.mdi-star-circle-outline::before{content:"\F09A4"}.mdi-star-cog::before{content:"\F1668"}.mdi-star-cog-outline::before{content:"\F1669"}.mdi-star-crescent::before{content:"\F0979"}.mdi-star-david::before{content:"\F097A"}.mdi-star-face::before{content:"\F09A5"}.mdi-star-four-points::before{content:"\F0AE2"}.mdi-star-four-points-box::before{content:"\F1C51"}.mdi-star-four-points-box-outline::before{content:"\F1C52"}.mdi-star-four-points-circle::before{content:"\F1C53"}.mdi-star-four-points-circle-outline::before{content:"\F1C54"}.mdi-star-four-points-outline::before{content:"\F0AE3"}.mdi-star-four-points-small::before{content:"\F1C55"}.mdi-star-half::before{content:"\F0246"}.mdi-star-half-full::before{content:"\F04D0"}.mdi-star-minus::before{content:"\F1564"}.mdi-star-minus-outline::before{content:"\F1568"}.mdi-star-off::before{content:"\F04D1"}.mdi-star-off-outline::before{content:"\F155B"}.mdi-star-outline::before{content:"\F04D2"}.mdi-star-plus::before{content:"\F1563"}.mdi-star-plus-outline::before{content:"\F1567"}.mdi-star-remove::before{content:"\F1565"}.mdi-star-remove-outline::before{content:"\F1569"}.mdi-star-settings::before{content:"\F166A"}.mdi-star-settings-outline::before{content:"\F166B"}.mdi-star-shooting::before{content:"\F1741"}.mdi-star-shooting-outline::before{content:"\F1742"}.mdi-star-three-points::before{content:"\F0AE4"}.mdi-star-three-points-outline::before{content:"\F0AE5"}.mdi-state-machine::before{content:"\F11EF"}.mdi-steam::before{content:"\F04D3"}.mdi-steering::before{content:"\F04D4"}.mdi-steering-off::before{content:"\F090E"}.mdi-step-backward::before{content:"\F04D5"}.mdi-step-backward-2::before{content:"\F04D6"}.mdi-step-forward::before{content:"\F04D7"}.mdi-step-forward-2::before{content:"\F04D8"}.mdi-stethoscope::before{content:"\F04D9"}.mdi-sticker::before{content:"\F1364"}.mdi-sticker-alert::before{content:"\F1365"}.mdi-sticker-alert-outline::before{content:"\F1366"}.mdi-sticker-check::before{content:"\F1367"}.mdi-sticker-check-outline::before{content:"\F1368"}.mdi-sticker-circle-outline::before{content:"\F05D0"}.mdi-sticker-emoji::before{content:"\F0785"}.mdi-sticker-minus::before{content:"\F1369"}.mdi-sticker-minus-outline::before{content:"\F136A"}.mdi-sticker-outline::before{content:"\F136B"}.mdi-sticker-plus::before{content:"\F136C"}.mdi-sticker-plus-outline::before{content:"\F136D"}.mdi-sticker-remove::before{content:"\F136E"}.mdi-sticker-remove-outline::before{content:"\F136F"}.mdi-sticker-text::before{content:"\F178E"}.mdi-sticker-text-outline::before{content:"\F178F"}.mdi-stocking::before{content:"\F04DA"}.mdi-stomach::before{content:"\F1093"}.mdi-stool::before{content:"\F195D"}.mdi-stool-outline::before{content:"\F195E"}.mdi-stop::before{content:"\F04DB"}.mdi-stop-circle::before{content:"\F0666"}.mdi-stop-circle-outline::before{content:"\F0667"}.mdi-storage-tank::before{content:"\F1A75"}.mdi-storage-tank-outline::before{content:"\F1A76"}.mdi-store::before{content:"\F04DC"}.mdi-store-24-hour::before{content:"\F04DD"}.mdi-store-alert::before{content:"\F18C1"}.mdi-store-alert-outline::before{content:"\F18C2"}.mdi-store-check::before{content:"\F18C3"}.mdi-store-check-outline::before{content:"\F18C4"}.mdi-store-clock::before{content:"\F18C5"}.mdi-store-clock-outline::before{content:"\F18C6"}.mdi-store-cog::before{content:"\F18C7"}.mdi-store-cog-outline::before{content:"\F18C8"}.mdi-store-edit::before{content:"\F18C9"}.mdi-store-edit-outline::before{content:"\F18CA"}.mdi-store-marker::before{content:"\F18CB"}.mdi-store-marker-outline::before{content:"\F18CC"}.mdi-store-minus::before{content:"\F165E"}.mdi-store-minus-outline::before{content:"\F18CD"}.mdi-store-off::before{content:"\F18CE"}.mdi-store-off-outline::before{content:"\F18CF"}.mdi-store-outline::before{content:"\F1361"}.mdi-store-plus::before{content:"\F165F"}.mdi-store-plus-outline::before{content:"\F18D0"}.mdi-store-remove::before{content:"\F1660"}.mdi-store-remove-outline::before{content:"\F18D1"}.mdi-store-search::before{content:"\F18D2"}.mdi-store-search-outline::before{content:"\F18D3"}.mdi-store-settings::before{content:"\F18D4"}.mdi-store-settings-outline::before{content:"\F18D5"}.mdi-storefront::before{content:"\F07C7"}.mdi-storefront-check::before{content:"\F1B7D"}.mdi-storefront-check-outline::before{content:"\F1B7E"}.mdi-storefront-edit::before{content:"\F1B7F"}.mdi-storefront-edit-outline::before{content:"\F1B80"}.mdi-storefront-minus::before{content:"\F1B83"}.mdi-storefront-minus-outline::before{content:"\F1B84"}.mdi-storefront-outline::before{content:"\F10C1"}.mdi-storefront-plus::before{content:"\F1B81"}.mdi-storefront-plus-outline::before{content:"\F1B82"}.mdi-storefront-remove::before{content:"\F1B85"}.mdi-storefront-remove-outline::before{content:"\F1B86"}.mdi-stove::before{content:"\F04DE"}.mdi-strategy::before{content:"\F11D6"}.mdi-stretch-to-page::before{content:"\F0F2B"}.mdi-stretch-to-page-outline::before{content:"\F0F2C"}.mdi-string-lights::before{content:"\F12BA"}.mdi-string-lights-off::before{content:"\F12BB"}.mdi-subdirectory-arrow-left::before{content:"\F060C"}.mdi-subdirectory-arrow-right::before{content:"\F060D"}.mdi-submarine::before{content:"\F156C"}.mdi-subtitles::before{content:"\F0A16"}.mdi-subtitles-outline::before{content:"\F0A17"}.mdi-subway::before{content:"\F06AC"}.mdi-subway-alert-variant::before{content:"\F0D9D"}.mdi-subway-variant::before{content:"\F04DF"}.mdi-summit::before{content:"\F0786"}.mdi-sun-angle::before{content:"\F1B27"}.mdi-sun-angle-outline::before{content:"\F1B28"}.mdi-sun-clock::before{content:"\F1A77"}.mdi-sun-clock-outline::before{content:"\F1A78"}.mdi-sun-compass::before{content:"\F19A5"}.mdi-sun-snowflake::before{content:"\F1796"}.mdi-sun-snowflake-variant::before{content:"\F1A79"}.mdi-sun-thermometer::before{content:"\F18D6"}.mdi-sun-thermometer-outline::before{content:"\F18D7"}.mdi-sun-wireless::before{content:"\F17FE"}.mdi-sun-wireless-outline::before{content:"\F17FF"}.mdi-sunglasses::before{content:"\F04E0"}.mdi-surfing::before{content:"\F1746"}.mdi-surround-sound::before{content:"\F05C5"}.mdi-surround-sound-2-0::before{content:"\F07F0"}.mdi-surround-sound-2-1::before{content:"\F1729"}.mdi-surround-sound-3-1::before{content:"\F07F1"}.mdi-surround-sound-5-1::before{content:"\F07F2"}.mdi-surround-sound-5-1-2::before{content:"\F172A"}.mdi-surround-sound-7-1::before{content:"\F07F3"}.mdi-svg::before{content:"\F0721"}.mdi-swap-horizontal::before{content:"\F04E1"}.mdi-swap-horizontal-bold::before{content:"\F0BCD"}.mdi-swap-horizontal-circle::before{content:"\F0FE1"}.mdi-swap-horizontal-circle-outline::before{content:"\F0FE2"}.mdi-swap-horizontal-variant::before{content:"\F08C1"}.mdi-swap-vertical::before{content:"\F04E2"}.mdi-swap-vertical-bold::before{content:"\F0BCE"}.mdi-swap-vertical-circle::before{content:"\F0FE3"}.mdi-swap-vertical-circle-outline::before{content:"\F0FE4"}.mdi-swap-vertical-variant::before{content:"\F08C2"}.mdi-swim::before{content:"\F04E3"}.mdi-switch::before{content:"\F04E4"}.mdi-sword::before{content:"\F04E5"}.mdi-sword-cross::before{content:"\F0787"}.mdi-syllabary-hangul::before{content:"\F1333"}.mdi-syllabary-hiragana::before{content:"\F1334"}.mdi-syllabary-katakana::before{content:"\F1335"}.mdi-syllabary-katakana-halfwidth::before{content:"\F1336"}.mdi-symbol::before{content:"\F1501"}.mdi-symfony::before{content:"\F0AE6"}.mdi-synagogue::before{content:"\F1B04"}.mdi-synagogue-outline::before{content:"\F1B05"}.mdi-sync::before{content:"\F04E6"}.mdi-sync-alert::before{content:"\F04E7"}.mdi-sync-circle::before{content:"\F1378"}.mdi-sync-off::before{content:"\F04E8"}.mdi-tab::before{content:"\F04E9"}.mdi-tab-minus::before{content:"\F0B4B"}.mdi-tab-plus::before{content:"\F075C"}.mdi-tab-remove::before{content:"\F0B4C"}.mdi-tab-search::before{content:"\F199E"}.mdi-tab-unselected::before{content:"\F04EA"}.mdi-table::before{content:"\F04EB"}.mdi-table-account::before{content:"\F13B9"}.mdi-table-alert::before{content:"\F13BA"}.mdi-table-arrow-down::before{content:"\F13BB"}.mdi-table-arrow-left::before{content:"\F13BC"}.mdi-table-arrow-right::before{content:"\F13BD"}.mdi-table-arrow-up::before{content:"\F13BE"}.mdi-table-border::before{content:"\F0A18"}.mdi-table-cancel::before{content:"\F13BF"}.mdi-table-chair::before{content:"\F1061"}.mdi-table-check::before{content:"\F13C0"}.mdi-table-clock::before{content:"\F13C1"}.mdi-table-cog::before{content:"\F13C2"}.mdi-table-column::before{content:"\F0835"}.mdi-table-column-plus-after::before{content:"\F04EC"}.mdi-table-column-plus-before::before{content:"\F04ED"}.mdi-table-column-remove::before{content:"\F04EE"}.mdi-table-column-width::before{content:"\F04EF"}.mdi-table-edit::before{content:"\F04F0"}.mdi-table-eye::before{content:"\F1094"}.mdi-table-eye-off::before{content:"\F13C3"}.mdi-table-filter::before{content:"\F1B8C"}.mdi-table-furniture::before{content:"\F05BC"}.mdi-table-headers-eye::before{content:"\F121D"}.mdi-table-headers-eye-off::before{content:"\F121E"}.mdi-table-heart::before{content:"\F13C4"}.mdi-table-key::before{content:"\F13C5"}.mdi-table-large::before{content:"\F04F1"}.mdi-table-large-plus::before{content:"\F0F87"}.mdi-table-large-remove::before{content:"\F0F88"}.mdi-table-lock::before{content:"\F13C6"}.mdi-table-merge-cells::before{content:"\F09A6"}.mdi-table-minus::before{content:"\F13C7"}.mdi-table-multiple::before{content:"\F13C8"}.mdi-table-network::before{content:"\F13C9"}.mdi-table-of-contents::before{content:"\F0836"}.mdi-table-off::before{content:"\F13CA"}.mdi-table-picnic::before{content:"\F1743"}.mdi-table-pivot::before{content:"\F183C"}.mdi-table-plus::before{content:"\F0A75"}.mdi-table-question::before{content:"\F1B21"}.mdi-table-refresh::before{content:"\F13A0"}.mdi-table-remove::before{content:"\F0A76"}.mdi-table-row::before{content:"\F0837"}.mdi-table-row-height::before{content:"\F04F2"}.mdi-table-row-plus-after::before{content:"\F04F3"}.mdi-table-row-plus-before::before{content:"\F04F4"}.mdi-table-row-remove::before{content:"\F04F5"}.mdi-table-search::before{content:"\F090F"}.mdi-table-settings::before{content:"\F0838"}.mdi-table-split-cell::before{content:"\F142A"}.mdi-table-star::before{content:"\F13CB"}.mdi-table-sync::before{content:"\F13A1"}.mdi-table-tennis::before{content:"\F0E68"}.mdi-tablet::before{content:"\F04F6"}.mdi-tablet-cellphone::before{content:"\F09A7"}.mdi-tablet-dashboard::before{content:"\F0ECE"}.mdi-taco::before{content:"\F0762"}.mdi-tag::before{content:"\F04F9"}.mdi-tag-arrow-down::before{content:"\F172B"}.mdi-tag-arrow-down-outline::before{content:"\F172C"}.mdi-tag-arrow-left::before{content:"\F172D"}.mdi-tag-arrow-left-outline::before{content:"\F172E"}.mdi-tag-arrow-right::before{content:"\F172F"}.mdi-tag-arrow-right-outline::before{content:"\F1730"}.mdi-tag-arrow-up::before{content:"\F1731"}.mdi-tag-arrow-up-outline::before{content:"\F1732"}.mdi-tag-check::before{content:"\F1A7A"}.mdi-tag-check-outline::before{content:"\F1A7B"}.mdi-tag-faces::before{content:"\F04FA"}.mdi-tag-heart::before{content:"\F068B"}.mdi-tag-heart-outline::before{content:"\F0BCF"}.mdi-tag-hidden::before{content:"\F1C76"}.mdi-tag-minus::before{content:"\F0910"}.mdi-tag-minus-outline::before{content:"\F121F"}.mdi-tag-multiple::before{content:"\F04FB"}.mdi-tag-multiple-outline::before{content:"\F12F7"}.mdi-tag-off::before{content:"\F1220"}.mdi-tag-off-outline::before{content:"\F1221"}.mdi-tag-outline::before{content:"\F04FC"}.mdi-tag-plus::before{content:"\F0722"}.mdi-tag-plus-outline::before{content:"\F1222"}.mdi-tag-remove::before{content:"\F0723"}.mdi-tag-remove-outline::before{content:"\F1223"}.mdi-tag-search::before{content:"\F1907"}.mdi-tag-search-outline::before{content:"\F1908"}.mdi-tag-text::before{content:"\F1224"}.mdi-tag-text-outline::before{content:"\F04FD"}.mdi-tailwind::before{content:"\F13FF"}.mdi-tally-mark-1::before{content:"\F1ABC"}.mdi-tally-mark-2::before{content:"\F1ABD"}.mdi-tally-mark-3::before{content:"\F1ABE"}.mdi-tally-mark-4::before{content:"\F1ABF"}.mdi-tally-mark-5::before{content:"\F1AC0"}.mdi-tangram::before{content:"\F04F8"}.mdi-tank::before{content:"\F0D3A"}.mdi-tanker-truck::before{content:"\F0FE5"}.mdi-tape-drive::before{content:"\F16DF"}.mdi-tape-measure::before{content:"\F0B4D"}.mdi-target::before{content:"\F04FE"}.mdi-target-account::before{content:"\F0BD0"}.mdi-target-variant::before{content:"\F0A77"}.mdi-taxi::before{content:"\F04FF"}.mdi-tea::before{content:"\F0D9E"}.mdi-tea-outline::before{content:"\F0D9F"}.mdi-teamviewer::before{content:"\F0500"}.mdi-teddy-bear::before{content:"\F18FB"}.mdi-telescope::before{content:"\F0B4E"}.mdi-television::before{content:"\F0502"}.mdi-television-ambient-light::before{content:"\F1356"}.mdi-television-box::before{content:"\F0839"}.mdi-television-classic::before{content:"\F07F4"}.mdi-television-classic-off::before{content:"\F083A"}.mdi-television-guide::before{content:"\F0503"}.mdi-television-off::before{content:"\F083B"}.mdi-television-pause::before{content:"\F0F89"}.mdi-television-play::before{content:"\F0ECF"}.mdi-television-shimmer::before{content:"\F1110"}.mdi-television-speaker::before{content:"\F1B1B"}.mdi-television-speaker-off::before{content:"\F1B1C"}.mdi-television-stop::before{content:"\F0F8A"}.mdi-temperature-celsius::before{content:"\F0504"}.mdi-temperature-fahrenheit::before{content:"\F0505"}.mdi-temperature-kelvin::before{content:"\F0506"}.mdi-temple-buddhist::before{content:"\F1B06"}.mdi-temple-buddhist-outline::before{content:"\F1B07"}.mdi-temple-hindu::before{content:"\F1B08"}.mdi-temple-hindu-outline::before{content:"\F1B09"}.mdi-tennis::before{content:"\F0DA0"}.mdi-tennis-ball::before{content:"\F0507"}.mdi-tennis-ball-outline::before{content:"\F1C5F"}.mdi-tent::before{content:"\F0508"}.mdi-terraform::before{content:"\F1062"}.mdi-terrain::before{content:"\F0509"}.mdi-test-tube::before{content:"\F0668"}.mdi-test-tube-empty::before{content:"\F0911"}.mdi-test-tube-off::before{content:"\F0912"}.mdi-text::before{content:"\F09A8"}.mdi-text-account::before{content:"\F1570"}.mdi-text-box::before{content:"\F021A"}.mdi-text-box-check::before{content:"\F0EA6"}.mdi-text-box-check-outline::before{content:"\F0EA7"}.mdi-text-box-edit::before{content:"\F1A7C"}.mdi-text-box-edit-outline::before{content:"\F1A7D"}.mdi-text-box-minus::before{content:"\F0EA8"}.mdi-text-box-minus-outline::before{content:"\F0EA9"}.mdi-text-box-multiple::before{content:"\F0AB7"}.mdi-text-box-multiple-outline::before{content:"\F0AB8"}.mdi-text-box-outline::before{content:"\F09ED"}.mdi-text-box-plus::before{content:"\F0EAA"}.mdi-text-box-plus-outline::before{content:"\F0EAB"}.mdi-text-box-remove::before{content:"\F0EAC"}.mdi-text-box-remove-outline::before{content:"\F0EAD"}.mdi-text-box-search::before{content:"\F0EAE"}.mdi-text-box-search-outline::before{content:"\F0EAF"}.mdi-text-long::before{content:"\F09AA"}.mdi-text-recognition::before{content:"\F113D"}.mdi-text-search::before{content:"\F13B8"}.mdi-text-search-variant::before{content:"\F1A7E"}.mdi-text-shadow::before{content:"\F0669"}.mdi-text-short::before{content:"\F09A9"}.mdi-texture::before{content:"\F050C"}.mdi-texture-box::before{content:"\F0FE6"}.mdi-theater::before{content:"\F050D"}.mdi-theme-light-dark::before{content:"\F050E"}.mdi-thermometer::before{content:"\F050F"}.mdi-thermometer-alert::before{content:"\F0E01"}.mdi-thermometer-auto::before{content:"\F1B0F"}.mdi-thermometer-bluetooth::before{content:"\F1895"}.mdi-thermometer-check::before{content:"\F1A7F"}.mdi-thermometer-chevron-down::before{content:"\F0E02"}.mdi-thermometer-chevron-up::before{content:"\F0E03"}.mdi-thermometer-high::before{content:"\F10C2"}.mdi-thermometer-lines::before{content:"\F0510"}.mdi-thermometer-low::before{content:"\F10C3"}.mdi-thermometer-minus::before{content:"\F0E04"}.mdi-thermometer-off::before{content:"\F1531"}.mdi-thermometer-plus::before{content:"\F0E05"}.mdi-thermometer-probe::before{content:"\F1B2B"}.mdi-thermometer-probe-off::before{content:"\F1B2C"}.mdi-thermometer-water::before{content:"\F1A80"}.mdi-thermostat::before{content:"\F0393"}.mdi-thermostat-auto::before{content:"\F1B17"}.mdi-thermostat-box::before{content:"\F0891"}.mdi-thermostat-box-auto::before{content:"\F1B18"}.mdi-thermostat-cog::before{content:"\F1C80"}.mdi-thought-bubble::before{content:"\F07F6"}.mdi-thought-bubble-outline::before{content:"\F07F7"}.mdi-thumb-down::before{content:"\F0511"}.mdi-thumb-down-outline::before{content:"\F0512"}.mdi-thumb-up::before{content:"\F0513"}.mdi-thumb-up-outline::before{content:"\F0514"}.mdi-thumbs-up-down::before{content:"\F0515"}.mdi-thumbs-up-down-outline::before{content:"\F1914"}.mdi-ticket::before{content:"\F0516"}.mdi-ticket-account::before{content:"\F0517"}.mdi-ticket-confirmation::before{content:"\F0518"}.mdi-ticket-confirmation-outline::before{content:"\F13AA"}.mdi-ticket-outline::before{content:"\F0913"}.mdi-ticket-percent::before{content:"\F0724"}.mdi-ticket-percent-outline::before{content:"\F142B"}.mdi-tie::before{content:"\F0519"}.mdi-tilde::before{content:"\F0725"}.mdi-tilde-off::before{content:"\F18F3"}.mdi-timelapse::before{content:"\F051A"}.mdi-timeline::before{content:"\F0BD1"}.mdi-timeline-alert::before{content:"\F0F95"}.mdi-timeline-alert-outline::before{content:"\F0F98"}.mdi-timeline-check::before{content:"\F1532"}.mdi-timeline-check-outline::before{content:"\F1533"}.mdi-timeline-clock::before{content:"\F11FB"}.mdi-timeline-clock-outline::before{content:"\F11FC"}.mdi-timeline-minus::before{content:"\F1534"}.mdi-timeline-minus-outline::before{content:"\F1535"}.mdi-timeline-outline::before{content:"\F0BD2"}.mdi-timeline-plus::before{content:"\F0F96"}.mdi-timeline-plus-outline::before{content:"\F0F97"}.mdi-timeline-question::before{content:"\F0F99"}.mdi-timeline-question-outline::before{content:"\F0F9A"}.mdi-timeline-remove::before{content:"\F1536"}.mdi-timeline-remove-outline::before{content:"\F1537"}.mdi-timeline-text::before{content:"\F0BD3"}.mdi-timeline-text-outline::before{content:"\F0BD4"}.mdi-timer::before{content:"\F13AB"}.mdi-timer-10::before{content:"\F051C"}.mdi-timer-3::before{content:"\F051D"}.mdi-timer-alert::before{content:"\F1ACC"}.mdi-timer-alert-outline::before{content:"\F1ACD"}.mdi-timer-cancel::before{content:"\F1ACE"}.mdi-timer-cancel-outline::before{content:"\F1ACF"}.mdi-timer-check::before{content:"\F1AD0"}.mdi-timer-check-outline::before{content:"\F1AD1"}.mdi-timer-cog::before{content:"\F1925"}.mdi-timer-cog-outline::before{content:"\F1926"}.mdi-timer-edit::before{content:"\F1AD2"}.mdi-timer-edit-outline::before{content:"\F1AD3"}.mdi-timer-lock::before{content:"\F1AD4"}.mdi-timer-lock-open::before{content:"\F1AD5"}.mdi-timer-lock-open-outline::before{content:"\F1AD6"}.mdi-timer-lock-outline::before{content:"\F1AD7"}.mdi-timer-marker::before{content:"\F1AD8"}.mdi-timer-marker-outline::before{content:"\F1AD9"}.mdi-timer-minus::before{content:"\F1ADA"}.mdi-timer-minus-outline::before{content:"\F1ADB"}.mdi-timer-music::before{content:"\F1ADC"}.mdi-timer-music-outline::before{content:"\F1ADD"}.mdi-timer-off::before{content:"\F13AC"}.mdi-timer-off-outline::before{content:"\F051E"}.mdi-timer-outline::before{content:"\F051B"}.mdi-timer-pause::before{content:"\F1ADE"}.mdi-timer-pause-outline::before{content:"\F1ADF"}.mdi-timer-play::before{content:"\F1AE0"}.mdi-timer-play-outline::before{content:"\F1AE1"}.mdi-timer-plus::before{content:"\F1AE2"}.mdi-timer-plus-outline::before{content:"\F1AE3"}.mdi-timer-refresh::before{content:"\F1AE4"}.mdi-timer-refresh-outline::before{content:"\F1AE5"}.mdi-timer-remove::before{content:"\F1AE6"}.mdi-timer-remove-outline::before{content:"\F1AE7"}.mdi-timer-sand::before{content:"\F051F"}.mdi-timer-sand-complete::before{content:"\F199F"}.mdi-timer-sand-empty::before{content:"\F06AD"}.mdi-timer-sand-full::before{content:"\F078C"}.mdi-timer-sand-paused::before{content:"\F19A0"}.mdi-timer-settings::before{content:"\F1923"}.mdi-timer-settings-outline::before{content:"\F1924"}.mdi-timer-star::before{content:"\F1AE8"}.mdi-timer-star-outline::before{content:"\F1AE9"}.mdi-timer-stop::before{content:"\F1AEA"}.mdi-timer-stop-outline::before{content:"\F1AEB"}.mdi-timer-sync::before{content:"\F1AEC"}.mdi-timer-sync-outline::before{content:"\F1AED"}.mdi-timetable::before{content:"\F0520"}.mdi-tire::before{content:"\F1896"}.mdi-toaster::before{content:"\F1063"}.mdi-toaster-off::before{content:"\F11B7"}.mdi-toaster-oven::before{content:"\F0CD3"}.mdi-toggle-switch::before{content:"\F0521"}.mdi-toggle-switch-off::before{content:"\F0522"}.mdi-toggle-switch-off-outline::before{content:"\F0A19"}.mdi-toggle-switch-outline::before{content:"\F0A1A"}.mdi-toggle-switch-variant::before{content:"\F1A25"}.mdi-toggle-switch-variant-off::before{content:"\F1A26"}.mdi-toilet::before{content:"\F09AB"}.mdi-toolbox::before{content:"\F09AC"}.mdi-toolbox-outline::before{content:"\F09AD"}.mdi-tools::before{content:"\F1064"}.mdi-tooltip::before{content:"\F0523"}.mdi-tooltip-account::before{content:"\F000C"}.mdi-tooltip-cellphone::before{content:"\F183B"}.mdi-tooltip-check::before{content:"\F155C"}.mdi-tooltip-check-outline::before{content:"\F155D"}.mdi-tooltip-edit::before{content:"\F0524"}.mdi-tooltip-edit-outline::before{content:"\F12C5"}.mdi-tooltip-image::before{content:"\F0525"}.mdi-tooltip-image-outline::before{content:"\F0BD5"}.mdi-tooltip-minus::before{content:"\F155E"}.mdi-tooltip-minus-outline::before{content:"\F155F"}.mdi-tooltip-outline::before{content:"\F0526"}.mdi-tooltip-plus::before{content:"\F0BD6"}.mdi-tooltip-plus-outline::before{content:"\F0527"}.mdi-tooltip-question::before{content:"\F1BBA"}.mdi-tooltip-question-outline::before{content:"\F1BBB"}.mdi-tooltip-remove::before{content:"\F1560"}.mdi-tooltip-remove-outline::before{content:"\F1561"}.mdi-tooltip-text::before{content:"\F0528"}.mdi-tooltip-text-outline::before{content:"\F0BD7"}.mdi-tooth::before{content:"\F08C3"}.mdi-tooth-outline::before{content:"\F0529"}.mdi-toothbrush::before{content:"\F1129"}.mdi-toothbrush-electric::before{content:"\F112C"}.mdi-toothbrush-paste::before{content:"\F112A"}.mdi-torch::before{content:"\F1606"}.mdi-tortoise::before{content:"\F0D3B"}.mdi-toslink::before{content:"\F12B8"}.mdi-touch-text-outline::before{content:"\F1C60"}.mdi-tournament::before{content:"\F09AE"}.mdi-tow-truck::before{content:"\F083C"}.mdi-tower-beach::before{content:"\F0681"}.mdi-tower-fire::before{content:"\F0682"}.mdi-town-hall::before{content:"\F1875"}.mdi-toy-brick::before{content:"\F1288"}.mdi-toy-brick-marker::before{content:"\F1289"}.mdi-toy-brick-marker-outline::before{content:"\F128A"}.mdi-toy-brick-minus::before{content:"\F128B"}.mdi-toy-brick-minus-outline::before{content:"\F128C"}.mdi-toy-brick-outline::before{content:"\F128D"}.mdi-toy-brick-plus::before{content:"\F128E"}.mdi-toy-brick-plus-outline::before{content:"\F128F"}.mdi-toy-brick-remove::before{content:"\F1290"}.mdi-toy-brick-remove-outline::before{content:"\F1291"}.mdi-toy-brick-search::before{content:"\F1292"}.mdi-toy-brick-search-outline::before{content:"\F1293"}.mdi-track-light::before{content:"\F0914"}.mdi-track-light-off::before{content:"\F1B01"}.mdi-trackpad::before{content:"\F07F8"}.mdi-trackpad-lock::before{content:"\F0933"}.mdi-tractor::before{content:"\F0892"}.mdi-tractor-variant::before{content:"\F14C4"}.mdi-trademark::before{content:"\F0A78"}.mdi-traffic-cone::before{content:"\F137C"}.mdi-traffic-light::before{content:"\F052B"}.mdi-traffic-light-outline::before{content:"\F182A"}.mdi-train::before{content:"\F052C"}.mdi-train-car::before{content:"\F0BD8"}.mdi-train-car-autorack::before{content:"\F1B2D"}.mdi-train-car-box::before{content:"\F1B2E"}.mdi-train-car-box-full::before{content:"\F1B2F"}.mdi-train-car-box-open::before{content:"\F1B30"}.mdi-train-car-caboose::before{content:"\F1B31"}.mdi-train-car-centerbeam::before{content:"\F1B32"}.mdi-train-car-centerbeam-full::before{content:"\F1B33"}.mdi-train-car-container::before{content:"\F1B34"}.mdi-train-car-flatbed::before{content:"\F1B35"}.mdi-train-car-flatbed-car::before{content:"\F1B36"}.mdi-train-car-flatbed-tank::before{content:"\F1B37"}.mdi-train-car-gondola::before{content:"\F1B38"}.mdi-train-car-gondola-full::before{content:"\F1B39"}.mdi-train-car-hopper::before{content:"\F1B3A"}.mdi-train-car-hopper-covered::before{content:"\F1B3B"}.mdi-train-car-hopper-full::before{content:"\F1B3C"}.mdi-train-car-intermodal::before{content:"\F1B3D"}.mdi-train-car-passenger::before{content:"\F1733"}.mdi-train-car-passenger-door::before{content:"\F1734"}.mdi-train-car-passenger-door-open::before{content:"\F1735"}.mdi-train-car-passenger-variant::before{content:"\F1736"}.mdi-train-car-tank::before{content:"\F1B3E"}.mdi-train-variant::before{content:"\F08C4"}.mdi-tram::before{content:"\F052D"}.mdi-tram-side::before{content:"\F0FE7"}.mdi-transcribe::before{content:"\F052E"}.mdi-transcribe-close::before{content:"\F052F"}.mdi-transfer::before{content:"\F1065"}.mdi-transfer-down::before{content:"\F0DA1"}.mdi-transfer-left::before{content:"\F0DA2"}.mdi-transfer-right::before{content:"\F0530"}.mdi-transfer-up::before{content:"\F0DA3"}.mdi-transit-connection::before{content:"\F0D3C"}.mdi-transit-connection-horizontal::before{content:"\F1546"}.mdi-transit-connection-variant::before{content:"\F0D3D"}.mdi-transit-detour::before{content:"\F0F8B"}.mdi-transit-skip::before{content:"\F1515"}.mdi-transit-transfer::before{content:"\F06AE"}.mdi-transition::before{content:"\F0915"}.mdi-transition-masked::before{content:"\F0916"}.mdi-translate::before{content:"\F05CA"}.mdi-translate-off::before{content:"\F0E06"}.mdi-translate-variant::before{content:"\F1B99"}.mdi-transmission-tower::before{content:"\F0D3E"}.mdi-transmission-tower-export::before{content:"\F192C"}.mdi-transmission-tower-import::before{content:"\F192D"}.mdi-transmission-tower-off::before{content:"\F19DD"}.mdi-trash-can::before{content:"\F0A79"}.mdi-trash-can-outline::before{content:"\F0A7A"}.mdi-tray::before{content:"\F1294"}.mdi-tray-alert::before{content:"\F1295"}.mdi-tray-arrow-down::before{content:"\F0120"}.mdi-tray-arrow-up::before{content:"\F011D"}.mdi-tray-full::before{content:"\F1296"}.mdi-tray-minus::before{content:"\F1297"}.mdi-tray-plus::before{content:"\F1298"}.mdi-tray-remove::before{content:"\F1299"}.mdi-treasure-chest::before{content:"\F0726"}.mdi-treasure-chest-outline::before{content:"\F1C77"}.mdi-tree::before{content:"\F0531"}.mdi-tree-outline::before{content:"\F0E69"}.mdi-trello::before{content:"\F0532"}.mdi-trending-down::before{content:"\F0533"}.mdi-trending-neutral::before{content:"\F0534"}.mdi-trending-up::before{content:"\F0535"}.mdi-triangle::before{content:"\F0536"}.mdi-triangle-down::before{content:"\F1C56"}.mdi-triangle-down-outline::before{content:"\F1C57"}.mdi-triangle-outline::before{content:"\F0537"}.mdi-triangle-small-down::before{content:"\F1A09"}.mdi-triangle-small-up::before{content:"\F1A0A"}.mdi-triangle-wave::before{content:"\F147C"}.mdi-triforce::before{content:"\F0BD9"}.mdi-trophy::before{content:"\F0538"}.mdi-trophy-award::before{content:"\F0539"}.mdi-trophy-broken::before{content:"\F0DA4"}.mdi-trophy-outline::before{content:"\F053A"}.mdi-trophy-variant::before{content:"\F053B"}.mdi-trophy-variant-outline::before{content:"\F053C"}.mdi-truck::before{content:"\F053D"}.mdi-truck-alert::before{content:"\F19DE"}.mdi-truck-alert-outline::before{content:"\F19DF"}.mdi-truck-cargo-container::before{content:"\F18D8"}.mdi-truck-check::before{content:"\F0CD4"}.mdi-truck-check-outline::before{content:"\F129A"}.mdi-truck-delivery::before{content:"\F053E"}.mdi-truck-delivery-outline::before{content:"\F129B"}.mdi-truck-fast::before{content:"\F0788"}.mdi-truck-fast-outline::before{content:"\F129C"}.mdi-truck-flatbed::before{content:"\F1891"}.mdi-truck-minus::before{content:"\F19AE"}.mdi-truck-minus-outline::before{content:"\F19BD"}.mdi-truck-outline::before{content:"\F129D"}.mdi-truck-plus::before{content:"\F19AD"}.mdi-truck-plus-outline::before{content:"\F19BC"}.mdi-truck-remove::before{content:"\F19AF"}.mdi-truck-remove-outline::before{content:"\F19BE"}.mdi-truck-snowflake::before{content:"\F19A6"}.mdi-truck-trailer::before{content:"\F0727"}.mdi-trumpet::before{content:"\F1096"}.mdi-tshirt-crew::before{content:"\F0A7B"}.mdi-tshirt-crew-outline::before{content:"\F053F"}.mdi-tshirt-v::before{content:"\F0A7C"}.mdi-tshirt-v-outline::before{content:"\F0540"}.mdi-tsunami::before{content:"\F1A81"}.mdi-tumble-dryer::before{content:"\F0917"}.mdi-tumble-dryer-alert::before{content:"\F11BA"}.mdi-tumble-dryer-off::before{content:"\F11BB"}.mdi-tune::before{content:"\F062E"}.mdi-tune-variant::before{content:"\F1542"}.mdi-tune-vertical::before{content:"\F066A"}.mdi-tune-vertical-variant::before{content:"\F1543"}.mdi-tunnel::before{content:"\F183D"}.mdi-tunnel-outline::before{content:"\F183E"}.mdi-turbine::before{content:"\F1A82"}.mdi-turkey::before{content:"\F171B"}.mdi-turnstile::before{content:"\F0CD5"}.mdi-turnstile-outline::before{content:"\F0CD6"}.mdi-turtle::before{content:"\F0CD7"}.mdi-twitch::before{content:"\F0543"}.mdi-twitter::before{content:"\F0544"}.mdi-two-factor-authentication::before{content:"\F09AF"}.mdi-typewriter::before{content:"\F0F2D"}.mdi-ubisoft::before{content:"\F0BDA"}.mdi-ubuntu::before{content:"\F0548"}.mdi-ufo::before{content:"\F10C4"}.mdi-ufo-outline::before{content:"\F10C5"}.mdi-ultra-high-definition::before{content:"\F07F9"}.mdi-umbraco::before{content:"\F0549"}.mdi-umbrella::before{content:"\F054A"}.mdi-umbrella-beach::before{content:"\F188A"}.mdi-umbrella-beach-outline::before{content:"\F188B"}.mdi-umbrella-closed::before{content:"\F09B0"}.mdi-umbrella-closed-outline::before{content:"\F13E2"}.mdi-umbrella-closed-variant::before{content:"\F13E1"}.mdi-umbrella-outline::before{content:"\F054B"}.mdi-undo::before{content:"\F054C"}.mdi-undo-variant::before{content:"\F054D"}.mdi-unfold-less-horizontal::before{content:"\F054E"}.mdi-unfold-less-vertical::before{content:"\F0760"}.mdi-unfold-more-horizontal::before{content:"\F054F"}.mdi-unfold-more-vertical::before{content:"\F0761"}.mdi-ungroup::before{content:"\F0550"}.mdi-unicode::before{content:"\F0ED0"}.mdi-unicorn::before{content:"\F15C2"}.mdi-unicorn-variant::before{content:"\F15C3"}.mdi-unicycle::before{content:"\F15E5"}.mdi-unity::before{content:"\F06AF"}.mdi-unreal::before{content:"\F09B1"}.mdi-update::before{content:"\F06B0"}.mdi-upload::before{content:"\F0552"}.mdi-upload-lock::before{content:"\F1373"}.mdi-upload-lock-outline::before{content:"\F1374"}.mdi-upload-multiple::before{content:"\F083D"}.mdi-upload-network::before{content:"\F06F6"}.mdi-upload-network-outline::before{content:"\F0CD8"}.mdi-upload-off::before{content:"\F10C6"}.mdi-upload-off-outline::before{content:"\F10C7"}.mdi-upload-outline::before{content:"\F0E07"}.mdi-usb::before{content:"\F0553"}.mdi-usb-flash-drive::before{content:"\F129E"}.mdi-usb-flash-drive-outline::before{content:"\F129F"}.mdi-usb-port::before{content:"\F11F0"}.mdi-vacuum::before{content:"\F19A1"}.mdi-vacuum-outline::before{content:"\F19A2"}.mdi-valve::before{content:"\F1066"}.mdi-valve-closed::before{content:"\F1067"}.mdi-valve-open::before{content:"\F1068"}.mdi-van-passenger::before{content:"\F07FA"}.mdi-van-utility::before{content:"\F07FB"}.mdi-vanish::before{content:"\F07FC"}.mdi-vanish-quarter::before{content:"\F1554"}.mdi-vanity-light::before{content:"\F11E1"}.mdi-variable::before{content:"\F0AE7"}.mdi-variable-box::before{content:"\F1111"}.mdi-vector-arrange-above::before{content:"\F0554"}.mdi-vector-arrange-below::before{content:"\F0555"}.mdi-vector-bezier::before{content:"\F0AE8"}.mdi-vector-circle::before{content:"\F0556"}.mdi-vector-circle-variant::before{content:"\F0557"}.mdi-vector-combine::before{content:"\F0558"}.mdi-vector-curve::before{content:"\F0559"}.mdi-vector-difference::before{content:"\F055A"}.mdi-vector-difference-ab::before{content:"\F055B"}.mdi-vector-difference-ba::before{content:"\F055C"}.mdi-vector-ellipse::before{content:"\F0893"}.mdi-vector-intersection::before{content:"\F055D"}.mdi-vector-line::before{content:"\F055E"}.mdi-vector-link::before{content:"\F0FE8"}.mdi-vector-point::before{content:"\F01C4"}.mdi-vector-point-edit::before{content:"\F09E8"}.mdi-vector-point-minus::before{content:"\F1B78"}.mdi-vector-point-plus::before{content:"\F1B79"}.mdi-vector-point-select::before{content:"\F055F"}.mdi-vector-polygon::before{content:"\F0560"}.mdi-vector-polygon-variant::before{content:"\F1856"}.mdi-vector-polyline::before{content:"\F0561"}.mdi-vector-polyline-edit::before{content:"\F1225"}.mdi-vector-polyline-minus::before{content:"\F1226"}.mdi-vector-polyline-plus::before{content:"\F1227"}.mdi-vector-polyline-remove::before{content:"\F1228"}.mdi-vector-radius::before{content:"\F074A"}.mdi-vector-rectangle::before{content:"\F05C6"}.mdi-vector-selection::before{content:"\F0562"}.mdi-vector-square::before{content:"\F0001"}.mdi-vector-square-close::before{content:"\F1857"}.mdi-vector-square-edit::before{content:"\F18D9"}.mdi-vector-square-minus::before{content:"\F18DA"}.mdi-vector-square-open::before{content:"\F1858"}.mdi-vector-square-plus::before{content:"\F18DB"}.mdi-vector-square-remove::before{content:"\F18DC"}.mdi-vector-triangle::before{content:"\F0563"}.mdi-vector-union::before{content:"\F0564"}.mdi-vhs::before{content:"\F0A1B"}.mdi-vibrate::before{content:"\F0566"}.mdi-vibrate-off::before{content:"\F0CD9"}.mdi-video::before{content:"\F0567"}.mdi-video-2d::before{content:"\F1A1C"}.mdi-video-3d::before{content:"\F07FD"}.mdi-video-3d-off::before{content:"\F13D9"}.mdi-video-3d-variant::before{content:"\F0ED1"}.mdi-video-4k-box::before{content:"\F083E"}.mdi-video-account::before{content:"\F0919"}.mdi-video-box::before{content:"\F00FD"}.mdi-video-box-off::before{content:"\F00FE"}.mdi-video-check::before{content:"\F1069"}.mdi-video-check-outline::before{content:"\F106A"}.mdi-video-high-definition::before{content:"\F152E"}.mdi-video-image::before{content:"\F091A"}.mdi-video-input-antenna::before{content:"\F083F"}.mdi-video-input-component::before{content:"\F0840"}.mdi-video-input-hdmi::before{content:"\F0841"}.mdi-video-input-scart::before{content:"\F0F8C"}.mdi-video-input-svideo::before{content:"\F0842"}.mdi-video-marker::before{content:"\F19A9"}.mdi-video-marker-outline::before{content:"\F19AA"}.mdi-video-minus::before{content:"\F09B2"}.mdi-video-minus-outline::before{content:"\F02BA"}.mdi-video-off::before{content:"\F0568"}.mdi-video-off-outline::before{content:"\F0BDB"}.mdi-video-outline::before{content:"\F0BDC"}.mdi-video-plus::before{content:"\F09B3"}.mdi-video-plus-outline::before{content:"\F01D3"}.mdi-video-stabilization::before{content:"\F091B"}.mdi-video-switch::before{content:"\F0569"}.mdi-video-switch-outline::before{content:"\F0790"}.mdi-video-vintage::before{content:"\F0A1C"}.mdi-video-wireless::before{content:"\F0ED2"}.mdi-video-wireless-outline::before{content:"\F0ED3"}.mdi-view-agenda::before{content:"\F056A"}.mdi-view-agenda-outline::before{content:"\F11D8"}.mdi-view-array::before{content:"\F056B"}.mdi-view-array-outline::before{content:"\F1485"}.mdi-view-carousel::before{content:"\F056C"}.mdi-view-carousel-outline::before{content:"\F1486"}.mdi-view-column::before{content:"\F056D"}.mdi-view-column-outline::before{content:"\F1487"}.mdi-view-comfy::before{content:"\F0E6A"}.mdi-view-comfy-outline::before{content:"\F1488"}.mdi-view-compact::before{content:"\F0E6B"}.mdi-view-compact-outline::before{content:"\F0E6C"}.mdi-view-dashboard::before{content:"\F056E"}.mdi-view-dashboard-edit::before{content:"\F1947"}.mdi-view-dashboard-edit-outline::before{content:"\F1948"}.mdi-view-dashboard-outline::before{content:"\F0A1D"}.mdi-view-dashboard-variant::before{content:"\F0843"}.mdi-view-dashboard-variant-outline::before{content:"\F1489"}.mdi-view-day::before{content:"\F056F"}.mdi-view-day-outline::before{content:"\F148A"}.mdi-view-gallery::before{content:"\F1888"}.mdi-view-gallery-outline::before{content:"\F1889"}.mdi-view-grid::before{content:"\F0570"}.mdi-view-grid-compact::before{content:"\F1C61"}.mdi-view-grid-outline::before{content:"\F11D9"}.mdi-view-grid-plus::before{content:"\F0F8D"}.mdi-view-grid-plus-outline::before{content:"\F11DA"}.mdi-view-headline::before{content:"\F0571"}.mdi-view-list::before{content:"\F0572"}.mdi-view-list-outline::before{content:"\F148B"}.mdi-view-module::before{content:"\F0573"}.mdi-view-module-outline::before{content:"\F148C"}.mdi-view-parallel::before{content:"\F0728"}.mdi-view-parallel-outline::before{content:"\F148D"}.mdi-view-quilt::before{content:"\F0574"}.mdi-view-quilt-outline::before{content:"\F148E"}.mdi-view-sequential::before{content:"\F0729"}.mdi-view-sequential-outline::before{content:"\F148F"}.mdi-view-split-horizontal::before{content:"\F0BCB"}.mdi-view-split-vertical::before{content:"\F0BCC"}.mdi-view-stream::before{content:"\F0575"}.mdi-view-stream-outline::before{content:"\F1490"}.mdi-view-week::before{content:"\F0576"}.mdi-view-week-outline::before{content:"\F1491"}.mdi-vimeo::before{content:"\F0577"}.mdi-violin::before{content:"\F060F"}.mdi-virtual-reality::before{content:"\F0894"}.mdi-virus::before{content:"\F13B6"}.mdi-virus-off::before{content:"\F18E1"}.mdi-virus-off-outline::before{content:"\F18E2"}.mdi-virus-outline::before{content:"\F13B7"}.mdi-vlc::before{content:"\F057C"}.mdi-voicemail::before{content:"\F057D"}.mdi-volcano::before{content:"\F1A83"}.mdi-volcano-outline::before{content:"\F1A84"}.mdi-volleyball::before{content:"\F09B4"}.mdi-volume-equal::before{content:"\F1B10"}.mdi-volume-high::before{content:"\F057E"}.mdi-volume-low::before{content:"\F057F"}.mdi-volume-medium::before{content:"\F0580"}.mdi-volume-minus::before{content:"\F075E"}.mdi-volume-mute::before{content:"\F075F"}.mdi-volume-off::before{content:"\F0581"}.mdi-volume-plus::before{content:"\F075D"}.mdi-volume-source::before{content:"\F1120"}.mdi-volume-variant-off::before{content:"\F0E08"}.mdi-volume-vibrate::before{content:"\F1121"}.mdi-vote::before{content:"\F0A1F"}.mdi-vote-outline::before{content:"\F0A20"}.mdi-vpn::before{content:"\F0582"}.mdi-vuejs::before{content:"\F0844"}.mdi-vuetify::before{content:"\F0E6D"}.mdi-walk::before{content:"\F0583"}.mdi-wall::before{content:"\F07FE"}.mdi-wall-fire::before{content:"\F1A11"}.mdi-wall-sconce::before{content:"\F091C"}.mdi-wall-sconce-flat::before{content:"\F091D"}.mdi-wall-sconce-flat-outline::before{content:"\F17C9"}.mdi-wall-sconce-flat-variant::before{content:"\F041C"}.mdi-wall-sconce-flat-variant-outline::before{content:"\F17CA"}.mdi-wall-sconce-outline::before{content:"\F17CB"}.mdi-wall-sconce-round::before{content:"\F0748"}.mdi-wall-sconce-round-outline::before{content:"\F17CC"}.mdi-wall-sconce-round-variant::before{content:"\F091E"}.mdi-wall-sconce-round-variant-outline::before{content:"\F17CD"}.mdi-wallet::before{content:"\F0584"}.mdi-wallet-bifold::before{content:"\F1C58"}.mdi-wallet-bifold-outline::before{content:"\F1C59"}.mdi-wallet-giftcard::before{content:"\F0585"}.mdi-wallet-membership::before{content:"\F0586"}.mdi-wallet-outline::before{content:"\F0BDD"}.mdi-wallet-plus::before{content:"\F0F8E"}.mdi-wallet-plus-outline::before{content:"\F0F8F"}.mdi-wallet-travel::before{content:"\F0587"}.mdi-wallpaper::before{content:"\F0E09"}.mdi-wan::before{content:"\F0588"}.mdi-wardrobe::before{content:"\F0F90"}.mdi-wardrobe-outline::before{content:"\F0F91"}.mdi-warehouse::before{content:"\F0F81"}.mdi-washing-machine::before{content:"\F072A"}.mdi-washing-machine-alert::before{content:"\F11BC"}.mdi-washing-machine-off::before{content:"\F11BD"}.mdi-watch::before{content:"\F0589"}.mdi-watch-export::before{content:"\F058A"}.mdi-watch-export-variant::before{content:"\F0895"}.mdi-watch-import::before{content:"\F058B"}.mdi-watch-import-variant::before{content:"\F0896"}.mdi-watch-variant::before{content:"\F0897"}.mdi-watch-vibrate::before{content:"\F06B1"}.mdi-watch-vibrate-off::before{content:"\F0CDA"}.mdi-water::before{content:"\F058C"}.mdi-water-alert::before{content:"\F1502"}.mdi-water-alert-outline::before{content:"\F1503"}.mdi-water-boiler::before{content:"\F0F92"}.mdi-water-boiler-alert::before{content:"\F11B3"}.mdi-water-boiler-auto::before{content:"\F1B98"}.mdi-water-boiler-off::before{content:"\F11B4"}.mdi-water-check::before{content:"\F1504"}.mdi-water-check-outline::before{content:"\F1505"}.mdi-water-circle::before{content:"\F1806"}.mdi-water-minus::before{content:"\F1506"}.mdi-water-minus-outline::before{content:"\F1507"}.mdi-water-off::before{content:"\F058D"}.mdi-water-off-outline::before{content:"\F1508"}.mdi-water-opacity::before{content:"\F1855"}.mdi-water-outline::before{content:"\F0E0A"}.mdi-water-percent::before{content:"\F058E"}.mdi-water-percent-alert::before{content:"\F1509"}.mdi-water-plus::before{content:"\F150A"}.mdi-water-plus-outline::before{content:"\F150B"}.mdi-water-polo::before{content:"\F12A0"}.mdi-water-pump::before{content:"\F058F"}.mdi-water-pump-off::before{content:"\F0F93"}.mdi-water-remove::before{content:"\F150C"}.mdi-water-remove-outline::before{content:"\F150D"}.mdi-water-sync::before{content:"\F17C6"}.mdi-water-thermometer::before{content:"\F1A85"}.mdi-water-thermometer-outline::before{content:"\F1A86"}.mdi-water-well::before{content:"\F106B"}.mdi-water-well-outline::before{content:"\F106C"}.mdi-waterfall::before{content:"\F1849"}.mdi-watering-can::before{content:"\F1481"}.mdi-watering-can-outline::before{content:"\F1482"}.mdi-watermark::before{content:"\F0612"}.mdi-wave::before{content:"\F0F2E"}.mdi-waveform::before{content:"\F147D"}.mdi-waves::before{content:"\F078D"}.mdi-waves-arrow-left::before{content:"\F1859"}.mdi-waves-arrow-right::before{content:"\F185A"}.mdi-waves-arrow-up::before{content:"\F185B"}.mdi-waze::before{content:"\F0BDE"}.mdi-weather-cloudy::before{content:"\F0590"}.mdi-weather-cloudy-alert::before{content:"\F0F2F"}.mdi-weather-cloudy-arrow-right::before{content:"\F0E6E"}.mdi-weather-cloudy-clock::before{content:"\F18F6"}.mdi-weather-dust::before{content:"\F1B5A"}.mdi-weather-fog::before{content:"\F0591"}.mdi-weather-hail::before{content:"\F0592"}.mdi-weather-hazy::before{content:"\F0F30"}.mdi-weather-hurricane::before{content:"\F0898"}.mdi-weather-hurricane-outline::before{content:"\F1C78"}.mdi-weather-lightning::before{content:"\F0593"}.mdi-weather-lightning-rainy::before{content:"\F067E"}.mdi-weather-night::before{content:"\F0594"}.mdi-weather-night-partly-cloudy::before{content:"\F0F31"}.mdi-weather-partly-cloudy::before{content:"\F0595"}.mdi-weather-partly-lightning::before{content:"\F0F32"}.mdi-weather-partly-rainy::before{content:"\F0F33"}.mdi-weather-partly-snowy::before{content:"\F0F34"}.mdi-weather-partly-snowy-rainy::before{content:"\F0F35"}.mdi-weather-pouring::before{content:"\F0596"}.mdi-weather-rainy::before{content:"\F0597"}.mdi-weather-snowy::before{content:"\F0598"}.mdi-weather-snowy-heavy::before{content:"\F0F36"}.mdi-weather-snowy-rainy::before{content:"\F067F"}.mdi-weather-sunny::before{content:"\F0599"}.mdi-weather-sunny-alert::before{content:"\F0F37"}.mdi-weather-sunny-off::before{content:"\F14E4"}.mdi-weather-sunset::before{content:"\F059A"}.mdi-weather-sunset-down::before{content:"\F059B"}.mdi-weather-sunset-up::before{content:"\F059C"}.mdi-weather-tornado::before{content:"\F0F38"}.mdi-weather-windy::before{content:"\F059D"}.mdi-weather-windy-variant::before{content:"\F059E"}.mdi-web::before{content:"\F059F"}.mdi-web-box::before{content:"\F0F94"}.mdi-web-cancel::before{content:"\F1790"}.mdi-web-check::before{content:"\F0789"}.mdi-web-clock::before{content:"\F124A"}.mdi-web-minus::before{content:"\F10A0"}.mdi-web-off::before{content:"\F0A8E"}.mdi-web-plus::before{content:"\F0033"}.mdi-web-refresh::before{content:"\F1791"}.mdi-web-remove::before{content:"\F0551"}.mdi-web-sync::before{content:"\F1792"}.mdi-webcam::before{content:"\F05A0"}.mdi-webcam-off::before{content:"\F1737"}.mdi-webhook::before{content:"\F062F"}.mdi-webpack::before{content:"\F072B"}.mdi-webrtc::before{content:"\F1248"}.mdi-wechat::before{content:"\F0611"}.mdi-weight::before{content:"\F05A1"}.mdi-weight-gram::before{content:"\F0D3F"}.mdi-weight-kilogram::before{content:"\F05A2"}.mdi-weight-lifter::before{content:"\F115D"}.mdi-weight-pound::before{content:"\F09B5"}.mdi-whatsapp::before{content:"\F05A3"}.mdi-wheel-barrow::before{content:"\F14F2"}.mdi-wheelchair::before{content:"\F1A87"}.mdi-wheelchair-accessibility::before{content:"\F05A4"}.mdi-whistle::before{content:"\F09B6"}.mdi-whistle-outline::before{content:"\F12BC"}.mdi-white-balance-auto::before{content:"\F05A5"}.mdi-white-balance-incandescent::before{content:"\F05A6"}.mdi-white-balance-iridescent::before{content:"\F05A7"}.mdi-white-balance-sunny::before{content:"\F05A8"}.mdi-widgets::before{content:"\F072C"}.mdi-widgets-outline::before{content:"\F1355"}.mdi-wifi::before{content:"\F05A9"}.mdi-wifi-alert::before{content:"\F16B5"}.mdi-wifi-arrow-down::before{content:"\F16B6"}.mdi-wifi-arrow-left::before{content:"\F16B7"}.mdi-wifi-arrow-left-right::before{content:"\F16B8"}.mdi-wifi-arrow-right::before{content:"\F16B9"}.mdi-wifi-arrow-up::before{content:"\F16BA"}.mdi-wifi-arrow-up-down::before{content:"\F16BB"}.mdi-wifi-cancel::before{content:"\F16BC"}.mdi-wifi-check::before{content:"\F16BD"}.mdi-wifi-cog::before{content:"\F16BE"}.mdi-wifi-lock::before{content:"\F16BF"}.mdi-wifi-lock-open::before{content:"\F16C0"}.mdi-wifi-marker::before{content:"\F16C1"}.mdi-wifi-minus::before{content:"\F16C2"}.mdi-wifi-off::before{content:"\F05AA"}.mdi-wifi-plus::before{content:"\F16C3"}.mdi-wifi-refresh::before{content:"\F16C4"}.mdi-wifi-remove::before{content:"\F16C5"}.mdi-wifi-settings::before{content:"\F16C6"}.mdi-wifi-star::before{content:"\F0E0B"}.mdi-wifi-strength-1::before{content:"\F091F"}.mdi-wifi-strength-1-alert::before{content:"\F0920"}.mdi-wifi-strength-1-lock::before{content:"\F0921"}.mdi-wifi-strength-1-lock-open::before{content:"\F16CB"}.mdi-wifi-strength-2::before{content:"\F0922"}.mdi-wifi-strength-2-alert::before{content:"\F0923"}.mdi-wifi-strength-2-lock::before{content:"\F0924"}.mdi-wifi-strength-2-lock-open::before{content:"\F16CC"}.mdi-wifi-strength-3::before{content:"\F0925"}.mdi-wifi-strength-3-alert::before{content:"\F0926"}.mdi-wifi-strength-3-lock::before{content:"\F0927"}.mdi-wifi-strength-3-lock-open::before{content:"\F16CD"}.mdi-wifi-strength-4::before{content:"\F0928"}.mdi-wifi-strength-4-alert::before{content:"\F0929"}.mdi-wifi-strength-4-lock::before{content:"\F092A"}.mdi-wifi-strength-4-lock-open::before{content:"\F16CE"}.mdi-wifi-strength-alert-outline::before{content:"\F092B"}.mdi-wifi-strength-lock-open-outline::before{content:"\F16CF"}.mdi-wifi-strength-lock-outline::before{content:"\F092C"}.mdi-wifi-strength-off::before{content:"\F092D"}.mdi-wifi-strength-off-outline::before{content:"\F092E"}.mdi-wifi-strength-outline::before{content:"\F092F"}.mdi-wifi-sync::before{content:"\F16C7"}.mdi-wikipedia::before{content:"\F05AC"}.mdi-wind-power::before{content:"\F1A88"}.mdi-wind-power-outline::before{content:"\F1A89"}.mdi-wind-turbine::before{content:"\F0DA5"}.mdi-wind-turbine-alert::before{content:"\F19AB"}.mdi-wind-turbine-check::before{content:"\F19AC"}.mdi-window-close::before{content:"\F05AD"}.mdi-window-closed::before{content:"\F05AE"}.mdi-window-closed-variant::before{content:"\F11DB"}.mdi-window-maximize::before{content:"\F05AF"}.mdi-window-minimize::before{content:"\F05B0"}.mdi-window-open::before{content:"\F05B1"}.mdi-window-open-variant::before{content:"\F11DC"}.mdi-window-restore::before{content:"\F05B2"}.mdi-window-shutter::before{content:"\F111C"}.mdi-window-shutter-alert::before{content:"\F111D"}.mdi-window-shutter-auto::before{content:"\F1BA3"}.mdi-window-shutter-cog::before{content:"\F1A8A"}.mdi-window-shutter-open::before{content:"\F111E"}.mdi-window-shutter-settings::before{content:"\F1A8B"}.mdi-windsock::before{content:"\F15FA"}.mdi-wiper::before{content:"\F0AE9"}.mdi-wiper-wash::before{content:"\F0DA6"}.mdi-wiper-wash-alert::before{content:"\F18DF"}.mdi-wizard-hat::before{content:"\F1477"}.mdi-wordpress::before{content:"\F05B4"}.mdi-wrap::before{content:"\F05B6"}.mdi-wrap-disabled::before{content:"\F0BDF"}.mdi-wrench::before{content:"\F05B7"}.mdi-wrench-check::before{content:"\F1B8F"}.mdi-wrench-check-outline::before{content:"\F1B90"}.mdi-wrench-clock::before{content:"\F19A3"}.mdi-wrench-clock-outline::before{content:"\F1B93"}.mdi-wrench-cog::before{content:"\F1B91"}.mdi-wrench-cog-outline::before{content:"\F1B92"}.mdi-wrench-outline::before{content:"\F0BE0"}.mdi-xamarin::before{content:"\F0845"}.mdi-xml::before{content:"\F05C0"}.mdi-xmpp::before{content:"\F07FF"}.mdi-yahoo::before{content:"\F0B4F"}.mdi-yeast::before{content:"\F05C1"}.mdi-yin-yang::before{content:"\F0680"}.mdi-yoga::before{content:"\F117C"}.mdi-youtube::before{content:"\F05C3"}.mdi-youtube-gaming::before{content:"\F0848"}.mdi-youtube-studio::before{content:"\F0847"}.mdi-youtube-subscription::before{content:"\F0D40"}.mdi-youtube-tv::before{content:"\F0448"}.mdi-yurt::before{content:"\F1516"}.mdi-z-wave::before{content:"\F0AEA"}.mdi-zend::before{content:"\F0AEB"}.mdi-zigbee::before{content:"\F0D41"}.mdi-zip-box::before{content:"\F05C4"}.mdi-zip-box-outline::before{content:"\F0FFA"}.mdi-zip-disk::before{content:"\F0A23"}.mdi-zodiac-aquarius::before{content:"\F0A7D"}.mdi-zodiac-aries::before{content:"\F0A7E"}.mdi-zodiac-cancer::before{content:"\F0A7F"}.mdi-zodiac-capricorn::before{content:"\F0A80"}.mdi-zodiac-gemini::before{content:"\F0A81"}.mdi-zodiac-leo::before{content:"\F0A82"}.mdi-zodiac-libra::before{content:"\F0A83"}.mdi-zodiac-pisces::before{content:"\F0A84"}.mdi-zodiac-sagittarius::before{content:"\F0A85"}.mdi-zodiac-scorpio::before{content:"\F0A86"}.mdi-zodiac-taurus::before{content:"\F0A87"}.mdi-zodiac-virgo::before{content:"\F0A88"}.mdi-blank::before{content:"\F68C";visibility:hidden}.mdi-18px.mdi-set,.mdi-18px.mdi:before{font-size:18px}.mdi-24px.mdi-set,.mdi-24px.mdi:before{font-size:24px}.mdi-36px.mdi-set,.mdi-36px.mdi:before{font-size:36px}.mdi-48px.mdi-set,.mdi-48px.mdi:before{font-size:48px}.mdi-dark:before{color:rgba(0,0,0,0.54)}.mdi-dark.mdi-inactive:before{color:rgba(0,0,0,0.26)}.mdi-light:before{color:#fff}.mdi-light.mdi-inactive:before{color:rgba(255,255,255,0.3)}.mdi-rotate-45:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mdi-rotate-90:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.mdi-rotate-135:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.mdi-rotate-180:before{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.mdi-rotate-225:before{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.mdi-rotate-270:before{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.mdi-rotate-315:before{-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.mdi-flip-h:before{-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}.mdi-flip-v:before{-webkit-transform:scaleY(-1);transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.mdi-spin:before{-webkit-animation:mdi-spin 2s infinite linear;animation:mdi-spin 2s infinite linear}@-webkit-keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes mdi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}} + +/*# sourceMappingURL=materialdesignicons.css.map */ \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.eot b/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.eot new file mode 100644 index 00000000..22ce412b Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.eot differ diff --git a/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.ttf b/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.ttf new file mode 100644 index 00000000..b00c684d Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.ttf differ diff --git a/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.woff b/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.woff new file mode 100644 index 00000000..425a06d2 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.woff differ diff --git a/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.woff2 b/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.woff2 new file mode 100644 index 00000000..5d3434d0 Binary files /dev/null and b/dj_backend_server/web/static/assets/libs/@mdi/font/fonts/materialdesignicons-webfont.woff2 differ diff --git a/dj_backend_server/web/static/assets/libs/@mdi/font/preview.html b/dj_backend_server/web/static/assets/libs/@mdi/font/preview.html new file mode 100644 index 00000000..8b6b0d2f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@mdi/font/preview.html @@ -0,0 +1,717 @@ + + + + + + + Material Design Icons + + + + + +

+ + + + Material Design Icons + 7.2.96 + + + + + npm install @mdi/font + +

+ +

Usage

+
<span class="mdi mdi-name"></span>
+ +
+ Click the icon, hex codepoint, or name below to copy the value to your clipboard. +
+ +

New Icons -

+
+ +

All Icons -

+
+ +

Deprecated Icons -

+

+ Deprecated icons will be removed in a future major release. +

+
+ +

Extras

+ +

The helper CSS classes are listed below.

+ +
+

Size

+ +
+
+
+ +
+
+ mdi-18px +
+
+
+
+ +
+
+ mdi-24px +
+
+
+
+ +
+
+ mdi-36px +
+
+
+
+ +
+
+ mdi-48px +
+
+
+
+ +

Rotate

+ +
+
+
+ +
+
+
+
+ +
+
+ mdi-rotate-45 +
+
+
+
+ +
+
+ mdi-rotate-90 +
+
+
+
+ +
+
+ mdi-rotate-135 +
+
+
+
+ +
+
+ mdi-rotate-180 +
+
+
+
+ +
+
+ mdi-rotate-225 +
+
+
+
+ +
+
+ mdi-rotate-270 +
+
+
+
+ +
+
+ mdi-rotate-315 +
+
+
+ +

Flip

+ +
+
+
+ +
+
+
+
+ +
+
+ mdi-flip-h +
+
+
+
+ +
+
+ mdi-flip-v +
+
+
+ +

Note: We do not include the ability to use mdi-flip-* and + mdi-rotate-* at the same time.

+ +

Spin

+ +
+
+
+ +
+
+ mdi-spin +
+
+
+
+ +
+
+ mdi-spin +
+
+
+ +

Color

+ +
+
+
+ +
+
+ mdi-light +
+
+
+
+ +
+
+ mdi-light mdi-inactive +
+
+
+
+ +
+
+ mdi-dark +
+
+
+
+ +
+
+ mdi-dark mdi-inactive +
+
+
+ + + + + + + + diff --git a/dj_backend_server/web/static/assets/libs/@mdi/font/scripts/verify.js b/dj_backend_server/web/static/assets/libs/@mdi/font/scripts/verify.js new file mode 100644 index 00000000..9fd077ea --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@mdi/font/scripts/verify.js @@ -0,0 +1,41 @@ +const fs = require('fs'); + +// Parse package.json +const packageFile = './package.json'; +const packageText = fs.readFileSync(packageFile, 'utf8'); +const packageJson = JSON.parse(packageText); +const packageVersion = packageJson.version; +// Check for preview.html +const previewFile = './preview.html'; +if (!fs.existsSync(previewFile)) { + throw new Error('Error: preview.html must exist!'); +} +const previewText = fs.readFileSync(previewFile, 'utf8'); +const parts = previewText.match(/([^<]+)<\/span>/); +if (parts === null) { + // Did you modify preview.html file ??? + throw new Error('Error: preview.html version string not found!'); +} +// Never include a index.html file! +const indexFile = './index.html'; +if (fs.existsSync(indexFile)) { + throw new Error('Error: index.html should not exist, only preview.html'); +} +const previewVersion = parts[1]; +if (packageVersion != previewVersion) { + // Not good, almost published the wrong version + throw new Error(`Error: package "${packageVersion}" != preview.html "${previewVersion}"`); +} +// Verify SCSS Version +const scssVariablesFile = './scss/_variables.scss'; +const scssVariablesText = fs.readFileSync(scssVariablesFile, 'utf8'); +const vParts = scssVariablesText.match(/"(\d+).(\d+).(\d+)" !default;/); +if (vParts === null) { + throw new Error('Error: Could not parse SCSS version!'); +} +const scssVersion = `${vParts[1]}.${vParts[2]}.${vParts[3]}`; +if (packageVersion != scssVersion) { + // Not good, almost published the wrong version + throw new Error(`Error: package "${packageVersion}" != scss/variables.scss "${previewVersion}"`); +} +console.log(`Success: ${packageVersion} looks good!`); diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/forms/tailwind.css b/dj_backend_server/web/static/assets/libs/@tailwindcss/forms/tailwind.css new file mode 100644 index 00000000..b530ec3d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/forms/tailwind.css @@ -0,0 +1,1124 @@ +/* +! tailwindcss v3.0.24 | MIT License | https://tailwindcss.com +*/ + +/* +1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) +2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) +*/ + +*, +::before, +::after { + box-sizing: border-box; + /* 1 */ + border-width: 0; + /* 2 */ + border-style: solid; + /* 2 */ + border-color: #e5e7eb; + /* 2 */ +} + +::before, +::after { + --tw-content: ''; +} + +/* +1. Use a consistent sensible line-height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +3. Use a more readable tab size. +4. Use the user's configured `sans` font-family by default. +*/ + +html { + line-height: 1.5; + /* 1 */ + -webkit-text-size-adjust: 100%; + /* 2 */ + -moz-tab-size: 4; + /* 3 */ + -o-tab-size: 4; + tab-size: 4; + /* 3 */ + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + /* 4 */ +} + +/* +1. Remove the margin in all browsers. +2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. +*/ + +body { + margin: 0; + /* 1 */ + line-height: inherit; + /* 2 */ +} + +/* +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +3. Ensure horizontal rules are visible by default. +*/ + +hr { + height: 0; + /* 1 */ + color: inherit; + /* 2 */ + border-top-width: 1px; + /* 3 */ +} + +/* +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/* +Remove the default font size and weight for headings. +*/ + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/* +Reset links to optimize for opt-in styling instead of opt-out. +*/ + +a { + color: inherit; + text-decoration: inherit; +} + +/* +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/* +1. Use the user's configured `mono` font family by default. +2. Correct the odd `em` font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/* +Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/* +Prevent `sub` and `sup` elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +3. Remove gaps between table borders by default. +*/ + +table { + text-indent: 0; + /* 1 */ + border-color: inherit; + /* 2 */ + border-collapse: collapse; + /* 3 */ +} + +/* +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +3. Remove default padding in all browsers. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; + /* 1 */ + font-size: 100%; + /* 1 */ + line-height: inherit; + /* 1 */ + color: inherit; + /* 1 */ + margin: 0; + /* 2 */ + padding: 0; + /* 3 */ +} + +/* +Remove the inheritance of text transform in Edge and Firefox. +*/ + +button, +select { + text-transform: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Remove default button styles. +*/ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; + /* 1 */ + background-color: transparent; + /* 2 */ + background-image: none; + /* 2 */ +} + +/* +Use the modern Firefox focus style for all focusable elements. +*/ + +:-moz-focusring { + outline: auto; +} + +/* +Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/* +Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/* +Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/* +1. Correct the odd appearance in Chrome and Safari. +2. Correct the outline style in Safari. +*/ + +[type='search'] { + -webkit-appearance: textfield; + /* 1 */ + outline-offset: -2px; + /* 2 */ +} + +/* +Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Change font properties to `inherit` in Safari. +*/ + +::-webkit-file-upload-button { + -webkit-appearance: button; + /* 1 */ + font: inherit; + /* 2 */ +} + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/* +Removes the default spacing and border for appropriate elements. +*/ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +fieldset { + margin: 0; + padding: 0; +} + +legend { + padding: 0; +} + +ol, +ul, +menu { + list-style: none; + margin: 0; + padding: 0; +} + +/* +Prevent resizing textareas horizontally by default. +*/ + +textarea { + resize: vertical; +} + +/* +1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) +2. Set the default placeholder color to the user's configured gray 400 color. +*/ + +input::-moz-placeholder, textarea::-moz-placeholder { + opacity: 1; + /* 1 */ + color: #9ca3af; + /* 2 */ +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder { + opacity: 1; + /* 1 */ + color: #9ca3af; + /* 2 */ +} + +input::placeholder, +textarea::placeholder { + opacity: 1; + /* 1 */ + color: #9ca3af; + /* 2 */ +} + +/* +Set the default cursor for buttons. +*/ + +button, +[role="button"] { + cursor: pointer; +} + +/* +Make sure disabled buttons don't get the pointer cursor. +*/ + +:disabled { + cursor: default; +} + +/* +1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) +2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) + This can trigger a poorly considered lint error in some tools but is included by design. +*/ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; + /* 1 */ + vertical-align: middle; + /* 2 */ +} + +/* +Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) +*/ + +img, +video { + max-width: 100%; + height: auto; +} + +/* +Ensure the default browser behavior of the `hidden` attribute. +*/ + +[hidden] { + display: none; +} + +[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #6b7280; + border-width: 1px; + border-radius: 0px; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5rem; + --tw-shadow: 0 0 #0000; +} + +[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus { + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + border-color: #2563eb; +} + +input::-moz-placeholder, textarea::-moz-placeholder { + color: #6b7280; + opacity: 1; +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder { + color: #6b7280; + opacity: 1; +} + +input::placeholder,textarea::placeholder { + color: #6b7280; + opacity: 1; +} + +::-webkit-datetime-edit-fields-wrapper { + padding: 0; +} + +::-webkit-date-and-time-value { + min-height: 1.5em; +} + +::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field { + padding-top: 0; + padding-bottom: 0; +} + +select { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); + background-position: right 0.5rem center; + background-repeat: no-repeat; + background-size: 1.5em 1.5em; + padding-right: 2.5rem; + -webkit-print-color-adjust: exact; + -moz-print-color-adjust: exact; + print-color-adjust: exact; +} + +[multiple],[size]:where(select:not([size="1"])) { + background-image: initial; + background-position: initial; + background-repeat: unset; + background-size: initial; + padding-right: 0.75rem; + -webkit-print-color-adjust: unset; + -moz-print-color-adjust: unset; + print-color-adjust: unset; +} + +[type='checkbox'],[type='radio'] { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + padding: 0; + -webkit-print-color-adjust: exact; + -moz-print-color-adjust: exact; + print-color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + flex-shrink: 0; + height: 1rem; + width: 1rem; + color: #2563eb; + background-color: #fff; + border-color: #6b7280; + border-width: 1px; + --tw-shadow: 0 0 #0000; +} + +[type='checkbox'] { + border-radius: 0px; +} + +[type='radio'] { + border-radius: 100%; +} + +[type='checkbox']:focus,[type='radio']:focus { + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 2px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); +} + +[type='checkbox']:checked,[type='radio']:checked { + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +[type='checkbox']:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e"); +} + +[type='radio']:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); +} + +[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus { + border-color: transparent; + background-color: currentColor; +} + +[type='checkbox']:indeterminate { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus { + border-color: transparent; + background-color: currentColor; +} + +[type='file'] { + background: unset; + border-color: inherit; + border-width: 0; + border-radius: 0; + padding: 0; + font-size: unset; + line-height: inherit; +} + +[type='file']:focus { + outline: 1px solid ButtonText; + outline: 1px auto -webkit-focus-ring-color; +} + +*, ::before, ::after { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} + +.form-input,.form-textarea,.form-select,.form-multiselect { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #6b7280; + border-width: 1px; + border-radius: 0px; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5rem; + --tw-shadow: 0 0 #0000; +} + +.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus { + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); + border-color: #2563eb; +} + +.form-input::-moz-placeholder, .form-textarea::-moz-placeholder { + color: #6b7280; + opacity: 1; +} + +.form-input:-ms-input-placeholder, .form-textarea:-ms-input-placeholder { + color: #6b7280; + opacity: 1; +} + +.form-input::placeholder,.form-textarea::placeholder { + color: #6b7280; + opacity: 1; +} + +.form-input::-webkit-datetime-edit-fields-wrapper { + padding: 0; +} + +.form-input::-webkit-date-and-time-value { + min-height: 1.5em; +} + +.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field { + padding-top: 0; + padding-bottom: 0; +} + +.form-select { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); + background-position: right 0.5rem center; + background-repeat: no-repeat; + background-size: 1.5em 1.5em; + padding-right: 2.5rem; + -webkit-print-color-adjust: exact; + -moz-print-color-adjust: exact; + print-color-adjust: exact; +} + +.form-select:where([size]:not([size="1"])) { + background-image: initial; + background-position: initial; + background-repeat: unset; + background-size: initial; + padding-right: 0.75rem; + -webkit-print-color-adjust: unset; + -moz-print-color-adjust: unset; + print-color-adjust: unset; +} + +.form-checkbox,.form-radio { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + padding: 0; + -webkit-print-color-adjust: exact; + -moz-print-color-adjust: exact; + print-color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + flex-shrink: 0; + height: 1rem; + width: 1rem; + color: #2563eb; + background-color: #fff; + border-color: #6b7280; + border-width: 1px; + --tw-shadow: 0 0 #0000; +} + +.form-checkbox { + border-radius: 0px; +} + +.form-radio { + border-radius: 100%; +} + +.form-checkbox:focus,.form-radio:focus { + outline: 2px solid transparent; + outline-offset: 2px; + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 2px; + --tw-ring-offset-color: #fff; + --tw-ring-color: #2563eb; + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); +} + +.form-checkbox:checked,.form-radio:checked { + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +.form-checkbox:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e"); +} + +.form-radio:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); +} + +.form-checkbox:checked:hover,.form-checkbox:checked:focus,.form-radio:checked:hover,.form-radio:checked:focus { + border-color: transparent; + background-color: currentColor; +} + +.form-checkbox:indeterminate { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +.form-checkbox:indeterminate:hover,.form-checkbox:indeterminate:focus { + border-color: transparent; + background-color: currentColor; +} + +.mx-auto { + margin-left: auto; + margin-right: auto; +} + +.mt-2 { + margin-top: 0.5rem; +} + +.mt-4 { + margin-top: 1rem; +} + +.mt-8 { + margin-top: 2rem; +} + +.mt-1 { + margin-top: 0.25rem; +} + +.ml-2 { + margin-left: 0.5rem; +} + +.mt-0 { + margin-top: 0px; +} + +.block { + display: block; +} + +.flex { + display: flex; +} + +.inline-flex { + display: inline-flex; +} + +.grid { + display: grid; +} + +.h-24 { + height: 6rem; +} + +.w-full { + width: 100%; +} + +.max-w-xl { + max-width: 36rem; +} + +.max-w-md { + max-width: 28rem; +} + +.max-w-4xl { + max-width: 56rem; +} + +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); +} + +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); +} + +.items-start { + align-items: flex-start; +} + +.items-center { + align-items: center; +} + +.gap-6 { + gap: 1.5rem; +} + +.space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); +} + +.divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); +} + +.rounded-md { + border-radius: 0.375rem; +} + +.rounded { + border-radius: 0.25rem; +} + +.border-0 { + border-width: 0px; +} + +.border-2 { + border-width: 2px; +} + +.border-b-2 { + border-bottom-width: 2px; +} + +.border-gray-300 { + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity)); +} + +.border-gray-200 { + --tw-border-opacity: 1; + border-color: rgb(229 231 235 / var(--tw-border-opacity)); +} + +.border-transparent { + border-color: transparent; +} + +.bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} + +.bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgb(229 231 235 / var(--tw-bg-opacity)); +} + +.px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; +} + +.py-12 { + padding-top: 3rem; + padding-bottom: 3rem; +} + +.py-8 { + padding-top: 2rem; + padding-bottom: 2rem; +} + +.px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; +} + +.px-0 { + padding-left: 0px; + padding-right: 0px; +} + +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; +} + +.text-lg { + font-size: 1.125rem; + line-height: 1.75rem; +} + +.text-2xl { + font-size: 1.5rem; + line-height: 2rem; +} + +.font-bold { + font-weight: 700; +} + +.text-gray-900 { + --tw-text-opacity: 1; + color: rgb(17 24 39 / var(--tw-text-opacity)); +} + +.text-gray-600 { + --tw-text-opacity: 1; + color: rgb(75 85 99 / var(--tw-text-opacity)); +} + +.text-gray-700 { + --tw-text-opacity: 1; + color: rgb(55 65 81 / var(--tw-text-opacity)); +} + +.text-indigo-600 { + --tw-text-opacity: 1; + color: rgb(79 70 229 / var(--tw-text-opacity)); +} + +.text-black { + --tw-text-opacity: 1; + color: rgb(0 0 0 / var(--tw-text-opacity)); +} + +.text-gray-500 { + --tw-text-opacity: 1; + color: rgb(107 114 128 / var(--tw-text-opacity)); +} + +.underline { + -webkit-text-decoration-line: underline; + text-decoration-line: underline; +} + +.antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgb(165 180 252 / var(--tw-border-opacity)); +} + +.focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgb(0 0 0 / var(--tw-border-opacity)); +} + +.focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity)); +} + +.focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgb(107 114 128 / var(--tw-border-opacity)); +} + +.focus\:border-transparent:focus { + border-color: transparent; +} + +.focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +.focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgb(229 231 235 / var(--tw-bg-opacity)); +} + +.focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(199 210 254 / var(--tw-ring-opacity)); +} + +.focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity)); +} + +.focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity)); +} + +.focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; +} + +.focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; +} + +.focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; +} + +@media (min-width: 768px) { + .md\:max-w-4xl { + max-width: 56rem; + } + + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } +} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/LICENSE-MIT b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/LICENSE-MIT new file mode 100644 index 00000000..fd0e863a --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/LICENSE-MIT @@ -0,0 +1,22 @@ +Copyright (c) Ben Briggs (http://beneb.info) + +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/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/index.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/index.js new file mode 100644 index 00000000..6e76a32b --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/index.js @@ -0,0 +1,24 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _processor = _interopRequireDefault(require("./processor")); + +var selectors = _interopRequireWildcard(require("./selectors")); + +function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; } + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var parser = function parser(processor) { + return new _processor["default"](processor); +}; + +Object.assign(parser, selectors); +delete parser.__esModule; +var _default = parser; +exports["default"] = _default; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/parser.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/parser.js new file mode 100644 index 00000000..e0451de0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/parser.js @@ -0,0 +1,1243 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _root = _interopRequireDefault(require("./selectors/root")); + +var _selector = _interopRequireDefault(require("./selectors/selector")); + +var _className = _interopRequireDefault(require("./selectors/className")); + +var _comment = _interopRequireDefault(require("./selectors/comment")); + +var _id = _interopRequireDefault(require("./selectors/id")); + +var _tag = _interopRequireDefault(require("./selectors/tag")); + +var _string = _interopRequireDefault(require("./selectors/string")); + +var _pseudo = _interopRequireDefault(require("./selectors/pseudo")); + +var _attribute = _interopRequireWildcard(require("./selectors/attribute")); + +var _universal = _interopRequireDefault(require("./selectors/universal")); + +var _combinator = _interopRequireDefault(require("./selectors/combinator")); + +var _nesting = _interopRequireDefault(require("./selectors/nesting")); + +var _sortAscending = _interopRequireDefault(require("./sortAscending")); + +var _tokenize = _interopRequireWildcard(require("./tokenize")); + +var tokens = _interopRequireWildcard(require("./tokenTypes")); + +var types = _interopRequireWildcard(require("./selectors/types")); + +var _util = require("./util"); + +var _WHITESPACE_TOKENS, _Object$assign; + +function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; } + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +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); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +var WHITESPACE_TOKENS = (_WHITESPACE_TOKENS = {}, _WHITESPACE_TOKENS[tokens.space] = true, _WHITESPACE_TOKENS[tokens.cr] = true, _WHITESPACE_TOKENS[tokens.feed] = true, _WHITESPACE_TOKENS[tokens.newline] = true, _WHITESPACE_TOKENS[tokens.tab] = true, _WHITESPACE_TOKENS); +var WHITESPACE_EQUIV_TOKENS = Object.assign({}, WHITESPACE_TOKENS, (_Object$assign = {}, _Object$assign[tokens.comment] = true, _Object$assign)); + +function tokenStart(token) { + return { + line: token[_tokenize.FIELDS.START_LINE], + column: token[_tokenize.FIELDS.START_COL] + }; +} + +function tokenEnd(token) { + return { + line: token[_tokenize.FIELDS.END_LINE], + column: token[_tokenize.FIELDS.END_COL] + }; +} + +function getSource(startLine, startColumn, endLine, endColumn) { + return { + start: { + line: startLine, + column: startColumn + }, + end: { + line: endLine, + column: endColumn + } + }; +} + +function getTokenSource(token) { + return getSource(token[_tokenize.FIELDS.START_LINE], token[_tokenize.FIELDS.START_COL], token[_tokenize.FIELDS.END_LINE], token[_tokenize.FIELDS.END_COL]); +} + +function getTokenSourceSpan(startToken, endToken) { + if (!startToken) { + return undefined; + } + + return getSource(startToken[_tokenize.FIELDS.START_LINE], startToken[_tokenize.FIELDS.START_COL], endToken[_tokenize.FIELDS.END_LINE], endToken[_tokenize.FIELDS.END_COL]); +} + +function unescapeProp(node, prop) { + var value = node[prop]; + + if (typeof value !== "string") { + return; + } + + if (value.indexOf("\\") !== -1) { + (0, _util.ensureObject)(node, 'raws'); + node[prop] = (0, _util.unesc)(value); + + if (node.raws[prop] === undefined) { + node.raws[prop] = value; + } + } + + return node; +} + +function indexesOf(array, item) { + var i = -1; + var indexes = []; + + while ((i = array.indexOf(item, i + 1)) !== -1) { + indexes.push(i); + } + + return indexes; +} + +function uniqs() { + var list = Array.prototype.concat.apply([], arguments); + return list.filter(function (item, i) { + return i === list.indexOf(item); + }); +} + +var Parser = /*#__PURE__*/function () { + function Parser(rule, options) { + if (options === void 0) { + options = {}; + } + + this.rule = rule; + this.options = Object.assign({ + lossy: false, + safe: false + }, options); + this.position = 0; + this.css = typeof this.rule === 'string' ? this.rule : this.rule.selector; + this.tokens = (0, _tokenize["default"])({ + css: this.css, + error: this._errorGenerator(), + safe: this.options.safe + }); + var rootSource = getTokenSourceSpan(this.tokens[0], this.tokens[this.tokens.length - 1]); + this.root = new _root["default"]({ + source: rootSource + }); + this.root.errorGenerator = this._errorGenerator(); + var selector = new _selector["default"]({ + source: { + start: { + line: 1, + column: 1 + } + } + }); + this.root.append(selector); + this.current = selector; + this.loop(); + } + + var _proto = Parser.prototype; + + _proto._errorGenerator = function _errorGenerator() { + var _this = this; + + return function (message, errorOptions) { + if (typeof _this.rule === 'string') { + return new Error(message); + } + + return _this.rule.error(message, errorOptions); + }; + }; + + _proto.attribute = function attribute() { + var attr = []; + var startingToken = this.currToken; + this.position++; + + while (this.position < this.tokens.length && this.currToken[_tokenize.FIELDS.TYPE] !== tokens.closeSquare) { + attr.push(this.currToken); + this.position++; + } + + if (this.currToken[_tokenize.FIELDS.TYPE] !== tokens.closeSquare) { + return this.expected('closing square bracket', this.currToken[_tokenize.FIELDS.START_POS]); + } + + var len = attr.length; + var node = { + source: getSource(startingToken[1], startingToken[2], this.currToken[3], this.currToken[4]), + sourceIndex: startingToken[_tokenize.FIELDS.START_POS] + }; + + if (len === 1 && !~[tokens.word].indexOf(attr[0][_tokenize.FIELDS.TYPE])) { + return this.expected('attribute', attr[0][_tokenize.FIELDS.START_POS]); + } + + var pos = 0; + var spaceBefore = ''; + var commentBefore = ''; + var lastAdded = null; + var spaceAfterMeaningfulToken = false; + + while (pos < len) { + var token = attr[pos]; + var content = this.content(token); + var next = attr[pos + 1]; + + switch (token[_tokenize.FIELDS.TYPE]) { + case tokens.space: + // if ( + // len === 1 || + // pos === 0 && this.content(next) === '|' + // ) { + // return this.expected('attribute', token[TOKEN.START_POS], content); + // } + spaceAfterMeaningfulToken = true; + + if (this.options.lossy) { + break; + } + + if (lastAdded) { + (0, _util.ensureObject)(node, 'spaces', lastAdded); + var prevContent = node.spaces[lastAdded].after || ''; + node.spaces[lastAdded].after = prevContent + content; + var existingComment = (0, _util.getProp)(node, 'raws', 'spaces', lastAdded, 'after') || null; + + if (existingComment) { + node.raws.spaces[lastAdded].after = existingComment + content; + } + } else { + spaceBefore = spaceBefore + content; + commentBefore = commentBefore + content; + } + + break; + + case tokens.asterisk: + if (next[_tokenize.FIELDS.TYPE] === tokens.equals) { + node.operator = content; + lastAdded = 'operator'; + } else if ((!node.namespace || lastAdded === "namespace" && !spaceAfterMeaningfulToken) && next) { + if (spaceBefore) { + (0, _util.ensureObject)(node, 'spaces', 'attribute'); + node.spaces.attribute.before = spaceBefore; + spaceBefore = ''; + } + + if (commentBefore) { + (0, _util.ensureObject)(node, 'raws', 'spaces', 'attribute'); + node.raws.spaces.attribute.before = spaceBefore; + commentBefore = ''; + } + + node.namespace = (node.namespace || "") + content; + var rawValue = (0, _util.getProp)(node, 'raws', 'namespace') || null; + + if (rawValue) { + node.raws.namespace += content; + } + + lastAdded = 'namespace'; + } + + spaceAfterMeaningfulToken = false; + break; + + case tokens.dollar: + if (lastAdded === "value") { + var oldRawValue = (0, _util.getProp)(node, 'raws', 'value'); + node.value += "$"; + + if (oldRawValue) { + node.raws.value = oldRawValue + "$"; + } + + break; + } + + // Falls through + + case tokens.caret: + if (next[_tokenize.FIELDS.TYPE] === tokens.equals) { + node.operator = content; + lastAdded = 'operator'; + } + + spaceAfterMeaningfulToken = false; + break; + + case tokens.combinator: + if (content === '~' && next[_tokenize.FIELDS.TYPE] === tokens.equals) { + node.operator = content; + lastAdded = 'operator'; + } + + if (content !== '|') { + spaceAfterMeaningfulToken = false; + break; + } + + if (next[_tokenize.FIELDS.TYPE] === tokens.equals) { + node.operator = content; + lastAdded = 'operator'; + } else if (!node.namespace && !node.attribute) { + node.namespace = true; + } + + spaceAfterMeaningfulToken = false; + break; + + case tokens.word: + if (next && this.content(next) === '|' && attr[pos + 2] && attr[pos + 2][_tokenize.FIELDS.TYPE] !== tokens.equals && // this look-ahead probably fails with comment nodes involved. + !node.operator && !node.namespace) { + node.namespace = content; + lastAdded = 'namespace'; + } else if (!node.attribute || lastAdded === "attribute" && !spaceAfterMeaningfulToken) { + if (spaceBefore) { + (0, _util.ensureObject)(node, 'spaces', 'attribute'); + node.spaces.attribute.before = spaceBefore; + spaceBefore = ''; + } + + if (commentBefore) { + (0, _util.ensureObject)(node, 'raws', 'spaces', 'attribute'); + node.raws.spaces.attribute.before = commentBefore; + commentBefore = ''; + } + + node.attribute = (node.attribute || "") + content; + + var _rawValue = (0, _util.getProp)(node, 'raws', 'attribute') || null; + + if (_rawValue) { + node.raws.attribute += content; + } + + lastAdded = 'attribute'; + } else if (!node.value && node.value !== "" || lastAdded === "value" && !spaceAfterMeaningfulToken) { + var _unescaped = (0, _util.unesc)(content); + + var _oldRawValue = (0, _util.getProp)(node, 'raws', 'value') || ''; + + var oldValue = node.value || ''; + node.value = oldValue + _unescaped; + node.quoteMark = null; + + if (_unescaped !== content || _oldRawValue) { + (0, _util.ensureObject)(node, 'raws'); + node.raws.value = (_oldRawValue || oldValue) + content; + } + + lastAdded = 'value'; + } else { + var insensitive = content === 'i' || content === "I"; + + if ((node.value || node.value === '') && (node.quoteMark || spaceAfterMeaningfulToken)) { + node.insensitive = insensitive; + + if (!insensitive || content === "I") { + (0, _util.ensureObject)(node, 'raws'); + node.raws.insensitiveFlag = content; + } + + lastAdded = 'insensitive'; + + if (spaceBefore) { + (0, _util.ensureObject)(node, 'spaces', 'insensitive'); + node.spaces.insensitive.before = spaceBefore; + spaceBefore = ''; + } + + if (commentBefore) { + (0, _util.ensureObject)(node, 'raws', 'spaces', 'insensitive'); + node.raws.spaces.insensitive.before = commentBefore; + commentBefore = ''; + } + } else if (node.value || node.value === '') { + lastAdded = 'value'; + node.value += content; + + if (node.raws.value) { + node.raws.value += content; + } + } + } + + spaceAfterMeaningfulToken = false; + break; + + case tokens.str: + if (!node.attribute || !node.operator) { + return this.error("Expected an attribute followed by an operator preceding the string.", { + index: token[_tokenize.FIELDS.START_POS] + }); + } + + var _unescapeValue = (0, _attribute.unescapeValue)(content), + unescaped = _unescapeValue.unescaped, + quoteMark = _unescapeValue.quoteMark; + + node.value = unescaped; + node.quoteMark = quoteMark; + lastAdded = 'value'; + (0, _util.ensureObject)(node, 'raws'); + node.raws.value = content; + spaceAfterMeaningfulToken = false; + break; + + case tokens.equals: + if (!node.attribute) { + return this.expected('attribute', token[_tokenize.FIELDS.START_POS], content); + } + + if (node.value) { + return this.error('Unexpected "=" found; an operator was already defined.', { + index: token[_tokenize.FIELDS.START_POS] + }); + } + + node.operator = node.operator ? node.operator + content : content; + lastAdded = 'operator'; + spaceAfterMeaningfulToken = false; + break; + + case tokens.comment: + if (lastAdded) { + if (spaceAfterMeaningfulToken || next && next[_tokenize.FIELDS.TYPE] === tokens.space || lastAdded === 'insensitive') { + var lastComment = (0, _util.getProp)(node, 'spaces', lastAdded, 'after') || ''; + var rawLastComment = (0, _util.getProp)(node, 'raws', 'spaces', lastAdded, 'after') || lastComment; + (0, _util.ensureObject)(node, 'raws', 'spaces', lastAdded); + node.raws.spaces[lastAdded].after = rawLastComment + content; + } else { + var lastValue = node[lastAdded] || ''; + var rawLastValue = (0, _util.getProp)(node, 'raws', lastAdded) || lastValue; + (0, _util.ensureObject)(node, 'raws'); + node.raws[lastAdded] = rawLastValue + content; + } + } else { + commentBefore = commentBefore + content; + } + + break; + + default: + return this.error("Unexpected \"" + content + "\" found.", { + index: token[_tokenize.FIELDS.START_POS] + }); + } + + pos++; + } + + unescapeProp(node, "attribute"); + unescapeProp(node, "namespace"); + this.newNode(new _attribute["default"](node)); + this.position++; + } + /** + * return a node containing meaningless garbage up to (but not including) the specified token position. + * if the token position is negative, all remaining tokens are consumed. + * + * This returns an array containing a single string node if all whitespace, + * otherwise an array of comment nodes with space before and after. + * + * These tokens are not added to the current selector, the caller can add them or use them to amend + * a previous node's space metadata. + * + * In lossy mode, this returns only comments. + */ + ; + + _proto.parseWhitespaceEquivalentTokens = function parseWhitespaceEquivalentTokens(stopPosition) { + if (stopPosition < 0) { + stopPosition = this.tokens.length; + } + + var startPosition = this.position; + var nodes = []; + var space = ""; + var lastComment = undefined; + + do { + if (WHITESPACE_TOKENS[this.currToken[_tokenize.FIELDS.TYPE]]) { + if (!this.options.lossy) { + space += this.content(); + } + } else if (this.currToken[_tokenize.FIELDS.TYPE] === tokens.comment) { + var spaces = {}; + + if (space) { + spaces.before = space; + space = ""; + } + + lastComment = new _comment["default"]({ + value: this.content(), + source: getTokenSource(this.currToken), + sourceIndex: this.currToken[_tokenize.FIELDS.START_POS], + spaces: spaces + }); + nodes.push(lastComment); + } + } while (++this.position < stopPosition); + + if (space) { + if (lastComment) { + lastComment.spaces.after = space; + } else if (!this.options.lossy) { + var firstToken = this.tokens[startPosition]; + var lastToken = this.tokens[this.position - 1]; + nodes.push(new _string["default"]({ + value: '', + source: getSource(firstToken[_tokenize.FIELDS.START_LINE], firstToken[_tokenize.FIELDS.START_COL], lastToken[_tokenize.FIELDS.END_LINE], lastToken[_tokenize.FIELDS.END_COL]), + sourceIndex: firstToken[_tokenize.FIELDS.START_POS], + spaces: { + before: space, + after: '' + } + })); + } + } + + return nodes; + } + /** + * + * @param {*} nodes + */ + ; + + _proto.convertWhitespaceNodesToSpace = function convertWhitespaceNodesToSpace(nodes, requiredSpace) { + var _this2 = this; + + if (requiredSpace === void 0) { + requiredSpace = false; + } + + var space = ""; + var rawSpace = ""; + nodes.forEach(function (n) { + var spaceBefore = _this2.lossySpace(n.spaces.before, requiredSpace); + + var rawSpaceBefore = _this2.lossySpace(n.rawSpaceBefore, requiredSpace); + + space += spaceBefore + _this2.lossySpace(n.spaces.after, requiredSpace && spaceBefore.length === 0); + rawSpace += spaceBefore + n.value + _this2.lossySpace(n.rawSpaceAfter, requiredSpace && rawSpaceBefore.length === 0); + }); + + if (rawSpace === space) { + rawSpace = undefined; + } + + var result = { + space: space, + rawSpace: rawSpace + }; + return result; + }; + + _proto.isNamedCombinator = function isNamedCombinator(position) { + if (position === void 0) { + position = this.position; + } + + return this.tokens[position + 0] && this.tokens[position + 0][_tokenize.FIELDS.TYPE] === tokens.slash && this.tokens[position + 1] && this.tokens[position + 1][_tokenize.FIELDS.TYPE] === tokens.word && this.tokens[position + 2] && this.tokens[position + 2][_tokenize.FIELDS.TYPE] === tokens.slash; + }; + + _proto.namedCombinator = function namedCombinator() { + if (this.isNamedCombinator()) { + var nameRaw = this.content(this.tokens[this.position + 1]); + var name = (0, _util.unesc)(nameRaw).toLowerCase(); + var raws = {}; + + if (name !== nameRaw) { + raws.value = "/" + nameRaw + "/"; + } + + var node = new _combinator["default"]({ + value: "/" + name + "/", + source: getSource(this.currToken[_tokenize.FIELDS.START_LINE], this.currToken[_tokenize.FIELDS.START_COL], this.tokens[this.position + 2][_tokenize.FIELDS.END_LINE], this.tokens[this.position + 2][_tokenize.FIELDS.END_COL]), + sourceIndex: this.currToken[_tokenize.FIELDS.START_POS], + raws: raws + }); + this.position = this.position + 3; + return node; + } else { + this.unexpected(); + } + }; + + _proto.combinator = function combinator() { + var _this3 = this; + + if (this.content() === '|') { + return this.namespace(); + } // We need to decide between a space that's a descendant combinator and meaningless whitespace at the end of a selector. + + + var nextSigTokenPos = this.locateNextMeaningfulToken(this.position); + + if (nextSigTokenPos < 0 || this.tokens[nextSigTokenPos][_tokenize.FIELDS.TYPE] === tokens.comma) { + var nodes = this.parseWhitespaceEquivalentTokens(nextSigTokenPos); + + if (nodes.length > 0) { + var last = this.current.last; + + if (last) { + var _this$convertWhitespa = this.convertWhitespaceNodesToSpace(nodes), + space = _this$convertWhitespa.space, + rawSpace = _this$convertWhitespa.rawSpace; + + if (rawSpace !== undefined) { + last.rawSpaceAfter += rawSpace; + } + + last.spaces.after += space; + } else { + nodes.forEach(function (n) { + return _this3.newNode(n); + }); + } + } + + return; + } + + var firstToken = this.currToken; + var spaceOrDescendantSelectorNodes = undefined; + + if (nextSigTokenPos > this.position) { + spaceOrDescendantSelectorNodes = this.parseWhitespaceEquivalentTokens(nextSigTokenPos); + } + + var node; + + if (this.isNamedCombinator()) { + node = this.namedCombinator(); + } else if (this.currToken[_tokenize.FIELDS.TYPE] === tokens.combinator) { + node = new _combinator["default"]({ + value: this.content(), + source: getTokenSource(this.currToken), + sourceIndex: this.currToken[_tokenize.FIELDS.START_POS] + }); + this.position++; + } else if (WHITESPACE_TOKENS[this.currToken[_tokenize.FIELDS.TYPE]]) {// pass + } else if (!spaceOrDescendantSelectorNodes) { + this.unexpected(); + } + + if (node) { + if (spaceOrDescendantSelectorNodes) { + var _this$convertWhitespa2 = this.convertWhitespaceNodesToSpace(spaceOrDescendantSelectorNodes), + _space = _this$convertWhitespa2.space, + _rawSpace = _this$convertWhitespa2.rawSpace; + + node.spaces.before = _space; + node.rawSpaceBefore = _rawSpace; + } + } else { + // descendant combinator + var _this$convertWhitespa3 = this.convertWhitespaceNodesToSpace(spaceOrDescendantSelectorNodes, true), + _space2 = _this$convertWhitespa3.space, + _rawSpace2 = _this$convertWhitespa3.rawSpace; + + if (!_rawSpace2) { + _rawSpace2 = _space2; + } + + var spaces = {}; + var raws = { + spaces: {} + }; + + if (_space2.endsWith(' ') && _rawSpace2.endsWith(' ')) { + spaces.before = _space2.slice(0, _space2.length - 1); + raws.spaces.before = _rawSpace2.slice(0, _rawSpace2.length - 1); + } else if (_space2.startsWith(' ') && _rawSpace2.startsWith(' ')) { + spaces.after = _space2.slice(1); + raws.spaces.after = _rawSpace2.slice(1); + } else { + raws.value = _rawSpace2; + } + + node = new _combinator["default"]({ + value: ' ', + source: getTokenSourceSpan(firstToken, this.tokens[this.position - 1]), + sourceIndex: firstToken[_tokenize.FIELDS.START_POS], + spaces: spaces, + raws: raws + }); + } + + if (this.currToken && this.currToken[_tokenize.FIELDS.TYPE] === tokens.space) { + node.spaces.after = this.optionalSpace(this.content()); + this.position++; + } + + return this.newNode(node); + }; + + _proto.comma = function comma() { + if (this.position === this.tokens.length - 1) { + this.root.trailingComma = true; + this.position++; + return; + } + + this.current._inferEndPosition(); + + var selector = new _selector["default"]({ + source: { + start: tokenStart(this.tokens[this.position + 1]) + } + }); + this.current.parent.append(selector); + this.current = selector; + this.position++; + }; + + _proto.comment = function comment() { + var current = this.currToken; + this.newNode(new _comment["default"]({ + value: this.content(), + source: getTokenSource(current), + sourceIndex: current[_tokenize.FIELDS.START_POS] + })); + this.position++; + }; + + _proto.error = function error(message, opts) { + throw this.root.error(message, opts); + }; + + _proto.missingBackslash = function missingBackslash() { + return this.error('Expected a backslash preceding the semicolon.', { + index: this.currToken[_tokenize.FIELDS.START_POS] + }); + }; + + _proto.missingParenthesis = function missingParenthesis() { + return this.expected('opening parenthesis', this.currToken[_tokenize.FIELDS.START_POS]); + }; + + _proto.missingSquareBracket = function missingSquareBracket() { + return this.expected('opening square bracket', this.currToken[_tokenize.FIELDS.START_POS]); + }; + + _proto.unexpected = function unexpected() { + return this.error("Unexpected '" + this.content() + "'. Escaping special characters with \\ may help.", this.currToken[_tokenize.FIELDS.START_POS]); + }; + + _proto.namespace = function namespace() { + var before = this.prevToken && this.content(this.prevToken) || true; + + if (this.nextToken[_tokenize.FIELDS.TYPE] === tokens.word) { + this.position++; + return this.word(before); + } else if (this.nextToken[_tokenize.FIELDS.TYPE] === tokens.asterisk) { + this.position++; + return this.universal(before); + } + }; + + _proto.nesting = function nesting() { + if (this.nextToken) { + var nextContent = this.content(this.nextToken); + + if (nextContent === "|") { + this.position++; + return; + } + } + + var current = this.currToken; + this.newNode(new _nesting["default"]({ + value: this.content(), + source: getTokenSource(current), + sourceIndex: current[_tokenize.FIELDS.START_POS] + })); + this.position++; + }; + + _proto.parentheses = function parentheses() { + var last = this.current.last; + var unbalanced = 1; + this.position++; + + if (last && last.type === types.PSEUDO) { + var selector = new _selector["default"]({ + source: { + start: tokenStart(this.tokens[this.position - 1]) + } + }); + var cache = this.current; + last.append(selector); + this.current = selector; + + while (this.position < this.tokens.length && unbalanced) { + if (this.currToken[_tokenize.FIELDS.TYPE] === tokens.openParenthesis) { + unbalanced++; + } + + if (this.currToken[_tokenize.FIELDS.TYPE] === tokens.closeParenthesis) { + unbalanced--; + } + + if (unbalanced) { + this.parse(); + } else { + this.current.source.end = tokenEnd(this.currToken); + this.current.parent.source.end = tokenEnd(this.currToken); + this.position++; + } + } + + this.current = cache; + } else { + // I think this case should be an error. It's used to implement a basic parse of media queries + // but I don't think it's a good idea. + var parenStart = this.currToken; + var parenValue = "("; + var parenEnd; + + while (this.position < this.tokens.length && unbalanced) { + if (this.currToken[_tokenize.FIELDS.TYPE] === tokens.openParenthesis) { + unbalanced++; + } + + if (this.currToken[_tokenize.FIELDS.TYPE] === tokens.closeParenthesis) { + unbalanced--; + } + + parenEnd = this.currToken; + parenValue += this.parseParenthesisToken(this.currToken); + this.position++; + } + + if (last) { + last.appendToPropertyAndEscape("value", parenValue, parenValue); + } else { + this.newNode(new _string["default"]({ + value: parenValue, + source: getSource(parenStart[_tokenize.FIELDS.START_LINE], parenStart[_tokenize.FIELDS.START_COL], parenEnd[_tokenize.FIELDS.END_LINE], parenEnd[_tokenize.FIELDS.END_COL]), + sourceIndex: parenStart[_tokenize.FIELDS.START_POS] + })); + } + } + + if (unbalanced) { + return this.expected('closing parenthesis', this.currToken[_tokenize.FIELDS.START_POS]); + } + }; + + _proto.pseudo = function pseudo() { + var _this4 = this; + + var pseudoStr = ''; + var startingToken = this.currToken; + + while (this.currToken && this.currToken[_tokenize.FIELDS.TYPE] === tokens.colon) { + pseudoStr += this.content(); + this.position++; + } + + if (!this.currToken) { + return this.expected(['pseudo-class', 'pseudo-element'], this.position - 1); + } + + if (this.currToken[_tokenize.FIELDS.TYPE] === tokens.word) { + this.splitWord(false, function (first, length) { + pseudoStr += first; + + _this4.newNode(new _pseudo["default"]({ + value: pseudoStr, + source: getTokenSourceSpan(startingToken, _this4.currToken), + sourceIndex: startingToken[_tokenize.FIELDS.START_POS] + })); + + if (length > 1 && _this4.nextToken && _this4.nextToken[_tokenize.FIELDS.TYPE] === tokens.openParenthesis) { + _this4.error('Misplaced parenthesis.', { + index: _this4.nextToken[_tokenize.FIELDS.START_POS] + }); + } + }); + } else { + return this.expected(['pseudo-class', 'pseudo-element'], this.currToken[_tokenize.FIELDS.START_POS]); + } + }; + + _proto.space = function space() { + var content = this.content(); // Handle space before and after the selector + + if (this.position === 0 || this.prevToken[_tokenize.FIELDS.TYPE] === tokens.comma || this.prevToken[_tokenize.FIELDS.TYPE] === tokens.openParenthesis || this.current.nodes.every(function (node) { + return node.type === 'comment'; + })) { + this.spaces = this.optionalSpace(content); + this.position++; + } else if (this.position === this.tokens.length - 1 || this.nextToken[_tokenize.FIELDS.TYPE] === tokens.comma || this.nextToken[_tokenize.FIELDS.TYPE] === tokens.closeParenthesis) { + this.current.last.spaces.after = this.optionalSpace(content); + this.position++; + } else { + this.combinator(); + } + }; + + _proto.string = function string() { + var current = this.currToken; + this.newNode(new _string["default"]({ + value: this.content(), + source: getTokenSource(current), + sourceIndex: current[_tokenize.FIELDS.START_POS] + })); + this.position++; + }; + + _proto.universal = function universal(namespace) { + var nextToken = this.nextToken; + + if (nextToken && this.content(nextToken) === '|') { + this.position++; + return this.namespace(); + } + + var current = this.currToken; + this.newNode(new _universal["default"]({ + value: this.content(), + source: getTokenSource(current), + sourceIndex: current[_tokenize.FIELDS.START_POS] + }), namespace); + this.position++; + }; + + _proto.splitWord = function splitWord(namespace, firstCallback) { + var _this5 = this; + + var nextToken = this.nextToken; + var word = this.content(); + + while (nextToken && ~[tokens.dollar, tokens.caret, tokens.equals, tokens.word].indexOf(nextToken[_tokenize.FIELDS.TYPE])) { + this.position++; + var current = this.content(); + word += current; + + if (current.lastIndexOf('\\') === current.length - 1) { + var next = this.nextToken; + + if (next && next[_tokenize.FIELDS.TYPE] === tokens.space) { + word += this.requiredSpace(this.content(next)); + this.position++; + } + } + + nextToken = this.nextToken; + } + + var hasClass = indexesOf(word, '.').filter(function (i) { + // Allow escaped dot within class name + var escapedDot = word[i - 1] === '\\'; // Allow decimal numbers percent in @keyframes + + var isKeyframesPercent = /^\d+\.\d+%$/.test(word); + return !escapedDot && !isKeyframesPercent; + }); + var hasId = indexesOf(word, '#').filter(function (i) { + return word[i - 1] !== '\\'; + }); // Eliminate Sass interpolations from the list of id indexes + + var interpolations = indexesOf(word, '#{'); + + if (interpolations.length) { + hasId = hasId.filter(function (hashIndex) { + return !~interpolations.indexOf(hashIndex); + }); + } + + var indices = (0, _sortAscending["default"])(uniqs([0].concat(hasClass, hasId))); + indices.forEach(function (ind, i) { + var index = indices[i + 1] || word.length; + var value = word.slice(ind, index); + + if (i === 0 && firstCallback) { + return firstCallback.call(_this5, value, indices.length); + } + + var node; + var current = _this5.currToken; + var sourceIndex = current[_tokenize.FIELDS.START_POS] + indices[i]; + var source = getSource(current[1], current[2] + ind, current[3], current[2] + (index - 1)); + + if (~hasClass.indexOf(ind)) { + var classNameOpts = { + value: value.slice(1), + source: source, + sourceIndex: sourceIndex + }; + node = new _className["default"](unescapeProp(classNameOpts, "value")); + } else if (~hasId.indexOf(ind)) { + var idOpts = { + value: value.slice(1), + source: source, + sourceIndex: sourceIndex + }; + node = new _id["default"](unescapeProp(idOpts, "value")); + } else { + var tagOpts = { + value: value, + source: source, + sourceIndex: sourceIndex + }; + unescapeProp(tagOpts, "value"); + node = new _tag["default"](tagOpts); + } + + _this5.newNode(node, namespace); // Ensure that the namespace is used only once + + + namespace = null; + }); + this.position++; + }; + + _proto.word = function word(namespace) { + var nextToken = this.nextToken; + + if (nextToken && this.content(nextToken) === '|') { + this.position++; + return this.namespace(); + } + + return this.splitWord(namespace); + }; + + _proto.loop = function loop() { + while (this.position < this.tokens.length) { + this.parse(true); + } + + this.current._inferEndPosition(); + + return this.root; + }; + + _proto.parse = function parse(throwOnParenthesis) { + switch (this.currToken[_tokenize.FIELDS.TYPE]) { + case tokens.space: + this.space(); + break; + + case tokens.comment: + this.comment(); + break; + + case tokens.openParenthesis: + this.parentheses(); + break; + + case tokens.closeParenthesis: + if (throwOnParenthesis) { + this.missingParenthesis(); + } + + break; + + case tokens.openSquare: + this.attribute(); + break; + + case tokens.dollar: + case tokens.caret: + case tokens.equals: + case tokens.word: + this.word(); + break; + + case tokens.colon: + this.pseudo(); + break; + + case tokens.comma: + this.comma(); + break; + + case tokens.asterisk: + this.universal(); + break; + + case tokens.ampersand: + this.nesting(); + break; + + case tokens.slash: + case tokens.combinator: + this.combinator(); + break; + + case tokens.str: + this.string(); + break; + // These cases throw; no break needed. + + case tokens.closeSquare: + this.missingSquareBracket(); + + case tokens.semicolon: + this.missingBackslash(); + + default: + this.unexpected(); + } + } + /** + * Helpers + */ + ; + + _proto.expected = function expected(description, index, found) { + if (Array.isArray(description)) { + var last = description.pop(); + description = description.join(', ') + " or " + last; + } + + var an = /^[aeiou]/.test(description[0]) ? 'an' : 'a'; + + if (!found) { + return this.error("Expected " + an + " " + description + ".", { + index: index + }); + } + + return this.error("Expected " + an + " " + description + ", found \"" + found + "\" instead.", { + index: index + }); + }; + + _proto.requiredSpace = function requiredSpace(space) { + return this.options.lossy ? ' ' : space; + }; + + _proto.optionalSpace = function optionalSpace(space) { + return this.options.lossy ? '' : space; + }; + + _proto.lossySpace = function lossySpace(space, required) { + if (this.options.lossy) { + return required ? ' ' : ''; + } else { + return space; + } + }; + + _proto.parseParenthesisToken = function parseParenthesisToken(token) { + var content = this.content(token); + + if (token[_tokenize.FIELDS.TYPE] === tokens.space) { + return this.requiredSpace(content); + } else { + return content; + } + }; + + _proto.newNode = function newNode(node, namespace) { + if (namespace) { + if (/^ +$/.test(namespace)) { + if (!this.options.lossy) { + this.spaces = (this.spaces || '') + namespace; + } + + namespace = true; + } + + node.namespace = namespace; + unescapeProp(node, "namespace"); + } + + if (this.spaces) { + node.spaces.before = this.spaces; + this.spaces = ''; + } + + return this.current.append(node); + }; + + _proto.content = function content(token) { + if (token === void 0) { + token = this.currToken; + } + + return this.css.slice(token[_tokenize.FIELDS.START_POS], token[_tokenize.FIELDS.END_POS]); + }; + + /** + * returns the index of the next non-whitespace, non-comment token. + * returns -1 if no meaningful token is found. + */ + _proto.locateNextMeaningfulToken = function locateNextMeaningfulToken(startPosition) { + if (startPosition === void 0) { + startPosition = this.position + 1; + } + + var searchPosition = startPosition; + + while (searchPosition < this.tokens.length) { + if (WHITESPACE_EQUIV_TOKENS[this.tokens[searchPosition][_tokenize.FIELDS.TYPE]]) { + searchPosition++; + continue; + } else { + return searchPosition; + } + } + + return -1; + }; + + _createClass(Parser, [{ + key: "currToken", + get: function get() { + return this.tokens[this.position]; + } + }, { + key: "nextToken", + get: function get() { + return this.tokens[this.position + 1]; + } + }, { + key: "prevToken", + get: function get() { + return this.tokens[this.position - 1]; + } + }]); + + return Parser; +}(); + +exports["default"] = Parser; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/processor.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/processor.js new file mode 100644 index 00000000..a00170c2 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/processor.js @@ -0,0 +1,206 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _parser = _interopRequireDefault(require("./parser")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var Processor = /*#__PURE__*/function () { + function Processor(func, options) { + this.func = func || function noop() {}; + + this.funcRes = null; + this.options = options; + } + + var _proto = Processor.prototype; + + _proto._shouldUpdateSelector = function _shouldUpdateSelector(rule, options) { + if (options === void 0) { + options = {}; + } + + var merged = Object.assign({}, this.options, options); + + if (merged.updateSelector === false) { + return false; + } else { + return typeof rule !== "string"; + } + }; + + _proto._isLossy = function _isLossy(options) { + if (options === void 0) { + options = {}; + } + + var merged = Object.assign({}, this.options, options); + + if (merged.lossless === false) { + return true; + } else { + return false; + } + }; + + _proto._root = function _root(rule, options) { + if (options === void 0) { + options = {}; + } + + var parser = new _parser["default"](rule, this._parseOptions(options)); + return parser.root; + }; + + _proto._parseOptions = function _parseOptions(options) { + return { + lossy: this._isLossy(options) + }; + }; + + _proto._run = function _run(rule, options) { + var _this = this; + + if (options === void 0) { + options = {}; + } + + return new Promise(function (resolve, reject) { + try { + var root = _this._root(rule, options); + + Promise.resolve(_this.func(root)).then(function (transform) { + var string = undefined; + + if (_this._shouldUpdateSelector(rule, options)) { + string = root.toString(); + rule.selector = string; + } + + return { + transform: transform, + root: root, + string: string + }; + }).then(resolve, reject); + } catch (e) { + reject(e); + return; + } + }); + }; + + _proto._runSync = function _runSync(rule, options) { + if (options === void 0) { + options = {}; + } + + var root = this._root(rule, options); + + var transform = this.func(root); + + if (transform && typeof transform.then === "function") { + throw new Error("Selector processor returned a promise to a synchronous call."); + } + + var string = undefined; + + if (options.updateSelector && typeof rule !== "string") { + string = root.toString(); + rule.selector = string; + } + + return { + transform: transform, + root: root, + string: string + }; + } + /** + * Process rule into a selector AST. + * + * @param rule {postcss.Rule | string} The css selector to be processed + * @param options The options for processing + * @returns {Promise} The AST of the selector after processing it. + */ + ; + + _proto.ast = function ast(rule, options) { + return this._run(rule, options).then(function (result) { + return result.root; + }); + } + /** + * Process rule into a selector AST synchronously. + * + * @param rule {postcss.Rule | string} The css selector to be processed + * @param options The options for processing + * @returns {parser.Root} The AST of the selector after processing it. + */ + ; + + _proto.astSync = function astSync(rule, options) { + return this._runSync(rule, options).root; + } + /** + * Process a selector into a transformed value asynchronously + * + * @param rule {postcss.Rule | string} The css selector to be processed + * @param options The options for processing + * @returns {Promise} The value returned by the processor. + */ + ; + + _proto.transform = function transform(rule, options) { + return this._run(rule, options).then(function (result) { + return result.transform; + }); + } + /** + * Process a selector into a transformed value synchronously. + * + * @param rule {postcss.Rule | string} The css selector to be processed + * @param options The options for processing + * @returns {any} The value returned by the processor. + */ + ; + + _proto.transformSync = function transformSync(rule, options) { + return this._runSync(rule, options).transform; + } + /** + * Process a selector into a new selector string asynchronously. + * + * @param rule {postcss.Rule | string} The css selector to be processed + * @param options The options for processing + * @returns {string} the selector after processing. + */ + ; + + _proto.process = function process(rule, options) { + return this._run(rule, options).then(function (result) { + return result.string || result.root.toString(); + }); + } + /** + * Process a selector into a new selector string synchronously. + * + * @param rule {postcss.Rule | string} The css selector to be processed + * @param options The options for processing + * @returns {string} the selector after processing. + */ + ; + + _proto.processSync = function processSync(rule, options) { + var result = this._runSync(rule, options); + + return result.string || result.root.toString(); + }; + + return Processor; +}(); + +exports["default"] = Processor; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/attribute.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/attribute.js new file mode 100644 index 00000000..8f535e5d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/attribute.js @@ -0,0 +1,515 @@ +"use strict"; + +exports.__esModule = true; +exports.unescapeValue = unescapeValue; +exports["default"] = void 0; + +var _cssesc = _interopRequireDefault(require("cssesc")); + +var _unesc = _interopRequireDefault(require("../util/unesc")); + +var _namespace = _interopRequireDefault(require("./namespace")); + +var _types = require("./types"); + +var _CSSESC_QUOTE_OPTIONS; + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +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); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var deprecate = require("util-deprecate"); + +var WRAPPED_IN_QUOTES = /^('|")([^]*)\1$/; +var warnOfDeprecatedValueAssignment = deprecate(function () {}, "Assigning an attribute a value containing characters that might need to be escaped is deprecated. " + "Call attribute.setValue() instead."); +var warnOfDeprecatedQuotedAssignment = deprecate(function () {}, "Assigning attr.quoted is deprecated and has no effect. Assign to attr.quoteMark instead."); +var warnOfDeprecatedConstructor = deprecate(function () {}, "Constructing an Attribute selector with a value without specifying quoteMark is deprecated. Note: The value should be unescaped now."); + +function unescapeValue(value) { + var deprecatedUsage = false; + var quoteMark = null; + var unescaped = value; + var m = unescaped.match(WRAPPED_IN_QUOTES); + + if (m) { + quoteMark = m[1]; + unescaped = m[2]; + } + + unescaped = (0, _unesc["default"])(unescaped); + + if (unescaped !== value) { + deprecatedUsage = true; + } + + return { + deprecatedUsage: deprecatedUsage, + unescaped: unescaped, + quoteMark: quoteMark + }; +} + +function handleDeprecatedContructorOpts(opts) { + if (opts.quoteMark !== undefined) { + return opts; + } + + if (opts.value === undefined) { + return opts; + } + + warnOfDeprecatedConstructor(); + + var _unescapeValue = unescapeValue(opts.value), + quoteMark = _unescapeValue.quoteMark, + unescaped = _unescapeValue.unescaped; + + if (!opts.raws) { + opts.raws = {}; + } + + if (opts.raws.value === undefined) { + opts.raws.value = opts.value; + } + + opts.value = unescaped; + opts.quoteMark = quoteMark; + return opts; +} + +var Attribute = /*#__PURE__*/function (_Namespace) { + _inheritsLoose(Attribute, _Namespace); + + function Attribute(opts) { + var _this; + + if (opts === void 0) { + opts = {}; + } + + _this = _Namespace.call(this, handleDeprecatedContructorOpts(opts)) || this; + _this.type = _types.ATTRIBUTE; + _this.raws = _this.raws || {}; + Object.defineProperty(_this.raws, 'unquoted', { + get: deprecate(function () { + return _this.value; + }, "attr.raws.unquoted is deprecated. Call attr.value instead."), + set: deprecate(function () { + return _this.value; + }, "Setting attr.raws.unquoted is deprecated and has no effect. attr.value is unescaped by default now.") + }); + _this._constructed = true; + return _this; + } + /** + * Returns the Attribute's value quoted such that it would be legal to use + * in the value of a css file. The original value's quotation setting + * used for stringification is left unchanged. See `setValue(value, options)` + * if you want to control the quote settings of a new value for the attribute. + * + * You can also change the quotation used for the current value by setting quoteMark. + * + * Options: + * * quoteMark {'"' | "'" | null} - Use this value to quote the value. If this + * option is not set, the original value for quoteMark will be used. If + * indeterminate, a double quote is used. The legal values are: + * * `null` - the value will be unquoted and characters will be escaped as necessary. + * * `'` - the value will be quoted with a single quote and single quotes are escaped. + * * `"` - the value will be quoted with a double quote and double quotes are escaped. + * * preferCurrentQuoteMark {boolean} - if true, prefer the source quote mark + * over the quoteMark option value. + * * smart {boolean} - if true, will select a quote mark based on the value + * and the other options specified here. See the `smartQuoteMark()` + * method. + **/ + + + var _proto = Attribute.prototype; + + _proto.getQuotedValue = function getQuotedValue(options) { + if (options === void 0) { + options = {}; + } + + var quoteMark = this._determineQuoteMark(options); + + var cssescopts = CSSESC_QUOTE_OPTIONS[quoteMark]; + var escaped = (0, _cssesc["default"])(this._value, cssescopts); + return escaped; + }; + + _proto._determineQuoteMark = function _determineQuoteMark(options) { + return options.smart ? this.smartQuoteMark(options) : this.preferredQuoteMark(options); + } + /** + * Set the unescaped value with the specified quotation options. The value + * provided must not include any wrapping quote marks -- those quotes will + * be interpreted as part of the value and escaped accordingly. + */ + ; + + _proto.setValue = function setValue(value, options) { + if (options === void 0) { + options = {}; + } + + this._value = value; + this._quoteMark = this._determineQuoteMark(options); + + this._syncRawValue(); + } + /** + * Intelligently select a quoteMark value based on the value's contents. If + * the value is a legal CSS ident, it will not be quoted. Otherwise a quote + * mark will be picked that minimizes the number of escapes. + * + * If there's no clear winner, the quote mark from these options is used, + * then the source quote mark (this is inverted if `preferCurrentQuoteMark` is + * true). If the quoteMark is unspecified, a double quote is used. + * + * @param options This takes the quoteMark and preferCurrentQuoteMark options + * from the quoteValue method. + */ + ; + + _proto.smartQuoteMark = function smartQuoteMark(options) { + var v = this.value; + var numSingleQuotes = v.replace(/[^']/g, '').length; + var numDoubleQuotes = v.replace(/[^"]/g, '').length; + + if (numSingleQuotes + numDoubleQuotes === 0) { + var escaped = (0, _cssesc["default"])(v, { + isIdentifier: true + }); + + if (escaped === v) { + return Attribute.NO_QUOTE; + } else { + var pref = this.preferredQuoteMark(options); + + if (pref === Attribute.NO_QUOTE) { + // pick a quote mark that isn't none and see if it's smaller + var quote = this.quoteMark || options.quoteMark || Attribute.DOUBLE_QUOTE; + var opts = CSSESC_QUOTE_OPTIONS[quote]; + var quoteValue = (0, _cssesc["default"])(v, opts); + + if (quoteValue.length < escaped.length) { + return quote; + } + } + + return pref; + } + } else if (numDoubleQuotes === numSingleQuotes) { + return this.preferredQuoteMark(options); + } else if (numDoubleQuotes < numSingleQuotes) { + return Attribute.DOUBLE_QUOTE; + } else { + return Attribute.SINGLE_QUOTE; + } + } + /** + * Selects the preferred quote mark based on the options and the current quote mark value. + * If you want the quote mark to depend on the attribute value, call `smartQuoteMark(opts)` + * instead. + */ + ; + + _proto.preferredQuoteMark = function preferredQuoteMark(options) { + var quoteMark = options.preferCurrentQuoteMark ? this.quoteMark : options.quoteMark; + + if (quoteMark === undefined) { + quoteMark = options.preferCurrentQuoteMark ? options.quoteMark : this.quoteMark; + } + + if (quoteMark === undefined) { + quoteMark = Attribute.DOUBLE_QUOTE; + } + + return quoteMark; + }; + + _proto._syncRawValue = function _syncRawValue() { + var rawValue = (0, _cssesc["default"])(this._value, CSSESC_QUOTE_OPTIONS[this.quoteMark]); + + if (rawValue === this._value) { + if (this.raws) { + delete this.raws.value; + } + } else { + this.raws.value = rawValue; + } + }; + + _proto._handleEscapes = function _handleEscapes(prop, value) { + if (this._constructed) { + var escaped = (0, _cssesc["default"])(value, { + isIdentifier: true + }); + + if (escaped !== value) { + this.raws[prop] = escaped; + } else { + delete this.raws[prop]; + } + } + }; + + _proto._spacesFor = function _spacesFor(name) { + var attrSpaces = { + before: '', + after: '' + }; + var spaces = this.spaces[name] || {}; + var rawSpaces = this.raws.spaces && this.raws.spaces[name] || {}; + return Object.assign(attrSpaces, spaces, rawSpaces); + }; + + _proto._stringFor = function _stringFor(name, spaceName, concat) { + if (spaceName === void 0) { + spaceName = name; + } + + if (concat === void 0) { + concat = defaultAttrConcat; + } + + var attrSpaces = this._spacesFor(spaceName); + + return concat(this.stringifyProperty(name), attrSpaces); + } + /** + * returns the offset of the attribute part specified relative to the + * start of the node of the output string. + * + * * "ns" - alias for "namespace" + * * "namespace" - the namespace if it exists. + * * "attribute" - the attribute name + * * "attributeNS" - the start of the attribute or its namespace + * * "operator" - the match operator of the attribute + * * "value" - The value (string or identifier) + * * "insensitive" - the case insensitivity flag; + * @param part One of the possible values inside an attribute. + * @returns -1 if the name is invalid or the value doesn't exist in this attribute. + */ + ; + + _proto.offsetOf = function offsetOf(name) { + var count = 1; + + var attributeSpaces = this._spacesFor("attribute"); + + count += attributeSpaces.before.length; + + if (name === "namespace" || name === "ns") { + return this.namespace ? count : -1; + } + + if (name === "attributeNS") { + return count; + } + + count += this.namespaceString.length; + + if (this.namespace) { + count += 1; + } + + if (name === "attribute") { + return count; + } + + count += this.stringifyProperty("attribute").length; + count += attributeSpaces.after.length; + + var operatorSpaces = this._spacesFor("operator"); + + count += operatorSpaces.before.length; + var operator = this.stringifyProperty("operator"); + + if (name === "operator") { + return operator ? count : -1; + } + + count += operator.length; + count += operatorSpaces.after.length; + + var valueSpaces = this._spacesFor("value"); + + count += valueSpaces.before.length; + var value = this.stringifyProperty("value"); + + if (name === "value") { + return value ? count : -1; + } + + count += value.length; + count += valueSpaces.after.length; + + var insensitiveSpaces = this._spacesFor("insensitive"); + + count += insensitiveSpaces.before.length; + + if (name === "insensitive") { + return this.insensitive ? count : -1; + } + + return -1; + }; + + _proto.toString = function toString() { + var _this2 = this; + + var selector = [this.rawSpaceBefore, '[']; + selector.push(this._stringFor('qualifiedAttribute', 'attribute')); + + if (this.operator && (this.value || this.value === '')) { + selector.push(this._stringFor('operator')); + selector.push(this._stringFor('value')); + selector.push(this._stringFor('insensitiveFlag', 'insensitive', function (attrValue, attrSpaces) { + if (attrValue.length > 0 && !_this2.quoted && attrSpaces.before.length === 0 && !(_this2.spaces.value && _this2.spaces.value.after)) { + attrSpaces.before = " "; + } + + return defaultAttrConcat(attrValue, attrSpaces); + })); + } + + selector.push(']'); + selector.push(this.rawSpaceAfter); + return selector.join(''); + }; + + _createClass(Attribute, [{ + key: "quoted", + get: function get() { + var qm = this.quoteMark; + return qm === "'" || qm === '"'; + }, + set: function set(value) { + warnOfDeprecatedQuotedAssignment(); + } + /** + * returns a single (`'`) or double (`"`) quote character if the value is quoted. + * returns `null` if the value is not quoted. + * returns `undefined` if the quotation state is unknown (this can happen when + * the attribute is constructed without specifying a quote mark.) + */ + + }, { + key: "quoteMark", + get: function get() { + return this._quoteMark; + } + /** + * Set the quote mark to be used by this attribute's value. + * If the quote mark changes, the raw (escaped) value at `attr.raws.value` of the attribute + * value is updated accordingly. + * + * @param {"'" | '"' | null} quoteMark The quote mark or `null` if the value should be unquoted. + */ + , + set: function set(quoteMark) { + if (!this._constructed) { + this._quoteMark = quoteMark; + return; + } + + if (this._quoteMark !== quoteMark) { + this._quoteMark = quoteMark; + + this._syncRawValue(); + } + } + }, { + key: "qualifiedAttribute", + get: function get() { + return this.qualifiedName(this.raws.attribute || this.attribute); + } + }, { + key: "insensitiveFlag", + get: function get() { + return this.insensitive ? 'i' : ''; + } + }, { + key: "value", + get: function get() { + return this._value; + } + /** + * Before 3.0, the value had to be set to an escaped value including any wrapped + * quote marks. In 3.0, the semantics of `Attribute.value` changed so that the value + * is unescaped during parsing and any quote marks are removed. + * + * Because the ambiguity of this semantic change, if you set `attr.value = newValue`, + * a deprecation warning is raised when the new value contains any characters that would + * require escaping (including if it contains wrapped quotes). + * + * Instead, you should call `attr.setValue(newValue, opts)` and pass options that describe + * how the new value is quoted. + */ + , + set: function set(v) { + if (this._constructed) { + var _unescapeValue2 = unescapeValue(v), + deprecatedUsage = _unescapeValue2.deprecatedUsage, + unescaped = _unescapeValue2.unescaped, + quoteMark = _unescapeValue2.quoteMark; + + if (deprecatedUsage) { + warnOfDeprecatedValueAssignment(); + } + + if (unescaped === this._value && quoteMark === this._quoteMark) { + return; + } + + this._value = unescaped; + this._quoteMark = quoteMark; + + this._syncRawValue(); + } else { + this._value = v; + } + } + }, { + key: "attribute", + get: function get() { + return this._attribute; + }, + set: function set(name) { + this._handleEscapes("attribute", name); + + this._attribute = name; + } + }]); + + return Attribute; +}(_namespace["default"]); + +exports["default"] = Attribute; +Attribute.NO_QUOTE = null; +Attribute.SINGLE_QUOTE = "'"; +Attribute.DOUBLE_QUOTE = '"'; +var CSSESC_QUOTE_OPTIONS = (_CSSESC_QUOTE_OPTIONS = { + "'": { + quotes: 'single', + wrap: true + }, + '"': { + quotes: 'double', + wrap: true + } +}, _CSSESC_QUOTE_OPTIONS[null] = { + isIdentifier: true +}, _CSSESC_QUOTE_OPTIONS); + +function defaultAttrConcat(attrValue, attrSpaces) { + return "" + attrSpaces.before + attrValue + attrSpaces.after; +} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/className.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/className.js new file mode 100644 index 00000000..22409914 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/className.js @@ -0,0 +1,69 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _cssesc = _interopRequireDefault(require("cssesc")); + +var _util = require("../util"); + +var _node = _interopRequireDefault(require("./node")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +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); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var ClassName = /*#__PURE__*/function (_Node) { + _inheritsLoose(ClassName, _Node); + + function ClassName(opts) { + var _this; + + _this = _Node.call(this, opts) || this; + _this.type = _types.CLASS; + _this._constructed = true; + return _this; + } + + var _proto = ClassName.prototype; + + _proto.valueToString = function valueToString() { + return '.' + _Node.prototype.valueToString.call(this); + }; + + _createClass(ClassName, [{ + key: "value", + get: function get() { + return this._value; + }, + set: function set(v) { + if (this._constructed) { + var escaped = (0, _cssesc["default"])(v, { + isIdentifier: true + }); + + if (escaped !== v) { + (0, _util.ensureObject)(this, "raws"); + this.raws.value = escaped; + } else if (this.raws) { + delete this.raws.value; + } + } + + this._value = v; + } + }]); + + return ClassName; +}(_node["default"]); + +exports["default"] = ClassName; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/combinator.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/combinator.js new file mode 100644 index 00000000..271ab4d3 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/combinator.js @@ -0,0 +1,31 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _node = _interopRequireDefault(require("./node")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var Combinator = /*#__PURE__*/function (_Node) { + _inheritsLoose(Combinator, _Node); + + function Combinator(opts) { + var _this; + + _this = _Node.call(this, opts) || this; + _this.type = _types.COMBINATOR; + return _this; + } + + return Combinator; +}(_node["default"]); + +exports["default"] = Combinator; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/comment.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/comment.js new file mode 100644 index 00000000..e778094e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/comment.js @@ -0,0 +1,31 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _node = _interopRequireDefault(require("./node")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var Comment = /*#__PURE__*/function (_Node) { + _inheritsLoose(Comment, _Node); + + function Comment(opts) { + var _this; + + _this = _Node.call(this, opts) || this; + _this.type = _types.COMMENT; + return _this; + } + + return Comment; +}(_node["default"]); + +exports["default"] = Comment; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/constructors.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/constructors.js new file mode 100644 index 00000000..078023eb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/constructors.js @@ -0,0 +1,102 @@ +"use strict"; + +exports.__esModule = true; +exports.universal = exports.tag = exports.string = exports.selector = exports.root = exports.pseudo = exports.nesting = exports.id = exports.comment = exports.combinator = exports.className = exports.attribute = void 0; + +var _attribute = _interopRequireDefault(require("./attribute")); + +var _className = _interopRequireDefault(require("./className")); + +var _combinator = _interopRequireDefault(require("./combinator")); + +var _comment = _interopRequireDefault(require("./comment")); + +var _id = _interopRequireDefault(require("./id")); + +var _nesting = _interopRequireDefault(require("./nesting")); + +var _pseudo = _interopRequireDefault(require("./pseudo")); + +var _root = _interopRequireDefault(require("./root")); + +var _selector = _interopRequireDefault(require("./selector")); + +var _string = _interopRequireDefault(require("./string")); + +var _tag = _interopRequireDefault(require("./tag")); + +var _universal = _interopRequireDefault(require("./universal")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +var attribute = function attribute(opts) { + return new _attribute["default"](opts); +}; + +exports.attribute = attribute; + +var className = function className(opts) { + return new _className["default"](opts); +}; + +exports.className = className; + +var combinator = function combinator(opts) { + return new _combinator["default"](opts); +}; + +exports.combinator = combinator; + +var comment = function comment(opts) { + return new _comment["default"](opts); +}; + +exports.comment = comment; + +var id = function id(opts) { + return new _id["default"](opts); +}; + +exports.id = id; + +var nesting = function nesting(opts) { + return new _nesting["default"](opts); +}; + +exports.nesting = nesting; + +var pseudo = function pseudo(opts) { + return new _pseudo["default"](opts); +}; + +exports.pseudo = pseudo; + +var root = function root(opts) { + return new _root["default"](opts); +}; + +exports.root = root; + +var selector = function selector(opts) { + return new _selector["default"](opts); +}; + +exports.selector = selector; + +var string = function string(opts) { + return new _string["default"](opts); +}; + +exports.string = string; + +var tag = function tag(opts) { + return new _tag["default"](opts); +}; + +exports.tag = tag; + +var universal = function universal(opts) { + return new _universal["default"](opts); +}; + +exports.universal = universal; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/container.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/container.js new file mode 100644 index 00000000..2626fb85 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/container.js @@ -0,0 +1,395 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _node = _interopRequireDefault(require("./node")); + +var types = _interopRequireWildcard(require("./types")); + +function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; } + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _createForOfIteratorHelperLoose(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; return function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } it = o[Symbol.iterator](); return it.next.bind(it); } + +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +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); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var Container = /*#__PURE__*/function (_Node) { + _inheritsLoose(Container, _Node); + + function Container(opts) { + var _this; + + _this = _Node.call(this, opts) || this; + + if (!_this.nodes) { + _this.nodes = []; + } + + return _this; + } + + var _proto = Container.prototype; + + _proto.append = function append(selector) { + selector.parent = this; + this.nodes.push(selector); + return this; + }; + + _proto.prepend = function prepend(selector) { + selector.parent = this; + this.nodes.unshift(selector); + return this; + }; + + _proto.at = function at(index) { + return this.nodes[index]; + }; + + _proto.index = function index(child) { + if (typeof child === 'number') { + return child; + } + + return this.nodes.indexOf(child); + }; + + _proto.removeChild = function removeChild(child) { + child = this.index(child); + this.at(child).parent = undefined; + this.nodes.splice(child, 1); + var index; + + for (var id in this.indexes) { + index = this.indexes[id]; + + if (index >= child) { + this.indexes[id] = index - 1; + } + } + + return this; + }; + + _proto.removeAll = function removeAll() { + for (var _iterator = _createForOfIteratorHelperLoose(this.nodes), _step; !(_step = _iterator()).done;) { + var node = _step.value; + node.parent = undefined; + } + + this.nodes = []; + return this; + }; + + _proto.empty = function empty() { + return this.removeAll(); + }; + + _proto.insertAfter = function insertAfter(oldNode, newNode) { + newNode.parent = this; + var oldIndex = this.index(oldNode); + this.nodes.splice(oldIndex + 1, 0, newNode); + newNode.parent = this; + var index; + + for (var id in this.indexes) { + index = this.indexes[id]; + + if (oldIndex <= index) { + this.indexes[id] = index + 1; + } + } + + return this; + }; + + _proto.insertBefore = function insertBefore(oldNode, newNode) { + newNode.parent = this; + var oldIndex = this.index(oldNode); + this.nodes.splice(oldIndex, 0, newNode); + newNode.parent = this; + var index; + + for (var id in this.indexes) { + index = this.indexes[id]; + + if (index <= oldIndex) { + this.indexes[id] = index + 1; + } + } + + return this; + }; + + _proto._findChildAtPosition = function _findChildAtPosition(line, col) { + var found = undefined; + this.each(function (node) { + if (node.atPosition) { + var foundChild = node.atPosition(line, col); + + if (foundChild) { + found = foundChild; + return false; + } + } else if (node.isAtPosition(line, col)) { + found = node; + return false; + } + }); + return found; + } + /** + * Return the most specific node at the line and column number given. + * The source location is based on the original parsed location, locations aren't + * updated as selector nodes are mutated. + * + * Note that this location is relative to the location of the first character + * of the selector, and not the location of the selector in the overall document + * when used in conjunction with postcss. + * + * If not found, returns undefined. + * @param {number} line The line number of the node to find. (1-based index) + * @param {number} col The column number of the node to find. (1-based index) + */ + ; + + _proto.atPosition = function atPosition(line, col) { + if (this.isAtPosition(line, col)) { + return this._findChildAtPosition(line, col) || this; + } else { + return undefined; + } + }; + + _proto._inferEndPosition = function _inferEndPosition() { + if (this.last && this.last.source && this.last.source.end) { + this.source = this.source || {}; + this.source.end = this.source.end || {}; + Object.assign(this.source.end, this.last.source.end); + } + }; + + _proto.each = function each(callback) { + if (!this.lastEach) { + this.lastEach = 0; + } + + if (!this.indexes) { + this.indexes = {}; + } + + this.lastEach++; + var id = this.lastEach; + this.indexes[id] = 0; + + if (!this.length) { + return undefined; + } + + var index, result; + + while (this.indexes[id] < this.length) { + index = this.indexes[id]; + result = callback(this.at(index), index); + + if (result === false) { + break; + } + + this.indexes[id] += 1; + } + + delete this.indexes[id]; + + if (result === false) { + return false; + } + }; + + _proto.walk = function walk(callback) { + return this.each(function (node, i) { + var result = callback(node, i); + + if (result !== false && node.length) { + result = node.walk(callback); + } + + if (result === false) { + return false; + } + }); + }; + + _proto.walkAttributes = function walkAttributes(callback) { + var _this2 = this; + + return this.walk(function (selector) { + if (selector.type === types.ATTRIBUTE) { + return callback.call(_this2, selector); + } + }); + }; + + _proto.walkClasses = function walkClasses(callback) { + var _this3 = this; + + return this.walk(function (selector) { + if (selector.type === types.CLASS) { + return callback.call(_this3, selector); + } + }); + }; + + _proto.walkCombinators = function walkCombinators(callback) { + var _this4 = this; + + return this.walk(function (selector) { + if (selector.type === types.COMBINATOR) { + return callback.call(_this4, selector); + } + }); + }; + + _proto.walkComments = function walkComments(callback) { + var _this5 = this; + + return this.walk(function (selector) { + if (selector.type === types.COMMENT) { + return callback.call(_this5, selector); + } + }); + }; + + _proto.walkIds = function walkIds(callback) { + var _this6 = this; + + return this.walk(function (selector) { + if (selector.type === types.ID) { + return callback.call(_this6, selector); + } + }); + }; + + _proto.walkNesting = function walkNesting(callback) { + var _this7 = this; + + return this.walk(function (selector) { + if (selector.type === types.NESTING) { + return callback.call(_this7, selector); + } + }); + }; + + _proto.walkPseudos = function walkPseudos(callback) { + var _this8 = this; + + return this.walk(function (selector) { + if (selector.type === types.PSEUDO) { + return callback.call(_this8, selector); + } + }); + }; + + _proto.walkTags = function walkTags(callback) { + var _this9 = this; + + return this.walk(function (selector) { + if (selector.type === types.TAG) { + return callback.call(_this9, selector); + } + }); + }; + + _proto.walkUniversals = function walkUniversals(callback) { + var _this10 = this; + + return this.walk(function (selector) { + if (selector.type === types.UNIVERSAL) { + return callback.call(_this10, selector); + } + }); + }; + + _proto.split = function split(callback) { + var _this11 = this; + + var current = []; + return this.reduce(function (memo, node, index) { + var split = callback.call(_this11, node); + current.push(node); + + if (split) { + memo.push(current); + current = []; + } else if (index === _this11.length - 1) { + memo.push(current); + } + + return memo; + }, []); + }; + + _proto.map = function map(callback) { + return this.nodes.map(callback); + }; + + _proto.reduce = function reduce(callback, memo) { + return this.nodes.reduce(callback, memo); + }; + + _proto.every = function every(callback) { + return this.nodes.every(callback); + }; + + _proto.some = function some(callback) { + return this.nodes.some(callback); + }; + + _proto.filter = function filter(callback) { + return this.nodes.filter(callback); + }; + + _proto.sort = function sort(callback) { + return this.nodes.sort(callback); + }; + + _proto.toString = function toString() { + return this.map(String).join(''); + }; + + _createClass(Container, [{ + key: "first", + get: function get() { + return this.at(0); + } + }, { + key: "last", + get: function get() { + return this.at(this.length - 1); + } + }, { + key: "length", + get: function get() { + return this.nodes.length; + } + }]); + + return Container; +}(_node["default"]); + +exports["default"] = Container; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/guards.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/guards.js new file mode 100644 index 00000000..c949af57 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/guards.js @@ -0,0 +1,64 @@ +"use strict"; + +exports.__esModule = true; +exports.isNode = isNode; +exports.isPseudoElement = isPseudoElement; +exports.isPseudoClass = isPseudoClass; +exports.isContainer = isContainer; +exports.isNamespace = isNamespace; +exports.isUniversal = exports.isTag = exports.isString = exports.isSelector = exports.isRoot = exports.isPseudo = exports.isNesting = exports.isIdentifier = exports.isComment = exports.isCombinator = exports.isClassName = exports.isAttribute = void 0; + +var _types = require("./types"); + +var _IS_TYPE; + +var IS_TYPE = (_IS_TYPE = {}, _IS_TYPE[_types.ATTRIBUTE] = true, _IS_TYPE[_types.CLASS] = true, _IS_TYPE[_types.COMBINATOR] = true, _IS_TYPE[_types.COMMENT] = true, _IS_TYPE[_types.ID] = true, _IS_TYPE[_types.NESTING] = true, _IS_TYPE[_types.PSEUDO] = true, _IS_TYPE[_types.ROOT] = true, _IS_TYPE[_types.SELECTOR] = true, _IS_TYPE[_types.STRING] = true, _IS_TYPE[_types.TAG] = true, _IS_TYPE[_types.UNIVERSAL] = true, _IS_TYPE); + +function isNode(node) { + return typeof node === "object" && IS_TYPE[node.type]; +} + +function isNodeType(type, node) { + return isNode(node) && node.type === type; +} + +var isAttribute = isNodeType.bind(null, _types.ATTRIBUTE); +exports.isAttribute = isAttribute; +var isClassName = isNodeType.bind(null, _types.CLASS); +exports.isClassName = isClassName; +var isCombinator = isNodeType.bind(null, _types.COMBINATOR); +exports.isCombinator = isCombinator; +var isComment = isNodeType.bind(null, _types.COMMENT); +exports.isComment = isComment; +var isIdentifier = isNodeType.bind(null, _types.ID); +exports.isIdentifier = isIdentifier; +var isNesting = isNodeType.bind(null, _types.NESTING); +exports.isNesting = isNesting; +var isPseudo = isNodeType.bind(null, _types.PSEUDO); +exports.isPseudo = isPseudo; +var isRoot = isNodeType.bind(null, _types.ROOT); +exports.isRoot = isRoot; +var isSelector = isNodeType.bind(null, _types.SELECTOR); +exports.isSelector = isSelector; +var isString = isNodeType.bind(null, _types.STRING); +exports.isString = isString; +var isTag = isNodeType.bind(null, _types.TAG); +exports.isTag = isTag; +var isUniversal = isNodeType.bind(null, _types.UNIVERSAL); +exports.isUniversal = isUniversal; + +function isPseudoElement(node) { + return isPseudo(node) && node.value && (node.value.startsWith("::") || node.value.toLowerCase() === ":before" || node.value.toLowerCase() === ":after" || node.value.toLowerCase() === ":first-letter" || node.value.toLowerCase() === ":first-line"); +} + +function isPseudoClass(node) { + return isPseudo(node) && !isPseudoElement(node); +} + +function isContainer(node) { + return !!(isNode(node) && node.walk); +} + +function isNamespace(node) { + return isAttribute(node) || isTag(node); +} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/id.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/id.js new file mode 100644 index 00000000..4e83147e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/id.js @@ -0,0 +1,37 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _node = _interopRequireDefault(require("./node")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var ID = /*#__PURE__*/function (_Node) { + _inheritsLoose(ID, _Node); + + function ID(opts) { + var _this; + + _this = _Node.call(this, opts) || this; + _this.type = _types.ID; + return _this; + } + + var _proto = ID.prototype; + + _proto.valueToString = function valueToString() { + return '#' + _Node.prototype.valueToString.call(this); + }; + + return ID; +}(_node["default"]); + +exports["default"] = ID; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/index.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/index.js new file mode 100644 index 00000000..1fe9b138 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/index.js @@ -0,0 +1,27 @@ +"use strict"; + +exports.__esModule = true; + +var _types = require("./types"); + +Object.keys(_types).forEach(function (key) { + if (key === "default" || key === "__esModule") return; + if (key in exports && exports[key] === _types[key]) return; + exports[key] = _types[key]; +}); + +var _constructors = require("./constructors"); + +Object.keys(_constructors).forEach(function (key) { + if (key === "default" || key === "__esModule") return; + if (key in exports && exports[key] === _constructors[key]) return; + exports[key] = _constructors[key]; +}); + +var _guards = require("./guards"); + +Object.keys(_guards).forEach(function (key) { + if (key === "default" || key === "__esModule") return; + if (key in exports && exports[key] === _guards[key]) return; + exports[key] = _guards[key]; +}); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/namespace.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/namespace.js new file mode 100644 index 00000000..fd6c729e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/namespace.js @@ -0,0 +1,101 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _cssesc = _interopRequireDefault(require("cssesc")); + +var _util = require("../util"); + +var _node = _interopRequireDefault(require("./node")); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +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); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var Namespace = /*#__PURE__*/function (_Node) { + _inheritsLoose(Namespace, _Node); + + function Namespace() { + return _Node.apply(this, arguments) || this; + } + + var _proto = Namespace.prototype; + + _proto.qualifiedName = function qualifiedName(value) { + if (this.namespace) { + return this.namespaceString + "|" + value; + } else { + return value; + } + }; + + _proto.valueToString = function valueToString() { + return this.qualifiedName(_Node.prototype.valueToString.call(this)); + }; + + _createClass(Namespace, [{ + key: "namespace", + get: function get() { + return this._namespace; + }, + set: function set(namespace) { + if (namespace === true || namespace === "*" || namespace === "&") { + this._namespace = namespace; + + if (this.raws) { + delete this.raws.namespace; + } + + return; + } + + var escaped = (0, _cssesc["default"])(namespace, { + isIdentifier: true + }); + this._namespace = namespace; + + if (escaped !== namespace) { + (0, _util.ensureObject)(this, "raws"); + this.raws.namespace = escaped; + } else if (this.raws) { + delete this.raws.namespace; + } + } + }, { + key: "ns", + get: function get() { + return this._namespace; + }, + set: function set(namespace) { + this.namespace = namespace; + } + }, { + key: "namespaceString", + get: function get() { + if (this.namespace) { + var ns = this.stringifyProperty("namespace"); + + if (ns === true) { + return ''; + } else { + return ns; + } + } else { + return ''; + } + } + }]); + + return Namespace; +}(_node["default"]); + +exports["default"] = Namespace; +; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/nesting.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/nesting.js new file mode 100644 index 00000000..3288c78f --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/nesting.js @@ -0,0 +1,32 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _node = _interopRequireDefault(require("./node")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var Nesting = /*#__PURE__*/function (_Node) { + _inheritsLoose(Nesting, _Node); + + function Nesting(opts) { + var _this; + + _this = _Node.call(this, opts) || this; + _this.type = _types.NESTING; + _this.value = '&'; + return _this; + } + + return Nesting; +}(_node["default"]); + +exports["default"] = Nesting; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/node.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/node.js new file mode 100644 index 00000000..e8eca11c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/node.js @@ -0,0 +1,239 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _util = require("../util"); + +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); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +var cloneNode = function cloneNode(obj, parent) { + if (typeof obj !== 'object' || obj === null) { + return obj; + } + + var cloned = new obj.constructor(); + + for (var i in obj) { + if (!obj.hasOwnProperty(i)) { + continue; + } + + var value = obj[i]; + var type = typeof value; + + if (i === 'parent' && type === 'object') { + if (parent) { + cloned[i] = parent; + } + } else if (value instanceof Array) { + cloned[i] = value.map(function (j) { + return cloneNode(j, cloned); + }); + } else { + cloned[i] = cloneNode(value, cloned); + } + } + + return cloned; +}; + +var Node = /*#__PURE__*/function () { + function Node(opts) { + if (opts === void 0) { + opts = {}; + } + + Object.assign(this, opts); + this.spaces = this.spaces || {}; + this.spaces.before = this.spaces.before || ''; + this.spaces.after = this.spaces.after || ''; + } + + var _proto = Node.prototype; + + _proto.remove = function remove() { + if (this.parent) { + this.parent.removeChild(this); + } + + this.parent = undefined; + return this; + }; + + _proto.replaceWith = function replaceWith() { + if (this.parent) { + for (var index in arguments) { + this.parent.insertBefore(this, arguments[index]); + } + + this.remove(); + } + + return this; + }; + + _proto.next = function next() { + return this.parent.at(this.parent.index(this) + 1); + }; + + _proto.prev = function prev() { + return this.parent.at(this.parent.index(this) - 1); + }; + + _proto.clone = function clone(overrides) { + if (overrides === void 0) { + overrides = {}; + } + + var cloned = cloneNode(this); + + for (var name in overrides) { + cloned[name] = overrides[name]; + } + + return cloned; + } + /** + * Some non-standard syntax doesn't follow normal escaping rules for css. + * This allows non standard syntax to be appended to an existing property + * by specifying the escaped value. By specifying the escaped value, + * illegal characters are allowed to be directly inserted into css output. + * @param {string} name the property to set + * @param {any} value the unescaped value of the property + * @param {string} valueEscaped optional. the escaped value of the property. + */ + ; + + _proto.appendToPropertyAndEscape = function appendToPropertyAndEscape(name, value, valueEscaped) { + if (!this.raws) { + this.raws = {}; + } + + var originalValue = this[name]; + var originalEscaped = this.raws[name]; + this[name] = originalValue + value; // this may trigger a setter that updates raws, so it has to be set first. + + if (originalEscaped || valueEscaped !== value) { + this.raws[name] = (originalEscaped || originalValue) + valueEscaped; + } else { + delete this.raws[name]; // delete any escaped value that was created by the setter. + } + } + /** + * Some non-standard syntax doesn't follow normal escaping rules for css. + * This allows the escaped value to be specified directly, allowing illegal + * characters to be directly inserted into css output. + * @param {string} name the property to set + * @param {any} value the unescaped value of the property + * @param {string} valueEscaped the escaped value of the property. + */ + ; + + _proto.setPropertyAndEscape = function setPropertyAndEscape(name, value, valueEscaped) { + if (!this.raws) { + this.raws = {}; + } + + this[name] = value; // this may trigger a setter that updates raws, so it has to be set first. + + this.raws[name] = valueEscaped; + } + /** + * When you want a value to passed through to CSS directly. This method + * deletes the corresponding raw value causing the stringifier to fallback + * to the unescaped value. + * @param {string} name the property to set. + * @param {any} value The value that is both escaped and unescaped. + */ + ; + + _proto.setPropertyWithoutEscape = function setPropertyWithoutEscape(name, value) { + this[name] = value; // this may trigger a setter that updates raws, so it has to be set first. + + if (this.raws) { + delete this.raws[name]; + } + } + /** + * + * @param {number} line The number (starting with 1) + * @param {number} column The column number (starting with 1) + */ + ; + + _proto.isAtPosition = function isAtPosition(line, column) { + if (this.source && this.source.start && this.source.end) { + if (this.source.start.line > line) { + return false; + } + + if (this.source.end.line < line) { + return false; + } + + if (this.source.start.line === line && this.source.start.column > column) { + return false; + } + + if (this.source.end.line === line && this.source.end.column < column) { + return false; + } + + return true; + } + + return undefined; + }; + + _proto.stringifyProperty = function stringifyProperty(name) { + return this.raws && this.raws[name] || this[name]; + }; + + _proto.valueToString = function valueToString() { + return String(this.stringifyProperty("value")); + }; + + _proto.toString = function toString() { + return [this.rawSpaceBefore, this.valueToString(), this.rawSpaceAfter].join(''); + }; + + _createClass(Node, [{ + key: "rawSpaceBefore", + get: function get() { + var rawSpace = this.raws && this.raws.spaces && this.raws.spaces.before; + + if (rawSpace === undefined) { + rawSpace = this.spaces && this.spaces.before; + } + + return rawSpace || ""; + }, + set: function set(raw) { + (0, _util.ensureObject)(this, "raws", "spaces"); + this.raws.spaces.before = raw; + } + }, { + key: "rawSpaceAfter", + get: function get() { + var rawSpace = this.raws && this.raws.spaces && this.raws.spaces.after; + + if (rawSpace === undefined) { + rawSpace = this.spaces.after; + } + + return rawSpace || ""; + }, + set: function set(raw) { + (0, _util.ensureObject)(this, "raws", "spaces"); + this.raws.spaces.after = raw; + } + }]); + + return Node; +}(); + +exports["default"] = Node; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/pseudo.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/pseudo.js new file mode 100644 index 00000000..a0e7bca1 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/pseudo.js @@ -0,0 +1,38 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _container = _interopRequireDefault(require("./container")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var Pseudo = /*#__PURE__*/function (_Container) { + _inheritsLoose(Pseudo, _Container); + + function Pseudo(opts) { + var _this; + + _this = _Container.call(this, opts) || this; + _this.type = _types.PSEUDO; + return _this; + } + + var _proto = Pseudo.prototype; + + _proto.toString = function toString() { + var params = this.length ? '(' + this.map(String).join(',') + ')' : ''; + return [this.rawSpaceBefore, this.stringifyProperty("value"), params, this.rawSpaceAfter].join(''); + }; + + return Pseudo; +}(_container["default"]); + +exports["default"] = Pseudo; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/root.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/root.js new file mode 100644 index 00000000..be5c2ccb --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/root.js @@ -0,0 +1,60 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _container = _interopRequireDefault(require("./container")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +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); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var Root = /*#__PURE__*/function (_Container) { + _inheritsLoose(Root, _Container); + + function Root(opts) { + var _this; + + _this = _Container.call(this, opts) || this; + _this.type = _types.ROOT; + return _this; + } + + var _proto = Root.prototype; + + _proto.toString = function toString() { + var str = this.reduce(function (memo, selector) { + memo.push(String(selector)); + return memo; + }, []).join(','); + return this.trailingComma ? str + ',' : str; + }; + + _proto.error = function error(message, options) { + if (this._error) { + return this._error(message, options); + } else { + return new Error(message); + } + }; + + _createClass(Root, [{ + key: "errorGenerator", + set: function set(handler) { + this._error = handler; + } + }]); + + return Root; +}(_container["default"]); + +exports["default"] = Root; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/selector.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/selector.js new file mode 100644 index 00000000..699eeb6e --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/selector.js @@ -0,0 +1,31 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _container = _interopRequireDefault(require("./container")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var Selector = /*#__PURE__*/function (_Container) { + _inheritsLoose(Selector, _Container); + + function Selector(opts) { + var _this; + + _this = _Container.call(this, opts) || this; + _this.type = _types.SELECTOR; + return _this; + } + + return Selector; +}(_container["default"]); + +exports["default"] = Selector; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/string.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/string.js new file mode 100644 index 00000000..e61df30c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/string.js @@ -0,0 +1,31 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _node = _interopRequireDefault(require("./node")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var String = /*#__PURE__*/function (_Node) { + _inheritsLoose(String, _Node); + + function String(opts) { + var _this; + + _this = _Node.call(this, opts) || this; + _this.type = _types.STRING; + return _this; + } + + return String; +}(_node["default"]); + +exports["default"] = String; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/tag.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/tag.js new file mode 100644 index 00000000..e298db15 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/tag.js @@ -0,0 +1,31 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _namespace = _interopRequireDefault(require("./namespace")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var Tag = /*#__PURE__*/function (_Namespace) { + _inheritsLoose(Tag, _Namespace); + + function Tag(opts) { + var _this; + + _this = _Namespace.call(this, opts) || this; + _this.type = _types.TAG; + return _this; + } + + return Tag; +}(_namespace["default"]); + +exports["default"] = Tag; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/types.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/types.js new file mode 100644 index 00000000..ab897b8c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/types.js @@ -0,0 +1,28 @@ +"use strict"; + +exports.__esModule = true; +exports.UNIVERSAL = exports.ATTRIBUTE = exports.CLASS = exports.COMBINATOR = exports.COMMENT = exports.ID = exports.NESTING = exports.PSEUDO = exports.ROOT = exports.SELECTOR = exports.STRING = exports.TAG = void 0; +var TAG = 'tag'; +exports.TAG = TAG; +var STRING = 'string'; +exports.STRING = STRING; +var SELECTOR = 'selector'; +exports.SELECTOR = SELECTOR; +var ROOT = 'root'; +exports.ROOT = ROOT; +var PSEUDO = 'pseudo'; +exports.PSEUDO = PSEUDO; +var NESTING = 'nesting'; +exports.NESTING = NESTING; +var ID = 'id'; +exports.ID = ID; +var COMMENT = 'comment'; +exports.COMMENT = COMMENT; +var COMBINATOR = 'combinator'; +exports.COMBINATOR = COMBINATOR; +var CLASS = 'class'; +exports.CLASS = CLASS; +var ATTRIBUTE = 'attribute'; +exports.ATTRIBUTE = ATTRIBUTE; +var UNIVERSAL = 'universal'; +exports.UNIVERSAL = UNIVERSAL; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/universal.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/universal.js new file mode 100644 index 00000000..cf25473d --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/selectors/universal.js @@ -0,0 +1,32 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = void 0; + +var _namespace = _interopRequireDefault(require("./namespace")); + +var _types = require("./types"); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } + +function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); } + +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } + +var Universal = /*#__PURE__*/function (_Namespace) { + _inheritsLoose(Universal, _Namespace); + + function Universal(opts) { + var _this; + + _this = _Namespace.call(this, opts) || this; + _this.type = _types.UNIVERSAL; + _this.value = '*'; + return _this; + } + + return Universal; +}(_namespace["default"]); + +exports["default"] = Universal; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/sortAscending.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/sortAscending.js new file mode 100644 index 00000000..3ef56acc --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/sortAscending.js @@ -0,0 +1,13 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = sortAscending; + +function sortAscending(list) { + return list.sort(function (a, b) { + return a - b; + }); +} + +; +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/tokenTypes.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/tokenTypes.js new file mode 100644 index 00000000..48314b93 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/tokenTypes.js @@ -0,0 +1,95 @@ +"use strict"; + +exports.__esModule = true; +exports.combinator = exports.word = exports.comment = exports.str = exports.tab = exports.newline = exports.feed = exports.cr = exports.backslash = exports.bang = exports.slash = exports.doubleQuote = exports.singleQuote = exports.space = exports.greaterThan = exports.pipe = exports.equals = exports.plus = exports.caret = exports.tilde = exports.dollar = exports.closeSquare = exports.openSquare = exports.closeParenthesis = exports.openParenthesis = exports.semicolon = exports.colon = exports.comma = exports.at = exports.asterisk = exports.ampersand = void 0; +var ampersand = 38; // `&`.charCodeAt(0); + +exports.ampersand = ampersand; +var asterisk = 42; // `*`.charCodeAt(0); + +exports.asterisk = asterisk; +var at = 64; // `@`.charCodeAt(0); + +exports.at = at; +var comma = 44; // `,`.charCodeAt(0); + +exports.comma = comma; +var colon = 58; // `:`.charCodeAt(0); + +exports.colon = colon; +var semicolon = 59; // `;`.charCodeAt(0); + +exports.semicolon = semicolon; +var openParenthesis = 40; // `(`.charCodeAt(0); + +exports.openParenthesis = openParenthesis; +var closeParenthesis = 41; // `)`.charCodeAt(0); + +exports.closeParenthesis = closeParenthesis; +var openSquare = 91; // `[`.charCodeAt(0); + +exports.openSquare = openSquare; +var closeSquare = 93; // `]`.charCodeAt(0); + +exports.closeSquare = closeSquare; +var dollar = 36; // `$`.charCodeAt(0); + +exports.dollar = dollar; +var tilde = 126; // `~`.charCodeAt(0); + +exports.tilde = tilde; +var caret = 94; // `^`.charCodeAt(0); + +exports.caret = caret; +var plus = 43; // `+`.charCodeAt(0); + +exports.plus = plus; +var equals = 61; // `=`.charCodeAt(0); + +exports.equals = equals; +var pipe = 124; // `|`.charCodeAt(0); + +exports.pipe = pipe; +var greaterThan = 62; // `>`.charCodeAt(0); + +exports.greaterThan = greaterThan; +var space = 32; // ` `.charCodeAt(0); + +exports.space = space; +var singleQuote = 39; // `'`.charCodeAt(0); + +exports.singleQuote = singleQuote; +var doubleQuote = 34; // `"`.charCodeAt(0); + +exports.doubleQuote = doubleQuote; +var slash = 47; // `/`.charCodeAt(0); + +exports.slash = slash; +var bang = 33; // `!`.charCodeAt(0); + +exports.bang = bang; +var backslash = 92; // '\\'.charCodeAt(0); + +exports.backslash = backslash; +var cr = 13; // '\r'.charCodeAt(0); + +exports.cr = cr; +var feed = 12; // '\f'.charCodeAt(0); + +exports.feed = feed; +var newline = 10; // '\n'.charCodeAt(0); + +exports.newline = newline; +var tab = 9; // '\t'.charCodeAt(0); +// Expose aliases primarily for readability. + +exports.tab = tab; +var str = singleQuote; // No good single character representation! + +exports.str = str; +var comment = -1; +exports.comment = comment; +var word = -2; +exports.word = word; +var combinator = -3; +exports.combinator = combinator; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/tokenize.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/tokenize.js new file mode 100644 index 00000000..bee9fee6 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/tokenize.js @@ -0,0 +1,271 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = tokenize; +exports.FIELDS = void 0; + +var t = _interopRequireWildcard(require("./tokenTypes")); + +var _unescapable, _wordDelimiters; + +function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; } + +function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; } + +var unescapable = (_unescapable = {}, _unescapable[t.tab] = true, _unescapable[t.newline] = true, _unescapable[t.cr] = true, _unescapable[t.feed] = true, _unescapable); +var wordDelimiters = (_wordDelimiters = {}, _wordDelimiters[t.space] = true, _wordDelimiters[t.tab] = true, _wordDelimiters[t.newline] = true, _wordDelimiters[t.cr] = true, _wordDelimiters[t.feed] = true, _wordDelimiters[t.ampersand] = true, _wordDelimiters[t.asterisk] = true, _wordDelimiters[t.bang] = true, _wordDelimiters[t.comma] = true, _wordDelimiters[t.colon] = true, _wordDelimiters[t.semicolon] = true, _wordDelimiters[t.openParenthesis] = true, _wordDelimiters[t.closeParenthesis] = true, _wordDelimiters[t.openSquare] = true, _wordDelimiters[t.closeSquare] = true, _wordDelimiters[t.singleQuote] = true, _wordDelimiters[t.doubleQuote] = true, _wordDelimiters[t.plus] = true, _wordDelimiters[t.pipe] = true, _wordDelimiters[t.tilde] = true, _wordDelimiters[t.greaterThan] = true, _wordDelimiters[t.equals] = true, _wordDelimiters[t.dollar] = true, _wordDelimiters[t.caret] = true, _wordDelimiters[t.slash] = true, _wordDelimiters); +var hex = {}; +var hexChars = "0123456789abcdefABCDEF"; + +for (var i = 0; i < hexChars.length; i++) { + hex[hexChars.charCodeAt(i)] = true; +} +/** + * Returns the last index of the bar css word + * @param {string} css The string in which the word begins + * @param {number} start The index into the string where word's first letter occurs + */ + + +function consumeWord(css, start) { + var next = start; + var code; + + do { + code = css.charCodeAt(next); + + if (wordDelimiters[code]) { + return next - 1; + } else if (code === t.backslash) { + next = consumeEscape(css, next) + 1; + } else { + // All other characters are part of the word + next++; + } + } while (next < css.length); + + return next - 1; +} +/** + * Returns the last index of the escape sequence + * @param {string} css The string in which the sequence begins + * @param {number} start The index into the string where escape character (`\`) occurs. + */ + + +function consumeEscape(css, start) { + var next = start; + var code = css.charCodeAt(next + 1); + + if (unescapable[code]) {// just consume the escape char + } else if (hex[code]) { + var hexDigits = 0; // consume up to 6 hex chars + + do { + next++; + hexDigits++; + code = css.charCodeAt(next + 1); + } while (hex[code] && hexDigits < 6); // if fewer than 6 hex chars, a trailing space ends the escape + + + if (hexDigits < 6 && code === t.space) { + next++; + } + } else { + // the next char is part of the current word + next++; + } + + return next; +} + +var FIELDS = { + TYPE: 0, + START_LINE: 1, + START_COL: 2, + END_LINE: 3, + END_COL: 4, + START_POS: 5, + END_POS: 6 +}; +exports.FIELDS = FIELDS; + +function tokenize(input) { + var tokens = []; + var css = input.css.valueOf(); + var _css = css, + length = _css.length; + var offset = -1; + var line = 1; + var start = 0; + var end = 0; + var code, content, endColumn, endLine, escaped, escapePos, last, lines, next, nextLine, nextOffset, quote, tokenType; + + function unclosed(what, fix) { + if (input.safe) { + // fyi: this is never set to true. + css += fix; + next = css.length - 1; + } else { + throw input.error('Unclosed ' + what, line, start - offset, start); + } + } + + while (start < length) { + code = css.charCodeAt(start); + + if (code === t.newline) { + offset = start; + line += 1; + } + + switch (code) { + case t.space: + case t.tab: + case t.newline: + case t.cr: + case t.feed: + next = start; + + do { + next += 1; + code = css.charCodeAt(next); + + if (code === t.newline) { + offset = next; + line += 1; + } + } while (code === t.space || code === t.newline || code === t.tab || code === t.cr || code === t.feed); + + tokenType = t.space; + endLine = line; + endColumn = next - offset - 1; + end = next; + break; + + case t.plus: + case t.greaterThan: + case t.tilde: + case t.pipe: + next = start; + + do { + next += 1; + code = css.charCodeAt(next); + } while (code === t.plus || code === t.greaterThan || code === t.tilde || code === t.pipe); + + tokenType = t.combinator; + endLine = line; + endColumn = start - offset; + end = next; + break; + // Consume these characters as single tokens. + + case t.asterisk: + case t.ampersand: + case t.bang: + case t.comma: + case t.equals: + case t.dollar: + case t.caret: + case t.openSquare: + case t.closeSquare: + case t.colon: + case t.semicolon: + case t.openParenthesis: + case t.closeParenthesis: + next = start; + tokenType = code; + endLine = line; + endColumn = start - offset; + end = next + 1; + break; + + case t.singleQuote: + case t.doubleQuote: + quote = code === t.singleQuote ? "'" : '"'; + next = start; + + do { + escaped = false; + next = css.indexOf(quote, next + 1); + + if (next === -1) { + unclosed('quote', quote); + } + + escapePos = next; + + while (css.charCodeAt(escapePos - 1) === t.backslash) { + escapePos -= 1; + escaped = !escaped; + } + } while (escaped); + + tokenType = t.str; + endLine = line; + endColumn = start - offset; + end = next + 1; + break; + + default: + if (code === t.slash && css.charCodeAt(start + 1) === t.asterisk) { + next = css.indexOf('*/', start + 2) + 1; + + if (next === 0) { + unclosed('comment', '*/'); + } + + content = css.slice(start, next + 1); + lines = content.split('\n'); + last = lines.length - 1; + + if (last > 0) { + nextLine = line + last; + nextOffset = next - lines[last].length; + } else { + nextLine = line; + nextOffset = offset; + } + + tokenType = t.comment; + line = nextLine; + endLine = nextLine; + endColumn = next - nextOffset; + } else if (code === t.slash) { + next = start; + tokenType = code; + endLine = line; + endColumn = start - offset; + end = next + 1; + } else { + next = consumeWord(css, start); + tokenType = t.word; + endLine = line; + endColumn = next - offset; + } + + end = next + 1; + break; + } // Ensure that the token structure remains consistent + + + tokens.push([tokenType, // [0] Token type + line, // [1] Starting line + start - offset, // [2] Starting column + endLine, // [3] Ending line + endColumn, // [4] Ending column + start, // [5] Start position / Source index + end // [6] End position + ]); // Reset offset for the next token + + if (nextOffset) { + offset = nextOffset; + nextOffset = null; + } + + start = end; + } + + return tokens; +} \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/ensureObject.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/ensureObject.js new file mode 100644 index 00000000..3472e075 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/ensureObject.js @@ -0,0 +1,22 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = ensureObject; + +function ensureObject(obj) { + for (var _len = arguments.length, props = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + props[_key - 1] = arguments[_key]; + } + + while (props.length > 0) { + var prop = props.shift(); + + if (!obj[prop]) { + obj[prop] = {}; + } + + obj = obj[prop]; + } +} + +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/getProp.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/getProp.js new file mode 100644 index 00000000..53e07c90 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/getProp.js @@ -0,0 +1,24 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = getProp; + +function getProp(obj) { + for (var _len = arguments.length, props = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + props[_key - 1] = arguments[_key]; + } + + while (props.length > 0) { + var prop = props.shift(); + + if (!obj[prop]) { + return undefined; + } + + obj = obj[prop]; + } + + return obj; +} + +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/index.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/index.js new file mode 100644 index 00000000..043fda8c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/index.js @@ -0,0 +1,22 @@ +"use strict"; + +exports.__esModule = true; +exports.stripComments = exports.ensureObject = exports.getProp = exports.unesc = void 0; + +var _unesc = _interopRequireDefault(require("./unesc")); + +exports.unesc = _unesc["default"]; + +var _getProp = _interopRequireDefault(require("./getProp")); + +exports.getProp = _getProp["default"]; + +var _ensureObject = _interopRequireDefault(require("./ensureObject")); + +exports.ensureObject = _ensureObject["default"]; + +var _stripComments = _interopRequireDefault(require("./stripComments")); + +exports.stripComments = _stripComments["default"]; + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/stripComments.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/stripComments.js new file mode 100644 index 00000000..c74f1fec --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/stripComments.js @@ -0,0 +1,27 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = stripComments; + +function stripComments(str) { + var s = ""; + var commentStart = str.indexOf("/*"); + var lastEnd = 0; + + while (commentStart >= 0) { + s = s + str.slice(lastEnd, commentStart); + var commentEnd = str.indexOf("*/", commentStart + 2); + + if (commentEnd < 0) { + return s; + } + + lastEnd = commentEnd + 2; + commentStart = str.indexOf("/*", lastEnd); + } + + s = s + str.slice(lastEnd); + return s; +} + +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/unesc.js b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/unesc.js new file mode 100644 index 00000000..3136e7e0 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/@tailwindcss/typography/node_modules/postcss-selector-parser/util/unesc.js @@ -0,0 +1,93 @@ +"use strict"; + +exports.__esModule = true; +exports["default"] = unesc; + +// Many thanks for this post which made this migration much easier. +// https://mathiasbynens.be/notes/css-escapes + +/** + * + * @param {string} str + * @returns {[string, number]|undefined} + */ +function gobbleHex(str) { + var lower = str.toLowerCase(); + var hex = ''; + var spaceTerminated = false; + + for (var i = 0; i < 6 && lower[i] !== undefined; i++) { + var code = lower.charCodeAt(i); // check to see if we are dealing with a valid hex char [a-f|0-9] + + var valid = code >= 97 && code <= 102 || code >= 48 && code <= 57; // https://drafts.csswg.org/css-syntax/#consume-escaped-code-point + + spaceTerminated = code === 32; + + if (!valid) { + break; + } + + hex += lower[i]; + } + + if (hex.length === 0) { + return undefined; + } + + var codePoint = parseInt(hex, 16); + var isSurrogate = codePoint >= 0xD800 && codePoint <= 0xDFFF; // Add special case for + // "If this number is zero, or is for a surrogate, or is greater than the maximum allowed code point" + // https://drafts.csswg.org/css-syntax/#maximum-allowed-code-point + + if (isSurrogate || codePoint === 0x0000 || codePoint > 0x10FFFF) { + return ["\uFFFD", hex.length + (spaceTerminated ? 1 : 0)]; + } + + return [String.fromCodePoint(codePoint), hex.length + (spaceTerminated ? 1 : 0)]; +} + +var CONTAINS_ESCAPE = /\\/; + +function unesc(str) { + var needToProcess = CONTAINS_ESCAPE.test(str); + + if (!needToProcess) { + return str; + } + + var ret = ""; + + for (var i = 0; i < str.length; i++) { + if (str[i] === "\\") { + var gobbled = gobbleHex(str.slice(i + 1, i + 7)); + + if (gobbled !== undefined) { + ret += gobbled[0]; + i += gobbled[1]; + continue; + } // Retain a pair of \\ if double escaped `\\\\` + // https://github.com/postcss/postcss-selector-parser/commit/268c9a7656fb53f543dc620aa5b73a30ec3ff20e + + + if (str[i + 1] === "\\") { + ret += "\\"; + i++; + continue; + } // if \\ is at the end of the string retain it + // https://github.com/postcss/postcss-selector-parser/commit/01a6b346e3612ce1ab20219acc26abdc259ccefb + + + if (str.length === i + 1) { + ret += str[i]; + } + + continue; + } + + ret += str[i]; + } + + return ret; +} + +module.exports = exports.default; \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/apexcharts/apexcharts.amd.js b/dj_backend_server/web/static/assets/libs/apexcharts/apexcharts.amd.js new file mode 100644 index 00000000..ba0f7de7 --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/apexcharts/apexcharts.amd.js @@ -0,0 +1,2 @@ +/*! For license information please see apexcharts.amd.js.LICENSE.txt */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ApexCharts=e():t.ApexCharts=e()}(self,(function(){return(()=>{var t={43:t=>{"use strict";t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var i=function(t,e){var i,a,s,r=t[1]||"",n=t[3];if(!n)return r;if(e&&"function"==typeof btoa){var o=(i=n,a=btoa(unescape(encodeURIComponent(JSON.stringify(i)))),s="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(a),"/*# ".concat(s," */")),l=n.sources.map((function(t){return"/*# sourceURL=".concat(n.sourceRoot||"").concat(t," */")}));return[r].concat(l).concat([o]).join("\n")}return[r].join("\n")}(e,t);return e[2]?"@media ".concat(e[2]," {").concat(i,"}"):i})).join("")},e.i=function(t,i){"string"==typeof t&&(t=[[null,t,""]]);for(var a=0;a{"use strict";function a(t){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function s(t,e){for(var i=0;iba});const r=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t)}var e,i,r;return e=t,r=[{key:"bind",value:function(t,e){return function(){return t.apply(e,arguments)}}},{key:"isObject",value:function(t){return t&&"object"===a(t)&&!Array.isArray(t)&&null!=t}},{key:"listToArray",value:function(t){var e,i=[];for(e=0;ee.length?t:e}))),t.length>e.length?t:e}),0)}},{key:"hexToRgba",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"#999999",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:.6;"#"!==t.substring(0,1)&&(t="#999999");var i=t.replace("#","");i=i.match(new RegExp("(.{"+i.length/3+"})","g"));for(var a=0;a1&&void 0!==arguments[1]?arguments[1]:"x",i=t.toString().slice();return i.replace(/[` ~!@#$%^&*()_|+\-=?;:'",.<>{}[\]\\/]/gi,e)}},{key:"negToZero",value:function(t){return t<0?0:t}},{key:"moveIndexInArray",value:function(t,e,i){if(i>=t.length)for(var a=i-t.length+1;a--;)t.push(void 0);return t.splice(i,0,t.splice(e,1)[0]),t}},{key:"extractNumber",value:function(t){return parseFloat(t.replace(/[^\d.]*/g,""))}},{key:"findAncestor",value:function(t,e){for(;(t=t.parentElement)&&!t.classList.contains(e););return t}},{key:"setELstyles",value:function(t,e){for(var i in e)e.hasOwnProperty(i)&&(t.style.key=e[i])}},{key:"isNumber",value:function(t){return!isNaN(t)&&parseFloat(Number(t))===t&&!isNaN(parseInt(t,10))}},{key:"isFloat",value:function(t){return Number(t)===t&&t%1!=0}},{key:"isSafari",value:function(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}},{key:"isFirefox",value:function(){return navigator.userAgent.toLowerCase().indexOf("firefox")>-1}},{key:"isIE11",value:function(){if(-1!==window.navigator.userAgent.indexOf("MSIE")||window.navigator.appVersion.indexOf("Trident/")>-1)return!0}},{key:"isIE",value:function(){var t=window.navigator.userAgent,e=t.indexOf("MSIE ");if(e>0)return parseInt(t.substring(e+5,t.indexOf(".",e)),10);if(t.indexOf("Trident/")>0){var i=t.indexOf("rv:");return parseInt(t.substring(i+3,t.indexOf(".",i)),10)}var a=t.indexOf("Edge/");return a>0&&parseInt(t.substring(a+5,t.indexOf(".",a)),10)}},{key:"sanitizeDom",value:function(t){return t.replace(/\&/g,"&").replace(/\/g,">").replace(/\"/g,""")}}],(i=[{key:"shadeRGBColor",value:function(t,e){var i=e.split(","),a=t<0?0:255,s=t<0?-1*t:t,r=parseInt(i[0].slice(4),10),n=parseInt(i[1],10),o=parseInt(i[2],10);return"rgb("+(Math.round((a-r)*s)+r)+","+(Math.round((a-n)*s)+n)+","+(Math.round((a-o)*s)+o)+")"}},{key:"shadeHexColor",value:function(t,e){var i=parseInt(e.slice(1),16),a=t<0?0:255,s=t<0?-1*t:t,r=i>>16,n=i>>8&255,o=255&i;return"#"+(16777216+65536*(Math.round((a-r)*s)+r)+256*(Math.round((a-n)*s)+n)+(Math.round((a-o)*s)+o)).toString(16).slice(1)}},{key:"shadeColor",value:function(e,i){return t.isColorHex(i)?this.shadeHexColor(e,i):this.shadeRGBColor(e,i)}}])&&s(e.prototype,i),r&&s(e,r),t}();function n(t,e){for(var i=0;i"}this.w.globals.easing=t}}},{key:"animateLine",value:function(t,e,i,a){t.attr(e).animate(a).attr(i)}},{key:"animateMarker",value:function(t,e,i,a,s,r){e||(e=0),t.attr({r:e,width:e,height:e}).animate(a,s).attr({r:i,width:i.width,height:i.height}).afterAll((function(){r()}))}},{key:"animateCircle",value:function(t,e,i,a,s){t.attr({r:e.r,cx:e.cx,cy:e.cy}).animate(a,s).attr({r:i.r,cx:i.cx,cy:i.cy})}},{key:"animateRect",value:function(t,e,i,a,s){t.attr(e).animate(a).attr(i).afterAll((function(){return s()}))}},{key:"animatePathsGradually",value:function(t){var e=t.el,i=t.realIndex,a=t.j,s=t.fill,r=t.pathFrom,n=t.pathTo,o=t.speed,l=t.delay,c=this.w,h=0;c.config.chart.animations.animateGradually.enabled&&(h=c.config.chart.animations.animateGradually.delay),c.config.chart.animations.dynamicAnimation.enabled&&c.globals.dataChanged&&"bar"!==c.config.chart.type&&(h=0),this.morphSVG(e,i,a,"line"!==c.config.chart.type||c.globals.comboCharts?s:"stroke",r,n,o,l*h)}},{key:"showDelayedElements",value:function(){this.w.globals.delayedElements.forEach((function(t){t.el.classList.remove("apexcharts-element-hidden")}))}},{key:"animationCompleted",value:function(t){var e=this.w;e.globals.animationEnded||(e.globals.animationEnded=!0,this.showDelayedElements(),"function"==typeof e.config.chart.events.animationEnd&&e.config.chart.events.animationEnd(this.ctx,{el:t,w:e}))}},{key:"morphSVG",value:function(t,e,i,a,s,n,o,l){var c=this,h=this.w;s||(s=t.attr("pathFrom")),n||(n=t.attr("pathTo"));var d=function(t){return"radar"===h.config.chart.type&&(o=1),"M 0 ".concat(h.globals.gridHeight)};(!s||s.indexOf("undefined")>-1||s.indexOf("NaN")>-1)&&(s=d()),(!n||n.indexOf("undefined")>-1||n.indexOf("NaN")>-1)&&(n=d()),h.globals.shouldAnimate||(o=1),t.plot(s).animate(1,h.globals.easing,l).plot(s).animate(o,h.globals.easing,l).plot(n).afterAll((function(){r.isNumber(i)?i===h.globals.series[h.globals.maxValsInArrayIndex].length-2&&h.globals.shouldAnimate&&c.animationCompleted(t):"none"!==a&&h.globals.shouldAnimate&&(!h.globals.comboCharts&&e===h.globals.series.length-1||h.globals.comboCharts)&&c.animationCompleted(t),c.showDelayedElements()}))}}])&&n(e.prototype,i),t}();function l(t,e){for(var i=0;i3&&void 0!==arguments[3]?arguments[3]:.5;switch(i){case"none":this.addNormalFilter(t,e);break;case"lighten":this.addLightenFilter(t,e,{intensity:a});break;case"darken":this.addDarkenFilter(t,e,{intensity:a})}}},{key:"addShadow",value:function(t,e,i){var a=i.blur,s=i.top,r=i.left,n=i.color,o=i.opacity,l=t.flood(Array.isArray(n)?n[e]:n,o).composite(t.sourceAlpha,"in").offset(r,s).gaussianBlur(a).merge(t.source);return t.blend(t.source,l)}},{key:"dropShadow",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,a=e.top,s=e.left,n=e.blur,o=e.color,l=e.opacity,c=e.noUserSpaceOnUse,h=this.w;return t.unfilter(!0),r.isIE()&&"radialBar"===h.config.chart.type||(o=Array.isArray(o)?o[i]:o,t.filter((function(t){var e;e=r.isSafari()||r.isFirefox()||r.isIE()?t.flood(o,l).composite(t.sourceAlpha,"in").offset(s,a).gaussianBlur(n):t.flood(o,l).composite(t.sourceAlpha,"in").offset(s,a).gaussianBlur(n).merge(t.source),t.blend(t.source,e)})),c||t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(t.filterer.node)),t}},{key:"setSelectionFilter",value:function(t,e,i){var a=this.w;if(void 0!==a.globals.selectedDataPoints[e]&&a.globals.selectedDataPoints[e].indexOf(i)>-1){t.node.setAttribute("selected",!0);var s=a.config.states.active.filter;"none"!==s&&this.applyFilter(t,e,s.type,s.value)}}},{key:"_scaleFilterSize",value:function(t){!function(e){for(var i in e)e.hasOwnProperty(i)&&t.setAttribute(i,e[i])}({width:"200%",height:"200%",x:"-50%",y:"-50%"})}}])&&l(e.prototype,i),t}();function h(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function d(t){for(var e=1;e4&&void 0!==arguments[4]?arguments[4]:"#a8a8a8",r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,n=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,o=this.w,l=o.globals.dom.Paper.line().attr({x1:t,y1:e,x2:i,y2:a,stroke:s,"stroke-dasharray":r,"stroke-width":n});return l}},{key:"drawRect",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0,r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:"#fefefe",n=arguments.length>6&&void 0!==arguments[6]?arguments[6]:1,o=arguments.length>7&&void 0!==arguments[7]?arguments[7]:null,l=arguments.length>8&&void 0!==arguments[8]?arguments[8]:null,c=arguments.length>9&&void 0!==arguments[9]?arguments[9]:0,h=this.w,d=h.globals.dom.Paper.rect();return d.attr({x:t,y:e,width:i>0?i:0,height:a>0?a:0,rx:s,ry:s,opacity:n,"stroke-width":null!==o?o:0,stroke:null!==l?l:"none","stroke-dasharray":c}),d.node.setAttribute("fill",r),d}},{key:"drawPolygon",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"#e1e1e1",i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"none",s=this.w,r=s.globals.dom.Paper.polygon(t).attr({fill:a,stroke:e,"stroke-width":i});return r}},{key:"drawCircle",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.w;t<0&&(t=0);var a=i.globals.dom.Paper.circle(2*t);return null!==e&&a.attr(e),a}},{key:"drawPath",value:function(t){var e=t.d,i=void 0===e?"":e,a=t.stroke,s=void 0===a?"#a8a8a8":a,r=t.strokeWidth,n=void 0===r?1:r,o=t.fill,l=t.fillOpacity,c=void 0===l?1:l,h=t.strokeOpacity,d=void 0===h?1:h,u=t.classes,g=t.strokeLinecap,f=void 0===g?null:g,p=t.strokeDashArray,x=void 0===p?0:p,b=this.w;return null===f&&(f=b.config.stroke.lineCap),(i.indexOf("undefined")>-1||i.indexOf("NaN")>-1)&&(i="M 0 ".concat(b.globals.gridHeight)),b.globals.dom.Paper.path(i).attr({fill:o,"fill-opacity":c,stroke:s,"stroke-opacity":d,"stroke-linecap":f,"stroke-width":n,"stroke-dasharray":x,class:u})}},{key:"group",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=this.w,i=e.globals.dom.Paper.group();return null!==t&&i.attr(t),i}},{key:"move",value:function(t,e){return["M",t,e].join(" ")}},{key:"line",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=null;return null===i?a=["L",t,e].join(" "):"H"===i?a=["H",t].join(" "):"V"===i&&(a=["V",e].join(" ")),a}},{key:"curve",value:function(t,e,i,a,s,r){return["C",t,e,i,a,s,r].join(" ")}},{key:"quadraticCurve",value:function(t,e,i,a){return["Q",t,e,i,a].join(" ")}},{key:"arc",value:function(t,e,i,a,s,r,n){var o=arguments.length>7&&void 0!==arguments[7]&&arguments[7],l="A";o&&(l="a");var c=[l,t,e,i,a,s,r,n].join(" ");return c}},{key:"renderPaths",value:function(t){var e,i=t.j,a=t.realIndex,s=t.pathFrom,r=t.pathTo,n=t.stroke,l=t.strokeWidth,h=t.strokeLinecap,u=t.fill,g=t.animationDelay,f=t.initialSpeed,p=t.dataChangeSpeed,x=t.className,b=t.shouldClipToGrid,v=void 0===b||b,m=t.bindEventsOnPaths,y=void 0===m||m,w=t.drawShadow,k=void 0===w||w,A=this.w,S=new c(this.ctx),C=new o(this.ctx),P=this.w.config.chart.animations.enabled,L=P&&this.w.config.chart.animations.dynamicAnimation.enabled,T=!!(P&&!A.globals.resized||L&&A.globals.dataChanged&&A.globals.shouldAnimate);T?e=s:(e=r,A.globals.animationEnded=!0);var O,E=A.config.stroke.dashArray;O=Array.isArray(E)?E[a]:A.config.stroke.dashArray;var I=this.drawPath({d:e,stroke:n,strokeWidth:l,fill:u,fillOpacity:1,classes:x,strokeLinecap:h,strokeDashArray:O});if(I.attr("index",a),v&&I.attr({"clip-path":"url(#gridRectMask".concat(A.globals.cuid,")")}),"none"!==A.config.states.normal.filter.type)S.getDefaultFilter(I,a);else if(A.config.chart.dropShadow.enabled&&k&&(!A.config.chart.dropShadow.enabledOnSeries||A.config.chart.dropShadow.enabledOnSeries&&-1!==A.config.chart.dropShadow.enabledOnSeries.indexOf(a))){var M=A.config.chart.dropShadow;S.dropShadow(I,M,a)}y&&(I.node.addEventListener("mouseenter",this.pathMouseEnter.bind(this,I)),I.node.addEventListener("mouseleave",this.pathMouseLeave.bind(this,I)),I.node.addEventListener("mousedown",this.pathMouseDown.bind(this,I))),I.attr({pathTo:r,pathFrom:s});var z={el:I,j:i,realIndex:a,pathFrom:s,pathTo:r,fill:u,strokeWidth:l,delay:g};return!P||A.globals.resized||A.globals.dataChanged?!A.globals.resized&&A.globals.dataChanged||C.showDelayedElements():C.animatePathsGradually(d(d({},z),{},{speed:f})),A.globals.dataChanged&&L&&T&&C.animatePathsGradually(d(d({},z),{},{speed:p})),I}},{key:"drawPattern",value:function(t,e,i){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"#a8a8a8",s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0,r=this.w,n=r.globals.dom.Paper.pattern(e,i,(function(r){"horizontalLines"===t?r.line(0,0,i,0).stroke({color:a,width:s+1}):"verticalLines"===t?r.line(0,0,0,e).stroke({color:a,width:s+1}):"slantedLines"===t?r.line(0,0,e,i).stroke({color:a,width:s}):"squares"===t?r.rect(e,i).fill("none").stroke({color:a,width:s}):"circles"===t&&r.circle(e).fill("none").stroke({color:a,width:s})}));return n}},{key:"drawGradient",value:function(t,e,i,a,s){var n,o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:null,l=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,c=arguments.length>7&&void 0!==arguments[7]?arguments[7]:null,h=arguments.length>8&&void 0!==arguments[8]?arguments[8]:0,d=this.w;e.length<9&&0===e.indexOf("#")&&(e=r.hexToRgba(e,a)),i.length<9&&0===i.indexOf("#")&&(i=r.hexToRgba(i,s));var u=0,g=1,f=1,p=null;null!==l&&(u=void 0!==l[0]?l[0]/100:0,g=void 0!==l[1]?l[1]/100:1,f=void 0!==l[2]?l[2]/100:1,p=void 0!==l[3]?l[3]/100:null);var x=!("donut"!==d.config.chart.type&&"pie"!==d.config.chart.type&&"polarArea"!==d.config.chart.type&&"bubble"!==d.config.chart.type);if(n=null===c||0===c.length?d.globals.dom.Paper.gradient(x?"radial":"linear",(function(t){t.at(u,e,a),t.at(g,i,s),t.at(f,i,s),null!==p&&t.at(p,e,a)})):d.globals.dom.Paper.gradient(x?"radial":"linear",(function(t){(Array.isArray(c[h])?c[h]:c).forEach((function(e){t.at(e.offset/100,e.color,e.opacity)}))})),x){var b=d.globals.gridWidth/2,v=d.globals.gridHeight/2;"bubble"!==d.config.chart.type?n.attr({gradientUnits:"userSpaceOnUse",cx:b,cy:v,r:o}):n.attr({cx:.5,cy:.5,r:.8,fx:.2,fy:.2})}else"vertical"===t?n.from(0,0).to(0,1):"diagonal"===t?n.from(0,0).to(1,1):"horizontal"===t?n.from(0,1).to(1,1):"diagonal2"===t&&n.from(1,0).to(0,1);return n}},{key:"drawText",value:function(t){var e,i=t.x,a=t.y,s=t.text,r=t.textAnchor,n=t.fontSize,o=t.fontFamily,l=t.fontWeight,c=t.foreColor,h=t.opacity,d=t.cssClass,u=void 0===d?"":d,g=t.isPlainText,f=void 0===g||g,p=this.w;return void 0===s&&(s=""),r||(r="start"),c&&c.length||(c=p.config.chart.foreColor),o=o||p.config.chart.fontFamily,l=l||"regular",(e=Array.isArray(s)?p.globals.dom.Paper.text((function(t){for(var e=0;e-1){var o=i.globals.selectedDataPoints[s].indexOf(r);i.globals.selectedDataPoints[s].splice(o,1)}}else{if(!i.config.states.active.allowMultipleDataPointsSelection&&i.globals.selectedDataPoints.length>0){i.globals.selectedDataPoints=[];var l=i.globals.dom.Paper.select(".apexcharts-series path").members,h=i.globals.dom.Paper.select(".apexcharts-series circle, .apexcharts-series rect").members,d=function(t){Array.prototype.forEach.call(t,(function(t){t.node.setAttribute("selected","false"),a.getDefaultFilter(t,s)}))};d(l),d(h)}t.node.setAttribute("selected","true"),n="true",void 0===i.globals.selectedDataPoints[s]&&(i.globals.selectedDataPoints[s]=[]),i.globals.selectedDataPoints[s].push(r)}if("true"===n){var u=i.config.states.active.filter;"none"!==u&&a.applyFilter(t,s,u.type,u.value)}else"none"!==i.config.states.active.filter.type&&a.getDefaultFilter(t,s);"function"==typeof i.config.chart.events.dataPointSelection&&i.config.chart.events.dataPointSelection(e,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:s,dataPointIndex:r,w:i}),e&&this.ctx.events.fireEvent("dataPointSelection",[e,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:s,dataPointIndex:r,w:i}])}},{key:"rotateAroundCenter",value:function(t){var e=t.getBBox();return{x:e.x+e.width/2,y:e.y+e.height/2}}},{key:"getTextRects",value:function(t,e,i,a){var s=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],r=this.w,n=this.drawText({x:-200,y:-200,text:t,textAnchor:"start",fontSize:e,fontFamily:i,foreColor:"#fff",opacity:0});a&&n.attr("transform",a),r.globals.dom.Paper.add(n);var o=n.bbox();return s||(o=n.node.getBoundingClientRect()),n.remove(),{width:o.width,height:o.height}}},{key:"placeTextWithEllipsis",value:function(t,e,i){if("function"==typeof t.getComputedTextLength&&(t.textContent=e,e.length>0&&t.getComputedTextLength()>=i/1.1)){for(var a=e.length-3;a>0;a-=3)if(t.getSubStringLength(0,a)<=i/1.1)return void(t.textContent=e.substring(0,a)+"...");t.textContent="."}}}])&&g(e.prototype,i),a&&g(e,a),t}();function p(t,e){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:null,i=this.w;if("vertical"===t.label.orientation){var a=null!==e?e:0,s=i.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(a,"']"));if(null!==s){var r=s.getBoundingClientRect();s.setAttribute("x",parseFloat(s.getAttribute("x"))-r.height+4),"top"===t.label.position?s.setAttribute("y",parseFloat(s.getAttribute("y"))+r.width):s.setAttribute("y",parseFloat(s.getAttribute("y"))-r.width);var n=this.annoCtx.graphics.rotateAroundCenter(s),o=n.x,l=n.y;s.setAttribute("transform","rotate(-90 ".concat(o," ").concat(l,")"))}}}},{key:"addBackgroundToAnno",value:function(t,e){var i=this.w;if(!t||!e.label.text||e.label.text&&!e.label.text.trim())return null;var a=i.globals.dom.baseEl.querySelector(".apexcharts-grid").getBoundingClientRect(),s=t.getBoundingClientRect(),r=e.label.style.padding.left,n=e.label.style.padding.right,o=e.label.style.padding.top,l=e.label.style.padding.bottom;"vertical"===e.label.orientation&&(o=e.label.style.padding.left,l=e.label.style.padding.right,r=e.label.style.padding.top,n=e.label.style.padding.bottom);var c=s.left-a.left-r,h=s.top-a.top-o,d=this.annoCtx.graphics.drawRect(c-i.globals.barPadForNumericAxis,h,s.width+r+n,s.height+o+l,e.label.borderRadius,e.label.style.background,1,e.label.borderWidth,e.label.borderColor,0);return e.id&&d.node.classList.add(e.id),d}},{key:"annotationsBackground",value:function(){var t=this,e=this.w,i=function(i,a,s){var r=e.globals.dom.baseEl.querySelector(".apexcharts-".concat(s,"-annotations .apexcharts-").concat(s,"-annotation-label[rel='").concat(a,"']"));if(r){var n=r.parentNode,o=t.addBackgroundToAnno(r,i);o&&n.insertBefore(o.node,r)}};e.config.annotations.xaxis.map((function(t,e){i(t,e,"xaxis")})),e.config.annotations.yaxis.map((function(t,e){i(t,e,"yaxis")})),e.config.annotations.points.map((function(t,e){i(t,e,"point")}))}},{key:"getStringX",value:function(t){var e=this.w,i=t;e.config.xaxis.convertedCatToNumeric&&e.globals.categoryLabels.length&&(t=e.globals.categoryLabels.indexOf(t)+1);var a=e.globals.labels.indexOf(t),s=e.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g text:nth-child("+(a+1)+")");return s&&(i=parseFloat(s.getAttribute("x"))),i}}])&&p(e.prototype,i),t}();function b(t,e){for(var i=0;i1&&(e=!0),{comboBarCount:i,comboCharts:e}}},{key:"extendArrayProps",value:function(t,e,i){return e.yaxis&&(e=t.extendYAxis(e,i)),e.annotations&&(e.annotations.yaxis&&(e=t.extendYAxisAnnotations(e)),e.annotations.xaxis&&(e=t.extendXAxisAnnotations(e)),e.annotations.points&&(e=t.extendPointAnnotations(e))),e}}],(i=[{key:"getStackedSeriesTotals",value:function(){var t=this.w,e=[];if(0===t.globals.series.length)return e;for(var i=0;i0&&void 0!==arguments[0]?arguments[0]:null;return null===t?this.w.config.series.reduce((function(t,e){return t+e}),0):this.w.globals.series[t].reduce((function(t,e){return t+e}),0)}},{key:"isSeriesNull",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return 0===(null===t?this.w.config.series.filter((function(t){return null!==t})):this.w.config.series[t].data.filter((function(t){return null!==t}))).length}},{key:"seriesHaveSameValues",value:function(t){return this.w.globals.series[t].every((function(t,e,i){return t===i[0]}))}},{key:"getCategoryLabels",value:function(t){var e=this.w,i=t.slice();return e.config.xaxis.convertedCatToNumeric&&(i=t.map((function(t,i){return e.config.xaxis.labels.formatter(t-e.globals.minX+1)}))),i}},{key:"getLargestSeries",value:function(){var t=this.w;t.globals.maxValsInArrayIndex=t.globals.series.map((function(t){return t.length})).indexOf(Math.max.apply(Math,t.globals.series.map((function(t){return t.length}))))}},{key:"getLargestMarkerSize",value:function(){var t=this.w,e=0;return t.globals.markers.size.forEach((function(t){e=Math.max(e,t)})),t.globals.markers.largestSize=e,e}},{key:"getSeriesTotals",value:function(){var t=this.w;t.globals.seriesTotals=t.globals.series.map((function(t,e){var i=0;if(Array.isArray(t))for(var a=0;at&&i.globals.seriesX[s][n]n){var c=n;n=a,a=c}var h=this.annoCtx.graphics.drawRect(0+t.offsetX,a+t.offsetY,this._getYAxisAnnotationWidth(t),n-a,0,t.fillColor,t.opacity,1,t.borderColor,r);h.node.classList.add("apexcharts-annotation-rect"),h.attr("clip-path","url(#gridRectMask".concat(s.globals.cuid,")")),e.appendChild(h.node),t.id&&h.node.classList.add(t.id)}var d="right"===t.label.position?s.globals.gridWidth:0,u=this.annoCtx.graphics.drawText({x:d+t.label.offsetX,y:(a||n)+t.label.offsetY-3,text:o,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,fontWeight:t.label.style.fontWeight,foreColor:t.label.style.color,cssClass:"apexcharts-yaxis-annotation-label ".concat(t.label.style.cssClass," ").concat(t.id?t.id:"")});u.attr({rel:i}),e.appendChild(u.node)}},{key:"_getY1Y2",value:function(t,e){var i,a="y1"===t?e.y:e.y2,s=this.w;if(this.annoCtx.invertAxis){var r=s.globals.labels.indexOf(a);s.config.xaxis.convertedCatToNumeric&&(r=s.globals.categoryLabels.indexOf(a));var n=s.globals.dom.baseEl.querySelector(".apexcharts-yaxis-texts-g text:nth-child("+(r+1)+")");n&&(i=parseFloat(n.getAttribute("y")))}else{var o;o=s.config.yaxis[e.yAxisIndex].logarithmic?(a=new y(this.annoCtx.ctx).getLogVal(a,e.yAxisIndex))/s.globals.yLogRatio[e.yAxisIndex]:(a-s.globals.minYArr[e.yAxisIndex])/(s.globals.yRange[e.yAxisIndex]/s.globals.gridHeight),i=s.globals.gridHeight-o,s.config.yaxis[e.yAxisIndex]&&s.config.yaxis[e.yAxisIndex].reversed&&(i=o)}return i}},{key:"_getYAxisAnnotationWidth",value:function(t){var e=this.w;return e.globals.gridWidth,(t.width.indexOf("%")>-1?e.globals.gridWidth*parseInt(t.width,10)/100:parseInt(t.width,10))+t.offsetX}},{key:"drawYAxisAnnotations",value:function(){var t=this,e=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-yaxis-annotations"});return e.config.annotations.yaxis.map((function(e,a){t.addYaxisAnnotation(e,i.node,a)})),i}}])&&w(e.prototype,i),t}();function A(t,e){for(var i=0;i1&&n[o].classList.add("apexcharts-element-hidden"),t.globals.delayedElements.push({el:n[o],index:0});this.helpers.annotationsBackground()}}},{key:"drawImageAnnos",value:function(){var t=this;this.w.config.annotations.images.map((function(e,i){t.addImage(e,i)}))}},{key:"drawTextAnnos",value:function(){var t=this;this.w.config.annotations.texts.map((function(e,i){t.addText(e,i)}))}},{key:"addXaxisAnnotation",value:function(t,e,i){this.xAxisAnnotations.addXaxisAnnotation(t,e,i)}},{key:"addYaxisAnnotation",value:function(t,e,i){this.yAxisAnnotations.addYaxisAnnotation(t,e,i)}},{key:"addPointAnnotation",value:function(t,e,i){this.pointsAnnotations.addPointAnnotation(t,e,i)}},{key:"addText",value:function(t,e){var i=t.x,a=t.y,s=t.text,r=t.textAnchor,n=t.foreColor,o=t.fontSize,l=t.fontFamily,c=t.fontWeight,h=t.cssClass,d=t.backgroundColor,u=t.borderWidth,g=t.strokeDashArray,f=t.borderRadius,p=t.borderColor,x=t.appendTo,b=void 0===x?".apexcharts-annotations":x,v=t.paddingLeft,m=void 0===v?4:v,y=t.paddingRight,w=void 0===y?4:y,k=t.paddingBottom,A=void 0===k?2:k,S=t.paddingTop,C=void 0===S?2:S,P=this.w,L=this.graphics.drawText({x:i,y:a,text:s,textAnchor:r||"start",fontSize:o||"12px",fontWeight:c||"regular",fontFamily:l||P.config.chart.fontFamily,foreColor:n||P.config.chart.foreColor,cssClass:h}),T=P.globals.dom.baseEl.querySelector(b);T&&T.appendChild(L.node);var O=L.bbox();if(s){var E=this.graphics.drawRect(O.x-m,O.y-C,O.width+m+w,O.height+A+C,f,d||"transparent",1,u,p,g);T.insertBefore(E.node,L.node)}}},{key:"addImage",value:function(t,e){var i=this.w,a=t.path,s=t.x,r=void 0===s?0:s,n=t.y,o=void 0===n?0:n,l=t.width,c=void 0===l?20:l,h=t.height,d=void 0===h?20:h,u=t.appendTo,g=void 0===u?".apexcharts-annotations":u,f=i.globals.dom.Paper.image(a);f.size(c,d).move(r,o);var p=i.globals.dom.baseEl.querySelector(g);p&&p.appendChild(f.node)}},{key:"addXaxisAnnotationExternal",value:function(t,e,i){return this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"xaxis",contextMethod:i.addXaxisAnnotation}),i}},{key:"addYaxisAnnotationExternal",value:function(t,e,i){return this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"yaxis",contextMethod:i.addYaxisAnnotation}),i}},{key:"addPointAnnotationExternal",value:function(t,e,i){return void 0===this.invertAxis&&(this.invertAxis=i.w.globals.isBarHorizontal),this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"point",contextMethod:i.addPointAnnotation}),i}},{key:"addAnnotationExternal",value:function(t){var e=t.params,i=t.pushToMemory,a=t.context,s=t.type,n=t.contextMethod,o=a,l=o.w,c=l.globals.dom.baseEl.querySelector(".apexcharts-".concat(s,"-annotations")),h=c.childNodes.length+1,d=new L,u=Object.assign({},"xaxis"===s?d.xAxisAnnotation:"yaxis"===s?d.yAxisAnnotation:d.pointAnnotation),g=r.extend(u,e);switch(s){case"xaxis":this.addXaxisAnnotation(g,c,h);break;case"yaxis":this.addYaxisAnnotation(g,c,h);break;case"point":this.addPointAnnotation(g,c,h)}var f=l.globals.dom.baseEl.querySelector(".apexcharts-".concat(s,"-annotations .apexcharts-").concat(s,"-annotation-label[rel='").concat(h,"']")),p=this.helpers.addBackgroundToAnno(f,g);return p&&c.insertBefore(p.node,f),i&&l.globals.memory.methodsToExec.push({context:o,id:g.id?g.id:r.randomId(),method:n,label:"addAnnotation",params:e}),a}},{key:"clearAnnotations",value:function(t){var e=t.w,i=e.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations");e.globals.memory.methodsToExec.map((function(t,i){"addText"!==t.label&&"addAnnotation"!==t.label||e.globals.memory.methodsToExec.splice(i,1)})),i=r.listToArray(i),Array.prototype.forEach.call(i,(function(t){for(;t.firstChild;)t.removeChild(t.firstChild)}))}},{key:"removeAnnotation",value:function(t,e){var i=t.w,a=i.globals.dom.baseEl.querySelectorAll(".".concat(e));a&&(i.globals.memory.methodsToExec.map((function(t,a){t.id===e&&i.globals.memory.methodsToExec.splice(a,1)})),Array.prototype.forEach.call(a,(function(t){t.parentElement.removeChild(t)})))}}])&&T(e.prototype,i),t}();function E(t,e){for(var i=0;is?a:s,n=t.image,o=0,l=0;void 0===t.width&&void 0===t.height?void 0!==i.fill.image.width&&void 0!==i.fill.image.height?(o=i.fill.image.width+1,l=i.fill.image.height):(o=r+1,l=r):(o=t.width,l=t.height);var c=document.createElementNS(e.globals.SVGNS,"pattern");f.setAttrs(c,{id:t.patternID,patternUnits:t.patternUnits?t.patternUnits:"userSpaceOnUse",width:o+"px",height:l+"px"});var h=document.createElementNS(e.globals.SVGNS,"image");c.appendChild(h),h.setAttributeNS(window.SVG.xlink,"href",n),f.setAttrs(h,{x:0,y:0,preserveAspectRatio:"none",width:o+"px",height:l+"px"}),h.style.opacity=t.opacity,e.globals.dom.elDefs.node.appendChild(c)}},{key:"getSeriesIndex",value:function(t){var e=this.w;return("bar"===e.config.chart.type||"rangeBar"===e.config.chart.type)&&e.config.plotOptions.bar.distributed||"heatmap"===e.config.chart.type||"treemap"===e.config.chart.type?this.seriesIndex=t.seriesNumber:this.seriesIndex=t.seriesNumber%e.globals.series.length,this.seriesIndex}},{key:"fillPath",value:function(t){var e=this.w;this.opts=t;var i,a,s,n=this.w.config;this.seriesIndex=this.getSeriesIndex(t);var o=this.getFillColors()[this.seriesIndex];void 0!==e.globals.seriesColors[this.seriesIndex]&&(o=e.globals.seriesColors[this.seriesIndex]),"function"==typeof o&&(o=o({seriesIndex:this.seriesIndex,dataPointIndex:t.dataPointIndex,value:t.value,w:e}));var l=this.getFillType(this.seriesIndex),c=Array.isArray(n.fill.opacity)?n.fill.opacity[this.seriesIndex]:n.fill.opacity;t.color&&(o=t.color);var h=o;if(-1===o.indexOf("rgb")?o.length<9&&(h=r.hexToRgba(o,c)):o.indexOf("rgba")>-1&&(c=r.getOpacityFromRGBA(o)),t.opacity&&(c=t.opacity),"pattern"===l&&(a=this.handlePatternFill(a,o,c,h)),"gradient"===l&&(s=this.handleGradientFill(o,c,this.seriesIndex)),"image"===l){var d=n.fill.image.src,u=t.patternID?t.patternID:"";this.clippedImgArea({opacity:c,image:Array.isArray(d)?t.seriesNumber-1&&(d=r.getOpacityFromRGBA(h));var u=void 0===s.fill.gradient.opacityTo?e:Array.isArray(s.fill.gradient.opacityTo)?s.fill.gradient.opacityTo[i]:s.fill.gradient.opacityTo;if(void 0===s.fill.gradient.gradientToColors||0===s.fill.gradient.gradientToColors.length)a="dark"===s.fill.gradient.shade?l.shadeColor(-1*parseFloat(s.fill.gradient.shadeIntensity),t.indexOf("rgb")>-1?r.rgb2hex(t):t):l.shadeColor(parseFloat(s.fill.gradient.shadeIntensity),t.indexOf("rgb")>-1?r.rgb2hex(t):t);else if(s.fill.gradient.gradientToColors[n.seriesNumber]){var g=s.fill.gradient.gradientToColors[n.seriesNumber];a=g,g.indexOf("rgba")>-1&&(u=r.getOpacityFromRGBA(g))}else a=t;if(s.fill.gradient.inverseColors){var p=h;h=a,a=p}return h.indexOf("rgb")>-1&&(h=r.rgb2hex(h)),a.indexOf("rgb")>-1&&(a=r.rgb2hex(a)),o.drawGradient(c,h,a,d,u,n.size,s.fill.gradient.stops,s.fill.gradient.colorStops,i)}}])&&E(e.prototype,i),t}();function M(t,e){for(var i=0;i0){if(t.globals.markers.size.length4&&void 0!==arguments[4]&&arguments[4],o=this.w,l=e,h=t,d=null,u=new f(this.ctx);if((o.globals.markers.size[e]>0||n)&&(d=u.group({class:n?"":"apexcharts-series-markers"})).attr("clip-path","url(#gridRectMarkerMask".concat(o.globals.cuid,")")),Array.isArray(h.x))for(var g=0;g0:o.config.markers.size>0;if(b||n){r.isNumber(h.y[g])?x+=" w".concat(r.randomId()):x="apexcharts-nullpoint";var v=this.getMarkerConfig(x,e,p);o.config.series[l].data[p]&&(o.config.series[l].data[p].fillColor&&(v.pointFillColor=o.config.series[l].data[p].fillColor),o.config.series[l].data[p].strokeColor&&(v.pointStrokeColor=o.config.series[l].data[p].strokeColor)),a&&(v.pSize=a),(s=u.drawMarker(h.x[g],h.y[g],v)).attr("rel",p),s.attr("j",p),s.attr("index",e),s.node.setAttribute("default-marker-size",v.pSize);var m=new c(this.ctx);m.setSelectionFilter(s,e,p),this.addEvents(s),d&&d.add(s)}else void 0===o.globals.pointsArray[e]&&(o.globals.pointsArray[e]=[]),o.globals.pointsArray[e].push([h.x[g],h.y[g]])}return d}},{key:"getMarkerConfig",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=this.w,s=this.getMarkerStyle(e),r=a.globals.markers.size[e],n=a.config.markers;return null!==i&&n.discrete.length&&n.discrete.map((function(t){t.seriesIndex===e&&t.dataPointIndex===i&&(s.pointStrokeColor=t.strokeColor,s.pointFillColor=t.fillColor,r=t.size,s.pointShape=t.shape)})),{pSize:r,pRadius:n.radius,width:Array.isArray(n.width)?n.width[e]:n.width,height:Array.isArray(n.height)?n.height[e]:n.height,pointStrokeWidth:Array.isArray(n.strokeWidth)?n.strokeWidth[e]:n.strokeWidth,pointStrokeColor:s.pointStrokeColor,pointFillColor:s.pointFillColor,shape:s.pointShape||(Array.isArray(n.shape)?n.shape[e]:n.shape),class:t,pointStrokeOpacity:Array.isArray(n.strokeOpacity)?n.strokeOpacity[e]:n.strokeOpacity,pointStrokeDashArray:Array.isArray(n.strokeDashArray)?n.strokeDashArray[e]:n.strokeDashArray,pointFillOpacity:Array.isArray(n.fillOpacity)?n.fillOpacity[e]:n.fillOpacity,seriesIndex:e}}},{key:"addEvents",value:function(t){var e=this.w,i=new f(this.ctx);t.node.addEventListener("mouseenter",i.pathMouseEnter.bind(this.ctx,t)),t.node.addEventListener("mouseleave",i.pathMouseLeave.bind(this.ctx,t)),t.node.addEventListener("mousedown",i.pathMouseDown.bind(this.ctx,t)),t.node.addEventListener("click",e.config.markers.onClick),t.node.addEventListener("dblclick",e.config.markers.onDblClick),t.node.addEventListener("touchstart",i.pathMouseDown.bind(this.ctx,t),{passive:!0})}},{key:"getMarkerStyle",value:function(t){var e=this.w,i=e.globals.markers.colors,a=e.config.markers.strokeColor||e.config.markers.strokeColors;return{pointStrokeColor:Array.isArray(a)?a[t]:a,pointFillColor:Array.isArray(i)?i[t]:i}}}])&&M(e.prototype,i),t}();function X(t,e){for(var i=0;ix.maxBubbleRadius&&(p=x.maxBubbleRadius)}a.config.chart.animations.enabled||(g=p);var b=n.x[h],v=n.y[h];if(g=g||0,null!==v&&void 0!==a.globals.series[r][d]||(u=!1),u){var m=this.drawPoint(b,v,g,p,r,d,e);c.add(m)}l.add(c)}}},{key:"drawPoint",value:function(t,e,i,a,s,r,n){var l,h=this.w,d=s,u=new o(this.ctx),g=new c(this.ctx),p=new I(this.ctx),x=new z(this.ctx),b=new f(this.ctx),v=x.getMarkerConfig("apexcharts-marker",d),m=p.fillPath({seriesNumber:s,dataPointIndex:r,patternUnits:"objectBoundingBox",value:h.globals.series[s][n]});if("circle"===v.shape?l=b.drawCircle(i):"square"!==v.shape&&"rect"!==v.shape||(l=b.drawRect(0,0,v.width-v.pointStrokeWidth/2,v.height-v.pointStrokeWidth/2,v.pRadius)),h.config.series[d].data[r]&&h.config.series[d].data[r].fillColor&&(m=h.config.series[d].data[r].fillColor),l.attr({x:t-v.width/2-v.pointStrokeWidth/2,y:e-v.height/2-v.pointStrokeWidth/2,cx:t,cy:e,fill:m,"fill-opacity":v.pointFillOpacity,stroke:v.pointStrokeColor,r:a,"stroke-width":v.pointStrokeWidth,"stroke-dasharray":v.pointStrokeDashArray,"stroke-opacity":v.pointStrokeOpacity}),h.config.chart.dropShadow.enabled){var y=h.config.chart.dropShadow;g.dropShadow(l,y,s)}if(!this.initialAnim||h.globals.dataChanged||h.globals.resized)h.globals.animationEnded=!0;else{var w=h.config.chart.animations.speed;u.animateMarker(l,0,"circle"===v.shape?a:{width:v.width,height:v.height},w,h.globals.easing,(function(){window.setTimeout((function(){u.animationCompleted(l)}),100)}))}if(h.globals.dataChanged&&"circle"===v.shape)if(this.dynamicAnim){var k,A,S,C,P=h.config.chart.animations.dynamicAnimation.speed;null!=(C=h.globals.previousPaths[s]&&h.globals.previousPaths[s][n])&&(k=C.x,A=C.y,S=void 0!==C.r?C.r:a);for(var L=0;Lo.globals.gridHeight+d&&(e=o.globals.gridHeight+d/2),void 0===o.globals.dataLabelsRects[a]&&(o.globals.dataLabelsRects[a]=[]),o.globals.dataLabelsRects[a].push({x:t,y:e,width:h,height:d});var u=o.globals.dataLabelsRects[a].length-2,g=void 0!==o.globals.lastDrawnDataLabelsIndexes[a]?o.globals.lastDrawnDataLabelsIndexes[a][o.globals.lastDrawnDataLabelsIndexes[a].length-1]:0;if(void 0!==o.globals.dataLabelsRects[a][u]){var p=o.globals.dataLabelsRects[a][g];(t>p.x+p.width+2||e>p.y+p.height+2||t+h4&&void 0!==arguments[4]?arguments[4]:2,r=this.w,n=new f(this.ctx),o=r.config.dataLabels,l=0,c=0,h=i,d=null;if(!o.enabled||!Array.isArray(t.x))return d;d=n.group({class:"apexcharts-data-labels"});for(var u=0;ue.globals.gridWidth+b.textRects.width+10)&&(o="");var v=e.globals.dataLabels.style.colors[r];(("bar"===e.config.chart.type||"rangeBar"===e.config.chart.type)&&e.config.plotOptions.bar.distributed||e.config.dataLabels.distributed)&&(v=e.globals.dataLabels.style.colors[n]),"function"==typeof v&&(v=v({series:e.globals.series,seriesIndex:r,dataPointIndex:n,w:e})),g&&(v=g);var m=u.offsetX,y=u.offsetY;if("bar"!==e.config.chart.type&&"rangeBar"!==e.config.chart.type||(m=0,y=0),b.drawnextLabel){var w=i.drawText({width:100,height:parseInt(u.style.fontSize,10),x:a+m,y:s+y,foreColor:v,textAnchor:l||u.textAnchor,text:o,fontSize:h||u.style.fontSize,fontFamily:u.style.fontFamily,fontWeight:u.style.fontWeight||"normal"});if(w.attr({class:"apexcharts-datalabel",cx:a,cy:s}),u.dropShadow.enabled){var k=u.dropShadow;new c(this.ctx).dropShadow(w,k)}d.add(w),void 0===e.globals.lastDrawnDataLabelsIndexes[r]&&(e.globals.lastDrawnDataLabelsIndexes[r]=[]),e.globals.lastDrawnDataLabelsIndexes[r].push(n)}}}},{key:"addBackgroundToDataLabel",value:function(t,e){var i=this.w,a=i.config.dataLabels.background,s=a.padding,r=a.padding/2,n=e.width,o=e.height,l=new f(this.ctx).drawRect(e.x-s,e.y-r/2,n+2*s,o+r,a.borderRadius,"transparent"===i.config.chart.background?"#fff":i.config.chart.background,a.opacity,a.borderWidth,a.borderColor);return a.dropShadow.enabled&&new c(this.ctx).dropShadow(l,a.dropShadow),l}},{key:"dataLabelsBackground",value:function(){var t=this.w;if("bubble"!==t.config.chart.type)for(var e=t.globals.dom.baseEl.querySelectorAll(".apexcharts-datalabels text"),i=0;ii.globals.gridHeight&&(h=i.globals.gridHeight-u)),{bcx:n,bcy:r,dataLabelsX:e,dataLabelsY:h}}},{key:"calculateBarsDataLabelsPosition",value:function(t){var e=this.w,i=t.x,a=t.i,s=t.j,r=t.bcy,n=t.barHeight,o=t.barWidth,l=t.textRects,c=t.dataLabelsX,h=t.strokeWidth,d=t.barDataLabelsConfig,u=t.offX,g=t.offY,f=e.globals.gridHeight/e.globals.dataPoints;o=Math.abs(o);var p=r-(this.barCtx.isTimelineBar?0:f)+n/2+l.height/2+g-3,x=this.barCtx.series[a][s]<0,b=i;switch(this.barCtx.isReversed&&(b=i+o-(x?2*o:0),i=e.globals.gridWidth-o),d.position){case"center":c=x?b+o/2-u:Math.max(l.width/2,b-o/2)+u;break;case"bottom":c=x?b+o-h-Math.round(l.width/2)-u:b-o+h+Math.round(l.width/2)+u;break;case"top":c=x?b-h+Math.round(l.width/2)-u:b-h-Math.round(l.width/2)+u}return e.config.chart.stacked||(c<0?c=c+l.width+h:c+l.width/2>e.globals.gridWidth&&(c=e.globals.gridWidth-l.width-h)),{bcx:i,bcy:r,dataLabelsX:c,dataLabelsY:p}}},{key:"drawCalculatedDataLabels",value:function(t){var e=t.x,i=t.y,a=t.val,s=t.i,r=t.j,n=t.textRects,o=t.barHeight,l=t.barWidth,c=t.dataLabelsConfig,h=this.w,d="rotate(0)";"vertical"===h.config.plotOptions.bar.dataLabels.orientation&&(d="rotate(-90, ".concat(e,", ").concat(i,")"));var u=new D(this.barCtx.ctx),g=new f(this.barCtx.ctx),p=c.formatter,x=null,b=h.globals.collapsedSeriesIndices.indexOf(s)>-1;if(c.enabled&&!b){x=g.group({class:"apexcharts-data-labels",transform:d});var v="";void 0!==a&&(v=p(a,{seriesIndex:s,dataPointIndex:r,w:h}));var m=h.globals.series[s][r]<0,y=h.config.plotOptions.bar.dataLabels.position;"vertical"===h.config.plotOptions.bar.dataLabels.orientation&&("top"===y&&(c.textAnchor=m?"end":"start"),"center"===y&&(c.textAnchor="middle"),"bottom"===y&&(c.textAnchor=m?"end":"start")),this.barCtx.isTimelineBar&&this.barCtx.barOptions.dataLabels.hideOverflowingLabels&&l0&&n.width/1.6>l||l<0&&n.width/1.6o&&(v=""));var w=function(t){for(var e=1;e0&&void 0!==arguments[0])||arguments[0],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=this.w,s=r.clone(a.globals.initialSeries);a.globals.previousPaths=[],i?(a.globals.collapsedSeries=[],a.globals.ancillaryCollapsedSeries=[],a.globals.collapsedSeriesIndices=[],a.globals.ancillaryCollapsedSeriesIndices=[]):s=this.emptyCollapsedSeries(s),a.config.series=s,t&&(e&&(a.globals.zoomed=!1,this.ctx.updateHelpers.revertDefaultAxisMinMax()),this.ctx.updateHelpers._updateSeries(s,a.config.chart.animations.dynamicAnimation.enabled))}},{key:"emptyCollapsedSeries",value:function(t){for(var e=this.w,i=0;i-1&&(t[i].data=[]);return t}},{key:"toggleSeriesOnHover",value:function(t,e){var i=this.w,a=i.globals.dom.baseEl.querySelectorAll(".apexcharts-series, .apexcharts-datalabels");if("mousemove"===t.type){var s=parseInt(e.getAttribute("rel"),10)-1,r=null,n=null;i.globals.axisCharts||"radialBar"===i.config.chart.type?i.globals.axisCharts?(r=i.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(s,"']")),n=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels[data\\:realIndex='".concat(s,"']"))):r=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(s+1,"']")):r=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(s+1,"'] path"));for(var o=0;o=t.from&&a<=t.to&&s[e].classList.remove(i.legendInactiveClass)}}(a.config.plotOptions.heatmap.colorScale.ranges[n])}else"mouseout"===t.type&&r("remove")}},{key:"getActiveConfigSeriesIndex",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"asc",i=this.w,a=0;if(i.config.series.length>1)for(var s=i.config.series.map((function(e,a){var s=!1;return t&&(s="bar"===i.config.series[a].type||"column"===i.config.series[a].type),e.data&&e.data.length>0&&!s?a:-1})),r="asc"===e?0:s.length-1;"asc"===e?r=0;"asc"===e?r++:r--)if(-1!==s[r]){a=s[r];break}return a}},{key:"getPreviousPaths",value:function(){var t=this.w;function e(e,i,a){for(var s=e[i].childNodes,r={type:a,paths:[],realIndex:e[i].getAttribute("data:realIndex")},n=0;n0)for(var a=function(e){for(var i=t.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(t.config.chart.type," .apexcharts-series[data\\:realIndex='").concat(e,"'] rect")),a=[],s=function(t){var e=function(e){return i[t].getAttribute(e)},s={x:parseFloat(e("x")),y:parseFloat(e("y")),width:parseFloat(e("width")),height:parseFloat(e("height"))};a.push({rect:s,color:i[t].getAttribute("color")})},r=0;r0)for(var a=0;a0?t:[]}))}}])&&j(e.prototype,i),t}();function V(t,e,i){return e in t?Object.defineProperty(t,e,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[e]=i,t}function _(t,e){for(var i=0;i0&&(this.barCtx.seriesLen=this.barCtx.seriesLen+1,this.barCtx.totalItems+=t[i].length),e.globals.isXNumeric)for(var a=0;ae.globals.minX&&e.globals.seriesX[i][a]0&&(a=l.globals.minXDiff/d),(r=a/this.barCtx.seriesLen*parseInt(this.barCtx.barOptions.columnWidth,10)/100)<1&&(r=1)}n=l.globals.gridHeight-this.barCtx.baseLineY[this.barCtx.yaxisIndex]-(this.barCtx.isReversed?l.globals.gridHeight:0)+(this.barCtx.isReversed?2*this.barCtx.baseLineY[this.barCtx.yaxisIndex]:0),t=l.globals.padHorizontal+(a-r*this.barCtx.seriesLen)/2}return{x:t,y:e,yDivision:i,xDivision:a,barHeight:s,barWidth:r,zeroH:n,zeroW:o}}},{key:"getPathFillColor",value:function(t,e,i,a){var s=this.w,r=new I(this.barCtx.ctx),n=null,o=this.barCtx.barOptions.distributed?i:e;return this.barCtx.barOptions.colors.ranges.length>0&&this.barCtx.barOptions.colors.ranges.map((function(a){t[e][i]>=a.from&&t[e][i]<=a.to&&(n=a.color)})),s.config.series[e].data[i]&&s.config.series[e].data[i].fillColor&&(n=s.config.series[e].data[i].fillColor),r.fillPath({seriesNumber:this.barCtx.barOptions.distributed?o:a,dataPointIndex:i,color:n,value:t[e][i]})}},{key:"getStrokeWidth",value:function(t,e,i){var a=0,s=this.w;return void 0===this.barCtx.series[t][e]||null===this.barCtx.series[t][e]?this.barCtx.isNullValue=!0:this.barCtx.isNullValue=!1,s.config.stroke.show&&(this.barCtx.isNullValue||(a=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[i]:this.barCtx.strokeWidth)),a}},{key:"barBackground",value:function(t){var e=t.j,i=t.i,a=t.x1,s=t.x2,r=t.y1,n=t.y2,o=t.elSeries,l=this.w,c=new f(this.barCtx.ctx),h=new B(this.barCtx.ctx).getActiveConfigSeriesIndex();if(this.barCtx.barOptions.colors.backgroundBarColors.length>0&&h===i){e>=this.barCtx.barOptions.colors.backgroundBarColors.length&&(e-=this.barCtx.barOptions.colors.backgroundBarColors.length);var d=this.barCtx.barOptions.colors.backgroundBarColors[e],u=c.drawRect(void 0!==a?a:0,void 0!==r?r:0,void 0!==s?s:l.globals.gridWidth,void 0!==n?n:l.globals.gridHeight,this.barCtx.barOptions.colors.backgroundBarRadius,d,this.barCtx.barOptions.colors.backgroundBarOpacity);o.add(u),u.node.classList.add("apexcharts-backgroundBar")}}},{key:"getColumnPaths",value:function(t){var e=t.barWidth,i=t.barXPosition,a=t.yRatio,s=t.y1,r=t.y2,n=t.strokeWidth,o=t.series,l=t.realIndex,c=t.i,h=t.j,d=t.w,u=new f(this.barCtx.ctx);(n=Array.isArray(n)?n[l]:n)||(n=0);var g={barWidth:e,strokeWidth:n,yRatio:a,barXPosition:i,y1:s,y2:r},p=this.getRoundedBars(d,g,o,c,h),x=i,b=i+e,v=u.move(x,s),m=u.move(x,s),y=u.line(b-n,s);return d.globals.previousPaths.length>0&&(m=this.barCtx.getPreviousPath(l,h,!1)),v=v+u.line(x,p.y2)+p.pathWithRadius+u.line(b-n,p.y2)+y+y+"z",m=m+u.line(x,s)+y+y+y+y+y+u.line(x,s),d.config.chart.stacked&&(this.barCtx.yArrj.push(p.y2),this.barCtx.yArrjF.push(Math.abs(s-p.y2)),this.barCtx.yArrjVal.push(this.barCtx.series[c][h])),{pathTo:v,pathFrom:m}}},{key:"getBarpaths",value:function(t){var e=t.barYPosition,i=t.barHeight,a=t.x1,s=t.x2,r=t.strokeWidth,n=t.series,o=t.realIndex,l=t.i,c=t.j,h=t.w,d=new f(this.barCtx.ctx);(r=Array.isArray(r)?r[o]:r)||(r=0);var u={barHeight:i,strokeWidth:r,barYPosition:e,x2:s,x1:a},g=this.getRoundedBars(h,u,n,l,c),p=d.move(a,e),x=d.move(a,e);h.globals.previousPaths.length>0&&(x=this.barCtx.getPreviousPath(o,c,!1));var b=e,v=e+i,m=d.line(a,v-r);return p=p+d.line(g.x2,b)+g.pathWithRadius+d.line(g.x2,v-r)+m+m+"z",x=x+d.line(a,b)+m+m+m+m+m+d.line(a,b),h.config.chart.stacked&&(this.barCtx.xArrj.push(g.x2),this.barCtx.xArrjF.push(Math.abs(a-g.x2)),this.barCtx.xArrjVal.push(this.barCtx.series[l][c])),{pathTo:p,pathFrom:x}}},{key:"getRoundedBars",value:function(t,e,i,a,s){var r=new f(this.barCtx.ctx),n=t.config.plotOptions.bar.borderRadius;if(t.config.chart.stacked&&i.length>1&&a!==this.barCtx.radiusOnSeriesNumber&&(n=0),this.barCtx.isHorizontal){var o="",l=e.x2;if(Math.abs(e.x1-e.x2)0:i[a][s]<0;c&&(n*=-1),l-=n,o=r.quadraticCurve(l+n,e.barYPosition,l+n,e.barYPosition+(c?-1*n:n))+r.line(l+n,e.barYPosition+e.barHeight-e.strokeWidth-(c?-1*n:n))+r.quadraticCurve(l+n,e.barYPosition+e.barHeight-e.strokeWidth,l,e.barYPosition+e.barHeight-e.strokeWidth)}return{pathWithRadius:o,x2:l}}var h="",d=e.y2;if(Math.abs(e.y1-e.y2)=0;n--)this.barCtx.zeroSerieses.indexOf(n)>-1&&n===this.radiusOnSeriesNumber&&(this.barCtx.radiusOnSeriesNumber-=1);for(var o=e.length-1;o>=0;o--)i.globals.collapsedSeriesIndices.indexOf(this.barCtx.radiusOnSeriesNumber)>-1&&(this.barCtx.radiusOnSeriesNumber-=1)}},{key:"getXForValue",value:function(t,e){var i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=i?e:null;return null!=t&&(a=e+t/this.barCtx.invertedYRatio-2*(this.barCtx.isReversed?t/this.barCtx.invertedYRatio:0)),a}},{key:"getYForValue",value:function(t,e){var i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=i?e:null;return null!=t&&(a=e-t/this.barCtx.yRatio[this.barCtx.yaxisIndex]+2*(this.barCtx.isReversed?t/this.barCtx.yRatio[this.barCtx.yaxisIndex]:0)),a}},{key:"getGoalValues",value:function(t,e,i,a,s){var r=this,n=this.w,o=[];return n.globals.seriesGoals[a]&&n.globals.seriesGoals[a][s]&&Array.isArray(n.globals.seriesGoals[a][s])&&n.globals.seriesGoals[a][s].forEach((function(a){var s;o.push((V(s={},t,"x"===t?r.getXForValue(a.value,e,!1):r.getYForValue(a.value,i,!1)),V(s,"attrs",a),s))})),o}},{key:"drawGoalLine",value:function(t){var e=t.barXPosition,i=t.barYPosition,a=t.goalX,s=t.goalY,r=t.barWidth,n=t.barHeight,o=new f(this.barCtx.ctx),l=o.group({className:"apexcharts-bar-goals-groups"}),c=null;return this.barCtx.isHorizontal?Array.isArray(a)&&a.forEach((function(t){c=o.drawLine(t.x,i,t.x,i+n,t.attrs.strokeColor?t.attrs.strokeColor:void 0,0,t.attrs.strokeWidth?t.attrs.strokeWidth:2),l.add(c)})):Array.isArray(s)&&s.forEach((function(t){c=o.drawLine(e,t.y,e+r,t.y,t.attrs.strokeColor?t.attrs.strokeColor:void 0,0,t.attrs.strokeWidth?t.attrs.strokeWidth:2),l.add(c)})),l}}])&&_(e.prototype,i),t}();function U(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function q(t){for(var e=1;ethis.barOptions.dataLabels.maxItems&&console.warn("WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering.");for(var o=0,l=0;o0&&(this.visibleI=this.visibleI+1);var w=0,k=0;this.yRatio.length>1&&(this.yaxisIndex=v),this.isReversed=i.config.yaxis[this.yaxisIndex]&&i.config.yaxis[this.yaxisIndex].reversed;var A=this.barHelpers.initialPositions();p=A.y,w=A.barHeight,h=A.yDivision,u=A.zeroW,g=A.x,k=A.barWidth,c=A.xDivision,d=A.zeroH,this.horizontal||b.push(g+k/2);for(var S=a.group({class:"apexcharts-datalabels","data:realIndex":v}),C=a.group({class:"apexcharts-bar-goals-markers",style:"pointer-events: none"}),P=0;P0&&b.push(g+k/2),x.push(p);var I=this.barHelpers.getPathFillColor(t,o,P,v);this.renderSeries({realIndex:v,pathFill:I,j:P,i:o,pathFrom:T.pathFrom,pathTo:T.pathTo,strokeWidth:L,elSeries:m,x:g,y:p,series:t,barHeight:w,barWidth:k,elDataLabelsWrap:S,elGoalsMarkers:C,visibleSeries:this.visibleI,type:"bar"})}i.globals.seriesXvalues[v]=b,i.globals.seriesYvalues[v]=x,n.add(m)}return n}},{key:"renderSeries",value:function(t){var e=t.realIndex,i=t.pathFill,a=t.lineFill,s=t.j,r=t.i,n=t.pathFrom,o=t.pathTo,l=t.strokeWidth,h=t.elSeries,d=t.x,u=t.y,g=t.y1,p=t.y2,x=t.series,b=t.barHeight,v=t.barWidth,m=t.barYPosition,y=t.elDataLabelsWrap,w=t.elGoalsMarkers,k=t.visibleSeries,A=t.type,S=this.w,C=new f(this.ctx);a||(a=this.barOptions.distributed?S.globals.stroke.colors[s]:S.globals.stroke.colors[e]),S.config.series[r].data[s]&&S.config.series[r].data[s].strokeColor&&(a=S.config.series[r].data[s].strokeColor),this.isNullValue&&(i="none");var P=s/S.config.chart.animations.animateGradually.delay*(S.config.chart.animations.speed/S.globals.dataPoints)/2.4,L=C.renderPaths({i:r,j:s,realIndex:e,pathFrom:n,pathTo:o,stroke:a,strokeWidth:l,strokeLineCap:S.config.stroke.lineCap,fill:i,animationDelay:P,initialSpeed:S.config.chart.animations.speed,dataChangeSpeed:S.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(A,"-area")});L.attr("clip-path","url(#gridRectMask".concat(S.globals.cuid,")")),void 0!==g&&void 0!==p&&(L.attr("data-range-y1",g),L.attr("data-range-y2",p)),new c(this.ctx).setSelectionFilter(L,e,s),h.add(L);var T=new W(this).handleBarDataLabels({x:d,y:u,y1:g,y2:p,i:r,j:s,series:x,realIndex:e,barHeight:b,barWidth:v,barYPosition:m,renderedPath:L,visibleSeries:k});return null!==T&&y.add(T),h.add(y),w&&h.add(w),h}},{key:"drawBarPaths",value:function(t){var e=t.indexes,i=t.barHeight,a=t.strokeWidth,s=t.zeroW,r=t.x,n=t.y,o=t.yDivision,l=t.elSeries,c=this.w,h=e.i,d=e.j;c.globals.isXNumeric&&(n=(c.globals.seriesX[h][d]-c.globals.minX)/this.invertedXRatio-i);var u=n+i*this.visibleI;r=this.barHelpers.getXForValue(this.series[h][d],s);var g=this.barHelpers.getBarpaths({barYPosition:u,barHeight:i,x1:s,x2:r,strokeWidth:a,series:this.series,realIndex:e.realIndex,i:h,j:d,w:c});return c.globals.isXNumeric||(n+=o),this.barHelpers.barBackground({j:d,i:h,y1:u-i*this.visibleI,y2:i*this.seriesLen,elSeries:l}),{pathTo:g.pathTo,pathFrom:g.pathFrom,x:r,y:n,goalX:this.barHelpers.getGoalValues("x",s,null,h,d),barYPosition:u}}},{key:"drawColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=t.y,s=t.xDivision,r=t.barWidth,n=t.zeroH,o=t.strokeWidth,l=t.elSeries,c=this.w,h=e.realIndex,d=e.i,u=e.j,g=e.bc;if(c.globals.isXNumeric){var f=h;c.globals.seriesX[h].length||(f=c.globals.maxValsInArrayIndex),i=(c.globals.seriesX[f][u]-c.globals.minX)/this.xRatio-r*this.seriesLen/2}var p=i+r*this.visibleI;a=this.barHelpers.getYForValue(this.series[d][u],n);var x=this.barHelpers.getColumnPaths({barXPosition:p,barWidth:r,y1:n,y2:a,strokeWidth:o,series:this.series,realIndex:e.realIndex,i:d,j:u,w:c});return c.globals.isXNumeric||(i+=s),this.barHelpers.barBackground({bc:g,j:u,i:d,x1:p-o/2-r*this.visibleI,x2:r*this.seriesLen+o/2,elSeries:l}),{pathTo:x.pathTo,pathFrom:x.pathFrom,x:i,y:a,goalY:this.barHelpers.getGoalValues("y",null,n,d,u),barXPosition:p}}},{key:"getPreviousPath",value:function(t,e){for(var i,a=this.w,s=0;s0&&parseInt(r.realIndex,10)===parseInt(t,10)&&void 0!==a.globals.previousPaths[s].paths[e]&&(i=a.globals.previousPaths[s].paths[e].d)}return i}}])&&$(e.prototype,i),t}();function Q(t){return function(t){if(Array.isArray(t))return K(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return K(t,e);var i=Object.prototype.toString.call(t).slice(8,-1);return"Object"===i&&t.constructor&&(i=t.constructor.name),"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?K(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function K(t,e){(null==e||e>t.length)&&(e=t.length);for(var i=0,a=new Array(e);i12?u-12:0===u?12:u;e=(e=(e=(e=e.replace(/(^|[^\\])HH+/g,"$1"+l(u))).replace(/(^|[^\\])H/g,"$1"+u)).replace(/(^|[^\\])hh+/g,"$1"+l(g))).replace(/(^|[^\\])h/g,"$1"+g);var f=a?t.getUTCMinutes():t.getMinutes();e=(e=e.replace(/(^|[^\\])mm+/g,"$1"+l(f))).replace(/(^|[^\\])m/g,"$1"+f);var p=a?t.getUTCSeconds():t.getSeconds();e=(e=e.replace(/(^|[^\\])ss+/g,"$1"+l(p))).replace(/(^|[^\\])s/g,"$1"+p);var x=a?t.getUTCMilliseconds():t.getMilliseconds();e=e.replace(/(^|[^\\])fff+/g,"$1"+l(x,3)),x=Math.round(x/10),e=e.replace(/(^|[^\\])ff/g,"$1"+l(x)),x=Math.round(x/10);var b=u<12?"AM":"PM";e=(e=(e=e.replace(/(^|[^\\])f/g,"$1"+x)).replace(/(^|[^\\])TT+/g,"$1"+b)).replace(/(^|[^\\])T/g,"$1"+b.charAt(0));var v=b.toLowerCase();e=(e=e.replace(/(^|[^\\])tt+/g,"$1"+v)).replace(/(^|[^\\])t/g,"$1"+v.charAt(0));var m=-t.getTimezoneOffset(),y=a||!m?"Z":m>0?"+":"-";if(!a){var w=(m=Math.abs(m))%60;y+=l(Math.floor(m/60))+":"+l(w)}e=e.replace(/(^|[^\\])K/g,"$1"+y);var k=(a?t.getUTCDay():t.getDay())+1;return(e=(e=(e=(e=e.replace(new RegExp(n[0],"g"),n[k])).replace(new RegExp(o[0],"g"),o[k])).replace(new RegExp(s[0],"g"),s[h])).replace(new RegExp(r[0],"g"),r[h])).replace(/\\(.)/g,"$1")}},{key:"getTimeUnitsfromTimestamp",value:function(t,e,i){var a=this.w;void 0!==a.config.xaxis.min&&(t=a.config.xaxis.min),void 0!==a.config.xaxis.max&&(e=a.config.xaxis.max);var s=this.getDate(t),r=this.getDate(e),n=this.formatDate(s,"yyyy MM dd HH mm ss fff").split(" "),o=this.formatDate(r,"yyyy MM dd HH mm ss fff").split(" ");return{minMillisecond:parseInt(n[6],10),maxMillisecond:parseInt(o[6],10),minSecond:parseInt(n[5],10),maxSecond:parseInt(o[5],10),minMinute:parseInt(n[4],10),maxMinute:parseInt(o[4],10),minHour:parseInt(n[3],10),maxHour:parseInt(o[3],10),minDate:parseInt(n[2],10),maxDate:parseInt(o[2],10),minMonth:parseInt(n[1],10)-1,maxMonth:parseInt(o[1],10)-1,minYear:parseInt(n[0],10),maxYear:parseInt(o[0],10)}}},{key:"isLeapYear",value:function(t){return t%4==0&&t%100!=0||t%400==0}},{key:"calculcateLastDaysOfMonth",value:function(t,e,i){return this.determineDaysOfMonths(t,e)-i}},{key:"determineDaysOfYear",value:function(t){var e=365;return this.isLeapYear(t)&&(e=366),e}},{key:"determineRemainingDaysOfYear",value:function(t,e,i){var a=this.daysCntOfYear[e]+i;return e>1&&this.isLeapYear()&&a++,a}},{key:"determineDaysOfMonths",value:function(t,e){var i=30;switch(t=r.monthMod(t),!0){case this.months30.indexOf(t)>-1:2===t&&(i=this.isLeapYear(e)?29:28);break;case this.months31.indexOf(t)>-1:default:i=31}return i}}])&&tt(e.prototype,i),t}();function it(t){return(it="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function at(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function st(t){for(var e=1;e0&&(this.visibleI=this.visibleI+1);var x=0,b=0;this.yRatio.length>1&&(this.yaxisIndex=g);var v=this.barHelpers.initialPositions();d=v.y,c=v.zeroW,h=v.x,b=v.barWidth,o=v.xDivision,l=v.zeroH;for(var m=a.group({class:"apexcharts-datalabels","data:realIndex":g}),y=a.group({class:"apexcharts-rangebar-goals-markers",style:"pointer-events: none"}),w=0;w0}));return a=l.config.plotOptions.bar.rangeBarGroupRows?s+n*u:s+r*this.visibleI+n*u,g>-1&&!l.config.plotOptions.bar.rangeBarOverlap&&(c=l.globals.seriesRangeBarTimeline[e][g].overlaps).indexOf(h)>-1&&(a=(r=o.barHeight/c.length)*this.visibleI+n*(100-parseInt(this.barOptions.barHeight,10))/100/2+r*(this.visibleI+c.indexOf(h))+n*u),{barYPosition:a,barHeight:r}}},{key:"drawRangeColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=(t.strokeWidth,t.xDivision),s=t.barWidth,r=t.zeroH,n=this.w,o=e.i,l=e.j,c=this.yRatio[this.yaxisIndex],h=e.realIndex,d=this.getRangeValue(h,l),u=Math.min(d.start,d.end),g=Math.max(d.start,d.end);n.globals.isXNumeric&&(i=(n.globals.seriesX[o][l]-n.globals.minX)/this.xRatio-s/2);var f=i+s*this.visibleI;void 0===this.series[o][l]||null===this.series[o][l]?u=r:(u=r-u/c,g=r-g/c);var p=Math.abs(g-u),x=this.barHelpers.getColumnPaths({barXPosition:f,barWidth:s,y1:u,y2:g,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,realIndex:e.realIndex,i:h,j:l,w:n});return n.globals.isXNumeric||(i+=a),{pathTo:x.pathTo,pathFrom:x.pathFrom,barHeight:p,x:i,y:g,goalY:this.barHelpers.getGoalValues("y",null,r,o,l),barXPosition:f}}},{key:"drawRangeBarPaths",value:function(t){var e=t.indexes,i=t.y,a=t.y1,s=t.y2,r=t.yDivision,n=t.barHeight,o=t.barYPosition,l=t.zeroW,c=this.w,h=l+a/this.invertedYRatio,d=l+s/this.invertedYRatio,u=Math.abs(d-h),g=this.barHelpers.getBarpaths({barYPosition:o,barHeight:n,x1:h,x2:d,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,i:e.realIndex,realIndex:e.realIndex,j:e.j,w:c});return c.globals.isXNumeric||(i+=r),{pathTo:g.pathTo,pathFrom:g.pathFrom,barWidth:u,x:d,goalX:this.barHelpers.getGoalValues("x",l,null,e.realIndex,e.j),y:i}}},{key:"getRangeValue",value:function(t,e){var i=this.w;return{start:i.globals.seriesRangeStart[t][e],end:i.globals.seriesRangeEnd[t][e]}}},{key:"getTooltipValues",value:function(t){var e=t.ctx,i=t.seriesIndex,a=t.dataPointIndex,s=t.y1,r=t.y2,n=t.w,o=n.globals.seriesRangeStart[i][a],l=n.globals.seriesRangeEnd[i][a],c=n.globals.labels[a],h=n.config.series[i].name?n.config.series[i].name:"",d=n.config.tooltip.y.formatter,u=n.config.tooltip.y.title.formatter,g={w:n,seriesIndex:i,dataPointIndex:a,start:o,end:l};"function"==typeof u&&(h=u(h,g)),Number.isFinite(s)&&Number.isFinite(r)&&(o=s,l=r,n.config.series[i].data[a].x&&(c=n.config.series[i].data[a].x+":"),"function"==typeof d&&(c=d(c,g)));var f="",p="",x=n.globals.colors[i];if(void 0===n.config.tooltip.x.formatter)if("datetime"===n.config.xaxis.type){var b=new et(e);f=b.formatDate(b.getDate(o),n.config.tooltip.x.format),p=b.formatDate(b.getDate(l),n.config.tooltip.x.format)}else f=o,p=l;else f=n.config.tooltip.x.formatter(o),p=n.config.tooltip.x.formatter(l);return{start:o,end:l,startVal:f,endVal:p,ylabel:c,color:x,seriesName:h}}},{key:"buildCustomTooltipHTML",value:function(t){return'
'+(t.seriesName||"")+'
'+t.ylabel+' '+t.start+' - '+t.end+"
"}}])&&ot(e.prototype,i),o}(J);function ut(t,e){for(var i=0;i\n '.concat(t.config.series[e].name?t.config.series[e].name:"series-"+(e+1),": ").concat(t.globals.series[e][i],"\n "):'
')+"
".concat(a[0],': ')+r+"
"+"
".concat(a[1],': ')+n+"
"+(o?"
".concat(a[2],': ')+o+"
":"")+"
".concat(a[3],': ')+l+"
"+"
".concat(a[4],': ')+c+"
"}}])&&ut(e.prototype,i),t}();function ft(t){return(ft="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function pt(t,e){for(var i=0;i1&&s.length!==t.yaxis.length&&console.warn("A multi-series logarithmic chart should have equal number of series and y-axes. Please make sure to equalize both."),t}},{key:"extendAnnotations",value:function(t){return void 0===t.annotations&&(t.annotations={},t.annotations.yaxis=[],t.annotations.xaxis=[],t.annotations.points=[]),t=this.extendYAxisAnnotations(t),t=this.extendXAxisAnnotations(t),this.extendPointAnnotations(t)}},{key:"extendYAxisAnnotations",value:function(t){var e=new L;return t.annotations.yaxis=r.extendArray(void 0!==t.annotations.yaxis?t.annotations.yaxis:[],e.yAxisAnnotation),t}},{key:"extendXAxisAnnotations",value:function(t){var e=new L;return t.annotations.xaxis=r.extendArray(void 0!==t.annotations.xaxis?t.annotations.xaxis:[],e.xAxisAnnotation),t}},{key:"extendPointAnnotations",value:function(t){var e=new L;return t.annotations.points=r.extendArray(void 0!==t.annotations.points?t.annotations.points:[],e.pointAnnotation),t}},{key:"checkForDarkTheme",value:function(t){t.theme&&"dark"===t.theme.mode&&(t.tooltip||(t.tooltip={}),"light"!==t.tooltip.theme&&(t.tooltip.theme="dark"),t.chart.foreColor||(t.chart.foreColor="#f6f7f8"),t.chart.background||(t.chart.background="#424242"),t.theme.palette||(t.theme.palette="palette4"))}},{key:"handleUserInputErrors",value:function(t){var e=t;if(e.tooltip.shared&&e.tooltip.intersect)throw new Error("tooltip.shared cannot be enabled when tooltip.intersect is true. Turn off any other option by setting it to false.");if("bar"===e.chart.type&&e.plotOptions.bar.horizontal){if(e.yaxis.length>1)throw new Error("Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false");e.yaxis[0].reversed&&(e.yaxis[0].opposite=!0),e.xaxis.tooltip.enabled=!1,e.yaxis[0].tooltip.enabled=!1,e.chart.zoom.enabled=!1}return"bar"!==e.chart.type&&"rangeBar"!==e.chart.type||e.tooltip.shared&&"barWidth"===e.xaxis.crosshairs.width&&e.series.length>1&&(e.xaxis.crosshairs.width="tickWidth"),"candlestick"!==e.chart.type&&"boxPlot"!==e.chart.type||e.yaxis[0].reversed&&(console.warn("Reversed y-axis in ".concat(e.chart.type," chart is not supported.")),e.yaxis[0].reversed=!1),e.chart.group&&0===e.yaxis[0].labels.minWidth&&console.warn("It looks like you have multiple charts in synchronization. You must provide yaxis.labels.minWidth which must be EQUAL for all grouped charts to prevent incorrect behaviour."),Array.isArray(e.stroke.width)&&"line"!==e.chart.type&&"area"!==e.chart.type&&(console.warn("stroke.width option accepts array only for line and area charts. Reverted back to Number"),e.stroke.width=e.stroke.width[0]),e}}])&&pt(e.prototype,i),t}();function bt(t,e){for(var i=0;i0&&null!==t[this.activeSeriesIndex].data[0]&&void 0!==t[this.activeSeriesIndex].data[0].x&&null!==t[this.activeSeriesIndex].data[0])return!0}},{key:"isFormat2DArray",value:function(){var t=this.w.config.series.slice(),e=new B(this.ctx);if(this.activeSeriesIndex=e.getActiveConfigSeriesIndex(),void 0!==t[this.activeSeriesIndex].data&&t[this.activeSeriesIndex].data.length>0&&void 0!==t[this.activeSeriesIndex].data[0]&&null!==t[this.activeSeriesIndex].data[0]&&t[this.activeSeriesIndex].data[0].constructor===Array)return!0}},{key:"handleFormat2DArray",value:function(t,e){for(var i=this.w.config,a=this.w.globals,s="boxPlot"===i.chart.type||"boxPlot"===i.series[e].type,n=0;n=5?this.twoDSeries.push(r.parseNumber(t[e].data[n][4])):this.twoDSeries.push(r.parseNumber(t[e].data[n][1])),a.dataFormatXNumeric=!0),"datetime"===i.xaxis.type){var o=new Date(t[e].data[n][0]);o=new Date(o).getTime(),this.twoDSeriesX.push(o)}else this.twoDSeriesX.push(t[e].data[n][0]);for(var l=0;l-1&&(n=this.activeSeriesIndex);for(var o=0;o1&&void 0!==arguments[1]?arguments[1]:this.ctx,a=this.w.config,s=this.w.globals,n=new et(i),o=a.labels.length>0?a.labels.slice():a.xaxis.categories.slice();s.isTimelineBar="rangeBar"===a.chart.type&&"datetime"===a.xaxis.type;for(var l=function(){for(var t=0;t0&&(this.twoDSeriesX=o,s.seriesX.push(this.twoDSeriesX))),s.labels.push(this.twoDSeriesX);var h=t[c].data.map((function(t){return r.parseNumber(t)}));s.series.push(h)}s.seriesZ.push(this.threeDSeries),void 0!==t[c].name?s.seriesNames.push(t[c].name):s.seriesNames.push("series-"+parseInt(c+1,10)),void 0!==t[c].color?s.seriesColors.push(t[c].color):s.seriesColors.push(void 0)}return this.w}},{key:"parseDataNonAxisCharts",value:function(t){var e=this.w.globals,i=this.w.config;e.series=t.slice(),e.seriesNames=i.labels.slice();for(var a=0;a0?i.labels=e.xaxis.categories:e.labels.length>0?i.labels=e.labels.slice():this.fallbackToCategory?(i.labels=i.labels[0],i.seriesRangeBarTimeline.length&&(i.seriesRangeBarTimeline.map((function(t){t.forEach((function(t){i.labels.indexOf(t.x)<0&&t.x&&i.labels.push(t.x)}))})),i.labels=i.labels.filter((function(t,e,i){return i.indexOf(t)===e}))),e.xaxis.convertedCatToNumeric&&(new gt(e).convertCatToNumericXaxis(e,this.ctx,i.seriesX[0]),this._generateExternalLabels(t))):this._generateExternalLabels(t)}},{key:"_generateExternalLabels",value:function(t){var e=this.w.globals,i=this.w.config,a=[];if(e.axisCharts){if(e.series.length>0)for(var s=0;s0&&i<100?t.toFixed(1):t.toFixed(0)}return e.globals.isBarHorizontal&&e.globals.maxY-e.globals.minYArr<4?t.toFixed(1):t.toFixed(0)}return t},"function"==typeof e.config.tooltip.x.formatter?e.globals.ttKeyFormatter=e.config.tooltip.x.formatter:e.globals.ttKeyFormatter=e.globals.xLabelFormatter,"function"==typeof e.config.xaxis.tooltip.formatter&&(e.globals.xaxisTooltipFormatter=e.config.xaxis.tooltip.formatter),(Array.isArray(e.config.tooltip.y)||void 0!==e.config.tooltip.y.formatter)&&(e.globals.ttVal=e.config.tooltip.y),void 0!==e.config.tooltip.z.formatter&&(e.globals.ttZFormatter=e.config.tooltip.z.formatter),void 0!==e.config.legend.formatter&&(e.globals.legendFormatter=e.config.legend.formatter),e.config.yaxis.forEach((function(i,a){void 0!==i.labels.formatter?e.globals.yLabelFormatters[a]=i.labels.formatter:e.globals.yLabelFormatters[a]=function(s){return e.globals.xyCharts?Array.isArray(s)?s.map((function(e){return t.defaultYFormatter(e,i,a)})):t.defaultYFormatter(s,i,a):s}})),e.globals}},{key:"heatmapLabelFormatters",value:function(){var t=this.w;if("heatmap"===t.config.chart.type){t.globals.yAxisScale[0].result=t.globals.seriesNames.slice();var e=t.globals.seriesNames.reduce((function(t,e){return t.length>e.length?t:e}),0);t.globals.yAxisScale[0].niceMax=e,t.globals.yAxisScale[0].niceMin=e}}}])&&At(e.prototype,i),t}();function Ct(t,e){for(var i=0;i4&&void 0!==arguments[4]?arguments[4]:[],r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:"12px",n=this.w,o=void 0===t[a]?"":t[a],l=o,c=n.globals.xLabelFormatter,h=n.config.xaxis.labels.formatter,d=!1,u=new St(this.ctx),g=o;l=u.xLabelFormat(c,o,g,{i:a,dateFormatter:new et(this.ctx).formatDate,w:n}),void 0!==h&&(l=h(o,t[a],{i:a,dateFormatter:new et(this.ctx).formatDate,w:n}));var p=function(t){var i=null;return e.forEach((function(t){"month"===t.unit?i="year":"day"===t.unit?i="month":"hour"===t.unit?i="day":"minute"===t.unit&&(i="hour")})),i===t};e.length>0?(d=p(e[a].unit),i=e[a].position,l=e[a].value):"datetime"===n.config.xaxis.type&&void 0===h&&(l=""),void 0===l&&(l=""),l=Array.isArray(l)?l:l.toString();var x=new f(this.ctx),b={};b=n.globals.rotateXLabels?x.getTextRects(l,parseInt(r,10),null,"rotate(".concat(n.config.xaxis.labels.rotate," 0 0)"),!1):x.getTextRects(l,parseInt(r,10));var v=!n.config.xaxis.labels.showDuplicates&&this.ctx.timeScale;return!Array.isArray(l)&&(0===l.indexOf("NaN")||0===l.toLowerCase().indexOf("invalid")||l.toLowerCase().indexOf("infinity")>=0||s.indexOf(l)>=0&&v)&&(l=""),{x:i,text:l,textRect:b,isBold:d}}},{key:"checkLabelBasedOnTickamount",value:function(t,e,i){var a=this.w,s=a.config.xaxis.tickAmount;return"dataPoints"===s&&(s=Math.round(a.globals.gridWidth/120)),s>i||t%Math.round(i/(s+1))==0||(e.text=""),e}},{key:"checkForOverflowingLabels",value:function(t,e,i,a,s){var r=this.w;if(0===t&&r.globals.skipFirstTimelinelabel&&(e.text=""),t===i-1&&r.globals.skipLastTimelinelabel&&(e.text=""),r.config.xaxis.labels.hideOverlappingLabels&&a.length>0){var n=s[s.length-1];e.x0){!0===o.config.yaxis[s].opposite&&(t+=a.width);for(var h=e;h>=0;h--){var d=c+e/10+o.config.yaxis[s].labels.offsetY-1;o.globals.isBarHorizontal&&(d=r*h),"heatmap"===o.config.chart.type&&(d+=r/2);var u=l.drawLine(t+i.offsetX-a.width+a.offsetX,d+a.offsetY,t+i.offsetX+a.offsetX,d+a.offsetY,a.color);n.add(u),c+=r}}}}])&&Ct(e.prototype,i),t}();function Lt(t,e){for(var i=0;i=10?o.config.chart.toolbar.export.csv.dateFormatter(n):r.isNumber(n)?n:n.split(a).join("")));for(var h=0;h0&&!i.globals.isBarHorizontal&&(this.xaxisLabels=i.globals.timescaleLabels.slice()),i.config.xaxis.overwriteCategories&&(this.xaxisLabels=i.config.xaxis.overwriteCategories),this.drawnLabels=[],this.drawnLabelsRects=[],"top"===i.config.xaxis.position?this.offY=0:this.offY=i.globals.gridHeight+1,this.offY=this.offY+i.config.xaxis.axisBorder.offsetY,this.isCategoryBarHorizontal="bar"===i.config.chart.type&&i.config.plotOptions.bar.horizontal,this.xaxisFontSize=i.config.xaxis.labels.style.fontSize,this.xaxisFontFamily=i.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=i.config.xaxis.labels.style.colors,this.xaxisBorderWidth=i.config.xaxis.axisBorder.width,this.isCategoryBarHorizontal&&(this.xaxisBorderWidth=i.config.yaxis[0].axisBorder.width.toString()),this.xaxisBorderWidth.indexOf("%")>-1?this.xaxisBorderWidth=i.globals.gridWidth*parseInt(this.xaxisBorderWidth,10)/100:this.xaxisBorderWidth=parseInt(this.xaxisBorderWidth,10),this.xaxisBorderHeight=i.config.xaxis.axisBorder.height,this.yaxis=i.config.yaxis[0]}var e,i;return e=t,(i=[{key:"drawXaxis",value:function(){var t,e=this,i=this.w,a=new f(this.ctx),s=a.group({class:"apexcharts-xaxis",transform:"translate(".concat(i.config.xaxis.offsetX,", ").concat(i.config.xaxis.offsetY,")")}),r=a.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(i.globals.translateXAxisX,", ").concat(i.globals.translateXAxisY,")")});s.add(r);for(var n=i.globals.padHorizontal,o=[],l=0;l1?c-1:c;t=i.globals.gridWidth/h,n=n+t/2+i.config.xaxis.labels.offsetX}else t=i.globals.gridWidth/o.length,n=n+t+i.config.xaxis.labels.offsetX;for(var d=function(s){var l=n-t/2+i.config.xaxis.labels.offsetX;0===s&&1===c&&t/2===n&&1===i.globals.dataPoints&&(l=i.globals.gridWidth/2);var h=e.axesUtils.getLabel(o,i.globals.timescaleLabels,l,s,e.drawnLabels,e.xaxisFontSize),d=28;if(i.globals.rotateXLabels&&(d=22),(h=void 0!==i.config.xaxis.tickAmount&&"dataPoints"!==i.config.xaxis.tickAmount&&"datetime"!==i.config.xaxis.type?e.axesUtils.checkLabelBasedOnTickamount(s,h,c):e.axesUtils.checkForOverflowingLabels(s,h,c,e.drawnLabels,e.drawnLabelsRects)).text&&i.globals.xaxisLabelsCount++,i.config.xaxis.labels.show){var u=a.drawText({x:h.x,y:e.offY+i.config.xaxis.labels.offsetY+d-("top"===i.config.xaxis.position?i.globals.xAxisHeight+i.config.xaxis.axisTicks.height-2:0),text:h.text,textAnchor:"middle",fontWeight:h.isBold?600:i.config.xaxis.labels.style.fontWeight,fontSize:e.xaxisFontSize,fontFamily:e.xaxisFontFamily,foreColor:Array.isArray(e.xaxisForeColors)?i.config.xaxis.convertedCatToNumeric?e.xaxisForeColors[i.globals.minX+s-1]:e.xaxisForeColors[s]:e.xaxisForeColors,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+i.config.xaxis.labels.style.cssClass});r.add(u);var g=document.createElementNS(i.globals.SVGNS,"title");g.textContent=Array.isArray(h.text)?h.text.join(" "):h.text,u.node.appendChild(g),""!==h.text&&(e.drawnLabels.push(h.text),e.drawnLabelsRects.push(h))}n+=t},u=0;u<=c-1;u++)d(u);if(void 0!==i.config.xaxis.title.text){var g=a.group({class:"apexcharts-xaxis-title"}),p=a.drawText({x:i.globals.gridWidth/2+i.config.xaxis.title.offsetX,y:this.offY+parseFloat(this.xaxisFontSize)+i.globals.xAxisLabelsHeight+i.config.xaxis.title.offsetY,text:i.config.xaxis.title.text,textAnchor:"middle",fontSize:i.config.xaxis.title.style.fontSize,fontFamily:i.config.xaxis.title.style.fontFamily,fontWeight:i.config.xaxis.title.style.fontWeight,foreColor:i.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+i.config.xaxis.title.style.cssClass});g.add(p),s.add(g)}if(i.config.xaxis.axisBorder.show){var x=i.globals.barPadForNumericAxis,b=a.drawLine(i.globals.padHorizontal+i.config.xaxis.axisBorder.offsetX-x,this.offY,this.xaxisBorderWidth+x,this.offY,i.config.xaxis.axisBorder.color,0,this.xaxisBorderHeight);s.add(b)}return s}},{key:"drawXaxisInversed",value:function(t){var e,i,a=this,s=this.w,r=new f(this.ctx),n=s.config.yaxis[0].opposite?s.globals.translateYAxisX[t]:0,o=r.group({class:"apexcharts-yaxis apexcharts-xaxis-inversed",rel:t}),l=r.group({class:"apexcharts-yaxis-texts-g apexcharts-xaxis-inversed-texts-g",transform:"translate("+n+", 0)"});o.add(l);var c=[];if(s.config.yaxis[t].show)for(var h=0;hi.globals.gridWidth)){var s=this.offY+i.config.xaxis.axisTicks.offsetY,r=s+i.config.xaxis.axisTicks.height;if("top"===i.config.xaxis.position&&(r=s-i.config.xaxis.axisTicks.height),i.config.xaxis.axisTicks.show){var n=new f(this.ctx).drawLine(t+i.config.xaxis.axisTicks.offsetX,s+i.config.xaxis.offsetY,a+i.config.xaxis.axisTicks.offsetX,r+i.config.xaxis.offsetY,i.config.xaxis.axisTicks.color);e.add(n),n.node.classList.add("apexcharts-xaxis-tick")}}}},{key:"getXAxisTicksPositions",value:function(){var t=this.w,e=[],i=this.xaxisLabels.length,a=t.globals.padHorizontal;if(t.globals.timescaleLabels.length>0)for(var s=0;s0){var c=s[s.length-1].getBBox(),h=s[0].getBBox();c.x<-20&&s[s.length-1].parentNode.removeChild(s[s.length-1]),h.x+h.width>t.globals.gridWidth&&!t.globals.isBarHorizontal&&s[0].parentNode.removeChild(s[0]);for(var d=0;d0&&(this.xaxisLabels=i.globals.timescaleLabels.slice())}var e,i;return e=t,(i=[{key:"drawGridArea",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=this.w,i=new f(this.ctx);null===t&&(t=i.group({class:"apexcharts-grid"}));var a=i.drawLine(e.globals.padHorizontal,1,e.globals.padHorizontal,e.globals.gridHeight,"transparent"),s=i.drawLine(e.globals.padHorizontal,e.globals.gridHeight,e.globals.gridWidth,e.globals.gridHeight,"transparent");return t.add(s),t.add(a),t}},{key:"drawGrid",value:function(){var t=null;return this.w.globals.axisCharts&&(t=this.renderGrid(),this.drawGridArea(t.el)),t}},{key:"createGridMask",value:function(){var t=this.w,e=t.globals,i=new f(this.ctx),a=Array.isArray(t.config.stroke.width)?0:t.config.stroke.width;if(Array.isArray(t.config.stroke.width)){var s=0;t.config.stroke.width.forEach((function(t){s=Math.max(s,t)})),a=s}e.dom.elGridRectMask=document.createElementNS(e.SVGNS,"clipPath"),e.dom.elGridRectMask.setAttribute("id","gridRectMask".concat(e.cuid)),e.dom.elGridRectMarkerMask=document.createElementNS(e.SVGNS,"clipPath"),e.dom.elGridRectMarkerMask.setAttribute("id","gridRectMarkerMask".concat(e.cuid));var r=t.config.chart.type,n=0,o=0;("bar"===r||"rangeBar"===r||"candlestick"===r||"boxPlot"===r||t.globals.comboBarCount>0)&&t.globals.isXNumeric&&!t.globals.isBarHorizontal&&(n=t.config.grid.padding.left,o=t.config.grid.padding.right,e.barPadForNumericAxis>n&&(n=e.barPadForNumericAxis,o=e.barPadForNumericAxis)),e.dom.elGridRect=i.drawRect(-a/2-n-2,-a/2,e.gridWidth+a+o+n+4,e.gridHeight+a,0,"#fff"),new y(this).getLargestMarkerSize();var l=t.globals.markers.largestSize+1;e.dom.elGridRectMarker=i.drawRect(2*-l,2*-l,e.gridWidth+4*l,e.gridHeight+4*l,0,"#fff"),e.dom.elGridRectMask.appendChild(e.dom.elGridRect.node),e.dom.elGridRectMarkerMask.appendChild(e.dom.elGridRectMarker.node);var c=e.dom.baseEl.querySelector("defs");c.appendChild(e.dom.elGridRectMask),c.appendChild(e.dom.elGridRectMarkerMask)}},{key:"_drawGridLines",value:function(t){var e=t.i,i=t.x1,a=t.y1,s=t.x2,r=t.y2,n=t.xCount,o=t.parent,l=this.w;0===e&&l.globals.skipFirstTimelinelabel||e===n-1&&l.globals.skipLastTimelinelabel&&!l.config.xaxis.labels.formatter||"radar"===l.config.chart.type||(l.config.grid.xaxis.lines.show&&this._drawGridLine({x1:i,y1:a,x2:s,y2:r,parent:o}),new Et(this.ctx).drawXaxisTicks(i,this.elg))}},{key:"_drawGridLine",value:function(t){var e=t.x1,i=t.y1,a=t.x2,s=t.y2,r=t.parent,n=this.w,o=r.node.classList.contains("apexcharts-gridlines-horizontal"),l=n.config.grid.strokeDashArray,c=n.globals.barPadForNumericAxis,h=new f(this).drawLine(e-(o?c:0),i,a+(o?c:0),s,n.config.grid.borderColor,l);h.node.classList.add("apexcharts-gridline"),r.add(h)}},{key:"_drawGridBandRect",value:function(t){var e=t.c,i=t.x1,a=t.y1,s=t.x2,r=t.y2,n=t.type,o=this.w,l=new f(this.ctx),c=o.globals.barPadForNumericAxis;if("column"!==n||"datetime"!==o.config.xaxis.type){var h=o.config.grid[n].colors[e],d=l.drawRect(i-("row"===n?c:0),a,s+("row"===n?2*c:0),r,0,h,o.config.grid[n].opacity);this.elg.add(d),d.attr("clip-path","url(#gridRectMask".concat(o.globals.cuid,")")),d.node.classList.add("apexcharts-grid-".concat(n))}}},{key:"_drawXYLines",value:function(t){var e=this,i=t.xCount,a=t.tickAmount,s=this.w;if(s.config.grid.xaxis.lines.show||s.config.xaxis.axisTicks.show){var r,n=s.globals.padHorizontal,o=s.globals.gridHeight;s.globals.timescaleLabels.length?function(t){for(var a=t.xC,s=t.x1,r=t.y1,n=t.x2,o=t.y2,l=0;l2));s++);return!t.globals.isBarHorizontal||this.isTimelineBar?(i=this.xaxisLabels.length,this.isTimelineBar&&(a=t.globals.labels.length,t.config.xaxis.tickAmount&&t.config.xaxis.labels.formatter&&(i=t.config.xaxis.tickAmount)),this._drawXYLines({xCount:i,tickAmount:a})):(i=a,a=t.globals.xTickAmount,this._drawInvertedXYLines({xCount:i,tickAmount:a})),this.drawGridBands(i,a),{el:this.elg,xAxisTickWidth:t.globals.gridWidth/i}}},{key:"drawGridBands",value:function(t,e){var i=this.w;if(void 0!==i.config.grid.row.colors&&i.config.grid.row.colors.length>0)for(var a=0,s=i.globals.gridHeight/e,r=i.globals.gridWidth,n=0,o=0;n=i.config.grid.row.colors.length&&(o=0),this._drawGridBandRect({c:o,x1:0,y1:a,x2:r,y2:s,type:"row"}),a+=i.globals.gridHeight/e;if(void 0!==i.config.grid.column.colors&&i.config.grid.column.colors.length>0)for(var l=i.globals.isBarHorizontal||"category"!==i.config.xaxis.type&&!i.config.xaxis.convertedCatToNumeric?t:t-1,c=i.globals.padHorizontal,h=i.globals.padHorizontal+i.globals.gridWidth/l,d=i.globals.gridHeight,u=0,g=0;u=i.config.grid.column.colors.length&&(g=0),this._drawGridBandRect({c:g,x1:c,y1:0,x2:h,y2:d,type:"column"}),c+=i.globals.gridWidth/l}}])&&It(e.prototype,i),t}();function zt(t,e){for(var i=0;i2&&void 0!==arguments[2]?arguments[2]:10,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,s=arguments.length>4?arguments[4]:void 0,n=this.w,o=Math.abs(e-t);if("dataPoints"===(i=this._adjustTicksForSmallRange(i,a,o))&&(i=n.globals.dataPoints-1),t===Number.MIN_VALUE&&0===e||!r.isNumber(t)&&!r.isNumber(e)||t===Number.MIN_VALUE&&e===-Number.MAX_VALUE){t=0,e=i;var l=this.linearScale(t,e,i);return l}t>e?(console.warn("axis.min cannot be greater than axis.max"),e=t+.1):t===e&&(t=0===t?0:t-.5,e=0===e?2:e+.5);var c=[];o<1&&s&&("candlestick"===n.config.chart.type||"candlestick"===n.config.series[a].type||"boxPlot"===n.config.chart.type||"boxPlot"===n.config.series[a].type||n.globals.isRangeData)&&(e*=1.01);var h=i+1;h<2?h=2:h>2&&(h-=2);var d=o/h,u=Math.floor(r.log10(d)),g=Math.pow(10,u),f=Math.round(d/g);f<1&&(f=1);var p=f*g,x=p*Math.floor(t/p),b=p*Math.ceil(e/p),v=x;if(s&&o>2){for(;c.push(v),!((v+=p)>b););return{result:c,niceMin:c[0],niceMax:c[c.length-1]}}var m=t;(c=[]).push(m);for(var y=Math.abs(e-t)/i,w=0;w<=i;w++)m+=y,c.push(m);return c[c.length-2]>=e&&c.pop(),{result:c,niceMin:c[0],niceMax:c[c.length-1]}}},{key:"linearScale",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10,a=arguments.length>3?arguments[3]:void 0,s=Math.abs(e-t);"dataPoints"===(i=this._adjustTicksForSmallRange(i,a,s))&&(i=this.w.globals.dataPoints-1);var r=s/i;i===Number.MAX_VALUE&&(i=10,r=1);for(var n=[],o=t;i>=0;)n.push(o),o+=r,i-=1;return{result:n,niceMin:n[0],niceMax:n[n.length-1]}}},{key:"logarithmicScale",value:function(t){for(var e=[],i=Math.ceil(Math.log10(t))+1,a=0;a5)a.allSeriesCollapsed=!1,a.yAxisScale[t]=this.logarithmicScale(i);else if(i!==-Number.MAX_VALUE&&r.isNumber(i))if(a.allSeriesCollapsed=!1,void 0===n.min&&void 0===n.max||n.forceNiceScale){var l=void 0===s.yaxis[t].max&&void 0===s.yaxis[t].min||s.yaxis[t].forceNiceScale;a.yAxisScale[t]=this.niceScale(e,i,n.tickAmount?n.tickAmount:o<5&&o>1?o+1:5,t,l)}else a.yAxisScale[t]=this.linearScale(e,i,n.tickAmount,t);else a.yAxisScale[t]=this.linearScale(0,5,5)}},{key:"setXScale",value:function(t,e){var i=this.w,a=i.globals,s=i.config.xaxis,n=Math.abs(e-t);return e!==-Number.MAX_VALUE&&r.isNumber(e)?a.xAxisScale=this.linearScale(t,e,s.tickAmount?s.tickAmount:n<5&&n>1?n+1:5,0):a.xAxisScale=this.linearScale(0,5,5),a.xAxisScale}},{key:"setMultipleYScales",value:function(){var t=this,e=this.w.globals,i=this.w.config,a=e.minYArr.concat([]),s=e.maxYArr.concat([]),r=[];i.yaxis.forEach((function(e,n){var o=n;i.series.forEach((function(t,i){t.name===e.seriesName&&(o=i,n!==i?r.push({index:i,similarIndex:n,alreadyExists:!0}):r.push({index:i}))}));var l=a[o],c=s[o];t.setYScaleForIndex(n,l,c)})),this.sameScaleInMultipleAxes(a,s,r)}},{key:"sameScaleInMultipleAxes",value:function(t,e,i){var a=this,s=this.w.config,r=this.w.globals,n=[];i.forEach((function(t){t.alreadyExists&&(void 0===n[t.index]&&(n[t.index]=[]),n[t.index].push(t.index),n[t.index].push(t.similarIndex))})),r.yAxisSameScaleIndices=n,n.forEach((function(t,e){n.forEach((function(i,a){var s,r;e!==a&&(s=t,r=i,s.filter((function(t){return-1!==r.indexOf(t)}))).length>0&&(n[e]=n[e].concat(n[a]))}))}));var o=n.map((function(t){return t.filter((function(e,i){return t.indexOf(e)===i}))})).map((function(t){return t.sort()}));n=n.filter((function(t){return!!t}));var l=o.slice(),c=l.map((function(t){return JSON.stringify(t)}));l=l.filter((function(t,e){return c.indexOf(JSON.stringify(t))===e}));var h=[],d=[];t.forEach((function(t,i){l.forEach((function(a,s){a.indexOf(i)>-1&&(void 0===h[s]&&(h[s]=[],d[s]=[]),h[s].push({key:i,value:t}),d[s].push({key:i,value:e[i]}))}))}));var u=Array.apply(null,Array(l.length)).map(Number.prototype.valueOf,Number.MIN_VALUE),g=Array.apply(null,Array(l.length)).map(Number.prototype.valueOf,-Number.MAX_VALUE);h.forEach((function(t,e){t.forEach((function(t,i){u[e]=Math.min(t.value,u[e])}))})),d.forEach((function(t,e){t.forEach((function(t,i){g[e]=Math.max(t.value,g[e])}))})),t.forEach((function(t,e){d.forEach((function(t,i){var n=u[i],o=g[i];s.chart.stacked&&(o=0,t.forEach((function(t,e){t.value!==-Number.MAX_VALUE&&(o+=t.value),n!==Number.MIN_VALUE&&(n+=h[i][e].value)}))),t.forEach((function(i,l){t[l].key===e&&(void 0!==s.yaxis[e].min&&(n="function"==typeof s.yaxis[e].min?s.yaxis[e].min(r.minY):s.yaxis[e].min),void 0!==s.yaxis[e].max&&(o="function"==typeof s.yaxis[e].max?s.yaxis[e].max(r.maxY):s.yaxis[e].max),a.setYScaleForIndex(e,n,o))}))}))}))}},{key:"autoScaleY",value:function(t,e,i){t||(t=this);var a=t.w;if(a.globals.isMultipleYAxis||a.globals.collapsedSeries.length)return console.warn("autoScaleYaxis is not supported in a multi-yaxis chart."),e;var s=a.globals.seriesX[0],r=a.config.chart.stacked;return e.forEach((function(t,n){for(var o=0,l=0;l=i.xaxis.min){o=l;break}var c,h,d=a.globals.minYArr[n],u=a.globals.maxYArr[n],g=a.globals.stackedSeriesTotals;a.globals.series.forEach((function(n,l){var f=n[o];r?(f=g[o],c=h=f,g.forEach((function(t,e){s[e]<=i.xaxis.max&&s[e]>=i.xaxis.min&&(t>h&&null!==t&&(h=t),n[e]=i.xaxis.min){var r=t,n=t;a.globals.series.forEach((function(i,a){null!==t&&(r=Math.min(i[e],r),n=Math.max(i[e],n))})),n>h&&null!==n&&(h=n),rd&&(c=d),e.length>1?(e[l].min=void 0===t.min?c:t.min,e[l].max=void 0===t.max?h:t.max):(e[0].min=void 0===t.min?c:t.min,e[0].max=void 0===t.max?h:t.max)}))})),e}}])&&zt(e.prototype,i),t}();function Yt(t,e){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:-Number.MAX_VALUE,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,s=this.w.config,n=this.w.globals,o=-Number.MAX_VALUE,l=Number.MIN_VALUE;null===a&&(a=t+1);var c=n.series,h=c,d=c;"candlestick"===s.chart.type?(h=n.seriesCandleL,d=n.seriesCandleH):"boxPlot"===s.chart.type?(h=n.seriesCandleO,d=n.seriesCandleC):n.isRangeData&&(h=n.seriesRangeStart,d=n.seriesRangeEnd);for(var u=t;uh[u][g]&&h[u][g]<0&&(l=h[u][g])):n.hasNullValues=!0}}return"rangeBar"===s.chart.type&&n.seriesRangeStart.length&&n.isBarHorizontal&&"datetime"===s.xaxis.type&&(l=e),"bar"===s.chart.type&&(l<0&&o<0&&(o=0),l===Number.MIN_VALUE&&(l=0)),{minY:l,maxY:o,lowestY:e,highestY:i}}},{key:"setYRange",value:function(){var t=this.w.globals,e=this.w.config;t.maxY=-Number.MAX_VALUE,t.minY=Number.MIN_VALUE;var i=Number.MAX_VALUE;if(t.isMultipleYAxis)for(var a=0;a=0&&i<=10||void 0!==e.yaxis[0].min||void 0!==e.yaxis[0].max)&&(n=0),t.minY=i-5*n/100,i>0&&t.minY<0&&(t.minY=0),t.maxY=t.maxY+5*n/100}return e.yaxis.forEach((function(e,i){void 0!==e.max&&("number"==typeof e.max?t.maxYArr[i]=e.max:"function"==typeof e.max&&(t.maxYArr[i]=e.max(t.isMultipleYAxis?t.maxYArr[i]:t.maxY)),t.maxY=t.maxYArr[i]),void 0!==e.min&&("number"==typeof e.min?t.minYArr[i]=e.min:"function"==typeof e.min&&(t.minYArr[i]=e.min(t.isMultipleYAxis?t.minYArr[i]===Number.MIN_VALUE?0:t.minYArr[i]:t.minY)),t.minY=t.minYArr[i])})),t.isBarHorizontal&&["min","max"].forEach((function(i){void 0!==e.xaxis[i]&&"number"==typeof e.xaxis[i]&&("min"===i?t.minY=e.xaxis[i]:t.maxY=e.xaxis[i])})),t.isMultipleYAxis?(this.scales.setMultipleYScales(),t.minY=i,t.yAxisScale.forEach((function(e,i){t.minYArr[i]=e.niceMin,t.maxYArr[i]=e.niceMax}))):(this.scales.setYScaleForIndex(0,t.minY,t.maxY),t.minY=t.yAxisScale[0].niceMin,t.maxY=t.yAxisScale[0].niceMax,t.minYArr[0]=t.yAxisScale[0].niceMin,t.maxYArr[0]=t.yAxisScale[0].niceMax),{minY:t.minY,maxY:t.maxY,minYArr:t.minYArr,maxYArr:t.maxYArr,yAxisScale:t.yAxisScale}}},{key:"setXRange",value:function(){var t=this.w.globals,e=this.w.config,i="numeric"===e.xaxis.type||"datetime"===e.xaxis.type||"category"===e.xaxis.type&&!t.noLabelsProvided||t.noLabelsProvided||t.isXNumeric;if(t.isXNumeric&&function(){for(var e=0;et.dataPoints&&0!==t.dataPoints&&(a=t.dataPoints-1)):"dataPoints"===e.xaxis.tickAmount?(t.series.length>1&&(a=t.series[t.maxValsInArrayIndex].length-1),t.isXNumeric&&(a=t.maxX-t.minX-1)):a=e.xaxis.tickAmount,t.xTickAmount=a,void 0!==e.xaxis.max&&"number"==typeof e.xaxis.max&&(t.maxX=e.xaxis.max),void 0!==e.xaxis.min&&"number"==typeof e.xaxis.min&&(t.minX=e.xaxis.min),void 0!==e.xaxis.range&&(t.minX=t.maxX-e.xaxis.range),t.minX!==Number.MAX_VALUE&&t.maxX!==-Number.MAX_VALUE)if(e.xaxis.convertedCatToNumeric&&!t.dataFormatXNumeric){for(var s=[],n=t.minX-1;n0&&(t.xAxisScale=this.scales.linearScale(1,t.labels.length,a-1),t.seriesX=t.labels.slice());i&&(t.labels=t.xAxisScale.result.slice())}return t.isBarHorizontal&&t.labels.length&&(t.xTickAmount=t.labels.length),this._handleSingleDataPoint(),this._getMinXDiff(),{minX:t.minX,maxX:t.maxX}}},{key:"setZRange",value:function(){var t=this.w.globals;if(t.isDataXYZ)for(var e=0;e0){var s=e-a[i-1];s>0&&(t.minXDiff=Math.min(s,t.minXDiff))}})),1===t.dataPoints&&t.minXDiff===Number.MAX_VALUE&&(t.minXDiff=.5)}))}},{key:"_setStackedMinMax",value:function(){var t=this.w.globals,e=[],i=[];if(t.series.length)for(var a=0;a0?s=s+parseFloat(t.series[o][a])+1e-4:n+=parseFloat(t.series[o][a])),o===t.series.length-1&&(e.push(s),i.push(n));for(var l=0;l=0;v--)b(v);if(void 0!==i.config.yaxis[t].title.text){var m=a.group({class:"apexcharts-yaxis-title"}),y=0;i.config.yaxis[t].opposite&&(y=i.globals.translateYAxisX[t]);var w=a.drawText({x:y,y:i.globals.gridHeight/2+i.globals.translateY+i.config.yaxis[t].title.offsetY,text:i.config.yaxis[t].title.text,textAnchor:"end",foreColor:i.config.yaxis[t].title.style.color,fontSize:i.config.yaxis[t].title.style.fontSize,fontWeight:i.config.yaxis[t].title.style.fontWeight,fontFamily:i.config.yaxis[t].title.style.fontFamily,cssClass:"apexcharts-yaxis-title-text "+i.config.yaxis[t].title.style.cssClass});m.add(w),l.add(m)}var k=i.config.yaxis[t].axisBorder,A=31+k.offsetX;if(i.config.yaxis[t].opposite&&(A=-31-k.offsetX),k.show){var S=a.drawLine(A,i.globals.translateY+k.offsetY-2,A,i.globals.gridHeight+i.globals.translateY+k.offsetY+2,k.color,0,k.width);l.add(S)}return i.config.yaxis[t].axisTicks.show&&this.axesUtils.drawYAxisTicks(A,h,k,i.config.yaxis[t].axisTicks,t,d,l),l}},{key:"drawYaxisInversed",value:function(t){var e=this.w,i=new f(this.ctx),a=i.group({class:"apexcharts-xaxis apexcharts-yaxis-inversed"}),s=i.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(e.globals.translateXAxisX,", ").concat(e.globals.translateXAxisY,")")});a.add(s);var r=e.globals.yAxisScale[t].result.length-1,n=e.globals.gridWidth/r+.1,o=n+e.config.xaxis.labels.offsetX,l=e.globals.xLabelFormatter,c=e.globals.yAxisScale[t].result.slice(),h=e.globals.timescaleLabels;h.length>0&&(this.xaxisLabels=h.slice(),r=(c=h.slice()).length),c=this.axesUtils.checkForReversedLabels(t,c);var d=h.length;if(e.config.xaxis.labels.show)for(var u=d?0:r;d?u=0;d?u++:u--){var g=c[u];g=l(g,u,e);var p=e.globals.gridWidth+e.globals.padHorizontal-(o-n+e.config.xaxis.labels.offsetX);if(h.length){var x=this.axesUtils.getLabel(c,h,p,u,this.drawnLabels,this.xaxisFontSize);p=x.x,g=x.text,this.drawnLabels.push(x.text),0===u&&e.globals.skipFirstTimelinelabel&&(g=""),u===c.length-1&&e.globals.skipLastTimelinelabel&&(g="")}var b=i.drawText({x:p,y:this.xAxisoffX+e.config.xaxis.labels.offsetY+30-("top"===e.config.xaxis.position?e.globals.xAxisHeight+e.config.xaxis.axisTicks.height-2:0),text:g,textAnchor:"middle",foreColor:Array.isArray(this.xaxisForeColors)?this.xaxisForeColors[t]:this.xaxisForeColors,fontSize:this.xaxisFontSize,fontFamily:this.xaxisFontFamily,fontWeight:e.config.xaxis.labels.style.fontWeight,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+e.config.xaxis.labels.style.cssClass});s.add(b),b.tspan(g);var v=document.createElementNS(e.globals.SVGNS,"title");v.textContent=g,b.node.appendChild(v),o+=n}return this.inversedYAxisTitleText(a),this.inversedYAxisBorder(a),a}},{key:"inversedYAxisBorder",value:function(t){var e=this.w,i=new f(this.ctx),a=e.config.xaxis.axisBorder;if(a.show){var s=0;"bar"===e.config.chart.type&&e.globals.isXNumeric&&(s-=15);var r=i.drawLine(e.globals.padHorizontal+s+a.offsetX,this.xAxisoffX,e.globals.gridWidth,this.xAxisoffX,a.color,0,a.height);t.add(r)}}},{key:"inversedYAxisTitleText",value:function(t){var e=this.w,i=new f(this.ctx);if(void 0!==e.config.xaxis.title.text){var a=i.group({class:"apexcharts-xaxis-title apexcharts-yaxis-title-inversed"}),s=i.drawText({x:e.globals.gridWidth/2+e.config.xaxis.title.offsetX,y:this.xAxisoffX+parseFloat(this.xaxisFontSize)+parseFloat(e.config.xaxis.title.style.fontSize)+e.config.xaxis.title.offsetY+20,text:e.config.xaxis.title.text,textAnchor:"middle",fontSize:e.config.xaxis.title.style.fontSize,fontFamily:e.config.xaxis.title.style.fontFamily,fontWeight:e.config.xaxis.title.style.fontWeight,foreColor:e.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+e.config.xaxis.title.style.cssClass});a.add(s),t.add(a)}}},{key:"yAxisTitleRotate",value:function(t,e){var i=this.w,a=new f(this.ctx),s={width:0,height:0},r={width:0,height:0},n=i.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(t,"'] .apexcharts-yaxis-texts-g"));null!==n&&(s=n.getBoundingClientRect());var o=i.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(t,"'] .apexcharts-yaxis-title text"));if(null!==o&&(r=o.getBoundingClientRect()),null!==o){var l=this.xPaddingForYAxisTitle(t,s,r,e);o.setAttribute("x",l.xPos-(e?10:0))}if(null!==o){var c=a.rotateAroundCenter(o);o.setAttribute("transform","rotate(".concat(e?-1*i.config.yaxis[t].title.rotate:i.config.yaxis[t].title.rotate," ").concat(c.x," ").concat(c.y,")"))}}},{key:"xPaddingForYAxisTitle",value:function(t,e,i,a){var s=this.w,r=0,n=0,o=10;return void 0===s.config.yaxis[t].title.text||t<0?{xPos:n,padd:0}:(a?(n=e.width+s.config.yaxis[t].title.offsetX+i.width/2+o/2,0===(r+=1)&&(n-=o/2)):(n=-1*e.width+s.config.yaxis[t].title.offsetX+o/2+i.width/2,s.globals.isBarHorizontal&&(o=25,n=-1*e.width-s.config.yaxis[t].title.offsetX-o)),{xPos:n,padd:o})}},{key:"setYAxisXPosition",value:function(t,e){var i=this.w,a=0,s=0,r=18,n=1;i.config.yaxis.length>1&&(this.multipleYs=!0),i.config.yaxis.map((function(o,l){var c=i.globals.ignoreYAxisIndexes.indexOf(l)>-1||!o.show||o.floating||0===t[l].width,h=t[l].width+e[l].width;o.opposite?i.globals.isBarHorizontal?(s=i.globals.gridWidth+i.globals.translateX-1,i.globals.translateYAxisX[l]=s-o.labels.offsetX):(s=i.globals.gridWidth+i.globals.translateX+n,c||(n=n+h+20),i.globals.translateYAxisX[l]=s-o.labels.offsetX+20):(a=i.globals.translateX-r,c||(r=r+h+20),i.globals.translateYAxisX[l]=a+o.labels.offsetX)}))}},{key:"setYAxisTextAlignments",value:function(){var t=this.w,e=t.globals.dom.baseEl.getElementsByClassName("apexcharts-yaxis");(e=r.listToArray(e)).forEach((function(e,i){var a=t.config.yaxis[i];if(a&&void 0!==a.labels.align){var s=t.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(i,"'] .apexcharts-yaxis-texts-g")),n=t.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(i,"'] .apexcharts-yaxis-label"));n=r.listToArray(n);var o=s.getBoundingClientRect();"left"===a.labels.align?(n.forEach((function(t,e){t.setAttribute("text-anchor","start")})),a.opposite||s.setAttribute("transform","translate(-".concat(o.width,", 0)"))):"center"===a.labels.align?(n.forEach((function(t,e){t.setAttribute("text-anchor","middle")})),s.setAttribute("transform","translate(".concat(o.width/2*(a.opposite?1:-1),", 0)"))):"right"===a.labels.align&&(n.forEach((function(t,e){t.setAttribute("text-anchor","end")})),a.opposite&&s.setAttribute("transform","translate(".concat(o.width,", 0)")))}}))}}])&&Dt(e.prototype,i),t}();function Ht(t,e){for(var i=0;i0&&(e=this.w.config.chart.locales.concat(window.Apex.chart.locales));var i=e.filter((function(e){return e.name===t}))[0];if(!i)throw new Error("Wrong locale name provided. Please make sure you set the correct locale name in options");var a=r.extend(C,i);this.w.globals.locale=a.options}}])&&Wt(e.prototype,i),t}();function Bt(t,e){for(var i=0;ie.breakpoint?1:e.breakpoint>t.breakpoint?-1:0})).reverse();var n=new xt({}),o=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=s[0].breakpoint,o=window.innerWidth>0?window.innerWidth:screen.width;if(o>a){var l=y.extendArrayProps(n,i.globals.initialConfig,i);t=r.extend(l,t),t=r.extend(i.config,t),e.overrideResponsiveOptions(t)}else for(var c=0;c0&&"function"==typeof e.config.colors[0]&&(e.globals.colors=e.config.series.map((function(i,a){var s=e.config.colors[a];return s||(s=e.config.colors[0]),"function"==typeof s?(t.isColorFn=!0,s({value:e.globals.axisCharts?e.globals.series[a][0]?e.globals.series[a][0]:0:e.globals.series[a],seriesIndex:a,dataPointIndex:a,w:e})):s})))),e.globals.seriesColors.map((function(t,i){t&&(e.globals.colors[i]=t)})),e.config.theme.monochrome.enabled){var a=[],s=e.globals.series.length;(this.isBarDistributed||this.isHeatmapDistributed)&&(s=e.globals.series[0].length*e.globals.series.length);for(var n=e.config.theme.monochrome.color,o=1/(s/e.config.theme.monochrome.shadeIntensity),l=e.config.theme.monochrome.shadeTo,c=0,h=0;h2&&void 0!==arguments[2]?arguments[2]:null,a=this.w,s=e||a.globals.series.length;if(null===i&&(i=this.isBarDistributed||this.isHeatmapDistributed||"heatmap"===a.config.chart.type&&a.config.plotOptions.heatmap.colorScale.inverse),i&&a.globals.series.length&&(s=a.globals.series[a.globals.maxValsInArrayIndex].length*a.globals.series.length),t.lengtht.length)&&(e=t.length);for(var i=0,a=new Array(e);it.globals.svgWidth&&(this.dCtx.lgRect.width=t.globals.svgWidth/1.5),this.dCtx.lgRect}},{key:"getLargestStringFromMultiArr",value:function(t,e){var i=t;if(this.w.globals.isMultiLineX){var a=e.map((function(t,e){return Array.isArray(t)?t.length:1})),s=Math.max.apply(Math,function(t){return function(t){if(Array.isArray(t))return Kt(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return Kt(t,e);var i=Object.prototype.toString.call(t).slice(8,-1);return"Object"===i&&t.constructor&&(i=t.constructor.name),"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?Kt(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(a));i=e[a.indexOf(s)]}return i}}])&&te(e.prototype,i),t}();function ie(t,e){for(var i=0;i0){var a=this.getxAxisTimeScaleLabelsCoords();t={width:a.width,height:a.height},e.globals.rotateXLabels=!1}else{this.dCtx.lgWidthForSideLegends="left"!==e.config.legend.position&&"right"!==e.config.legend.position||e.config.legend.floating?0:this.dCtx.lgRect.width;var s=e.globals.xLabelFormatter,n=r.getLargestStringFromArr(i),o=this.dCtx.dimHelpers.getLargestStringFromMultiArr(n,i);e.globals.isBarHorizontal&&(o=n=e.globals.yAxisScale[0].result.reduce((function(t,e){return t.length>e.length?t:e}),0));var l=new St(this.dCtx.ctx),c=n;n=l.xLabelFormat(s,n,c,{i:void 0,dateFormatter:new et(this.dCtx.ctx).formatDate,w:e}),o=l.xLabelFormat(s,o,c,{i:void 0,dateFormatter:new et(this.dCtx.ctx).formatDate,w:e}),(e.config.xaxis.convertedCatToNumeric&&void 0===n||""===String(n).trim())&&(o=n="1");var h=new f(this.dCtx.ctx),d=h.getTextRects(n,e.config.xaxis.labels.style.fontSize),u=d;if(n!==o&&(u=h.getTextRects(o,e.config.xaxis.labels.style.fontSize)),(t={width:d.width>=u.width?d.width:u.width,height:d.height>=u.height?d.height:u.height}).width*i.length>e.globals.svgWidth-this.dCtx.lgWidthForSideLegends-this.dCtx.yAxisWidth-this.dCtx.gridPad.left-this.dCtx.gridPad.right&&0!==e.config.xaxis.labels.rotate||e.config.xaxis.labels.rotateAlways){if(!e.globals.isBarHorizontal){e.globals.rotateXLabels=!0;var g=function(t){return h.getTextRects(t,e.config.xaxis.labels.style.fontSize,e.config.xaxis.labels.style.fontFamily,"rotate(".concat(e.config.xaxis.labels.rotate," 0 0)"),!1)};d=g(n),n!==o&&(u=g(o)),t.height=(d.height>u.height?d.height:u.height)/1.5,t.width=d.width>u.width?d.width:u.width}}else e.globals.rotateXLabels=!1}return e.config.xaxis.labels.show||(t={width:0,height:0}),{width:t.width,height:t.height}}},{key:"getxAxisTitleCoords",value:function(){var t=this.w,e=0,i=0;if(void 0!==t.config.xaxis.title.text){var a=new f(this.dCtx.ctx).getTextRects(t.config.xaxis.title.text,t.config.xaxis.title.style.fontSize);e=a.width,i=a.height}return{width:e,height:i}}},{key:"getxAxisTimeScaleLabelsCoords",value:function(){var t,e=this.w;this.dCtx.timescaleLabels=e.globals.timescaleLabels.slice();var i=this.dCtx.timescaleLabels.map((function(t){return t.value})),a=i.reduce((function(t,e){return void 0===t?(console.error("You have possibly supplied invalid Date format. Please supply a valid JavaScript Date"),0):t.length>e.length?t:e}),0);return 1.05*(t=new f(this.dCtx.ctx).getTextRects(a,e.config.xaxis.labels.style.fontSize)).width*i.length>e.globals.gridWidth&&0!==e.config.xaxis.labels.rotate&&(e.globals.overlappingXLabels=!0),t}},{key:"additionalPaddingXLabels",value:function(t){var e=this,i=this.w,a=i.globals,s=i.config,r=s.xaxis.type,n=t.width;a.skipLastTimelinelabel=!1,a.skipFirstTimelinelabel=!1;var o=i.config.yaxis[0].opposite&&i.globals.isBarHorizontal;s.yaxis.forEach((function(t,l){o?(e.dCtx.gridPad.left0?e.dCtx.lgRect.width:0;l>a.svgWidth-a.translateX-h&&(a.skipLastTimelinelabel=!0),c<-(t.show&&!t.floating||"bar"!==s.chart.type&&"candlestick"!==s.chart.type&&"rangeBar"!==s.chart.type&&"boxPlot"!==s.chart.type?10:n/1.75)&&(a.skipFirstTimelinelabel=!0)}else"datetime"===r?e.dCtx.gridPad.rightString(l.niceMax).length?d:l.niceMax,g=h(u,{seriesIndex:o,dataPointIndex:-1,w:e}),p=g;if(void 0!==g&&0!==g.length||(g=u),e.globals.isBarHorizontal){a=0;var x=e.globals.labels.slice();g=h(g=r.getLargestStringFromArr(x),{seriesIndex:o,dataPointIndex:-1,w:e}),p=t.dCtx.dimHelpers.getLargestStringFromMultiArr(g,x)}var b=new f(t.dCtx.ctx),v="rotate(".concat(n.labels.rotate," 0 0)"),m=b.getTextRects(g,n.labels.style.fontSize,n.labels.style.fontFamily,v,!1),y=m;g!==p&&(y=b.getTextRects(p,n.labels.style.fontSize,n.labels.style.fontFamily,v,!1)),i.push({width:(c>y.width||c>m.width?c:y.width>m.width?y.width:m.width)+a,height:y.height>m.height?y.height:m.height})}else i.push({width:0,height:0})})),i}},{key:"getyAxisTitleCoords",value:function(){var t=this,e=this.w,i=[];return e.config.yaxis.map((function(e,a){if(e.show&&void 0!==e.title.text){var s=new f(t.dCtx.ctx),r="rotate(".concat(e.title.rotate," 0 0)"),n=s.getTextRects(e.title.text,e.title.style.fontSize,e.title.style.fontFamily,r,!1);i.push({width:n.width,height:n.height})}else i.push({width:0,height:0})})),i}},{key:"getTotalYAxisWidth",value:function(){var t=this.w,e=0,i=0,a=0,s=t.globals.yAxisScale.length>1?10:0,r=new Pt(this.dCtx.ctx),n=function(n,o){var l=t.config.yaxis[o].floating,c=0;n.width>0&&!l?(c=n.width+s,function(e){return t.globals.ignoreYAxisIndexes.indexOf(e)>-1}(o)&&(c=c-n.width-s)):c=l||r.isYAxisHidden(o)?0:5,t.config.yaxis[o].opposite?a+=c:i+=c,e+=c};return t.globals.yLabelsCoords.map((function(t,e){n(t,e)})),t.globals.yTitleCoords.map((function(t,e){n(t,e)})),t.globals.isBarHorizontal&&!t.config.yaxis[0].floating&&(e=t.globals.yLabelsCoords[0].width+t.globals.yTitleCoords[0].width+15),this.dCtx.yAxisWidthLeft=i,this.dCtx.yAxisWidthRight=a,e}}])&&se(e.prototype,i),t}();function ne(t,e){for(var i=0;i0&&(r=e.globals.comboBarCount),e.globals.collapsedSeries.forEach((function(t){i(t.type)&&(r-=1)})),e.config.chart.stacked&&(r=1),(i(a)||e.globals.comboBarCount>0)&&e.globals.isXNumeric&&!e.globals.isBarHorizontal&&r>0){var n,o,l=Math.abs(e.globals.initialMaxX-e.globals.initialMinX);l<=3&&(l=e.globals.dataPoints),n=l/t,e.globals.minXDiff&&e.globals.minXDiff/n>0&&(o=e.globals.minXDiff/n),o>t/2&&(o/=2),(s=o/r*parseInt(e.config.plotOptions.bar.columnWidth,10)/100)<1&&(s=1),s=s/(r>1?1:1.5)+5,e.globals.barPadForNumericAxis=s}return s}},{key:"gridPadFortitleSubtitle",value:function(){var t=this,e=this.w,i=e.globals,a=this.dCtx.isSparkline||!e.globals.axisCharts?0:10;["title","subtitle"].forEach((function(i){void 0!==e.config[i].text?a+=e.config[i].margin:a+=t.dCtx.isSparkline||!e.globals.axisCharts?0:5})),!e.config.legend.show||"bottom"!==e.config.legend.position||e.config.legend.floating||e.globals.axisCharts||(a+=10);var s=this.dCtx.dimHelpers.getTitleSubtitleCoords("title"),r=this.dCtx.dimHelpers.getTitleSubtitleCoords("subtitle");i.gridHeight=i.gridHeight-s.height-r.height-a,i.translateY=i.translateY+s.height+r.height+a}},{key:"setGridXPosForDualYAxis",value:function(t,e){var i=this.w,a=new Pt(this.dCtx.ctx);i.config.yaxis.map((function(s,r){-1!==i.globals.ignoreYAxisIndexes.indexOf(r)||s.floating||a.isYAxisHidden(r)||(s.opposite&&(i.globals.translateX=i.globals.translateX-(e[r].width+t[r].width)-parseInt(i.config.yaxis[r].labels.style.fontSize,10)/1.2-12),i.globals.translateX<2&&(i.globals.translateX=2))}))}}])&&ne(e.prototype,i),t}();function le(t,e){for(var i=0;i0?e+4:0),t.translateY=t.translateY+this.gridPad.top}},{key:"setDimensionsForAxisCharts",value:function(){var t=this,e=this.w,i=e.globals,a=this.dimYAxis.getyAxisLabelsCoords(),s=this.dimYAxis.getyAxisTitleCoords();e.globals.yLabelsCoords=[],e.globals.yTitleCoords=[],e.config.yaxis.map((function(t,i){e.globals.yLabelsCoords.push({width:a[i].width,index:i}),e.globals.yTitleCoords.push({width:s[i].width,index:i})})),this.yAxisWidth=this.dimYAxis.getTotalYAxisWidth();var r=this.dimXAxis.getxAxisLabelsCoords(),n=this.dimXAxis.getxAxisTitleCoords();this.conditionalChecksForAxisCoords(r,n),i.translateXAxisY=e.globals.rotateXLabels?this.xAxisHeight/8:-4,i.translateXAxisX=e.globals.rotateXLabels&&e.globals.isXNumeric&&e.config.xaxis.labels.rotate<=-45?-this.xAxisWidth/4:0,e.globals.isBarHorizontal&&(i.rotateXLabels=!1,i.translateXAxisY=parseInt(e.config.xaxis.labels.style.fontSize,10)/1.5*-1),i.translateXAxisY=i.translateXAxisY+e.config.xaxis.labels.offsetY,i.translateXAxisX=i.translateXAxisX+e.config.xaxis.labels.offsetX;var o=this.yAxisWidth,l=this.xAxisHeight;i.xAxisLabelsHeight=this.xAxisHeight-n.height,i.xAxisLabelsWidth=this.xAxisWidth,i.xAxisHeight=this.xAxisHeight;var c=10;("radar"===e.config.chart.type||this.isSparkline)&&(o=0,l=i.goldenPadding),this.isSparkline&&(this.lgRect={height:0,width:0}),(this.isSparkline||"treemap"===e.config.chart.type)&&(o=0,l=0,c=0),this.isSparkline||this.dimXAxis.additionalPaddingXLabels(r);var h=function(){i.translateX=o,i.gridHeight=i.svgHeight-t.lgRect.height-l-(t.isSparkline||"treemap"===e.config.chart.type?0:e.globals.rotateXLabels?10:15),i.gridWidth=i.svgWidth-o};switch("top"===e.config.xaxis.position&&(c=i.xAxisHeight-e.config.xaxis.axisTicks.height-5),e.config.legend.position){case"bottom":i.translateY=c,h();break;case"top":i.translateY=this.lgRect.height+c,h();break;case"left":i.translateY=c,i.translateX=this.lgRect.width+o,i.gridHeight=i.svgHeight-l-12,i.gridWidth=i.svgWidth-this.lgRect.width-o;break;case"right":i.translateY=c,i.translateX=o,i.gridHeight=i.svgHeight-l-12,i.gridWidth=i.svgWidth-this.lgRect.width-o-5;break;default:throw new Error("Legend position not supported")}this.dimGrid.setGridXPosForDualYAxis(s,a),new Rt(this.ctx).setYAxisXPosition(a,s)}},{key:"setDimensionsForNonAxisCharts",value:function(){var t=this.w,e=t.globals,i=t.config,a=0;t.config.legend.show&&!t.config.legend.floating&&(a=20);var s="pie"===i.chart.type||"polarArea"===i.chart.type||"donut"===i.chart.type?"pie":"radialBar",r=i.plotOptions[s].offsetY,n=i.plotOptions[s].offsetX;if(!i.legend.show||i.legend.floating)return e.gridHeight=e.svgHeight-i.grid.padding.left+i.grid.padding.right,e.gridWidth=e.gridHeight,e.translateY=r,void(e.translateX=n+(e.svgWidth-e.gridWidth)/2);switch(i.legend.position){case"bottom":e.gridHeight=e.svgHeight-this.lgRect.height-e.goldenPadding,e.gridWidth=e.svgWidth,e.translateY=r-10,e.translateX=n+(e.svgWidth-e.gridWidth)/2;break;case"top":e.gridHeight=e.svgHeight-this.lgRect.height-e.goldenPadding,e.gridWidth=e.svgWidth,e.translateY=this.lgRect.height+r+10,e.translateX=n+(e.svgWidth-e.gridWidth)/2;break;case"left":e.gridWidth=e.svgWidth-this.lgRect.width-a,e.gridHeight="auto"!==i.chart.height?e.svgHeight:e.gridWidth,e.translateY=r,e.translateX=n+this.lgRect.width+a;break;case"right":e.gridWidth=e.svgWidth-this.lgRect.width-a-5,e.gridHeight="auto"!==i.chart.height?e.svgHeight:e.gridWidth,e.translateY=r,e.translateX=n+10;break;default:throw new Error("Legend position not supported")}}},{key:"conditionalChecksForAxisCoords",value:function(t,e){var i=this.w;this.xAxisHeight=(t.height+e.height)*(i.globals.isMultiLineX?1.2:i.globals.LINE_HEIGHT_RATIO)+(i.globals.rotateXLabels?22:10),this.xAxisWidth=t.width,this.xAxisHeight-e.height>i.config.xaxis.labels.maxHeight&&(this.xAxisHeight=i.config.xaxis.labels.maxHeight),i.config.xaxis.labels.minHeight&&this.xAxisHeights&&(this.yAxisWidth=s)}}])&&le(e.prototype,i),t}();function he(t,e){for(var i=0;i0){for(var n=0;n-1&&(t[a].data=[])})):t.forEach((function(i,a){e.globals.collapsedSeriesIndices.indexOf(a)>-1&&(t[a]=0)})),t}}])&&he(e.prototype,i),t}();function ue(t,e){for(var i=0;i1||!e.axisCharts)&&i.legend.show){for(;e.dom.elLegendWrap.firstChild;)e.dom.elLegendWrap.removeChild(e.dom.elLegendWrap.firstChild);this.drawLegends(),r.isIE11()?document.getElementsByTagName("head")[0].appendChild(this.legendHelpers.getLegendStyles()):this.legendHelpers.appendToForeignObject(),"bottom"===i.legend.position||"top"===i.legend.position?this.legendAlignHorizontal():"right"!==i.legend.position&&"left"!==i.legend.position||this.legendAlignVertical()}}},{key:"drawLegends",value:function(){var t=this,e=this.w,i=e.config.legend.fontFamily,a=e.globals.seriesNames,s=e.globals.colors.slice();if("heatmap"===e.config.chart.type){var n=e.config.plotOptions.heatmap.colorScale.ranges;a=n.map((function(t){return t.name?t.name:t.from+" - "+t.to})),s=n.map((function(t){return t.color}))}else this.isBarsDistributed&&(a=e.globals.labels.slice());e.config.legend.customLegendItems.length&&(a=e.config.legend.customLegendItems);for(var o=e.globals.legendFormatter,l=e.config.legend.inverseOrder,c=l?a.length-1:0;l?c>=0:c<=a.length-1;l?c--:c++){var h=o(a[c],{seriesIndex:c,w:e}),d=!1,u=!1;if(e.globals.collapsedSeries.length>0)for(var g=0;g0)for(var p=0;p0?l-10:0)+(c>0?c-10:0)}a.style.position="absolute",r=r+t+i.config.legend.offsetX,n=n+e+i.config.legend.offsetY,a.style.left=r+"px",a.style.top=n+"px","bottom"===i.config.legend.position?(a.style.top="auto",a.style.bottom=5-i.config.legend.offsetY+"px"):"right"===i.config.legend.position&&(a.style.left="auto",a.style.right=25+i.config.legend.offsetX+"px"),["width","height"].forEach((function(t){a.style[t]&&(a.style[t]=parseInt(i.config.legend[t],10)+"px")}))}},{key:"legendAlignHorizontal",value:function(){var t=this.w;t.globals.dom.baseEl.querySelector(".apexcharts-legend").style.right=0;var e=this.legendHelpers.getLegendBBox(),i=new ce(this.ctx),a=i.dimHelpers.getTitleSubtitleCoords("title"),s=i.dimHelpers.getTitleSubtitleCoords("subtitle"),r=0;"bottom"===t.config.legend.position?r=-e.clwh/1.8:"top"===t.config.legend.position&&(r=a.height+s.height+t.config.title.margin+t.config.subtitle.margin-10),this.setLegendWrapXY(20,r)}},{key:"legendAlignVertical",value:function(){var t=this.w,e=this.legendHelpers.getLegendBBox(),i=0;"left"===t.config.legend.position&&(i=20),"right"===t.config.legend.position&&(i=t.globals.svgWidth-e.clww-10),this.setLegendWrapXY(i,20)}},{key:"onLegendHovered",value:function(t){var e=this.w,i=t.target.classList.contains("apexcharts-legend-text")||t.target.classList.contains("apexcharts-legend-marker");if("heatmap"===e.config.chart.type||this.isBarsDistributed){if(i){var a=parseInt(t.target.getAttribute("rel"),10)-1;this.ctx.events.fireEvent("legendHover",[this.ctx,a,this.w]),new B(this.ctx).highlightRangeInSeries(t,t.target)}}else!t.target.classList.contains("apexcharts-inactive-legend")&&i&&new B(this.ctx).toggleSeriesOnHover(t,t.target)}},{key:"onLegendClick",value:function(t){var e=this.w;if(!e.config.legend.customLegendItems.length&&(t.target.classList.contains("apexcharts-legend-text")||t.target.classList.contains("apexcharts-legend-marker"))){var i=parseInt(t.target.getAttribute("rel"),10)-1,a="true"===t.target.getAttribute("data:collapsed"),s=this.w.config.chart.events.legendClick;"function"==typeof s&&s(this.ctx,i,this.w),this.ctx.events.fireEvent("legendClick",[this.ctx,i,this.w]);var r=this.w.config.legend.markers.onClick;"function"==typeof r&&t.target.classList.contains("apexcharts-legend-marker")&&(r(this.ctx,i,this.w),this.ctx.events.fireEvent("legendMarkerClick",[this.ctx,i,this.w])),"treemap"!==e.config.chart.type&&"heatmap"!==e.config.chart.type&&!this.isBarsDistributed&&e.config.legend.onItemClick.toggleDataSeries&&this.legendHelpers.toggleDataSeries(i,a)}}}])&&ue(e.prototype,i),t}();var fe=i(798),pe=i.n(fe),xe=i(688),be=i.n(xe),ve=i(149),me=i.n(ve),ye=i(323),we=i.n(ye),ke=i(686),Ae=i.n(ke),Se=i(618),Ce=i.n(Se),Pe=i(355),Le=i.n(Pe);function Te(t,e){for(var i=0;i0&&e.height>0&&this.slDraggableRect.selectize({points:"l, r",pointSize:8,pointType:"rect"}).resize({constraint:{minX:0,minY:0,maxX:t.globals.gridWidth,maxY:t.globals.gridHeight}}).on("resizing",this.selectionDragging.bind(this,"resizing"))}}},{key:"preselectedSelection",value:function(){var t=this.w,e=this.xyRatios;if(!t.globals.zoomEnabled)if(void 0!==t.globals.selection&&null!==t.globals.selection)this.drawSelectionRect(t.globals.selection);else if(void 0!==t.config.chart.selection.xaxis.min&&void 0!==t.config.chart.selection.xaxis.max){var i=(t.config.chart.selection.xaxis.min-t.globals.minX)/e.xRatio,a={x:i,y:0,width:t.globals.gridWidth-(t.globals.maxX-t.config.chart.selection.xaxis.max)/e.xRatio-i,height:t.globals.gridHeight,translateX:0,translateY:0,selectionEnabled:!0};this.drawSelectionRect(a),this.makeSelectionRectDraggable(),"function"==typeof t.config.chart.events.selection&&t.config.chart.events.selection(this.ctx,{xaxis:{min:t.config.chart.selection.xaxis.min,max:t.config.chart.selection.xaxis.max},yaxis:{}})}}},{key:"drawSelectionRect",value:function(t){var e=t.x,i=t.y,a=t.width,s=t.height,r=t.translateX,n=void 0===r?0:r,o=t.translateY,l=void 0===o?0:o,c=this.w,h=this.zoomRect,d=this.selectionRect;if(this.dragged||null!==c.globals.selection){var u={transform:"translate("+n+", "+l+")"};c.globals.zoomEnabled&&this.dragged&&(a<0&&(a=1),h.attr({x:e,y:i,width:a,height:s,fill:c.config.chart.zoom.zoomedArea.fill.color,"fill-opacity":c.config.chart.zoom.zoomedArea.fill.opacity,stroke:c.config.chart.zoom.zoomedArea.stroke.color,"stroke-width":c.config.chart.zoom.zoomedArea.stroke.width,"stroke-opacity":c.config.chart.zoom.zoomedArea.stroke.opacity}),f.setAttrs(h.node,u)),c.globals.selectionEnabled&&(d.attr({x:e,y:i,width:a>0?a:0,height:s>0?s:0,fill:c.config.chart.selection.fill.color,"fill-opacity":c.config.chart.selection.fill.opacity,stroke:c.config.chart.selection.stroke.color,"stroke-width":c.config.chart.selection.stroke.width,"stroke-dasharray":c.config.chart.selection.stroke.dashArray,"stroke-opacity":c.config.chart.selection.stroke.opacity}),f.setAttrs(d.node,u))}}},{key:"hideSelectionRect",value:function(t){t&&t.attr({x:0,y:0,width:0,height:0})}},{key:"selectionDrawing",value:function(t){var e,i=t.context,a=t.zoomtype,s=this.w,r=i,n=this.gridRect.getBoundingClientRect(),o=r.startX-1,l=r.startY,c=!1,h=!1,d=r.clientX-n.left-o,u=r.clientY-n.top-l;return Math.abs(d+o)>s.globals.gridWidth?d=s.globals.gridWidth-o:r.clientX-n.left<0&&(d=o),o>r.clientX-n.left&&(c=!0,d=Math.abs(d)),l>r.clientY-n.top&&(h=!0,u=Math.abs(u)),e="x"===a?{x:c?o-d:o,y:0,width:d,height:s.globals.gridHeight}:"y"===a?{x:0,y:h?l-u:l,width:s.globals.gridWidth,height:u}:{x:c?o-d:o,y:h?l-u:l,width:d,height:u},r.drawSelectionRect(e),r.selectionDragging("resizing"),e}},{key:"selectionDragging",value:function(t,e){var i=this,a=this.w,s=this.xyRatios,r=this.selectionRect,n=0;"resizing"===t&&(n=30);var o=function(t){return parseFloat(r.node.getAttribute(t))},l={x:o("x"),y:o("y"),width:o("width"),height:o("height")};a.globals.selection=l,"function"==typeof a.config.chart.events.selection&&a.globals.selectionEnabled&&(clearTimeout(this.w.globals.selectionResizeTimer),this.w.globals.selectionResizeTimer=window.setTimeout((function(){var t=i.gridRect.getBoundingClientRect(),e=r.node.getBoundingClientRect(),n={xaxis:{min:a.globals.xAxisScale.niceMin+(e.left-t.left)*s.xRatio,max:a.globals.xAxisScale.niceMin+(e.right-t.left)*s.xRatio},yaxis:{min:a.globals.yAxisScale[0].niceMin+(t.bottom-e.bottom)*s.yRatio[0],max:a.globals.yAxisScale[0].niceMax-(e.top-t.top)*s.yRatio[0]}};a.config.chart.events.selection(i.ctx,n),a.config.chart.brush.enabled&&void 0!==a.config.chart.events.brushScrolled&&a.config.chart.events.brushScrolled(i.ctx,n)}),n))}},{key:"selectionDrawn",value:function(t){var e=t.context,i=t.zoomtype,a=this.w,s=e,n=this.xyRatios,o=this.ctx.toolbar;if(s.startX>s.endX){var l=s.startX;s.startX=s.endX,s.endX=l}if(s.startY>s.endY){var c=s.startY;s.startY=s.endY,s.endY=c}var h=void 0,d=void 0;a.globals.isTimelineBar?(h=a.globals.yAxisScale[0].niceMin+s.startX*n.invertedYRatio,d=a.globals.yAxisScale[0].niceMin+s.endX*n.invertedYRatio):(h=a.globals.xAxisScale.niceMin+s.startX*n.xRatio,d=a.globals.xAxisScale.niceMin+s.endX*n.xRatio);var u=[],g=[];if(a.config.yaxis.forEach((function(t,e){u.push(a.globals.yAxisScale[e].niceMax-n.yRatio[e]*s.startY),g.push(a.globals.yAxisScale[e].niceMax-n.yRatio[e]*s.endY)})),s.dragged&&(s.dragX>10||s.dragY>10)&&h!==d)if(a.globals.zoomEnabled){var f=r.clone(a.globals.initialConfig.yaxis),p=r.clone(a.globals.initialConfig.xaxis);if(a.globals.zoomed=!0,a.config.xaxis.convertedCatToNumeric&&(h=Math.floor(h),d=Math.floor(d),h<1&&(h=1,d=a.globals.dataPoints),d-h<2&&(d=h+1)),"xy"!==i&&"x"!==i||(p={min:h,max:d}),"xy"!==i&&"y"!==i||f.forEach((function(t,e){f[e].min=g[e],f[e].max=u[e]})),a.config.chart.zoom.autoScaleYaxis){var x=new Xt(s.ctx);f=x.autoScaleY(s.ctx,f,{xaxis:p})}if(o){var b=o.getBeforeZoomRange(p,f);b&&(p=b.xaxis?b.xaxis:p,f=b.yaxis?b.yaxis:f)}var v={xaxis:p};a.config.chart.group||(v.yaxis=f),s.ctx.updateHelpers._updateOptions(v,!1,s.w.config.chart.animations.dynamicAnimation.enabled),"function"==typeof a.config.chart.events.zoomed&&o.zoomCallback(p,f)}else if(a.globals.selectionEnabled){var m,y=null;m={min:h,max:d},"xy"!==i&&"y"!==i||(y=r.clone(a.config.yaxis)).forEach((function(t,e){y[e].min=g[e],y[e].max=u[e]})),a.globals.selection=s.selection,"function"==typeof a.config.chart.events.selection&&a.config.chart.events.selection(s.ctx,{xaxis:m,yaxis:y})}}},{key:"panDragging",value:function(t){var e=t.context,i=this.w,a=e;if(void 0!==i.globals.lastClientPosition.x){var s=i.globals.lastClientPosition.x-a.clientX,r=i.globals.lastClientPosition.y-a.clientY;Math.abs(s)>Math.abs(r)&&s>0?this.moveDirection="left":Math.abs(s)>Math.abs(r)&&s<0?this.moveDirection="right":Math.abs(r)>Math.abs(s)&&r>0?this.moveDirection="up":Math.abs(r)>Math.abs(s)&&r<0&&(this.moveDirection="down")}i.globals.lastClientPosition={x:a.clientX,y:a.clientY};var n=i.globals.isTimelineBar?i.globals.minY:i.globals.minX,o=i.globals.isTimelineBar?i.globals.maxY:i.globals.maxX;i.config.xaxis.convertedCatToNumeric||a.panScrolled(n,o)}},{key:"delayedPanScrolled",value:function(){var t=this.w,e=t.globals.minX,i=t.globals.maxX,a=(t.globals.maxX-t.globals.minX)/2;"left"===this.moveDirection?(e=t.globals.minX+a,i=t.globals.maxX+a):"right"===this.moveDirection&&(e=t.globals.minX-a,i=t.globals.maxX-a),e=Math.floor(e),i=Math.floor(i),this.updateScrolledChart({xaxis:{min:e,max:i}},e,i)}},{key:"panScrolled",value:function(t,e){var i=this.w,a=this.xyRatios,s=r.clone(i.globals.initialConfig.yaxis),n=a.xRatio,o=i.globals.minX,l=i.globals.maxX;i.globals.isTimelineBar&&(n=a.invertedYRatio,o=i.globals.minY,l=i.globals.maxY),"left"===this.moveDirection?(t=o+i.globals.gridWidth/15*n,e=l+i.globals.gridWidth/15*n):"right"===this.moveDirection&&(t=o-i.globals.gridWidth/15*n,e=l-i.globals.gridWidth/15*n),i.globals.isTimelineBar||(ti.globals.initialMaxX)&&(t=o,e=l);var c={min:t,max:e};i.config.chart.zoom.autoScaleYaxis&&(s=new Xt(this.ctx).autoScaleY(this.ctx,s,{xaxis:c}));var h={xaxis:{min:t,max:e}};i.config.chart.group||(h.yaxis=s),this.updateScrolledChart(h,t,e)}},{key:"updateScrolledChart",value:function(t,e,i){var a=this.w;this.ctx.updateHelpers._updateOptions(t,!1,!1),"function"==typeof a.config.chart.events.scrolled&&a.config.chart.events.scrolled(this.ctx,{xaxis:{min:e,max:i}})}}])&&Ie(e.prototype,i),o}(Oe);function Fe(t){return function(t){if(Array.isArray(t))return De(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return De(t,e);var i=Object.prototype.toString.call(t).slice(8,-1);return"Object"===i&&t.constructor&&(i=t.constructor.name),"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?De(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function De(t,e){(null==e||e>t.length)&&(e=t.length);for(var i=0,a=new Array(e);in.globals.gridWidth||f>n.globals.gridHeight?(e.classList.remove("hovering-zoom"),e.classList.remove("hovering-pan")):n.globals.zoomEnabled?(e.classList.remove("hovering-pan"),e.classList.add("hovering-zoom")):n.globals.panEnabled&&(e.classList.remove("hovering-zoom"),e.classList.add("hovering-pan"));var p=Math.round(g/c),x=Math.floor(f/h);u&&!n.config.xaxis.convertedCatToNumeric&&(p=Math.ceil(g/c),p-=1);for(var b,v=null,m=null,y=[],w=0;w1?r=this.getFirstActiveXArray(i):n=0;var l=a[r][0],c=i[r][0],h=Math.abs(t-c),d=Math.abs(e-l),u=d+h;return a.map((function(s,r){s.map((function(s,l){var c=Math.abs(e-a[r][l]),g=Math.abs(t-i[r][l]),f=g+c;f0?e:-1})),a=0;a0)for(var a=0;a0}},{key:"getElBars",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-boxPlot-series, .apexcharts-rangebar-series")}},{key:"hasBars",value:function(){return this.getElBars().length>0}},{key:"getHoverMarkerSize",value:function(t){var e=this.w,i=e.config.markers.hover.size;return void 0===i&&(i=e.globals.markers.size[t]+e.config.markers.hover.sizeOffset),i}},{key:"toggleAllTooltipSeriesGroups",value:function(t){var e=this.w,i=this.ttCtx;0===i.allTooltipSeriesGroups.length&&(i.allTooltipSeriesGroups=e.globals.dom.baseEl.querySelectorAll(".apexcharts-tooltip-series-group"));for(var a=i.allTooltipSeriesGroups,s=0;s
').concat(i.attrs.name,""),e+="
".concat(i.val,"
")})),m.innerHTML=t+"",y.innerHTML=e+""};o?c.globals.seriesGoals[e][i]&&Array.isArray(c.globals.seriesGoals[e][i])?w():(m.innerHTML="",y.innerHTML=""):w()}else m.innerHTML="",y.innerHTML="";null!==p&&(a[e].querySelector(".apexcharts-tooltip-text-z-label").innerHTML=c.config.tooltip.z.title,a[e].querySelector(".apexcharts-tooltip-text-z-value").innerHTML=void 0!==p?p:""),o&&x[0]&&(null==d||c.globals.collapsedSeriesIndices.indexOf(e)>-1?x[0].parentNode.style.display="none":x[0].parentNode.style.display=c.config.tooltip.items.display)}},{key:"toggleActiveInactiveSeries",value:function(t){var e=this.w;if(t)this.tooltipUtil.toggleAllTooltipSeriesGroups("enable");else{this.tooltipUtil.toggleAllTooltipSeriesGroups("disable");var i=e.globals.dom.baseEl.querySelector(".apexcharts-tooltip-series-group");i&&(i.classList.add("apexcharts-active"),i.style.display=e.config.tooltip.items.display)}}},{key:"getValuesToPrint",value:function(t){var e=t.i,i=t.j,a=this.w,s=this.ctx.series.filteredSeriesX(),r="",n="",o=null,l=null,c={series:a.globals.series,seriesIndex:e,dataPointIndex:i,w:a},h=a.globals.ttZFormatter;null===i?l=a.globals.series[e]:a.globals.isXNumeric&&"treemap"!==a.config.chart.type?(r=s[e][i],0===s[e].length&&(r=s[this.tooltipUtil.getFirstActiveXArray(s)][i])):r=void 0!==a.globals.labels[i]?a.globals.labels[i]:"";var d=r;return r=a.globals.isXNumeric&&"datetime"===a.config.xaxis.type?new St(this.ctx).xLabelFormat(a.globals.ttKeyFormatter,d,d,{i:void 0,dateFormatter:new et(this.ctx).formatDate,w:this.w}):a.globals.isBarHorizontal?a.globals.yLabelFormatters[0](d,c):a.globals.xLabelFormatter(d,c),void 0!==a.config.tooltip.x.formatter&&(r=a.globals.ttKeyFormatter(d,c)),a.globals.seriesZ.length>0&&a.globals.seriesZ[e].length>0&&(o=h(a.globals.seriesZ[e][i],a)),n="function"==typeof a.config.xaxis.tooltip.formatter?a.globals.xaxisTooltipFormatter(d,c):r,{val:Array.isArray(l)?l.join(" "):l,xVal:Array.isArray(r)?r.join(" "):r,xAxisTTVal:Array.isArray(n)?n.join(" "):n,zVal:o}}},{key:"handleCustomTooltip",value:function(t){var e=t.i,i=t.j,a=t.y1,s=t.y2,r=t.w,n=this.ttCtx.getElTooltip(),o=r.config.tooltip.custom;Array.isArray(o)&&o[e]&&(o=o[e]),n.innerHTML=o({ctx:this.ctx,series:r.globals.series,seriesIndex:e,dataPointIndex:i,y1:a,y2:s,w:r})}}])&&Be(e.prototype,i),t}();function _e(t,e){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:null,i=this.ttCtx,a=this.w,s=i.getElXCrosshairs(),r=t-i.xcrosshairsWidth/2,n=a.globals.labels.slice().length;if(null!==e&&(r=a.globals.gridWidth/n*e),null!==s&&(s.setAttribute("x",r),s.setAttribute("x1",r),s.setAttribute("x2",r),s.setAttribute("y2",a.globals.gridHeight),s.classList.add("apexcharts-active")),r<0&&(r=0),r>a.globals.gridWidth&&(r=a.globals.gridWidth),i.blxaxisTooltip){var o=r;"tickWidth"!==a.config.xaxis.crosshairs.width&&"barWidth"!==a.config.xaxis.crosshairs.width||(o=r+i.xcrosshairsWidth/2),this.moveXAxisTooltip(o)}}},{key:"moveYCrosshairs",value:function(t){var e=this.ttCtx;null!==e.ycrosshairs&&f.setAttrs(e.ycrosshairs,{y1:t,y2:t}),null!==e.ycrosshairsHidden&&f.setAttrs(e.ycrosshairsHidden,{y1:t,y2:t})}},{key:"moveXAxisTooltip",value:function(t){var e=this.w,i=this.ttCtx;if(null!==i.xaxisTooltip){i.xaxisTooltip.classList.add("apexcharts-active");var a,s=i.xaxisOffY+e.config.xaxis.tooltip.offsetY+e.globals.translateY+1+e.config.xaxis.offsetY;t-=i.xaxisTooltip.getBoundingClientRect().width/2,isNaN(t)||(t+=e.globals.translateX,a=new f(this.ctx).getTextRects(i.xaxisTooltipText.innerHTML),i.xaxisTooltipText.style.minWidth=a.width+"px",i.xaxisTooltip.style.left=t+"px",i.xaxisTooltip.style.top=s+"px")}}},{key:"moveYAxisTooltip",value:function(t){var e=this.w,i=this.ttCtx;null===i.yaxisTTEls&&(i.yaxisTTEls=e.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));var a=parseInt(i.ycrosshairsHidden.getAttribute("y1"),10),s=e.globals.translateY+a,r=i.yaxisTTEls[t].getBoundingClientRect().height,n=e.globals.translateYAxisX[t]-2;e.config.yaxis[t].opposite&&(n-=26),s-=r/2,-1===e.globals.ignoreYAxisIndexes.indexOf(t)?(i.yaxisTTEls[t].classList.add("apexcharts-active"),i.yaxisTTEls[t].style.top=s+"px",i.yaxisTTEls[t].style.left=n+e.config.yaxis[t].tooltip.offsetX+"px"):i.yaxisTTEls[t].classList.remove("apexcharts-active")}},{key:"moveTooltip",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=this.w,s=this.ttCtx,r=s.getElTooltip(),n=s.tooltipRect,o=null!==i?parseFloat(i):1,l=parseFloat(t)+o+5,c=parseFloat(e)+o/2;if(l>a.globals.gridWidth/2&&(l=l-n.ttWidth-o-15),l>a.globals.gridWidth-n.ttWidth-10&&(l=a.globals.gridWidth-n.ttWidth),l<-20&&(l=-20),a.config.tooltip.followCursor){var h=s.getElGrid(),d=h.getBoundingClientRect();c=s.e.clientY+a.globals.translateY-d.top-n.ttHeight/2}else a.globals.isBarHorizontal?c-=n.ttHeight:(n.ttHeight/2+c>a.globals.gridHeight&&(c=a.globals.gridHeight-n.ttHeight+a.globals.translateY),c<0&&(c=0));isNaN(l)||(l+=a.globals.translateX,r.style.left=l+"px",r.style.top=c+"px")}},{key:"moveMarkers",value:function(t,e){var i=this.w,a=this.ttCtx;if(i.globals.markers.size[t]>0)for(var s=i.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(t,"'] .apexcharts-marker")),r=0;r0&&(c.setAttribute("r",o),c.setAttribute("cx",i),c.setAttribute("cy",a)),this.moveXCrosshairs(i),r.fixedTooltip||this.moveTooltip(i,a,o)}}},{key:"moveDynamicPointsOnHover",value:function(t){var e,i=this.ttCtx,a=i.w,s=0,r=0,n=a.globals.pointsArray;e=new B(this.ctx).getActiveConfigSeriesIndex(!0);var o=i.tooltipUtil.getHoverMarkerSize(e);n[e]&&(s=n[e][t][0],r=n[e][t][1]);var l=i.tooltipUtil.getAllMarkers();if(null!==l)for(var c=0;c0?(l[c]&&l[c].setAttribute("r",o),l[c]&&l[c].setAttribute("cy",d)):l[c]&&l[c].setAttribute("r",0)}}if(this.moveXCrosshairs(s),!i.fixedTooltip){var u=r||a.globals.gridHeight;this.moveTooltip(s,u,o)}}},{key:"moveStickyTooltipOverBars",value:function(t){var e=this.w,i=this.ttCtx,a=e.globals.columnSeries?e.globals.columnSeries.length:e.globals.series.length,s=a>=2&&a%2==0?Math.floor(a/2):Math.floor(a/2)+1;e.globals.isBarHorizontal&&(s=new B(this.ctx).getActiveConfigSeriesIndex(!1,"desc")+1);var r=e.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(s,"'] path[j='").concat(t,"'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(s,"'] path[j='").concat(t,"'], .apexcharts-boxPlot-series .apexcharts-series[rel='").concat(s,"'] path[j='").concat(t,"'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(s,"'] path[j='").concat(t,"']")),n=r?parseFloat(r.getAttribute("cx")):0,o=r?parseFloat(r.getAttribute("cy")):0,l=r?parseFloat(r.getAttribute("barWidth")):0,c=r?parseFloat(r.getAttribute("barHeight")):0,h=i.getElGrid().getBoundingClientRect();if(e.globals.isXNumeric?(n-=a%2!=0?l/2:0,r&&(r.classList.contains("apexcharts-candlestick-area")||r.classList.contains("apexcharts-boxPlot-area"))&&e.globals.comboCharts&&(n-=l/2)):e.globals.isBarHorizontal||(n=i.xAxisTicksPositions[t-1]+i.dataPointsDividedWidth/2,isNaN(n)&&(n=i.xAxisTicksPositions[t]-i.dataPointsDividedWidth/2)),e.globals.isBarHorizontal?o+=c/3:o=i.e.clientY-h.top-i.tooltipRect.ttHeight/2,e.globals.isBarHorizontal||this.moveXCrosshairs(n),!i.fixedTooltip){var d=o||e.globals.gridHeight;this.moveTooltip(n,d)}}}])&&_e(e.prototype,i),t}();function Ue(t,e){(null==e||e>t.length)&&(e=t.length);for(var i=0,a=new Array(e);i2&&void 0!==arguments[2]?arguments[2]:null,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,s=this.w;"bubble"!==s.config.chart.type&&this.newPointSize(t,e);var r=e.getAttribute("cx"),n=e.getAttribute("cy");if(null!==i&&null!==a&&(r=i,n=a),this.tooltipPosition.moveXCrosshairs(r),!this.fixedTooltip){if("radar"===s.config.chart.type){var o=this.ttCtx.getElGrid(),l=o.getBoundingClientRect();r=this.ttCtx.e.clientX-l.left}this.tooltipPosition.moveTooltip(r,n,s.config.markers.hover.size)}}},{key:"enlargePoints",value:function(t){for(var e=this.w,i=this,a=this.ttCtx,s=t,r=e.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),n=e.config.markers.hover.size,o=0;o=0?t[e].setAttribute("r",i):t[e].setAttribute("r",0)}}}])&&qe(e.prototype,i),t}();function $e(t,e){for(var i=0;io.globals.gridWidth/2&&(a=h-n.tooltipRect.ttWidth/2+u),n.w.config.tooltip.followCursor){var f=o.globals.dom.elWrap.getBoundingClientRect();a=o.globals.clientX-f.left-n.tooltipRect.ttWidth/2,s=o.globals.clientY-f.top-n.tooltipRect.ttHeight-5}}return{x:a,y:s}}},{key:"handleMarkerTooltip",value:function(t){var e,i,a=t.e,s=t.opt,n=t.x,o=t.y,l=this.w,c=this.ttCtx;if(a.target.classList.contains("apexcharts-marker")){var h=parseInt(s.paths.getAttribute("cx"),10),d=parseInt(s.paths.getAttribute("cy"),10),u=parseFloat(s.paths.getAttribute("val"));if(i=parseInt(s.paths.getAttribute("rel"),10),e=parseInt(s.paths.parentNode.parentNode.parentNode.getAttribute("rel"),10)-1,c.intersect){var g=r.findAncestor(s.paths,"apexcharts-series");g&&(e=parseInt(g.getAttribute("data:realIndex"),10))}if(c.tooltipLabels.drawSeriesTexts({ttItems:s.ttItems,i:e,j:i,shared:!c.showOnIntersect&&l.config.tooltip.shared,e:a}),"mouseup"===a.type&&c.markerClick(a,e,i),l.globals.capturedSeriesIndex=e,l.globals.capturedDataPointIndex=i,n=h,o=d+l.globals.translateY-1.4*c.tooltipRect.ttHeight,c.w.config.tooltip.followCursor){var f=c.getElGrid().getBoundingClientRect();o=c.e.clientY+l.globals.translateY-f.top}u<0&&(o=d),c.marker.enlargeCurrentPoint(i,s.paths,n,o)}return{x:n,y:o}}},{key:"handleBarTooltip",value:function(t){var e,i,a=t.e,s=t.opt,r=this.w,n=this.ttCtx,o=n.getElTooltip(),l=0,c=0,h=0,d=this.getBarTooltipXY({e:a,opt:s});e=d.i;var u=d.barHeight,g=d.j;r.globals.capturedSeriesIndex=e,r.globals.capturedDataPointIndex=g,r.globals.isBarHorizontal&&n.tooltipUtil.hasBars()||!r.config.tooltip.shared?(c=d.x,h=d.y,i=Array.isArray(r.config.stroke.width)?r.config.stroke.width[e]:r.config.stroke.width,l=c):r.globals.comboCharts||r.config.tooltip.shared||(l/=2),isNaN(h)?h=r.globals.svgHeight-n.tooltipRect.ttHeight:h<0&&(h=0);var f=parseInt(s.paths.parentNode.getAttribute("data:realIndex"),10),p=r.globals.isMultipleYAxis?r.config.yaxis[f]&&r.config.yaxis[f].reversed:r.config.yaxis[0].reversed;if(c+n.tooltipRect.ttWidth>r.globals.gridWidth&&!p?c-=n.tooltipRect.ttWidth:c<0&&(c=0),n.w.config.tooltip.followCursor){var x=n.getElGrid().getBoundingClientRect();h=n.e.clientY-x.top}null===n.tooltip&&(n.tooltip=r.globals.dom.baseEl.querySelector(".apexcharts-tooltip")),r.config.tooltip.shared||(r.globals.comboBarCount>0?n.tooltipPosition.moveXCrosshairs(l+i/2):n.tooltipPosition.moveXCrosshairs(l)),!n.fixedTooltip&&(!r.config.tooltip.shared||r.globals.isBarHorizontal&&n.tooltipUtil.hasBars())&&(p&&(c-=n.tooltipRect.ttWidth)<0&&(c=0),o.style.left=c+r.globals.translateX+"px",!p||r.globals.isBarHorizontal&&n.tooltipUtil.hasBars()||(h=h+u-2*(r.globals.series[e][g]<0?u:0)),n.tooltipRect.ttHeight+h>r.globals.gridHeight?(h=r.globals.gridHeight-n.tooltipRect.ttHeight+r.globals.translateY,o.style.top=h+"px"):o.style.top=h+r.globals.translateY-n.tooltipRect.ttHeight/2+"px")}},{key:"getBarTooltipXY",value:function(t){var e=t.e,i=t.opt,a=this.w,s=null,r=this.ttCtx,n=0,o=0,l=0,c=0,h=0,d=e.target.classList;if(d.contains("apexcharts-bar-area")||d.contains("apexcharts-candlestick-area")||d.contains("apexcharts-boxPlot-area")||d.contains("apexcharts-rangebar-area")){var u=e.target,g=u.getBoundingClientRect(),f=i.elGrid.getBoundingClientRect(),p=g.height;h=g.height;var x=g.width,b=parseInt(u.getAttribute("cx"),10),v=parseInt(u.getAttribute("cy"),10);c=parseFloat(u.getAttribute("barWidth"));var m="touchmove"===e.type?e.touches[0].clientX:e.clientX;s=parseInt(u.getAttribute("j"),10),n=parseInt(u.parentNode.getAttribute("rel"),10)-1;var y=u.getAttribute("data-range-y1"),w=u.getAttribute("data-range-y2");a.globals.comboCharts&&(n=parseInt(u.parentNode.getAttribute("data:realIndex"),10)),r.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:n,j:s,y1:y?parseInt(y,10):null,y2:w?parseInt(w,10):null,shared:!r.showOnIntersect&&a.config.tooltip.shared,e}),a.config.tooltip.followCursor?a.globals.isBarHorizontal?(o=m-f.left+15,l=v-r.dataPointsDividedHeight+p/2-r.tooltipRect.ttHeight/2):(o=a.globals.isXNumeric?b-x/2:b-r.dataPointsDividedWidth+x/2,l=e.clientY-f.top-r.tooltipRect.ttHeight/2-15):a.globals.isBarHorizontal?((o=b)0&&i.setAttribute("width",e.xcrosshairsWidth)}},{key:"handleYCrosshair",value:function(){var t=this.w,e=this.ttCtx;e.ycrosshairs=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs"),e.ycrosshairsHidden=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs-hidden")}},{key:"drawYaxisTooltipText",value:function(t,e,i){var a=this.ttCtx,s=this.w,r=s.globals.yLabelFormatters[t];if(a.yaxisTooltips[t]){var n=a.getElGrid().getBoundingClientRect(),o=(e-n.top)*i.yRatio[t],l=s.globals.maxYArr[t]-s.globals.minYArr[t],c=s.globals.minYArr[t]+(l-o);a.tooltipPosition.moveYCrosshairs(e-n.top),a.yaxisTooltipText[t].innerHTML=r(c),a.tooltipPosition.moveYAxisTooltip(t)}}}])&&Qe(e.prototype,i),t}();function ti(t,e){for(var i=0;i0&&this.addPathsEventListeners(g,h),this.tooltipUtil.hasBars()&&!this.tConfig.shared&&this.addDatapointEventsListeners(h)}}},{key:"drawFixedTooltipRect",value:function(){var t=this.w,e=this.getElTooltip(),i=e.getBoundingClientRect(),a=i.width+10,s=i.height+10,r=this.tConfig.fixed.offsetX,n=this.tConfig.fixed.offsetY,o=this.tConfig.fixed.position.toLowerCase();return o.indexOf("right")>-1&&(r=r+t.globals.svgWidth-a+10),o.indexOf("bottom")>-1&&(n=n+t.globals.svgHeight-s-10),e.style.left=r+"px",e.style.top=n+"px",{x:r,y:n,ttWidth:a,ttHeight:s}}},{key:"addDatapointEventsListeners",value:function(t){var e=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers .apexcharts-marker, .apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-boxPlot-area, .apexcharts-rangebar-area");this.addPathsEventListeners(e,t)}},{key:"addPathsEventListeners",value:function(t,e){for(var i=this,a=function(a){var s={paths:t[a],tooltipEl:e.tooltipEl,tooltipY:e.tooltipY,tooltipX:e.tooltipX,elGrid:e.elGrid,hoverArea:e.hoverArea,ttItems:e.ttItems};["mousemove","mouseup","touchmove","mouseout","touchend"].map((function(e){return t[a].addEventListener(e,i.seriesHover.bind(i,s),{capture:!1,passive:!0})}))},s=0;sn.top+n.height)this.handleMouseOut(s);else{if(Array.isArray(this.tConfig.enabledOnSeries)&&!r.config.tooltip.shared){var c=parseInt(s.paths.getAttribute("index"),10);if(this.tConfig.enabledOnSeries.indexOf(c)<0)return void this.handleMouseOut(s)}var h=this.getElTooltip(),d=this.getElXCrosshairs(),u=r.globals.xyCharts||"bar"===r.config.chart.type&&!r.globals.isBarHorizontal&&this.tooltipUtil.hasBars()&&this.tConfig.shared||r.globals.comboCharts&&this.tooltipUtil.hasBars();if("mousemove"===a.type||"touchmove"===a.type||"mouseup"===a.type){null!==d&&d.classList.add("apexcharts-active");var g=this.yaxisTooltips.filter((function(t){return!0===t}));if(null!==this.ycrosshairs&&g.length&&this.ycrosshairs.classList.add("apexcharts-active"),u&&!this.showOnIntersect)this.handleStickyTooltip(a,o,l,s);else if("heatmap"===r.config.chart.type||"treemap"===r.config.chart.type){var f=this.intersect.handleHeatTreeTooltip({e:a,opt:s,x:e,y:i,type:r.config.chart.type});e=f.x,i=f.y,h.style.left=e+"px",h.style.top=i+"px"}else this.tooltipUtil.hasBars()&&this.intersect.handleBarTooltip({e:a,opt:s}),this.tooltipUtil.hasMarkers()&&this.intersect.handleMarkerTooltip({e:a,opt:s,x:e,y:i});if(this.yaxisTooltips.length)for(var p=0;ps.globals.gridWidth?this.handleMouseOut(a):null!==o?this.handleStickyCapturedSeries(t,o,a,n):(this.tooltipUtil.isXoverlap(n)||s.globals.isBarHorizontal)&&this.create(t,this,0,n,a.ttItems)}},{key:"handleStickyCapturedSeries",value:function(t,e,i,a){var s=this.w;null===s.globals.series[e][a]?this.handleMouseOut(i):void 0!==s.globals.series[e][a]?this.tConfig.shared&&this.tooltipUtil.isXoverlap(a)&&this.tooltipUtil.isInitialSeriesSameLen()?this.create(t,this,e,a,i.ttItems):this.create(t,this,e,a,i.ttItems,!1):this.tooltipUtil.isXoverlap(a)&&this.create(t,this,0,a,i.ttItems)}},{key:"deactivateHoverFilter",value:function(){for(var t=this.w,e=new f(this.ctx),i=t.globals.dom.Paper.select(".apexcharts-bar-area"),a=0;a5&&void 0!==arguments[5]?arguments[5]:null,n=this.w,o=e;"mouseup"===t.type&&this.markerClick(t,i,a),null===r&&(r=this.tConfig.shared);var l=this.tooltipUtil.hasMarkers(),c=this.tooltipUtil.getElBars();if(n.config.legend.tooltipHoverFormatter){var h=n.config.legend.tooltipHoverFormatter,d=Array.from(this.legendLabels);d.forEach((function(t){var e=t.getAttribute("data:default-text");t.innerHTML=decodeURIComponent(e)}));for(var u=0;u0?o.marker.enlargePoints(a):o.tooltipPosition.moveDynamicPointsOnHover(a)),this.tooltipUtil.hasBars()&&(this.barSeriesHeight=this.tooltipUtil.getBarsHeight(c),this.barSeriesHeight>0)){var v=new f(this.ctx),m=n.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(a,"']"));this.deactivateHoverFilter(),this.tooltipPosition.moveStickyTooltipOverBars(a);for(var y=0;y0&&(this.totalItems+=t[n].length);for(var o=this.graphics.group({class:"apexcharts-bar-series apexcharts-plot-series"}),l=0,c=0,h=function(s,n){var h=void 0,d=void 0,u=void 0,g=void 0,f=[],p=[],x=a.globals.comboCharts?e[s]:s;i.yRatio.length>1&&(i.yaxisIndex=x),i.isReversed=a.config.yaxis[i.yaxisIndex]&&a.config.yaxis[i.yaxisIndex].reversed;var b=i.graphics.group({class:"apexcharts-series",seriesName:r.escapeString(a.globals.seriesNames[x]),rel:s+1,"data:realIndex":x});i.ctx.series.addCollapsedClassToSeries(b,x);var v=i.graphics.group({class:"apexcharts-datalabels","data:realIndex":x}),m=0,y=0,w=i.initialPositions(l,c,h,d,u,g);c=w.y,m=w.barHeight,d=w.yDivision,g=w.zeroW,l=w.x,y=w.barWidth,h=w.xDivision,u=w.zeroH,i.yArrj=[],i.yArrjF=[],i.yArrjVal=[],i.xArrj=[],i.xArrjF=[],i.xArrjVal=[],1===i.prevY.length&&i.prevY[0].every((function(t){return isNaN(t)}))&&(i.prevY[0]=i.prevY[0].map((function(t){return u})),i.prevYF[0]=i.prevYF[0].map((function(t){return 0})));for(var k=0;k1?(i=l.globals.minXDiff/this.xRatio)*parseInt(this.barOptions.columnWidth,10)/100:o*parseInt(l.config.plotOptions.bar.columnWidth,10)/100,s=this.baseLineY[this.yaxisIndex]+(this.isReversed?l.globals.gridHeight:0)-(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),t=l.globals.padHorizontal+(i-o)/2),{x:t,y:e,yDivision:a,xDivision:i,barHeight:n,barWidth:o,zeroH:s,zeroW:r}}},{key:"drawStackedBarPaths",value:function(t){for(var e,i=t.indexes,a=t.barHeight,s=t.strokeWidth,r=t.zeroW,n=t.x,o=t.y,l=t.yDivision,c=t.elSeries,h=this.w,d=o,u=i.i,g=i.j,f=0,p=0;p0){var x=r;this.prevXVal[u-1][g]<0?x=this.series[u][g]>=0?this.prevX[u-1][g]+f-2*(this.isReversed?f:0):this.prevX[u-1][g]:this.prevXVal[u-1][g]>=0&&(x=this.series[u][g]>=0?this.prevX[u-1][g]:this.prevX[u-1][g]-f+2*(this.isReversed?f:0)),e=x}else e=r;n=null===this.series[u][g]?e:e+this.series[u][g]/this.invertedYRatio-2*(this.isReversed?this.series[u][g]/this.invertedYRatio:0);var b=this.barHelpers.getBarpaths({barYPosition:d,barHeight:a,x1:e,x2:n,strokeWidth:s,series:this.series,realIndex:i.realIndex,i:u,j:g,w:h});return this.barHelpers.barBackground({j:g,i:u,y1:d,y2:a,elSeries:c}),o+=l,{pathTo:b.pathTo,pathFrom:b.pathFrom,x:n,y:o}}},{key:"drawStackedColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=t.y,s=t.xDivision,r=t.barWidth,n=t.zeroH,o=(t.strokeWidth,t.elSeries),l=this.w,c=e.i,h=e.j,d=e.bc;if(l.globals.isXNumeric){var u=l.globals.seriesX[c][h];u||(u=0),i=(u-l.globals.minX)/this.xRatio-r/2}for(var g,f=i,p=0,x=0;x0&&!l.globals.isXNumeric||c>0&&l.globals.isXNumeric&&l.globals.seriesX[c-1][h]===l.globals.seriesX[c][h]){var b,v,m=Math.min(this.yRatio.length+1,c+1);if(void 0!==this.prevY[c-1])for(var y=1;y=0?v-p+2*(this.isReversed?p:0):v;break}if(this.prevYVal[c-w][h]>=0){b=this.series[c][h]>=0?v:v+p-2*(this.isReversed?p:0);break}}void 0===b&&(b=l.globals.gridHeight),g=this.prevYF[0].every((function(t){return 0===t}))&&this.prevYF.slice(1,c).every((function(t){return t.every((function(t){return isNaN(t)}))}))?l.globals.gridHeight-n:b}else g=l.globals.gridHeight-n;a=g-this.series[c][h]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[c][h]/this.yRatio[this.yaxisIndex]:0);var k=this.barHelpers.getColumnPaths({barXPosition:f,barWidth:r,y1:g,y2:a,yRatio:this.yRatio[this.yaxisIndex],strokeWidth:this.strokeWidth,series:this.series,realIndex:e.realIndex,i:c,j:h,w:l});return this.barHelpers.barBackground({bc:d,j:h,i:c,x1:f,x2:r,elSeries:o}),i+=s,{pathTo:k.pathTo,pathFrom:k.pathFrom,x:l.globals.isXNumeric?i-s:i,y:a}}}])&&oi(e.prototype,i),o}(J);function ui(t){return(ui="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function gi(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function fi(t,e){for(var i=0;i0&&(i.visibleI=i.visibleI+1),i.yRatio.length>1&&(i.yaxisIndex=b);var m=i.barHelpers.initialPositions();f=m.y,d=m.barHeight,g=m.x,u=m.barWidth,c=m.xDivision,h=m.zeroH,x.push(g+u/2);for(var y=s.group({class:"apexcharts-datalabels","data:realIndex":b}),w=function(e){var s=i.barHelpers.getStrokeWidth(o,e,b),r=i.drawBoxPaths({indexes:{i:o,j:e,realIndex:b},x:g,y:f,xDivision:c,barWidth:u,zeroH:h,strokeWidth:s,elSeries:v});f=r.y,g=r.x,e>0&&x.push(g+u/2),p.push(f),r.pathTo.forEach((function(l,c){var h=!i.isBoxPlot&&i.candlestickOptions.wick.useFillColor?r.color[c]:a.globals.stroke.colors[o],p=n.fillPath({seriesNumber:b,dataPointIndex:e,color:r.color[c],value:t[o][e]});i.renderSeries({realIndex:b,pathFill:p,lineFill:h,j:e,i:o,pathFrom:r.pathFrom,pathTo:l,strokeWidth:s,elSeries:v,x:g,y:f,series:t,barHeight:d,barWidth:u,elDataLabelsWrap:y,visibleSeries:i.visibleI,type:a.config.chart.type})}))},k=0;kv.c&&(d=!1);var w=Math.min(v.o,v.c),k=Math.max(v.o,v.c),A=v.m;o.globals.isXNumeric&&(i=(o.globals.seriesX[b][h]-o.globals.minX)/this.xRatio-s/2);var S=i+s*this.visibleI;void 0===this.series[c][h]||null===this.series[c][h]?(w=r,k=r):(w=r-w/x,k=r-k/x,m=r-v.h/x,y=r-v.l/x,A=r-v.m/x);var C=l.move(S,r),P=l.move(S+s/2,w);return o.globals.previousPaths.length>0&&(P=this.getPreviousPath(b,h,!0)),C=this.isBoxPlot?[l.move(S,w)+l.line(S+s/2,w)+l.line(S+s/2,m)+l.line(S+s/4,m)+l.line(S+s-s/4,m)+l.line(S+s/2,m)+l.line(S+s/2,w)+l.line(S+s,w)+l.line(S+s,A)+l.line(S,A)+l.line(S,w+n/2),l.move(S,A)+l.line(S+s,A)+l.line(S+s,k)+l.line(S+s/2,k)+l.line(S+s/2,y)+l.line(S+s-s/4,y)+l.line(S+s/4,y)+l.line(S+s/2,y)+l.line(S+s/2,k)+l.line(S,k)+l.line(S,A)+"z"]:[l.move(S,k)+l.line(S+s/2,k)+l.line(S+s/2,m)+l.line(S+s/2,k)+l.line(S+s,k)+l.line(S+s,w)+l.line(S+s/2,w)+l.line(S+s/2,y)+l.line(S+s/2,w)+l.line(S,w)+l.line(S,k-n/2)],P+=l.move(S,w),o.globals.isXNumeric||(i+=a),{pathTo:C,pathFrom:P,x:i,y:k,barXPosition:S,color:this.isBoxPlot?p:d?[u]:[g]}}},{key:"getOHLCValue",value:function(t,e){var i=this.w;return{o:this.isBoxPlot?i.globals.seriesCandleH[t][e]:i.globals.seriesCandleO[t][e],h:this.isBoxPlot?i.globals.seriesCandleO[t][e]:i.globals.seriesCandleH[t][e],m:i.globals.seriesCandleM[t][e],l:this.isBoxPlot?i.globals.seriesCandleC[t][e]:i.globals.seriesCandleL[t][e],c:this.isBoxPlot?i.globals.seriesCandleL[t][e]:i.globals.seriesCandleC[t][e]}}}])&&fi(e.prototype,i),o}(J);function mi(t){return function(t){if(Array.isArray(t))return yi(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return yi(t,e);var i=Object.prototype.toString.call(t).slice(8,-1);return"Object"===i&&t.constructor&&(i=t.constructor.name),"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?yi(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function yi(t,e){(null==e||e>t.length)&&(e=t.length);for(var i=0,a=new Array(e);i0&&i.colorScale.ranges.map((function(t,i){t.from<=0&&(e=!0)})),e}},{key:"getShadeColor",value:function(t,e,i,a){var s=this.w,n=1,o=s.config.plotOptions[t].shadeIntensity,l=this.determineColor(t,e,i);s.globals.hasNegs||a?n=s.config.plotOptions[t].reverseNegativeShade?l.percent<0?l.percent/100*(1.25*o):(1-l.percent/100)*(1.25*o):l.percent<=0?1-(1+l.percent/100)*o:(1-l.percent/100)*o:(n=1-l.percent/100,"treemap"===t&&(n=(1-l.percent/100)*(1.25*o)));var c=l.color,h=new r;return s.config.plotOptions[t].enableShades&&(c="dark"===this.w.config.theme.mode?r.hexToRgba(h.shadeColor(-1*n,l.color),s.config.fill.opacity):r.hexToRgba(h.shadeColor(n,l.color),s.config.fill.opacity)),{color:c,colorProps:l}}},{key:"determineColor",value:function(t,e,i){var a=this.w,s=a.globals.series[e][i],r=a.config.plotOptions[t],n=r.colorScale.inverse?i:e;a.config.plotOptions[t].distributed&&(n=i);var o=a.globals.colors[n],l=null,c=Math.min.apply(Math,mi(a.globals.series[e])),h=Math.max.apply(Math,mi(a.globals.series[e]));r.distributed||"heatmap"!==t||(c=a.globals.minY,h=a.globals.maxY),void 0!==r.colorScale.min&&(c=r.colorScale.mina.globals.maxY?r.colorScale.max:a.globals.maxY);var d=Math.abs(h)+Math.abs(c),u=100*s/(0===d?d-1e-6:d);return r.colorScale.ranges.length>0&&r.colorScale.ranges.map((function(t,e){if(s>=t.from&&s<=t.to){o=t.color,l=t.foreColor?t.foreColor:null,c=t.from,h=t.to;var i=Math.abs(h)+Math.abs(c);u=100*s/(0===i?i-1e-6:i)}})),{color:o,foreColor:l,percent:u}}},{key:"calculateDataLabels",value:function(t){var e=t.text,i=t.x,a=t.y,s=t.i,r=t.j,n=t.colorProps,o=t.fontSize,l=this.w.config.dataLabels,c=new f(this.ctx),h=new D(this.ctx),d=null;if(l.enabled){d=c.group({class:"apexcharts-data-labels"});var u=l.offsetX,g=l.offsetY,p=i+u,x=a+parseFloat(l.style.fontSize)/3+g;h.plotDataLabelsText({x:p,y:x,text:e,i:s,j:r,color:n.foreColor,parent:d,fontSize:o,dataLabelsConfig:l})}return d}},{key:"addListeners",value:function(t){var e=new f(this.ctx);t.node.addEventListener("mouseenter",e.pathMouseEnter.bind(this,t)),t.node.addEventListener("mouseleave",e.pathMouseLeave.bind(this,t)),t.node.addEventListener("mousedown",e.pathMouseDown.bind(this,t))}}])&&wi(e.prototype,i),t}();function Ai(t,e){for(var i=0;i=0;l?d++:d--){var u=i.group({class:"apexcharts-series apexcharts-heatmap-series",seriesName:r.escapeString(e.globals.seriesNames[d]),rel:d+1,"data:realIndex":d});if(this.ctx.series.addCollapsedClassToSeries(u,d),e.config.chart.dropShadow.enabled){var g=e.config.chart.dropShadow;new c(this.ctx).dropShadow(u,g,d)}for(var p=0,x=e.config.plotOptions.heatmap.shadeIntensity,b=0;b-1&&this.pieClicked(g),i.config.dataLabels.enabled){var A=w.x,S=w.y,C=100*x/this.fullAngle+"%";if(0!==x&&i.config.plotOptions.pie.dataLabels.minAngleToShowLabelthis.fullAngle?e.endAngle=e.endAngle-(a+n):a+n=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle&&(l=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle-.01),Math.ceil(l)>this.fullAngle&&(l-=this.fullAngle);var c=Math.PI*(l-90)/180,h=e.centerX+s*Math.cos(o),d=e.centerY+s*Math.sin(o),u=e.centerX+s*Math.cos(c),g=e.centerY+s*Math.sin(c),f=r.polarToCartesian(e.centerX,e.centerY,e.donutSize,l),p=r.polarToCartesian(e.centerX,e.centerY,e.donutSize,n),x=a>180?1:0,b=["M",h,d,"A",s,s,0,x,1,u,g];return"donut"===e.chartType?[].concat(b,["L",f.x,f.y,"A",e.donutSize,e.donutSize,0,x,0,p.x,p.y,"L",h,d,"z"]).join(" "):"pie"===e.chartType||"polarArea"===e.chartType?[].concat(b,["L",e.centerX,e.centerY,"L",h,d]).join(" "):[].concat(b).join(" ")}},{key:"drawPolarElements",value:function(t){var e=this.w,i=new Xt(this.ctx),a=new f(this.ctx),s=new Pi(this.ctx),r=a.group(),n=a.group(),o=i.niceScale(0,Math.ceil(this.maxY),e.config.yaxis[0].tickAmount,0,!0),l=o.result.reverse(),c=o.result.length;this.maxY=o.niceMax;for(var h=e.globals.radialSize,d=h/(c-1),u=0;u1&&t.total.show&&(s=t.total.color);var n=r.globals.dom.baseEl.querySelector(".apexcharts-datalabel-label"),o=r.globals.dom.baseEl.querySelector(".apexcharts-datalabel-value");i=(0,t.value.formatter)(i,r),a||"function"!=typeof t.total.formatter||(i=t.total.formatter(r));var l=e===t.total.label;e=t.name.formatter(e,l,r),null!==n&&(n.textContent=e),null!==o&&(o.textContent=i),null!==n&&(n.style.fill=s)}},{key:"printDataLabelsInner",value:function(t,e){var i=this.w,a=t.getAttribute("data:value"),s=i.globals.seriesNames[parseInt(t.parentNode.getAttribute("rel"),10)-1];i.globals.series.length>1&&this.printInnerLabels(e,s,a,t);var r=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");null!==r&&(r.style.opacity=1)}},{key:"drawSpokes",value:function(t){var e=this,i=this.w,a=new f(this.ctx),s=i.config.plotOptions.polarArea.spokes;if(0!==s.strokeWidth){for(var n=[],o=360/i.globals.series.length,l=0;l1)n&&!e.total.showAlways?l({makeSliceOut:!1,printLabel:!0}):this.printInnerLabels(e,e.total.label,e.total.formatter(s));else if(l({makeSliceOut:!1,printLabel:!0}),!n)if(s.globals.selectedDataPoints.length&&s.globals.series.length>1)if(s.globals.selectedDataPoints[0].length>0){var c=s.globals.selectedDataPoints[0],h=s.globals.dom.baseEl.querySelector(".apexcharts-".concat(this.chartType.toLowerCase(),"-slice-").concat(c));this.printDataLabelsInner(h,e)}else r&&s.globals.selectedDataPoints.length&&0===s.globals.selectedDataPoints[0].length&&(r.style.opacity=0);else r&&s.globals.series.length>1&&(r.style.opacity=0)}}])&&Li(e.prototype,i),t}();function Oi(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function Ei(t){for(var e=1;e0&&(x=e.getPreviousPath(o));for(var b=0;b=10?t.x>0?(i="start",a+=10):t.x<0&&(i="end",a-=10):i="middle",Math.abs(t.y)>=e-10&&(t.y<0?s-=10:t.y>0&&(s+=10)),{textAnchor:i,newX:a,newY:s}}},{key:"getPreviousPath",value:function(t){for(var e=this.w,i=null,a=0;a0&&parseInt(s.realIndex,10)===parseInt(t,10)&&void 0!==e.globals.previousPaths[a].paths[0]&&(i=e.globals.previousPaths[a].paths[0].d)}return i}},{key:"getDataPointsPos",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.dataPointsLen;t=t||[],e=e||[];for(var a=[],s=0;s=360&&(g=360-Math.abs(this.startAngle)-.1);var p=i.drawPath({d:"",stroke:d,strokeWidth:n*parseInt(h.strokeWidth,10)/100,fill:"none",strokeOpacity:h.opacity,classes:"apexcharts-radialbar-area"});if(h.dropShadow.enabled){var x=h.dropShadow;s.dropShadow(p,x)}l.add(p),p.attr("id","apexcharts-radialbarTrack-"+o),this.animatePaths(p,{centerX:t.centerX,centerY:t.centerY,endAngle:g,startAngle:u,size:t.size,i:o,totalItems:2,animBeginArr:0,dur:0,isTrack:!0,easing:e.globals.easing})}return a}},{key:"drawArcs",value:function(t){var e=this.w,i=new f(this.ctx),a=new I(this.ctx),s=new c(this.ctx),n=i.group(),o=this.getStrokeWidth(t);t.size=t.size-o/2;var l=e.config.plotOptions.radialBar.hollow.background,h=t.size-o*t.series.length-this.margin*t.series.length-o*parseInt(e.config.plotOptions.radialBar.track.strokeWidth,10)/100/2,d=h-e.config.plotOptions.radialBar.hollow.margin;void 0!==e.config.plotOptions.radialBar.hollow.image&&(l=this.drawHollowImage(t,n,h,l));var u=this.drawHollow({size:d,centerX:t.centerX,centerY:t.centerY,fill:l||"transparent"});if(e.config.plotOptions.radialBar.hollow.dropShadow.enabled){var g=e.config.plotOptions.radialBar.hollow.dropShadow;s.dropShadow(u,g)}var p=1;!this.radialDataLabels.total.show&&e.globals.series.length>1&&(p=0);var x=null;this.radialDataLabels.show&&(x=this.renderInnerDataLabels(this.radialDataLabels,{hollowSize:h,centerX:t.centerX,centerY:t.centerY,opacity:p})),"back"===e.config.plotOptions.radialBar.hollow.position&&(n.add(u),x&&n.add(x));var b=!1;e.config.plotOptions.radialBar.inverseOrder&&(b=!0);for(var v=b?t.series.length-1:0;b?v>=0:v100?100:t.series[v])/100,S=Math.round(this.totalAngle*A)+this.startAngle,C=void 0;e.globals.dataChanged&&(k=this.startAngle,C=Math.round(this.totalAngle*r.negToZero(e.globals.previousPaths[v])/100)+k),Math.abs(S)+Math.abs(w)>=360&&(S-=.01),Math.abs(C)+Math.abs(k)>=360&&(C-=.01);var P=S-w,L=Array.isArray(e.config.stroke.dashArray)?e.config.stroke.dashArray[v]:e.config.stroke.dashArray,T=i.drawPath({d:"",stroke:y,strokeWidth:o,fill:"none",fillOpacity:e.config.fill.opacity,classes:"apexcharts-radialbar-area apexcharts-radialbar-slice-"+v,strokeDashArray:L});if(f.setAttrs(T.node,{"data:angle":P,"data:value":t.series[v]}),e.config.chart.dropShadow.enabled){var O=e.config.chart.dropShadow;s.dropShadow(T,O,v)}s.setSelectionFilter(T,0,v),this.addListeners(T,this.radialDataLabels),m.add(T),T.attr({index:0,j:v});var E=0;!this.initialAnim||e.globals.resized||e.globals.dataChanged||(E=(S-w)/360*e.config.chart.animations.speed,this.animDur=E/(1.2*t.series.length)+this.animDur,this.animBeginArr.push(this.animDur)),e.globals.dataChanged&&(E=(S-w)/360*e.config.chart.animations.dynamicAnimation.speed,this.animDur=E/(1.2*t.series.length)+this.animDur,this.animBeginArr.push(this.animDur)),this.animatePaths(T,{centerX:t.centerX,centerY:t.centerY,endAngle:S,startAngle:w,prevEndAngle:C,prevStartAngle:k,size:t.size,i:v,totalItems:2,animBeginArr:this.animBeginArr,dur:E,shouldSetPrevPaths:!0,easing:e.globals.easing})}return{g:n,elHollow:u,dataLabels:x}}},{key:"drawHollow",value:function(t){var e=new f(this.ctx).drawCircle(2*t.size);return e.attr({class:"apexcharts-radialbar-hollow",cx:t.centerX,cy:t.centerY,r:t.size,fill:t.fill}),e}},{key:"drawHollowImage",value:function(t,e,i,a){var s=this.w,n=new I(this.ctx),o=r.randomId(),l=s.config.plotOptions.radialBar.hollow.image;if(s.config.plotOptions.radialBar.hollow.imageClipped)n.clippedImgArea({width:i,height:i,image:l,patternID:"pattern".concat(s.globals.cuid).concat(o)}),a="url(#pattern".concat(s.globals.cuid).concat(o,")");else{var c=s.config.plotOptions.radialBar.hollow.imageWidth,h=s.config.plotOptions.radialBar.hollow.imageHeight;if(void 0===c&&void 0===h){var d=s.globals.dom.Paper.image(l).loaded((function(e){this.move(t.centerX-e.width/2+s.config.plotOptions.radialBar.hollow.imageOffsetX,t.centerY-e.height/2+s.config.plotOptions.radialBar.hollow.imageOffsetY)}));e.add(d)}else{var u=s.globals.dom.Paper.image(l).loaded((function(e){this.move(t.centerX-c/2+s.config.plotOptions.radialBar.hollow.imageOffsetX,t.centerY-h/2+s.config.plotOptions.radialBar.hollow.imageOffsetY),this.size(c,h)}));e.add(u)}}return a}},{key:"getStrokeWidth",value:function(t){var e=this.w;return t.size*(100-parseInt(e.config.plotOptions.radialBar.hollow.size,10))/100/(t.series.length+1)-this.margin}}])&&Yi(e.prototype,i),o}(Ti);function Ni(t,e){for(var i=0;i0&&parseInt(n.realIndex,10)===parseInt(a,10)&&("line"===n.type?(this.lineCtx.appendPathFrom=!1,e=s.globals.previousPaths[r].paths[0].d):"area"===n.type&&(this.lineCtx.appendPathFrom=!1,i=s.globals.previousPaths[r].paths[0].d,s.config.stroke.show&&s.globals.previousPaths[r].paths[1]&&(e=s.globals.previousPaths[r].paths[1].d)))}return{pathFromLine:e,pathFromArea:i}}},{key:"determineFirstPrevY",value:function(t){var e=t.i,i=t.series,a=t.prevY,s=t.lineYPosition,r=this.w;if(void 0!==i[e][0])a=(s=r.config.chart.stacked&&e>0?this.lineCtx.prevSeriesY[e-1][0]:this.lineCtx.zeroY)-i[e][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]+2*(this.lineCtx.isReversed?i[e][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]:0);else if(r.config.chart.stacked&&e>0&&void 0===i[e][0])for(var n=e-1;n>=0;n--)if(null!==i[n][0]&&void 0!==i[n][0]){a=s=this.lineCtx.prevSeriesY[n][0];break}return{prevY:a,lineYPosition:s}}}])&&Ni(e.prototype,i),t}();function ji(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function Bi(t){for(var e=1;e0&&(g=(a.globals.seriesX[h][0]-a.globals.minX)/this.xRatio),u.push(g);var p,x=g,b=x,v=this.zeroY;v=this.lineHelpers.determineFirstPrevY({i:c,series:t,prevY:v,lineYPosition:0}).prevY,d.push(v),p=v;var m=this._calculatePathsFrom({series:t,i:c,realIndex:h,prevX:b,prevY:v}),w=this._iterateOverDataPoints({series:t,realIndex:h,i:c,x:g,y:1,pX:x,pY:p,pathsFrom:m,linePaths:[],areaPaths:[],seriesIndex:i,lineYPosition:0,xArrj:u,yArrj:d});this._handlePaths({type:r,realIndex:h,i:c,paths:w}),this.elSeries.add(this.elPointsMain),this.elSeries.add(this.elDataLabelsWrap),l.push(this.elSeries)}if(a.config.chart.stacked)for(var k=l.length;k>0;k--)n.add(l[k-1]);else for(var A=0;A1&&(this.yaxisIndex=i),this.isReversed=a.config.yaxis[this.yaxisIndex]&&a.config.yaxis[this.yaxisIndex].reversed,this.zeroY=a.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?a.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),this.areaBottomY=this.zeroY,(this.zeroY>a.globals.gridHeight||"end"===a.config.plotOptions.area.fillTo)&&(this.areaBottomY=a.globals.gridHeight),this.categoryAxisCorrection=this.xDivision/2,this.elSeries=s.group({class:"apexcharts-series",seriesName:r.escapeString(a.globals.seriesNames[i])}),this.elPointsMain=s.group({class:"apexcharts-series-markers-wrap","data:realIndex":i}),this.elDataLabelsWrap=s.group({class:"apexcharts-datalabels","data:realIndex":i});var n=t[e].length===a.globals.dataPoints;this.elSeries.attr({"data:longestSeries":n,rel:e+1,"data:realIndex":i}),this.appendPathFrom=!0}},{key:"_calculatePathsFrom",value:function(t){var e,i,a,s,r=t.series,n=t.i,o=t.realIndex,l=t.prevX,c=t.prevY,h=this.w,d=new f(this.ctx);if(null===r[n][0]){for(var u=0;u0){var g=this.lineHelpers.checkPreviousPaths({pathFromLine:a,pathFromArea:s,realIndex:o});a=g.pathFromLine,s=g.pathFromArea}return{prevX:l,prevY:c,linePath:e,areaPath:i,pathFromLine:a,pathFromArea:s}}},{key:"_handlePaths",value:function(t){var e=t.type,i=t.realIndex,a=t.i,s=t.paths,r=this.w,n=new f(this.ctx),o=new I(this.ctx);this.prevSeriesY.push(s.yArrj),r.globals.seriesXvalues[i]=s.xArrj,r.globals.seriesYvalues[i]=s.yArrj,this.pointsChart||r.globals.delayedElements.push({el:this.elPointsMain.node,index:i});var l={i:a,realIndex:i,animationDelay:a,initialSpeed:r.config.chart.animations.speed,dataChangeSpeed:r.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(e)};if("area"===e)for(var c=o.fillPath({seriesNumber:i}),h=0;h1?b.globals.dataPoints-1:b.globals.dataPoints,L=0;L0&&b.globals.collapsedSeries.length-1){e--;break}return e>=0?e:0}(a-1)][L+1]:this.zeroY,n=T?g-C/m[this.yaxisIndex]+2*(this.isReversed?C/m[this.yaxisIndex]:0):g-e[a][L+1]/m[this.yaxisIndex]+2*(this.isReversed?e[a][L+1]/m[this.yaxisIndex]:0),p.push(s),x.push(n);var E=this.lineHelpers.calculatePoints({series:e,x:s,y:n,realIndex:i,i:a,j:L,prevY:y}),I=this._createPaths({series:e,i:a,realIndex:i,j:L,x:s,y:n,pX:o,pY:l,linePath:w,areaPath:k,linePaths:h,areaPaths:d,seriesIndex:u});d=I.areaPaths,h=I.linePaths,o=I.pX,l=I.pY,k=I.areaPath,w=I.linePath,this.appendPathFrom&&(A+=v.line(s,this.zeroY),S+=v.line(s,this.zeroY)),this.handleNullDataPoints(e,E,a,L,i),this._handleMarkersAndLabels({pointsPos:E,series:e,x:s,y:n,prevY:y,i:a,j:L,realIndex:i})}return{yArrj:x,xArrj:p,pathFromArea:S,areaPaths:d,pathFromLine:A,linePaths:h}}},{key:"_handleMarkersAndLabels",value:function(t){var e=t.pointsPos,i=(t.series,t.x,t.y,t.prevY,t.i),a=t.j,s=t.realIndex,r=this.w,n=new D(this.ctx);if(this.pointsChart)this.scatter.draw(this.elSeries,a,{realIndex:s,pointsPos:e,zRatio:this.zRatio,elParent:this.elPointsMain});else{r.globals.series[i].length>1&&this.elPointsMain.node.classList.add("apexcharts-element-hidden");var o=this.markers.plotChartMarkers(e,s,a+1);null!==o&&this.elPointsMain.add(o)}var l=n.drawDataLabel(e,s,a+1,null);null!==l&&this.elDataLabelsWrap.add(l)}},{key:"_createPaths",value:function(t){var e=t.series,i=t.i,a=t.realIndex,s=t.j,r=t.x,n=t.y,o=t.pX,l=t.pY,c=t.linePath,h=t.areaPath,d=t.linePaths,u=t.areaPaths,g=t.seriesIndex,p=this.w,x=new f(this.ctx),b=p.config.stroke.curve,v=this.areaBottomY;if(Array.isArray(p.config.stroke.curve)&&(b=Array.isArray(g)?p.config.stroke.curve[g[i]]:p.config.stroke.curve[i]),"smooth"===b){var m=.35*(r-o);p.globals.hasNullValues?(null!==e[i][s]&&(null!==e[i][s+1]?(c=x.move(o,l)+x.curve(o+m,l,r-m,n,r+1,n),h=x.move(o+1,l)+x.curve(o+m,l,r-m,n,r+1,n)+x.line(r,v)+x.line(o,v)+"z"):(c=x.move(o,l),h=x.move(o,l)+"z")),d.push(c),u.push(h)):(c+=x.curve(o+m,l,r-m,n,r,n),h+=x.curve(o+m,l,r-m,n,r,n)),o=r,l=n,s===e[i].length-2&&(h=h+x.curve(o,l,r,n,r,v)+x.move(r,n)+"z",p.globals.hasNullValues||(d.push(c),u.push(h)))}else{if(null===e[i][s+1]){c+=x.move(r,n);var y=p.globals.isXNumeric?(p.globals.seriesX[a][s]-p.globals.minX)/this.xRatio:r-this.xDivision;h=h+x.line(y,v)+x.move(r,n)+"z"}null===e[i][s]&&(c+=x.move(r,n),h+=x.move(r,v)),"stepline"===b?(c=c+x.line(r,null,"H")+x.line(null,n,"V"),h=h+x.line(r,null,"H")+x.line(null,n,"V")):"straight"===b&&(c+=x.line(r,n),h+=x.line(r,n)),s===e[i].length-2&&(h=h+x.line(r,v)+x.move(r,n)+"z",d.push(c),u.push(h))}return{linePaths:d,areaPaths:u,pX:o,pY:l,linePath:c,areaPath:h}}},{key:"handleNullDataPoints",value:function(t,e,i,a,s){var r=this.w;if(null===t[i][a]&&r.config.markers.showNullDataPoints||1===t[i].length){var n=this.markers.plotChartMarkers(e,s,a+1,this.strokeWidth-r.config.markers.strokeWidth/2,!0);null!==n&&this.elPointsMain.add(n)}}}])&&_i(e.prototype,i),t}();function Ui(t,e){for(var i=0;is-i&&o.width<=r-a){var l=n.rotateAroundCenter(t.node);t.node.setAttribute("transform","rotate(-90 ".concat(l.x," ").concat(l.y,")"))}}},{key:"animateTreemap",value:function(t,e,i,a){var s=new o(this.ctx);s.animateRect(t,{x:e.x,y:e.y,width:e.width,height:e.height},{x:i.x,y:i.y,width:i.width,height:i.height},a,(function(){s.animationCompleted(t)}))}}])&&Ui(e.prototype,i),t}();function Zi(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function $i(t){for(var e=1;e5e4&&(a.globals.disableZoomOut=!0);var n=s.getTimeUnitsfromTimestamp(t,e,this.utc),o=a.globals.gridWidth/r,l=o/24,c=l/60,h=c/60,d=Math.floor(24*r),u=Math.floor(1440*r),g=Math.floor(86400*r),f=Math.floor(r),p=Math.floor(r/30),x=Math.floor(r/365),b={minMillisecond:n.minMillisecond,minSecond:n.minSecond,minMinute:n.minMinute,minHour:n.minHour,minDate:n.minDate,minMonth:n.minMonth,minYear:n.minYear},v={firstVal:b,currentMillisecond:b.minMillisecond,currentSecond:b.minSecond,currentMinute:b.minMinute,currentHour:b.minHour,currentMonthDate:b.minDate,currentDate:b.minDate,currentMonth:b.minMonth,currentYear:b.minYear,daysWidthOnXAxis:o,hoursWidthOnXAxis:l,minutesWidthOnXAxis:c,secondsWidthOnXAxis:h,numberOfSeconds:g,numberOfMinutes:u,numberOfHours:d,numberOfDays:f,numberOfMonths:p,numberOfYears:x};switch(this.tickInterval){case"years":this.generateYearScale(v);break;case"months":case"half_year":this.generateMonthScale(v);break;case"months_days":case"months_fortnight":case"days":case"week_days":this.generateDayScale(v);break;case"hours":this.generateHourScale(v);break;case"minutes_fives":case"minutes":this.generateMinuteScale(v);break;case"seconds_tens":case"seconds_fives":case"seconds":this.generateSecondScale(v)}var m=this.timeScaleArray.map((function(t){var e={position:t.position,unit:t.unit,year:t.year,day:t.day?t.day:1,hour:t.hour?t.hour:0,month:t.month+1};return"month"===t.unit?$i($i({},e),{},{day:1,value:t.value+1}):"day"===t.unit||"hour"===t.unit?$i($i({},e),{},{value:t.value}):"minute"===t.unit?$i($i({},e),{},{value:t.value,minute:t.value}):"second"===t.unit?$i($i({},e),{},{value:t.value,minute:t.minute,second:t.second}):t}));return m.filter((function(t){var e=1,s=Math.ceil(a.globals.gridWidth/120),r=t.value;void 0!==a.config.xaxis.tickAmount&&(s=a.config.xaxis.tickAmount),m.length>s&&(e=Math.floor(m.length/s));var n=!1,o=!1;switch(i.tickInterval){case"years":"year"===t.unit&&(n=!0);break;case"half_year":e=7,"year"===t.unit&&(n=!0);break;case"months":e=1,"year"===t.unit&&(n=!0);break;case"months_fortnight":e=15,"year"!==t.unit&&"month"!==t.unit||(n=!0),30===r&&(o=!0);break;case"months_days":e=10,"month"===t.unit&&(n=!0),30===r&&(o=!0);break;case"week_days":e=8,"month"===t.unit&&(n=!0);break;case"days":e=1,"month"===t.unit&&(n=!0);break;case"hours":"day"===t.unit&&(n=!0);break;case"minutes_fives":r%5!=0&&(o=!0);break;case"seconds_tens":r%10!=0&&(o=!0);break;case"seconds_fives":r%5!=0&&(o=!0)}if("hours"===i.tickInterval||"minutes_fives"===i.tickInterval||"seconds_tens"===i.tickInterval||"seconds_fives"===i.tickInterval){if(!o)return!0}else if((r%e==0||n)&&!o)return!0}))}},{key:"recalcDimensionsBasedOnFormat",value:function(t,e){var i=this.w,a=this.formatDates(t),s=this.removeOverlappingTS(a);i.globals.timescaleLabels=s.slice(),new ce(this.ctx).plotCoords()}},{key:"determineInterval",value:function(t){var e=24*t,i=60*e;switch(!0){case t/365>5:this.tickInterval="years";break;case t>800:this.tickInterval="half_year";break;case t>180:this.tickInterval="months";break;case t>90:this.tickInterval="months_fortnight";break;case t>60:this.tickInterval="months_days";break;case t>30:this.tickInterval="week_days";break;case t>2:this.tickInterval="days";break;case e>2.4:this.tickInterval="hours";break;case i>15:this.tickInterval="minutes_fives";break;case i>5:this.tickInterval="minutes";break;case i>1:this.tickInterval="seconds_tens";break;case 60*i>20:this.tickInterval="seconds_fives";break;default:this.tickInterval="seconds"}}},{key:"generateYearScale",value:function(t){var e=t.firstVal,i=t.currentMonth,a=t.currentYear,s=t.daysWidthOnXAxis,n=t.numberOfYears,o=e.minYear,l=0,c=new et(this.ctx),h="year";if(e.minDate>1||e.minMonth>0){var d=c.determineRemainingDaysOfYear(e.minYear,e.minMonth,e.minDate);l=(c.determineDaysOfYear(e.minYear)-d+1)*s,o=e.minYear+1,this.timeScaleArray.push({position:l,value:o,unit:h,year:o,month:r.monthMod(i+1)})}else 1===e.minDate&&0===e.minMonth&&this.timeScaleArray.push({position:l,value:o,unit:h,year:a,month:r.monthMod(i+1)});for(var u=o,g=l,f=0;f1){c=(h.determineDaysOfMonths(a+1,e.minYear)-i+1)*n,l=r.monthMod(a+1);var g=s+u,f=r.monthMod(l),p=l;0===l&&(d="year",p=g,f=1,g+=u+=1),this.timeScaleArray.push({position:c,value:p,unit:d,year:g,month:f})}else this.timeScaleArray.push({position:c,value:l,unit:d,year:s,month:r.monthMod(a)});for(var x=l+1,b=c,v=0,m=1;vo.determineDaysOfMonths(e+1,i)?(h=1,l="month",g=e+=1,e):e},u=(24-e.minHour)*s,g=c,f=d(h,i,a);0===e.minHour&&1===e.minDate?(u=0,g=r.monthMod(e.minMonth),l="month",h=e.minDate,n++):1!==e.minDate&&0===e.minHour&&0===e.minMinute&&(u=0,c=e.minDate,g=c,f=d(h=c,i,a)),this.timeScaleArray.push({position:u,value:g,unit:l,year:this._getYear(a,f,0),month:r.monthMod(f),day:h});for(var p=u,x=0;xl.determineDaysOfMonths(e+1,s)&&(x=1,e+=1),{month:e,date:x}},d=function(t,e){return t>l.determineDaysOfMonths(e+1,s)?e+=1:e},u=60-(e.minMinute+e.minSecond/60),g=u*n,f=e.minHour+1,p=f+1;60===u&&(g=0,p=(f=e.minHour)+1);var x=i,b=d(x,a);this.timeScaleArray.push({position:g,value:f,unit:c,day:x,hour:p,year:s,month:r.monthMod(b)});for(var v=g,m=0;m=24&&(p=0,c="day",b=h(x+=1,b).month,b=d(x,b));var y=this._getYear(s,b,0);v=0===p&&0===m?u*n:60*n+v;var w=0===p?x:p;this.timeScaleArray.push({position:v,value:w,unit:c,hour:p,day:x,year:y,month:r.monthMod(b)}),p++}}},{key:"generateMinuteScale",value:function(t){for(var e=t.currentMillisecond,i=t.currentSecond,a=t.currentMinute,s=t.currentHour,n=t.currentDate,o=t.currentMonth,l=t.currentYear,c=t.minutesWidthOnXAxis,h=t.secondsWidthOnXAxis,d=t.numberOfMinutes,u=a+1,g=n,f=o,p=l,x=s,b=(60-i-e/1e3)*h,v=0;v=60&&(u=0,24===(x+=1)&&(x=0)),this.timeScaleArray.push({position:b,value:u,unit:"minute",hour:x,minute:u,day:g,year:this._getYear(p,f,0),month:r.monthMod(f)}),b+=c,u++}},{key:"generateSecondScale",value:function(t){for(var e=t.currentMillisecond,i=t.currentSecond,a=t.currentMinute,s=t.currentHour,n=t.currentDate,o=t.currentMonth,l=t.currentYear,c=t.secondsWidthOnXAxis,h=t.numberOfSeconds,d=i+1,u=a,g=n,f=o,p=l,x=s,b=(1e3-e)/1e3*c,v=0;v=60&&(d=0,++u>=60&&(u=0,24==++x&&(x=0))),this.timeScaleArray.push({position:b,value:d,unit:"second",hour:x,minute:u,second:d,day:g,year:this._getYear(p,f,0),month:r.monthMod(f)}),b+=c,d++}},{key:"createRawDateString",value:function(t,e){var i=t.year;return 0===t.month&&(t.month=1),i+="-"+("0"+t.month.toString()).slice(-2),"day"===t.unit?i+="day"===t.unit?"-"+("0"+e).slice(-2):"-01":i+="-"+("0"+(t.day?t.day:"1")).slice(-2),"hour"===t.unit?i+="hour"===t.unit?"T"+("0"+e).slice(-2):"T00":i+="T"+("0"+(t.hour?t.hour:"0")).slice(-2),"minute"===t.unit?i+=":"+("0"+e).slice(-2):i+=":"+(t.minute?("0"+t.minute).slice(-2):"00"),"second"===t.unit?i+=":"+("0"+e).slice(-2):i+=":00",this.utc&&(i+=".000Z"),i}},{key:"formatDates",value:function(t){var e=this,i=this.w;return t.map((function(t){var a=t.value.toString(),s=new et(e.ctx),r=e.createRawDateString(t,a),n=s.getDate(s.parseDate(r));if(e.utc||(n=s.getDate(s.parseDateWithTimezone(r))),void 0===i.config.xaxis.labels.format){var o="dd MMM",l=i.config.xaxis.labels.datetimeFormatter;"year"===t.unit&&(o=l.year),"month"===t.unit&&(o=l.month),"day"===t.unit&&(o=l.day),"hour"===t.unit&&(o=l.hour),"minute"===t.unit&&(o=l.minute),"second"===t.unit&&(o=l.second),a=s.formatDate(n,o)}else a=s.formatDate(n,i.config.xaxis.labels.format);return{dateString:r,position:t.position,value:a,unit:t.unit,year:t.year,month:t.month}}))}},{key:"removeOverlappingTS",value:function(t){var e,i=this,a=new f(this.ctx),s=!1;t.length>0&&t[0].value&&t.every((function(e){return e.value.length===t[0].value.length}))&&(s=!0,e=a.getTextRects(t[0].value).width);var r=0,n=t.map((function(n,o){if(o>0&&i.w.config.xaxis.labels.hideOverlappingLabels){var l=s?e:a.getTextRects(t[r].value).width,c=t[r].position;return n.position>c+l+10?(r=o,n):null}return n}));return n.filter((function(t){return null!==t}))}},{key:"_getYear",value:function(t,e,i){return t+Math.floor(e/12)+i}}])&&Qi(e.prototype,i),t}();function ta(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function ea(t){for(var e=1;et.length)&&(e=t.length);for(var i=0,a=new Array(e);i-1,t.xyCharts=["line","area","bar","rangeBar","candlestick","boxPlot","scatter","bubble"].indexOf(i)>-1,t.isBarHorizontal=("bar"===e.chart.type||"rangeBar"===e.chart.type)&&e.plotOptions.bar.horizontal,t.chartClass=".apexcharts"+t.chartID,t.dom.baseEl=this.el,t.dom.elWrap=document.createElement("div"),f.setAttrs(t.dom.elWrap,{id:t.chartClass.substring(1),class:"apexcharts-canvas "+t.chartClass.substring(1)}),this.el.appendChild(t.dom.elWrap),t.dom.Paper=new window.SVG.Doc(t.dom.elWrap),t.dom.Paper.attr({class:"apexcharts-svg","xmlns:data":"ApexChartsNS",transform:"translate(".concat(e.chart.offsetX,", ").concat(e.chart.offsetY,")")}),t.dom.Paper.node.style.background=e.chart.background,this.setSVGDimensions(),t.dom.elGraphical=t.dom.Paper.group().attr({class:"apexcharts-inner apexcharts-graphical"}),t.dom.elAnnotations=t.dom.Paper.group().attr({class:"apexcharts-annotations"}),t.dom.elDefs=t.dom.Paper.defs(),t.dom.elLegendWrap=document.createElement("div"),t.dom.elLegendWrap.classList.add("apexcharts-legend"),t.dom.elWrap.appendChild(t.dom.elLegendWrap),t.dom.Paper.add(t.dom.elGraphical),t.dom.elGraphical.add(t.dom.elDefs)}},{key:"plotChartType",value:function(t,e){var i=this.w,a=i.config,s=i.globals,r={series:[],i:[]},n={series:[],i:[]},o={series:[],i:[]},l={series:[],i:[]},c={series:[],i:[]},h={series:[],i:[]},d={series:[],i:[]};s.series.map((function(e,u){var g=0;void 0!==t[u].type?("column"===t[u].type||"bar"===t[u].type?(s.series.length>1&&a.plotOptions.bar.horizontal&&console.warn("Horizontal bars are not supported in a mixed/combo chart. Please turn off `plotOptions.bar.horizontal`"),c.series.push(e),c.i.push(u),g++,i.globals.columnSeries=c.series):"area"===t[u].type?(n.series.push(e),n.i.push(u),g++):"line"===t[u].type?(r.series.push(e),r.i.push(u),g++):"scatter"===t[u].type?(o.series.push(e),o.i.push(u)):"bubble"===t[u].type?(l.series.push(e),l.i.push(u),g++):"candlestick"===t[u].type?(h.series.push(e),h.i.push(u),g++):"boxPlot"===t[u].type?(d.series.push(e),d.i.push(u),g++):console.warn("You have specified an unrecognized chart type. Available types for this property are line/area/column/bar/scatter/bubble"),g>1&&(s.comboCharts=!0)):(r.series.push(e),r.i.push(u))}));var u=new Gi(this.ctx,e),g=new vi(this.ctx,e);this.ctx.pie=new Ti(this.ctx);var f=new Hi(this.ctx);this.ctx.rangeBar=new dt(this.ctx,e);var p=new zi(this.ctx),x=[];if(s.comboCharts){if(n.series.length>0&&x.push(u.draw(n.series,"area",n.i)),c.series.length>0)if(i.config.chart.stacked){var b=new di(this.ctx,e);x.push(b.draw(c.series,c.i))}else this.ctx.bar=new J(this.ctx,e),x.push(this.ctx.bar.draw(c.series,c.i));if(r.series.length>0&&x.push(u.draw(r.series,"line",r.i)),h.series.length>0&&x.push(g.draw(h.series,h.i)),d.series.length>0&&x.push(g.draw(d.series,d.i)),o.series.length>0){var v=new Gi(this.ctx,e,!0);x.push(v.draw(o.series,"scatter",o.i))}if(l.series.length>0){var m=new Gi(this.ctx,e,!0);x.push(m.draw(l.series,"bubble",l.i))}}else switch(a.chart.type){case"line":x=u.draw(s.series,"line");break;case"area":x=u.draw(s.series,"area");break;case"bar":a.chart.stacked?x=new di(this.ctx,e).draw(s.series):(this.ctx.bar=new J(this.ctx,e),x=this.ctx.bar.draw(s.series));break;case"candlestick":case"boxPlot":x=new vi(this.ctx,e).draw(s.series);break;case"rangeBar":x=this.ctx.rangeBar.draw(s.series);break;case"heatmap":x=new Si(this.ctx,e).draw(s.series);break;case"treemap":x=new qi(this.ctx,e).draw(s.series);break;case"pie":case"donut":case"polarArea":x=this.ctx.pie.draw(s.series);break;case"radialBar":x=f.draw(s.series);break;case"radar":x=p.draw(s.series);break;default:x=u.draw(s.series)}return x}},{key:"setSVGDimensions",value:function(){var t=this.w.globals,e=this.w.config;t.svgWidth=e.chart.width,t.svgHeight=e.chart.height;var i=r.getDimensions(this.el),a=e.chart.width.toString().split(/[0-9]+/g).pop();"%"===a?r.isNumber(i[0])&&(0===i[0].width&&(i=r.getDimensions(this.el.parentNode)),t.svgWidth=i[0]*parseInt(e.chart.width,10)/100):"px"!==a&&""!==a||(t.svgWidth=parseInt(e.chart.width,10));var s=e.chart.height.toString().split(/[0-9]+/g).pop();if("auto"!==t.svgHeight&&""!==t.svgHeight)if("%"===s){var n=r.getDimensions(this.el.parentNode);t.svgHeight=n[1]*parseInt(e.chart.height,10)/100}else t.svgHeight=parseInt(e.chart.height,10);else t.axisCharts?t.svgHeight=t.svgWidth/1.61:t.svgHeight=t.svgWidth/1.2;if(t.svgWidth<0&&(t.svgWidth=0),t.svgHeight<0&&(t.svgHeight=0),f.setAttrs(t.dom.Paper.node,{width:t.svgWidth,height:t.svgHeight}),"%"!==s){var o=e.chart.sparkline.enabled?0:t.axisCharts?e.chart.parentHeightOffset:0;t.dom.Paper.node.parentNode.parentNode.style.minHeight=t.svgHeight+o+"px"}t.dom.elWrap.style.width=t.svgWidth+"px",t.dom.elWrap.style.height=t.svgHeight+"px"}},{key:"shiftGraphPosition",value:function(){var t=this.w.globals,e=t.translateY,i={transform:"translate("+t.translateX+", "+e+")"};f.setAttrs(t.dom.elGraphical.node,i)}},{key:"resizeNonAxisCharts",value:function(){var t=this.w,e=t.globals,i=0,a=t.config.chart.sparkline.enabled?1:15;a+=t.config.grid.padding.bottom,"top"!==t.config.legend.position&&"bottom"!==t.config.legend.position||!t.config.legend.show||t.config.legend.floating||(i=new ge(this.ctx).legendHelpers.getLegendBBox().clwh+10);var s=t.globals.dom.baseEl.querySelector(".apexcharts-radialbar, .apexcharts-pie"),n=2.05*t.globals.radialSize;if(s&&!t.config.chart.sparkline.enabled){var o=r.getBoundingClientRect(s);n=o.bottom;var l=o.bottom-o.top;n=Math.max(2.05*t.globals.radialSize,l)}var c=n+e.translateY+i+a;e.dom.elLegendForeign&&e.dom.elLegendForeign.setAttribute("height",c),e.dom.elWrap.style.height=c+"px",f.setAttrs(e.dom.Paper.node,{height:c}),e.dom.Paper.node.parentNode.parentNode.style.minHeight=c+"px"}},{key:"coreCalculations",value:function(){new Ft(this.ctx).init()}},{key:"resetGlobals",value:function(){var t=this,e=function(){return t.w.config.series.map((function(t){return[]}))},i=new vt,a=this.w.globals;i.initGlobalVars(a),a.seriesXvalues=e(),a.seriesYvalues=e()}},{key:"isMultipleY",value:function(){if(this.w.config.yaxis.constructor===Array&&this.w.config.yaxis.length>1)return this.w.globals.isMultipleYAxis=!0,!0}},{key:"xySettings",value:function(){var t=null,e=this.w;if(e.globals.axisCharts){if("back"===e.config.xaxis.crosshairs.position&&new Gt(this.ctx).drawXCrosshairs(),"back"===e.config.yaxis[0].crosshairs.position&&new Gt(this.ctx).drawYCrosshairs(),"datetime"===e.config.xaxis.type&&void 0===e.config.xaxis.labels.formatter){this.ctx.timeScale=new Ki(this.ctx);var i=[];isFinite(e.globals.minX)&&isFinite(e.globals.maxX)&&!e.globals.isBarHorizontal?i=this.ctx.timeScale.calculateTimeScaleTicks(e.globals.minX,e.globals.maxX):e.globals.isBarHorizontal&&(i=this.ctx.timeScale.calculateTimeScaleTicks(e.globals.minY,e.globals.maxY)),this.ctx.timeScale.recalcDimensionsBasedOnFormat(i)}t=new y(this.ctx).getCalculatedRatios()}return t}},{key:"updateSourceChart",value:function(t){this.ctx.w.globals.selection=void 0,this.ctx.updateHelpers._updateOptions({chart:{selection:{xaxis:{min:t.w.globals.minX,max:t.w.globals.maxX}}}},!1,!1)}},{key:"setupBrushHandler",value:function(){var t=this,e=this.w;if(e.config.chart.brush.enabled&&"function"!=typeof e.config.chart.events.selection){var i=e.config.chart.brush.targets||[e.config.chart.brush.target];i.forEach((function(e){var i=ApexCharts.getChartByID(e);i.w.globals.brushSource=t.ctx,"function"!=typeof i.w.config.chart.events.zoomed&&(i.w.config.chart.events.zoomed=function(){t.updateSourceChart(i)}),"function"!=typeof i.w.config.chart.events.scrolled&&(i.w.config.chart.events.scrolled=function(){t.updateSourceChart(i)})})),e.config.chart.events.selection=function(t,a){i.forEach((function(t){var i=ApexCharts.getChartByID(t),s=r.clone(e.config.yaxis);if(e.config.chart.brush.autoScaleYaxis&&1===i.w.globals.series.length){var n=new Xt(i);s=n.autoScaleY(i,s,a)}var o=i.w.config.yaxis.reduce((function(t,e,a){return[].concat(function(t){if(Array.isArray(t))return aa(t)}(r=t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(r)||function(t,e){if(t){if("string"==typeof t)return aa(t,e);var i=Object.prototype.toString.call(t).slice(8,-1);return"Object"===i&&t.constructor&&(i=t.constructor.name),"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?aa(t,e):void 0}}(r)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[ea(ea({},i.w.config.yaxis[a]),{},{min:s[0].min,max:s[0].max})]);var r}),[]);i.ctx.updateHelpers._updateOptions({xaxis:{min:a.xaxis.min,max:a.xaxis.max},yaxis:o},!1,!1,!1,!1)}))}}}}])&&sa(e.prototype,i),t}();function na(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function oa(t){for(var e=1;e1&&void 0!==arguments[1]&&arguments[1],a=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],s=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],n=arguments.length>4&&void 0!==arguments[4]&&arguments[4],o=[this.ctx];s&&(o=this.ctx.getSyncedCharts()),this.ctx.w.globals.isExecCalled&&(o=[this.ctx],this.ctx.w.globals.isExecCalled=!1),o.forEach((function(s){var o=s.w;return o.globals.shouldAnimate=a,i||(o.globals.resized=!0,o.globals.dataChanged=!0,a&&s.series.getPreviousPaths()),t&&"object"===ca(t)&&(s.config=new xt(t),t=y.extendArrayProps(s.config,t,o),s.w.globals.chartID!==e.ctx.w.globals.chartID&&delete t.series,o.config=r.extend(o.config,t),n&&(o.globals.lastXAxis=t.xaxis?r.clone(t.xaxis):[],o.globals.lastYAxis=t.yaxis?r.clone(t.yaxis):[],o.globals.initialConfig=r.extend({},o.config),o.globals.initialSeries=r.clone(o.config.series))),s.update(t)}))}},{key:"_updateSeries",value:function(t,e){var i,a=this,s=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=this.w;return n.globals.shouldAnimate=e,n.globals.dataChanged=!0,e&&this.ctx.series.getPreviousPaths(),n.globals.axisCharts?(0===(i=t.map((function(t,e){return a._extendSeries(t,e)}))).length&&(i=[{data:[]}]),n.config.series=i):n.config.series=t.slice(),s&&(n.globals.initialSeries=r.clone(n.config.series)),this.ctx.update()}},{key:"_extendSeries",value:function(t,e){var i=this.w,a=i.config.series[e];return oa(oa({},i.config.series[e]),{},{name:t.name?t.name:a&&a.name,color:t.color?t.color:a&&a.color,type:t.type?t.type:a&&a.type,data:t.data?t.data:a&&a.data})}},{key:"toggleDataPointSelection",value:function(t,e){var i=this.w,a=null,s=".apexcharts-series[data\\:realIndex='".concat(t,"']");return i.globals.axisCharts?a=i.globals.dom.Paper.select("".concat(s," path[j='").concat(e,"'], ").concat(s," circle[j='").concat(e,"'], ").concat(s," rect[j='").concat(e,"']")).members[0]:void 0===e&&(a=i.globals.dom.Paper.select("".concat(s," path[j='").concat(t,"']")).members[0],"pie"!==i.config.chart.type&&"polarArea"!==i.config.chart.type&&"donut"!==i.config.chart.type||this.ctx.pie.pieClicked(t)),a?(new f(this.ctx).pathMouseDown(a,null),a.node?a.node:null):(console.warn("toggleDataPointSelection: Element not found"),null)}},{key:"forceXAxisUpdate",value:function(t){var e=this.w;if(["min","max"].forEach((function(i){void 0!==t.xaxis[i]&&(e.config.xaxis[i]=t.xaxis[i],e.globals.lastXAxis[i]=t.xaxis[i])})),t.xaxis.categories&&t.xaxis.categories.length&&(e.config.xaxis.categories=t.xaxis.categories),e.config.xaxis.convertedCatToNumeric){var i=new gt(t);t=i.convertCatToNumericXaxis(t,this.ctx)}return t}},{key:"forceYAxisUpdate",value:function(t){var e=this.w;return e.config.chart.stacked&&"100%"===e.config.chart.stackType&&(Array.isArray(t.yaxis)?t.yaxis.forEach((function(e,i){t.yaxis[i].min=0,t.yaxis[i].max=100})):(t.yaxis.min=0,t.yaxis.max=100)),t}},{key:"revertDefaultAxisMinMax",value:function(t){var e=this,i=this.w,a=i.globals.lastXAxis,s=i.globals.lastYAxis;t&&t.xaxis&&(a=t.xaxis),t&&t.yaxis&&(s=t.yaxis),i.config.xaxis.min=a.min,i.config.xaxis.max=a.max;i.config.yaxis.map((function(t,a){i.globals.zoomed||void 0!==s[a]?function(t){void 0!==s[t]&&(i.config.yaxis[t].min=s[t].min,i.config.yaxis[t].max=s[t].max)}(a):void 0!==e.ctx.opts.yaxis[a]&&(t.min=e.ctx.opts.yaxis[a].min,t.max=e.ctx.opts.yaxis[a].max)}))}}])&&ha(e.prototype,i),t}();function ua(t,e){for(var i=0;i2?s-2:0),n=2;n0&&void 0!==arguments[0]?arguments[0]:null,i=this,a=i.w;return new Promise((function(s,r){if(null===i.el)return r(new Error("Not enough data to display or target element not found"));(null===e||a.globals.allSeriesCollapsed)&&i.series.handleNoData(),"treemap"!==a.config.chart.type&&i.axes.drawAxis(a.config.chart.type,e.xyRatios),i.grid=new Mt(i);var n=i.grid.drawGrid();i.annotations=new O(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),"back"===a.config.grid.position&&n&&a.globals.dom.elGraphical.add(n.el);var o=new Et(t.ctx),l=new Rt(t.ctx);if(null!==n&&(o.xAxisLabelCorrections(n.xAxisTickWidth),l.setYAxisTextAlignments(),a.config.yaxis.map((function(t,e){-1===a.globals.ignoreYAxisIndexes.indexOf(e)&&l.yAxisTitleRotate(e,t.opposite)}))),"back"===a.config.annotations.position&&(a.globals.dom.Paper.add(a.globals.dom.elAnnotations),i.annotations.drawAxesAnnotations()),Array.isArray(e.elGraph))for(var c=0;c0&&a.globals.memory.methodsToExec.forEach((function(t){t.method(t.params,!1,t.context)})),a.globals.axisCharts||a.globals.noData||i.core.resizeNonAxisCharts(),s(i)}))}},{key:"destroy",value:function(){window.removeEventListener("resize",this.windowResizeHandler),window.removeResizeListener(this.el.parentNode,this.parentResizeHandler);var t=this.w.config.chart.id;t&&Apex._chartInstances.forEach((function(e,i){e.id===r.escapeString(t)&&Apex._chartInstances.splice(i,1)})),new pa(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(t){var e=this,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1],a=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],s=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],r=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],n=this.w;return n.globals.selection=void 0,t.series&&(this.series.resetSeries(!1,!0,!1),t.series.length&&t.series[0].data&&(t.series=t.series.map((function(t,i){return e.updateHelpers._extendSeries(t,i)}))),this.updateHelpers.revertDefaultAxisMinMax()),t.xaxis&&(t=this.updateHelpers.forceXAxisUpdate(t)),t.yaxis&&(t=this.updateHelpers.forceYAxisUpdate(t)),n.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),t.theme&&(t=this.theme.updateThemeOptions(t)),this.updateHelpers._updateOptions(t,i,a,s,r)}},{key:"updateSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(t,e,i)}},{key:"appendSeries",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=this.w.config.series.slice();return a.push(t),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(a,e,i)}},{key:"appendData",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var a=i.w.config.series.slice(),s=0;s0&&void 0!==arguments[0])||arguments[0],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];this.series.resetSeries(t,e)}},{key:"addEventListener",value:function(t,e){this.events.addEventListener(t,e)}},{key:"removeEventListener",value:function(t,e){this.events.removeEventListener(t,e)}},{key:"addXaxisAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,a=this;i&&(a=i),a.annotations.addXaxisAnnotationExternal(t,e,a)}},{key:"addYaxisAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,a=this;i&&(a=i),a.annotations.addYaxisAnnotationExternal(t,e,a)}},{key:"addPointAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,a=this;i&&(a=i),a.annotations.addPointAnnotationExternal(t,e,a)}},{key:"clearAnnotations",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,e=this;t&&(e=t),e.annotations.clearAnnotations(e)}},{key:"removeAnnotation",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,i=this;e&&(i=e),i.annotations.removeAnnotation(i,t)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(t,e){return this.coreUtils.getSeriesTotalsXRange(t,e)}},{key:"getHighestValueInSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=new Ft(this.ctx);return e.getMinYMaxY(t).highestY}},{key:"getLowestValueInSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=new Ft(this.ctx);return e.getMinYMaxY(t).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(t,e){return this.updateHelpers.toggleDataPointSelection(t,e)}},{key:"zoomX",value:function(t,e){this.ctx.toolbar.zoomUpdateOptions(t,e)}},{key:"setLocale",value:function(t){this.localization.setCurrentLocaleValues(t)}},{key:"dataURI",value:function(t){return new Tt(this.ctx).dataURI(t)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var t=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout((function(){t.w.globals.resized=!0,t.w.globals.dataChanged=!1,t.ctx.update()}),150)}},{key:"_windowResizeHandler",value:function(){var t=this.w.config.chart.redrawOnWindowResize;"function"==typeof t&&(t=t()),t&&this._windowResize()}}])&&xa(e.prototype,i),a&&xa(e,a),t}()},957:()=>{window.TreemapSquared={},function(){"use strict";window.TreemapSquared.generate=function(){function t(e,i,a,s){this.xoffset=e,this.yoffset=i,this.height=s,this.width=a,this.shortestEdge=function(){return Math.min(this.height,this.width)},this.getCoordinates=function(t){var e,i=[],a=this.xoffset,s=this.yoffset,n=r(t)/this.height,o=r(t)/this.width;if(this.width>=this.height)for(e=0;e=this.height){var a=e/this.height,s=this.width-a;i=new t(this.xoffset+a,this.yoffset,s,this.height)}else{var r=e/this.width,n=this.height-r;i=new t(this.xoffset,this.yoffset+r,this.width,n)}return i}}function e(e,a,s,n,o){return n=void 0===n?0:n,o=void 0===o?0:o,function(t){var e,i,a=[];for(e=0;e=a(s,i))}(e,l=t[0],o)?(e.push(l),i(t.slice(1),e,s,n)):(c=s.cutArea(r(e),n),n.push(s.getCoordinates(e)),i(t,[],c,n)),n;n.push(s.getCoordinates(e))}function a(t,e){var i=Math.min.apply(Math,t),a=Math.max.apply(Math,t),s=r(t);return Math.max(Math.pow(e,2)*a/Math.pow(s,2),Math.pow(s,2)/(Math.pow(e,2)*i))}function s(t){return t&&t.constructor===Array}function r(t){var e,i=0;for(e=0;en.maxX-i.width&&(o=(s=n.maxX-i.width)-this.startPoints.box.x),null!=n.minY&&rn.maxY-i.height&&(l=(r=n.maxY-i.height)-this.startPoints.box.y),null!=n.snapToGrid&&(s-=s%n.snapToGrid,r-=r%n.snapToGrid,o-=o%n.snapToGrid,l-=l%n.snapToGrid),this.el instanceof SVG.G?this.el.matrix(this.startPoints.transform).transform({x:o,y:l},!0):this.el.move(s,r));return a},e.prototype.end=function(t){var e=this.drag(t);this.el.fire("dragend",{event:t,p:e,m:this.m,handler:this}),SVG.off(window,"mousemove.drag"),SVG.off(window,"touchmove.drag"),SVG.off(window,"mouseup.drag"),SVG.off(window,"touchend.drag")},SVG.extend(SVG.Element,{draggable:function(i,a){"function"!=typeof i&&"object"!=t(i)||(a=i,i=!0);var s=this.remember("_draggable")||new e(this);return(i=void 0===i||i)?s.init(a||{},i):(this.off("mousedown.drag"),this.off("touchstart.drag")),this}})}).call(this)},137:function(){(function(){SVG.Filter=SVG.invent({create:"filter",inherit:SVG.Parent,extend:{source:"SourceGraphic",sourceAlpha:"SourceAlpha",background:"BackgroundImage",backgroundAlpha:"BackgroundAlpha",fill:"FillPaint",stroke:"StrokePaint",autoSetIn:!0,put:function(t,e){return this.add(t,e),!t.attr("in")&&this.autoSetIn&&t.attr("in",this.source),t.attr("result")||t.attr("result",t),t},blend:function(t,e,i){return this.put(new SVG.BlendEffect(t,e,i))},colorMatrix:function(t,e){return this.put(new SVG.ColorMatrixEffect(t,e))},convolveMatrix:function(t){return this.put(new SVG.ConvolveMatrixEffect(t))},componentTransfer:function(t){return this.put(new SVG.ComponentTransferEffect(t))},composite:function(t,e,i){return this.put(new SVG.CompositeEffect(t,e,i))},flood:function(t,e){return this.put(new SVG.FloodEffect(t,e))},offset:function(t,e){return this.put(new SVG.OffsetEffect(t,e))},image:function(t){return this.put(new SVG.ImageEffect(t))},merge:function(){var t=[void 0];for(var e in arguments)t.push(arguments[e]);return this.put(new(SVG.MergeEffect.bind.apply(SVG.MergeEffect,t)))},gaussianBlur:function(t,e){return this.put(new SVG.GaussianBlurEffect(t,e))},morphology:function(t,e){return this.put(new SVG.MorphologyEffect(t,e))},diffuseLighting:function(t,e,i){return this.put(new SVG.DiffuseLightingEffect(t,e,i))},displacementMap:function(t,e,i,a,s){return this.put(new SVG.DisplacementMapEffect(t,e,i,a,s))},specularLighting:function(t,e,i,a){return this.put(new SVG.SpecularLightingEffect(t,e,i,a))},tile:function(){return this.put(new SVG.TileEffect)},turbulence:function(t,e,i,a,s){return this.put(new SVG.TurbulenceEffect(t,e,i,a,s))},toString:function(){return"url(#"+this.attr("id")+")"}}}),SVG.extend(SVG.Defs,{filter:function(t){var e=this.put(new SVG.Filter);return"function"==typeof t&&t.call(e,e),e}}),SVG.extend(SVG.Container,{filter:function(t){return this.defs().filter(t)}}),SVG.extend(SVG.Element,SVG.G,SVG.Nested,{filter:function(t){return this.filterer=t instanceof SVG.Element?t:this.doc().filter(t),this.doc()&&this.filterer.doc()!==this.doc()&&this.doc().defs().add(this.filterer),this.attr("filter",this.filterer),this.filterer},unfilter:function(t){return this.filterer&&!0===t&&this.filterer.remove(),delete this.filterer,this.attr("filter",null)}}),SVG.Effect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(t){return null==t?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",t)},result:function(t){return null==t?this.attr("result"):this.attr("result",t)},toString:function(){return this.result()}}}),SVG.ParentEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Parent,extend:{in:function(t){return null==t?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",t)},result:function(t){return null==t?this.attr("result"):this.attr("result",t)},toString:function(){return this.result()}}});var t={blend:function(t,e){return this.parent()&&this.parent().blend(this,t,e)},colorMatrix:function(t,e){return this.parent()&&this.parent().colorMatrix(t,e).in(this)},convolveMatrix:function(t){return this.parent()&&this.parent().convolveMatrix(t).in(this)},componentTransfer:function(t){return this.parent()&&this.parent().componentTransfer(t).in(this)},composite:function(t,e){return this.parent()&&this.parent().composite(this,t,e)},flood:function(t,e){return this.parent()&&this.parent().flood(t,e)},offset:function(t,e){return this.parent()&&this.parent().offset(t,e).in(this)},image:function(t){return this.parent()&&this.parent().image(t)},merge:function(){return this.parent()&&this.parent().merge.apply(this.parent(),[this].concat(arguments))},gaussianBlur:function(t,e){return this.parent()&&this.parent().gaussianBlur(t,e).in(this)},morphology:function(t,e){return this.parent()&&this.parent().morphology(t,e).in(this)},diffuseLighting:function(t,e,i){return this.parent()&&this.parent().diffuseLighting(t,e,i).in(this)},displacementMap:function(t,e,i,a){return this.parent()&&this.parent().displacementMap(this,t,e,i,a)},specularLighting:function(t,e,i,a){return this.parent()&&this.parent().specularLighting(t,e,i,a).in(this)},tile:function(){return this.parent()&&this.parent().tile().in(this)},turbulence:function(t,e,i,a,s){return this.parent()&&this.parent().turbulence(t,e,i,a,s).in(this)}};SVG.extend(SVG.Effect,t),SVG.extend(SVG.ParentEffect,t),SVG.ChildEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(t){this.attr("in",t)}}});var e={blend:function(t,e,i){this.attr({in:t,in2:e,mode:i||"normal"})},colorMatrix:function(t,e){"matrix"==t&&(e=s(e)),this.attr({type:t,values:void 0===e?null:e})},convolveMatrix:function(t){t=s(t),this.attr({order:Math.sqrt(t.split(" ").length),kernelMatrix:t})},composite:function(t,e,i){this.attr({in:t,in2:e,operator:i})},flood:function(t,e){this.attr("flood-color",t),null!=e&&this.attr("flood-opacity",e)},offset:function(t,e){this.attr({dx:t,dy:e})},image:function(t){this.attr("href",t,SVG.xlink)},displacementMap:function(t,e,i,a,s){this.attr({in:t,in2:e,scale:i,xChannelSelector:a,yChannelSelector:s})},gaussianBlur:function(t,e){null!=t||null!=e?this.attr("stdDeviation",r(Array.prototype.slice.call(arguments))):this.attr("stdDeviation","0 0")},morphology:function(t,e){this.attr({operator:t,radius:e})},tile:function(){},turbulence:function(t,e,i,a,s){this.attr({numOctaves:e,seed:i,stitchTiles:a,baseFrequency:t,type:s})}},i={merge:function(){var t;if(arguments[0]instanceof SVG.Set){var e=this;arguments[0].each((function(t){this instanceof SVG.MergeNode?e.put(this):(this instanceof SVG.Effect||this instanceof SVG.ParentEffect)&&e.put(new SVG.MergeNode(this))}))}else{t=Array.isArray(arguments[0])?arguments[0]:arguments;for(var i=0;i{!function(){"use strict";function t(t,s,r,n,o,l,c){for(var h=t.slice(s,r||c),d=n.slice(o,l||c),u=0,g={pos:[0,0],start:[0,0]},f={pos:[0,0],start:[0,0]};h[u]=e.call(g,h[u]),d[u]=e.call(f,d[u]),h[u][0]!=d[u][0]||"M"==h[u][0]||"A"==h[u][0]&&(h[u][4]!=d[u][4]||h[u][5]!=d[u][5])?(Array.prototype.splice.apply(h,[u,1].concat(a.call(g,h[u]))),Array.prototype.splice.apply(d,[u,1].concat(a.call(f,d[u])))):(h[u]=i.call(g,h[u]),d[u]=i.call(f,d[u])),++u!=h.length||u!=d.length;)u==h.length&&h.push(["C",g.pos[0],g.pos[1],g.pos[0],g.pos[1],g.pos[0],g.pos[1]]),u==d.length&&d.push(["C",f.pos[0],f.pos[1],f.pos[0],f.pos[1],f.pos[0],f.pos[1]]);return{start:h,dest:d}}function e(t){switch(t[0]){case"z":case"Z":t[0]="L",t[1]=this.start[0],t[2]=this.start[1];break;case"H":t[0]="L",t[2]=this.pos[1];break;case"V":t[0]="L",t[2]=t[1],t[1]=this.pos[0];break;case"T":t[0]="Q",t[3]=t[1],t[4]=t[2],t[1]=this.reflection[1],t[2]=this.reflection[0];break;case"S":t[0]="C",t[6]=t[4],t[5]=t[3],t[4]=t[2],t[3]=t[1],t[2]=this.reflection[1],t[1]=this.reflection[0]}return t}function i(t){var e=t.length;return this.pos=[t[e-2],t[e-1]],-1!="SCQT".indexOf(t[0])&&(this.reflection=[2*this.pos[0]-t[e-4],2*this.pos[1]-t[e-3]]),t}function a(t){var e=[t];switch(t[0]){case"M":return this.pos=this.start=[t[1],t[2]],e;case"L":t[5]=t[3]=t[1],t[6]=t[4]=t[2],t[1]=this.pos[0],t[2]=this.pos[1];break;case"Q":t[6]=t[4],t[5]=t[3],t[4]=1*t[4]/3+2*t[2]/3,t[3]=1*t[3]/3+2*t[1]/3,t[2]=1*this.pos[1]/3+2*t[2]/3,t[1]=1*this.pos[0]/3+2*t[1]/3;break;case"A":t=(e=function(t,e){var i,a,s,r,n,o,l,c,h,d,u,g,f,p,x,b,v,m,y,w,k,A,S,C,P,L,T=Math.abs(e[1]),O=Math.abs(e[2]),E=e[3]%360,I=e[4],M=e[5],z=e[6],X=e[7],Y=new SVG.Point(t),F=new SVG.Point(z,X),D=[];if(0===T||0===O||Y.x===F.x&&Y.y===F.y)return[["C",Y.x,Y.y,F.x,F.y,F.x,F.y]];for((a=(i=new SVG.Point((Y.x-F.x)/2,(Y.y-F.y)/2).transform((new SVG.Matrix).rotate(E))).x*i.x/(T*T)+i.y*i.y/(O*O))>1&&(T*=a=Math.sqrt(a),O*=a),s=(new SVG.Matrix).rotate(E).scale(1/T,1/O).rotate(-E),Y=Y.transform(s),o=(r=[(F=F.transform(s)).x-Y.x,F.y-Y.y])[0]*r[0]+r[1]*r[1],n=Math.sqrt(o),r[0]/=n,r[1]/=n,l=o<4?Math.sqrt(1-o/4):0,I===M&&(l*=-1),c=new SVG.Point((F.x+Y.x)/2+l*-r[1],(F.y+Y.y)/2+l*r[0]),h=new SVG.Point(Y.x-c.x,Y.y-c.y),d=new SVG.Point(F.x-c.x,F.y-c.y),u=Math.acos(h.x/Math.sqrt(h.x*h.x+h.y*h.y)),h.y<0&&(u*=-1),g=Math.acos(d.x/Math.sqrt(d.x*d.x+d.y*d.y)),d.y<0&&(g*=-1),M&&u>g&&(g+=2*Math.PI),!M&&u{!function(){"use strict";(function(){function t(t){t.remember("_resizeHandler",this),this.el=t,this.parameters={},this.lastUpdateCall=null,this.p=t.doc().node.createSVGPoint()}t.prototype.transformPoint=function(t,e,i){return this.p.x=t-(this.offset.x-window.pageXOffset),this.p.y=e-(this.offset.y-window.pageYOffset),this.p.matrixTransform(i||this.m)},t.prototype._extractPosition=function(t){return{x:null!=t.clientX?t.clientX:t.touches[0].clientX,y:null!=t.clientY?t.clientY:t.touches[0].clientY}},t.prototype.init=function(t){var e=this;if(this.stop(),"stop"!==t){for(var i in this.options={},this.el.resize.defaults)this.options[i]=this.el.resize.defaults[i],void 0!==t[i]&&(this.options[i]=t[i]);this.el.on("lt.resize",(function(t){e.resize(t||window.event)})),this.el.on("rt.resize",(function(t){e.resize(t||window.event)})),this.el.on("rb.resize",(function(t){e.resize(t||window.event)})),this.el.on("lb.resize",(function(t){e.resize(t||window.event)})),this.el.on("t.resize",(function(t){e.resize(t||window.event)})),this.el.on("r.resize",(function(t){e.resize(t||window.event)})),this.el.on("b.resize",(function(t){e.resize(t||window.event)})),this.el.on("l.resize",(function(t){e.resize(t||window.event)})),this.el.on("rot.resize",(function(t){e.resize(t||window.event)})),this.el.on("point.resize",(function(t){e.resize(t||window.event)})),this.update()}},t.prototype.stop=function(){return this.el.off("lt.resize"),this.el.off("rt.resize"),this.el.off("rb.resize"),this.el.off("lb.resize"),this.el.off("t.resize"),this.el.off("r.resize"),this.el.off("b.resize"),this.el.off("l.resize"),this.el.off("rot.resize"),this.el.off("point.resize"),this},t.prototype.resize=function(t){var e=this;this.m=this.el.node.getScreenCTM().inverse(),this.offset={x:window.pageXOffset,y:window.pageYOffset};var i=this._extractPosition(t.detail.event);if(this.parameters={type:this.el.type,p:this.transformPoint(i.x,i.y),x:t.detail.x,y:t.detail.y,box:this.el.bbox(),rotation:this.el.transform().rotation},"text"===this.el.type&&(this.parameters.fontSize=this.el.attr()["font-size"]),void 0!==t.detail.i){var a=this.el.array().valueOf();this.parameters.i=t.detail.i,this.parameters.pointCoords=[a[t.detail.i][0],a[t.detail.i][1]]}switch(t.type){case"lt":this.calc=function(t,e){var i=this.snapToGrid(t,e);if(this.parameters.box.width-i[0]>0&&this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x+i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-i[0]);i=this.checkAspectRatio(i),this.el.move(this.parameters.box.x+i[0],this.parameters.box.y+i[1]).size(this.parameters.box.width-i[0],this.parameters.box.height-i[1])}};break;case"rt":this.calc=function(t,e){var i=this.snapToGrid(t,e,2);if(this.parameters.box.width+i[0]>0&&this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x-i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+i[0]);i=this.checkAspectRatio(i,!0),this.el.move(this.parameters.box.x,this.parameters.box.y+i[1]).size(this.parameters.box.width+i[0],this.parameters.box.height-i[1])}};break;case"rb":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.width+i[0]>0&&this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x-i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+i[0]);i=this.checkAspectRatio(i),this.el.move(this.parameters.box.x,this.parameters.box.y).size(this.parameters.box.width+i[0],this.parameters.box.height+i[1])}};break;case"lb":this.calc=function(t,e){var i=this.snapToGrid(t,e,1);if(this.parameters.box.width-i[0]>0&&this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x+i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-i[0]);i=this.checkAspectRatio(i,!0),this.el.move(this.parameters.box.x+i[0],this.parameters.box.y).size(this.parameters.box.width-i[0],this.parameters.box.height+i[1])}};break;case"t":this.calc=function(t,e){var i=this.snapToGrid(t,e,2);if(this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y+i[1]).height(this.parameters.box.height-i[1])}};break;case"r":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.width+i[0]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y).width(this.parameters.box.width+i[0])}};break;case"b":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y).height(this.parameters.box.height+i[1])}};break;case"l":this.calc=function(t,e){var i=this.snapToGrid(t,e,1);if(this.parameters.box.width-i[0]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x+i[0],this.parameters.box.y).width(this.parameters.box.width-i[0])}};break;case"rot":this.calc=function(t,e){var i=t+this.parameters.p.x,a=e+this.parameters.p.y,s=Math.atan2(this.parameters.p.y-this.parameters.box.y-this.parameters.box.height/2,this.parameters.p.x-this.parameters.box.x-this.parameters.box.width/2),r=Math.atan2(a-this.parameters.box.y-this.parameters.box.height/2,i-this.parameters.box.x-this.parameters.box.width/2),n=this.parameters.rotation+180*(r-s)/Math.PI+this.options.snapToAngle/2;this.el.center(this.parameters.box.cx,this.parameters.box.cy).rotate(n-n%this.options.snapToAngle,this.parameters.box.cx,this.parameters.box.cy)};break;case"point":this.calc=function(t,e){var i=this.snapToGrid(t,e,this.parameters.pointCoords[0],this.parameters.pointCoords[1]),a=this.el.array().valueOf();a[this.parameters.i][0]=this.parameters.pointCoords[0]+i[0],a[this.parameters.i][1]=this.parameters.pointCoords[1]+i[1],this.el.plot(a)}}this.el.fire("resizestart",{dx:this.parameters.x,dy:this.parameters.y,event:t}),SVG.on(window,"touchmove.resize",(function(t){e.update(t||window.event)})),SVG.on(window,"touchend.resize",(function(){e.done()})),SVG.on(window,"mousemove.resize",(function(t){e.update(t||window.event)})),SVG.on(window,"mouseup.resize",(function(){e.done()}))},t.prototype.update=function(t){if(t){var e=this._extractPosition(t),i=this.transformPoint(e.x,e.y),a=i.x-this.parameters.p.x,s=i.y-this.parameters.p.y;this.lastUpdateCall=[a,s],this.calc(a,s),this.el.fire("resizing",{dx:a,dy:s,event:t})}else this.lastUpdateCall&&this.calc(this.lastUpdateCall[0],this.lastUpdateCall[1])},t.prototype.done=function(){this.lastUpdateCall=null,SVG.off(window,"mousemove.resize"),SVG.off(window,"mouseup.resize"),SVG.off(window,"touchmove.resize"),SVG.off(window,"touchend.resize"),this.el.fire("resizedone")},t.prototype.snapToGrid=function(t,e,i,a){var s;return void 0!==a?s=[(i+t)%this.options.snapToGrid,(a+e)%this.options.snapToGrid]:(i=null==i?3:i,s=[(this.parameters.box.x+t+(1&i?0:this.parameters.box.width))%this.options.snapToGrid,(this.parameters.box.y+e+(2&i?0:this.parameters.box.height))%this.options.snapToGrid]),t<0&&(s[0]-=this.options.snapToGrid),e<0&&(s[1]-=this.options.snapToGrid),t-=Math.abs(s[0])n.maxX&&(t=n.maxX-s),void 0!==n.minY&&r+en.maxY&&(e=n.maxY-r),[t,e]},t.prototype.checkAspectRatio=function(t,e){if(!this.options.saveAspectRatio)return t;var i=t.slice(),a=this.parameters.box.width/this.parameters.box.height,s=this.parameters.box.width+t[0],r=this.parameters.box.height-t[1],n=s/r;return na&&(i[0]=this.parameters.box.width-r*a,e&&(i[0]=-i[0])),i},SVG.extend(SVG.Element,{resize:function(e){return(this.remember("_resizeHandler")||new t(this)).init(e||{}),this}}),SVG.Element.prototype.resize.defaults={snapToAngle:.1,snapToGrid:1,constraint:{},saveAspectRatio:!1}}).call(this)}()},388:()=>{function t(e){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(e)}!function(){"use strict";function e(t){this.el=t,t.remember("_selectHandler",this),this.pointSelection={isSelected:!1},this.rectSelection={isSelected:!1},this.pointsList={lt:[0,0],rt:["width",0],rb:["width","height"],lb:[0,"height"],t:["width",0],r:["width","height"],b:["width","height"],l:[0,"height"]},this.pointCoord=function(t,e,i){var a="string"!=typeof t?t:e[t];return i?a/2:a},this.pointCoords=function(t,e){var i=this.pointsList[t];return{x:this.pointCoord(i[0],e,"t"===t||"b"===t),y:this.pointCoord(i[1],e,"r"===t||"l"===t)}}}e.prototype.init=function(t,e){var i=this.el.bbox();this.options={};var a=this.el.selectize.defaults.points;for(var s in this.el.selectize.defaults)this.options[s]=this.el.selectize.defaults[s],void 0!==e[s]&&(this.options[s]=e[s]);var r=["points","pointsExclude"];for(var s in r){var n=this.options[r[s]];"string"==typeof n?n=n.length>0?n.split(/\s*,\s*/i):[]:"boolean"==typeof n&&"points"===r[s]&&(n=n?a:[]),this.options[r[s]]=n}this.options.points=[a,this.options.points].reduce((function(t,e){return t.filter((function(t){return e.indexOf(t)>-1}))})),this.options.points=[this.options.points,this.options.pointsExclude].reduce((function(t,e){return t.filter((function(t){return e.indexOf(t)<0}))})),this.parent=this.el.parent(),this.nested=this.nested||this.parent.group(),this.nested.matrix(new SVG.Matrix(this.el).translate(i.x,i.y)),this.options.deepSelect&&-1!==["line","polyline","polygon"].indexOf(this.el.type)?this.selectPoints(t):this.selectRect(t),this.observe(),this.cleanup()},e.prototype.selectPoints=function(t){return this.pointSelection.isSelected=t,this.pointSelection.set||(this.pointSelection.set=this.parent.set(),this.drawPoints()),this},e.prototype.getPointArray=function(){var t=this.el.bbox();return this.el.array().valueOf().map((function(e){return[e[0]-t.x,e[1]-t.y]}))},e.prototype.drawPoints=function(){for(var t=this,e=this.getPointArray(),i=0,a=e.length;i=0;a--)if(t[a])for(var s in e)t[a].prototype[s]=e[s];i.Set&&i.Set.inherit&&i.Set.inherit()},i.invent=function(t){var e="function"==typeof t.create?t.create:function(){this.constructor.call(this,i.create(t.create))};return t.inherit&&(e.prototype=new t.inherit),t.extend&&i.extend(e,t.extend),t.construct&&i.extend(t.parent||i.Container,t.construct),e},i.adopt=function(e){return e?e.instance?e.instance:((a="svg"==e.nodeName?e.parentNode instanceof t.SVGElement?new i.Nested:new i.Doc:"linearGradient"==e.nodeName?new i.Gradient("linear"):"radialGradient"==e.nodeName?new i.Gradient("radial"):i[d(e.nodeName)]?new(i[d(e.nodeName)]):new i.Element(e)).type=e.nodeName,a.node=e,e.instance=a,a instanceof i.Doc&&a.namespace().defs(),a.setData(JSON.parse(e.getAttribute("svgjs:data"))||{}),a):null;var a},i.prepare=function(){var t=e.getElementsByTagName("body")[0],a=(t?new i.Doc(t):i.adopt(e.documentElement).nested()).size(2,0);i.parser={body:t||e.documentElement,draw:a.style("opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden").node,poly:a.polyline().node,path:a.path().node,native:i.create("svg")}},i.parser={native:i.create("svg")},e.addEventListener("DOMContentLoaded",(function(){i.parser.draw||i.prepare()}),!1),i.regex={numberAndUnit:/^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,transforms:/\)\s*,?\s*/,whitespace:/\s/g,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,delimiter:/[\s,]+/,hyphen:/([^e])\-/gi,pathLetters:/[MLHVCSQTAZ]/gi,isPathLetter:/[MLHVCSQTAZ]/i,numbersWithDots:/((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,dots:/\./g},i.utils={map:function(t,e){for(var i=t.length,a=[],s=0;s1?1:t,new i.Color({r:~~(this.r+(this.destination.r-this.r)*t),g:~~(this.g+(this.destination.g-this.g)*t),b:~~(this.b+(this.destination.b-this.b)*t)})):this}}),i.Color.test=function(t){return t+="",i.regex.isHex.test(t)||i.regex.isRgb.test(t)},i.Color.isRgb=function(t){return t&&"number"==typeof t.r&&"number"==typeof t.g&&"number"==typeof t.b},i.Color.isColor=function(t){return i.Color.isRgb(t)||i.Color.test(t)},i.Array=function(t,e){0==(t=(t||[]).valueOf()).length&&e&&(t=e.valueOf()),this.value=this.parse(t)},i.extend(i.Array,{toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(t){return t=t.valueOf(),Array.isArray(t)?t:this.split(t)}}),i.PointArray=function(t,e){i.Array.call(this,t,e||[[0,0]])},i.PointArray.prototype=new i.Array,i.PointArray.prototype.constructor=i.PointArray;for(var a={M:function(t,e,i){return e.x=i.x=t[0],e.y=i.y=t[1],["M",e.x,e.y]},L:function(t,e){return e.x=t[0],e.y=t[1],["L",t[0],t[1]]},H:function(t,e){return e.x=t[0],["H",t[0]]},V:function(t,e){return e.y=t[0],["V",t[0]]},C:function(t,e){return e.x=t[4],e.y=t[5],["C",t[0],t[1],t[2],t[3],t[4],t[5]]},Q:function(t,e){return e.x=t[2],e.y=t[3],["Q",t[0],t[1],t[2],t[3]]},Z:function(t,e,i){return e.x=i.x,e.y=i.y,["Z"]}},s="mlhvqtcsaz".split(""),n=0,o=s.length;nl);return r},bbox:function(){return i.parser.draw||i.prepare(),i.parser.path.setAttribute("d",this.toString()),i.parser.path.getBBox()}}),i.Number=i.invent({create:function(t,e){this.value=0,this.unit=e||"","number"==typeof t?this.value=isNaN(t)?0:isFinite(t)?t:t<0?-34e37:34e37:"string"==typeof t?(e=t.match(i.regex.numberAndUnit))&&(this.value=parseFloat(e[1]),"%"==e[5]?this.value/=100:"s"==e[5]&&(this.value*=1e3),this.unit=e[5]):t instanceof i.Number&&(this.value=t.valueOf(),this.unit=t.unit)},extend:{toString:function(){return("%"==this.unit?~~(1e8*this.value)/1e6:"s"==this.unit?this.value/1e3:this.value)+this.unit},toJSON:function(){return this.toString()},valueOf:function(){return this.value},plus:function(t){return t=new i.Number(t),new i.Number(this+t,this.unit||t.unit)},minus:function(t){return t=new i.Number(t),new i.Number(this-t,this.unit||t.unit)},times:function(t){return t=new i.Number(t),new i.Number(this*t,this.unit||t.unit)},divide:function(t){return t=new i.Number(t),new i.Number(this/t,this.unit||t.unit)},to:function(t){var e=new i.Number(this);return"string"==typeof t&&(e.unit=t),e},morph:function(t){return this.destination=new i.Number(t),t.relative&&(this.destination.value+=this.value),this},at:function(t){return this.destination?new i.Number(this.destination).minus(this).times(t).plus(this):this}}}),i.Element=i.invent({create:function(t){this._stroke=i.defaults.attrs.stroke,this._event=null,this.dom={},(this.node=t)&&(this.type=t.nodeName,this.node.instance=this,this._stroke=t.getAttribute("stroke")||this._stroke)},extend:{x:function(t){return this.attr("x",t)},y:function(t){return this.attr("y",t)},cx:function(t){return null==t?this.x()+this.width()/2:this.x(t-this.width()/2)},cy:function(t){return null==t?this.y()+this.height()/2:this.y(t-this.height()/2)},move:function(t,e){return this.x(t).y(e)},center:function(t,e){return this.cx(t).cy(e)},width:function(t){return this.attr("width",t)},height:function(t){return this.attr("height",t)},size:function(t,e){var a=g(this,t,e);return this.width(new i.Number(a.width)).height(new i.Number(a.height))},clone:function(t){this.writeDataToDom();var e=x(this.node.cloneNode(!0));return t?t.add(e):this.after(e),e},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(t){return this.after(t).remove(),t},addTo:function(t){return t.put(this)},putIn:function(t){return t.add(this)},id:function(t){return this.attr("id",t)},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return"none"!=this.style("display")},toString:function(){return this.attr("id")},classes:function(){var t=this.attr("class");return null==t?[]:t.trim().split(i.regex.delimiter)},hasClass:function(t){return-1!=this.classes().indexOf(t)},addClass:function(t){if(!this.hasClass(t)){var e=this.classes();e.push(t),this.attr("class",e.join(" "))}return this},removeClass:function(t){return this.hasClass(t)&&this.attr("class",this.classes().filter((function(e){return e!=t})).join(" ")),this},toggleClass:function(t){return this.hasClass(t)?this.removeClass(t):this.addClass(t)},reference:function(t){return i.get(this.attr(t))},parent:function(e){var a=this;if(!a.node.parentNode)return null;if(a=i.adopt(a.node.parentNode),!e)return a;for(;a&&a.node instanceof t.SVGElement;){if("string"==typeof e?a.matches(e):a instanceof e)return a;if(!a.node.parentNode||"#document"==a.node.parentNode.nodeName)return null;a=i.adopt(a.node.parentNode)}},doc:function(){return this instanceof i.Doc?this:this.parent(i.Doc)},parents:function(t){var e=[],i=this;do{if(!(i=i.parent(t))||!i.node)break;e.push(i)}while(i.parent);return e},matches:function(t){return function(t,e){return(t.matches||t.matchesSelector||t.msMatchesSelector||t.mozMatchesSelector||t.webkitMatchesSelector||t.oMatchesSelector).call(t,e)}(this.node,t)},native:function(){return this.node},svg:function(t){var a=e.createElement("svg");if(!(t&&this instanceof i.Parent))return a.appendChild(t=e.createElement("svg")),this.writeDataToDom(),t.appendChild(this.node.cloneNode(!0)),a.innerHTML.replace(/^/,"").replace(/<\/svg>$/,"");a.innerHTML=""+t.replace(/\n/,"").replace(/<([\w:-]+)([^<]+?)\/>/g,"<$1$2>")+"";for(var s=0,r=a.firstChild.childNodes.length;s":function(t){return-Math.cos(t*Math.PI)/2+.5},">":function(t){return Math.sin(t*Math.PI/2)},"<":function(t){return 1-Math.cos(t*Math.PI/2)}},i.morph=function(t){return function(e,a){return new i.MorphObj(e,a).at(t)}},i.Situation=i.invent({create:function(t){this.init=!1,this.reversed=!1,this.reversing=!1,this.duration=new i.Number(t.duration).valueOf(),this.delay=new i.Number(t.delay).valueOf(),this.start=+new Date+this.delay,this.finish=this.start+this.duration,this.ease=t.ease,this.loop=0,this.loops=!1,this.animations={},this.attrs={},this.styles={},this.transforms=[],this.once={}}}),i.FX=i.invent({create:function(t){this._target=t,this.situations=[],this.active=!1,this.situation=null,this.paused=!1,this.lastPos=0,this.pos=0,this.absPos=0,this._speed=1},extend:{animate:function(t,e,a){"object"===r(t)&&(e=t.ease,a=t.delay,t=t.duration);var s=new i.Situation({duration:t||1e3,delay:a||0,ease:i.easing[e||"-"]||e});return this.queue(s),this},target:function(t){return t&&t instanceof i.Element?(this._target=t,this):this._target},timeToAbsPos:function(t){return(t-this.situation.start)/(this.situation.duration/this._speed)},absPosToTime:function(t){return this.situation.duration/this._speed*t+this.situation.start},startAnimFrame:function(){this.stopAnimFrame(),this.animationFrame=t.requestAnimationFrame(function(){this.step()}.bind(this))},stopAnimFrame:function(){t.cancelAnimationFrame(this.animationFrame)},start:function(){return!this.active&&this.situation&&(this.active=!0,this.startCurrent()),this},startCurrent:function(){return this.situation.start=+new Date+this.situation.delay/this._speed,this.situation.finish=this.situation.start+this.situation.duration/this._speed,this.initAnimations().step()},queue:function(t){return("function"==typeof t||t instanceof i.Situation)&&this.situations.push(t),this.situation||(this.situation=this.situations.shift()),this},dequeue:function(){return this.stop(),this.situation=this.situations.shift(),this.situation&&(this.situation instanceof i.Situation?this.start():this.situation.call(this)),this},initAnimations:function(){var t,e=this.situation;if(e.init)return this;for(var a in e.animations){t=this.target()[a](),Array.isArray(t)||(t=[t]),Array.isArray(e.animations[a])||(e.animations[a]=[e.animations[a]]);for(var s=t.length;s--;)e.animations[a][s]instanceof i.Number&&(t[s]=new i.Number(t[s])),e.animations[a][s]=t[s].morph(e.animations[a][s])}for(var a in e.attrs)e.attrs[a]=new i.MorphObj(this.target().attr(a),e.attrs[a]);for(var a in e.styles)e.styles[a]=new i.MorphObj(this.target().style(a),e.styles[a]);return e.initialTransformation=this.target().matrixify(),e.init=!0,this},clearQueue:function(){return this.situations=[],this},clearCurrent:function(){return this.situation=null,this},stop:function(t,e){var i=this.active;return this.active=!1,e&&this.clearQueue(),t&&this.situation&&(!i&&this.startCurrent(),this.atEnd()),this.stopAnimFrame(),this.clearCurrent()},after:function(t){var e=this.last();return this.target().on("finished.fx",(function i(a){a.detail.situation==e&&(t.call(this,e),this.off("finished.fx",i))})),this._callStart()},during:function(t){var e=this.last(),a=function(a){a.detail.situation==e&&t.call(this,a.detail.pos,i.morph(a.detail.pos),a.detail.eased,e)};return this.target().off("during.fx",a).on("during.fx",a),this.after((function(){this.off("during.fx",a)})),this._callStart()},afterAll:function(t){var e=function e(i){t.call(this),this.off("allfinished.fx",e)};return this.target().off("allfinished.fx",e).on("allfinished.fx",e),this._callStart()},last:function(){return this.situations.length?this.situations[this.situations.length-1]:this.situation},add:function(t,e,i){return this.last()[i||"animations"][t]=e,this._callStart()},step:function(t){var e,i,a;t||(this.absPos=this.timeToAbsPos(+new Date)),!1!==this.situation.loops?(e=Math.max(this.absPos,0),i=Math.floor(e),!0===this.situation.loops||ithis.lastPos&&r<=s&&(this.situation.once[r].call(this.target(),this.pos,s),delete this.situation.once[r]);return this.active&&this.target().fire("during",{pos:this.pos,eased:s,fx:this,situation:this.situation}),this.situation?(this.eachAt(),1==this.pos&&!this.situation.reversed||this.situation.reversed&&0==this.pos?(this.stopAnimFrame(),this.target().fire("finished",{fx:this,situation:this.situation}),this.situations.length||(this.target().fire("allfinished"),this.situations.length||(this.target().off(".fx"),this.active=!1)),this.active?this.dequeue():this.clearCurrent()):!this.paused&&this.active&&this.startAnimFrame(),this.lastPos=s,this):this},eachAt:function(){var t,e=this,a=this.target(),s=this.situation;for(var r in s.animations)t=[].concat(s.animations[r]).map((function(t){return"string"!=typeof t&&t.at?t.at(s.ease(e.pos),e.pos):t})),a[r].apply(a,t);for(var r in s.attrs)t=[r].concat(s.attrs[r]).map((function(t){return"string"!=typeof t&&t.at?t.at(s.ease(e.pos),e.pos):t})),a.attr.apply(a,t);for(var r in s.styles)t=[r].concat(s.styles[r]).map((function(t){return"string"!=typeof t&&t.at?t.at(s.ease(e.pos),e.pos):t})),a.style.apply(a,t);if(s.transforms.length){t=s.initialTransformation,r=0;for(var n=s.transforms.length;r=0;--a)this[m[a]]=null!=t[m[a]]?t[m[a]]:e[m[a]]},extend:{extract:function(){var t=f(this,0,1),e=(f(this,1,0),180/Math.PI*Math.atan2(t.y,t.x)-90);return{x:this.e,y:this.f,transformedX:(this.e*Math.cos(e*Math.PI/180)+this.f*Math.sin(e*Math.PI/180))/Math.sqrt(this.a*this.a+this.b*this.b),transformedY:(this.f*Math.cos(e*Math.PI/180)+this.e*Math.sin(-e*Math.PI/180))/Math.sqrt(this.c*this.c+this.d*this.d),rotation:e,a:this.a,b:this.b,c:this.c,d:this.d,e:this.e,f:this.f,matrix:new i.Matrix(this)}},clone:function(){return new i.Matrix(this)},morph:function(t){return this.destination=new i.Matrix(t),this},multiply:function(t){return new i.Matrix(this.native().multiply(function(t){return t instanceof i.Matrix||(t=new i.Matrix(t)),t}(t).native()))},inverse:function(){return new i.Matrix(this.native().inverse())},translate:function(t,e){return new i.Matrix(this.native().translate(t||0,e||0))},native:function(){for(var t=i.parser.native.createSVGMatrix(),e=m.length-1;e>=0;e--)t[m[e]]=this[m[e]];return t},toString:function(){return"matrix("+v(this.a)+","+v(this.b)+","+v(this.c)+","+v(this.d)+","+v(this.e)+","+v(this.f)+")"}},parent:i.Element,construct:{ctm:function(){return new i.Matrix(this.node.getCTM())},screenCTM:function(){if(this instanceof i.Nested){var t=this.rect(1,1),e=t.node.getScreenCTM();return t.remove(),new i.Matrix(e)}return new i.Matrix(this.node.getScreenCTM())}}}),i.Point=i.invent({create:function(t,e){var i;i=Array.isArray(t)?{x:t[0],y:t[1]}:"object"===r(t)?{x:t.x,y:t.y}:null!=t?{x:t,y:null!=e?e:t}:{x:0,y:0},this.x=i.x,this.y=i.y},extend:{clone:function(){return new i.Point(this)},morph:function(t,e){return this.destination=new i.Point(t,e),this}}}),i.extend(i.Element,{point:function(t,e){return new i.Point(t,e).transform(this.screenCTM().inverse())}}),i.extend(i.Element,{attr:function(t,e,a){if(null==t){for(t={},a=(e=this.node.attributes).length-1;a>=0;a--)t[e[a].nodeName]=i.regex.isNumber.test(e[a].nodeValue)?parseFloat(e[a].nodeValue):e[a].nodeValue;return t}if("object"===r(t))for(var s in t)this.attr(s,t[s]);else if(null===e)this.node.removeAttribute(t);else{if(null==e)return null==(e=this.node.getAttribute(t))?i.defaults.attrs[t]:i.regex.isNumber.test(e)?parseFloat(e):e;"stroke-width"==t?this.attr("stroke",parseFloat(e)>0?this._stroke:null):"stroke"==t&&(this._stroke=e),"fill"!=t&&"stroke"!=t||(i.regex.isImage.test(e)&&(e=this.doc().defs().image(e,0,0)),e instanceof i.Image&&(e=this.doc().defs().pattern(0,0,(function(){this.add(e)})))),"number"==typeof e?e=new i.Number(e):i.Color.isColor(e)?e=new i.Color(e):Array.isArray(e)&&(e=new i.Array(e)),"leading"==t?this.leading&&this.leading(e):"string"==typeof a?this.node.setAttributeNS(a,t,e.toString()):this.node.setAttribute(t,e.toString()),!this.rebuild||"font-size"!=t&&"x"!=t||this.rebuild(t,e)}return this}}),i.extend(i.Element,{transform:function(t,e){var a;return"object"!==r(t)?(a=new i.Matrix(this).extract(),"string"==typeof t?a[t]:a):(a=new i.Matrix(this),e=!!e||!!t.relative,null!=t.a&&(a=e?a.multiply(new i.Matrix(t)):new i.Matrix(t)),this.attr("transform",a))}}),i.extend(i.Element,{untransform:function(){return this.attr("transform",null)},matrixify:function(){return(this.attr("transform")||"").split(i.regex.transforms).slice(0,-1).map((function(t){var e=t.trim().split("(");return[e[0],e[1].split(i.regex.delimiter).map((function(t){return parseFloat(t)}))]})).reduce((function(t,e){return"matrix"==e[0]?t.multiply(p(e[1])):t[e[0]].apply(t,e[1])}),new i.Matrix)},toParent:function(t){if(this==t)return this;var e=this.screenCTM(),i=t.screenCTM().inverse();return this.addTo(t).untransform().transform(i.multiply(e)),this},toDoc:function(){return this.toParent(this.doc())}}),i.Transformation=i.invent({create:function(t,e){if(arguments.length>1&&"boolean"!=typeof e)return this.constructor.call(this,[].slice.call(arguments));if(Array.isArray(t))for(var i=0,a=this.arguments.length;i=0},index:function(t){return[].slice.call(this.node.childNodes).indexOf(t.node)},get:function(t){return i.adopt(this.node.childNodes[t])},first:function(){return this.get(0)},last:function(){return this.get(this.node.childNodes.length-1)},each:function(t,e){for(var a=this.children(),s=0,r=a.length;s=0;a--)e.childNodes[a]instanceof t.SVGElement&&x(e.childNodes[a]);return i.adopt(e).id(i.eid(e.nodeName))}function b(t){return null==t.x&&(t.x=0,t.y=0,t.width=0,t.height=0),t.w=t.width,t.h=t.height,t.x2=t.x+t.width,t.y2=t.y+t.height,t.cx=t.x+t.width/2,t.cy=t.y+t.height/2,t}function v(t){return Math.abs(t)>1e-37?t:0}["fill","stroke"].forEach((function(t){var e={};e[t]=function(e){if(void 0===e)return this;if("string"==typeof e||i.Color.isRgb(e)||e&&"function"==typeof e.fill)this.attr(t,e);else for(var a=l[t].length-1;a>=0;a--)null!=e[l[t][a]]&&this.attr(l.prefix(t,l[t][a]),e[l[t][a]]);return this},i.extend(i.Element,i.FX,e)})),i.extend(i.Element,i.FX,{translate:function(t,e){return this.transform({x:t,y:e})},matrix:function(t){return this.attr("transform",new i.Matrix(6==arguments.length?[].slice.call(arguments):t))},opacity:function(t){return this.attr("opacity",t)},dx:function(t){return this.x(new i.Number(t).plus(this instanceof i.FX?0:this.x()),!0)},dy:function(t){return this.y(new i.Number(t).plus(this instanceof i.FX?0:this.y()),!0)}}),i.extend(i.Path,{length:function(){return this.node.getTotalLength()},pointAt:function(t){return this.node.getPointAtLength(t)}}),i.Set=i.invent({create:function(t){Array.isArray(t)?this.members=t:this.clear()},extend:{add:function(){for(var t=[].slice.call(arguments),e=0,i=t.length;e-1&&this.members.splice(e,1),this},each:function(t){for(var e=0,i=this.members.length;e=0},index:function(t){return this.members.indexOf(t)},get:function(t){return this.members[t]},first:function(){return this.get(0)},last:function(){return this.get(this.members.length-1)},valueOf:function(){return this.members}},construct:{set:function(t){return new i.Set(t)}}}),i.FX.Set=i.invent({create:function(t){this.set=t}}),i.Set.inherit=function(){var t=[];for(var e in i.Shape.prototype)"function"==typeof i.Shape.prototype[e]&&"function"!=typeof i.Set.prototype[e]&&t.push(e);for(var e in t.forEach((function(t){i.Set.prototype[t]=function(){for(var e=0,a=this.members.length;e=0;t--)delete this.memory()[arguments[t]];return this},memory:function(){return this._memory||(this._memory={})}}),i.get=function(t){var a=e.getElementById(function(t){var e=(t||"").toString().match(i.regex.reference);if(e)return e[1]}(t)||t);return i.adopt(a)},i.select=function(t,a){return new i.Set(i.utils.map((a||e).querySelectorAll(t),(function(t){return i.adopt(t)})))},i.extend(i.Parent,{select:function(t){return i.select(t,this.node)}});var m="abcdef".split("");if("function"!=typeof t.CustomEvent){var y=function(t,i){i=i||{bubbles:!1,cancelable:!1,detail:void 0};var a=e.createEvent("CustomEvent");return a.initCustomEvent(t,i.bubbles,i.cancelable,i.detail),a};y.prototype=t.Event.prototype,i.CustomEvent=y}else i.CustomEvent=t.CustomEvent;return i}(s,s.document)}.call(e,i,e,t))||(t.exports=a)},681:()=>{!function(){function t(t){var e=t.__resizeTriggers__,i=e.firstElementChild,a=e.lastElementChild,s=i?i.firstElementChild:null;a&&(a.scrollLeft=a.scrollWidth,a.scrollTop=a.scrollHeight),s&&(s.style.width=i.offsetWidth+1+"px",s.style.height=i.offsetHeight+1+"px"),i&&(i.scrollLeft=i.scrollWidth,i.scrollTop=i.scrollHeight)}function e(e){var i=this;t(this),this.__resizeRAF__&&r(this.__resizeRAF__),this.__resizeRAF__=s((function(){(function(t){return t.offsetWidth!=t.__resizeLast__.width||t.offsetHeight!=t.__resizeLast__.height})(i)&&(i.__resizeLast__.width=i.offsetWidth,i.__resizeLast__.height=i.offsetHeight,i.__resizeListeners__.forEach((function(t){t.call(e)})))}))}var i,a,s=(i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||function(t){return window.setTimeout(t,20)},function(t){return i(t)}),r=(a=window.cancelAnimationFrame||window.mozCancelAnimationFrame||window.webkitCancelAnimationFrame||window.clearTimeout,function(t){return a(t)}),n=!1,o="animationstart",l="Webkit Moz O ms".split(" "),c="webkitAnimationStart animationstart oAnimationStart MSAnimationStart".split(" "),h=document.createElement("fakeelement");if(void 0!==h.style.animationName&&(n=!0),!1===n)for(var d=0;d
',i.appendChild(i.__resizeTriggers__),t(i),i.addEventListener("scroll",e,!0),o&&i.__resizeTriggers__.addEventListener(o,(function(e){"resizeanim"==e.animationName&&t(i)}))),i.__resizeListeners__.push(a)},window.removeResizeListener=function(t,i){t&&(t.__resizeListeners__.splice(t.__resizeListeners__.indexOf(i),1),t.__resizeListeners__.length||(t.removeEventListener("scroll",e),t.__resizeTriggers__.parentNode&&(t.__resizeTriggers__=!t.removeChild(t.__resizeTriggers__))))}}()},539:(t,e,i)=>{(e=i(43)(!1)).push([t.id,'.apexcharts-canvas {\n position: relative;\n user-select: none;\n /* cannot give overflow: hidden as it will crop tooltips which overflow outside chart area */\n}\n\n\n/* scrollbar is not visible by default for legend, hence forcing the visibility */\n.apexcharts-canvas ::-webkit-scrollbar {\n -webkit-appearance: none;\n width: 6px;\n}\n\n.apexcharts-canvas ::-webkit-scrollbar-thumb {\n border-radius: 4px;\n background-color: rgba(0, 0, 0, .5);\n box-shadow: 0 0 1px rgba(255, 255, 255, .5);\n -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);\n}\n\n\n.apexcharts-inner {\n position: relative;\n}\n\n.apexcharts-text tspan {\n font-family: inherit;\n}\n\n.legend-mouseover-inactive {\n transition: 0.15s ease all;\n opacity: 0.20;\n}\n\n.apexcharts-series-collapsed {\n opacity: 0;\n}\n\n.apexcharts-tooltip {\n border-radius: 5px;\n box-shadow: 2px 2px 6px -4px #999;\n cursor: default;\n font-size: 14px;\n left: 62px;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n top: 20px;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n white-space: nowrap;\n z-index: 12;\n transition: 0.15s ease all;\n}\n\n.apexcharts-tooltip.apexcharts-active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-tooltip.apexcharts-theme-light {\n border: 1px solid #e3e3e3;\n background: rgba(255, 255, 255, 0.96);\n}\n\n.apexcharts-tooltip.apexcharts-theme-dark {\n color: #fff;\n background: rgba(30, 30, 30, 0.8);\n}\n\n.apexcharts-tooltip * {\n font-family: inherit;\n}\n\n\n.apexcharts-tooltip-title {\n padding: 6px;\n font-size: 15px;\n margin-bottom: 4px;\n}\n\n.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {\n background: #ECEFF1;\n border-bottom: 1px solid #ddd;\n}\n\n.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title {\n background: rgba(0, 0, 0, 0.7);\n border-bottom: 1px solid #333;\n}\n\n.apexcharts-tooltip-text-y-value,\n.apexcharts-tooltip-text-goals-value,\n.apexcharts-tooltip-text-z-value {\n display: inline-block;\n font-weight: 600;\n margin-left: 5px;\n}\n\n.apexcharts-tooltip-text-y-label:empty,\n.apexcharts-tooltip-text-y-value:empty,\n.apexcharts-tooltip-text-goals-label:empty,\n.apexcharts-tooltip-text-goals-value:empty,\n.apexcharts-tooltip-text-z-value:empty {\n display: none;\n}\n\n.apexcharts-tooltip-text-y-value,\n.apexcharts-tooltip-text-goals-value,\n.apexcharts-tooltip-text-z-value {\n font-weight: 600;\n}\n\n.apexcharts-tooltip-text-goals-label, \n.apexcharts-tooltip-text-goals-value {\n padding: 6px 0 5px;\n}\n\n.apexcharts-tooltip-goals-group, \n.apexcharts-tooltip-text-goals-label, \n.apexcharts-tooltip-text-goals-value {\n display: flex;\n}\n.apexcharts-tooltip-text-goals-label:not(:empty),\n.apexcharts-tooltip-text-goals-value:not(:empty) {\n margin-top: -6px;\n}\n\n.apexcharts-tooltip-marker {\n width: 12px;\n height: 12px;\n position: relative;\n top: 0px;\n margin-right: 10px;\n border-radius: 50%;\n}\n\n.apexcharts-tooltip-series-group {\n padding: 0 10px;\n display: none;\n text-align: left;\n justify-content: left;\n align-items: center;\n}\n\n.apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-marker {\n opacity: 1;\n}\n\n.apexcharts-tooltip-series-group.apexcharts-active,\n.apexcharts-tooltip-series-group:last-child {\n padding-bottom: 4px;\n}\n\n.apexcharts-tooltip-series-group-hidden {\n opacity: 0;\n height: 0;\n line-height: 0;\n padding: 0 !important;\n}\n\n.apexcharts-tooltip-y-group {\n padding: 6px 0 5px;\n}\n\n.apexcharts-tooltip-box, .apexcharts-custom-tooltip {\n padding: 4px 8px;\n}\n\n.apexcharts-tooltip-boxPlot {\n display: flex;\n flex-direction: column-reverse;\n}\n\n.apexcharts-tooltip-box>div {\n margin: 4px 0;\n}\n\n.apexcharts-tooltip-box span.value {\n font-weight: bold;\n}\n\n.apexcharts-tooltip-rangebar {\n padding: 5px 8px;\n}\n\n.apexcharts-tooltip-rangebar .category {\n font-weight: 600;\n color: #777;\n}\n\n.apexcharts-tooltip-rangebar .series-name {\n font-weight: bold;\n display: block;\n margin-bottom: 5px;\n}\n\n.apexcharts-xaxistooltip {\n opacity: 0;\n padding: 9px 10px;\n pointer-events: none;\n color: #373d3f;\n font-size: 13px;\n text-align: center;\n border-radius: 2px;\n position: absolute;\n z-index: 10;\n background: #ECEFF1;\n border: 1px solid #90A4AE;\n transition: 0.15s ease all;\n}\n\n.apexcharts-xaxistooltip.apexcharts-theme-dark {\n background: rgba(0, 0, 0, 0.7);\n border: 1px solid rgba(0, 0, 0, 0.5);\n color: #fff;\n}\n\n.apexcharts-xaxistooltip:after,\n.apexcharts-xaxistooltip:before {\n left: 50%;\n border: solid transparent;\n content: " ";\n height: 0;\n width: 0;\n position: absolute;\n pointer-events: none;\n}\n\n.apexcharts-xaxistooltip:after {\n border-color: rgba(236, 239, 241, 0);\n border-width: 6px;\n margin-left: -6px;\n}\n\n.apexcharts-xaxistooltip:before {\n border-color: rgba(144, 164, 174, 0);\n border-width: 7px;\n margin-left: -7px;\n}\n\n.apexcharts-xaxistooltip-bottom:after,\n.apexcharts-xaxistooltip-bottom:before {\n bottom: 100%;\n}\n\n.apexcharts-xaxistooltip-top:after,\n.apexcharts-xaxistooltip-top:before {\n top: 100%;\n}\n\n.apexcharts-xaxistooltip-bottom:after {\n border-bottom-color: #ECEFF1;\n}\n\n.apexcharts-xaxistooltip-bottom:before {\n border-bottom-color: #90A4AE;\n}\n\n.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:after {\n border-bottom-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:before {\n border-bottom-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-top:after {\n border-top-color: #ECEFF1\n}\n\n.apexcharts-xaxistooltip-top:before {\n border-top-color: #90A4AE;\n}\n\n.apexcharts-xaxistooltip-top.apexcharts-theme-dark:after {\n border-top-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-top.apexcharts-theme-dark:before {\n border-top-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip.apexcharts-active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-yaxistooltip {\n opacity: 0;\n padding: 4px 10px;\n pointer-events: none;\n color: #373d3f;\n font-size: 13px;\n text-align: center;\n border-radius: 2px;\n position: absolute;\n z-index: 10;\n background: #ECEFF1;\n border: 1px solid #90A4AE;\n}\n\n.apexcharts-yaxistooltip.apexcharts-theme-dark {\n background: rgba(0, 0, 0, 0.7);\n border: 1px solid rgba(0, 0, 0, 0.5);\n color: #fff;\n}\n\n.apexcharts-yaxistooltip:after,\n.apexcharts-yaxistooltip:before {\n top: 50%;\n border: solid transparent;\n content: " ";\n height: 0;\n width: 0;\n position: absolute;\n pointer-events: none;\n}\n\n.apexcharts-yaxistooltip:after {\n border-color: rgba(236, 239, 241, 0);\n border-width: 6px;\n margin-top: -6px;\n}\n\n.apexcharts-yaxistooltip:before {\n border-color: rgba(144, 164, 174, 0);\n border-width: 7px;\n margin-top: -7px;\n}\n\n.apexcharts-yaxistooltip-left:after,\n.apexcharts-yaxistooltip-left:before {\n left: 100%;\n}\n\n.apexcharts-yaxistooltip-right:after,\n.apexcharts-yaxistooltip-right:before {\n right: 100%;\n}\n\n.apexcharts-yaxistooltip-left:after {\n border-left-color: #ECEFF1;\n}\n\n.apexcharts-yaxistooltip-left:before {\n border-left-color: #90A4AE;\n}\n\n.apexcharts-yaxistooltip-left.apexcharts-theme-dark:after {\n border-left-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-left.apexcharts-theme-dark:before {\n border-left-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-right:after {\n border-right-color: #ECEFF1;\n}\n\n.apexcharts-yaxistooltip-right:before {\n border-right-color: #90A4AE;\n}\n\n.apexcharts-yaxistooltip-right.apexcharts-theme-dark:after {\n border-right-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-right.apexcharts-theme-dark:before {\n border-right-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip.apexcharts-active {\n opacity: 1;\n}\n\n.apexcharts-yaxistooltip-hidden {\n display: none;\n}\n\n.apexcharts-xcrosshairs,\n.apexcharts-ycrosshairs {\n pointer-events: none;\n opacity: 0;\n transition: 0.15s ease all;\n}\n\n.apexcharts-xcrosshairs.apexcharts-active,\n.apexcharts-ycrosshairs.apexcharts-active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-ycrosshairs-hidden {\n opacity: 0;\n}\n\n.apexcharts-selection-rect {\n cursor: move;\n}\n\n.svg_select_boundingRect, .svg_select_points_rot {\n pointer-events: none;\n opacity: 0;\n visibility: hidden;\n}\n.apexcharts-selection-rect + g .svg_select_boundingRect,\n.apexcharts-selection-rect + g .svg_select_points_rot {\n opacity: 0;\n visibility: hidden;\n}\n\n.apexcharts-selection-rect + g .svg_select_points_l,\n.apexcharts-selection-rect + g .svg_select_points_r {\n cursor: ew-resize;\n opacity: 1;\n visibility: visible;\n}\n\n.svg_select_points {\n fill: #efefef;\n stroke: #333;\n rx: 2;\n}\n\n.apexcharts-svg.apexcharts-zoomable.hovering-zoom {\n cursor: crosshair\n}\n\n.apexcharts-svg.apexcharts-zoomable.hovering-pan {\n cursor: move\n}\n\n.apexcharts-zoom-icon,\n.apexcharts-zoomin-icon,\n.apexcharts-zoomout-icon,\n.apexcharts-reset-icon,\n.apexcharts-pan-icon,\n.apexcharts-selection-icon,\n.apexcharts-menu-icon,\n.apexcharts-toolbar-custom-icon {\n cursor: pointer;\n width: 20px;\n height: 20px;\n line-height: 24px;\n color: #6E8192;\n text-align: center;\n}\n\n.apexcharts-zoom-icon svg,\n.apexcharts-zoomin-icon svg,\n.apexcharts-zoomout-icon svg,\n.apexcharts-reset-icon svg,\n.apexcharts-menu-icon svg {\n fill: #6E8192;\n}\n\n.apexcharts-selection-icon svg {\n fill: #444;\n transform: scale(0.76)\n}\n\n.apexcharts-theme-dark .apexcharts-zoom-icon svg,\n.apexcharts-theme-dark .apexcharts-zoomin-icon svg,\n.apexcharts-theme-dark .apexcharts-zoomout-icon svg,\n.apexcharts-theme-dark .apexcharts-reset-icon svg,\n.apexcharts-theme-dark .apexcharts-pan-icon svg,\n.apexcharts-theme-dark .apexcharts-selection-icon svg,\n.apexcharts-theme-dark .apexcharts-menu-icon svg,\n.apexcharts-theme-dark .apexcharts-toolbar-custom-icon svg {\n fill: #f3f4f5;\n}\n\n.apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg,\n.apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg,\n.apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg {\n fill: #008FFB;\n}\n\n.apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,\n.apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,\n.apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,\n.apexcharts-theme-light .apexcharts-zoomout-icon:hover svg,\n.apexcharts-theme-light .apexcharts-reset-icon:hover svg,\n.apexcharts-theme-light .apexcharts-menu-icon:hover svg {\n fill: #333;\n}\n\n.apexcharts-selection-icon,\n.apexcharts-menu-icon {\n position: relative;\n}\n\n.apexcharts-reset-icon {\n margin-left: 5px;\n}\n\n.apexcharts-zoom-icon,\n.apexcharts-reset-icon,\n.apexcharts-menu-icon {\n transform: scale(0.85);\n}\n\n.apexcharts-zoomin-icon,\n.apexcharts-zoomout-icon {\n transform: scale(0.7)\n}\n\n.apexcharts-zoomout-icon {\n margin-right: 3px;\n}\n\n.apexcharts-pan-icon {\n transform: scale(0.62);\n position: relative;\n left: 1px;\n top: 0px;\n}\n\n.apexcharts-pan-icon svg {\n fill: #fff;\n stroke: #6E8192;\n stroke-width: 2;\n}\n\n.apexcharts-pan-icon.apexcharts-selected svg {\n stroke: #008FFB;\n}\n\n.apexcharts-pan-icon:not(.apexcharts-selected):hover svg {\n stroke: #333;\n}\n\n.apexcharts-toolbar {\n position: absolute;\n z-index: 11;\n max-width: 176px;\n text-align: right;\n border-radius: 3px;\n padding: 0px 6px 2px 6px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.apexcharts-menu {\n background: #fff;\n position: absolute;\n top: 100%;\n border: 1px solid #ddd;\n border-radius: 3px;\n padding: 3px;\n right: 10px;\n opacity: 0;\n min-width: 110px;\n transition: 0.15s ease all;\n pointer-events: none;\n}\n\n.apexcharts-menu.apexcharts-menu-open {\n opacity: 1;\n pointer-events: all;\n transition: 0.15s ease all;\n}\n\n.apexcharts-menu-item {\n padding: 6px 7px;\n font-size: 12px;\n cursor: pointer;\n}\n\n.apexcharts-theme-light .apexcharts-menu-item:hover {\n background: #eee;\n}\n\n.apexcharts-theme-dark .apexcharts-menu {\n background: rgba(0, 0, 0, 0.7);\n color: #fff;\n}\n\n@media screen and (min-width: 768px) {\n .apexcharts-canvas:hover .apexcharts-toolbar {\n opacity: 1;\n }\n}\n\n.apexcharts-datalabel.apexcharts-element-hidden {\n opacity: 0;\n}\n\n.apexcharts-pie-label,\n.apexcharts-datalabels,\n.apexcharts-datalabel,\n.apexcharts-datalabel-label,\n.apexcharts-datalabel-value {\n cursor: default;\n pointer-events: none;\n}\n\n.apexcharts-pie-label-delay {\n opacity: 0;\n animation-name: opaque;\n animation-duration: 0.3s;\n animation-fill-mode: forwards;\n animation-timing-function: ease;\n}\n\n.apexcharts-canvas .apexcharts-element-hidden {\n opacity: 0;\n}\n\n.apexcharts-hide .apexcharts-series-points {\n opacity: 0;\n}\n\n.apexcharts-gridline,\n.apexcharts-annotation-rect,\n.apexcharts-tooltip .apexcharts-marker,\n.apexcharts-area-series .apexcharts-area,\n.apexcharts-line,\n.apexcharts-zoom-rect,\n.apexcharts-toolbar svg,\n.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,\n.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,\n.apexcharts-radar-series path,\n.apexcharts-radar-series polygon {\n pointer-events: none;\n}\n\n\n/* markers */\n\n.apexcharts-marker {\n transition: 0.15s ease all;\n}\n\n@keyframes opaque {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}\n\n\n/* Resize generated styles */\n\n@keyframes resizeanim {\n from {\n opacity: 0;\n }\n to {\n opacity: 0;\n }\n}\n\n.resize-triggers {\n animation: 1ms resizeanim;\n visibility: hidden;\n opacity: 0;\n}\n\n.resize-triggers,\n.resize-triggers>div,\n.contract-trigger:before {\n content: " ";\n display: block;\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n overflow: hidden;\n}\n\n.resize-triggers>div {\n background: #eee;\n overflow: auto;\n}\n\n.contract-trigger:before {\n width: 200%;\n height: 200%;\n}',""]),t.exports=e},274:(t,e,i)=>{var a=i(379),s=i(539);"string"==typeof(s=s.__esModule?s.default:s)&&(s=[[t.id,s,""]]);var r=(a(t.id,s,{insert:"head",singleton:!1}),s.locals?s.locals:{});t.exports=r},379:(t,e,i)=>{"use strict";var a,s=function(){var t={};return function(e){if(void 0===t[e]){var i=document.querySelector(e);if(window.HTMLIFrameElement&&i instanceof window.HTMLIFrameElement)try{i=i.contentDocument.head}catch(t){i=null}t[e]=i}return t[e]}}(),r={};function n(t,e,i){for(var a=0;a{t.exports=''},355:t=>{t.exports=''},686:t=>{t.exports=''},798:t=>{t.exports=''},323:t=>{t.exports=''},618:t=>{t.exports=''},688:t=>{t.exports=''}},e={};function i(a){if(e[a])return e[a].exports;var s=e[a]={id:a,exports:{}};return t[a].call(s.exports,s,s.exports,i),s.exports}return i.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return i.d(e,{a:e}),e},i.d=(t,e)=>{for(var a in e)i.o(e,a)&&!i.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),i.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i(98)})()})); \ No newline at end of file diff --git a/dj_backend_server/web/static/assets/libs/apexcharts/apexcharts.common.js b/dj_backend_server/web/static/assets/libs/apexcharts/apexcharts.common.js new file mode 100644 index 00000000..ec2f406c --- /dev/null +++ b/dj_backend_server/web/static/assets/libs/apexcharts/apexcharts.common.js @@ -0,0 +1,14 @@ +/*! + * ApexCharts v3.27.2 + * (c) 2018-2021 Juned Chhipa + * Released under the MIT License. + */ +"use strict";function t(e){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(e)}function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var i=0;it.length)&&(e=t.length);for(var i=0,a=new Array(e);i>16,o=i>>8&255,n=255&i;return"#"+(16777216+65536*(Math.round((a-r)*s)+r)+256*(Math.round((a-o)*s)+o)+(Math.round((a-n)*s)+n)).toString(16).slice(1)}},{key:"shadeColor",value:function(t,e){return i.isColorHex(e)?this.shadeHexColor(t,e):this.shadeRGBColor(t,e)}}],[{key:"bind",value:function(t,e){return function(){return t.apply(e,arguments)}}},{key:"isObject",value:function(e){return e&&"object"===t(e)&&!Array.isArray(e)&&null!=e}},{key:"listToArray",value:function(t){var e,i=[];for(e=0;ee.length?t:e}))),t.length>e.length?t:e}),0)}},{key:"hexToRgba",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"#999999",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:.6;"#"!==t.substring(0,1)&&(t="#999999");var i=t.replace("#","");i=i.match(new RegExp("(.{"+i.length/3+"})","g"));for(var a=0;a1&&void 0!==arguments[1]?arguments[1]:"x",i=t.toString().slice();return i=i.replace(/[` ~!@#$%^&*()_|+\-=?;:'",.<>{}[\]\\/]/gi,e)}},{key:"negToZero",value:function(t){return t<0?0:t}},{key:"moveIndexInArray",value:function(t,e,i){if(i>=t.length)for(var a=i-t.length+1;a--;)t.push(void 0);return t.splice(i,0,t.splice(e,1)[0]),t}},{key:"extractNumber",value:function(t){return parseFloat(t.replace(/[^\d.]*/g,""))}},{key:"findAncestor",value:function(t,e){for(;(t=t.parentElement)&&!t.classList.contains(e););return t}},{key:"setELstyles",value:function(t,e){for(var i in e)e.hasOwnProperty(i)&&(t.style.key=e[i])}},{key:"isNumber",value:function(t){return!isNaN(t)&&parseFloat(Number(t))===t&&!isNaN(parseInt(t,10))}},{key:"isFloat",value:function(t){return Number(t)===t&&t%1!=0}},{key:"isSafari",value:function(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}},{key:"isFirefox",value:function(){return navigator.userAgent.toLowerCase().indexOf("firefox")>-1}},{key:"isIE11",value:function(){if(-1!==window.navigator.userAgent.indexOf("MSIE")||window.navigator.appVersion.indexOf("Trident/")>-1)return!0}},{key:"isIE",value:function(){var t=window.navigator.userAgent,e=t.indexOf("MSIE ");if(e>0)return parseInt(t.substring(e+5,t.indexOf(".",e)),10);if(t.indexOf("Trident/")>0){var i=t.indexOf("rv:");return parseInt(t.substring(i+3,t.indexOf(".",i)),10)}var a=t.indexOf("Edge/");return a>0&&parseInt(t.substring(a+5,t.indexOf(".",a)),10)}},{key:"sanitizeDom",value:function(t){return t.replace(/\&/g,"&").replace(/\/g,">").replace(/\"/g,""")}}]),i}(),p=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.setEasingFunctions()}return a(t,[{key:"setEasingFunctions",value:function(){var t;if(!this.w.globals.easing){switch(this.w.config.chart.animations.easing){case"linear":t="-";break;case"easein":t="<";break;case"easeout":t=">";break;case"easeinout":t="<>";break;case"swing":t=function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1};break;case"bounce":t=function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375};break;case"elastic":t=function(t){return t===!!t?t:Math.pow(2,-10*t)*Math.sin((t-.075)*(2*Math.PI)/.3)+1};break;default:t="<>"}this.w.globals.easing=t}}},{key:"animateLine",value:function(t,e,i,a){t.attr(e).animate(a).attr(i)}},{key:"animateMarker",value:function(t,e,i,a,s,r){e||(e=0),t.attr({r:e,width:e,height:e}).animate(a,s).attr({r:i,width:i.width,height:i.height}).afterAll((function(){r()}))}},{key:"animateCircle",value:function(t,e,i,a,s){t.attr({r:e.r,cx:e.cx,cy:e.cy}).animate(a,s).attr({r:i.r,cx:i.cx,cy:i.cy})}},{key:"animateRect",value:function(t,e,i,a,s){t.attr(e).animate(a).attr(i).afterAll((function(){return s()}))}},{key:"animatePathsGradually",value:function(t){var e=t.el,i=t.realIndex,a=t.j,s=t.fill,r=t.pathFrom,o=t.pathTo,n=t.speed,l=t.delay,h=this.w,c=0;h.config.chart.animations.animateGradually.enabled&&(c=h.config.chart.animations.animateGradually.delay),h.config.chart.animations.dynamicAnimation.enabled&&h.globals.dataChanged&&"bar"!==h.config.chart.type&&(c=0),this.morphSVG(e,i,a,"line"!==h.config.chart.type||h.globals.comboCharts?s:"stroke",r,o,n,l*c)}},{key:"showDelayedElements",value:function(){this.w.globals.delayedElements.forEach((function(t){t.el.classList.remove("apexcharts-element-hidden")}))}},{key:"animationCompleted",value:function(t){var e=this.w;e.globals.animationEnded||(e.globals.animationEnded=!0,this.showDelayedElements(),"function"==typeof e.config.chart.events.animationEnd&&e.config.chart.events.animationEnd(this.ctx,{el:t,w:e}))}},{key:"morphSVG",value:function(t,e,i,a,s,r,o,n){var l=this,h=this.w;s||(s=t.attr("pathFrom")),r||(r=t.attr("pathTo"));var c=function(t){return"radar"===h.config.chart.type&&(o=1),"M 0 ".concat(h.globals.gridHeight)};(!s||s.indexOf("undefined")>-1||s.indexOf("NaN")>-1)&&(s=c()),(!r||r.indexOf("undefined")>-1||r.indexOf("NaN")>-1)&&(r=c()),h.globals.shouldAnimate||(o=1),t.plot(s).animate(1,h.globals.easing,n).plot(s).animate(o,h.globals.easing,n).plot(r).afterAll((function(){f.isNumber(i)?i===h.globals.series[h.globals.maxValsInArrayIndex].length-2&&h.globals.shouldAnimate&&l.animationCompleted(t):"none"!==a&&h.globals.shouldAnimate&&(!h.globals.comboCharts&&e===h.globals.series.length-1||h.globals.comboCharts)&&l.animationCompleted(t),l.showDelayedElements()}))}}]),t}(),x=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"getDefaultFilter",value:function(t,e){var i=this.w;t.unfilter(!0),(new window.SVG.Filter).size("120%","180%","-5%","-40%"),"none"!==i.config.states.normal.filter?this.applyFilter(t,e,i.config.states.normal.filter.type,i.config.states.normal.filter.value):i.config.chart.dropShadow.enabled&&this.dropShadow(t,i.config.chart.dropShadow,e)}},{key:"addNormalFilter",value:function(t,e){var i=this.w;i.config.chart.dropShadow.enabled&&!t.node.classList.contains("apexcharts-marker")&&this.dropShadow(t,i.config.chart.dropShadow,e)}},{key:"addLightenFilter",value:function(t,e,i){var a=this,s=this.w,r=i.intensity;t.unfilter(!0);new window.SVG.Filter;t.filter((function(t){var i=s.config.chart.dropShadow;(i.enabled?a.addShadow(t,e,i):t).componentTransfer({rgb:{type:"linear",slope:1.5,intercept:r}})})),t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(t.filterer.node)}},{key:"addDarkenFilter",value:function(t,e,i){var a=this,s=this.w,r=i.intensity;t.unfilter(!0);new window.SVG.Filter;t.filter((function(t){var i=s.config.chart.dropShadow;(i.enabled?a.addShadow(t,e,i):t).componentTransfer({rgb:{type:"linear",slope:r}})})),t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(t.filterer.node)}},{key:"applyFilter",value:function(t,e,i){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:.5;switch(i){case"none":this.addNormalFilter(t,e);break;case"lighten":this.addLightenFilter(t,e,{intensity:a});break;case"darken":this.addDarkenFilter(t,e,{intensity:a})}}},{key:"addShadow",value:function(t,e,i){var a=i.blur,s=i.top,r=i.left,o=i.color,n=i.opacity,l=t.flood(Array.isArray(o)?o[e]:o,n).composite(t.sourceAlpha,"in").offset(r,s).gaussianBlur(a).merge(t.source);return t.blend(t.source,l)}},{key:"dropShadow",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,a=e.top,s=e.left,r=e.blur,o=e.color,n=e.opacity,l=e.noUserSpaceOnUse,h=this.w;return t.unfilter(!0),f.isIE()&&"radialBar"===h.config.chart.type||(o=Array.isArray(o)?o[i]:o,t.filter((function(t){var e=null;e=f.isSafari()||f.isFirefox()||f.isIE()?t.flood(o,n).composite(t.sourceAlpha,"in").offset(s,a).gaussianBlur(r):t.flood(o,n).composite(t.sourceAlpha,"in").offset(s,a).gaussianBlur(r).merge(t.source),t.blend(t.source,e)})),l||t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(t.filterer.node)),t}},{key:"setSelectionFilter",value:function(t,e,i){var a=this.w;if(void 0!==a.globals.selectedDataPoints[e]&&a.globals.selectedDataPoints[e].indexOf(i)>-1){t.node.setAttribute("selected",!0);var s=a.config.states.active.filter;"none"!==s&&this.applyFilter(t,e,s.type,s.value)}}},{key:"_scaleFilterSize",value:function(t){!function(e){for(var i in e)e.hasOwnProperty(i)&&t.setAttribute(i,e[i])}({width:"200%",height:"200%",x:"-50%",y:"-50%"})}}]),t}(),b=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"drawLine",value:function(t,e,i,a){var s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:"#a8a8a8",r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,n=this.w,l=n.globals.dom.Paper.line().attr({x1:t,y1:e,x2:i,y2:a,stroke:s,"stroke-dasharray":r,"stroke-width":o});return l}},{key:"drawRect",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0,r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:"#fefefe",o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:1,n=arguments.length>7&&void 0!==arguments[7]?arguments[7]:null,l=arguments.length>8&&void 0!==arguments[8]?arguments[8]:null,h=arguments.length>9&&void 0!==arguments[9]?arguments[9]:0,c=this.w,d=c.globals.dom.Paper.rect();return d.attr({x:t,y:e,width:i>0?i:0,height:a>0?a:0,rx:s,ry:s,opacity:o,"stroke-width":null!==n?n:0,stroke:null!==l?l:"none","stroke-dasharray":h}),d.node.setAttribute("fill",r),d}},{key:"drawPolygon",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"#e1e1e1",i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"none",s=this.w,r=s.globals.dom.Paper.polygon(t).attr({fill:a,stroke:e,"stroke-width":i});return r}},{key:"drawCircle",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.w;t<0&&(t=0);var a=i.globals.dom.Paper.circle(2*t);return null!==e&&a.attr(e),a}},{key:"drawPath",value:function(t){var e=t.d,i=void 0===e?"":e,a=t.stroke,s=void 0===a?"#a8a8a8":a,r=t.strokeWidth,o=void 0===r?1:r,n=t.fill,l=t.fillOpacity,h=void 0===l?1:l,c=t.strokeOpacity,d=void 0===c?1:c,g=t.classes,u=t.strokeLinecap,f=void 0===u?null:u,p=t.strokeDashArray,x=void 0===p?0:p,b=this.w;return null===f&&(f=b.config.stroke.lineCap),(i.indexOf("undefined")>-1||i.indexOf("NaN")>-1)&&(i="M 0 ".concat(b.globals.gridHeight)),b.globals.dom.Paper.path(i).attr({fill:n,"fill-opacity":h,stroke:s,"stroke-opacity":d,"stroke-linecap":f,"stroke-width":o,"stroke-dasharray":x,class:g})}},{key:"group",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=this.w,i=e.globals.dom.Paper.group();return null!==t&&i.attr(t),i}},{key:"move",value:function(t,e){var i=["M",t,e].join(" ");return i}},{key:"line",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=null;return null===i?a=["L",t,e].join(" "):"H"===i?a=["H",t].join(" "):"V"===i&&(a=["V",e].join(" ")),a}},{key:"curve",value:function(t,e,i,a,s,r){var o=["C",t,e,i,a,s,r].join(" ");return o}},{key:"quadraticCurve",value:function(t,e,i,a){return["Q",t,e,i,a].join(" ")}},{key:"arc",value:function(t,e,i,a,s,r,o){var n=arguments.length>7&&void 0!==arguments[7]&&arguments[7],l="A";n&&(l="a");var h=[l,t,e,i,a,s,r,o].join(" ");return h}},{key:"renderPaths",value:function(t){var e,i=t.j,a=t.realIndex,s=t.pathFrom,r=t.pathTo,n=t.stroke,l=t.strokeWidth,h=t.strokeLinecap,c=t.fill,d=t.animationDelay,g=t.initialSpeed,u=t.dataChangeSpeed,f=t.className,b=t.shouldClipToGrid,m=void 0===b||b,v=t.bindEventsOnPaths,y=void 0===v||v,w=t.drawShadow,k=void 0===w||w,A=this.w,S=new x(this.ctx),C=new p(this.ctx),L=this.w.config.chart.animations.enabled,P=L&&this.w.config.chart.animations.dynamicAnimation.enabled,T=!!(L&&!A.globals.resized||P&&A.globals.dataChanged&&A.globals.shouldAnimate);T?e=s:(e=r,A.globals.animationEnded=!0);var z=A.config.stroke.dashArray,I=0;I=Array.isArray(z)?z[a]:A.config.stroke.dashArray;var M=this.drawPath({d:e,stroke:n,strokeWidth:l,fill:c,fillOpacity:1,classes:f,strokeLinecap:h,strokeDashArray:I});if(M.attr("index",a),m&&M.attr({"clip-path":"url(#gridRectMask".concat(A.globals.cuid,")")}),"none"!==A.config.states.normal.filter.type)S.getDefaultFilter(M,a);else if(A.config.chart.dropShadow.enabled&&k&&(!A.config.chart.dropShadow.enabledOnSeries||A.config.chart.dropShadow.enabledOnSeries&&-1!==A.config.chart.dropShadow.enabledOnSeries.indexOf(a))){var X=A.config.chart.dropShadow;S.dropShadow(M,X,a)}y&&(M.node.addEventListener("mouseenter",this.pathMouseEnter.bind(this,M)),M.node.addEventListener("mouseleave",this.pathMouseLeave.bind(this,M)),M.node.addEventListener("mousedown",this.pathMouseDown.bind(this,M))),M.attr({pathTo:r,pathFrom:s});var E={el:M,j:i,realIndex:a,pathFrom:s,pathTo:r,fill:c,strokeWidth:l,delay:d};return!L||A.globals.resized||A.globals.dataChanged?!A.globals.resized&&A.globals.dataChanged||C.showDelayedElements():C.animatePathsGradually(o(o({},E),{},{speed:g})),A.globals.dataChanged&&P&&T&&C.animatePathsGradually(o(o({},E),{},{speed:u})),M}},{key:"drawPattern",value:function(t,e,i){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"#a8a8a8",s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0,r=this.w,o=r.globals.dom.Paper.pattern(e,i,(function(r){"horizontalLines"===t?r.line(0,0,i,0).stroke({color:a,width:s+1}):"verticalLines"===t?r.line(0,0,0,e).stroke({color:a,width:s+1}):"slantedLines"===t?r.line(0,0,e,i).stroke({color:a,width:s}):"squares"===t?r.rect(e,i).fill("none").stroke({color:a,width:s}):"circles"===t&&r.circle(e).fill("none").stroke({color:a,width:s})}));return o}},{key:"drawGradient",value:function(t,e,i,a,s){var r,o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:null,n=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,l=arguments.length>7&&void 0!==arguments[7]?arguments[7]:null,h=arguments.length>8&&void 0!==arguments[8]?arguments[8]:0,c=this.w;e.length<9&&0===e.indexOf("#")&&(e=f.hexToRgba(e,a)),i.length<9&&0===i.indexOf("#")&&(i=f.hexToRgba(i,s));var d=0,g=1,u=1,p=null;null!==n&&(d=void 0!==n[0]?n[0]/100:0,g=void 0!==n[1]?n[1]/100:1,u=void 0!==n[2]?n[2]/100:1,p=void 0!==n[3]?n[3]/100:null);var x=!("donut"!==c.config.chart.type&&"pie"!==c.config.chart.type&&"polarArea"!==c.config.chart.type&&"bubble"!==c.config.chart.type);if(r=null===l||0===l.length?c.globals.dom.Paper.gradient(x?"radial":"linear",(function(t){t.at(d,e,a),t.at(g,i,s),t.at(u,i,s),null!==p&&t.at(p,e,a)})):c.globals.dom.Paper.gradient(x?"radial":"linear",(function(t){(Array.isArray(l[h])?l[h]:l).forEach((function(e){t.at(e.offset/100,e.color,e.opacity)}))})),x){var b=c.globals.gridWidth/2,m=c.globals.gridHeight/2;"bubble"!==c.config.chart.type?r.attr({gradientUnits:"userSpaceOnUse",cx:b,cy:m,r:o}):r.attr({cx:.5,cy:.5,r:.8,fx:.2,fy:.2})}else"vertical"===t?r.from(0,0).to(0,1):"diagonal"===t?r.from(0,0).to(1,1):"horizontal"===t?r.from(0,1).to(1,1):"diagonal2"===t&&r.from(1,0).to(0,1);return r}},{key:"drawText",value:function(t){var e,i=t.x,a=t.y,s=t.text,r=t.textAnchor,o=t.fontSize,n=t.fontFamily,l=t.fontWeight,h=t.foreColor,c=t.opacity,d=t.cssClass,g=void 0===d?"":d,u=t.isPlainText,f=void 0===u||u,p=this.w;return void 0===s&&(s=""),r||(r="start"),h&&h.length||(h=p.config.chart.foreColor),n=n||p.config.chart.fontFamily,l=l||"regular",(e=Array.isArray(s)?p.globals.dom.Paper.text((function(t){for(var e=0;e-1){var n=i.globals.selectedDataPoints[s].indexOf(r);i.globals.selectedDataPoints[s].splice(n,1)}}else{if(!i.config.states.active.allowMultipleDataPointsSelection&&i.globals.selectedDataPoints.length>0){i.globals.selectedDataPoints=[];var l=i.globals.dom.Paper.select(".apexcharts-series path").members,h=i.globals.dom.Paper.select(".apexcharts-series circle, .apexcharts-series rect").members,c=function(t){Array.prototype.forEach.call(t,(function(t){t.node.setAttribute("selected","false"),a.getDefaultFilter(t,s)}))};c(l),c(h)}t.node.setAttribute("selected","true"),o="true",void 0===i.globals.selectedDataPoints[s]&&(i.globals.selectedDataPoints[s]=[]),i.globals.selectedDataPoints[s].push(r)}if("true"===o){var d=i.config.states.active.filter;"none"!==d&&a.applyFilter(t,s,d.type,d.value)}else"none"!==i.config.states.active.filter.type&&a.getDefaultFilter(t,s);"function"==typeof i.config.chart.events.dataPointSelection&&i.config.chart.events.dataPointSelection(e,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:s,dataPointIndex:r,w:i}),e&&this.ctx.events.fireEvent("dataPointSelection",[e,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:s,dataPointIndex:r,w:i}])}},{key:"rotateAroundCenter",value:function(t){var e=t.getBBox();return{x:e.x+e.width/2,y:e.y+e.height/2}}},{key:"getTextRects",value:function(t,e,i,a){var s=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],r=this.w,o=this.drawText({x:-200,y:-200,text:t,textAnchor:"start",fontSize:e,fontFamily:i,foreColor:"#fff",opacity:0});a&&o.attr("transform",a),r.globals.dom.Paper.add(o);var n=o.bbox();return s||(n=o.node.getBoundingClientRect()),o.remove(),{width:n.width,height:n.height}}},{key:"placeTextWithEllipsis",value:function(t,e,i){if("function"==typeof t.getComputedTextLength&&(t.textContent=e,e.length>0&&t.getComputedTextLength()>=i/1.1)){for(var a=e.length-3;a>0;a-=3)if(t.getSubStringLength(0,a)<=i/1.1)return void(t.textContent=e.substring(0,a)+"...");t.textContent="."}}}],[{key:"setAttrs",value:function(t,e){for(var i in e)e.hasOwnProperty(i)&&t.setAttribute(i,e[i])}}]),t}(),m=function(){function t(i){e(this,t),this.w=i.w,this.annoCtx=i}return a(t,[{key:"setOrientations",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.w;if("vertical"===t.label.orientation){var a=null!==e?e:0,s=i.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(a,"']"));if(null!==s){var r=s.getBoundingClientRect();s.setAttribute("x",parseFloat(s.getAttribute("x"))-r.height+4),"top"===t.label.position?s.setAttribute("y",parseFloat(s.getAttribute("y"))+r.width):s.setAttribute("y",parseFloat(s.getAttribute("y"))-r.width);var o=this.annoCtx.graphics.rotateAroundCenter(s),n=o.x,l=o.y;s.setAttribute("transform","rotate(-90 ".concat(n," ").concat(l,")"))}}}},{key:"addBackgroundToAnno",value:function(t,e){var i=this.w;if(!t||!e.label.text||e.label.text&&!e.label.text.trim())return null;var a=i.globals.dom.baseEl.querySelector(".apexcharts-grid").getBoundingClientRect(),s=t.getBoundingClientRect(),r=e.label.style.padding.left,o=e.label.style.padding.right,n=e.label.style.padding.top,l=e.label.style.padding.bottom;"vertical"===e.label.orientation&&(n=e.label.style.padding.left,l=e.label.style.padding.right,r=e.label.style.padding.top,o=e.label.style.padding.bottom);var h=s.left-a.left-r,c=s.top-a.top-n,d=this.annoCtx.graphics.drawRect(h-i.globals.barPadForNumericAxis,c,s.width+r+o,s.height+n+l,e.label.borderRadius,e.label.style.background,1,e.label.borderWidth,e.label.borderColor,0);return e.id&&d.node.classList.add(e.id),d}},{key:"annotationsBackground",value:function(){var t=this,e=this.w,i=function(i,a,s){var r=e.globals.dom.baseEl.querySelector(".apexcharts-".concat(s,"-annotations .apexcharts-").concat(s,"-annotation-label[rel='").concat(a,"']"));if(r){var o=r.parentNode,n=t.addBackgroundToAnno(r,i);n&&o.insertBefore(n.node,r)}};e.config.annotations.xaxis.map((function(t,e){i(t,e,"xaxis")})),e.config.annotations.yaxis.map((function(t,e){i(t,e,"yaxis")})),e.config.annotations.points.map((function(t,e){i(t,e,"point")}))}},{key:"getStringX",value:function(t){var e=this.w,i=t;e.config.xaxis.convertedCatToNumeric&&e.globals.categoryLabels.length&&(t=e.globals.categoryLabels.indexOf(t)+1);var a=e.globals.labels.indexOf(t),s=e.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g text:nth-child("+(a+1)+")");return s&&(i=parseFloat(s.getAttribute("x"))),i}}]),t}(),v=function(){function t(i){e(this,t),this.w=i.w,this.annoCtx=i,this.invertAxis=this.annoCtx.invertAxis}return a(t,[{key:"addXaxisAnnotation",value:function(t,e,i){var a=this.w,s=this.invertAxis?a.globals.minY:a.globals.minX,r=this.invertAxis?a.globals.maxY:a.globals.maxX,o=this.invertAxis?a.globals.yRange[0]:a.globals.xRange,n=(t.x-s)/(o/a.globals.gridWidth);this.annoCtx.inversedReversedAxis&&(n=(r-t.x)/(o/a.globals.gridWidth));var l=t.label.text;"category"!==a.config.xaxis.type&&!a.config.xaxis.convertedCatToNumeric||this.invertAxis||a.globals.dataFormatXNumeric||(n=this.annoCtx.helpers.getStringX(t.x));var h=t.strokeDashArray;if(f.isNumber(n)){if(null===t.x2||void 0===t.x2){var c=this.annoCtx.graphics.drawLine(n+t.offsetX,0+t.offsetY,n+t.offsetX,a.globals.gridHeight+t.offsetY,t.borderColor,h,t.borderWidth);e.appendChild(c.node),t.id&&c.node.classList.add(t.id)}else{var d=(t.x2-s)/(o/a.globals.gridWidth);if(this.annoCtx.inversedReversedAxis&&(d=(r-t.x2)/(o/a.globals.gridWidth)),"category"!==a.config.xaxis.type&&!a.config.xaxis.convertedCatToNumeric||this.invertAxis||a.globals.dataFormatXNumeric||(d=this.annoCtx.helpers.getStringX(t.x2)),d0&&void 0!==arguments[0]?arguments[0]:null;return null===t?this.w.config.series.reduce((function(t,e){return t+e}),0):this.w.globals.series[t].reduce((function(t,e){return t+e}),0)}},{key:"isSeriesNull",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return 0===(null===t?this.w.config.series.filter((function(t){return null!==t})):this.w.config.series[t].data.filter((function(t){return null!==t}))).length}},{key:"seriesHaveSameValues",value:function(t){return this.w.globals.series[t].every((function(t,e,i){return t===i[0]}))}},{key:"getCategoryLabels",value:function(t){var e=this.w,i=t.slice();return e.config.xaxis.convertedCatToNumeric&&(i=t.map((function(t,i){return e.config.xaxis.labels.formatter(t-e.globals.minX+1)}))),i}},{key:"getLargestSeries",value:function(){var t=this.w;t.globals.maxValsInArrayIndex=t.globals.series.map((function(t){return t.length})).indexOf(Math.max.apply(Math,t.globals.series.map((function(t){return t.length}))))}},{key:"getLargestMarkerSize",value:function(){var t=this.w,e=0;return t.globals.markers.size.forEach((function(t){e=Math.max(e,t)})),t.globals.markers.largestSize=e,e}},{key:"getSeriesTotals",value:function(){var t=this.w;t.globals.seriesTotals=t.globals.series.map((function(t,e){var i=0;if(Array.isArray(t))for(var a=0;at&&i.globals.seriesX[s][o]1&&(e=!0),{comboBarCount:i,comboCharts:e}}},{key:"extendArrayProps",value:function(t,e,i){return e.yaxis&&(e=t.extendYAxis(e,i)),e.annotations&&(e.annotations.yaxis&&(e=t.extendYAxisAnnotations(e)),e.annotations.xaxis&&(e=t.extendXAxisAnnotations(e)),e.annotations.points&&(e=t.extendPointAnnotations(e))),e}}]),t}(),w=function(){function t(i){e(this,t),this.w=i.w,this.annoCtx=i}return a(t,[{key:"addYaxisAnnotation",value:function(t,e,i){var a,s=this.w,r=t.strokeDashArray,o=this._getY1Y2("y1",t),n=t.label.text;if(null===t.y2||void 0===t.y2){var l=this.annoCtx.graphics.drawLine(0+t.offsetX,o+t.offsetY,this._getYAxisAnnotationWidth(t),o+t.offsetY,t.borderColor,r,t.borderWidth);e.appendChild(l.node),t.id&&l.node.classList.add(t.id)}else{if((a=this._getY1Y2("y2",t))>o){var h=o;o=a,a=h}var c=this.annoCtx.graphics.drawRect(0+t.offsetX,a+t.offsetY,this._getYAxisAnnotationWidth(t),o-a,0,t.fillColor,t.opacity,1,t.borderColor,r);c.node.classList.add("apexcharts-annotation-rect"),c.attr("clip-path","url(#gridRectMask".concat(s.globals.cuid,")")),e.appendChild(c.node),t.id&&c.node.classList.add(t.id)}var d="right"===t.label.position?s.globals.gridWidth:0,g=this.annoCtx.graphics.drawText({x:d+t.label.offsetX,y:(a||o)+t.label.offsetY-3,text:n,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,fontWeight:t.label.style.fontWeight,foreColor:t.label.style.color,cssClass:"apexcharts-yaxis-annotation-label ".concat(t.label.style.cssClass," ").concat(t.id?t.id:"")});g.attr({rel:i}),e.appendChild(g.node)}},{key:"_getY1Y2",value:function(t,e){var i,a="y1"===t?e.y:e.y2,s=this.w;if(this.annoCtx.invertAxis){var r=s.globals.labels.indexOf(a);s.config.xaxis.convertedCatToNumeric&&(r=s.globals.categoryLabels.indexOf(a));var o=s.globals.dom.baseEl.querySelector(".apexcharts-yaxis-texts-g text:nth-child("+(r+1)+")");o&&(i=parseFloat(o.getAttribute("y")))}else{var n;if(s.config.yaxis[e.yAxisIndex].logarithmic)n=(a=new y(this.annoCtx.ctx).getLogVal(a,e.yAxisIndex))/s.globals.yLogRatio[e.yAxisIndex];else n=(a-s.globals.minYArr[e.yAxisIndex])/(s.globals.yRange[e.yAxisIndex]/s.globals.gridHeight);i=s.globals.gridHeight-n,s.config.yaxis[e.yAxisIndex]&&s.config.yaxis[e.yAxisIndex].reversed&&(i=n)}return i}},{key:"_getYAxisAnnotationWidth",value:function(t){var e=this.w;e.globals.gridWidth;return(t.width.indexOf("%")>-1?e.globals.gridWidth*parseInt(t.width,10)/100:parseInt(t.width,10))+t.offsetX}},{key:"drawYAxisAnnotations",value:function(){var t=this,e=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-yaxis-annotations"});return e.config.annotations.yaxis.map((function(e,a){t.addYaxisAnnotation(e,i.node,a)})),i}}]),t}(),k=function(){function t(i){e(this,t),this.w=i.w,this.annoCtx=i}return a(t,[{key:"addPointAnnotation",value:function(t,e,i){var a=this.w,s=0,r=0,o=0;this.annoCtx.invertAxis&&console.warn("Point annotation is not supported in horizontal bar charts.");var n=parseFloat(t.y);if("string"==typeof t.x){var l=a.globals.labels.indexOf(t.x);a.config.xaxis.convertedCatToNumeric&&(l=a.globals.categoryLabels.indexOf(t.x)),s=this.annoCtx.helpers.getStringX(t.x),null===t.y&&(n=a.globals.series[t.seriesIndex][l])}else s=(t.x-a.globals.minX)/(a.globals.xRange/a.globals.gridWidth);for(var h,c=[],d=0,g=0;g<=t.seriesIndex;g++){var u=a.config.yaxis[g].seriesName;if(u)for(var p=g+1;p<=t.seriesIndex;p++)a.config.yaxis[p].seriesName===u&&-1===c.indexOf(u)&&(d++,c.push(u))}if(a.config.yaxis[t.yAxisIndex].logarithmic){h=(n=new y(this.annoCtx.ctx).getLogVal(n,t.yAxisIndex))/a.globals.yLogRatio[t.yAxisIndex]}else{var x=t.yAxisIndex+d;h=(n-a.globals.minYArr[x])/(a.globals.yRange[x]/a.globals.gridHeight)}if(r=a.globals.gridHeight-h-parseFloat(t.label.style.fontSize)-t.marker.size,o=a.globals.gridHeight-h,a.config.yaxis[t.yAxisIndex]&&a.config.yaxis[t.yAxisIndex].reversed&&(r=h+parseFloat(t.label.style.fontSize)+t.marker.size,o=h),f.isNumber(s)){var b={pSize:t.marker.size,pointStrokeWidth:t.marker.strokeWidth,pointFillColor:t.marker.fillColor,pointStrokeColor:t.marker.strokeColor,shape:t.marker.shape,pRadius:t.marker.radius,class:"apexcharts-point-annotation-marker ".concat(t.marker.cssClass," ").concat(t.id?t.id:"")},m=this.annoCtx.graphics.drawMarker(s+t.marker.offsetX,o+t.marker.offsetY,b);e.appendChild(m.node);var v=t.label.text?t.label.text:"",w=this.annoCtx.graphics.drawText({x:s+t.label.offsetX,y:r+t.label.offsetY,text:v,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,fontWeight:t.label.style.fontWeight,foreColor:t.label.style.color,cssClass:"apexcharts-point-annotation-label ".concat(t.label.style.cssClass," ").concat(t.id?t.id:"")});if(w.attr({rel:i}),e.appendChild(w.node),t.customSVG.SVG){var k=this.annoCtx.graphics.group({class:"apexcharts-point-annotations-custom-svg "+t.customSVG.cssClass});k.attr({transform:"translate(".concat(s+t.customSVG.offsetX,", ").concat(r+t.customSVG.offsetY,")")}),k.node.innerHTML=t.customSVG.SVG,e.appendChild(k.node)}if(t.image.path){var A=t.image.width?t.image.width:20,S=t.image.height?t.image.height:20;this.annoCtx.addImage({x:s+t.image.offsetX-A/2,y:r+t.image.offsetY-S/2,width:A,height:S,path:t.image.path,appendTo:".apexcharts-point-annotations"})}}}},{key:"drawPointAnnotations",value:function(){var t=this,e=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-point-annotations"});return e.config.annotations.points.map((function(e,a){t.addPointAnnotation(e,i.node,a)})),i}}]),t}();var A={name:"en",options:{months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],toolbar:{exportToSVG:"Download SVG",exportToPNG:"Download PNG",exportToCSV:"Download CSV",menu:"Menu",selection:"Selection",selectionZoom:"Selection Zoom",zoomIn:"Zoom In",zoomOut:"Zoom Out",pan:"Panning",reset:"Reset Zoom"}}},S=function(){function t(){e(this,t),this.yAxis={show:!0,showAlways:!1,showForNullSeries:!0,seriesName:void 0,opposite:!1,reversed:!1,logarithmic:!1,tickAmount:void 0,forceNiceScale:!1,max:void 0,min:void 0,floating:!1,decimalsInFloat:void 0,labels:{show:!0,minWidth:0,maxWidth:160,offsetX:0,offsetY:0,align:void 0,rotate:0,padding:20,style:{colors:[],fontSize:"11px",fontWeight:400,fontFamily:void 0,cssClass:""},formatter:void 0},axisBorder:{show:!1,color:"#e0e0e0",width:1,offsetX:0,offsetY:0},axisTicks:{show:!1,color:"#e0e0e0",width:6,offsetX:0,offsetY:0},title:{text:void 0,rotate:-90,offsetY:0,offsetX:0,style:{color:void 0,fontSize:"11px",fontWeight:900,fontFamily:void 0,cssClass:""}},tooltip:{enabled:!1,offsetX:0},crosshairs:{show:!0,position:"front",stroke:{color:"#b6b6b6",width:1,dashArray:0}}},this.pointAnnotation={x:0,y:null,yAxisIndex:0,seriesIndex:0,marker:{size:4,fillColor:"#fff",strokeWidth:2,strokeColor:"#333",shape:"circle",offsetX:0,offsetY:0,radius:2,cssClass:""},label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",offsetX:0,offsetY:0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}},customSVG:{SVG:void 0,cssClass:void 0,offsetX:0,offsetY:0},image:{path:void 0,width:20,height:20,offsetX:0,offsetY:0}},this.yAxisAnnotation={y:0,y2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,width:"100%",yAxisIndex:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"end",position:"right",offsetX:0,offsetY:-3,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.xAxisAnnotation={x:0,x2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",orientation:"vertical",position:"top",offsetX:0,offsetY:0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.text={x:0,y:0,text:"",textAnchor:"start",foreColor:void 0,fontSize:"13px",fontFamily:void 0,fontWeight:400,appendTo:".apexcharts-annotations",backgroundColor:"transparent",borderColor:"#c2c2c2",borderRadius:0,borderWidth:0,paddingLeft:4,paddingRight:4,paddingTop:2,paddingBottom:2}}return a(t,[{key:"init",value:function(){return{annotations:{position:"front",yaxis:[this.yAxisAnnotation],xaxis:[this.xAxisAnnotation],points:[this.pointAnnotation],texts:[],images:[],shapes:[]},chart:{animations:{enabled:!0,easing:"easeinout",speed:800,animateGradually:{delay:150,enabled:!0},dynamicAnimation:{enabled:!0,speed:350}},background:"transparent",locales:[A],defaultLocale:"en",dropShadow:{enabled:!1,enabledOnSeries:void 0,top:2,left:2,blur:4,color:"#000",opacity:.35},events:{animationEnd:void 0,beforeMount:void 0,mounted:void 0,updated:void 0,click:void 0,mouseMove:void 0,mouseLeave:void 0,legendClick:void 0,markerClick:void 0,selection:void 0,dataPointSelection:void 0,dataPointMouseEnter:void 0,dataPointMouseLeave:void 0,beforeZoom:void 0,beforeResetZoom:void 0,zoomed:void 0,scrolled:void 0,brushScrolled:void 0},foreColor:"#373d3f",fontFamily:"Helvetica, Arial, sans-serif",height:"auto",parentHeightOffset:15,redrawOnParentResize:!0,redrawOnWindowResize:!0,id:void 0,group:void 0,offsetX:0,offsetY:0,selection:{enabled:!1,type:"x",fill:{color:"#24292e",opacity:.1},stroke:{width:1,color:"#24292e",opacity:.4,dashArray:3},xaxis:{min:void 0,max:void 0},yaxis:{min:void 0,max:void 0}},sparkline:{enabled:!1},brush:{enabled:!1,autoScaleYaxis:!0,target:void 0},stacked:!1,stackType:"normal",toolbar:{show:!0,offsetX:0,offsetY:0,tools:{download:!0,selection:!0,zoom:!0,zoomin:!0,zoomout:!0,pan:!0,reset:!0,customIcons:[]},export:{csv:{filename:void 0,columnDelimiter:",",headerCategory:"category",headerValue:"value",dateFormatter:function(t){return new Date(t).toDateString()}},png:{filename:void 0},svg:{filename:void 0}},autoSelected:"zoom"},type:"line",width:"100%",zoom:{enabled:!0,type:"x",autoScaleYaxis:!1,zoomedArea:{fill:{color:"#90CAF9",opacity:.4},stroke:{color:"#0D47A1",opacity:.4,width:1}}}},plotOptions:{area:{fillTo:"origin"},bar:{horizontal:!1,columnWidth:"70%",barHeight:"70%",distributed:!1,borderRadius:0,rangeBarOverlap:!0,rangeBarGroupRows:!1,colors:{ranges:[],backgroundBarColors:[],backgroundBarOpacity:1,backgroundBarRadius:0},dataLabels:{position:"top",maxItems:100,hideOverflowingLabels:!0,orientation:"horizontal"}},bubble:{minBubbleRadius:void 0,maxBubbleRadius:void 0},candlestick:{colors:{upward:"#00B746",downward:"#EF403C"},wick:{useFillColor:!0}},boxPlot:{colors:{upper:"#00E396",lower:"#008FFB"}},heatmap:{radius:2,enableShades:!0,shadeIntensity:.5,reverseNegativeShade:!1,distributed:!1,useFillColorAsStroke:!1,colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},treemap:{enableShades:!0,shadeIntensity:.5,distributed:!1,reverseNegativeShade:!1,useFillColorAsStroke:!1,colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},radialBar:{inverseOrder:!1,startAngle:0,endAngle:360,offsetX:0,offsetY:0,hollow:{margin:5,size:"50%",background:"transparent",image:void 0,imageWidth:150,imageHeight:150,imageOffsetX:0,imageOffsetY:0,imageClipped:!0,position:"front",dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},track:{show:!0,startAngle:void 0,endAngle:void 0,background:"#f2f2f2",strokeWidth:"97%",opacity:1,margin:5,dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},dataLabels:{show:!0,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:0,formatter:function(t){return t}},value:{show:!0,fontSize:"14px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:16,formatter:function(t){return t+"%"}},total:{show:!1,label:"Total",fontSize:"16px",fontWeight:600,fontFamily:void 0,color:void 0,formatter:function(t){return t.globals.seriesTotals.reduce((function(t,e){return t+e}),0)/t.globals.series.length+"%"}}}},pie:{customScale:1,offsetX:0,offsetY:0,startAngle:0,endAngle:360,expandOnClick:!0,dataLabels:{offset:0,minAngleToShowLabel:10},donut:{size:"65%",background:"transparent",labels:{show:!1,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:-10,formatter:function(t){return t}},value:{show:!0,fontSize:"20px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:10,formatter:function(t){return t}},total:{show:!1,showAlways:!1,label:"Total",fontSize:"16px",fontWeight:400,fontFamily:void 0,color:void 0,formatter:function(t){return t.globals.seriesTotals.reduce((function(t,e){return t+e}),0)}}}}},polarArea:{rings:{strokeWidth:1,strokeColor:"#e8e8e8"},spokes:{strokeWidth:1,connectorColors:"#e8e8e8"}},radar:{size:void 0,offsetX:0,offsetY:0,polygons:{strokeWidth:1,strokeColors:"#e8e8e8",connectorColors:"#e8e8e8",fill:{colors:void 0}}}},colors:void 0,dataLabels:{enabled:!0,enabledOnSeries:void 0,formatter:function(t){return null!==t?t:""},textAnchor:"middle",distributed:!1,offsetX:0,offsetY:0,style:{fontSize:"12px",fontFamily:void 0,fontWeight:600,colors:void 0},background:{enabled:!0,foreColor:"#fff",borderRadius:2,padding:4,opacity:.9,borderWidth:1,borderColor:"#fff",dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]},image:{src:[],width:void 0,height:void 0},pattern:{style:"squares",width:6,height:6,strokeWidth:2}},grid:{show:!0,borderColor:"#e0e0e0",strokeDashArray:0,position:"back",xaxis:{lines:{show:!1}},yaxis:{lines:{show:!0}},row:{colors:void 0,opacity:.5},column:{colors:void 0,opacity:.5},padding:{top:0,right:10,bottom:0,left:12}},labels:[],legend:{show:!0,showForSingleSeries:!1,showForNullSeries:!0,showForZeroSeries:!0,floating:!1,position:"bottom",horizontalAlign:"center",inverseOrder:!1,fontSize:"12px",fontFamily:void 0,fontWeight:400,width:void 0,height:void 0,formatter:void 0,tooltipHoverFormatter:void 0,offsetX:-20,offsetY:4,customLegendItems:[],labels:{colors:void 0,useSeriesColors:!1},markers:{width:12,height:12,strokeWidth:0,fillColors:void 0,strokeColor:"#fff",radius:12,customHTML:void 0,offsetX:0,offsetY:0,onClick:void 0},itemMargin:{horizontal:5,vertical:2},onItemClick:{toggleDataSeries:!0},onItemHover:{highlightDataSeries:!0}},markers:{discrete:[],size:0,colors:void 0,strokeColors:"#fff",strokeWidth:2,strokeOpacity:.9,strokeDashArray:0,fillOpacity:1,shape:"circle",width:8,height:8,radius:2,offsetX:0,offsetY:0,onClick:void 0,onDblClick:void 0,showNullDataPoints:!0,hover:{size:void 0,sizeOffset:3}},noData:{text:void 0,align:"center",verticalAlign:"middle",offsetX:0,offsetY:0,style:{color:void 0,fontSize:"14px",fontFamily:void 0}},responsive:[],series:void 0,states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"lighten",value:.1}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"darken",value:.5}}},title:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:0,floating:!1,style:{fontSize:"14px",fontWeight:900,fontFamily:void 0,color:void 0}},subtitle:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:30,floating:!1,style:{fontSize:"12px",fontWeight:400,fontFamily:void 0,color:void 0}},stroke:{show:!0,curve:"smooth",lineCap:"butt",width:2,colors:void 0,dashArray:0},tooltip:{enabled:!0,enabledOnSeries:void 0,shared:!0,followCursor:!1,intersect:!1,inverseOrder:!1,custom:void 0,fillSeriesColor:!1,theme:"light",style:{fontSize:"12px",fontFamily:void 0},onDatasetHover:{highlightDataSeries:!1},x:{show:!0,format:"dd MMM",formatter:void 0},y:{formatter:void 0,title:{formatter:function(t){return t?t+": ":""}}},z:{formatter:void 0,title:"Size: "},marker:{show:!0,fillColors:void 0},items:{display:"flex"},fixed:{enabled:!1,position:"topRight",offsetX:0,offsetY:0}},xaxis:{type:"category",categories:[],convertedCatToNumeric:!1,offsetX:0,offsetY:0,overwriteCategories:void 0,labels:{show:!0,rotate:-45,rotateAlways:!1,hideOverlappingLabels:!0,trim:!1,minHeight:void 0,maxHeight:120,showDuplicates:!0,style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""},offsetX:0,offsetY:0,format:void 0,formatter:void 0,datetimeUTC:!0,datetimeFormatter:{year:"yyyy",month:"MMM 'yy",day:"dd MMM",hour:"HH:mm",minute:"HH:mm:ss",second:"HH:mm:ss"}},axisBorder:{show:!0,color:"#e0e0e0",width:"100%",height:1,offsetX:0,offsetY:0},axisTicks:{show:!0,color:"#e0e0e0",height:6,offsetX:0,offsetY:0},tickAmount:void 0,tickPlacement:"on",min:void 0,max:void 0,range:void 0,floating:!1,decimalsInFloat:void 0,position:"bottom",title:{text:void 0,offsetX:0,offsetY:0,style:{color:void 0,fontSize:"12px",fontWeight:900,fontFamily:void 0,cssClass:""}},crosshairs:{show:!0,width:1,position:"back",opacity:.9,stroke:{color:"#b6b6b6",width:1,dashArray:3},fill:{type:"solid",color:"#B1B9C4",gradient:{colorFrom:"#D8E3F0",colorTo:"#BED1E6",stops:[0,100],opacityFrom:.4,opacityTo:.5}},dropShadow:{enabled:!1,left:0,top:0,blur:1,opacity:.4}},tooltip:{enabled:!0,offsetY:0,formatter:void 0,style:{fontSize:"12px",fontFamily:void 0}}},yaxis:this.yAxis,theme:{mode:"light",palette:"palette1",monochrome:{enabled:!1,color:"#008FFB",shadeTo:"light",shadeIntensity:.65}}}}}]),t}(),C=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.graphics=new b(this.ctx),this.w.globals.isBarHorizontal&&(this.invertAxis=!0),this.helpers=new m(this),this.xAxisAnnotations=new v(this),this.yAxisAnnotations=new w(this),this.pointsAnnotations=new k(this),this.w.globals.isBarHorizontal&&this.w.config.yaxis[0].reversed&&(this.inversedReversedAxis=!0),this.xDivision=this.w.globals.gridWidth/this.w.globals.dataPoints}return a(t,[{key:"drawAxesAnnotations",value:function(){var t=this.w;if(t.globals.axisCharts){for(var e=this.yAxisAnnotations.drawYAxisAnnotations(),i=this.xAxisAnnotations.drawXAxisAnnotations(),a=this.pointsAnnotations.drawPointAnnotations(),s=t.config.chart.animations.enabled,r=[e,i,a],o=[i.node,e.node,a.node],n=0;n<3;n++)t.globals.dom.elGraphical.add(r[n]),!s||t.globals.resized||t.globals.dataChanged||"scatter"!==t.config.chart.type&&"bubble"!==t.config.chart.type&&t.globals.dataPoints>1&&o[n].classList.add("apexcharts-element-hidden"),t.globals.delayedElements.push({el:o[n],index:0});this.helpers.annotationsBackground()}}},{key:"drawImageAnnos",value:function(){var t=this;this.w.config.annotations.images.map((function(e,i){t.addImage(e,i)}))}},{key:"drawTextAnnos",value:function(){var t=this;this.w.config.annotations.texts.map((function(e,i){t.addText(e,i)}))}},{key:"addXaxisAnnotation",value:function(t,e,i){this.xAxisAnnotations.addXaxisAnnotation(t,e,i)}},{key:"addYaxisAnnotation",value:function(t,e,i){this.yAxisAnnotations.addYaxisAnnotation(t,e,i)}},{key:"addPointAnnotation",value:function(t,e,i){this.pointsAnnotations.addPointAnnotation(t,e,i)}},{key:"addText",value:function(t,e){var i=t.x,a=t.y,s=t.text,r=t.textAnchor,o=t.foreColor,n=t.fontSize,l=t.fontFamily,h=t.fontWeight,c=t.cssClass,d=t.backgroundColor,g=t.borderWidth,u=t.strokeDashArray,f=t.borderRadius,p=t.borderColor,x=t.appendTo,b=void 0===x?".apexcharts-annotations":x,m=t.paddingLeft,v=void 0===m?4:m,y=t.paddingRight,w=void 0===y?4:y,k=t.paddingBottom,A=void 0===k?2:k,S=t.paddingTop,C=void 0===S?2:S,L=this.w,P=this.graphics.drawText({x:i,y:a,text:s,textAnchor:r||"start",fontSize:n||"12px",fontWeight:h||"regular",fontFamily:l||L.config.chart.fontFamily,foreColor:o||L.config.chart.foreColor,cssClass:c}),T=L.globals.dom.baseEl.querySelector(b);T&&T.appendChild(P.node);var z=P.bbox();if(s){var I=this.graphics.drawRect(z.x-v,z.y-C,z.width+v+w,z.height+A+C,f,d||"transparent",1,g,p,u);T.insertBefore(I.node,P.node)}}},{key:"addImage",value:function(t,e){var i=this.w,a=t.path,s=t.x,r=void 0===s?0:s,o=t.y,n=void 0===o?0:o,l=t.width,h=void 0===l?20:l,c=t.height,d=void 0===c?20:c,g=t.appendTo,u=void 0===g?".apexcharts-annotations":g,f=i.globals.dom.Paper.image(a);f.size(h,d).move(r,n);var p=i.globals.dom.baseEl.querySelector(u);p&&p.appendChild(f.node)}},{key:"addXaxisAnnotationExternal",value:function(t,e,i){return this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"xaxis",contextMethod:i.addXaxisAnnotation}),i}},{key:"addYaxisAnnotationExternal",value:function(t,e,i){return this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"yaxis",contextMethod:i.addYaxisAnnotation}),i}},{key:"addPointAnnotationExternal",value:function(t,e,i){return void 0===this.invertAxis&&(this.invertAxis=i.w.globals.isBarHorizontal),this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"point",contextMethod:i.addPointAnnotation}),i}},{key:"addAnnotationExternal",value:function(t){var e=t.params,i=t.pushToMemory,a=t.context,s=t.type,r=t.contextMethod,o=a,n=o.w,l=n.globals.dom.baseEl.querySelector(".apexcharts-".concat(s,"-annotations")),h=l.childNodes.length+1,c=new S,d=Object.assign({},"xaxis"===s?c.xAxisAnnotation:"yaxis"===s?c.yAxisAnnotation:c.pointAnnotation),g=f.extend(d,e);switch(s){case"xaxis":this.addXaxisAnnotation(g,l,h);break;case"yaxis":this.addYaxisAnnotation(g,l,h);break;case"point":this.addPointAnnotation(g,l,h)}var u=n.globals.dom.baseEl.querySelector(".apexcharts-".concat(s,"-annotations .apexcharts-").concat(s,"-annotation-label[rel='").concat(h,"']")),p=this.helpers.addBackgroundToAnno(u,g);return p&&l.insertBefore(p.node,u),i&&n.globals.memory.methodsToExec.push({context:o,id:g.id?g.id:f.randomId(),method:r,label:"addAnnotation",params:e}),a}},{key:"clearAnnotations",value:function(t){var e=t.w,i=e.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations");e.globals.memory.methodsToExec.map((function(t,i){"addText"!==t.label&&"addAnnotation"!==t.label||e.globals.memory.methodsToExec.splice(i,1)})),i=f.listToArray(i),Array.prototype.forEach.call(i,(function(t){for(;t.firstChild;)t.removeChild(t.firstChild)}))}},{key:"removeAnnotation",value:function(t,e){var i=t.w,a=i.globals.dom.baseEl.querySelectorAll(".".concat(e));a&&(i.globals.memory.methodsToExec.map((function(t,a){t.id===e&&i.globals.memory.methodsToExec.splice(a,1)})),Array.prototype.forEach.call(a,(function(t){t.parentElement.removeChild(t)})))}}]),t}(),L=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.opts=null,this.seriesIndex=0}return a(t,[{key:"clippedImgArea",value:function(t){var e=this.w,i=e.config,a=parseInt(e.globals.gridWidth,10),s=parseInt(e.globals.gridHeight,10),r=a>s?a:s,o=t.image,n=0,l=0;void 0===t.width&&void 0===t.height?void 0!==i.fill.image.width&&void 0!==i.fill.image.height?(n=i.fill.image.width+1,l=i.fill.image.height):(n=r+1,l=r):(n=t.width,l=t.height);var h=document.createElementNS(e.globals.SVGNS,"pattern");b.setAttrs(h,{id:t.patternID,patternUnits:t.patternUnits?t.patternUnits:"userSpaceOnUse",width:n+"px",height:l+"px"});var c=document.createElementNS(e.globals.SVGNS,"image");h.appendChild(c),c.setAttributeNS(window.SVG.xlink,"href",o),b.setAttrs(c,{x:0,y:0,preserveAspectRatio:"none",width:n+"px",height:l+"px"}),c.style.opacity=t.opacity,e.globals.dom.elDefs.node.appendChild(h)}},{key:"getSeriesIndex",value:function(t){var e=this.w;return("bar"===e.config.chart.type||"rangeBar"===e.config.chart.type)&&e.config.plotOptions.bar.distributed||"heatmap"===e.config.chart.type||"treemap"===e.config.chart.type?this.seriesIndex=t.seriesNumber:this.seriesIndex=t.seriesNumber%e.globals.series.length,this.seriesIndex}},{key:"fillPath",value:function(t){var e=this.w;this.opts=t;var i,a,s,r=this.w.config;this.seriesIndex=this.getSeriesIndex(t);var o=this.getFillColors()[this.seriesIndex];void 0!==e.globals.seriesColors[this.seriesIndex]&&(o=e.globals.seriesColors[this.seriesIndex]),"function"==typeof o&&(o=o({seriesIndex:this.seriesIndex,dataPointIndex:t.dataPointIndex,value:t.value,w:e}));var n=this.getFillType(this.seriesIndex),l=Array.isArray(r.fill.opacity)?r.fill.opacity[this.seriesIndex]:r.fill.opacity;t.color&&(o=t.color);var h=o;if(-1===o.indexOf("rgb")?o.length<9&&(h=f.hexToRgba(o,l)):o.indexOf("rgba")>-1&&(l=f.getOpacityFromRGBA(o)),t.opacity&&(l=t.opacity),"pattern"===n&&(a=this.handlePatternFill(a,o,l,h)),"gradient"===n&&(s=this.handleGradientFill(o,l,this.seriesIndex)),"image"===n){var c=r.fill.image.src,d=t.patternID?t.patternID:"";this.clippedImgArea({opacity:l,image:Array.isArray(c)?t.seriesNumber-1&&(c=f.getOpacityFromRGBA(h));var d=void 0===s.fill.gradient.opacityTo?e:Array.isArray(s.fill.gradient.opacityTo)?s.fill.gradient.opacityTo[i]:s.fill.gradient.opacityTo;if(void 0===s.fill.gradient.gradientToColors||0===s.fill.gradient.gradientToColors.length)a="dark"===s.fill.gradient.shade?n.shadeColor(-1*parseFloat(s.fill.gradient.shadeIntensity),t.indexOf("rgb")>-1?f.rgb2hex(t):t):n.shadeColor(parseFloat(s.fill.gradient.shadeIntensity),t.indexOf("rgb")>-1?f.rgb2hex(t):t);else if(s.fill.gradient.gradientToColors[r.seriesNumber]){var g=s.fill.gradient.gradientToColors[r.seriesNumber];a=g,g.indexOf("rgba")>-1&&(d=f.getOpacityFromRGBA(g))}else a=t;if(s.fill.gradient.inverseColors){var u=h;h=a,a=u}return h.indexOf("rgb")>-1&&(h=f.rgb2hex(h)),a.indexOf("rgb")>-1&&(a=f.rgb2hex(a)),o.drawGradient(l,h,a,c,d,r.size,s.fill.gradient.stops,s.fill.gradient.colorStops,i)}}]),t}(),P=function(){function t(i,a){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"setGlobalMarkerSize",value:function(){var t=this.w;if(t.globals.markers.size=Array.isArray(t.config.markers.size)?t.config.markers.size:[t.config.markers.size],t.globals.markers.size.length>0){if(t.globals.markers.size.length4&&void 0!==arguments[4]&&arguments[4],o=this.w,n=e,l=t,h=null,c=new b(this.ctx);if((o.globals.markers.size[e]>0||r)&&(h=c.group({class:r?"":"apexcharts-series-markers"})).attr("clip-path","url(#gridRectMarkerMask".concat(o.globals.cuid,")")),Array.isArray(l.x))for(var d=0;d0:o.config.markers.size>0;if(p||r){f.isNumber(l.y[d])?u+=" w".concat(f.randomId()):u="apexcharts-nullpoint";var m=this.getMarkerConfig(u,e,g);o.config.series[n].data[g]&&(o.config.series[n].data[g].fillColor&&(m.pointFillColor=o.config.series[n].data[g].fillColor),o.config.series[n].data[g].strokeColor&&(m.pointStrokeColor=o.config.series[n].data[g].strokeColor)),a&&(m.pSize=a),(s=c.drawMarker(l.x[d],l.y[d],m)).attr("rel",g),s.attr("j",g),s.attr("index",e),s.node.setAttribute("default-marker-size",m.pSize);var v=new x(this.ctx);v.setSelectionFilter(s,e,g),this.addEvents(s),h&&h.add(s)}else void 0===o.globals.pointsArray[e]&&(o.globals.pointsArray[e]=[]),o.globals.pointsArray[e].push([l.x[d],l.y[d]])}return h}},{key:"getMarkerConfig",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=this.w,s=this.getMarkerStyle(e),r=a.globals.markers.size[e],o=a.config.markers;return null!==i&&o.discrete.length&&o.discrete.map((function(t){t.seriesIndex===e&&t.dataPointIndex===i&&(s.pointStrokeColor=t.strokeColor,s.pointFillColor=t.fillColor,r=t.size,s.pointShape=t.shape)})),{pSize:r,pRadius:o.radius,width:Array.isArray(o.width)?o.width[e]:o.width,height:Array.isArray(o.height)?o.height[e]:o.height,pointStrokeWidth:Array.isArray(o.strokeWidth)?o.strokeWidth[e]:o.strokeWidth,pointStrokeColor:s.pointStrokeColor,pointFillColor:s.pointFillColor,shape:s.pointShape||(Array.isArray(o.shape)?o.shape[e]:o.shape),class:t,pointStrokeOpacity:Array.isArray(o.strokeOpacity)?o.strokeOpacity[e]:o.strokeOpacity,pointStrokeDashArray:Array.isArray(o.strokeDashArray)?o.strokeDashArray[e]:o.strokeDashArray,pointFillOpacity:Array.isArray(o.fillOpacity)?o.fillOpacity[e]:o.fillOpacity,seriesIndex:e}}},{key:"addEvents",value:function(t){var e=this.w,i=new b(this.ctx);t.node.addEventListener("mouseenter",i.pathMouseEnter.bind(this.ctx,t)),t.node.addEventListener("mouseleave",i.pathMouseLeave.bind(this.ctx,t)),t.node.addEventListener("mousedown",i.pathMouseDown.bind(this.ctx,t)),t.node.addEventListener("click",e.config.markers.onClick),t.node.addEventListener("dblclick",e.config.markers.onDblClick),t.node.addEventListener("touchstart",i.pathMouseDown.bind(this.ctx,t),{passive:!0})}},{key:"getMarkerStyle",value:function(t){var e=this.w,i=e.globals.markers.colors,a=e.config.markers.strokeColor||e.config.markers.strokeColors;return{pointStrokeColor:Array.isArray(a)?a[t]:a,pointFillColor:Array.isArray(i)?i[t]:i}}}]),t}(),T=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled}return a(t,[{key:"draw",value:function(t,e,i){var a=this.w,s=new b(this.ctx),r=i.realIndex,o=i.pointsPos,n=i.zRatio,l=i.elParent,h=s.group({class:"apexcharts-series-markers apexcharts-series-".concat(a.config.chart.type)});if(h.attr("clip-path","url(#gridRectMarkerMask".concat(a.globals.cuid,")")),Array.isArray(o.x))for(var c=0;cp.maxBubbleRadius&&(f=p.maxBubbleRadius)}a.config.chart.animations.enabled||(u=f);var x=o.x[c],m=o.y[c];if(u=u||0,null!==m&&void 0!==a.globals.series[r][d]||(g=!1),g){var v=this.drawPoint(x,m,u,f,r,d,e);h.add(v)}l.add(h)}}},{key:"drawPoint",value:function(t,e,i,a,s,r,o){var n,l=this.w,h=s,c=new p(this.ctx),d=new x(this.ctx),g=new L(this.ctx),u=new P(this.ctx),f=new b(this.ctx),m=u.getMarkerConfig("apexcharts-marker",h),v=g.fillPath({seriesNumber:s,dataPointIndex:r,patternUnits:"objectBoundingBox",value:l.globals.series[s][o]});if("circle"===m.shape?n=f.drawCircle(i):"square"!==m.shape&&"rect"!==m.shape||(n=f.drawRect(0,0,m.width-m.pointStrokeWidth/2,m.height-m.pointStrokeWidth/2,m.pRadius)),l.config.series[h].data[r]&&l.config.series[h].data[r].fillColor&&(v=l.config.series[h].data[r].fillColor),n.attr({x:t-m.width/2-m.pointStrokeWidth/2,y:e-m.height/2-m.pointStrokeWidth/2,cx:t,cy:e,fill:v,"fill-opacity":m.pointFillOpacity,stroke:m.pointStrokeColor,r:a,"stroke-width":m.pointStrokeWidth,"stroke-dasharray":m.pointStrokeDashArray,"stroke-opacity":m.pointStrokeOpacity}),l.config.chart.dropShadow.enabled){var y=l.config.chart.dropShadow;d.dropShadow(n,y,s)}if(!this.initialAnim||l.globals.dataChanged||l.globals.resized)l.globals.animationEnded=!0;else{var w=l.config.chart.animations.speed;c.animateMarker(n,0,"circle"===m.shape?a:{width:m.width,height:m.height},w,l.globals.easing,(function(){window.setTimeout((function(){c.animationCompleted(n)}),100)}))}if(l.globals.dataChanged&&"circle"===m.shape)if(this.dynamicAnim){var k,A,S,C,T=l.config.chart.animations.dynamicAnimation.speed;null!=(C=l.globals.previousPaths[s]&&l.globals.previousPaths[s][o])&&(k=C.x,A=C.y,S=void 0!==C.r?C.r:a);for(var z=0;zn.globals.gridHeight+d&&(e=n.globals.gridHeight+d/2),void 0===n.globals.dataLabelsRects[a]&&(n.globals.dataLabelsRects[a]=[]),n.globals.dataLabelsRects[a].push({x:t,y:e,width:c,height:d});var g=n.globals.dataLabelsRects[a].length-2,u=void 0!==n.globals.lastDrawnDataLabelsIndexes[a]?n.globals.lastDrawnDataLabelsIndexes[a][n.globals.lastDrawnDataLabelsIndexes[a].length-1]:0;if(void 0!==n.globals.dataLabelsRects[a][g]){var f=n.globals.dataLabelsRects[a][u];(t>f.x+f.width+2||e>f.y+f.height+2||t+c4&&void 0!==arguments[4]?arguments[4]:2,r=this.w,o=new b(this.ctx),n=r.config.dataLabels,l=0,h=0,c=i,d=null;if(!n.enabled||!Array.isArray(t.x))return d;d=o.group({class:"apexcharts-data-labels"});for(var g=0;ge.globals.gridWidth+p.textRects.width+10)&&(n="");var m=e.globals.dataLabels.style.colors[r];(("bar"===e.config.chart.type||"rangeBar"===e.config.chart.type)&&e.config.plotOptions.bar.distributed||e.config.dataLabels.distributed)&&(m=e.globals.dataLabels.style.colors[o]),"function"==typeof m&&(m=m({series:e.globals.series,seriesIndex:r,dataPointIndex:o,w:e})),g&&(m=g);var v=d.offsetX,y=d.offsetY;if("bar"!==e.config.chart.type&&"rangeBar"!==e.config.chart.type||(v=0,y=0),p.drawnextLabel){var w=i.drawText({width:100,height:parseInt(d.style.fontSize,10),x:a+v,y:s+y,foreColor:m,textAnchor:l||d.textAnchor,text:n,fontSize:h||d.style.fontSize,fontFamily:d.style.fontFamily,fontWeight:d.style.fontWeight||"normal"});if(w.attr({class:"apexcharts-datalabel",cx:a,cy:s}),d.dropShadow.enabled){var k=d.dropShadow;new x(this.ctx).dropShadow(w,k)}c.add(w),void 0===e.globals.lastDrawnDataLabelsIndexes[r]&&(e.globals.lastDrawnDataLabelsIndexes[r]=[]),e.globals.lastDrawnDataLabelsIndexes[r].push(o)}}}},{key:"addBackgroundToDataLabel",value:function(t,e){var i=this.w,a=i.config.dataLabels.background,s=a.padding,r=a.padding/2,o=e.width,n=e.height,l=new b(this.ctx).drawRect(e.x-s,e.y-r/2,o+2*s,n+r,a.borderRadius,"transparent"===i.config.chart.background?"#fff":i.config.chart.background,a.opacity,a.borderWidth,a.borderColor);a.dropShadow.enabled&&new x(this.ctx).dropShadow(l,a.dropShadow);return l}},{key:"dataLabelsBackground",value:function(){var t=this.w;if("bubble"!==t.config.chart.type)for(var e=t.globals.dom.baseEl.querySelectorAll(".apexcharts-datalabels text"),i=0;ii.globals.gridHeight&&(c=i.globals.gridHeight-g)),{bcx:o,bcy:r,dataLabelsX:e,dataLabelsY:c}}},{key:"calculateBarsDataLabelsPosition",value:function(t){var e=this.w,i=t.x,a=t.i,s=t.j,r=t.bcy,o=t.barHeight,n=t.barWidth,l=t.textRects,h=t.dataLabelsX,c=t.strokeWidth,d=t.barDataLabelsConfig,g=t.offX,u=t.offY,f=e.globals.gridHeight/e.globals.dataPoints;n=Math.abs(n);var p=r-(this.barCtx.isTimelineBar?0:f)+o/2+l.height/2+u-3,x=this.barCtx.series[a][s]<0,b=i;switch(this.barCtx.isReversed&&(b=i+n-(x?2*n:0),i=e.globals.gridWidth-n),d.position){case"center":h=x?b+n/2-g:Math.max(l.width/2,b-n/2)+g;break;case"bottom":h=x?b+n-c-Math.round(l.width/2)-g:b-n+c+Math.round(l.width/2)+g;break;case"top":h=x?b-c+Math.round(l.width/2)-g:b-c-Math.round(l.width/2)+g}return e.config.chart.stacked||(h<0?h=h+l.width+c:h+l.width/2>e.globals.gridWidth&&(h=e.globals.gridWidth-l.width-c)),{bcx:i,bcy:r,dataLabelsX:h,dataLabelsY:p}}},{key:"drawCalculatedDataLabels",value:function(t){var e=t.x,i=t.y,a=t.val,s=t.i,r=t.j,n=t.textRects,l=t.barHeight,h=t.barWidth,c=t.dataLabelsConfig,d=this.w,g="rotate(0)";"vertical"===d.config.plotOptions.bar.dataLabels.orientation&&(g="rotate(-90, ".concat(e,", ").concat(i,")"));var u=new z(this.barCtx.ctx),f=new b(this.barCtx.ctx),p=c.formatter,x=null,m=d.globals.collapsedSeriesIndices.indexOf(s)>-1;if(c.enabled&&!m){x=f.group({class:"apexcharts-data-labels",transform:g});var v="";void 0!==a&&(v=p(a,{seriesIndex:s,dataPointIndex:r,w:d}));var y=d.globals.series[s][r]<0,w=d.config.plotOptions.bar.dataLabels.position;if("vertical"===d.config.plotOptions.bar.dataLabels.orientation&&("top"===w&&(c.textAnchor=y?"end":"start"),"center"===w&&(c.textAnchor="middle"),"bottom"===w&&(c.textAnchor=y?"end":"start")),this.barCtx.isTimelineBar&&this.barCtx.barOptions.dataLabels.hideOverflowingLabels)h0&&n.width/1.6>h||h<0&&n.width/1.6l&&(v=""));var k=o({},c);this.barCtx.isHorizontal&&a<0&&("start"===c.textAnchor?k.textAnchor="end":"end"===c.textAnchor&&(k.textAnchor="start")),u.plotDataLabelsText({x:e,y:i,text:v,i:s,j:r,parent:x,dataLabelsConfig:k,alwaysDrawDataLabel:!0,offsetCorrection:!0})}return x}}]),t}(),M=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.legendInactiveClass="legend-mouseover-inactive"}return a(t,[{key:"getAllSeriesEls",value:function(){return this.w.globals.dom.baseEl.getElementsByClassName("apexcharts-series")}},{key:"getSeriesByName",value:function(t){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner .apexcharts-series[seriesName='".concat(f.escapeString(t),"']"))}},{key:"isSeriesHidden",value:function(t){var e=this.getSeriesByName(t),i=parseInt(e.getAttribute("data:realIndex"),10);return{isHidden:e.classList.contains("apexcharts-series-collapsed"),realIndex:i}}},{key:"addCollapsedClassToSeries",value:function(t,e){var i=this.w;function a(i){for(var a=0;a0&&void 0!==arguments[0])||arguments[0],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=this.w,s=f.clone(a.globals.initialSeries);a.globals.previousPaths=[],i?(a.globals.collapsedSeries=[],a.globals.ancillaryCollapsedSeries=[],a.globals.collapsedSeriesIndices=[],a.globals.ancillaryCollapsedSeriesIndices=[]):s=this.emptyCollapsedSeries(s),a.config.series=s,t&&(e&&(a.globals.zoomed=!1,this.ctx.updateHelpers.revertDefaultAxisMinMax()),this.ctx.updateHelpers._updateSeries(s,a.config.chart.animations.dynamicAnimation.enabled))}},{key:"emptyCollapsedSeries",value:function(t){for(var e=this.w,i=0;i-1&&(t[i].data=[]);return t}},{key:"toggleSeriesOnHover",value:function(t,e){var i=this.w,a=i.globals.dom.baseEl.querySelectorAll(".apexcharts-series, .apexcharts-datalabels");if("mousemove"===t.type){var s=parseInt(e.getAttribute("rel"),10)-1,r=null,o=null;i.globals.axisCharts||"radialBar"===i.config.chart.type?i.globals.axisCharts?(r=i.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(s,"']")),o=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels[data\\:realIndex='".concat(s,"']"))):r=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(s+1,"']")):r=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(s+1,"'] path"));for(var n=0;n=t.from&&a<=t.to&&s[e].classList.remove(i.legendInactiveClass)}}(a.config.plotOptions.heatmap.colorScale.ranges[o])}else"mouseout"===t.type&&r("remove")}},{key:"getActiveConfigSeriesIndex",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"asc",i=this.w,a=0;if(i.config.series.length>1)for(var s=i.config.series.map((function(e,a){var s=!1;return t&&(s="bar"===i.config.series[a].type||"column"===i.config.series[a].type),e.data&&e.data.length>0&&!s?a:-1})),r="asc"===e?0:s.length-1;"asc"===e?r=0;"asc"===e?r++:r--)if(-1!==s[r]){a=s[r];break}return a}},{key:"getPreviousPaths",value:function(){var t=this.w;function e(e,i,a){for(var s=e[i].childNodes,r={type:a,paths:[],realIndex:e[i].getAttribute("data:realIndex")},o=0;o0)for(var a=function(e){for(var i=t.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(t.config.chart.type," .apexcharts-series[data\\:realIndex='").concat(e,"'] rect")),a=[],s=function(t){var e=function(e){return i[t].getAttribute(e)},s={x:parseFloat(e("x")),y:parseFloat(e("y")),width:parseFloat(e("width")),height:parseFloat(e("height"))};a.push({rect:s,color:i[t].getAttribute("color")})},r=0;r0)for(var a=0;a0?t:[]}));return t}}]),t}(),X=function(){function t(i){e(this,t),this.w=i.w,this.barCtx=i}return a(t,[{key:"initVariables",value:function(t){var e=this.w;this.barCtx.series=t,this.barCtx.totalItems=0,this.barCtx.seriesLen=0,this.barCtx.visibleI=-1,this.barCtx.visibleItems=1;for(var i=0;i0&&(this.barCtx.seriesLen=this.barCtx.seriesLen+1,this.barCtx.totalItems+=t[i].length),e.globals.isXNumeric)for(var a=0;ae.globals.minX&&e.globals.seriesX[i][a]0&&(a=l.globals.minXDiff/d),(r=a/this.barCtx.seriesLen*parseInt(this.barCtx.barOptions.columnWidth,10)/100)<1&&(r=1)}o=l.globals.gridHeight-this.barCtx.baseLineY[this.barCtx.yaxisIndex]-(this.barCtx.isReversed?l.globals.gridHeight:0)+(this.barCtx.isReversed?2*this.barCtx.baseLineY[this.barCtx.yaxisIndex]:0),t=l.globals.padHorizontal+(a-r*this.barCtx.seriesLen)/2}return{x:t,y:e,yDivision:i,xDivision:a,barHeight:s,barWidth:r,zeroH:o,zeroW:n}}},{key:"getPathFillColor",value:function(t,e,i,a){var s=this.w,r=new L(this.barCtx.ctx),o=null,n=this.barCtx.barOptions.distributed?i:e;this.barCtx.barOptions.colors.ranges.length>0&&this.barCtx.barOptions.colors.ranges.map((function(a){t[e][i]>=a.from&&t[e][i]<=a.to&&(o=a.color)}));return s.config.series[e].data[i]&&s.config.series[e].data[i].fillColor&&(o=s.config.series[e].data[i].fillColor),r.fillPath({seriesNumber:this.barCtx.barOptions.distributed?n:a,dataPointIndex:i,color:o,value:t[e][i]})}},{key:"getStrokeWidth",value:function(t,e,i){var a=0,s=this.w;return void 0===this.barCtx.series[t][e]||null===this.barCtx.series[t][e]?this.barCtx.isNullValue=!0:this.barCtx.isNullValue=!1,s.config.stroke.show&&(this.barCtx.isNullValue||(a=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[i]:this.barCtx.strokeWidth)),a}},{key:"barBackground",value:function(t){var e=t.j,i=t.i,a=t.x1,s=t.x2,r=t.y1,o=t.y2,n=t.elSeries,l=this.w,h=new b(this.barCtx.ctx),c=new M(this.barCtx.ctx).getActiveConfigSeriesIndex();if(this.barCtx.barOptions.colors.backgroundBarColors.length>0&&c===i){e>=this.barCtx.barOptions.colors.backgroundBarColors.length&&(e-=this.barCtx.barOptions.colors.backgroundBarColors.length);var d=this.barCtx.barOptions.colors.backgroundBarColors[e],g=h.drawRect(void 0!==a?a:0,void 0!==r?r:0,void 0!==s?s:l.globals.gridWidth,void 0!==o?o:l.globals.gridHeight,this.barCtx.barOptions.colors.backgroundBarRadius,d,this.barCtx.barOptions.colors.backgroundBarOpacity);n.add(g),g.node.classList.add("apexcharts-backgroundBar")}}},{key:"getColumnPaths",value:function(t){var e=t.barWidth,i=t.barXPosition,a=t.yRatio,s=t.y1,r=t.y2,o=t.strokeWidth,n=t.series,l=t.realIndex,h=t.i,c=t.j,d=t.w,g=new b(this.barCtx.ctx);(o=Array.isArray(o)?o[l]:o)||(o=0);var u={barWidth:e,strokeWidth:o,yRatio:a,barXPosition:i,y1:s,y2:r},f=this.getRoundedBars(d,u,n,h,c),p=i,x=i+e,m=g.move(p,s),v=g.move(p,s),y=g.line(x-o,s);return d.globals.previousPaths.length>0&&(v=this.barCtx.getPreviousPath(l,c,!1)),m=m+g.line(p,f.y2)+f.pathWithRadius+g.line(x-o,f.y2)+y+y+"z",v=v+g.line(p,s)+y+y+y+y+y+g.line(p,s),d.config.chart.stacked&&(this.barCtx.yArrj.push(f.y2),this.barCtx.yArrjF.push(Math.abs(s-f.y2)),this.barCtx.yArrjVal.push(this.barCtx.series[h][c])),{pathTo:m,pathFrom:v}}},{key:"getBarpaths",value:function(t){var e=t.barYPosition,i=t.barHeight,a=t.x1,s=t.x2,r=t.strokeWidth,o=t.series,n=t.realIndex,l=t.i,h=t.j,c=t.w,d=new b(this.barCtx.ctx);(r=Array.isArray(r)?r[n]:r)||(r=0);var g={barHeight:i,strokeWidth:r,barYPosition:e,x2:s,x1:a},u=this.getRoundedBars(c,g,o,l,h),f=d.move(a,e),p=d.move(a,e);c.globals.previousPaths.length>0&&(p=this.barCtx.getPreviousPath(n,h,!1));var x=e,m=e+i,v=d.line(a,m-r);return f=f+d.line(u.x2,x)+u.pathWithRadius+d.line(u.x2,m-r)+v+v+"z",p=p+d.line(a,x)+v+v+v+v+v+d.line(a,x),c.config.chart.stacked&&(this.barCtx.xArrj.push(u.x2),this.barCtx.xArrjF.push(Math.abs(a-u.x2)),this.barCtx.xArrjVal.push(this.barCtx.series[l][h])),{pathTo:f,pathFrom:p}}},{key:"getRoundedBars",value:function(t,e,i,a,s){var r=new b(this.barCtx.ctx),o=t.config.plotOptions.bar.borderRadius;if(t.config.chart.stacked&&i.length>1&&a!==this.barCtx.radiusOnSeriesNumber&&(o=0),this.barCtx.isHorizontal){var n="",l=e.x2;if(Math.abs(e.x1-e.x2)0:i[a][s]<0;h&&(o*=-1),l-=o,n=r.quadraticCurve(l+o,e.barYPosition,l+o,e.barYPosition+(h?-1*o:o))+r.line(l+o,e.barYPosition+e.barHeight-e.strokeWidth-(h?-1*o:o))+r.quadraticCurve(l+o,e.barYPosition+e.barHeight-e.strokeWidth,l,e.barYPosition+e.barHeight-e.strokeWidth)}return{pathWithRadius:n,x2:l}}var c="",d=e.y2;if(Math.abs(e.y1-e.y2)=0;o--)this.barCtx.zeroSerieses.indexOf(o)>-1&&o===this.radiusOnSeriesNumber&&(this.barCtx.radiusOnSeriesNumber-=1);for(var n=e.length-1;n>=0;n--)i.globals.collapsedSeriesIndices.indexOf(this.barCtx.radiusOnSeriesNumber)>-1&&(this.barCtx.radiusOnSeriesNumber-=1)}},{key:"getXForValue",value:function(t,e){var i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=i?e:null;return null!=t&&(a=e+t/this.barCtx.invertedYRatio-2*(this.barCtx.isReversed?t/this.barCtx.invertedYRatio:0)),a}},{key:"getYForValue",value:function(t,e){var i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=i?e:null;return null!=t&&(a=e-t/this.barCtx.yRatio[this.barCtx.yaxisIndex]+2*(this.barCtx.isReversed?t/this.barCtx.yRatio[this.barCtx.yaxisIndex]:0)),a}},{key:"getGoalValues",value:function(t,e,i,a,r){var o=this,n=this.w,l=[];return n.globals.seriesGoals[a]&&n.globals.seriesGoals[a][r]&&Array.isArray(n.globals.seriesGoals[a][r])&&n.globals.seriesGoals[a][r].forEach((function(a){var r;l.push((s(r={},t,"x"===t?o.getXForValue(a.value,e,!1):o.getYForValue(a.value,i,!1)),s(r,"attrs",a),r))})),l}},{key:"drawGoalLine",value:function(t){var e=t.barXPosition,i=t.barYPosition,a=t.goalX,s=t.goalY,r=t.barWidth,o=t.barHeight,n=new b(this.barCtx.ctx),l=n.group({className:"apexcharts-bar-goals-groups"}),h=null;return this.barCtx.isHorizontal?Array.isArray(a)&&a.forEach((function(t){h=n.drawLine(t.x,i,t.x,i+o,t.attrs.strokeColor?t.attrs.strokeColor:void 0,0,t.attrs.strokeWidth?t.attrs.strokeWidth:2),l.add(h)})):Array.isArray(s)&&s.forEach((function(t){h=n.drawLine(e,t.y,e+r,t.y,t.attrs.strokeColor?t.attrs.strokeColor:void 0,0,t.attrs.strokeWidth?t.attrs.strokeWidth:2),l.add(h)})),l}}]),t}(),E=function(){function t(i,a){e(this,t),this.ctx=i,this.w=i.w;var s=this.w;this.barOptions=s.config.plotOptions.bar,this.isHorizontal=this.barOptions.horizontal,this.strokeWidth=s.config.stroke.width,this.isNullValue=!1,this.isTimelineBar="datetime"===s.config.xaxis.type&&s.globals.seriesRangeBarTimeline.length,this.xyRatios=a,null!==this.xyRatios&&(this.xRatio=a.xRatio,this.initialXRatio=a.initialXRatio,this.yRatio=a.yRatio,this.invertedXRatio=a.invertedXRatio,this.invertedYRatio=a.invertedYRatio,this.baseLineY=a.baseLineY,this.baseLineInvertedY=a.baseLineInvertedY),this.yaxisIndex=0,this.seriesLen=0,this.barHelpers=new X(this)}return a(t,[{key:"draw",value:function(t,e){var i=this.w,a=new b(this.ctx),s=new y(this.ctx,i);t=s.getLogSeries(t),this.series=t,this.yRatio=s.getLogYRatios(this.yRatio),this.barHelpers.initVariables(t);var r=a.group({class:"apexcharts-bar-series apexcharts-plot-series"});i.config.dataLabels.enabled&&this.totalItems>this.barOptions.dataLabels.maxItems&&console.warn("WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering.");for(var n=0,l=0;n0&&(this.visibleI=this.visibleI+1);var k=0,A=0;this.yRatio.length>1&&(this.yaxisIndex=v),this.isReversed=i.config.yaxis[this.yaxisIndex]&&i.config.yaxis[this.yaxisIndex].reversed;var S=this.barHelpers.initialPositions();p=S.y,k=S.barHeight,c=S.yDivision,g=S.zeroW,u=S.x,A=S.barWidth,h=S.xDivision,d=S.zeroH,this.horizontal||m.push(u+A/2);for(var C=a.group({class:"apexcharts-datalabels","data:realIndex":v}),L=a.group({class:"apexcharts-bar-goals-markers",style:"pointer-events: none"}),P=0;P0&&m.push(u+A/2),x.push(p);var X=this.barHelpers.getPathFillColor(t,n,P,v);this.renderSeries({realIndex:v,pathFill:X,j:P,i:n,pathFrom:z.pathFrom,pathTo:z.pathTo,strokeWidth:T,elSeries:w,x:u,y:p,series:t,barHeight:k,barWidth:A,elDataLabelsWrap:C,elGoalsMarkers:L,visibleSeries:this.visibleI,type:"bar"})}i.globals.seriesXvalues[v]=m,i.globals.seriesYvalues[v]=x,r.add(w)}return r}},{key:"renderSeries",value:function(t){var e=t.realIndex,i=t.pathFill,a=t.lineFill,s=t.j,r=t.i,o=t.pathFrom,n=t.pathTo,l=t.strokeWidth,h=t.elSeries,c=t.x,d=t.y,g=t.y1,u=t.y2,f=t.series,p=t.barHeight,m=t.barWidth,v=t.barYPosition,y=t.elDataLabelsWrap,w=t.elGoalsMarkers,k=t.visibleSeries,A=t.type,S=this.w,C=new b(this.ctx);a||(a=this.barOptions.distributed?S.globals.stroke.colors[s]:S.globals.stroke.colors[e]),S.config.series[r].data[s]&&S.config.series[r].data[s].strokeColor&&(a=S.config.series[r].data[s].strokeColor),this.isNullValue&&(i="none");var L=s/S.config.chart.animations.animateGradually.delay*(S.config.chart.animations.speed/S.globals.dataPoints)/2.4,P=C.renderPaths({i:r,j:s,realIndex:e,pathFrom:o,pathTo:n,stroke:a,strokeWidth:l,strokeLineCap:S.config.stroke.lineCap,fill:i,animationDelay:L,initialSpeed:S.config.chart.animations.speed,dataChangeSpeed:S.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(A,"-area")});P.attr("clip-path","url(#gridRectMask".concat(S.globals.cuid,")")),void 0!==g&&void 0!==u&&(P.attr("data-range-y1",g),P.attr("data-range-y2",u)),new x(this.ctx).setSelectionFilter(P,e,s),h.add(P);var T=new I(this).handleBarDataLabels({x:c,y:d,y1:g,y2:u,i:r,j:s,series:f,realIndex:e,barHeight:p,barWidth:m,barYPosition:v,renderedPath:P,visibleSeries:k});return null!==T&&y.add(T),h.add(y),w&&h.add(w),h}},{key:"drawBarPaths",value:function(t){var e=t.indexes,i=t.barHeight,a=t.strokeWidth,s=t.zeroW,r=t.x,o=t.y,n=t.yDivision,l=t.elSeries,h=this.w,c=e.i,d=e.j;h.globals.isXNumeric&&(o=(h.globals.seriesX[c][d]-h.globals.minX)/this.invertedXRatio-i);var g=o+i*this.visibleI;r=this.barHelpers.getXForValue(this.series[c][d],s);var u=this.barHelpers.getBarpaths({barYPosition:g,barHeight:i,x1:s,x2:r,strokeWidth:a,series:this.series,realIndex:e.realIndex,i:c,j:d,w:h});return h.globals.isXNumeric||(o+=n),this.barHelpers.barBackground({j:d,i:c,y1:g-i*this.visibleI,y2:i*this.seriesLen,elSeries:l}),{pathTo:u.pathTo,pathFrom:u.pathFrom,x:r,y:o,goalX:this.barHelpers.getGoalValues("x",s,null,c,d),barYPosition:g}}},{key:"drawColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=t.y,s=t.xDivision,r=t.barWidth,o=t.zeroH,n=t.strokeWidth,l=t.elSeries,h=this.w,c=e.realIndex,d=e.i,g=e.j,u=e.bc;if(h.globals.isXNumeric){var f=c;h.globals.seriesX[c].length||(f=h.globals.maxValsInArrayIndex),i=(h.globals.seriesX[f][g]-h.globals.minX)/this.xRatio-r*this.seriesLen/2}var p=i+r*this.visibleI;a=this.barHelpers.getYForValue(this.series[d][g],o);var x=this.barHelpers.getColumnPaths({barXPosition:p,barWidth:r,y1:o,y2:a,strokeWidth:n,series:this.series,realIndex:e.realIndex,i:d,j:g,w:h});return h.globals.isXNumeric||(i+=s),this.barHelpers.barBackground({bc:u,j:g,i:d,x1:p-n/2-r*this.visibleI,x2:r*this.seriesLen+n/2,elSeries:l}),{pathTo:x.pathTo,pathFrom:x.pathFrom,x:i,y:a,goalY:this.barHelpers.getGoalValues("y",null,o,d,g),barXPosition:p}}},{key:"getPreviousPath",value:function(t,e){for(var i,a=this.w,s=0;s0&&parseInt(r.realIndex,10)===parseInt(t,10)&&void 0!==a.globals.previousPaths[s].paths[e]&&(i=a.globals.previousPaths[s].paths[e].d)}return i}}]),t}(),Y=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.months31=[1,3,5,7,8,10,12],this.months30=[2,4,6,9,11],this.daysCntOfYear=[0,31,59,90,120,151,181,212,243,273,304,334]}return a(t,[{key:"isValidDate",value:function(t){return!isNaN(this.parseDate(t))}},{key:"getTimeStamp",value:function(t){return Date.parse(t)?this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(t).toISOString().substr(0,25)).getTime():new Date(t).getTime():t}},{key:"getDate",value:function(t){return this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(t).toUTCString()):new Date(t)}},{key:"parseDate",value:function(t){var e=Date.parse(t);if(!isNaN(e))return this.getTimeStamp(t);var i=Date.parse(t.replace(/-/g,"/").replace(/[a-z]+/gi," "));return i=this.getTimeStamp(i)}},{key:"parseDateWithTimezone",value:function(t){return Date.parse(t.replace(/-/g,"/").replace(/[a-z]+/gi," "))}},{key:"formatDate",value:function(t,e){var i=this.w.globals.locale,a=this.w.config.xaxis.labels.datetimeUTC,s=["\0"].concat(g(i.months)),r=["\x01"].concat(g(i.shortMonths)),o=["\x02"].concat(g(i.days)),n=["\x03"].concat(g(i.shortDays));function l(t,e){var i=t+"";for(e=e||2;i.length12?u-12:0===u?12:u;e=(e=(e=(e=e.replace(/(^|[^\\])HH+/g,"$1"+l(u))).replace(/(^|[^\\])H/g,"$1"+u)).replace(/(^|[^\\])hh+/g,"$1"+l(f))).replace(/(^|[^\\])h/g,"$1"+f);var p=a?t.getUTCMinutes():t.getMinutes();e=(e=e.replace(/(^|[^\\])mm+/g,"$1"+l(p))).replace(/(^|[^\\])m/g,"$1"+p);var x=a?t.getUTCSeconds():t.getSeconds();e=(e=e.replace(/(^|[^\\])ss+/g,"$1"+l(x))).replace(/(^|[^\\])s/g,"$1"+x);var b=a?t.getUTCMilliseconds():t.getMilliseconds();e=e.replace(/(^|[^\\])fff+/g,"$1"+l(b,3)),b=Math.round(b/10),e=e.replace(/(^|[^\\])ff/g,"$1"+l(b)),b=Math.round(b/10);var m=u<12?"AM":"PM";e=(e=(e=e.replace(/(^|[^\\])f/g,"$1"+b)).replace(/(^|[^\\])TT+/g,"$1"+m)).replace(/(^|[^\\])T/g,"$1"+m.charAt(0));var v=m.toLowerCase();e=(e=e.replace(/(^|[^\\])tt+/g,"$1"+v)).replace(/(^|[^\\])t/g,"$1"+v.charAt(0));var y=-t.getTimezoneOffset(),w=a||!y?"Z":y>0?"+":"-";if(!a){var k=(y=Math.abs(y))%60;w+=l(Math.floor(y/60))+":"+l(k)}e=e.replace(/(^|[^\\])K/g,"$1"+w);var A=(a?t.getUTCDay():t.getDay())+1;return e=(e=(e=(e=(e=e.replace(new RegExp(o[0],"g"),o[A])).replace(new RegExp(n[0],"g"),n[A])).replace(new RegExp(s[0],"g"),s[c])).replace(new RegExp(r[0],"g"),r[c])).replace(/\\(.)/g,"$1")}},{key:"getTimeUnitsfromTimestamp",value:function(t,e,i){var a=this.w;void 0!==a.config.xaxis.min&&(t=a.config.xaxis.min),void 0!==a.config.xaxis.max&&(e=a.config.xaxis.max);var s=this.getDate(t),r=this.getDate(e),o=this.formatDate(s,"yyyy MM dd HH mm ss fff").split(" "),n=this.formatDate(r,"yyyy MM dd HH mm ss fff").split(" ");return{minMillisecond:parseInt(o[6],10),maxMillisecond:parseInt(n[6],10),minSecond:parseInt(o[5],10),maxSecond:parseInt(n[5],10),minMinute:parseInt(o[4],10),maxMinute:parseInt(n[4],10),minHour:parseInt(o[3],10),maxHour:parseInt(n[3],10),minDate:parseInt(o[2],10),maxDate:parseInt(n[2],10),minMonth:parseInt(o[1],10)-1,maxMonth:parseInt(n[1],10)-1,minYear:parseInt(o[0],10),maxYear:parseInt(n[0],10)}}},{key:"isLeapYear",value:function(t){return t%4==0&&t%100!=0||t%400==0}},{key:"calculcateLastDaysOfMonth",value:function(t,e,i){return this.determineDaysOfMonths(t,e)-i}},{key:"determineDaysOfYear",value:function(t){var e=365;return this.isLeapYear(t)&&(e=366),e}},{key:"determineRemainingDaysOfYear",value:function(t,e,i){var a=this.daysCntOfYear[e]+i;return e>1&&this.isLeapYear()&&a++,a}},{key:"determineDaysOfMonths",value:function(t,e){var i=30;switch(t=f.monthMod(t),!0){case this.months30.indexOf(t)>-1:2===t&&(i=this.isLeapYear(e)?29:28);break;case this.months31.indexOf(t)>-1:default:i=31}return i}}]),t}(),F=function(t){n(s,E);var i=d(s);function s(){return e(this,s),i.apply(this,arguments)}return a(s,[{key:"draw",value:function(t,e){var i=this.w,a=new b(this.ctx);this.rangeBarOptions=this.w.config.plotOptions.rangeBar,this.series=t,this.seriesRangeStart=i.globals.seriesRangeStart,this.seriesRangeEnd=i.globals.seriesRangeEnd,this.barHelpers.initVariables(t);for(var s=a.group({class:"apexcharts-rangebar-series apexcharts-plot-series"}),r=0;r0&&(this.visibleI=this.visibleI+1);var x=0,m=0;this.yRatio.length>1&&(this.yaxisIndex=u);var v=this.barHelpers.initialPositions();d=v.y,h=v.zeroW,c=v.x,m=v.barWidth,n=v.xDivision,l=v.zeroH;for(var y=a.group({class:"apexcharts-datalabels","data:realIndex":u}),w=a.group({class:"apexcharts-rangebar-goals-markers",style:"pointer-events: none"}),k=0;k0}));return a=l.config.plotOptions.bar.rangeBarGroupRows?s+o*g:s+r*this.visibleI+o*g,u>-1&&!l.config.plotOptions.bar.rangeBarOverlap&&(h=l.globals.seriesRangeBarTimeline[e][u].overlaps).indexOf(c)>-1&&(a=(r=n.barHeight/h.length)*this.visibleI+o*(100-parseInt(this.barOptions.barHeight,10))/100/2+r*(this.visibleI+h.indexOf(c))+o*g),{barYPosition:a,barHeight:r}}},{key:"drawRangeColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=(t.strokeWidth,t.xDivision),s=t.barWidth,r=t.zeroH,o=this.w,n=e.i,l=e.j,h=this.yRatio[this.yaxisIndex],c=e.realIndex,d=this.getRangeValue(c,l),g=Math.min(d.start,d.end),u=Math.max(d.start,d.end);o.globals.isXNumeric&&(i=(o.globals.seriesX[n][l]-o.globals.minX)/this.xRatio-s/2);var f=i+s*this.visibleI;void 0===this.series[n][l]||null===this.series[n][l]?g=r:(g=r-g/h,u=r-u/h);var p=Math.abs(u-g),x=this.barHelpers.getColumnPaths({barXPosition:f,barWidth:s,y1:g,y2:u,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,realIndex:e.realIndex,i:c,j:l,w:o});return o.globals.isXNumeric||(i+=a),{pathTo:x.pathTo,pathFrom:x.pathFrom,barHeight:p,x:i,y:u,goalY:this.barHelpers.getGoalValues("y",null,r,n,l),barXPosition:f}}},{key:"drawRangeBarPaths",value:function(t){var e=t.indexes,i=t.y,a=t.y1,s=t.y2,r=t.yDivision,o=t.barHeight,n=t.barYPosition,l=t.zeroW,h=this.w,c=l+a/this.invertedYRatio,d=l+s/this.invertedYRatio,g=Math.abs(d-c),u=this.barHelpers.getBarpaths({barYPosition:n,barHeight:o,x1:c,x2:d,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,i:e.realIndex,realIndex:e.realIndex,j:e.j,w:h});return h.globals.isXNumeric||(i+=r),{pathTo:u.pathTo,pathFrom:u.pathFrom,barWidth:g,x:d,goalX:this.barHelpers.getGoalValues("x",l,null,e.realIndex,e.j),y:i}}},{key:"getRangeValue",value:function(t,e){var i=this.w;return{start:i.globals.seriesRangeStart[t][e],end:i.globals.seriesRangeEnd[t][e]}}},{key:"getTooltipValues",value:function(t){var e=t.ctx,i=t.seriesIndex,a=t.dataPointIndex,s=t.y1,r=t.y2,o=t.w,n=o.globals.seriesRangeStart[i][a],l=o.globals.seriesRangeEnd[i][a],h=o.globals.labels[a],c=o.config.series[i].name?o.config.series[i].name:"",d=o.config.tooltip.y.formatter,g=o.config.tooltip.y.title.formatter,u={w:o,seriesIndex:i,dataPointIndex:a,start:n,end:l};"function"==typeof g&&(c=g(c,u)),Number.isFinite(s)&&Number.isFinite(r)&&(n=s,l=r,o.config.series[i].data[a].x&&(h=o.config.series[i].data[a].x+":"),"function"==typeof d&&(h=d(h,u)));var f="",p="",x=o.globals.colors[i];if(void 0===o.config.tooltip.x.formatter)if("datetime"===o.config.xaxis.type){var b=new Y(e);f=b.formatDate(b.getDate(n),o.config.tooltip.x.format),p=b.formatDate(b.getDate(l),o.config.tooltip.x.format)}else f=n,p=l;else f=o.config.tooltip.x.formatter(n),p=o.config.tooltip.x.formatter(l);return{start:n,end:l,startVal:f,endVal:p,ylabel:h,color:x,seriesName:c}}},{key:"buildCustomTooltipHTML",value:function(t){var e=t.color,i=t.seriesName;return'
'+(i||"")+'
'+t.ylabel+' '+t.start+' - '+t.end+"
"}}]),s}(),R=function(){function t(i){e(this,t),this.opts=i}return a(t,[{key:"line",value:function(){return{chart:{animations:{easing:"swing"}},dataLabels:{enabled:!1},stroke:{width:5,curve:"straight"},markers:{size:0,hover:{sizeOffset:6}},xaxis:{crosshairs:{width:1}}}}},{key:"sparkline",value:function(t){this.opts.yaxis[0].show=!1,this.opts.yaxis[0].title.text="",this.opts.yaxis[0].axisBorder.show=!1,this.opts.yaxis[0].axisTicks.show=!1,this.opts.yaxis[0].floating=!0;return f.extend(t,{grid:{show:!1,padding:{left:0,right:0,top:0,bottom:0}},legend:{show:!1},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}},chart:{toolbar:{show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1}})}},{key:"bar",value:function(){return{chart:{stacked:!1,animations:{easing:"swing"}},plotOptions:{bar:{dataLabels:{position:"center"}}},dataLabels:{style:{colors:["#fff"]},background:{enabled:!1}},stroke:{width:0,lineCap:"round"},fill:{opacity:.85},legend:{markers:{shape:"square",radius:2,size:8}},tooltip:{shared:!1,intersect:!0},xaxis:{tooltip:{enabled:!1},tickPlacement:"between",crosshairs:{width:"barWidth",position:"back",fill:{type:"gradient"},dropShadow:{enabled:!1},stroke:{width:0}}}}}},{key:"candlestick",value:function(){var t=this;return{stroke:{width:1,colors:["#333"]},fill:{opacity:1},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(e){var i=e.seriesIndex,a=e.dataPointIndex,s=e.w;return t._getBoxTooltip(s,i,a,["Open","High","","Low","Close"],"candlestick")}},states:{active:{filter:{type:"none"}}},xaxis:{crosshairs:{width:1}}}}},{key:"boxPlot",value:function(){var t=this;return{chart:{animations:{dynamicAnimation:{enabled:!1}}},stroke:{width:1,colors:["#24292e"]},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(e){var i=e.seriesIndex,a=e.dataPointIndex,s=e.w;return t._getBoxTooltip(s,i,a,["Minimum","Q1","Median","Q3","Maximum"],"boxPlot")}},markers:{size:5,strokeWidth:1,strokeColors:"#111"},xaxis:{crosshairs:{width:1}}}}},{key:"rangeBar",value:function(){return{stroke:{width:0,lineCap:"square"},plotOptions:{bar:{borderRadius:0,dataLabels:{position:"center"}}},dataLabels:{enabled:!1,formatter:function(t,e){e.ctx;var i=e.seriesIndex,a=e.dataPointIndex,s=e.w,r=s.globals.seriesRangeStart[i][a];return s.globals.seriesRangeEnd[i][a]-r},background:{enabled:!1},style:{colors:["#fff"]}},tooltip:{shared:!1,followCursor:!0,custom:function(t){return t.w.config.plotOptions&&t.w.config.plotOptions.bar&&t.w.config.plotOptions.bar.horizontal?function(t){var e=new F(t.ctx,null),i=e.getTooltipValues(t),a=i.color,s=i.seriesName,r=i.ylabel,o=i.startVal,n=i.endVal;return e.buildCustomTooltipHTML({color:a,seriesName:s,ylabel:r,start:o,end:n})}(t):function(t){var e=new F(t.ctx,null),i=e.getTooltipValues(t),a=i.color,s=i.seriesName,r=i.ylabel,o=i.start,n=i.end;return e.buildCustomTooltipHTML({color:a,seriesName:s,ylabel:r,start:o,end:n})}(t)}},xaxis:{tickPlacement:"between",tooltip:{enabled:!1},crosshairs:{stroke:{width:0}}}}}},{key:"area",value:function(){return{stroke:{width:4},fill:{type:"gradient",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}},markers:{size:0,hover:{sizeOffset:6}},tooltip:{followCursor:!1}}}},{key:"brush",value:function(t){return f.extend(t,{chart:{toolbar:{autoSelected:"selection",show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1},stroke:{width:1},tooltip:{enabled:!1},xaxis:{tooltip:{enabled:!1}}})}},{key:"stacked100",value:function(t){t.dataLabels=t.dataLabels||{},t.dataLabels.formatter=t.dataLabels.formatter||void 0;var e=t.dataLabels.formatter;return t.yaxis.forEach((function(e,i){t.yaxis[i].min=0,t.yaxis[i].max=100})),"bar"===t.chart.type&&(t.dataLabels.formatter=e||function(t){return"number"==typeof t&&t?t.toFixed(0)+"%":t}),t}},{key:"convertCatToNumeric",value:function(t){return t.xaxis.convertedCatToNumeric=!0,t}},{key:"convertCatToNumericXaxis",value:function(t,e,i){t.xaxis.type="numeric",t.xaxis.labels=t.xaxis.labels||{},t.xaxis.labels.formatter=t.xaxis.labels.formatter||function(t){return f.isNumber(t)?Math.floor(t):t};var a=t.xaxis.labels.formatter,s=t.xaxis.categories&&t.xaxis.categories.length?t.xaxis.categories:t.labels;return i&&i.length&&(s=i.map((function(t){return Array.isArray(t)?t:String(t)}))),s&&s.length&&(t.xaxis.labels.formatter=function(t){return f.isNumber(t)?a(s[Math.floor(t)-1]):a(t)}),t.xaxis.categories=[],t.labels=[],t.xaxis.tickAmount=t.xaxis.tickAmount||"dataPoints",t}},{key:"bubble",value:function(){return{dataLabels:{style:{colors:["#fff"]}},tooltip:{shared:!1,intersect:!0},xaxis:{crosshairs:{width:0}},fill:{type:"solid",gradient:{shade:"light",inverse:!0,shadeIntensity:.55,opacityFrom:.4,opacityTo:.8}}}}},{key:"scatter",value:function(){return{dataLabels:{enabled:!1},tooltip:{shared:!1,intersect:!0},markers:{size:6,strokeWidth:1,hover:{sizeOffset:2}}}}},{key:"heatmap",value:function(){return{chart:{stacked:!1},fill:{opacity:1},dataLabels:{style:{colors:["#fff"]}},stroke:{colors:["#fff"]},tooltip:{followCursor:!0,marker:{show:!1},x:{show:!1}},legend:{position:"top",markers:{shape:"square",size:10,offsetY:2}},grid:{padding:{right:20}}}}},{key:"treemap",value:function(){return{chart:{zoom:{enabled:!1}},dataLabels:{style:{fontSize:14,fontWeight:600,colors:["#fff"]}},stroke:{show:!0,width:2,colors:["#fff"]},legend:{show:!1},fill:{gradient:{stops:[0,100]}},tooltip:{followCursor:!0,x:{show:!1}},grid:{padding:{left:0,right:0}},xaxis:{crosshairs:{show:!1},tooltip:{enabled:!1}}}}},{key:"pie",value:function(){return{chart:{toolbar:{show:!1}},plotOptions:{pie:{donut:{labels:{show:!1}}}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",stops:[0,100]}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"donut",value:function(){return{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",shadeIntensity:.35,stops:[80,100],opacityFrom:1,opacityTo:1}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"polarArea",value:function(){return this.opts.yaxis[0].tickAmount=this.opts.yaxis[0].tickAmount?this.opts.yaxis[0].tickAmount:6,{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},enabled:!1},stroke:{show:!0,width:2},fill:{opacity:.7},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"radar",value:function(){return this.opts.yaxis[0].labels.offsetY=this.opts.yaxis[0].labels.offsetY?this.opts.yaxis[0].labels.offsetY:6,{dataLabels:{enabled:!1,style:{fontSize:"11px"}},stroke:{width:2},markers:{size:3,strokeWidth:1,strokeOpacity:1},fill:{opacity:.2},tooltip:{shared:!1,intersect:!0,followCursor:!0},grid:{show:!1},xaxis:{labels:{formatter:function(t){return t},style:{colors:["#a8a8a8"],fontSize:"11px"}},tooltip:{enabled:!1},crosshairs:{show:!1}}}}},{key:"radialBar",value:function(){return{chart:{animations:{dynamicAnimation:{enabled:!0,speed:800}},toolbar:{show:!1}},fill:{gradient:{shade:"dark",shadeIntensity:.4,inverseColors:!1,type:"diagonal2",opacityFrom:1,opacityTo:1,stops:[70,98,100]}},legend:{show:!1,position:"right"},tooltip:{enabled:!1,fillSeriesColor:!0}}}},{key:"_getBoxTooltip",value:function(t,e,i,a,s){var r=t.globals.seriesCandleO[e][i],o=t.globals.seriesCandleH[e][i],n=t.globals.seriesCandleM[e][i],l=t.globals.seriesCandleL[e][i],h=t.globals.seriesCandleC[e][i];return t.config.series[e].type&&t.config.series[e].type!==s?'
\n '.concat(t.config.series[e].name?t.config.series[e].name:"series-"+(e+1),": ").concat(t.globals.series[e][i],"\n
"):'
')+"
".concat(a[0],': ')+r+"
"+"
".concat(a[1],': ')+o+"
"+(n?"
".concat(a[2],': ')+n+"
":"")+"
".concat(a[3],': ')+l+"
"+"
".concat(a[4],': ')+h+"
"}}]),t}(),H=function(){function i(t){e(this,i),this.opts=t}return a(i,[{key:"init",value:function(e){var i=e.responsiveOverride,a=this.opts,s=new S,r=new R(a);this.chartType=a.chart.type,"histogram"===this.chartType&&(a.chart.type="bar",a=f.extend({plotOptions:{bar:{columnWidth:"99.99%"}}},a)),a=this.extendYAxis(a),a=this.extendAnnotations(a);var o=s.init(),n={};if(a&&"object"===t(a)){var l={};l=-1!==["line","area","bar","candlestick","boxPlot","rangeBar","histogram","bubble","scatter","heatmap","treemap","pie","polarArea","donut","radar","radialBar"].indexOf(a.chart.type)?r[a.chart.type]():r.line(),a.chart.brush&&a.chart.brush.enabled&&(l=r.brush(l)),a.chart.stacked&&"100%"===a.chart.stackType&&(a=r.stacked100(a)),this.checkForDarkTheme(window.Apex),this.checkForDarkTheme(a),a.xaxis=a.xaxis||window.Apex.xaxis||{},i||(a.xaxis.convertedCatToNumeric=!1),((a=this.checkForCatToNumericXAxis(this.chartType,l,a)).chart.sparkline&&a.chart.sparkline.enabled||window.Apex.chart&&window.Apex.chart.sparkline&&window.Apex.chart.sparkline.enabled)&&(l=r.sparkline(l)),n=f.extend(o,l)}var h=f.extend(n,window.Apex);return o=f.extend(h,a),o=this.handleUserInputErrors(o)}},{key:"checkForCatToNumericXAxis",value:function(t,e,i){var a=new R(i),s="bar"===t&&i.plotOptions&&i.plotOptions.bar&&i.plotOptions.bar.horizontal,r="pie"===t||"polarArea"===t||"donut"===t||"radar"===t||"radialBar"===t||"heatmap"===t,o="datetime"!==i.xaxis.type&&"numeric"!==i.xaxis.type,n=i.xaxis.tickPlacement?i.xaxis.tickPlacement:e.xaxis&&e.xaxis.tickPlacement;return s||r||!o||"between"===n||(i=a.convertCatToNumeric(i)),i}},{key:"extendYAxis",value:function(t,e){var i=new S;(void 0===t.yaxis||!t.yaxis||Array.isArray(t.yaxis)&&0===t.yaxis.length)&&(t.yaxis={}),t.yaxis.constructor!==Array&&window.Apex.yaxis&&window.Apex.yaxis.constructor!==Array&&(t.yaxis=f.extend(t.yaxis,window.Apex.yaxis)),t.yaxis.constructor!==Array?t.yaxis=[f.extend(i.yAxis,t.yaxis)]:t.yaxis=f.extendArray(t.yaxis,i.yAxis);var a=!1;t.yaxis.forEach((function(t){t.logarithmic&&(a=!0)}));var s=t.series;return e&&!s&&(s=e.config.series),a&&s.length!==t.yaxis.length&&s.length&&(t.yaxis=s.map((function(e,a){if(e.name||(s[a].name="series-".concat(a+1)),t.yaxis[a])return t.yaxis[a].seriesName=s[a].name,t.yaxis[a];var r=f.extend(i.yAxis,t.yaxis[0]);return r.show=!1,r}))),a&&s.length>1&&s.length!==t.yaxis.length&&console.warn("A multi-series logarithmic chart should have equal number of series and y-axes. Please make sure to equalize both."),t}},{key:"extendAnnotations",value:function(t){return void 0===t.annotations&&(t.annotations={},t.annotations.yaxis=[],t.annotations.xaxis=[],t.annotations.points=[]),t=this.extendYAxisAnnotations(t),t=this.extendXAxisAnnotations(t),t=this.extendPointAnnotations(t)}},{key:"extendYAxisAnnotations",value:function(t){var e=new S;return t.annotations.yaxis=f.extendArray(void 0!==t.annotations.yaxis?t.annotations.yaxis:[],e.yAxisAnnotation),t}},{key:"extendXAxisAnnotations",value:function(t){var e=new S;return t.annotations.xaxis=f.extendArray(void 0!==t.annotations.xaxis?t.annotations.xaxis:[],e.xAxisAnnotation),t}},{key:"extendPointAnnotations",value:function(t){var e=new S;return t.annotations.points=f.extendArray(void 0!==t.annotations.points?t.annotations.points:[],e.pointAnnotation),t}},{key:"checkForDarkTheme",value:function(t){t.theme&&"dark"===t.theme.mode&&(t.tooltip||(t.tooltip={}),"light"!==t.tooltip.theme&&(t.tooltip.theme="dark"),t.chart.foreColor||(t.chart.foreColor="#f6f7f8"),t.chart.background||(t.chart.background="#424242"),t.theme.palette||(t.theme.palette="palette4"))}},{key:"handleUserInputErrors",value:function(t){var e=t;if(e.tooltip.shared&&e.tooltip.intersect)throw new Error("tooltip.shared cannot be enabled when tooltip.intersect is true. Turn off any other option by setting it to false.");if("bar"===e.chart.type&&e.plotOptions.bar.horizontal){if(e.yaxis.length>1)throw new Error("Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false");e.yaxis[0].reversed&&(e.yaxis[0].opposite=!0),e.xaxis.tooltip.enabled=!1,e.yaxis[0].tooltip.enabled=!1,e.chart.zoom.enabled=!1}return"bar"!==e.chart.type&&"rangeBar"!==e.chart.type||e.tooltip.shared&&"barWidth"===e.xaxis.crosshairs.width&&e.series.length>1&&(e.xaxis.crosshairs.width="tickWidth"),"candlestick"!==e.chart.type&&"boxPlot"!==e.chart.type||e.yaxis[0].reversed&&(console.warn("Reversed y-axis in ".concat(e.chart.type," chart is not supported.")),e.yaxis[0].reversed=!1),e.chart.group&&0===e.yaxis[0].labels.minWidth&&console.warn("It looks like you have multiple charts in synchronization. You must provide yaxis.labels.minWidth which must be EQUAL for all grouped charts to prevent incorrect behaviour."),Array.isArray(e.stroke.width)&&"line"!==e.chart.type&&"area"!==e.chart.type&&(console.warn("stroke.width option accepts array only for line and area charts. Reverted back to Number"),e.stroke.width=e.stroke.width[0]),e}}]),i}(),D=function(){function t(){e(this,t)}return a(t,[{key:"initGlobalVars",value:function(t){t.series=[],t.seriesCandleO=[],t.seriesCandleH=[],t.seriesCandleM=[],t.seriesCandleL=[],t.seriesCandleC=[],t.seriesRangeStart=[],t.seriesRangeEnd=[],t.seriesRangeBarTimeline=[],t.seriesPercent=[],t.seriesGoals=[],t.seriesX=[],t.seriesZ=[],t.seriesNames=[],t.seriesTotals=[],t.seriesLog=[],t.seriesColors=[],t.stackedSeriesTotals=[],t.seriesXvalues=[],t.seriesYvalues=[],t.labels=[],t.categoryLabels=[],t.timescaleLabels=[],t.noLabelsProvided=!1,t.resizeTimer=null,t.selectionResizeTimer=null,t.delayedElements=[],t.pointsArray=[],t.dataLabelsRects=[],t.isXNumeric=!1,t.xaxisLabelsCount=0,t.skipLastTimelinelabel=!1,t.skipFirstTimelinelabel=!1,t.isDataXYZ=!1,t.isMultiLineX=!1,t.isMultipleYAxis=!1,t.maxY=-Number.MAX_VALUE,t.minY=Number.MIN_VALUE,t.minYArr=[],t.maxYArr=[],t.maxX=-Number.MAX_VALUE,t.minX=Number.MAX_VALUE,t.initialMaxX=-Number.MAX_VALUE,t.initialMinX=Number.MAX_VALUE,t.maxDate=0,t.minDate=Number.MAX_VALUE,t.minZ=Number.MAX_VALUE,t.maxZ=-Number.MAX_VALUE,t.minXDiff=Number.MAX_VALUE,t.yAxisScale=[],t.xAxisScale=null,t.xAxisTicksPositions=[],t.yLabelsCoords=[],t.yTitleCoords=[],t.barPadForNumericAxis=0,t.padHorizontal=0,t.xRange=0,t.yRange=[],t.zRange=0,t.dataPoints=0,t.xTickAmount=0}},{key:"globalVars",value:function(t){return{chartID:null,cuid:null,events:{beforeMount:[],mounted:[],updated:[],clicked:[],selection:[],dataPointSelection:[],zoomed:[],scrolled:[]},colors:[],clientX:null,clientY:null,fill:{colors:[]},stroke:{colors:[]},dataLabels:{style:{colors:[]}},radarPolygons:{fill:{colors:[]}},markers:{colors:[],size:t.markers.size,largestSize:0},animationEnded:!1,isTouchDevice:"ontouchstart"in window||navigator.msMaxTouchPoints,isDirty:!1,isExecCalled:!1,initialConfig:null,initialSeries:[],lastXAxis:[],lastYAxis:[],columnSeries:null,labels:[],timescaleLabels:[],noLabelsProvided:!1,allSeriesCollapsed:!1,collapsedSeries:[],collapsedSeriesIndices:[],ancillaryCollapsedSeries:[],ancillaryCollapsedSeriesIndices:[],risingSeries:[],dataFormatXNumeric:!1,capturedSeriesIndex:-1,capturedDataPointIndex:-1,selectedDataPoints:[],goldenPadding:35,invalidLogScale:!1,ignoreYAxisIndexes:[],yAxisSameScaleIndices:[],maxValsInArrayIndex:0,radialSize:0,selection:void 0,zoomEnabled:"zoom"===t.chart.toolbar.autoSelected&&t.chart.toolbar.tools.zoom&&t.chart.zoom.enabled,panEnabled:"pan"===t.chart.toolbar.autoSelected&&t.chart.toolbar.tools.pan,selectionEnabled:"selection"===t.chart.toolbar.autoSelected&&t.chart.toolbar.tools.selection,yaxis:null,mousedown:!1,lastClientPosition:{},visibleXRange:void 0,yValueDecimal:0,total:0,SVGNS:"http://www.w3.org/2000/svg",svgWidth:0,svgHeight:0,noData:!1,locale:{},dom:{},memory:{methodsToExec:[]},shouldAnimate:!0,skipLastTimelinelabel:!1,skipFirstTimelinelabel:!1,delayedElements:[],axisCharts:!0,isDataXYZ:!1,resized:!1,resizeTimer:null,comboCharts:!1,dataChanged:!1,previousPaths:[],allSeriesHasEqualX:!0,pointsArray:[],dataLabelsRects:[],lastDrawnDataLabelsIndexes:[],hasNullValues:!1,easing:null,zoomed:!1,gridWidth:0,gridHeight:0,rotateXLabels:!1,defaultLabels:!1,xLabelFormatter:void 0,yLabelFormatters:[],xaxisTooltipFormatter:void 0,ttKeyFormatter:void 0,ttVal:void 0,ttZFormatter:void 0,LINE_HEIGHT_RATIO:1.618,xAxisLabelsHeight:0,xAxisLabelsWidth:0,yAxisLabelsWidth:0,scaleX:1,scaleY:1,translateX:0,translateY:0,translateYAxisX:[],yAxisWidths:[],translateXAxisY:0,translateXAxisX:0,tooltip:null}}},{key:"init",value:function(t){var e=this.globalVars(t);return this.initGlobalVars(e),e.initialConfig=f.extend({},t),e.initialSeries=f.clone(t.series),e.lastXAxis=f.clone(e.initialConfig.xaxis),e.lastYAxis=f.clone(e.initialConfig.yaxis),e}}]),t}(),N=function(){function t(i){e(this,t),this.opts=i}return a(t,[{key:"init",value:function(){var t=new H(this.opts).init({responsiveOverride:!1});return{config:t,globals:(new D).init(t)}}}]),t}(),O=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.twoDSeries=[],this.threeDSeries=[],this.twoDSeriesX=[],this.seriesGoals=[],this.coreUtils=new y(this.ctx)}return a(t,[{key:"isMultiFormat",value:function(){return this.isFormatXY()||this.isFormat2DArray()}},{key:"isFormatXY",value:function(){var t=this.w.config.series.slice(),e=new M(this.ctx);if(this.activeSeriesIndex=e.getActiveConfigSeriesIndex(),void 0!==t[this.activeSeriesIndex].data&&t[this.activeSeriesIndex].data.length>0&&null!==t[this.activeSeriesIndex].data[0]&&void 0!==t[this.activeSeriesIndex].data[0].x&&null!==t[this.activeSeriesIndex].data[0])return!0}},{key:"isFormat2DArray",value:function(){var t=this.w.config.series.slice(),e=new M(this.ctx);if(this.activeSeriesIndex=e.getActiveConfigSeriesIndex(),void 0!==t[this.activeSeriesIndex].data&&t[this.activeSeriesIndex].data.length>0&&void 0!==t[this.activeSeriesIndex].data[0]&&null!==t[this.activeSeriesIndex].data[0]&&t[this.activeSeriesIndex].data[0].constructor===Array)return!0}},{key:"handleFormat2DArray",value:function(t,e){for(var i=this.w.config,a=this.w.globals,s="boxPlot"===i.chart.type||"boxPlot"===i.series[e].type,r=0;r=5?this.twoDSeries.push(f.parseNumber(t[e].data[r][4])):this.twoDSeries.push(f.parseNumber(t[e].data[r][1])),a.dataFormatXNumeric=!0),"datetime"===i.xaxis.type){var o=new Date(t[e].data[r][0]);o=new Date(o).getTime(),this.twoDSeriesX.push(o)}else this.twoDSeriesX.push(t[e].data[r][0]);for(var n=0;n-1&&(r=this.activeSeriesIndex);for(var o=0;o1&&void 0!==arguments[1]?arguments[1]:this.ctx,a=this.w.config,s=this.w.globals,r=new Y(i),o=a.labels.length>0?a.labels.slice():a.xaxis.categories.slice();s.isTimelineBar="rangeBar"===a.chart.type&&"datetime"===a.xaxis.type;for(var n=function(){for(var t=0;t0&&(this.twoDSeriesX=o,s.seriesX.push(this.twoDSeriesX))),s.labels.push(this.twoDSeriesX);var h=t[l].data.map((function(t){return f.parseNumber(t)}));s.series.push(h)}s.seriesZ.push(this.threeDSeries),void 0!==t[l].name?s.seriesNames.push(t[l].name):s.seriesNames.push("series-"+parseInt(l+1,10)),void 0!==t[l].color?s.seriesColors.push(t[l].color):s.seriesColors.push(void 0)}return this.w}},{key:"parseDataNonAxisCharts",value:function(t){var e=this.w.globals,i=this.w.config;e.series=t.slice(),e.seriesNames=i.labels.slice();for(var a=0;a0)i.labels=e.xaxis.categories;else if(e.labels.length>0)i.labels=e.labels.slice();else if(this.fallbackToCategory){if(i.labels=i.labels[0],i.seriesRangeBarTimeline.length&&(i.seriesRangeBarTimeline.map((function(t){t.forEach((function(t){i.labels.indexOf(t.x)<0&&t.x&&i.labels.push(t.x)}))})),i.labels=i.labels.filter((function(t,e,i){return i.indexOf(t)===e}))),e.xaxis.convertedCatToNumeric)new R(e).convertCatToNumericXaxis(e,this.ctx,i.seriesX[0]),this._generateExternalLabels(t)}else this._generateExternalLabels(t)}},{key:"_generateExternalLabels",value:function(t){var e=this.w.globals,i=this.w.config,a=[];if(e.axisCharts){if(e.series.length>0)for(var s=0;s0&&i<100?t.toFixed(1):t.toFixed(0)}if(e.globals.isBarHorizontal)if(e.globals.maxY-e.globals.minYArr<4)return t.toFixed(1);return t.toFixed(0)}return t},"function"==typeof e.config.tooltip.x.formatter?e.globals.ttKeyFormatter=e.config.tooltip.x.formatter:e.globals.ttKeyFormatter=e.globals.xLabelFormatter,"function"==typeof e.config.xaxis.tooltip.formatter&&(e.globals.xaxisTooltipFormatter=e.config.xaxis.tooltip.formatter),(Array.isArray(e.config.tooltip.y)||void 0!==e.config.tooltip.y.formatter)&&(e.globals.ttVal=e.config.tooltip.y),void 0!==e.config.tooltip.z.formatter&&(e.globals.ttZFormatter=e.config.tooltip.z.formatter),void 0!==e.config.legend.formatter&&(e.globals.legendFormatter=e.config.legend.formatter),e.config.yaxis.forEach((function(i,a){void 0!==i.labels.formatter?e.globals.yLabelFormatters[a]=i.labels.formatter:e.globals.yLabelFormatters[a]=function(s){return e.globals.xyCharts?Array.isArray(s)?s.map((function(e){return t.defaultYFormatter(e,i,a)})):t.defaultYFormatter(s,i,a):s}})),e.globals}},{key:"heatmapLabelFormatters",value:function(){var t=this.w;if("heatmap"===t.config.chart.type){t.globals.yAxisScale[0].result=t.globals.seriesNames.slice();var e=t.globals.seriesNames.reduce((function(t,e){return t.length>e.length?t:e}),0);t.globals.yAxisScale[0].niceMax=e,t.globals.yAxisScale[0].niceMin=e}}}]),t}(),B=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"getLabel",value:function(t,e,i,a){var s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:[],r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:"12px",o=this.w,n=void 0===t[a]?"":t[a],l=n,h=o.globals.xLabelFormatter,c=o.config.xaxis.labels.formatter,d=!1,g=new W(this.ctx),u=n;l=g.xLabelFormat(h,n,u,{i:a,dateFormatter:new Y(this.ctx).formatDate,w:o}),void 0!==c&&(l=c(n,t[a],{i:a,dateFormatter:new Y(this.ctx).formatDate,w:o}));var f=function(t){var i=null;return e.forEach((function(t){"month"===t.unit?i="year":"day"===t.unit?i="month":"hour"===t.unit?i="day":"minute"===t.unit&&(i="hour")})),i===t};e.length>0?(d=f(e[a].unit),i=e[a].position,l=e[a].value):"datetime"===o.config.xaxis.type&&void 0===c&&(l=""),void 0===l&&(l=""),l=Array.isArray(l)?l:l.toString();var p=new b(this.ctx),x={};x=o.globals.rotateXLabels?p.getTextRects(l,parseInt(r,10),null,"rotate(".concat(o.config.xaxis.labels.rotate," 0 0)"),!1):p.getTextRects(l,parseInt(r,10));var m=!o.config.xaxis.labels.showDuplicates&&this.ctx.timeScale;return!Array.isArray(l)&&(0===l.indexOf("NaN")||0===l.toLowerCase().indexOf("invalid")||l.toLowerCase().indexOf("infinity")>=0||s.indexOf(l)>=0&&m)&&(l=""),{x:i,text:l,textRect:x,isBold:d}}},{key:"checkLabelBasedOnTickamount",value:function(t,e,i){var a=this.w,s=a.config.xaxis.tickAmount;return"dataPoints"===s&&(s=Math.round(a.globals.gridWidth/120)),s>i||t%Math.round(i/(s+1))==0||(e.text=""),e}},{key:"checkForOverflowingLabels",value:function(t,e,i,a,s){var r=this.w;if(0===t&&r.globals.skipFirstTimelinelabel&&(e.text=""),t===i-1&&r.globals.skipLastTimelinelabel&&(e.text=""),r.config.xaxis.labels.hideOverlappingLabels&&a.length>0){var o=s[s.length-1];e.x0){!0===n.config.yaxis[s].opposite&&(t+=a.width);for(var c=e;c>=0;c--){var d=h+e/10+n.config.yaxis[s].labels.offsetY-1;n.globals.isBarHorizontal&&(d=r*c),"heatmap"===n.config.chart.type&&(d+=r/2);var g=l.drawLine(t+i.offsetX-a.width+a.offsetX,d+a.offsetY,t+i.offsetX+a.offsetX,d+a.offsetY,a.color);o.add(g),h+=r}}}}]),t}(),V=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"scaleSvgNode",value:function(t,e){var i=parseFloat(t.getAttributeNS(null,"width")),a=parseFloat(t.getAttributeNS(null,"height"));t.setAttributeNS(null,"width",i*e),t.setAttributeNS(null,"height",a*e),t.setAttributeNS(null,"viewBox","0 0 "+i+" "+a)}},{key:"fixSvgStringForIe11",value:function(t){if(!f.isIE11())return t;var e=0,i=t.replace(/xmlns="http:\/\/www.w3.org\/2000\/svg"/g,(function(t){return 2===++e?'xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs"':t}));return i=(i=i.replace(/xmlns:NS\d+=""/g,"")).replace(/NS\d+:(\w+:\w+=")/g,"$1")}},{key:"getSvgString",value:function(t){var e=this.w.globals.dom.Paper.svg();if(1!==t){var i=this.w.globals.dom.Paper.node.cloneNode(!0);this.scaleSvgNode(i,t),e=(new XMLSerializer).serializeToString(i)}return this.fixSvgStringForIe11(e)}},{key:"cleanup",value:function(){var t=this.w,e=t.globals.dom.baseEl.getElementsByClassName("apexcharts-xcrosshairs"),i=t.globals.dom.baseEl.getElementsByClassName("apexcharts-ycrosshairs"),a=t.globals.dom.baseEl.querySelectorAll(".apexcharts-zoom-rect, .apexcharts-selection-rect");Array.prototype.forEach.call(a,(function(t){t.setAttribute("width",0)})),e&&e[0]&&(e[0].setAttribute("x",-500),e[0].setAttribute("x1",-500),e[0].setAttribute("x2",-500)),i&&i[0]&&(i[0].setAttribute("y",-100),i[0].setAttribute("y1",-100),i[0].setAttribute("y2",-100))}},{key:"svgUrl",value:function(){this.cleanup();var t=this.getSvgString(),e=new Blob([t],{type:"image/svg+xml;charset=utf-8"});return URL.createObjectURL(e)}},{key:"dataURI",value:function(t){var e=this;return new Promise((function(i){var a=e.w,s=t?t.scale||t.width/a.globals.svgWidth:1;e.cleanup();var r=document.createElement("canvas");r.width=a.globals.svgWidth*s,r.height=parseInt(a.globals.dom.elWrap.style.height,10)*s;var o="transparent"===a.config.chart.background?"#fff":a.config.chart.background,n=r.getContext("2d");n.fillStyle=o,n.fillRect(0,0,r.width*s,r.height*s);var l=e.getSvgString(s);if(window.canvg&&f.isIE11()){var h=window.canvg.Canvg.fromString(n,l,{ignoreClear:!0,ignoreDimensions:!0});h.start();var c=r.msToBlob();h.stop(),i({blob:c})}else{var d="data:image/svg+xml,"+encodeURIComponent(l),g=new Image;g.crossOrigin="anonymous",g.onload=function(){if(n.drawImage(g,0,0),r.msToBlob){var t=r.msToBlob();i({blob:t})}else{var e=r.toDataURL("image/png");i({imgURI:e})}},g.src=d}}))}},{key:"exportToSVG",value:function(){this.triggerDownload(this.svgUrl(),this.w.config.chart.toolbar.export.svg.filename,".svg")}},{key:"exportToPng",value:function(){var t=this;this.dataURI().then((function(e){var i=e.imgURI,a=e.blob;a?navigator.msSaveOrOpenBlob(a,t.w.globals.chartID+".png"):t.triggerDownload(i,t.w.config.chart.toolbar.export.png.filename,".png")}))}},{key:"exportToCSV",value:function(t){var e=this,i=t.series,a=t.columnDelimiter,s=t.lineDelimiter,r=void 0===s?"\n":s,o=this.w,n=[],l=[],h="data:text/csv;charset=utf-8,\ufeff",c=new O(this.ctx),d=new B(this.ctx),g=function(t){var i="";if(o.globals.axisCharts){if("category"===o.config.xaxis.type||o.config.xaxis.convertedCatToNumeric)if(o.globals.isBarHorizontal){var s=o.globals.yLabelFormatters[0],r=new M(e.ctx).getActiveConfigSeriesIndex();i=s(o.globals.labels[t],{seriesIndex:r,dataPointIndex:t,w:o})}else i=d.getLabel(o.globals.labels,o.globals.timescaleLabels,0,t).text;"datetime"===o.config.xaxis.type&&(o.config.xaxis.categories.length?i=o.config.xaxis.categories[t]:o.config.labels.length&&(i=o.config.labels[t]))}else i=o.config.labels[t];return Array.isArray(i)&&(i=i.join(" ")),f.isNumber(i)?i:i.split(a).join("")};n.push(o.config.chart.toolbar.export.csv.headerCategory),i.map((function(t,e){var i=t.name?t.name:"series-".concat(e);o.globals.axisCharts&&n.push(i.split(a).join("")?i.split(a).join(""):"series-".concat(e))})),o.globals.axisCharts||(n.push(o.config.chart.toolbar.export.csv.headerValue),l.push(n.join(a))),i.map((function(t,e){o.globals.axisCharts?function(t,e){if(n.length&&0===e&&l.push(n.join(a)),t.data&&t.data.length)for(var s=0;s=10?o.config.chart.toolbar.export.csv.dateFormatter(r):f.isNumber(r)?r:r.split(a).join("")));for(var h=0;h0&&!a.globals.isBarHorizontal&&(this.xaxisLabels=a.globals.timescaleLabels.slice()),a.config.xaxis.overwriteCategories&&(this.xaxisLabels=a.config.xaxis.overwriteCategories),this.drawnLabels=[],this.drawnLabelsRects=[],"top"===a.config.xaxis.position?this.offY=0:this.offY=a.globals.gridHeight+1,this.offY=this.offY+a.config.xaxis.axisBorder.offsetY,this.isCategoryBarHorizontal="bar"===a.config.chart.type&&a.config.plotOptions.bar.horizontal,this.xaxisFontSize=a.config.xaxis.labels.style.fontSize,this.xaxisFontFamily=a.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=a.config.xaxis.labels.style.colors,this.xaxisBorderWidth=a.config.xaxis.axisBorder.width,this.isCategoryBarHorizontal&&(this.xaxisBorderWidth=a.config.yaxis[0].axisBorder.width.toString()),this.xaxisBorderWidth.indexOf("%")>-1?this.xaxisBorderWidth=a.globals.gridWidth*parseInt(this.xaxisBorderWidth,10)/100:this.xaxisBorderWidth=parseInt(this.xaxisBorderWidth,10),this.xaxisBorderHeight=a.config.xaxis.axisBorder.height,this.yaxis=a.config.yaxis[0]}return a(t,[{key:"drawXaxis",value:function(){var t,e=this,i=this.w,a=new b(this.ctx),s=a.group({class:"apexcharts-xaxis",transform:"translate(".concat(i.config.xaxis.offsetX,", ").concat(i.config.xaxis.offsetY,")")}),r=a.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(i.globals.translateXAxisX,", ").concat(i.globals.translateXAxisY,")")});s.add(r);for(var o=i.globals.padHorizontal,n=[],l=0;l1?h-1:h;t=i.globals.gridWidth/c,o=o+t/2+i.config.xaxis.labels.offsetX}else t=i.globals.gridWidth/n.length,o=o+t+i.config.xaxis.labels.offsetX;for(var d=function(s){var l=o-t/2+i.config.xaxis.labels.offsetX;0===s&&1===h&&t/2===o&&1===i.globals.dataPoints&&(l=i.globals.gridWidth/2);var c=e.axesUtils.getLabel(n,i.globals.timescaleLabels,l,s,e.drawnLabels,e.xaxisFontSize),d=28;i.globals.rotateXLabels&&(d=22);if((c=void 0!==i.config.xaxis.tickAmount&&"dataPoints"!==i.config.xaxis.tickAmount&&"datetime"!==i.config.xaxis.type?e.axesUtils.checkLabelBasedOnTickamount(s,c,h):e.axesUtils.checkForOverflowingLabels(s,c,h,e.drawnLabels,e.drawnLabelsRects)).text&&i.globals.xaxisLabelsCount++,i.config.xaxis.labels.show){var g=a.drawText({x:c.x,y:e.offY+i.config.xaxis.labels.offsetY+d-("top"===i.config.xaxis.position?i.globals.xAxisHeight+i.config.xaxis.axisTicks.height-2:0),text:c.text,textAnchor:"middle",fontWeight:c.isBold?600:i.config.xaxis.labels.style.fontWeight,fontSize:e.xaxisFontSize,fontFamily:e.xaxisFontFamily,foreColor:Array.isArray(e.xaxisForeColors)?i.config.xaxis.convertedCatToNumeric?e.xaxisForeColors[i.globals.minX+s-1]:e.xaxisForeColors[s]:e.xaxisForeColors,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+i.config.xaxis.labels.style.cssClass});r.add(g);var u=document.createElementNS(i.globals.SVGNS,"title");u.textContent=Array.isArray(c.text)?c.text.join(" "):c.text,g.node.appendChild(u),""!==c.text&&(e.drawnLabels.push(c.text),e.drawnLabelsRects.push(c))}o+=t},g=0;g<=h-1;g++)d(g);if(void 0!==i.config.xaxis.title.text){var u=a.group({class:"apexcharts-xaxis-title"}),f=a.drawText({x:i.globals.gridWidth/2+i.config.xaxis.title.offsetX,y:this.offY+parseFloat(this.xaxisFontSize)+i.globals.xAxisLabelsHeight+i.config.xaxis.title.offsetY,text:i.config.xaxis.title.text,textAnchor:"middle",fontSize:i.config.xaxis.title.style.fontSize,fontFamily:i.config.xaxis.title.style.fontFamily,fontWeight:i.config.xaxis.title.style.fontWeight,foreColor:i.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+i.config.xaxis.title.style.cssClass});u.add(f),s.add(u)}if(i.config.xaxis.axisBorder.show){var p=i.globals.barPadForNumericAxis,x=a.drawLine(i.globals.padHorizontal+i.config.xaxis.axisBorder.offsetX-p,this.offY,this.xaxisBorderWidth+p,this.offY,i.config.xaxis.axisBorder.color,0,this.xaxisBorderHeight);s.add(x)}return s}},{key:"drawXaxisInversed",value:function(t){var e,i,a=this,s=this.w,r=new b(this.ctx),o=s.config.yaxis[0].opposite?s.globals.translateYAxisX[t]:0,n=r.group({class:"apexcharts-yaxis apexcharts-xaxis-inversed",rel:t}),l=r.group({class:"apexcharts-yaxis-texts-g apexcharts-xaxis-inversed-texts-g",transform:"translate("+o+", 0)"});n.add(l);var h=[];if(s.config.yaxis[t].show)for(var c=0;ci.globals.gridWidth)){var s=this.offY+i.config.xaxis.axisTicks.offsetY,r=s+i.config.xaxis.axisTicks.height;if("top"===i.config.xaxis.position&&(r=s-i.config.xaxis.axisTicks.height),i.config.xaxis.axisTicks.show){var o=new b(this.ctx).drawLine(t+i.config.xaxis.axisTicks.offsetX,s+i.config.xaxis.offsetY,a+i.config.xaxis.axisTicks.offsetX,r+i.config.xaxis.offsetY,i.config.xaxis.axisTicks.color);e.add(o),o.node.classList.add("apexcharts-xaxis-tick")}}}},{key:"getXAxisTicksPositions",value:function(){var t=this.w,e=[],i=this.xaxisLabels.length,a=t.globals.padHorizontal;if(t.globals.timescaleLabels.length>0)for(var s=0;s0){var h=s[s.length-1].getBBox(),c=s[0].getBBox();h.x<-20&&s[s.length-1].parentNode.removeChild(s[s.length-1]),c.x+c.width>t.globals.gridWidth&&!t.globals.isBarHorizontal&&s[0].parentNode.removeChild(s[0]);for(var d=0;d0&&(this.xaxisLabels=a.globals.timescaleLabels.slice())}return a(t,[{key:"drawGridArea",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=this.w,i=new b(this.ctx);null===t&&(t=i.group({class:"apexcharts-grid"}));var a=i.drawLine(e.globals.padHorizontal,1,e.globals.padHorizontal,e.globals.gridHeight,"transparent"),s=i.drawLine(e.globals.padHorizontal,e.globals.gridHeight,e.globals.gridWidth,e.globals.gridHeight,"transparent");return t.add(s),t.add(a),t}},{key:"drawGrid",value:function(){var t=null;return this.w.globals.axisCharts&&(t=this.renderGrid(),this.drawGridArea(t.el)),t}},{key:"createGridMask",value:function(){var t=this.w,e=t.globals,i=new b(this.ctx),a=Array.isArray(t.config.stroke.width)?0:t.config.stroke.width;if(Array.isArray(t.config.stroke.width)){var s=0;t.config.stroke.width.forEach((function(t){s=Math.max(s,t)})),a=s}e.dom.elGridRectMask=document.createElementNS(e.SVGNS,"clipPath"),e.dom.elGridRectMask.setAttribute("id","gridRectMask".concat(e.cuid)),e.dom.elGridRectMarkerMask=document.createElementNS(e.SVGNS,"clipPath"),e.dom.elGridRectMarkerMask.setAttribute("id","gridRectMarkerMask".concat(e.cuid));var r=t.config.chart.type,o=0,n=0;("bar"===r||"rangeBar"===r||"candlestick"===r||"boxPlot"===r||t.globals.comboBarCount>0)&&t.globals.isXNumeric&&!t.globals.isBarHorizontal&&(o=t.config.grid.padding.left,n=t.config.grid.padding.right,e.barPadForNumericAxis>o&&(o=e.barPadForNumericAxis,n=e.barPadForNumericAxis)),e.dom.elGridRect=i.drawRect(-a/2-o-2,-a/2,e.gridWidth+a+n+o+4,e.gridHeight+a,0,"#fff"),new y(this).getLargestMarkerSize();var l=t.globals.markers.largestSize+1;e.dom.elGridRectMarker=i.drawRect(2*-l,2*-l,e.gridWidth+4*l,e.gridHeight+4*l,0,"#fff"),e.dom.elGridRectMask.appendChild(e.dom.elGridRect.node),e.dom.elGridRectMarkerMask.appendChild(e.dom.elGridRectMarker.node);var h=e.dom.baseEl.querySelector("defs");h.appendChild(e.dom.elGridRectMask),h.appendChild(e.dom.elGridRectMarkerMask)}},{key:"_drawGridLines",value:function(t){var e=t.i,i=t.x1,a=t.y1,s=t.x2,r=t.y2,o=t.xCount,n=t.parent,l=this.w;0===e&&l.globals.skipFirstTimelinelabel||e===o-1&&l.globals.skipLastTimelinelabel&&!l.config.xaxis.labels.formatter||"radar"===l.config.chart.type||(l.config.grid.xaxis.lines.show&&this._drawGridLine({x1:i,y1:a,x2:s,y2:r,parent:n}),new G(this.ctx).drawXaxisTicks(i,this.elg))}},{key:"_drawGridLine",value:function(t){var e=t.x1,i=t.y1,a=t.x2,s=t.y2,r=t.parent,o=this.w,n=r.node.classList.contains("apexcharts-gridlines-horizontal"),l=o.config.grid.strokeDashArray,h=o.globals.barPadForNumericAxis,c=new b(this).drawLine(e-(n?h:0),i,a+(n?h:0),s,o.config.grid.borderColor,l);c.node.classList.add("apexcharts-gridline"),r.add(c)}},{key:"_drawGridBandRect",value:function(t){var e=t.c,i=t.x1,a=t.y1,s=t.x2,r=t.y2,o=t.type,n=this.w,l=new b(this.ctx),h=n.globals.barPadForNumericAxis;if("column"!==o||"datetime"!==n.config.xaxis.type){var c=n.config.grid[o].colors[e],d=l.drawRect(i-("row"===o?h:0),a,s+("row"===o?2*h:0),r,0,c,n.config.grid[o].opacity);this.elg.add(d),d.attr("clip-path","url(#gridRectMask".concat(n.globals.cuid,")")),d.node.classList.add("apexcharts-grid-".concat(o))}}},{key:"_drawXYLines",value:function(t){var e=this,i=t.xCount,a=t.tickAmount,s=this.w;if(s.config.grid.xaxis.lines.show||s.config.xaxis.axisTicks.show){var r,o=s.globals.padHorizontal,n=s.globals.gridHeight;s.globals.timescaleLabels.length?function(t){for(var a=t.xC,s=t.x1,r=t.y1,o=t.x2,n=t.y2,l=0;l2));s++);return!t.globals.isBarHorizontal||this.isTimelineBar?(i=this.xaxisLabels.length,this.isTimelineBar&&(a=t.globals.labels.length,t.config.xaxis.tickAmount&&t.config.xaxis.labels.formatter&&(i=t.config.xaxis.tickAmount)),this._drawXYLines({xCount:i,tickAmount:a})):(i=a,a=t.globals.xTickAmount,this._drawInvertedXYLines({xCount:i,tickAmount:a})),this.drawGridBands(i,a),{el:this.elg,xAxisTickWidth:t.globals.gridWidth/i}}},{key:"drawGridBands",value:function(t,e){var i=this.w;if(void 0!==i.config.grid.row.colors&&i.config.grid.row.colors.length>0)for(var a=0,s=i.globals.gridHeight/e,r=i.globals.gridWidth,o=0,n=0;o=i.config.grid.row.colors.length&&(n=0),this._drawGridBandRect({c:n,x1:0,y1:a,x2:r,y2:s,type:"row"}),a+=i.globals.gridHeight/e;if(void 0!==i.config.grid.column.colors&&i.config.grid.column.colors.length>0)for(var l=i.globals.isBarHorizontal||"category"!==i.config.xaxis.type&&!i.config.xaxis.convertedCatToNumeric?t:t-1,h=i.globals.padHorizontal,c=i.globals.padHorizontal+i.globals.gridWidth/l,d=i.globals.gridHeight,g=0,u=0;g=i.config.grid.column.colors.length&&(u=0),this._drawGridBandRect({c:u,x1:h,y1:0,x2:c,y2:d,type:"column"}),h+=i.globals.gridWidth/l}}]),t}(),j=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"niceScale",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,s=arguments.length>4?arguments[4]:void 0,r=this.w,o=Math.abs(e-t);if("dataPoints"===(i=this._adjustTicksForSmallRange(i,a,o))&&(i=r.globals.dataPoints-1),t===Number.MIN_VALUE&&0===e||!f.isNumber(t)&&!f.isNumber(e)||t===Number.MIN_VALUE&&e===-Number.MAX_VALUE){t=0,e=i;var n=this.linearScale(t,e,i);return n}t>e?(console.warn("axis.min cannot be greater than axis.max"),e=t+.1):t===e&&(t=0===t?0:t-.5,e=0===e?2:e+.5);var l=[];o<1&&s&&("candlestick"===r.config.chart.type||"candlestick"===r.config.series[a].type||"boxPlot"===r.config.chart.type||"boxPlot"===r.config.series[a].type||r.globals.isRangeData)&&(e*=1.01);var h=i+1;h<2?h=2:h>2&&(h-=2);var c=o/h,d=Math.floor(f.log10(c)),g=Math.pow(10,d),u=Math.round(c/g);u<1&&(u=1);var p=u*g,x=p*Math.floor(t/p),b=p*Math.ceil(e/p),m=x;if(s&&o>2){for(;l.push(m),!((m+=p)>b););return{result:l,niceMin:l[0],niceMax:l[l.length-1]}}var v=t;(l=[]).push(v);for(var y=Math.abs(e-t)/i,w=0;w<=i;w++)v+=y,l.push(v);return l[l.length-2]>=e&&l.pop(),{result:l,niceMin:l[0],niceMax:l[l.length-1]}}},{key:"linearScale",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10,a=arguments.length>3?arguments[3]:void 0,s=Math.abs(e-t);"dataPoints"===(i=this._adjustTicksForSmallRange(i,a,s))&&(i=this.w.globals.dataPoints-1);var r=s/i;i===Number.MAX_VALUE&&(i=10,r=1);for(var o=[],n=t;i>=0;)o.push(n),n+=r,i-=1;return{result:o,niceMin:o[0],niceMax:o[o.length-1]}}},{key:"logarithmicScale",value:function(t){for(var e=[],i=Math.ceil(Math.log10(t))+1,a=0;a5)a.allSeriesCollapsed=!1,a.yAxisScale[t]=this.logarithmicScale(i);else if(i!==-Number.MAX_VALUE&&f.isNumber(i))if(a.allSeriesCollapsed=!1,void 0===r.min&&void 0===r.max||r.forceNiceScale){var n=void 0===s.yaxis[t].max&&void 0===s.yaxis[t].min||s.yaxis[t].forceNiceScale;a.yAxisScale[t]=this.niceScale(e,i,r.tickAmount?r.tickAmount:o<5&&o>1?o+1:5,t,n)}else a.yAxisScale[t]=this.linearScale(e,i,r.tickAmount,t);else a.yAxisScale[t]=this.linearScale(0,5,5)}},{key:"setXScale",value:function(t,e){var i=this.w,a=i.globals,s=i.config.xaxis,r=Math.abs(e-t);return e!==-Number.MAX_VALUE&&f.isNumber(e)?a.xAxisScale=this.linearScale(t,e,s.tickAmount?s.tickAmount:r<5&&r>1?r+1:5,0):a.xAxisScale=this.linearScale(0,5,5),a.xAxisScale}},{key:"setMultipleYScales",value:function(){var t=this,e=this.w.globals,i=this.w.config,a=e.minYArr.concat([]),s=e.maxYArr.concat([]),r=[];i.yaxis.forEach((function(e,o){var n=o;i.series.forEach((function(t,i){t.name===e.seriesName&&(n=i,o!==i?r.push({index:i,similarIndex:o,alreadyExists:!0}):r.push({index:i}))}));var l=a[n],h=s[n];t.setYScaleForIndex(o,l,h)})),this.sameScaleInMultipleAxes(a,s,r)}},{key:"sameScaleInMultipleAxes",value:function(t,e,i){var a=this,s=this.w.config,r=this.w.globals,o=[];i.forEach((function(t){t.alreadyExists&&(void 0===o[t.index]&&(o[t.index]=[]),o[t.index].push(t.index),o[t.index].push(t.similarIndex))})),r.yAxisSameScaleIndices=o,o.forEach((function(t,e){o.forEach((function(i,a){var s,r;e!==a&&(s=t,r=i,s.filter((function(t){return-1!==r.indexOf(t)}))).length>0&&(o[e]=o[e].concat(o[a]))}))}));var n=o.map((function(t){return t.filter((function(e,i){return t.indexOf(e)===i}))})).map((function(t){return t.sort()}));o=o.filter((function(t){return!!t}));var l=n.slice(),h=l.map((function(t){return JSON.stringify(t)}));l=l.filter((function(t,e){return h.indexOf(JSON.stringify(t))===e}));var c=[],d=[];t.forEach((function(t,i){l.forEach((function(a,s){a.indexOf(i)>-1&&(void 0===c[s]&&(c[s]=[],d[s]=[]),c[s].push({key:i,value:t}),d[s].push({key:i,value:e[i]}))}))}));var g=Array.apply(null,Array(l.length)).map(Number.prototype.valueOf,Number.MIN_VALUE),u=Array.apply(null,Array(l.length)).map(Number.prototype.valueOf,-Number.MAX_VALUE);c.forEach((function(t,e){t.forEach((function(t,i){g[e]=Math.min(t.value,g[e])}))})),d.forEach((function(t,e){t.forEach((function(t,i){u[e]=Math.max(t.value,u[e])}))})),t.forEach((function(t,e){d.forEach((function(t,i){var o=g[i],n=u[i];s.chart.stacked&&(n=0,t.forEach((function(t,e){t.value!==-Number.MAX_VALUE&&(n+=t.value),o!==Number.MIN_VALUE&&(o+=c[i][e].value)}))),t.forEach((function(i,l){t[l].key===e&&(void 0!==s.yaxis[e].min&&(o="function"==typeof s.yaxis[e].min?s.yaxis[e].min(r.minY):s.yaxis[e].min),void 0!==s.yaxis[e].max&&(n="function"==typeof s.yaxis[e].max?s.yaxis[e].max(r.maxY):s.yaxis[e].max),a.setYScaleForIndex(e,o,n))}))}))}))}},{key:"autoScaleY",value:function(t,e,i){t||(t=this);var a=t.w;if(a.globals.isMultipleYAxis||a.globals.collapsedSeries.length)return console.warn("autoScaleYaxis is not supported in a multi-yaxis chart."),e;var s=a.globals.seriesX[0],r=a.config.chart.stacked;return e.forEach((function(t,o){for(var n=0,l=0;l=i.xaxis.min){n=l;break}var h,c,d=a.globals.minYArr[o],g=a.globals.maxYArr[o],u=a.globals.stackedSeriesTotals;a.globals.series.forEach((function(o,l){var f=o[n];r?(f=u[n],h=c=f,u.forEach((function(t,e){s[e]<=i.xaxis.max&&s[e]>=i.xaxis.min&&(t>c&&null!==t&&(c=t),o[e]=i.xaxis.min){var r=t,o=t;a.globals.series.forEach((function(i,a){null!==t&&(r=Math.min(i[e],r),o=Math.max(i[e],o))})),o>c&&null!==o&&(c=o),rd&&(h=d),e.length>1?(e[l].min=void 0===t.min?h:t.min,e[l].max=void 0===t.max?c:t.max):(e[0].min=void 0===t.min?h:t.min,e[0].max=void 0===t.max?c:t.max)}))})),e}}]),t}(),U=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.scales=new j(i)}return a(t,[{key:"init",value:function(){this.setYRange(),this.setXRange(),this.setZRange()}},{key:"getMinYMaxY",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:-Number.MAX_VALUE,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,s=this.w.config,r=this.w.globals,o=-Number.MAX_VALUE,n=Number.MIN_VALUE;null===a&&(a=t+1);var l=r.series,h=l,c=l;"candlestick"===s.chart.type?(h=r.seriesCandleL,c=r.seriesCandleH):"boxPlot"===s.chart.type?(h=r.seriesCandleO,c=r.seriesCandleC):r.isRangeData&&(h=r.seriesRangeStart,c=r.seriesRangeEnd);for(var d=t;dh[d][g]&&h[d][g]<0&&(n=h[d][g])):r.hasNullValues=!0}}return"rangeBar"===s.chart.type&&r.seriesRangeStart.length&&r.isBarHorizontal&&"datetime"===s.xaxis.type&&(n=e),"bar"===s.chart.type&&(n<0&&o<0&&(o=0),n===Number.MIN_VALUE&&(n=0)),{minY:n,maxY:o,lowestY:e,highestY:i}}},{key:"setYRange",value:function(){var t=this.w.globals,e=this.w.config;t.maxY=-Number.MAX_VALUE,t.minY=Number.MIN_VALUE;var i=Number.MAX_VALUE;if(t.isMultipleYAxis)for(var a=0;a=0&&i<=10||void 0!==e.yaxis[0].min||void 0!==e.yaxis[0].max)&&(o=0),t.minY=i-5*o/100,i>0&&t.minY<0&&(t.minY=0),t.maxY=t.maxY+5*o/100}if(e.yaxis.forEach((function(e,i){void 0!==e.max&&("number"==typeof e.max?t.maxYArr[i]=e.max:"function"==typeof e.max&&(t.maxYArr[i]=e.max(t.isMultipleYAxis?t.maxYArr[i]:t.maxY)),t.maxY=t.maxYArr[i]),void 0!==e.min&&("number"==typeof e.min?t.minYArr[i]=e.min:"function"==typeof e.min&&(t.minYArr[i]=e.min(t.isMultipleYAxis?t.minYArr[i]===Number.MIN_VALUE?0:t.minYArr[i]:t.minY)),t.minY=t.minYArr[i])})),t.isBarHorizontal){["min","max"].forEach((function(i){void 0!==e.xaxis[i]&&"number"==typeof e.xaxis[i]&&("min"===i?t.minY=e.xaxis[i]:t.maxY=e.xaxis[i])}))}return t.isMultipleYAxis?(this.scales.setMultipleYScales(),t.minY=i,t.yAxisScale.forEach((function(e,i){t.minYArr[i]=e.niceMin,t.maxYArr[i]=e.niceMax}))):(this.scales.setYScaleForIndex(0,t.minY,t.maxY),t.minY=t.yAxisScale[0].niceMin,t.maxY=t.yAxisScale[0].niceMax,t.minYArr[0]=t.yAxisScale[0].niceMin,t.maxYArr[0]=t.yAxisScale[0].niceMax),{minY:t.minY,maxY:t.maxY,minYArr:t.minYArr,maxYArr:t.maxYArr,yAxisScale:t.yAxisScale}}},{key:"setXRange",value:function(){var t=this.w.globals,e=this.w.config,i="numeric"===e.xaxis.type||"datetime"===e.xaxis.type||"category"===e.xaxis.type&&!t.noLabelsProvided||t.noLabelsProvided||t.isXNumeric;if(t.isXNumeric&&function(){for(var e=0;et.dataPoints&&0!==t.dataPoints&&(a=t.dataPoints-1)):"dataPoints"===e.xaxis.tickAmount?(t.series.length>1&&(a=t.series[t.maxValsInArrayIndex].length-1),t.isXNumeric&&(a=t.maxX-t.minX-1)):a=e.xaxis.tickAmount,t.xTickAmount=a,void 0!==e.xaxis.max&&"number"==typeof e.xaxis.max&&(t.maxX=e.xaxis.max),void 0!==e.xaxis.min&&"number"==typeof e.xaxis.min&&(t.minX=e.xaxis.min),void 0!==e.xaxis.range&&(t.minX=t.maxX-e.xaxis.range),t.minX!==Number.MAX_VALUE&&t.maxX!==-Number.MAX_VALUE)if(e.xaxis.convertedCatToNumeric&&!t.dataFormatXNumeric){for(var s=[],r=t.minX-1;r0&&(t.xAxisScale=this.scales.linearScale(1,t.labels.length,a-1),t.seriesX=t.labels.slice());i&&(t.labels=t.xAxisScale.result.slice())}return t.isBarHorizontal&&t.labels.length&&(t.xTickAmount=t.labels.length),this._handleSingleDataPoint(),this._getMinXDiff(),{minX:t.minX,maxX:t.maxX}}},{key:"setZRange",value:function(){var t=this.w.globals;if(t.isDataXYZ)for(var e=0;e0){var s=e-a[i-1];s>0&&(t.minXDiff=Math.min(s,t.minXDiff))}})),1===t.dataPoints&&t.minXDiff===Number.MAX_VALUE&&(t.minXDiff=.5)}))}},{key:"_setStackedMinMax",value:function(){var t=this.w.globals,e=[],i=[];if(t.series.length)for(var a=0;a0?s=s+parseFloat(t.series[o][a])+1e-4:r+=parseFloat(t.series[o][a])),o===t.series.length-1&&(e.push(s),i.push(r));for(var n=0;n=0;m--)x(m);if(void 0!==i.config.yaxis[t].title.text){var v=a.group({class:"apexcharts-yaxis-title"}),y=0;i.config.yaxis[t].opposite&&(y=i.globals.translateYAxisX[t]);var w=a.drawText({x:y,y:i.globals.gridHeight/2+i.globals.translateY+i.config.yaxis[t].title.offsetY,text:i.config.yaxis[t].title.text,textAnchor:"end",foreColor:i.config.yaxis[t].title.style.color,fontSize:i.config.yaxis[t].title.style.fontSize,fontWeight:i.config.yaxis[t].title.style.fontWeight,fontFamily:i.config.yaxis[t].title.style.fontFamily,cssClass:"apexcharts-yaxis-title-text "+i.config.yaxis[t].title.style.cssClass});v.add(w),l.add(v)}var k=i.config.yaxis[t].axisBorder,A=31+k.offsetX;if(i.config.yaxis[t].opposite&&(A=-31-k.offsetX),k.show){var S=a.drawLine(A,i.globals.translateY+k.offsetY-2,A,i.globals.gridHeight+i.globals.translateY+k.offsetY+2,k.color,0,k.width);l.add(S)}return i.config.yaxis[t].axisTicks.show&&this.axesUtils.drawYAxisTicks(A,c,k,i.config.yaxis[t].axisTicks,t,d,l),l}},{key:"drawYaxisInversed",value:function(t){var e=this.w,i=new b(this.ctx),a=i.group({class:"apexcharts-xaxis apexcharts-yaxis-inversed"}),s=i.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(e.globals.translateXAxisX,", ").concat(e.globals.translateXAxisY,")")});a.add(s);var r=e.globals.yAxisScale[t].result.length-1,o=e.globals.gridWidth/r+.1,n=o+e.config.xaxis.labels.offsetX,l=e.globals.xLabelFormatter,h=e.globals.yAxisScale[t].result.slice(),c=e.globals.timescaleLabels;c.length>0&&(this.xaxisLabels=c.slice(),r=(h=c.slice()).length),h=this.axesUtils.checkForReversedLabels(t,h);var d=c.length;if(e.config.xaxis.labels.show)for(var g=d?0:r;d?g=0;d?g++:g--){var u=h[g];u=l(u,g,e);var f=e.globals.gridWidth+e.globals.padHorizontal-(n-o+e.config.xaxis.labels.offsetX);if(c.length){var p=this.axesUtils.getLabel(h,c,f,g,this.drawnLabels,this.xaxisFontSize);f=p.x,u=p.text,this.drawnLabels.push(p.text),0===g&&e.globals.skipFirstTimelinelabel&&(u=""),g===h.length-1&&e.globals.skipLastTimelinelabel&&(u="")}var x=i.drawText({x:f,y:this.xAxisoffX+e.config.xaxis.labels.offsetY+30-("top"===e.config.xaxis.position?e.globals.xAxisHeight+e.config.xaxis.axisTicks.height-2:0),text:u,textAnchor:"middle",foreColor:Array.isArray(this.xaxisForeColors)?this.xaxisForeColors[t]:this.xaxisForeColors,fontSize:this.xaxisFontSize,fontFamily:this.xaxisFontFamily,fontWeight:e.config.xaxis.labels.style.fontWeight,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+e.config.xaxis.labels.style.cssClass});s.add(x),x.tspan(u);var m=document.createElementNS(e.globals.SVGNS,"title");m.textContent=u,x.node.appendChild(m),n+=o}return this.inversedYAxisTitleText(a),this.inversedYAxisBorder(a),a}},{key:"inversedYAxisBorder",value:function(t){var e=this.w,i=new b(this.ctx),a=e.config.xaxis.axisBorder;if(a.show){var s=0;"bar"===e.config.chart.type&&e.globals.isXNumeric&&(s-=15);var r=i.drawLine(e.globals.padHorizontal+s+a.offsetX,this.xAxisoffX,e.globals.gridWidth,this.xAxisoffX,a.color,0,a.height);t.add(r)}}},{key:"inversedYAxisTitleText",value:function(t){var e=this.w,i=new b(this.ctx);if(void 0!==e.config.xaxis.title.text){var a=i.group({class:"apexcharts-xaxis-title apexcharts-yaxis-title-inversed"}),s=i.drawText({x:e.globals.gridWidth/2+e.config.xaxis.title.offsetX,y:this.xAxisoffX+parseFloat(this.xaxisFontSize)+parseFloat(e.config.xaxis.title.style.fontSize)+e.config.xaxis.title.offsetY+20,text:e.config.xaxis.title.text,textAnchor:"middle",fontSize:e.config.xaxis.title.style.fontSize,fontFamily:e.config.xaxis.title.style.fontFamily,fontWeight:e.config.xaxis.title.style.fontWeight,foreColor:e.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+e.config.xaxis.title.style.cssClass});a.add(s),t.add(a)}}},{key:"yAxisTitleRotate",value:function(t,e){var i=this.w,a=new b(this.ctx),s={width:0,height:0},r={width:0,height:0},o=i.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(t,"'] .apexcharts-yaxis-texts-g"));null!==o&&(s=o.getBoundingClientRect());var n=i.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(t,"'] .apexcharts-yaxis-title text"));if(null!==n&&(r=n.getBoundingClientRect()),null!==n){var l=this.xPaddingForYAxisTitle(t,s,r,e);n.setAttribute("x",l.xPos-(e?10:0))}if(null!==n){var h=a.rotateAroundCenter(n);n.setAttribute("transform","rotate(".concat(e?-1*i.config.yaxis[t].title.rotate:i.config.yaxis[t].title.rotate," ").concat(h.x," ").concat(h.y,")"))}}},{key:"xPaddingForYAxisTitle",value:function(t,e,i,a){var s=this.w,r=0,o=0,n=10;return void 0===s.config.yaxis[t].title.text||t<0?{xPos:o,padd:0}:(a?(o=e.width+s.config.yaxis[t].title.offsetX+i.width/2+n/2,0===(r+=1)&&(o-=n/2)):(o=-1*e.width+s.config.yaxis[t].title.offsetX+n/2+i.width/2,s.globals.isBarHorizontal&&(n=25,o=-1*e.width-s.config.yaxis[t].title.offsetX-n)),{xPos:o,padd:n})}},{key:"setYAxisXPosition",value:function(t,e){var i=this.w,a=0,s=0,r=18,o=1;i.config.yaxis.length>1&&(this.multipleYs=!0),i.config.yaxis.map((function(n,l){var h=i.globals.ignoreYAxisIndexes.indexOf(l)>-1||!n.show||n.floating||0===t[l].width,c=t[l].width+e[l].width;n.opposite?i.globals.isBarHorizontal?(s=i.globals.gridWidth+i.globals.translateX-1,i.globals.translateYAxisX[l]=s-n.labels.offsetX):(s=i.globals.gridWidth+i.globals.translateX+o,h||(o=o+c+20),i.globals.translateYAxisX[l]=s-n.labels.offsetX+20):(a=i.globals.translateX-r,h||(r=r+c+20),i.globals.translateYAxisX[l]=a+n.labels.offsetX)}))}},{key:"setYAxisTextAlignments",value:function(){var t=this.w,e=t.globals.dom.baseEl.getElementsByClassName("apexcharts-yaxis");(e=f.listToArray(e)).forEach((function(e,i){var a=t.config.yaxis[i];if(a&&void 0!==a.labels.align){var s=t.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(i,"'] .apexcharts-yaxis-texts-g")),r=t.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(i,"'] .apexcharts-yaxis-label"));r=f.listToArray(r);var o=s.getBoundingClientRect();"left"===a.labels.align?(r.forEach((function(t,e){t.setAttribute("text-anchor","start")})),a.opposite||s.setAttribute("transform","translate(-".concat(o.width,", 0)"))):"center"===a.labels.align?(r.forEach((function(t,e){t.setAttribute("text-anchor","middle")})),s.setAttribute("transform","translate(".concat(o.width/2*(a.opposite?1:-1),", 0)"))):"right"===a.labels.align&&(r.forEach((function(t,e){t.setAttribute("text-anchor","end")})),a.opposite&&s.setAttribute("transform","translate(".concat(o.width,", 0)")))}}))}}]),t}(),Z=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.documentEvent=f.bind(this.documentEvent,this)}return a(t,[{key:"addEventListener",value:function(t,e){var i=this.w;i.globals.events.hasOwnProperty(t)?i.globals.events[t].push(e):i.globals.events[t]=[e]}},{key:"removeEventListener",value:function(t,e){var i=this.w;if(i.globals.events.hasOwnProperty(t)){var a=i.globals.events[t].indexOf(e);-1!==a&&i.globals.events[t].splice(a,1)}}},{key:"fireEvent",value:function(t,e){var i=this.w;if(i.globals.events.hasOwnProperty(t)){e&&e.length||(e=[]);for(var a=i.globals.events[t],s=a.length,r=0;r0&&(e=this.w.config.chart.locales.concat(window.Apex.chart.locales));var i=e.filter((function(e){return e.name===t}))[0];if(!i)throw new Error("Wrong locale name provided. Please make sure you set the correct locale name in options");var a=f.extend(A,i);this.w.globals.locale=a.options}}]),t}(),J=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"drawAxis",value:function(t,e){var i,a,s=this.w.globals,r=this.w.config,o=new G(this.ctx),n=new q(this.ctx);s.axisCharts&&"radar"!==t&&(s.isBarHorizontal?(a=n.drawYaxisInversed(0),i=o.drawXaxisInversed(0),s.dom.elGraphical.add(i),s.dom.elGraphical.add(a)):(i=o.drawXaxis(),s.dom.elGraphical.add(i),r.yaxis.map((function(t,e){-1===s.ignoreYAxisIndexes.indexOf(e)&&(a=n.drawYaxis(e),s.dom.Paper.add(a))}))))}}]),t}(),Q=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"drawXCrosshairs",value:function(){var t=this.w,e=new b(this.ctx),i=new x(this.ctx),a=t.config.xaxis.crosshairs.fill.gradient,s=t.config.xaxis.crosshairs.dropShadow,r=t.config.xaxis.crosshairs.fill.type,o=a.colorFrom,n=a.colorTo,l=a.opacityFrom,h=a.opacityTo,c=a.stops,d=s.enabled,g=s.left,u=s.top,p=s.blur,m=s.color,v=s.opacity,y=t.config.xaxis.crosshairs.fill.color;if(t.config.xaxis.crosshairs.show){"gradient"===r&&(y=e.drawGradient("vertical",o,n,l,h,null,c,null));var w=e.drawRect();1===t.config.xaxis.crosshairs.width&&(w=e.drawLine()),w.attr({class:"apexcharts-xcrosshairs",x:0,y:0,y2:t.globals.gridHeight,width:f.isNumber(t.config.xaxis.crosshairs.width)?t.config.xaxis.crosshairs.width:0,height:t.globals.gridHeight,fill:y,filter:"none","fill-opacity":t.config.xaxis.crosshairs.opacity,stroke:t.config.xaxis.crosshairs.stroke.color,"stroke-width":t.config.xaxis.crosshairs.stroke.width,"stroke-dasharray":t.config.xaxis.crosshairs.stroke.dashArray}),d&&(w=i.dropShadow(w,{left:g,top:u,blur:p,color:m,opacity:v})),t.globals.dom.elGraphical.add(w)}}},{key:"drawYCrosshairs",value:function(){var t=this.w,e=new b(this.ctx),i=t.config.yaxis[0].crosshairs,a=t.globals.barPadForNumericAxis;if(t.config.yaxis[0].crosshairs.show){var s=e.drawLine(-a,0,t.globals.gridWidth+a,0,i.stroke.color,i.stroke.dashArray,i.stroke.width);s.attr({class:"apexcharts-ycrosshairs"}),t.globals.dom.elGraphical.add(s)}var r=e.drawLine(-a,0,t.globals.gridWidth+a,0,i.stroke.color,0,0);r.attr({class:"apexcharts-ycrosshairs-hidden"}),t.globals.dom.elGraphical.add(r)}}]),t}(),K=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"checkResponsiveConfig",value:function(t){var e=this,i=this.w,a=i.config;if(0!==a.responsive.length){var s=a.responsive.slice();s.sort((function(t,e){return t.breakpoint>e.breakpoint?1:e.breakpoint>t.breakpoint?-1:0})).reverse();var r=new H({}),o=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=s[0].breakpoint,o=window.innerWidth>0?window.innerWidth:screen.width;if(o>a){var n=y.extendArrayProps(r,i.globals.initialConfig,i);t=f.extend(n,t),t=f.extend(i.config,t),e.overrideResponsiveOptions(t)}else for(var l=0;l0&&"function"==typeof e.config.colors[0]&&(e.globals.colors=e.config.series.map((function(i,a){var s=e.config.colors[a];return s||(s=e.config.colors[0]),"function"==typeof s?(t.isColorFn=!0,s({value:e.globals.axisCharts?e.globals.series[a][0]?e.globals.series[a][0]:0:e.globals.series[a],seriesIndex:a,dataPointIndex:a,w:e})):s})))),e.globals.seriesColors.map((function(t,i){t&&(e.globals.colors[i]=t)})),e.config.theme.monochrome.enabled){var a=[],s=e.globals.series.length;(this.isBarDistributed||this.isHeatmapDistributed)&&(s=e.globals.series[0].length*e.globals.series.length);for(var r=e.config.theme.monochrome.color,o=1/(s/e.config.theme.monochrome.shadeIntensity),n=e.config.theme.monochrome.shadeTo,l=0,h=0;h2&&void 0!==arguments[2]?arguments[2]:null,a=this.w,s=e||a.globals.series.length;if(null===i&&(i=this.isBarDistributed||this.isHeatmapDistributed||"heatmap"===a.config.chart.type&&a.config.plotOptions.heatmap.colorScale.inverse),i&&a.globals.series.length&&(s=a.globals.series[a.globals.maxValsInArrayIndex].length*a.globals.series.length),t.lengtht.globals.svgWidth&&(this.dCtx.lgRect.width=t.globals.svgWidth/1.5),this.dCtx.lgRect}},{key:"getLargestStringFromMultiArr",value:function(t,e){var i=t;if(this.w.globals.isMultiLineX){var a=e.map((function(t,e){return Array.isArray(t)?t.length:1})),s=Math.max.apply(Math,g(a));i=e[a.indexOf(s)]}return i}}]),t}(),at=function(){function t(i){e(this,t),this.w=i.w,this.dCtx=i}return a(t,[{key:"getxAxisLabelsCoords",value:function(){var t,e=this.w,i=e.globals.labels.slice();if(e.config.xaxis.convertedCatToNumeric&&0===i.length&&(i=e.globals.categoryLabels),e.globals.timescaleLabels.length>0){var a=this.getxAxisTimeScaleLabelsCoords();t={width:a.width,height:a.height},e.globals.rotateXLabels=!1}else{this.dCtx.lgWidthForSideLegends="left"!==e.config.legend.position&&"right"!==e.config.legend.position||e.config.legend.floating?0:this.dCtx.lgRect.width;var s=e.globals.xLabelFormatter,r=f.getLargestStringFromArr(i),o=this.dCtx.dimHelpers.getLargestStringFromMultiArr(r,i);e.globals.isBarHorizontal&&(o=r=e.globals.yAxisScale[0].result.reduce((function(t,e){return t.length>e.length?t:e}),0));var n=new W(this.dCtx.ctx),l=r;r=n.xLabelFormat(s,r,l,{i:void 0,dateFormatter:new Y(this.dCtx.ctx).formatDate,w:e}),o=n.xLabelFormat(s,o,l,{i:void 0,dateFormatter:new Y(this.dCtx.ctx).formatDate,w:e}),(e.config.xaxis.convertedCatToNumeric&&void 0===r||""===String(r).trim())&&(o=r="1");var h=new b(this.dCtx.ctx),c=h.getTextRects(r,e.config.xaxis.labels.style.fontSize),d=c;if(r!==o&&(d=h.getTextRects(o,e.config.xaxis.labels.style.fontSize)),(t={width:c.width>=d.width?c.width:d.width,height:c.height>=d.height?c.height:d.height}).width*i.length>e.globals.svgWidth-this.dCtx.lgWidthForSideLegends-this.dCtx.yAxisWidth-this.dCtx.gridPad.left-this.dCtx.gridPad.right&&0!==e.config.xaxis.labels.rotate||e.config.xaxis.labels.rotateAlways){if(!e.globals.isBarHorizontal){e.globals.rotateXLabels=!0;var g=function(t){return h.getTextRects(t,e.config.xaxis.labels.style.fontSize,e.config.xaxis.labels.style.fontFamily,"rotate(".concat(e.config.xaxis.labels.rotate," 0 0)"),!1)};c=g(r),r!==o&&(d=g(o)),t.height=(c.height>d.height?c.height:d.height)/1.5,t.width=c.width>d.width?c.width:d.width}}else e.globals.rotateXLabels=!1}return e.config.xaxis.labels.show||(t={width:0,height:0}),{width:t.width,height:t.height}}},{key:"getxAxisTitleCoords",value:function(){var t=this.w,e=0,i=0;if(void 0!==t.config.xaxis.title.text){var a=new b(this.dCtx.ctx).getTextRects(t.config.xaxis.title.text,t.config.xaxis.title.style.fontSize);e=a.width,i=a.height}return{width:e,height:i}}},{key:"getxAxisTimeScaleLabelsCoords",value:function(){var t,e=this.w;this.dCtx.timescaleLabels=e.globals.timescaleLabels.slice();var i=this.dCtx.timescaleLabels.map((function(t){return t.value})),a=i.reduce((function(t,e){return void 0===t?(console.error("You have possibly supplied invalid Date format. Please supply a valid JavaScript Date"),0):t.length>e.length?t:e}),0);return 1.05*(t=new b(this.dCtx.ctx).getTextRects(a,e.config.xaxis.labels.style.fontSize)).width*i.length>e.globals.gridWidth&&0!==e.config.xaxis.labels.rotate&&(e.globals.overlappingXLabels=!0),t}},{key:"additionalPaddingXLabels",value:function(t){var e=this,i=this.w,a=i.globals,s=i.config,r=s.xaxis.type,o=t.width;a.skipLastTimelinelabel=!1,a.skipFirstTimelinelabel=!1;var n=i.config.yaxis[0].opposite&&i.globals.isBarHorizontal,l=function(t,n){(function(t){return-1!==a.collapsedSeriesIndices.indexOf(t)})(n)||function(t){if(e.dCtx.timescaleLabels&&e.dCtx.timescaleLabels.length){var n=e.dCtx.timescaleLabels[0],l=e.dCtx.timescaleLabels[e.dCtx.timescaleLabels.length-1].position+o/1.75-e.dCtx.yAxisWidthRight,h=n.position-o/1.75+e.dCtx.yAxisWidthLeft,c="right"===i.config.legend.position&&e.dCtx.lgRect.width>0?e.dCtx.lgRect.width:0;l>a.svgWidth-a.translateX-c&&(a.skipLastTimelinelabel=!0),h<-(t.show&&!t.floating||"bar"!==s.chart.type&&"candlestick"!==s.chart.type&&"rangeBar"!==s.chart.type&&"boxPlot"!==s.chart.type?10:o/1.75)&&(a.skipFirstTimelinelabel=!0)}else"datetime"===r?e.dCtx.gridPad.rightString(n.niceMax).length?c:n.niceMax,g=h(d,{seriesIndex:o,dataPointIndex:-1,w:e}),u=g;if(void 0!==g&&0!==g.length||(g=d),e.globals.isBarHorizontal){a=0;var p=e.globals.labels.slice();g=h(g=f.getLargestStringFromArr(p),{seriesIndex:o,dataPointIndex:-1,w:e}),u=t.dCtx.dimHelpers.getLargestStringFromMultiArr(g,p)}var x=new b(t.dCtx.ctx),m="rotate(".concat(r.labels.rotate," 0 0)"),v=x.getTextRects(g,r.labels.style.fontSize,r.labels.style.fontFamily,m,!1),y=v;g!==u&&(y=x.getTextRects(u,r.labels.style.fontSize,r.labels.style.fontFamily,m,!1)),i.push({width:(l>y.width||l>v.width?l:y.width>v.width?y.width:v.width)+a,height:y.height>v.height?y.height:v.height})}else i.push({width:0,height:0})})),i}},{key:"getyAxisTitleCoords",value:function(){var t=this,e=this.w,i=[];return e.config.yaxis.map((function(e,a){if(e.show&&void 0!==e.title.text){var s=new b(t.dCtx.ctx),r="rotate(".concat(e.title.rotate," 0 0)"),o=s.getTextRects(e.title.text,e.title.style.fontSize,e.title.style.fontFamily,r,!1);i.push({width:o.width,height:o.height})}else i.push({width:0,height:0})})),i}},{key:"getTotalYAxisWidth",value:function(){var t=this.w,e=0,i=0,a=0,s=t.globals.yAxisScale.length>1?10:0,r=new B(this.dCtx.ctx),o=function(o,n){var l=t.config.yaxis[n].floating,h=0;o.width>0&&!l?(h=o.width+s,function(e){return t.globals.ignoreYAxisIndexes.indexOf(e)>-1}(n)&&(h=h-o.width-s)):h=l||r.isYAxisHidden(n)?0:5,t.config.yaxis[n].opposite?a+=h:i+=h,e+=h};return t.globals.yLabelsCoords.map((function(t,e){o(t,e)})),t.globals.yTitleCoords.map((function(t,e){o(t,e)})),t.globals.isBarHorizontal&&!t.config.yaxis[0].floating&&(e=t.globals.yLabelsCoords[0].width+t.globals.yTitleCoords[0].width+15),this.dCtx.yAxisWidthLeft=i,this.dCtx.yAxisWidthRight=a,e}}]),t}(),rt=function(){function t(i){e(this,t),this.w=i.w,this.dCtx=i}return a(t,[{key:"gridPadForColumnsInNumericAxis",value:function(t){var e=this.w;if(e.globals.noData||e.globals.allSeriesCollapsed)return 0;var i=function(t){return"bar"===t||"rangeBar"===t||"candlestick"===t||"boxPlot"===t},a=e.config.chart.type,s=0,r=i(a)?e.config.series.length:1;if(e.globals.comboBarCount>0&&(r=e.globals.comboBarCount),e.globals.collapsedSeries.forEach((function(t){i(t.type)&&(r-=1)})),e.config.chart.stacked&&(r=1),(i(a)||e.globals.comboBarCount>0)&&e.globals.isXNumeric&&!e.globals.isBarHorizontal&&r>0){var o,n,l=Math.abs(e.globals.initialMaxX-e.globals.initialMinX);l<=3&&(l=e.globals.dataPoints),o=l/t,e.globals.minXDiff&&e.globals.minXDiff/o>0&&(n=e.globals.minXDiff/o),n>t/2&&(n/=2),(s=n/r*parseInt(e.config.plotOptions.bar.columnWidth,10)/100)<1&&(s=1),s=s/(r>1?1:1.5)+5,e.globals.barPadForNumericAxis=s}return s}},{key:"gridPadFortitleSubtitle",value:function(){var t=this,e=this.w,i=e.globals,a=this.dCtx.isSparkline||!e.globals.axisCharts?0:10;["title","subtitle"].forEach((function(i){void 0!==e.config[i].text?a+=e.config[i].margin:a+=t.dCtx.isSparkline||!e.globals.axisCharts?0:5})),!e.config.legend.show||"bottom"!==e.config.legend.position||e.config.legend.floating||e.globals.axisCharts||(a+=10);var s=this.dCtx.dimHelpers.getTitleSubtitleCoords("title"),r=this.dCtx.dimHelpers.getTitleSubtitleCoords("subtitle");i.gridHeight=i.gridHeight-s.height-r.height-a,i.translateY=i.translateY+s.height+r.height+a}},{key:"setGridXPosForDualYAxis",value:function(t,e){var i=this.w,a=new B(this.dCtx.ctx);i.config.yaxis.map((function(s,r){-1!==i.globals.ignoreYAxisIndexes.indexOf(r)||s.floating||a.isYAxisHidden(r)||(s.opposite&&(i.globals.translateX=i.globals.translateX-(e[r].width+t[r].width)-parseInt(i.config.yaxis[r].labels.style.fontSize,10)/1.2-12),i.globals.translateX<2&&(i.globals.translateX=2))}))}}]),t}(),ot=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.lgRect={},this.yAxisWidth=0,this.yAxisWidthLeft=0,this.yAxisWidthRight=0,this.xAxisHeight=0,this.isSparkline=this.w.config.chart.sparkline.enabled,this.dimHelpers=new it(this),this.dimYAxis=new st(this),this.dimXAxis=new at(this),this.dimGrid=new rt(this),this.lgWidthForSideLegends=0,this.gridPad=this.w.config.grid.padding,this.xPadRight=0,this.xPadLeft=0}return a(t,[{key:"plotCoords",value:function(){var t=this.w.globals;this.lgRect=this.dimHelpers.getLegendsRect(),t.axisCharts?this.setDimensionsForAxisCharts():this.setDimensionsForNonAxisCharts(),this.dimGrid.gridPadFortitleSubtitle(),t.gridHeight=t.gridHeight-this.gridPad.top-this.gridPad.bottom,t.gridWidth=t.gridWidth-this.gridPad.left-this.gridPad.right-this.xPadRight-this.xPadLeft;var e=this.dimGrid.gridPadForColumnsInNumericAxis(t.gridWidth);t.gridWidth=t.gridWidth-2*e,t.translateX=t.translateX+this.gridPad.left+this.xPadLeft+(e>0?e+4:0),t.translateY=t.translateY+this.gridPad.top}},{key:"setDimensionsForAxisCharts",value:function(){var t=this,e=this.w,i=e.globals,a=this.dimYAxis.getyAxisLabelsCoords(),s=this.dimYAxis.getyAxisTitleCoords();e.globals.yLabelsCoords=[],e.globals.yTitleCoords=[],e.config.yaxis.map((function(t,i){e.globals.yLabelsCoords.push({width:a[i].width,index:i}),e.globals.yTitleCoords.push({width:s[i].width,index:i})})),this.yAxisWidth=this.dimYAxis.getTotalYAxisWidth();var r=this.dimXAxis.getxAxisLabelsCoords(),o=this.dimXAxis.getxAxisTitleCoords();this.conditionalChecksForAxisCoords(r,o),i.translateXAxisY=e.globals.rotateXLabels?this.xAxisHeight/8:-4,i.translateXAxisX=e.globals.rotateXLabels&&e.globals.isXNumeric&&e.config.xaxis.labels.rotate<=-45?-this.xAxisWidth/4:0,e.globals.isBarHorizontal&&(i.rotateXLabels=!1,i.translateXAxisY=parseInt(e.config.xaxis.labels.style.fontSize,10)/1.5*-1),i.translateXAxisY=i.translateXAxisY+e.config.xaxis.labels.offsetY,i.translateXAxisX=i.translateXAxisX+e.config.xaxis.labels.offsetX;var n=this.yAxisWidth,l=this.xAxisHeight;i.xAxisLabelsHeight=this.xAxisHeight-o.height,i.xAxisLabelsWidth=this.xAxisWidth,i.xAxisHeight=this.xAxisHeight;var h=10;("radar"===e.config.chart.type||this.isSparkline)&&(n=0,l=i.goldenPadding),this.isSparkline&&(this.lgRect={height:0,width:0}),(this.isSparkline||"treemap"===e.config.chart.type)&&(n=0,l=0,h=0),this.isSparkline||this.dimXAxis.additionalPaddingXLabels(r);var c=function(){i.translateX=n,i.gridHeight=i.svgHeight-t.lgRect.height-l-(t.isSparkline||"treemap"===e.config.chart.type?0:e.globals.rotateXLabels?10:15),i.gridWidth=i.svgWidth-n};switch("top"===e.config.xaxis.position&&(h=i.xAxisHeight-e.config.xaxis.axisTicks.height-5),e.config.legend.position){case"bottom":i.translateY=h,c();break;case"top":i.translateY=this.lgRect.height+h,c();break;case"left":i.translateY=h,i.translateX=this.lgRect.width+n,i.gridHeight=i.svgHeight-l-12,i.gridWidth=i.svgWidth-this.lgRect.width-n;break;case"right":i.translateY=h,i.translateX=n,i.gridHeight=i.svgHeight-l-12,i.gridWidth=i.svgWidth-this.lgRect.width-n-5;break;default:throw new Error("Legend position not supported")}this.dimGrid.setGridXPosForDualYAxis(s,a),new q(this.ctx).setYAxisXPosition(a,s)}},{key:"setDimensionsForNonAxisCharts",value:function(){var t=this.w,e=t.globals,i=t.config,a=0;t.config.legend.show&&!t.config.legend.floating&&(a=20);var s="pie"===i.chart.type||"polarArea"===i.chart.type||"donut"===i.chart.type?"pie":"radialBar",r=i.plotOptions[s].offsetY,o=i.plotOptions[s].offsetX;if(!i.legend.show||i.legend.floating)return e.gridHeight=e.svgHeight-i.grid.padding.left+i.grid.padding.right,e.gridWidth=e.gridHeight,e.translateY=r,void(e.translateX=o+(e.svgWidth-e.gridWidth)/2);switch(i.legend.position){case"bottom":e.gridHeight=e.svgHeight-this.lgRect.height-e.goldenPadding,e.gridWidth=e.svgWidth,e.translateY=r-10,e.translateX=o+(e.svgWidth-e.gridWidth)/2;break;case"top":e.gridHeight=e.svgHeight-this.lgRect.height-e.goldenPadding,e.gridWidth=e.svgWidth,e.translateY=this.lgRect.height+r+10,e.translateX=o+(e.svgWidth-e.gridWidth)/2;break;case"left":e.gridWidth=e.svgWidth-this.lgRect.width-a,e.gridHeight="auto"!==i.chart.height?e.svgHeight:e.gridWidth,e.translateY=r,e.translateX=o+this.lgRect.width+a;break;case"right":e.gridWidth=e.svgWidth-this.lgRect.width-a-5,e.gridHeight="auto"!==i.chart.height?e.svgHeight:e.gridWidth,e.translateY=r,e.translateX=o+10;break;default:throw new Error("Legend position not supported")}}},{key:"conditionalChecksForAxisCoords",value:function(t,e){var i=this.w;this.xAxisHeight=(t.height+e.height)*(i.globals.isMultiLineX?1.2:i.globals.LINE_HEIGHT_RATIO)+(i.globals.rotateXLabels?22:10),this.xAxisWidth=t.width,this.xAxisHeight-e.height>i.config.xaxis.labels.maxHeight&&(this.xAxisHeight=i.config.xaxis.labels.maxHeight),i.config.xaxis.labels.minHeight&&this.xAxisHeights&&(this.yAxisWidth=s)}}]),t}(),nt=function(){function t(i){e(this,t),this.w=i.w,this.lgCtx=i}return a(t,[{key:"getLegendStyles",value:function(){var t=document.createElement("style");t.setAttribute("type","text/css");var e=document.createTextNode("\t\n \t\n .apexcharts-legend {\t\n display: flex;\t\n overflow: auto;\t\n padding: 0 10px;\t\n }\t\n .apexcharts-legend.position-bottom, .apexcharts-legend.position-top {\t\n flex-wrap: wrap\t\n }\t\n .apexcharts-legend.position-right, .apexcharts-legend.position-left {\t\n flex-direction: column;\t\n bottom: 0;\t\n }\t\n .apexcharts-legend.position-bottom.apexcharts-align-left, .apexcharts-legend.position-top.apexcharts-align-left, .apexcharts-legend.position-right, .apexcharts-legend.position-left {\t\n justify-content: flex-start;\t\n }\t\n .apexcharts-legend.position-bottom.apexcharts-align-center, .apexcharts-legend.position-top.apexcharts-align-center {\t\n justify-content: center; \t\n }\t\n .apexcharts-legend.position-bottom.apexcharts-align-right, .apexcharts-legend.position-top.apexcharts-align-right {\t\n justify-content: flex-end;\t\n }\t\n .apexcharts-legend-series {\t\n cursor: pointer;\t\n line-height: normal;\t\n }\t\n .apexcharts-legend.position-bottom .apexcharts-legend-series, .apexcharts-legend.position-top .apexcharts-legend-series{\t\n display: flex;\t\n align-items: center;\t\n }\t\n .apexcharts-legend-text {\t\n position: relative;\t\n font-size: 14px;\t\n }\t\n .apexcharts-legend-text *, .apexcharts-legend-marker * {\t\n pointer-events: none;\t\n }\t\n .apexcharts-legend-marker {\t\n position: relative;\t\n display: inline-block;\t\n cursor: pointer;\t\n margin-right: 3px;\t\n border-style: solid;\n }\t\n \t\n .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series, .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series{\t\n display: inline-block;\t\n }\t\n .apexcharts-legend-series.apexcharts-no-click {\t\n cursor: auto;\t\n }\t\n .apexcharts-legend .apexcharts-hidden-zero-series, .apexcharts-legend .apexcharts-hidden-null-series {\t\n display: none !important;\t\n }\t\n .apexcharts-inactive-legend {\t\n opacity: 0.45;\t\n }");return t.appendChild(e),t}},{key:"getLegendBBox",value:function(){var t=this.w.globals.dom.baseEl.querySelector(".apexcharts-legend").getBoundingClientRect(),e=t.width;return{clwh:t.height,clww:e}}},{key:"appendToForeignObject",value:function(){var t=this.w.globals;t.dom.elLegendForeign=document.createElementNS(t.SVGNS,"foreignObject");var e=t.dom.elLegendForeign;e.setAttribute("x",0),e.setAttribute("y",0),e.setAttribute("width",t.svgWidth),e.setAttribute("height",t.svgHeight),t.dom.elLegendWrap.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),e.appendChild(t.dom.elLegendWrap),e.appendChild(this.getLegendStyles()),t.dom.Paper.node.insertBefore(e,t.dom.elGraphical.node)}},{key:"toggleDataSeries",value:function(t,e){var i=this,a=this.w;if(a.globals.axisCharts||"radialBar"===a.config.chart.type){a.globals.resized=!0;var s=null,r=null;if(a.globals.risingSeries=[],a.globals.axisCharts?(s=a.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(t,"']")),r=parseInt(s.getAttribute("data:realIndex"),10)):(s=a.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(t+1,"']")),r=parseInt(s.getAttribute("rel"),10)-1),e)[{cs:a.globals.collapsedSeries,csi:a.globals.collapsedSeriesIndices},{cs:a.globals.ancillaryCollapsedSeries,csi:a.globals.ancillaryCollapsedSeriesIndices}].forEach((function(t){i.riseCollapsedSeries(t.cs,t.csi,r)}));else this.hideSeries({seriesEl:s,realIndex:r})}else{var o=a.globals.dom.Paper.select(" .apexcharts-series[rel='".concat(t+1,"'] path")),n=a.config.chart.type;if("pie"===n||"polarArea"===n||"donut"===n){var l=a.config.plotOptions.pie.donut.labels;new b(this.lgCtx.ctx).pathMouseDown(o.members[0],null),this.lgCtx.ctx.pie.printDataLabelsInner(o.members[0].node,l)}o.fire("click")}}},{key:"hideSeries",value:function(t){var e=t.seriesEl,i=t.realIndex,a=this.w,s=f.clone(a.config.series);if(a.globals.axisCharts){var r=!1;if(a.config.yaxis[i]&&a.config.yaxis[i].show&&a.config.yaxis[i].showAlways&&(r=!0,a.globals.ancillaryCollapsedSeriesIndices.indexOf(i)<0&&(a.globals.ancillaryCollapsedSeries.push({index:i,data:s[i].data.slice(),type:e.parentNode.className.baseVal.split("-")[1]}),a.globals.ancillaryCollapsedSeriesIndices.push(i))),!r){a.globals.collapsedSeries.push({index:i,data:s[i].data.slice(),type:e.parentNode.className.baseVal.split("-")[1]}),a.globals.collapsedSeriesIndices.push(i);var o=a.globals.risingSeries.indexOf(i);a.globals.risingSeries.splice(o,1)}}else a.globals.collapsedSeries.push({index:i,data:s[i]}),a.globals.collapsedSeriesIndices.push(i);for(var n=e.childNodes,l=0;l0){for(var r=0;r-1&&(t[a].data=[])})):t.forEach((function(i,a){e.globals.collapsedSeriesIndices.indexOf(a)>-1&&(t[a]=0)})),t}}]),t}(),lt=function(){function t(i,a){e(this,t),this.ctx=i,this.w=i.w,this.onLegendClick=this.onLegendClick.bind(this),this.onLegendHovered=this.onLegendHovered.bind(this),this.isBarsDistributed="bar"===this.w.config.chart.type&&this.w.config.plotOptions.bar.distributed&&1===this.w.config.series.length,this.legendHelpers=new nt(this)}return a(t,[{key:"init",value:function(){var t=this.w,e=t.globals,i=t.config;if((i.legend.showForSingleSeries&&1===e.series.length||this.isBarsDistributed||e.series.length>1||!e.axisCharts)&&i.legend.show){for(;e.dom.elLegendWrap.firstChild;)e.dom.elLegendWrap.removeChild(e.dom.elLegendWrap.firstChild);this.drawLegends(),f.isIE11()?document.getElementsByTagName("head")[0].appendChild(this.legendHelpers.getLegendStyles()):this.legendHelpers.appendToForeignObject(),"bottom"===i.legend.position||"top"===i.legend.position?this.legendAlignHorizontal():"right"!==i.legend.position&&"left"!==i.legend.position||this.legendAlignVertical()}}},{key:"drawLegends",value:function(){var t=this,e=this.w,i=e.config.legend.fontFamily,a=e.globals.seriesNames,s=e.globals.colors.slice();if("heatmap"===e.config.chart.type){var r=e.config.plotOptions.heatmap.colorScale.ranges;a=r.map((function(t){return t.name?t.name:t.from+" - "+t.to})),s=r.map((function(t){return t.color}))}else this.isBarsDistributed&&(a=e.globals.labels.slice());e.config.legend.customLegendItems.length&&(a=e.config.legend.customLegendItems);for(var o=e.globals.legendFormatter,n=e.config.legend.inverseOrder,l=n?a.length-1:0;n?l>=0:l<=a.length-1;n?l--:l++){var h=o(a[l],{seriesIndex:l,w:e}),c=!1,d=!1;if(e.globals.collapsedSeries.length>0)for(var g=0;g0)for(var u=0;u0?l-10:0)+(h>0?h-10:0)}a.style.position="absolute",r=r+t+i.config.legend.offsetX,o=o+e+i.config.legend.offsetY,a.style.left=r+"px",a.style.top=o+"px","bottom"===i.config.legend.position?(a.style.top="auto",a.style.bottom=5-i.config.legend.offsetY+"px"):"right"===i.config.legend.position&&(a.style.left="auto",a.style.right=25+i.config.legend.offsetX+"px");["width","height"].forEach((function(t){a.style[t]&&(a.style[t]=parseInt(i.config.legend[t],10)+"px")}))}},{key:"legendAlignHorizontal",value:function(){var t=this.w;t.globals.dom.baseEl.querySelector(".apexcharts-legend").style.right=0;var e=this.legendHelpers.getLegendBBox(),i=new ot(this.ctx),a=i.dimHelpers.getTitleSubtitleCoords("title"),s=i.dimHelpers.getTitleSubtitleCoords("subtitle"),r=0;"bottom"===t.config.legend.position?r=-e.clwh/1.8:"top"===t.config.legend.position&&(r=a.height+s.height+t.config.title.margin+t.config.subtitle.margin-10),this.setLegendWrapXY(20,r)}},{key:"legendAlignVertical",value:function(){var t=this.w,e=this.legendHelpers.getLegendBBox(),i=0;"left"===t.config.legend.position&&(i=20),"right"===t.config.legend.position&&(i=t.globals.svgWidth-e.clww-10),this.setLegendWrapXY(i,20)}},{key:"onLegendHovered",value:function(t){var e=this.w,i=t.target.classList.contains("apexcharts-legend-text")||t.target.classList.contains("apexcharts-legend-marker");if("heatmap"===e.config.chart.type||this.isBarsDistributed){if(i){var a=parseInt(t.target.getAttribute("rel"),10)-1;this.ctx.events.fireEvent("legendHover",[this.ctx,a,this.w]),new M(this.ctx).highlightRangeInSeries(t,t.target)}}else!t.target.classList.contains("apexcharts-inactive-legend")&&i&&new M(this.ctx).toggleSeriesOnHover(t,t.target)}},{key:"onLegendClick",value:function(t){var e=this.w;if(!e.config.legend.customLegendItems.length&&(t.target.classList.contains("apexcharts-legend-text")||t.target.classList.contains("apexcharts-legend-marker"))){var i=parseInt(t.target.getAttribute("rel"),10)-1,a="true"===t.target.getAttribute("data:collapsed"),s=this.w.config.chart.events.legendClick;"function"==typeof s&&s(this.ctx,i,this.w),this.ctx.events.fireEvent("legendClick",[this.ctx,i,this.w]);var r=this.w.config.legend.markers.onClick;"function"==typeof r&&t.target.classList.contains("apexcharts-legend-marker")&&(r(this.ctx,i,this.w),this.ctx.events.fireEvent("legendMarkerClick",[this.ctx,i,this.w])),"treemap"!==e.config.chart.type&&"heatmap"!==e.config.chart.type&&!this.isBarsDistributed&&e.config.legend.onItemClick.toggleDataSeries&&this.legendHelpers.toggleDataSeries(i,a)}}}]),t}(),ht=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var a=this.w;this.ev=this.w.config.chart.events,this.selectedClass="apexcharts-selected",this.localeValues=this.w.globals.locale.toolbar,this.minX=a.globals.minX,this.maxX=a.globals.maxX}return a(t,[{key:"createToolbar",value:function(){var t=this,e=this.w,i=function(){return document.createElement("div")},a=i();if(a.setAttribute("class","apexcharts-toolbar"),a.style.top=e.config.chart.toolbar.offsetY+"px",a.style.right=3-e.config.chart.toolbar.offsetX+"px",e.globals.dom.elWrap.appendChild(a),this.elZoom=i(),this.elZoomIn=i(),this.elZoomOut=i(),this.elPan=i(),this.elSelection=i(),this.elZoomReset=i(),this.elMenuIcon=i(),this.elMenu=i(),this.elCustomIcons=[],this.t=e.config.chart.toolbar.tools,Array.isArray(this.t.customIcons))for(var s=0;s\n \n \n\n'),o("zoomOut",this.elZoomOut,'\n \n \n\n');var n=function(i){t.t[i]&&e.config.chart[i].enabled&&r.push({el:"zoom"===i?t.elZoom:t.elSelection,icon:"string"==typeof t.t[i]?t.t[i]:"zoom"===i?'\n \n \n \n':'\n \n \n',title:t.localeValues["zoom"===i?"selectionZoom":"selection"],class:e.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-".concat(i,"-icon")})};n("zoom"),n("selection"),this.t.pan&&e.config.chart.zoom.enabled&&r.push({el:this.elPan,icon:"string"==typeof this.t.pan?this.t.pan:'\n \n \n \n \n \n \n \n',title:this.localeValues.pan,class:e.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-pan-icon"}),o("reset",this.elZoomReset,'\n \n \n'),this.t.download&&r.push({el:this.elMenuIcon,icon:"string"==typeof this.t.download?this.t.download:'',title:this.localeValues.menu,class:"apexcharts-menu-icon"});for(var l=0;l0&&e.height>0&&this.slDraggableRect.selectize({points:"l, r",pointSize:8,pointType:"rect"}).resize({constraint:{minX:0,minY:0,maxX:t.globals.gridWidth,maxY:t.globals.gridHeight}}).on("resizing",this.selectionDragging.bind(this,"resizing"))}}},{key:"preselectedSelection",value:function(){var t=this.w,e=this.xyRatios;if(!t.globals.zoomEnabled)if(void 0!==t.globals.selection&&null!==t.globals.selection)this.drawSelectionRect(t.globals.selection);else if(void 0!==t.config.chart.selection.xaxis.min&&void 0!==t.config.chart.selection.xaxis.max){var i=(t.config.chart.selection.xaxis.min-t.globals.minX)/e.xRatio,a={x:i,y:0,width:t.globals.gridWidth-(t.globals.maxX-t.config.chart.selection.xaxis.max)/e.xRatio-i,height:t.globals.gridHeight,translateX:0,translateY:0,selectionEnabled:!0};this.drawSelectionRect(a),this.makeSelectionRectDraggable(),"function"==typeof t.config.chart.events.selection&&t.config.chart.events.selection(this.ctx,{xaxis:{min:t.config.chart.selection.xaxis.min,max:t.config.chart.selection.xaxis.max},yaxis:{}})}}},{key:"drawSelectionRect",value:function(t){var e=t.x,i=t.y,a=t.width,s=t.height,r=t.translateX,o=void 0===r?0:r,n=t.translateY,l=void 0===n?0:n,h=this.w,c=this.zoomRect,d=this.selectionRect;if(this.dragged||null!==h.globals.selection){var g={transform:"translate("+o+", "+l+")"};h.globals.zoomEnabled&&this.dragged&&(a<0&&(a=1),c.attr({x:e,y:i,width:a,height:s,fill:h.config.chart.zoom.zoomedArea.fill.color,"fill-opacity":h.config.chart.zoom.zoomedArea.fill.opacity,stroke:h.config.chart.zoom.zoomedArea.stroke.color,"stroke-width":h.config.chart.zoom.zoomedArea.stroke.width,"stroke-opacity":h.config.chart.zoom.zoomedArea.stroke.opacity}),b.setAttrs(c.node,g)),h.globals.selectionEnabled&&(d.attr({x:e,y:i,width:a>0?a:0,height:s>0?s:0,fill:h.config.chart.selection.fill.color,"fill-opacity":h.config.chart.selection.fill.opacity,stroke:h.config.chart.selection.stroke.color,"stroke-width":h.config.chart.selection.stroke.width,"stroke-dasharray":h.config.chart.selection.stroke.dashArray,"stroke-opacity":h.config.chart.selection.stroke.opacity}),b.setAttrs(d.node,g))}}},{key:"hideSelectionRect",value:function(t){t&&t.attr({x:0,y:0,width:0,height:0})}},{key:"selectionDrawing",value:function(t){var e=t.context,i=t.zoomtype,a=this.w,s=e,r=this.gridRect.getBoundingClientRect(),o=s.startX-1,n=s.startY,l=!1,h=!1,c=s.clientX-r.left-o,d=s.clientY-r.top-n,g={};return Math.abs(c+o)>a.globals.gridWidth?c=a.globals.gridWidth-o:s.clientX-r.left<0&&(c=o),o>s.clientX-r.left&&(l=!0,c=Math.abs(c)),n>s.clientY-r.top&&(h=!0,d=Math.abs(d)),g="x"===i?{x:l?o-c:o,y:0,width:c,height:a.globals.gridHeight}:"y"===i?{x:0,y:h?n-d:n,width:a.globals.gridWidth,height:d}:{x:l?o-c:o,y:h?n-d:n,width:c,height:d},s.drawSelectionRect(g),s.selectionDragging("resizing"),g}},{key:"selectionDragging",value:function(t,e){var i=this,a=this.w,s=this.xyRatios,r=this.selectionRect,o=0;"resizing"===t&&(o=30);var n=function(t){return parseFloat(r.node.getAttribute(t))},l={x:n("x"),y:n("y"),width:n("width"),height:n("height")};a.globals.selection=l,"function"==typeof a.config.chart.events.selection&&a.globals.selectionEnabled&&(clearTimeout(this.w.globals.selectionResizeTimer),this.w.globals.selectionResizeTimer=window.setTimeout((function(){var t=i.gridRect.getBoundingClientRect(),e=r.node.getBoundingClientRect(),o={xaxis:{min:a.globals.xAxisScale.niceMin+(e.left-t.left)*s.xRatio,max:a.globals.xAxisScale.niceMin+(e.right-t.left)*s.xRatio},yaxis:{min:a.globals.yAxisScale[0].niceMin+(t.bottom-e.bottom)*s.yRatio[0],max:a.globals.yAxisScale[0].niceMax-(e.top-t.top)*s.yRatio[0]}};a.config.chart.events.selection(i.ctx,o),a.config.chart.brush.enabled&&void 0!==a.config.chart.events.brushScrolled&&a.config.chart.events.brushScrolled(i.ctx,o)}),o))}},{key:"selectionDrawn",value:function(t){var e=t.context,i=t.zoomtype,a=this.w,s=e,r=this.xyRatios,o=this.ctx.toolbar;if(s.startX>s.endX){var n=s.startX;s.startX=s.endX,s.endX=n}if(s.startY>s.endY){var l=s.startY;s.startY=s.endY,s.endY=l}var h=void 0,c=void 0;a.globals.isTimelineBar?(h=a.globals.yAxisScale[0].niceMin+s.startX*r.invertedYRatio,c=a.globals.yAxisScale[0].niceMin+s.endX*r.invertedYRatio):(h=a.globals.xAxisScale.niceMin+s.startX*r.xRatio,c=a.globals.xAxisScale.niceMin+s.endX*r.xRatio);var d=[],g=[];if(a.config.yaxis.forEach((function(t,e){d.push(a.globals.yAxisScale[e].niceMax-r.yRatio[e]*s.startY),g.push(a.globals.yAxisScale[e].niceMax-r.yRatio[e]*s.endY)})),s.dragged&&(s.dragX>10||s.dragY>10)&&h!==c)if(a.globals.zoomEnabled){var u=f.clone(a.globals.initialConfig.yaxis),p=f.clone(a.globals.initialConfig.xaxis);if(a.globals.zoomed=!0,a.config.xaxis.convertedCatToNumeric&&(h=Math.floor(h),c=Math.floor(c),h<1&&(h=1,c=a.globals.dataPoints),c-h<2&&(c=h+1)),"xy"!==i&&"x"!==i||(p={min:h,max:c}),"xy"!==i&&"y"!==i||u.forEach((function(t,e){u[e].min=g[e],u[e].max=d[e]})),a.config.chart.zoom.autoScaleYaxis){var x=new j(s.ctx);u=x.autoScaleY(s.ctx,u,{xaxis:p})}if(o){var b=o.getBeforeZoomRange(p,u);b&&(p=b.xaxis?b.xaxis:p,u=b.yaxis?b.yaxis:u)}var m={xaxis:p};a.config.chart.group||(m.yaxis=u),s.ctx.updateHelpers._updateOptions(m,!1,s.w.config.chart.animations.dynamicAnimation.enabled),"function"==typeof a.config.chart.events.zoomed&&o.zoomCallback(p,u)}else if(a.globals.selectionEnabled){var v,y=null;v={min:h,max:c},"xy"!==i&&"y"!==i||(y=f.clone(a.config.yaxis)).forEach((function(t,e){y[e].min=g[e],y[e].max=d[e]})),a.globals.selection=s.selection,"function"==typeof a.config.chart.events.selection&&a.config.chart.events.selection(s.ctx,{xaxis:v,yaxis:y})}}},{key:"panDragging",value:function(t){var e=t.context,i=this.w,a=e;if(void 0!==i.globals.lastClientPosition.x){var s=i.globals.lastClientPosition.x-a.clientX,r=i.globals.lastClientPosition.y-a.clientY;Math.abs(s)>Math.abs(r)&&s>0?this.moveDirection="left":Math.abs(s)>Math.abs(r)&&s<0?this.moveDirection="right":Math.abs(r)>Math.abs(s)&&r>0?this.moveDirection="up":Math.abs(r)>Math.abs(s)&&r<0&&(this.moveDirection="down")}i.globals.lastClientPosition={x:a.clientX,y:a.clientY};var o=i.globals.isTimelineBar?i.globals.minY:i.globals.minX,n=i.globals.isTimelineBar?i.globals.maxY:i.globals.maxX;i.config.xaxis.convertedCatToNumeric||a.panScrolled(o,n)}},{key:"delayedPanScrolled",value:function(){var t=this.w,e=t.globals.minX,i=t.globals.maxX,a=(t.globals.maxX-t.globals.minX)/2;"left"===this.moveDirection?(e=t.globals.minX+a,i=t.globals.maxX+a):"right"===this.moveDirection&&(e=t.globals.minX-a,i=t.globals.maxX-a),e=Math.floor(e),i=Math.floor(i),this.updateScrolledChart({xaxis:{min:e,max:i}},e,i)}},{key:"panScrolled",value:function(t,e){var i=this.w,a=this.xyRatios,s=f.clone(i.globals.initialConfig.yaxis),r=a.xRatio,o=i.globals.minX,n=i.globals.maxX;i.globals.isTimelineBar&&(r=a.invertedYRatio,o=i.globals.minY,n=i.globals.maxY),"left"===this.moveDirection?(t=o+i.globals.gridWidth/15*r,e=n+i.globals.gridWidth/15*r):"right"===this.moveDirection&&(t=o-i.globals.gridWidth/15*r,e=n-i.globals.gridWidth/15*r),i.globals.isTimelineBar||(ti.globals.initialMaxX)&&(t=o,e=n);var l={min:t,max:e};i.config.chart.zoom.autoScaleYaxis&&(s=new j(this.ctx).autoScaleY(this.ctx,s,{xaxis:l}));var h={xaxis:{min:t,max:e}};i.config.chart.group||(h.yaxis=s),this.updateScrolledChart(h,t,e)}},{key:"updateScrolledChart",value:function(t,e,i){var a=this.w;this.ctx.updateHelpers._updateOptions(t,!1,!1),"function"==typeof a.config.chart.events.scrolled&&a.config.chart.events.scrolled(this.ctx,{xaxis:{min:e,max:i}})}}]),s}(),dt=function(){function t(i){e(this,t),this.w=i.w,this.ttCtx=i,this.ctx=i.ctx}return a(t,[{key:"getNearestValues",value:function(t){var e=t.hoverArea,i=t.elGrid,a=t.clientX,s=t.clientY,r=this.w,o=r.globals.gridWidth,n=r.globals.gridHeight,l=o/(r.globals.dataPoints-1),h=n/r.globals.dataPoints,c=i.getBoundingClientRect(),d=this.hasBars();!r.globals.comboCharts&&!d||r.config.xaxis.convertedCatToNumeric||(l=o/r.globals.dataPoints);var g=a-c.left-r.globals.barPadForNumericAxis,u=s-c.top;g<0||u<0||g>r.globals.gridWidth||u>r.globals.gridHeight?(e.classList.remove("hovering-zoom"),e.classList.remove("hovering-pan")):r.globals.zoomEnabled?(e.classList.remove("hovering-pan"),e.classList.add("hovering-zoom")):r.globals.panEnabled&&(e.classList.remove("hovering-zoom"),e.classList.add("hovering-pan"));var p=Math.round(g/l),x=Math.floor(u/h);d&&!r.config.xaxis.convertedCatToNumeric&&(p=Math.ceil(g/l),p-=1);for(var b,m=null,v=null,y=[],w=0;w1?r=this.getFirstActiveXArray(i):o=0;var l=a[r][0],h=i[r][0],c=Math.abs(t-h),d=Math.abs(e-l),g=d+c;return a.map((function(s,r){s.map((function(s,l){var h=Math.abs(e-a[r][l]),u=Math.abs(t-i[r][l]),f=u+h;f0?e:-1})),a=0;a0)for(var a=0;a0}},{key:"getElBars",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-boxPlot-series, .apexcharts-rangebar-series")}},{key:"hasBars",value:function(){return this.getElBars().length>0}},{key:"getHoverMarkerSize",value:function(t){var e=this.w,i=e.config.markers.hover.size;return void 0===i&&(i=e.globals.markers.size[t]+e.config.markers.hover.sizeOffset),i}},{key:"toggleAllTooltipSeriesGroups",value:function(t){var e=this.w,i=this.ttCtx;0===i.allTooltipSeriesGroups.length&&(i.allTooltipSeriesGroups=e.globals.dom.baseEl.querySelectorAll(".apexcharts-tooltip-series-group"));for(var a=i.allTooltipSeriesGroups,s=0;s ').concat(i.attrs.name,""),e+="
".concat(i.val,"
")})),v.innerHTML=t+"",y.innerHTML=e+""};o?l.globals.seriesGoals[e][i]&&Array.isArray(l.globals.seriesGoals[e][i])?w():(v.innerHTML="",y.innerHTML=""):w()}else v.innerHTML="",y.innerHTML="";null!==p&&(a[e].querySelector(".apexcharts-tooltip-text-z-label").innerHTML=l.config.tooltip.z.title,a[e].querySelector(".apexcharts-tooltip-text-z-value").innerHTML=void 0!==p?p:"");o&&x[0]&&(null==c||l.globals.collapsedSeriesIndices.indexOf(e)>-1?x[0].parentNode.style.display="none":x[0].parentNode.style.display=l.config.tooltip.items.display)}},{key:"toggleActiveInactiveSeries",value:function(t){var e=this.w;if(t)this.tooltipUtil.toggleAllTooltipSeriesGroups("enable");else{this.tooltipUtil.toggleAllTooltipSeriesGroups("disable");var i=e.globals.dom.baseEl.querySelector(".apexcharts-tooltip-series-group");i&&(i.classList.add("apexcharts-active"),i.style.display=e.config.tooltip.items.display)}}},{key:"getValuesToPrint",value:function(t){var e=t.i,i=t.j,a=this.w,s=this.ctx.series.filteredSeriesX(),r="",o="",n=null,l=null,h={series:a.globals.series,seriesIndex:e,dataPointIndex:i,w:a},c=a.globals.ttZFormatter;null===i?l=a.globals.series[e]:a.globals.isXNumeric&&"treemap"!==a.config.chart.type?(r=s[e][i],0===s[e].length&&(r=s[this.tooltipUtil.getFirstActiveXArray(s)][i])):r=void 0!==a.globals.labels[i]?a.globals.labels[i]:"";var d=r;a.globals.isXNumeric&&"datetime"===a.config.xaxis.type?r=new W(this.ctx).xLabelFormat(a.globals.ttKeyFormatter,d,d,{i:void 0,dateFormatter:new Y(this.ctx).formatDate,w:this.w}):r=a.globals.isBarHorizontal?a.globals.yLabelFormatters[0](d,h):a.globals.xLabelFormatter(d,h);return void 0!==a.config.tooltip.x.formatter&&(r=a.globals.ttKeyFormatter(d,h)),a.globals.seriesZ.length>0&&a.globals.seriesZ[e].length>0&&(n=c(a.globals.seriesZ[e][i],a)),o="function"==typeof a.config.xaxis.tooltip.formatter?a.globals.xaxisTooltipFormatter(d,h):r,{val:Array.isArray(l)?l.join(" "):l,xVal:Array.isArray(r)?r.join(" "):r,xAxisTTVal:Array.isArray(o)?o.join(" "):o,zVal:n}}},{key:"handleCustomTooltip",value:function(t){var e=t.i,i=t.j,a=t.y1,s=t.y2,r=t.w,o=this.ttCtx.getElTooltip(),n=r.config.tooltip.custom;Array.isArray(n)&&n[e]&&(n=n[e]),o.innerHTML=n({ctx:this.ctx,series:r.globals.series,seriesIndex:e,dataPointIndex:i,y1:a,y2:s,w:r})}}]),t}(),ut=function(){function t(i){e(this,t),this.ttCtx=i,this.ctx=i.ctx,this.w=i.w}return a(t,[{key:"moveXCrosshairs",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.ttCtx,a=this.w,s=i.getElXCrosshairs(),r=t-i.xcrosshairsWidth/2,o=a.globals.labels.slice().length;if(null!==e&&(r=a.globals.gridWidth/o*e),null!==s&&(s.setAttribute("x",r),s.setAttribute("x1",r),s.setAttribute("x2",r),s.setAttribute("y2",a.globals.gridHeight),s.classList.add("apexcharts-active")),r<0&&(r=0),r>a.globals.gridWidth&&(r=a.globals.gridWidth),i.blxaxisTooltip){var n=r;"tickWidth"!==a.config.xaxis.crosshairs.width&&"barWidth"!==a.config.xaxis.crosshairs.width||(n=r+i.xcrosshairsWidth/2),this.moveXAxisTooltip(n)}}},{key:"moveYCrosshairs",value:function(t){var e=this.ttCtx;null!==e.ycrosshairs&&b.setAttrs(e.ycrosshairs,{y1:t,y2:t}),null!==e.ycrosshairsHidden&&b.setAttrs(e.ycrosshairsHidden,{y1:t,y2:t})}},{key:"moveXAxisTooltip",value:function(t){var e=this.w,i=this.ttCtx;if(null!==i.xaxisTooltip){i.xaxisTooltip.classList.add("apexcharts-active");var a=i.xaxisOffY+e.config.xaxis.tooltip.offsetY+e.globals.translateY+1+e.config.xaxis.offsetY;if(t-=i.xaxisTooltip.getBoundingClientRect().width/2,!isNaN(t)){t+=e.globals.translateX;var s;s=new b(this.ctx).getTextRects(i.xaxisTooltipText.innerHTML),i.xaxisTooltipText.style.minWidth=s.width+"px",i.xaxisTooltip.style.left=t+"px",i.xaxisTooltip.style.top=a+"px"}}}},{key:"moveYAxisTooltip",value:function(t){var e=this.w,i=this.ttCtx;null===i.yaxisTTEls&&(i.yaxisTTEls=e.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));var a=parseInt(i.ycrosshairsHidden.getAttribute("y1"),10),s=e.globals.translateY+a,r=i.yaxisTTEls[t].getBoundingClientRect().height,o=e.globals.translateYAxisX[t]-2;e.config.yaxis[t].opposite&&(o-=26),s-=r/2,-1===e.globals.ignoreYAxisIndexes.indexOf(t)?(i.yaxisTTEls[t].classList.add("apexcharts-active"),i.yaxisTTEls[t].style.top=s+"px",i.yaxisTTEls[t].style.left=o+e.config.yaxis[t].tooltip.offsetX+"px"):i.yaxisTTEls[t].classList.remove("apexcharts-active")}},{key:"moveTooltip",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=this.w,s=this.ttCtx,r=s.getElTooltip(),o=s.tooltipRect,n=null!==i?parseFloat(i):1,l=parseFloat(t)+n+5,h=parseFloat(e)+n/2;if(l>a.globals.gridWidth/2&&(l=l-o.ttWidth-n-15),l>a.globals.gridWidth-o.ttWidth-10&&(l=a.globals.gridWidth-o.ttWidth),l<-20&&(l=-20),a.config.tooltip.followCursor){var c=s.getElGrid(),d=c.getBoundingClientRect();h=s.e.clientY+a.globals.translateY-d.top-o.ttHeight/2}else a.globals.isBarHorizontal?h-=o.ttHeight:(o.ttHeight/2+h>a.globals.gridHeight&&(h=a.globals.gridHeight-o.ttHeight+a.globals.translateY),h<0&&(h=0));isNaN(l)||(l+=a.globals.translateX,r.style.left=l+"px",r.style.top=h+"px")}},{key:"moveMarkers",value:function(t,e){var i=this.w,a=this.ttCtx;if(i.globals.markers.size[t]>0)for(var s=i.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(t,"'] .apexcharts-marker")),r=0;r0&&(h.setAttribute("r",n),h.setAttribute("cx",i),h.setAttribute("cy",a)),this.moveXCrosshairs(i),r.fixedTooltip||this.moveTooltip(i,a,n)}}},{key:"moveDynamicPointsOnHover",value:function(t){var e,i=this.ttCtx,a=i.w,s=0,r=0,o=a.globals.pointsArray;e=new M(this.ctx).getActiveConfigSeriesIndex(!0);var n=i.tooltipUtil.getHoverMarkerSize(e);o[e]&&(s=o[e][t][0],r=o[e][t][1]);var l=i.tooltipUtil.getAllMarkers();if(null!==l)for(var h=0;h0?(l[h]&&l[h].setAttribute("r",n),l[h]&&l[h].setAttribute("cy",d)):l[h]&&l[h].setAttribute("r",0)}}if(this.moveXCrosshairs(s),!i.fixedTooltip){var g=r||a.globals.gridHeight;this.moveTooltip(s,g,n)}}},{key:"moveStickyTooltipOverBars",value:function(t){var e=this.w,i=this.ttCtx,a=e.globals.columnSeries?e.globals.columnSeries.length:e.globals.series.length,s=a>=2&&a%2==0?Math.floor(a/2):Math.floor(a/2)+1;e.globals.isBarHorizontal&&(s=new M(this.ctx).getActiveConfigSeriesIndex(!1,"desc")+1);var r=e.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(s,"'] path[j='").concat(t,"'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(s,"'] path[j='").concat(t,"'], .apexcharts-boxPlot-series .apexcharts-series[rel='").concat(s,"'] path[j='").concat(t,"'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(s,"'] path[j='").concat(t,"']")),o=r?parseFloat(r.getAttribute("cx")):0,n=r?parseFloat(r.getAttribute("cy")):0,l=r?parseFloat(r.getAttribute("barWidth")):0,h=r?parseFloat(r.getAttribute("barHeight")):0,c=i.getElGrid().getBoundingClientRect();if(e.globals.isXNumeric?(o-=a%2!=0?l/2:0,r&&(r.classList.contains("apexcharts-candlestick-area")||r.classList.contains("apexcharts-boxPlot-area"))&&e.globals.comboCharts&&(o-=l/2)):e.globals.isBarHorizontal||(o=i.xAxisTicksPositions[t-1]+i.dataPointsDividedWidth/2,isNaN(o)&&(o=i.xAxisTicksPositions[t]-i.dataPointsDividedWidth/2)),e.globals.isBarHorizontal?n+=h/3:n=i.e.clientY-c.top-i.tooltipRect.ttHeight/2,e.globals.isBarHorizontal||this.moveXCrosshairs(o),!i.fixedTooltip){var d=n||e.globals.gridHeight;this.moveTooltip(o,d)}}}]),t}(),ft=function(){function t(i){e(this,t),this.w=i.w,this.ttCtx=i,this.ctx=i.ctx,this.tooltipPosition=new ut(i)}return a(t,[{key:"drawDynamicPoints",value:function(){var t=this.w,e=new b(this.ctx),i=new P(this.ctx),a=t.globals.dom.baseEl.querySelectorAll(".apexcharts-series");a=g(a),t.config.chart.stacked&&a.sort((function(t,e){return parseFloat(t.getAttribute("data:realIndex"))-parseFloat(e.getAttribute("data:realIndex"))}));for(var s=0;s2&&void 0!==arguments[2]?arguments[2]:null,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,s=this.w;"bubble"!==s.config.chart.type&&this.newPointSize(t,e);var r=e.getAttribute("cx"),o=e.getAttribute("cy");if(null!==i&&null!==a&&(r=i,o=a),this.tooltipPosition.moveXCrosshairs(r),!this.fixedTooltip){if("radar"===s.config.chart.type){var n=this.ttCtx.getElGrid(),l=n.getBoundingClientRect();r=this.ttCtx.e.clientX-l.left}this.tooltipPosition.moveTooltip(r,o,s.config.markers.hover.size)}}},{key:"enlargePoints",value:function(t){for(var e=this.w,i=this,a=this.ttCtx,s=t,r=e.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),o=e.config.markers.hover.size,n=0;n=0?t[e].setAttribute("r",i):t[e].setAttribute("r",0)}}}]),t}(),pt=function(){function t(i){e(this,t),this.w=i.w,this.ttCtx=i}return a(t,[{key:"getAttr",value:function(t,e){return parseFloat(t.target.getAttribute(e))}},{key:"handleHeatTreeTooltip",value:function(t){var e=t.e,i=t.opt,a=t.x,s=t.y,r=t.type,o=this.ttCtx,n=this.w;if(e.target.classList.contains("apexcharts-".concat(r,"-rect"))){var l=this.getAttr(e,"i"),h=this.getAttr(e,"j"),c=this.getAttr(e,"cx"),d=this.getAttr(e,"cy"),g=this.getAttr(e,"width"),u=this.getAttr(e,"height");if(o.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:l,j:h,shared:!1,e:e}),n.globals.capturedSeriesIndex=l,n.globals.capturedDataPointIndex=h,a=c+o.tooltipRect.ttWidth/2+g,s=d+o.tooltipRect.ttHeight/2-u/2,o.tooltipPosition.moveXCrosshairs(c+g/2),a>n.globals.gridWidth/2&&(a=c-o.tooltipRect.ttWidth/2+g),o.w.config.tooltip.followCursor){var f=n.globals.dom.elWrap.getBoundingClientRect();a=n.globals.clientX-f.left-o.tooltipRect.ttWidth/2,s=n.globals.clientY-f.top-o.tooltipRect.ttHeight-5}}return{x:a,y:s}}},{key:"handleMarkerTooltip",value:function(t){var e,i,a=t.e,s=t.opt,r=t.x,o=t.y,n=this.w,l=this.ttCtx;if(a.target.classList.contains("apexcharts-marker")){var h=parseInt(s.paths.getAttribute("cx"),10),c=parseInt(s.paths.getAttribute("cy"),10),d=parseFloat(s.paths.getAttribute("val"));if(i=parseInt(s.paths.getAttribute("rel"),10),e=parseInt(s.paths.parentNode.parentNode.parentNode.getAttribute("rel"),10)-1,l.intersect){var g=f.findAncestor(s.paths,"apexcharts-series");g&&(e=parseInt(g.getAttribute("data:realIndex"),10))}if(l.tooltipLabels.drawSeriesTexts({ttItems:s.ttItems,i:e,j:i,shared:!l.showOnIntersect&&n.config.tooltip.shared,e:a}),"mouseup"===a.type&&l.markerClick(a,e,i),n.globals.capturedSeriesIndex=e,n.globals.capturedDataPointIndex=i,r=h,o=c+n.globals.translateY-1.4*l.tooltipRect.ttHeight,l.w.config.tooltip.followCursor){var u=l.getElGrid().getBoundingClientRect();o=l.e.clientY+n.globals.translateY-u.top}d<0&&(o=c),l.marker.enlargeCurrentPoint(i,s.paths,r,o)}return{x:r,y:o}}},{key:"handleBarTooltip",value:function(t){var e,i,a=t.e,s=t.opt,r=this.w,o=this.ttCtx,n=o.getElTooltip(),l=0,h=0,c=0,d=this.getBarTooltipXY({e:a,opt:s});e=d.i;var g=d.barHeight,u=d.j;r.globals.capturedSeriesIndex=e,r.globals.capturedDataPointIndex=u,r.globals.isBarHorizontal&&o.tooltipUtil.hasBars()||!r.config.tooltip.shared?(h=d.x,c=d.y,i=Array.isArray(r.config.stroke.width)?r.config.stroke.width[e]:r.config.stroke.width,l=h):r.globals.comboCharts||r.config.tooltip.shared||(l/=2),isNaN(c)?c=r.globals.svgHeight-o.tooltipRect.ttHeight:c<0&&(c=0);var f=parseInt(s.paths.parentNode.getAttribute("data:realIndex"),10),p=r.globals.isMultipleYAxis?r.config.yaxis[f]&&r.config.yaxis[f].reversed:r.config.yaxis[0].reversed;if(h+o.tooltipRect.ttWidth>r.globals.gridWidth&&!p?h-=o.tooltipRect.ttWidth:h<0&&(h=0),o.w.config.tooltip.followCursor){var x=o.getElGrid().getBoundingClientRect();c=o.e.clientY-x.top}null===o.tooltip&&(o.tooltip=r.globals.dom.baseEl.querySelector(".apexcharts-tooltip")),r.config.tooltip.shared||(r.globals.comboBarCount>0?o.tooltipPosition.moveXCrosshairs(l+i/2):o.tooltipPosition.moveXCrosshairs(l)),!o.fixedTooltip&&(!r.config.tooltip.shared||r.globals.isBarHorizontal&&o.tooltipUtil.hasBars())&&(p&&(h-=o.tooltipRect.ttWidth)<0&&(h=0),n.style.left=h+r.globals.translateX+"px",!p||r.globals.isBarHorizontal&&o.tooltipUtil.hasBars()||(c=c+g-2*(r.globals.series[e][u]<0?g:0)),o.tooltipRect.ttHeight+c>r.globals.gridHeight?(c=r.globals.gridHeight-o.tooltipRect.ttHeight+r.globals.translateY,n.style.top=c+"px"):n.style.top=c+r.globals.translateY-o.tooltipRect.ttHeight/2+"px")}},{key:"getBarTooltipXY",value:function(t){var e=t.e,i=t.opt,a=this.w,s=null,r=this.ttCtx,o=0,n=0,l=0,h=0,c=0,d=e.target.classList;if(d.contains("apexcharts-bar-area")||d.contains("apexcharts-candlestick-area")||d.contains("apexcharts-boxPlot-area")||d.contains("apexcharts-rangebar-area")){var g=e.target,u=g.getBoundingClientRect(),f=i.elGrid.getBoundingClientRect(),p=u.height;c=u.height;var x=u.width,b=parseInt(g.getAttribute("cx"),10),m=parseInt(g.getAttribute("cy"),10);h=parseFloat(g.getAttribute("barWidth"));var v="touchmove"===e.type?e.touches[0].clientX:e.clientX;s=parseInt(g.getAttribute("j"),10),o=parseInt(g.parentNode.getAttribute("rel"),10)-1;var y=g.getAttribute("data-range-y1"),w=g.getAttribute("data-range-y2");a.globals.comboCharts&&(o=parseInt(g.parentNode.getAttribute("data:realIndex"),10)),r.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:o,j:s,y1:y?parseInt(y,10):null,y2:w?parseInt(w,10):null,shared:!r.showOnIntersect&&a.config.tooltip.shared,e:e}),a.config.tooltip.followCursor?a.globals.isBarHorizontal?(n=v-f.left+15,l=m-r.dataPointsDividedHeight+p/2-r.tooltipRect.ttHeight/2):(n=a.globals.isXNumeric?b-x/2:b-r.dataPointsDividedWidth+x/2,l=e.clientY-f.top-r.tooltipRect.ttHeight/2-15):a.globals.isBarHorizontal?((n=b)0&&i.setAttribute("width",e.xcrosshairsWidth)}},{key:"handleYCrosshair",value:function(){var t=this.w,e=this.ttCtx;e.ycrosshairs=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs"),e.ycrosshairsHidden=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs-hidden")}},{key:"drawYaxisTooltipText",value:function(t,e,i){var a=this.ttCtx,s=this.w,r=s.globals.yLabelFormatters[t];if(a.yaxisTooltips[t]){var o=a.getElGrid().getBoundingClientRect(),n=(e-o.top)*i.yRatio[t],l=s.globals.maxYArr[t]-s.globals.minYArr[t],h=s.globals.minYArr[t]+(l-n);a.tooltipPosition.moveYCrosshairs(e-o.top),a.yaxisTooltipText[t].innerHTML=r(h),a.tooltipPosition.moveYAxisTooltip(t)}}}]),t}(),bt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var a=this.w;this.tConfig=a.config.tooltip,this.tooltipUtil=new dt(this),this.tooltipLabels=new gt(this),this.tooltipPosition=new ut(this),this.marker=new ft(this),this.intersect=new pt(this),this.axesTooltip=new xt(this),this.showOnIntersect=this.tConfig.intersect,this.showTooltipTitle=this.tConfig.x.show,this.fixedTooltip=this.tConfig.fixed.enabled,this.xaxisTooltip=null,this.yaxisTTEls=null,this.isBarShared=!a.globals.isBarHorizontal&&this.tConfig.shared}return a(t,[{key:"getElTooltip",value:function(t){return t||(t=this),t.w.globals.dom.baseEl.querySelector(".apexcharts-tooltip")}},{key:"getElXCrosshairs",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-xcrosshairs")}},{key:"getElGrid",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-grid")}},{key:"drawTooltip",value:function(t){var e=this.w;this.xyRatios=t,this.blxaxisTooltip=e.config.xaxis.tooltip.enabled&&e.globals.axisCharts,this.yaxisTooltips=e.config.yaxis.map((function(t,i){return!!(t.show&&t.tooltip.enabled&&e.globals.axisCharts)})),this.allTooltipSeriesGroups=[],e.globals.axisCharts||(this.showTooltipTitle=!1);var i=document.createElement("div");if(i.classList.add("apexcharts-tooltip"),i.classList.add("apexcharts-theme-".concat(this.tConfig.theme)),e.globals.dom.elWrap.appendChild(i),e.globals.axisCharts){this.axesTooltip.drawXaxisTooltip(),this.axesTooltip.drawYaxisTooltip(),this.axesTooltip.setXCrosshairWidth(),this.axesTooltip.handleYCrosshair();var a=new G(this.ctx);this.xAxisTicksPositions=a.getXAxisTicksPositions()}if(!e.globals.comboCharts&&!this.tConfig.intersect&&"rangeBar"!==e.config.chart.type||this.tConfig.shared||(this.showOnIntersect=!0),0!==e.config.markers.size&&0!==e.globals.markers.largestSize||this.marker.drawDynamicPoints(this),e.globals.collapsedSeries.length!==e.globals.series.length){this.dataPointsDividedHeight=e.globals.gridHeight/e.globals.dataPoints,this.dataPointsDividedWidth=e.globals.gridWidth/e.globals.dataPoints,this.showTooltipTitle&&(this.tooltipTitle=document.createElement("div"),this.tooltipTitle.classList.add("apexcharts-tooltip-title"),this.tooltipTitle.style.fontFamily=this.tConfig.style.fontFamily||e.config.chart.fontFamily,this.tooltipTitle.style.fontSize=this.tConfig.style.fontSize,i.appendChild(this.tooltipTitle));var s=e.globals.series.length;(e.globals.xyCharts||e.globals.comboCharts)&&this.tConfig.shared&&(s=this.showOnIntersect?1:e.globals.series.length),this.legendLabels=e.globals.dom.baseEl.querySelectorAll(".apexcharts-legend-text"),this.ttItems=this.createTTElements(s),this.addSVGEvents()}}},{key:"createTTElements",value:function(t){for(var e=this,i=this.w,a=[],s=this.getElTooltip(),r=function(r){var o=document.createElement("div");o.classList.add("apexcharts-tooltip-series-group"),o.style.order=i.config.tooltip.inverseOrder?t-r:r+1,e.tConfig.shared&&e.tConfig.enabledOnSeries&&Array.isArray(e.tConfig.enabledOnSeries)&&e.tConfig.enabledOnSeries.indexOf(r)<0&&o.classList.add("apexcharts-tooltip-series-group-hidden");var n=document.createElement("span");n.classList.add("apexcharts-tooltip-marker"),n.style.backgroundColor=i.globals.colors[r],o.appendChild(n);var l=document.createElement("div");l.classList.add("apexcharts-tooltip-text"),l.style.fontFamily=e.tConfig.style.fontFamily||i.config.chart.fontFamily,l.style.fontSize=e.tConfig.style.fontSize,["y","goals","z"].forEach((function(t){var e=document.createElement("div");e.classList.add("apexcharts-tooltip-".concat(t,"-group"));var i=document.createElement("span");i.classList.add("apexcharts-tooltip-text-".concat(t,"-label")),e.appendChild(i);var a=document.createElement("span");a.classList.add("apexcharts-tooltip-text-".concat(t,"-value")),e.appendChild(a),l.appendChild(e)})),o.appendChild(l),s.appendChild(o),a.push(o)},o=0;o0&&this.addPathsEventListeners(u,c),this.tooltipUtil.hasBars()&&!this.tConfig.shared&&this.addDatapointEventsListeners(c)}}},{key:"drawFixedTooltipRect",value:function(){var t=this.w,e=this.getElTooltip(),i=e.getBoundingClientRect(),a=i.width+10,s=i.height+10,r=this.tConfig.fixed.offsetX,o=this.tConfig.fixed.offsetY,n=this.tConfig.fixed.position.toLowerCase();return n.indexOf("right")>-1&&(r=r+t.globals.svgWidth-a+10),n.indexOf("bottom")>-1&&(o=o+t.globals.svgHeight-s-10),e.style.left=r+"px",e.style.top=o+"px",{x:r,y:o,ttWidth:a,ttHeight:s}}},{key:"addDatapointEventsListeners",value:function(t){var e=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers .apexcharts-marker, .apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-boxPlot-area, .apexcharts-rangebar-area");this.addPathsEventListeners(e,t)}},{key:"addPathsEventListeners",value:function(t,e){for(var i=this,a=function(a){var s={paths:t[a],tooltipEl:e.tooltipEl,tooltipY:e.tooltipY,tooltipX:e.tooltipX,elGrid:e.elGrid,hoverArea:e.hoverArea,ttItems:e.ttItems};["mousemove","mouseup","touchmove","mouseout","touchend"].map((function(e){return t[a].addEventListener(e,i.seriesHover.bind(i,s),{capture:!1,passive:!0})}))},s=0;so.top+o.height)this.handleMouseOut(s);else{if(Array.isArray(this.tConfig.enabledOnSeries)&&!r.config.tooltip.shared){var h=parseInt(s.paths.getAttribute("index"),10);if(this.tConfig.enabledOnSeries.indexOf(h)<0)return void this.handleMouseOut(s)}var c=this.getElTooltip(),d=this.getElXCrosshairs(),g=r.globals.xyCharts||"bar"===r.config.chart.type&&!r.globals.isBarHorizontal&&this.tooltipUtil.hasBars()&&this.tConfig.shared||r.globals.comboCharts&&this.tooltipUtil.hasBars();if("mousemove"===a.type||"touchmove"===a.type||"mouseup"===a.type){null!==d&&d.classList.add("apexcharts-active");var u=this.yaxisTooltips.filter((function(t){return!0===t}));if(null!==this.ycrosshairs&&u.length&&this.ycrosshairs.classList.add("apexcharts-active"),g&&!this.showOnIntersect)this.handleStickyTooltip(a,n,l,s);else if("heatmap"===r.config.chart.type||"treemap"===r.config.chart.type){var f=this.intersect.handleHeatTreeTooltip({e:a,opt:s,x:e,y:i,type:r.config.chart.type});e=f.x,i=f.y,c.style.left=e+"px",c.style.top=i+"px"}else this.tooltipUtil.hasBars()&&this.intersect.handleBarTooltip({e:a,opt:s}),this.tooltipUtil.hasMarkers()&&this.intersect.handleMarkerTooltip({e:a,opt:s,x:e,y:i});if(this.yaxisTooltips.length)for(var p=0;ps.globals.gridWidth?this.handleMouseOut(a):null!==n?this.handleStickyCapturedSeries(t,n,a,o):(this.tooltipUtil.isXoverlap(o)||s.globals.isBarHorizontal)&&this.create(t,this,0,o,a.ttItems)}},{key:"handleStickyCapturedSeries",value:function(t,e,i,a){var s=this.w;null===s.globals.series[e][a]?this.handleMouseOut(i):void 0!==s.globals.series[e][a]?this.tConfig.shared&&this.tooltipUtil.isXoverlap(a)&&this.tooltipUtil.isInitialSeriesSameLen()?this.create(t,this,e,a,i.ttItems):this.create(t,this,e,a,i.ttItems,!1):this.tooltipUtil.isXoverlap(a)&&this.create(t,this,0,a,i.ttItems)}},{key:"deactivateHoverFilter",value:function(){for(var t=this.w,e=new b(this.ctx),i=t.globals.dom.Paper.select(".apexcharts-bar-area"),a=0;a5&&void 0!==arguments[5]?arguments[5]:null,o=this.w,n=e;"mouseup"===t.type&&this.markerClick(t,i,a),null===r&&(r=this.tConfig.shared);var l=this.tooltipUtil.hasMarkers(),h=this.tooltipUtil.getElBars();if(o.config.legend.tooltipHoverFormatter){var c=o.config.legend.tooltipHoverFormatter,d=Array.from(this.legendLabels);d.forEach((function(t){var e=t.getAttribute("data:default-text");t.innerHTML=decodeURIComponent(e)}));for(var g=0;g0?n.marker.enlargePoints(a):n.tooltipPosition.moveDynamicPointsOnHover(a)),this.tooltipUtil.hasBars()&&(this.barSeriesHeight=this.tooltipUtil.getBarsHeight(h),this.barSeriesHeight>0)){var m=new b(this.ctx),v=o.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(a,"']"));this.deactivateHoverFilter(),this.tooltipPosition.moveStickyTooltipOverBars(a);for(var y=0;y0&&(this.totalItems+=t[r].length);for(var n=this.graphics.group({class:"apexcharts-bar-series apexcharts-plot-series"}),l=0,h=0,c=function(s,r){var c=void 0,d=void 0,g=void 0,u=void 0,p=[],x=[],b=a.globals.comboCharts?e[s]:s;i.yRatio.length>1&&(i.yaxisIndex=b),i.isReversed=a.config.yaxis[i.yaxisIndex]&&a.config.yaxis[i.yaxisIndex].reversed;var m=i.graphics.group({class:"apexcharts-series",seriesName:f.escapeString(a.globals.seriesNames[b]),rel:s+1,"data:realIndex":b});i.ctx.series.addCollapsedClassToSeries(m,b);var v=i.graphics.group({class:"apexcharts-datalabels","data:realIndex":b}),y=0,w=0,k=i.initialPositions(l,h,c,d,g,u);h=k.y,y=k.barHeight,d=k.yDivision,u=k.zeroW,l=k.x,w=k.barWidth,c=k.xDivision,g=k.zeroH,i.yArrj=[],i.yArrjF=[],i.yArrjVal=[],i.xArrj=[],i.xArrjF=[],i.xArrjVal=[],1===i.prevY.length&&i.prevY[0].every((function(t){return isNaN(t)}))&&(i.prevY[0]=i.prevY[0].map((function(t){return g})),i.prevYF[0]=i.prevYF[0].map((function(t){return 0})));for(var A=0;A1?(i=l.globals.minXDiff/this.xRatio)*parseInt(this.barOptions.columnWidth,10)/100:n*parseInt(l.config.plotOptions.bar.columnWidth,10)/100,s=this.baseLineY[this.yaxisIndex]+(this.isReversed?l.globals.gridHeight:0)-(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),t=l.globals.padHorizontal+(i-n)/2),{x:t,y:e,yDivision:a,xDivision:i,barHeight:o,barWidth:n,zeroH:s,zeroW:r}}},{key:"drawStackedBarPaths",value:function(t){for(var e,i=t.indexes,a=t.barHeight,s=t.strokeWidth,r=t.zeroW,o=t.x,n=t.y,l=t.yDivision,h=t.elSeries,c=this.w,d=n,g=i.i,u=i.j,f=0,p=0;p0){var x=r;this.prevXVal[g-1][u]<0?x=this.series[g][u]>=0?this.prevX[g-1][u]+f-2*(this.isReversed?f:0):this.prevX[g-1][u]:this.prevXVal[g-1][u]>=0&&(x=this.series[g][u]>=0?this.prevX[g-1][u]:this.prevX[g-1][u]-f+2*(this.isReversed?f:0)),e=x}else e=r;o=null===this.series[g][u]?e:e+this.series[g][u]/this.invertedYRatio-2*(this.isReversed?this.series[g][u]/this.invertedYRatio:0);var b=this.barHelpers.getBarpaths({barYPosition:d,barHeight:a,x1:e,x2:o,strokeWidth:s,series:this.series,realIndex:i.realIndex,i:g,j:u,w:c});return this.barHelpers.barBackground({j:u,i:g,y1:d,y2:a,elSeries:h}),n+=l,{pathTo:b.pathTo,pathFrom:b.pathFrom,x:o,y:n}}},{key:"drawStackedColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=t.y,s=t.xDivision,r=t.barWidth,o=t.zeroH,n=(t.strokeWidth,t.elSeries),l=this.w,h=e.i,c=e.j,d=e.bc;if(l.globals.isXNumeric){var g=l.globals.seriesX[h][c];g||(g=0),i=(g-l.globals.minX)/this.xRatio-r/2}for(var u,f=i,p=0,x=0;x0&&!l.globals.isXNumeric||h>0&&l.globals.isXNumeric&&l.globals.seriesX[h-1][c]===l.globals.seriesX[h][c]){var b,m,v=Math.min(this.yRatio.length+1,h+1);if(void 0!==this.prevY[h-1])for(var y=1;y=0?m-p+2*(this.isReversed?p:0):m;break}if(this.prevYVal[h-w][c]>=0){b=this.series[h][c]>=0?m:m+p-2*(this.isReversed?p:0);break}}void 0===b&&(b=l.globals.gridHeight),u=this.prevYF[0].every((function(t){return 0===t}))&&this.prevYF.slice(1,h).every((function(t){return t.every((function(t){return isNaN(t)}))}))?l.globals.gridHeight-o:b}else u=l.globals.gridHeight-o;a=u-this.series[h][c]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[h][c]/this.yRatio[this.yaxisIndex]:0);var k=this.barHelpers.getColumnPaths({barXPosition:f,barWidth:r,y1:u,y2:a,yRatio:this.yRatio[this.yaxisIndex],strokeWidth:this.strokeWidth,series:this.series,realIndex:e.realIndex,i:h,j:c,w:l});return this.barHelpers.barBackground({bc:d,j:c,i:h,x1:f,x2:r,elSeries:n}),i+=s,{pathTo:k.pathTo,pathFrom:k.pathFrom,x:l.globals.isXNumeric?i-s:i,y:a}}}]),s}(),vt=function(t){n(s,E);var i=d(s);function s(){return e(this,s),i.apply(this,arguments)}return a(s,[{key:"draw",value:function(t,e){var i=this,a=this.w,s=new b(this.ctx),r=new L(this.ctx);this.candlestickOptions=this.w.config.plotOptions.candlestick,this.boxOptions=this.w.config.plotOptions.boxPlot;var o=new y(this.ctx,a);t=o.getLogSeries(t),this.series=t,this.yRatio=o.getLogYRatios(this.yRatio),this.barHelpers.initVariables(t);for(var n=s.group({class:"apexcharts-".concat(a.config.chart.type,"-series apexcharts-plot-series")}),l=function(o){i.isBoxPlot="boxPlot"===a.config.chart.type||"boxPlot"===a.config.series[o].type;var l,h,c=void 0,d=void 0,g=[],u=[],p=a.globals.comboCharts?e[o]:o,x=s.group({class:"apexcharts-series",seriesName:f.escapeString(a.globals.seriesNames[p]),rel:o+1,"data:realIndex":p});t[o].length>0&&(i.visibleI=i.visibleI+1);var b,m;i.yRatio.length>1&&(i.yaxisIndex=p);var v=i.barHelpers.initialPositions();d=v.y,b=v.barHeight,c=v.x,m=v.barWidth,l=v.xDivision,h=v.zeroH,u.push(c+m/2);for(var y=s.group({class:"apexcharts-datalabels","data:realIndex":p}),w=function(e){var s=i.barHelpers.getStrokeWidth(o,e,p),n=i.drawBoxPaths({indexes:{i:o,j:e,realIndex:p},x:c,y:d,xDivision:l,barWidth:m,zeroH:h,strokeWidth:s,elSeries:x});d=n.y,c=n.x,e>0&&u.push(c+m/2),g.push(d),n.pathTo.forEach((function(l,h){var g=!i.isBoxPlot&&i.candlestickOptions.wick.useFillColor?n.color[h]:a.globals.stroke.colors[o],u=r.fillPath({seriesNumber:p,dataPointIndex:e,color:n.color[h],value:t[o][e]});i.renderSeries({realIndex:p,pathFill:u,lineFill:g,j:e,i:o,pathFrom:n.pathFrom,pathTo:l,strokeWidth:s,elSeries:x,x:c,y:d,series:t,barHeight:b,barWidth:m,elDataLabelsWrap:y,visibleSeries:i.visibleI,type:a.config.chart.type})}))},k=0;km.c&&(d=!1);var w=Math.min(m.o,m.c),k=Math.max(m.o,m.c),A=m.m;n.globals.isXNumeric&&(i=(n.globals.seriesX[x][c]-n.globals.minX)/this.xRatio-s/2);var S=i+s*this.visibleI;void 0===this.series[h][c]||null===this.series[h][c]?(w=r,k=r):(w=r-w/p,k=r-k/p,v=r-m.h/p,y=r-m.l/p,A=r-m.m/p);var C=l.move(S,r),L=l.move(S+s/2,w);return n.globals.previousPaths.length>0&&(L=this.getPreviousPath(x,c,!0)),C=this.isBoxPlot?[l.move(S,w)+l.line(S+s/2,w)+l.line(S+s/2,v)+l.line(S+s/4,v)+l.line(S+s-s/4,v)+l.line(S+s/2,v)+l.line(S+s/2,w)+l.line(S+s,w)+l.line(S+s,A)+l.line(S,A)+l.line(S,w+o/2),l.move(S,A)+l.line(S+s,A)+l.line(S+s,k)+l.line(S+s/2,k)+l.line(S+s/2,y)+l.line(S+s-s/4,y)+l.line(S+s/4,y)+l.line(S+s/2,y)+l.line(S+s/2,k)+l.line(S,k)+l.line(S,A)+"z"]:[l.move(S,k)+l.line(S+s/2,k)+l.line(S+s/2,v)+l.line(S+s/2,k)+l.line(S+s,k)+l.line(S+s,w)+l.line(S+s/2,w)+l.line(S+s/2,y)+l.line(S+s/2,w)+l.line(S,w)+l.line(S,k-o/2)],L+=l.move(S,w),n.globals.isXNumeric||(i+=a),{pathTo:C,pathFrom:L,x:i,y:k,barXPosition:S,color:this.isBoxPlot?f:d?[g]:[u]}}},{key:"getOHLCValue",value:function(t,e){var i=this.w;return{o:this.isBoxPlot?i.globals.seriesCandleH[t][e]:i.globals.seriesCandleO[t][e],h:this.isBoxPlot?i.globals.seriesCandleO[t][e]:i.globals.seriesCandleH[t][e],m:i.globals.seriesCandleM[t][e],l:this.isBoxPlot?i.globals.seriesCandleC[t][e]:i.globals.seriesCandleL[t][e],c:this.isBoxPlot?i.globals.seriesCandleL[t][e]:i.globals.seriesCandleC[t][e]}}}]),s}(),yt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"checkColorRange",value:function(){var t=this.w,e=!1,i=t.config.plotOptions[t.config.chart.type];return i.colorScale.ranges.length>0&&i.colorScale.ranges.map((function(t,i){t.from<=0&&(e=!0)})),e}},{key:"getShadeColor",value:function(t,e,i,a){var s=this.w,r=1,o=s.config.plotOptions[t].shadeIntensity,n=this.determineColor(t,e,i);s.globals.hasNegs||a?r=s.config.plotOptions[t].reverseNegativeShade?n.percent<0?n.percent/100*(1.25*o):(1-n.percent/100)*(1.25*o):n.percent<=0?1-(1+n.percent/100)*o:(1-n.percent/100)*o:(r=1-n.percent/100,"treemap"===t&&(r=(1-n.percent/100)*(1.25*o)));var l=n.color,h=new f;return s.config.plotOptions[t].enableShades&&(l="dark"===this.w.config.theme.mode?f.hexToRgba(h.shadeColor(-1*r,n.color),s.config.fill.opacity):f.hexToRgba(h.shadeColor(r,n.color),s.config.fill.opacity)),{color:l,colorProps:n}}},{key:"determineColor",value:function(t,e,i){var a=this.w,s=a.globals.series[e][i],r=a.config.plotOptions[t],o=r.colorScale.inverse?i:e;a.config.plotOptions[t].distributed&&(o=i);var n=a.globals.colors[o],l=null,h=Math.min.apply(Math,g(a.globals.series[e])),c=Math.max.apply(Math,g(a.globals.series[e]));r.distributed||"heatmap"!==t||(h=a.globals.minY,c=a.globals.maxY),void 0!==r.colorScale.min&&(h=r.colorScale.mina.globals.maxY?r.colorScale.max:a.globals.maxY);var d=Math.abs(c)+Math.abs(h),u=100*s/(0===d?d-1e-6:d);r.colorScale.ranges.length>0&&r.colorScale.ranges.map((function(t,e){if(s>=t.from&&s<=t.to){n=t.color,l=t.foreColor?t.foreColor:null,h=t.from,c=t.to;var i=Math.abs(c)+Math.abs(h);u=100*s/(0===i?i-1e-6:i)}}));return{color:n,foreColor:l,percent:u}}},{key:"calculateDataLabels",value:function(t){var e=t.text,i=t.x,a=t.y,s=t.i,r=t.j,o=t.colorProps,n=t.fontSize,l=this.w.config.dataLabels,h=new b(this.ctx),c=new z(this.ctx),d=null;if(l.enabled){d=h.group({class:"apexcharts-data-labels"});var g=l.offsetX,u=l.offsetY,f=i+g,p=a+parseFloat(l.style.fontSize)/3+u;c.plotDataLabelsText({x:f,y:p,text:e,i:s,j:r,color:o.foreColor,parent:d,fontSize:n,dataLabelsConfig:l})}return d}},{key:"addListeners",value:function(t){var e=new b(this.ctx);t.node.addEventListener("mouseenter",e.pathMouseEnter.bind(this,t)),t.node.addEventListener("mouseleave",e.pathMouseLeave.bind(this,t)),t.node.addEventListener("mousedown",e.pathMouseDown.bind(this,t))}}]),t}(),wt=function(){function t(i,a){e(this,t),this.ctx=i,this.w=i.w,this.xRatio=a.xRatio,this.yRatio=a.yRatio,this.dynamicAnim=this.w.config.chart.animations.dynamicAnimation,this.helpers=new yt(i),this.rectRadius=this.w.config.plotOptions.heatmap.radius,this.strokeWidth=this.w.config.stroke.show?this.w.config.stroke.width:0}return a(t,[{key:"draw",value:function(t){var e=this.w,i=new b(this.ctx),a=i.group({class:"apexcharts-heatmap"});a.attr("clip-path","url(#gridRectMask".concat(e.globals.cuid,")"));var s=e.globals.gridWidth/e.globals.dataPoints,r=e.globals.gridHeight/e.globals.series.length,o=0,n=!1;this.negRange=this.helpers.checkColorRange();var l=t.slice();e.config.yaxis[0].reversed&&(n=!0,l.reverse());for(var h=n?0:l.length-1;n?h=0;n?h++:h--){var c=i.group({class:"apexcharts-series apexcharts-heatmap-series",seriesName:f.escapeString(e.globals.seriesNames[h]),rel:h+1,"data:realIndex":h});if(this.ctx.series.addCollapsedClassToSeries(c,h),e.config.chart.dropShadow.enabled){var d=e.config.chart.dropShadow;new x(this.ctx).dropShadow(c,d,h)}for(var g=0,u=e.config.plotOptions.heatmap.shadeIntensity,p=0;p-1&&this.pieClicked(d),i.config.dataLabels.enabled){var A=w.x,S=w.y,C=100*u/this.fullAngle+"%";if(0!==u&&i.config.plotOptions.pie.dataLabels.minAngleToShowLabelthis.fullAngle?e.endAngle=e.endAngle-(a+o):a+o=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle&&(n=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle-.01),Math.ceil(n)>this.fullAngle&&(n-=this.fullAngle);var l=Math.PI*(n-90)/180,h=e.centerX+s*Math.cos(o),c=e.centerY+s*Math.sin(o),d=e.centerX+s*Math.cos(l),g=e.centerY+s*Math.sin(l),u=f.polarToCartesian(e.centerX,e.centerY,e.donutSize,n),p=f.polarToCartesian(e.centerX,e.centerY,e.donutSize,r),x=a>180?1:0,b=["M",h,c,"A",s,s,0,x,1,d,g];return"donut"===e.chartType?[].concat(b,["L",u.x,u.y,"A",e.donutSize,e.donutSize,0,x,0,p.x,p.y,"L",h,c,"z"]).join(" "):"pie"===e.chartType||"polarArea"===e.chartType?[].concat(b,["L",e.centerX,e.centerY,"L",h,c]).join(" "):[].concat(b).join(" ")}},{key:"drawPolarElements",value:function(t){var e=this.w,i=new j(this.ctx),a=new b(this.ctx),s=new kt(this.ctx),r=a.group(),o=a.group(),n=i.niceScale(0,Math.ceil(this.maxY),e.config.yaxis[0].tickAmount,0,!0),l=n.result.reverse(),h=n.result.length;this.maxY=n.niceMax;for(var c=e.globals.radialSize,d=c/(h-1),g=0;g1&&t.total.show&&(s=t.total.color);var o=r.globals.dom.baseEl.querySelector(".apexcharts-datalabel-label"),n=r.globals.dom.baseEl.querySelector(".apexcharts-datalabel-value");i=(0,t.value.formatter)(i,r),a||"function"!=typeof t.total.formatter||(i=t.total.formatter(r));var l=e===t.total.label;e=t.name.formatter(e,l,r),null!==o&&(o.textContent=e),null!==n&&(n.textContent=i),null!==o&&(o.style.fill=s)}},{key:"printDataLabelsInner",value:function(t,e){var i=this.w,a=t.getAttribute("data:value"),s=i.globals.seriesNames[parseInt(t.parentNode.getAttribute("rel"),10)-1];i.globals.series.length>1&&this.printInnerLabels(e,s,a,t);var r=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");null!==r&&(r.style.opacity=1)}},{key:"drawSpokes",value:function(t){var e=this,i=this.w,a=new b(this.ctx),s=i.config.plotOptions.polarArea.spokes;if(0!==s.strokeWidth){for(var r=[],o=360/i.globals.series.length,n=0;n1)o&&!e.total.showAlways?l({makeSliceOut:!1,printLabel:!0}):this.printInnerLabels(e,e.total.label,e.total.formatter(s));else if(l({makeSliceOut:!1,printLabel:!0}),!o)if(s.globals.selectedDataPoints.length&&s.globals.series.length>1)if(s.globals.selectedDataPoints[0].length>0){var h=s.globals.selectedDataPoints[0],c=s.globals.dom.baseEl.querySelector(".apexcharts-".concat(this.chartType.toLowerCase(),"-slice-").concat(h));this.printDataLabelsInner(c,e)}else r&&s.globals.selectedDataPoints.length&&0===s.globals.selectedDataPoints[0].length&&(r.style.opacity=0);else r&&s.globals.series.length>1&&(r.style.opacity=0)}}]),t}(),St=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animDur=0;var a=this.w;this.graphics=new b(this.ctx),this.lineColorArr=void 0!==a.globals.stroke.colors?a.globals.stroke.colors:a.globals.colors,this.defaultSize=a.globals.svgHeight0&&(b=e.getPreviousPath(n));for(var m=0;m=10?t.x>0?(i="start",a+=10):t.x<0&&(i="end",a-=10):i="middle",Math.abs(t.y)>=e-10&&(t.y<0?s-=10:t.y>0&&(s+=10)),{textAnchor:i,newX:a,newY:s}}},{key:"getPreviousPath",value:function(t){for(var e=this.w,i=null,a=0;a0&&parseInt(s.realIndex,10)===parseInt(t,10)&&void 0!==e.globals.previousPaths[a].paths[0]&&(i=e.globals.previousPaths[a].paths[0].d)}return i}},{key:"getDataPointsPos",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.dataPointsLen;t=t||[],e=e||[];for(var a=[],s=0;s=360&&(g=360-Math.abs(this.startAngle)-.1);var u=i.drawPath({d:"",stroke:c,strokeWidth:o*parseInt(h.strokeWidth,10)/100,fill:"none",strokeOpacity:h.opacity,classes:"apexcharts-radialbar-area"});if(h.dropShadow.enabled){var f=h.dropShadow;s.dropShadow(u,f)}l.add(u),u.attr("id","apexcharts-radialbarTrack-"+n),this.animatePaths(u,{centerX:t.centerX,centerY:t.centerY,endAngle:g,startAngle:d,size:t.size,i:n,totalItems:2,animBeginArr:0,dur:0,isTrack:!0,easing:e.globals.easing})}return a}},{key:"drawArcs",value:function(t){var e=this.w,i=new b(this.ctx),a=new L(this.ctx),s=new x(this.ctx),r=i.group(),o=this.getStrokeWidth(t);t.size=t.size-o/2;var n=e.config.plotOptions.radialBar.hollow.background,l=t.size-o*t.series.length-this.margin*t.series.length-o*parseInt(e.config.plotOptions.radialBar.track.strokeWidth,10)/100/2,h=l-e.config.plotOptions.radialBar.hollow.margin;void 0!==e.config.plotOptions.radialBar.hollow.image&&(n=this.drawHollowImage(t,r,l,n));var c=this.drawHollow({size:h,centerX:t.centerX,centerY:t.centerY,fill:n||"transparent"});if(e.config.plotOptions.radialBar.hollow.dropShadow.enabled){var d=e.config.plotOptions.radialBar.hollow.dropShadow;s.dropShadow(c,d)}var g=1;!this.radialDataLabels.total.show&&e.globals.series.length>1&&(g=0);var u=null;this.radialDataLabels.show&&(u=this.renderInnerDataLabels(this.radialDataLabels,{hollowSize:l,centerX:t.centerX,centerY:t.centerY,opacity:g})),"back"===e.config.plotOptions.radialBar.hollow.position&&(r.add(c),u&&r.add(u));var p=!1;e.config.plotOptions.radialBar.inverseOrder&&(p=!0);for(var m=p?t.series.length-1:0;p?m>=0:m100?100:t.series[m])/100,S=Math.round(this.totalAngle*A)+this.startAngle,C=void 0;e.globals.dataChanged&&(k=this.startAngle,C=Math.round(this.totalAngle*f.negToZero(e.globals.previousPaths[m])/100)+k),Math.abs(S)+Math.abs(w)>=360&&(S-=.01),Math.abs(C)+Math.abs(k)>=360&&(C-=.01);var P=S-w,T=Array.isArray(e.config.stroke.dashArray)?e.config.stroke.dashArray[m]:e.config.stroke.dashArray,z=i.drawPath({d:"",stroke:y,strokeWidth:o,fill:"none",fillOpacity:e.config.fill.opacity,classes:"apexcharts-radialbar-area apexcharts-radialbar-slice-"+m,strokeDashArray:T});if(b.setAttrs(z.node,{"data:angle":P,"data:value":t.series[m]}),e.config.chart.dropShadow.enabled){var I=e.config.chart.dropShadow;s.dropShadow(z,I,m)}s.setSelectionFilter(z,0,m),this.addListeners(z,this.radialDataLabels),v.add(z),z.attr({index:0,j:m});var M=0;!this.initialAnim||e.globals.resized||e.globals.dataChanged||(M=(S-w)/360*e.config.chart.animations.speed,this.animDur=M/(1.2*t.series.length)+this.animDur,this.animBeginArr.push(this.animDur)),e.globals.dataChanged&&(M=(S-w)/360*e.config.chart.animations.dynamicAnimation.speed,this.animDur=M/(1.2*t.series.length)+this.animDur,this.animBeginArr.push(this.animDur)),this.animatePaths(z,{centerX:t.centerX,centerY:t.centerY,endAngle:S,startAngle:w,prevEndAngle:C,prevStartAngle:k,size:t.size,i:m,totalItems:2,animBeginArr:this.animBeginArr,dur:M,shouldSetPrevPaths:!0,easing:e.globals.easing})}return{g:r,elHollow:c,dataLabels:u}}},{key:"drawHollow",value:function(t){var e=new b(this.ctx).drawCircle(2*t.size);return e.attr({class:"apexcharts-radialbar-hollow",cx:t.centerX,cy:t.centerY,r:t.size,fill:t.fill}),e}},{key:"drawHollowImage",value:function(t,e,i,a){var s=this.w,r=new L(this.ctx),o=f.randomId(),n=s.config.plotOptions.radialBar.hollow.image;if(s.config.plotOptions.radialBar.hollow.imageClipped)r.clippedImgArea({width:i,height:i,image:n,patternID:"pattern".concat(s.globals.cuid).concat(o)}),a="url(#pattern".concat(s.globals.cuid).concat(o,")");else{var l=s.config.plotOptions.radialBar.hollow.imageWidth,h=s.config.plotOptions.radialBar.hollow.imageHeight;if(void 0===l&&void 0===h){var c=s.globals.dom.Paper.image(n).loaded((function(e){this.move(t.centerX-e.width/2+s.config.plotOptions.radialBar.hollow.imageOffsetX,t.centerY-e.height/2+s.config.plotOptions.radialBar.hollow.imageOffsetY)}));e.add(c)}else{var d=s.globals.dom.Paper.image(n).loaded((function(e){this.move(t.centerX-l/2+s.config.plotOptions.radialBar.hollow.imageOffsetX,t.centerY-h/2+s.config.plotOptions.radialBar.hollow.imageOffsetY),this.size(l,h)}));e.add(d)}}return a}},{key:"getStrokeWidth",value:function(t){var e=this.w;return t.size*(100-parseInt(e.config.plotOptions.radialBar.hollow.size,10))/100/(t.series.length+1)-this.margin}}]),s}(),Lt=function(){function t(i){e(this,t),this.w=i.w,this.lineCtx=i}return a(t,[{key:"sameValueSeriesFix",value:function(t,e){var i=this.w;if("line"===i.config.chart.type&&("gradient"===i.config.fill.type||"gradient"===i.config.fill.type[t])&&new y(this.lineCtx.ctx,i).seriesHaveSameValues(t)){var a=e[t].slice();a[a.length-1]=a[a.length-1]+1e-6,e[t]=a}return e}},{key:"calculatePoints",value:function(t){var e=t.series,i=t.realIndex,a=t.x,s=t.y,r=t.i,o=t.j,n=t.prevY,l=this.w,h=[],c=[];if(0===o){var d=this.lineCtx.categoryAxisCorrection+l.config.markers.offsetX;l.globals.isXNumeric&&(d=(l.globals.seriesX[i][0]-l.globals.minX)/this.lineCtx.xRatio+l.config.markers.offsetX),h.push(d),c.push(f.isNumber(e[r][0])?n+l.config.markers.offsetY:null),h.push(a+l.config.markers.offsetX),c.push(f.isNumber(e[r][o+1])?s+l.config.markers.offsetY:null)}else h.push(a+l.config.markers.offsetX),c.push(f.isNumber(e[r][o+1])?s+l.config.markers.offsetY:null);return{x:h,y:c}}},{key:"checkPreviousPaths",value:function(t){for(var e=t.pathFromLine,i=t.pathFromArea,a=t.realIndex,s=this.w,r=0;r0&&parseInt(o.realIndex,10)===parseInt(a,10)&&("line"===o.type?(this.lineCtx.appendPathFrom=!1,e=s.globals.previousPaths[r].paths[0].d):"area"===o.type&&(this.lineCtx.appendPathFrom=!1,i=s.globals.previousPaths[r].paths[0].d,s.config.stroke.show&&s.globals.previousPaths[r].paths[1]&&(e=s.globals.previousPaths[r].paths[1].d)))}return{pathFromLine:e,pathFromArea:i}}},{key:"determineFirstPrevY",value:function(t){var e=t.i,i=t.series,a=t.prevY,s=t.lineYPosition,r=this.w;if(void 0!==i[e][0])a=(s=r.config.chart.stacked&&e>0?this.lineCtx.prevSeriesY[e-1][0]:this.lineCtx.zeroY)-i[e][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]+2*(this.lineCtx.isReversed?i[e][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]:0);else if(r.config.chart.stacked&&e>0&&void 0===i[e][0])for(var o=e-1;o>=0;o--)if(null!==i[o][0]&&void 0!==i[o][0]){a=s=this.lineCtx.prevSeriesY[o][0];break}return{prevY:a,lineYPosition:s}}}]),t}(),Pt=function(){function t(i,a,s){e(this,t),this.ctx=i,this.w=i.w,this.xyRatios=a,this.pointsChart=!("bubble"!==this.w.config.chart.type&&"scatter"!==this.w.config.chart.type)||s,this.scatter=new T(this.ctx),this.noNegatives=this.w.globals.minX===Number.MAX_VALUE,this.lineHelpers=new Lt(this),this.markers=new P(this.ctx),this.prevSeriesY=[],this.categoryAxisCorrection=0,this.yaxisIndex=0}return a(t,[{key:"draw",value:function(t,e,i){var a=this.w,s=new b(this.ctx),r=a.globals.comboCharts?e:a.config.chart.type,o=s.group({class:"apexcharts-".concat(r,"-series apexcharts-plot-series")}),n=new y(this.ctx,a);this.yRatio=this.xyRatios.yRatio,this.zRatio=this.xyRatios.zRatio,this.xRatio=this.xyRatios.xRatio,this.baseLineY=this.xyRatios.baseLineY,t=n.getLogSeries(t),this.yRatio=n.getLogYRatios(this.yRatio);for(var l=[],h=0;h0&&(u=(a.globals.seriesX[c][0]-a.globals.minX)/this.xRatio),g.push(u);var f,p=u,x=p,m=this.zeroY;m=this.lineHelpers.determineFirstPrevY({i:h,series:t,prevY:m,lineYPosition:0}).prevY,d.push(m),f=m;var v=this._calculatePathsFrom({series:t,i:h,realIndex:c,prevX:x,prevY:m}),w=this._iterateOverDataPoints({series:t,realIndex:c,i:h,x:u,y:1,pX:p,pY:f,pathsFrom:v,linePaths:[],areaPaths:[],seriesIndex:i,lineYPosition:0,xArrj:g,yArrj:d});this._handlePaths({type:r,realIndex:c,i:h,paths:w}),this.elSeries.add(this.elPointsMain),this.elSeries.add(this.elDataLabelsWrap),l.push(this.elSeries)}if(a.config.chart.stacked)for(var k=l.length;k>0;k--)o.add(l[k-1]);else for(var A=0;A1&&(this.yaxisIndex=i),this.isReversed=a.config.yaxis[this.yaxisIndex]&&a.config.yaxis[this.yaxisIndex].reversed,this.zeroY=a.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?a.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),this.areaBottomY=this.zeroY,(this.zeroY>a.globals.gridHeight||"end"===a.config.plotOptions.area.fillTo)&&(this.areaBottomY=a.globals.gridHeight),this.categoryAxisCorrection=this.xDivision/2,this.elSeries=s.group({class:"apexcharts-series",seriesName:f.escapeString(a.globals.seriesNames[i])}),this.elPointsMain=s.group({class:"apexcharts-series-markers-wrap","data:realIndex":i}),this.elDataLabelsWrap=s.group({class:"apexcharts-datalabels","data:realIndex":i});var r=t[e].length===a.globals.dataPoints;this.elSeries.attr({"data:longestSeries":r,rel:e+1,"data:realIndex":i}),this.appendPathFrom=!0}},{key:"_calculatePathsFrom",value:function(t){var e,i,a,s,r=t.series,o=t.i,n=t.realIndex,l=t.prevX,h=t.prevY,c=this.w,d=new b(this.ctx);if(null===r[o][0]){for(var g=0;g0){var u=this.lineHelpers.checkPreviousPaths({pathFromLine:a,pathFromArea:s,realIndex:n});a=u.pathFromLine,s=u.pathFromArea}return{prevX:l,prevY:h,linePath:e,areaPath:i,pathFromLine:a,pathFromArea:s}}},{key:"_handlePaths",value:function(t){var e=t.type,i=t.realIndex,a=t.i,s=t.paths,r=this.w,n=new b(this.ctx),l=new L(this.ctx);this.prevSeriesY.push(s.yArrj),r.globals.seriesXvalues[i]=s.xArrj,r.globals.seriesYvalues[i]=s.yArrj,this.pointsChart||r.globals.delayedElements.push({el:this.elPointsMain.node,index:i});var h={i:a,realIndex:i,animationDelay:a,initialSpeed:r.config.chart.animations.speed,dataChangeSpeed:r.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(e)};if("area"===e)for(var c=l.fillPath({seriesNumber:i}),d=0;d1?x.globals.dataPoints-1:x.globals.dataPoints,P=0;P0&&x.globals.collapsedSeries.length-1){e--;break}return e>=0?e:0}(a-1)][P+1]}else g=this.zeroY;else g=this.zeroY;r=T?g-C/v[this.yaxisIndex]+2*(this.isReversed?C/v[this.yaxisIndex]:0):g-e[a][P+1]/v[this.yaxisIndex]+2*(this.isReversed?e[a][P+1]/v[this.yaxisIndex]:0),u.push(s),p.push(r);var I=this.lineHelpers.calculatePoints({series:e,x:s,y:r,realIndex:i,i:a,j:P,prevY:y}),M=this._createPaths({series:e,i:a,realIndex:i,j:P,x:s,y:r,pX:o,pY:n,linePath:w,areaPath:k,linePaths:h,areaPaths:c,seriesIndex:d});c=M.areaPaths,h=M.linePaths,o=M.pX,n=M.pY,k=M.areaPath,w=M.linePath,this.appendPathFrom&&(A+=m.line(s,this.zeroY),S+=m.line(s,this.zeroY)),this.handleNullDataPoints(e,I,a,P,i),this._handleMarkersAndLabels({pointsPos:I,series:e,x:s,y:r,prevY:y,i:a,j:P,realIndex:i})}return{yArrj:p,xArrj:u,pathFromArea:S,areaPaths:c,pathFromLine:A,linePaths:h}}},{key:"_handleMarkersAndLabels",value:function(t){var e=t.pointsPos,i=(t.series,t.x,t.y,t.prevY,t.i),a=t.j,s=t.realIndex,r=this.w,o=new z(this.ctx);if(this.pointsChart)this.scatter.draw(this.elSeries,a,{realIndex:s,pointsPos:e,zRatio:this.zRatio,elParent:this.elPointsMain});else{r.globals.series[i].length>1&&this.elPointsMain.node.classList.add("apexcharts-element-hidden");var n=this.markers.plotChartMarkers(e,s,a+1);null!==n&&this.elPointsMain.add(n)}var l=o.drawDataLabel(e,s,a+1,null);null!==l&&this.elDataLabelsWrap.add(l)}},{key:"_createPaths",value:function(t){var e=t.series,i=t.i,a=t.realIndex,s=t.j,r=t.x,o=t.y,n=t.pX,l=t.pY,h=t.linePath,c=t.areaPath,d=t.linePaths,g=t.areaPaths,u=t.seriesIndex,f=this.w,p=new b(this.ctx),x=f.config.stroke.curve,m=this.areaBottomY;if(Array.isArray(f.config.stroke.curve)&&(x=Array.isArray(u)?f.config.stroke.curve[u[i]]:f.config.stroke.curve[i]),"smooth"===x){var v=.35*(r-n);f.globals.hasNullValues?(null!==e[i][s]&&(null!==e[i][s+1]?(h=p.move(n,l)+p.curve(n+v,l,r-v,o,r+1,o),c=p.move(n+1,l)+p.curve(n+v,l,r-v,o,r+1,o)+p.line(r,m)+p.line(n,m)+"z"):(h=p.move(n,l),c=p.move(n,l)+"z")),d.push(h),g.push(c)):(h+=p.curve(n+v,l,r-v,o,r,o),c+=p.curve(n+v,l,r-v,o,r,o)),n=r,l=o,s===e[i].length-2&&(c=c+p.curve(n,l,r,o,r,m)+p.move(r,o)+"z",f.globals.hasNullValues||(d.push(h),g.push(c)))}else{if(null===e[i][s+1]){h+=p.move(r,o);var y=f.globals.isXNumeric?(f.globals.seriesX[a][s]-f.globals.minX)/this.xRatio:r-this.xDivision;c=c+p.line(y,m)+p.move(r,o)+"z"}null===e[i][s]&&(h+=p.move(r,o),c+=p.move(r,m)),"stepline"===x?(h=h+p.line(r,null,"H")+p.line(null,o,"V"),c=c+p.line(r,null,"H")+p.line(null,o,"V")):"straight"===x&&(h+=p.line(r,o),c+=p.line(r,o)),s===e[i].length-2&&(c=c+p.line(r,m)+p.move(r,o)+"z",d.push(h),g.push(c))}return{linePaths:d,areaPaths:g,pX:n,pY:l,linePath:h,areaPath:c}}},{key:"handleNullDataPoints",value:function(t,e,i,a,s){var r=this.w;if(null===t[i][a]&&r.config.markers.showNullDataPoints||1===t[i].length){var o=this.markers.plotChartMarkers(e,s,a+1,this.strokeWidth-r.config.markers.strokeWidth/2,!0);null!==o&&this.elPointsMain.add(o)}}}]),t}();window.TreemapSquared={},window.TreemapSquared.generate=function(){function t(e,i,a,s){this.xoffset=e,this.yoffset=i,this.height=s,this.width=a,this.shortestEdge=function(){return Math.min(this.height,this.width)},this.getCoordinates=function(t){var e,i=[],a=this.xoffset,s=this.yoffset,o=r(t)/this.height,n=r(t)/this.width;if(this.width>=this.height)for(e=0;e=this.height){var a=e/this.height,s=this.width-a;i=new t(this.xoffset+a,this.yoffset,s,this.height)}else{var r=e/this.width,o=this.height-r;i=new t(this.xoffset,this.yoffset+r,this.width,o)}return i}}function e(e,a,s,o,n){return o=void 0===o?0:o,n=void 0===n?0:n,function(t){var e,i,a=[];for(e=0;e=o}(e,l=t[0],n)?(e.push(l),i(t.slice(1),e,s,o)):(h=s.cutArea(r(e),o),o.push(s.getCoordinates(e)),i(t,[],h,o)),o;o.push(s.getCoordinates(e))}function a(t,e){var i=Math.min.apply(Math,t),a=Math.max.apply(Math,t),s=r(t);return Math.max(Math.pow(e,2)*a/Math.pow(s,2),Math.pow(s,2)/(Math.pow(e,2)*i))}function s(t){return t&&t.constructor===Array}function r(t){var e,i=0;for(e=0;es-i&&n.width<=r-a){var l=o.rotateAroundCenter(t.node);t.node.setAttribute("transform","rotate(-90 ".concat(l.x," ").concat(l.y,")"))}}},{key:"animateTreemap",value:function(t,e,i,a){var s=new p(this.ctx);s.animateRect(t,{x:e.x,y:e.y,width:e.width,height:e.height},{x:i.x,y:i.y,width:i.width,height:i.height},a,(function(){s.animationCompleted(t)}))}}]),t}(),Mt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.timeScaleArray=[],this.utc=this.w.config.xaxis.labels.datetimeUTC}return a(t,[{key:"calculateTimeScaleTicks",value:function(t,e){var i=this,a=this.w;if(a.globals.allSeriesCollapsed)return a.globals.labels=[],a.globals.timescaleLabels=[],[];var s=new Y(this.ctx),r=(e-t)/864e5;this.determineInterval(r),a.globals.disableZoomIn=!1,a.globals.disableZoomOut=!1,r<.00011574074074074075?a.globals.disableZoomIn=!0:r>5e4&&(a.globals.disableZoomOut=!0);var n=s.getTimeUnitsfromTimestamp(t,e,this.utc),l=a.globals.gridWidth/r,h=l/24,c=h/60,d=c/60,g=Math.floor(24*r),u=Math.floor(1440*r),f=Math.floor(86400*r),p=Math.floor(r),x=Math.floor(r/30),b=Math.floor(r/365),m={minMillisecond:n.minMillisecond,minSecond:n.minSecond,minMinute:n.minMinute,minHour:n.minHour,minDate:n.minDate,minMonth:n.minMonth,minYear:n.minYear},v={firstVal:m,currentMillisecond:m.minMillisecond,currentSecond:m.minSecond,currentMinute:m.minMinute,currentHour:m.minHour,currentMonthDate:m.minDate,currentDate:m.minDate,currentMonth:m.minMonth,currentYear:m.minYear,daysWidthOnXAxis:l,hoursWidthOnXAxis:h,minutesWidthOnXAxis:c,secondsWidthOnXAxis:d,numberOfSeconds:f,numberOfMinutes:u,numberOfHours:g,numberOfDays:p,numberOfMonths:x,numberOfYears:b};switch(this.tickInterval){case"years":this.generateYearScale(v);break;case"months":case"half_year":this.generateMonthScale(v);break;case"months_days":case"months_fortnight":case"days":case"week_days":this.generateDayScale(v);break;case"hours":this.generateHourScale(v);break;case"minutes_fives":case"minutes":this.generateMinuteScale(v);break;case"seconds_tens":case"seconds_fives":case"seconds":this.generateSecondScale(v)}var y=this.timeScaleArray.map((function(t){var e={position:t.position,unit:t.unit,year:t.year,day:t.day?t.day:1,hour:t.hour?t.hour:0,month:t.month+1};return"month"===t.unit?o(o({},e),{},{day:1,value:t.value+1}):"day"===t.unit||"hour"===t.unit?o(o({},e),{},{value:t.value}):"minute"===t.unit?o(o({},e),{},{value:t.value,minute:t.value}):"second"===t.unit?o(o({},e),{},{value:t.value,minute:t.minute,second:t.second}):t}));return y.filter((function(t){var e=1,s=Math.ceil(a.globals.gridWidth/120),r=t.value;void 0!==a.config.xaxis.tickAmount&&(s=a.config.xaxis.tickAmount),y.length>s&&(e=Math.floor(y.length/s));var o=!1,n=!1;switch(i.tickInterval){case"years":"year"===t.unit&&(o=!0);break;case"half_year":e=7,"year"===t.unit&&(o=!0);break;case"months":e=1,"year"===t.unit&&(o=!0);break;case"months_fortnight":e=15,"year"!==t.unit&&"month"!==t.unit||(o=!0),30===r&&(n=!0);break;case"months_days":e=10,"month"===t.unit&&(o=!0),30===r&&(n=!0);break;case"week_days":e=8,"month"===t.unit&&(o=!0);break;case"days":e=1,"month"===t.unit&&(o=!0);break;case"hours":"day"===t.unit&&(o=!0);break;case"minutes_fives":r%5!=0&&(n=!0);break;case"seconds_tens":r%10!=0&&(n=!0);break;case"seconds_fives":r%5!=0&&(n=!0)}if("hours"===i.tickInterval||"minutes_fives"===i.tickInterval||"seconds_tens"===i.tickInterval||"seconds_fives"===i.tickInterval){if(!n)return!0}else if((r%e==0||o)&&!n)return!0}))}},{key:"recalcDimensionsBasedOnFormat",value:function(t,e){var i=this.w,a=this.formatDates(t),s=this.removeOverlappingTS(a);i.globals.timescaleLabels=s.slice(),new ot(this.ctx).plotCoords()}},{key:"determineInterval",value:function(t){var e=24*t,i=60*e;switch(!0){case t/365>5:this.tickInterval="years";break;case t>800:this.tickInterval="half_year";break;case t>180:this.tickInterval="months";break;case t>90:this.tickInterval="months_fortnight";break;case t>60:this.tickInterval="months_days";break;case t>30:this.tickInterval="week_days";break;case t>2:this.tickInterval="days";break;case e>2.4:this.tickInterval="hours";break;case i>15:this.tickInterval="minutes_fives";break;case i>5:this.tickInterval="minutes";break;case i>1:this.tickInterval="seconds_tens";break;case 60*i>20:this.tickInterval="seconds_fives";break;default:this.tickInterval="seconds"}}},{key:"generateYearScale",value:function(t){var e=t.firstVal,i=t.currentMonth,a=t.currentYear,s=t.daysWidthOnXAxis,r=t.numberOfYears,o=e.minYear,n=0,l=new Y(this.ctx),h="year";if(e.minDate>1||e.minMonth>0){var c=l.determineRemainingDaysOfYear(e.minYear,e.minMonth,e.minDate);n=(l.determineDaysOfYear(e.minYear)-c+1)*s,o=e.minYear+1,this.timeScaleArray.push({position:n,value:o,unit:h,year:o,month:f.monthMod(i+1)})}else 1===e.minDate&&0===e.minMonth&&this.timeScaleArray.push({position:n,value:o,unit:h,year:a,month:f.monthMod(i+1)});for(var d=o,g=n,u=0;u1){l=(h.determineDaysOfMonths(a+1,e.minYear)-i+1)*r,n=f.monthMod(a+1);var g=s+d,u=f.monthMod(n),p=n;0===n&&(c="year",p=g,u=1,g+=d+=1),this.timeScaleArray.push({position:l,value:p,unit:c,year:g,month:u})}else this.timeScaleArray.push({position:l,value:n,unit:c,year:s,month:f.monthMod(a)});for(var x=n+1,b=l,m=0,v=1;mo.determineDaysOfMonths(e+1,i)?(h=1,n="month",g=e+=1,e):e},d=(24-e.minHour)*s,g=l,u=c(h,i,a);0===e.minHour&&1===e.minDate?(d=0,g=f.monthMod(e.minMonth),n="month",h=e.minDate,r++):1!==e.minDate&&0===e.minHour&&0===e.minMinute&&(d=0,l=e.minDate,g=l,u=c(h=l,i,a)),this.timeScaleArray.push({position:d,value:g,unit:n,year:this._getYear(a,u,0),month:f.monthMod(u),day:h});for(var p=d,x=0;xn.determineDaysOfMonths(e+1,s)&&(x=1,e+=1),{month:e,date:x}},c=function(t,e){return t>n.determineDaysOfMonths(e+1,s)?e+=1:e},d=60-(e.minMinute+e.minSecond/60),g=d*r,u=e.minHour+1,p=u+1;60===d&&(g=0,p=(u=e.minHour)+1);var x=i,b=c(x,a);this.timeScaleArray.push({position:g,value:u,unit:l,day:x,hour:p,year:s,month:f.monthMod(b)});for(var m=g,v=0;v=24)p=0,l="day",b=h(x+=1,b).month,b=c(x,b);var y=this._getYear(s,b,0);m=0===p&&0===v?d*r:60*r+m;var w=0===p?x:p;this.timeScaleArray.push({position:m,value:w,unit:l,hour:p,day:x,year:y,month:f.monthMod(b)}),p++}}},{key:"generateMinuteScale",value:function(t){for(var e=t.currentMillisecond,i=t.currentSecond,a=t.currentMinute,s=t.currentHour,r=t.currentDate,o=t.currentMonth,n=t.currentYear,l=t.minutesWidthOnXAxis,h=t.secondsWidthOnXAxis,c=t.numberOfMinutes,d=a+1,g=r,u=o,p=n,x=s,b=(60-i-e/1e3)*h,m=0;m=60&&(d=0,24===(x+=1)&&(x=0)),this.timeScaleArray.push({position:b,value:d,unit:"minute",hour:x,minute:d,day:g,year:this._getYear(p,u,0),month:f.monthMod(u)}),b+=l,d++}},{key:"generateSecondScale",value:function(t){for(var e=t.currentMillisecond,i=t.currentSecond,a=t.currentMinute,s=t.currentHour,r=t.currentDate,o=t.currentMonth,n=t.currentYear,l=t.secondsWidthOnXAxis,h=t.numberOfSeconds,c=i+1,d=a,g=r,u=o,p=n,x=s,b=(1e3-e)/1e3*l,m=0;m=60&&(c=0,++d>=60&&(d=0,24===++x&&(x=0))),this.timeScaleArray.push({position:b,value:c,unit:"second",hour:x,minute:d,second:c,day:g,year:this._getYear(p,u,0),month:f.monthMod(u)}),b+=l,c++}},{key:"createRawDateString",value:function(t,e){var i=t.year;return 0===t.month&&(t.month=1),i+="-"+("0"+t.month.toString()).slice(-2),"day"===t.unit?i+="day"===t.unit?"-"+("0"+e).slice(-2):"-01":i+="-"+("0"+(t.day?t.day:"1")).slice(-2),"hour"===t.unit?i+="hour"===t.unit?"T"+("0"+e).slice(-2):"T00":i+="T"+("0"+(t.hour?t.hour:"0")).slice(-2),"minute"===t.unit?i+=":"+("0"+e).slice(-2):i+=":"+(t.minute?("0"+t.minute).slice(-2):"00"),"second"===t.unit?i+=":"+("0"+e).slice(-2):i+=":00",this.utc&&(i+=".000Z"),i}},{key:"formatDates",value:function(t){var e=this,i=this.w;return t.map((function(t){var a=t.value.toString(),s=new Y(e.ctx),r=e.createRawDateString(t,a),o=s.getDate(s.parseDate(r));if(e.utc||(o=s.getDate(s.parseDateWithTimezone(r))),void 0===i.config.xaxis.labels.format){var n="dd MMM",l=i.config.xaxis.labels.datetimeFormatter;"year"===t.unit&&(n=l.year),"month"===t.unit&&(n=l.month),"day"===t.unit&&(n=l.day),"hour"===t.unit&&(n=l.hour),"minute"===t.unit&&(n=l.minute),"second"===t.unit&&(n=l.second),a=s.formatDate(o,n)}else a=s.formatDate(o,i.config.xaxis.labels.format);return{dateString:r,position:t.position,value:a,unit:t.unit,year:t.year,month:t.month}}))}},{key:"removeOverlappingTS",value:function(t){var e,i=this,a=new b(this.ctx),s=!1;t.length>0&&t[0].value&&t.every((function(e){return e.value.length===t[0].value.length}))&&(s=!0,e=a.getTextRects(t[0].value).width);var r=0,o=t.map((function(o,n){if(n>0&&i.w.config.xaxis.labels.hideOverlappingLabels){var l=s?e:a.getTextRects(t[r].value).width,h=t[r].position;return o.position>h+l+10?(r=n,o):null}return o}));return o=o.filter((function(t){return null!==t}))}},{key:"_getYear",value:function(t,e,i){return t+Math.floor(e/12)+i}}]),t}(),Xt=function(){function t(i,a){e(this,t),this.ctx=a,this.w=a.w,this.el=i}return a(t,[{key:"setupElements",value:function(){var t=this.w.globals,e=this.w.config,i=e.chart.type;t.axisCharts=["line","area","bar","rangeBar","candlestick","boxPlot","scatter","bubble","radar","heatmap","treemap"].indexOf(i)>-1,t.xyCharts=["line","area","bar","rangeBar","candlestick","boxPlot","scatter","bubble"].indexOf(i)>-1,t.isBarHorizontal=("bar"===e.chart.type||"rangeBar"===e.chart.type)&&e.plotOptions.bar.horizontal,t.chartClass=".apexcharts"+t.chartID,t.dom.baseEl=this.el,t.dom.elWrap=document.createElement("div"),b.setAttrs(t.dom.elWrap,{id:t.chartClass.substring(1),class:"apexcharts-canvas "+t.chartClass.substring(1)}),this.el.appendChild(t.dom.elWrap),t.dom.Paper=new window.SVG.Doc(t.dom.elWrap),t.dom.Paper.attr({class:"apexcharts-svg","xmlns:data":"ApexChartsNS",transform:"translate(".concat(e.chart.offsetX,", ").concat(e.chart.offsetY,")")}),t.dom.Paper.node.style.background=e.chart.background,this.setSVGDimensions(),t.dom.elGraphical=t.dom.Paper.group().attr({class:"apexcharts-inner apexcharts-graphical"}),t.dom.elAnnotations=t.dom.Paper.group().attr({class:"apexcharts-annotations"}),t.dom.elDefs=t.dom.Paper.defs(),t.dom.elLegendWrap=document.createElement("div"),t.dom.elLegendWrap.classList.add("apexcharts-legend"),t.dom.elWrap.appendChild(t.dom.elLegendWrap),t.dom.Paper.add(t.dom.elGraphical),t.dom.elGraphical.add(t.dom.elDefs)}},{key:"plotChartType",value:function(t,e){var i=this.w,a=i.config,s=i.globals,r={series:[],i:[]},o={series:[],i:[]},n={series:[],i:[]},l={series:[],i:[]},h={series:[],i:[]},c={series:[],i:[]},d={series:[],i:[]};s.series.map((function(e,g){var u=0;void 0!==t[g].type?("column"===t[g].type||"bar"===t[g].type?(s.series.length>1&&a.plotOptions.bar.horizontal&&console.warn("Horizontal bars are not supported in a mixed/combo chart. Please turn off `plotOptions.bar.horizontal`"),h.series.push(e),h.i.push(g),u++,i.globals.columnSeries=h.series):"area"===t[g].type?(o.series.push(e),o.i.push(g),u++):"line"===t[g].type?(r.series.push(e),r.i.push(g),u++):"scatter"===t[g].type?(n.series.push(e),n.i.push(g)):"bubble"===t[g].type?(l.series.push(e),l.i.push(g),u++):"candlestick"===t[g].type?(c.series.push(e),c.i.push(g),u++):"boxPlot"===t[g].type?(d.series.push(e),d.i.push(g),u++):console.warn("You have specified an unrecognized chart type. Available types for this property are line/area/column/bar/scatter/bubble"),u>1&&(s.comboCharts=!0)):(r.series.push(e),r.i.push(g))}));var g=new Pt(this.ctx,e),u=new vt(this.ctx,e);this.ctx.pie=new At(this.ctx);var f=new Ct(this.ctx);this.ctx.rangeBar=new F(this.ctx,e);var p=new St(this.ctx),x=[];if(s.comboCharts){if(o.series.length>0&&x.push(g.draw(o.series,"area",o.i)),h.series.length>0)if(i.config.chart.stacked){var b=new mt(this.ctx,e);x.push(b.draw(h.series,h.i))}else this.ctx.bar=new E(this.ctx,e),x.push(this.ctx.bar.draw(h.series,h.i));if(r.series.length>0&&x.push(g.draw(r.series,"line",r.i)),c.series.length>0&&x.push(u.draw(c.series,c.i)),d.series.length>0&&x.push(u.draw(d.series,d.i)),n.series.length>0){var m=new Pt(this.ctx,e,!0);x.push(m.draw(n.series,"scatter",n.i))}if(l.series.length>0){var v=new Pt(this.ctx,e,!0);x.push(v.draw(l.series,"bubble",l.i))}}else switch(a.chart.type){case"line":x=g.draw(s.series,"line");break;case"area":x=g.draw(s.series,"area");break;case"bar":if(a.chart.stacked)x=new mt(this.ctx,e).draw(s.series);else this.ctx.bar=new E(this.ctx,e),x=this.ctx.bar.draw(s.series);break;case"candlestick":x=new vt(this.ctx,e).draw(s.series);break;case"boxPlot":x=new vt(this.ctx,e).draw(s.series);break;case"rangeBar":x=this.ctx.rangeBar.draw(s.series);break;case"heatmap":x=new wt(this.ctx,e).draw(s.series);break;case"treemap":x=new It(this.ctx,e).draw(s.series);break;case"pie":case"donut":case"polarArea":x=this.ctx.pie.draw(s.series);break;case"radialBar":x=f.draw(s.series);break;case"radar":x=p.draw(s.series);break;default:x=g.draw(s.series)}return x}},{key:"setSVGDimensions",value:function(){var t=this.w.globals,e=this.w.config;t.svgWidth=e.chart.width,t.svgHeight=e.chart.height;var i=f.getDimensions(this.el),a=e.chart.width.toString().split(/[0-9]+/g).pop();"%"===a?f.isNumber(i[0])&&(0===i[0].width&&(i=f.getDimensions(this.el.parentNode)),t.svgWidth=i[0]*parseInt(e.chart.width,10)/100):"px"!==a&&""!==a||(t.svgWidth=parseInt(e.chart.width,10));var s=e.chart.height.toString().split(/[0-9]+/g).pop();if("auto"!==t.svgHeight&&""!==t.svgHeight)if("%"===s){var r=f.getDimensions(this.el.parentNode);t.svgHeight=r[1]*parseInt(e.chart.height,10)/100}else t.svgHeight=parseInt(e.chart.height,10);else t.axisCharts?t.svgHeight=t.svgWidth/1.61:t.svgHeight=t.svgWidth/1.2;if(t.svgWidth<0&&(t.svgWidth=0),t.svgHeight<0&&(t.svgHeight=0),b.setAttrs(t.dom.Paper.node,{width:t.svgWidth,height:t.svgHeight}),"%"!==s){var o=e.chart.sparkline.enabled?0:t.axisCharts?e.chart.parentHeightOffset:0;t.dom.Paper.node.parentNode.parentNode.style.minHeight=t.svgHeight+o+"px"}t.dom.elWrap.style.width=t.svgWidth+"px",t.dom.elWrap.style.height=t.svgHeight+"px"}},{key:"shiftGraphPosition",value:function(){var t=this.w.globals,e=t.translateY,i={transform:"translate("+t.translateX+", "+e+")"};b.setAttrs(t.dom.elGraphical.node,i)}},{key:"resizeNonAxisCharts",value:function(){var t=this.w,e=t.globals,i=0,a=t.config.chart.sparkline.enabled?1:15;a+=t.config.grid.padding.bottom,"top"!==t.config.legend.position&&"bottom"!==t.config.legend.position||!t.config.legend.show||t.config.legend.floating||(i=new lt(this.ctx).legendHelpers.getLegendBBox().clwh+10);var s=t.globals.dom.baseEl.querySelector(".apexcharts-radialbar, .apexcharts-pie"),r=2.05*t.globals.radialSize;if(s&&!t.config.chart.sparkline.enabled){var o=f.getBoundingClientRect(s);r=o.bottom;var n=o.bottom-o.top;r=Math.max(2.05*t.globals.radialSize,n)}var l=r+e.translateY+i+a;e.dom.elLegendForeign&&e.dom.elLegendForeign.setAttribute("height",l),e.dom.elWrap.style.height=l+"px",b.setAttrs(e.dom.Paper.node,{height:l}),e.dom.Paper.node.parentNode.parentNode.style.minHeight=l+"px"}},{key:"coreCalculations",value:function(){new U(this.ctx).init()}},{key:"resetGlobals",value:function(){var t=this,e=function(){return t.w.config.series.map((function(t){return[]}))},i=new D,a=this.w.globals;i.initGlobalVars(a),a.seriesXvalues=e(),a.seriesYvalues=e()}},{key:"isMultipleY",value:function(){if(this.w.config.yaxis.constructor===Array&&this.w.config.yaxis.length>1)return this.w.globals.isMultipleYAxis=!0,!0}},{key:"xySettings",value:function(){var t=null,e=this.w;if(e.globals.axisCharts){if("back"===e.config.xaxis.crosshairs.position)new Q(this.ctx).drawXCrosshairs();if("back"===e.config.yaxis[0].crosshairs.position)new Q(this.ctx).drawYCrosshairs();if("datetime"===e.config.xaxis.type&&void 0===e.config.xaxis.labels.formatter){this.ctx.timeScale=new Mt(this.ctx);var i=[];isFinite(e.globals.minX)&&isFinite(e.globals.maxX)&&!e.globals.isBarHorizontal?i=this.ctx.timeScale.calculateTimeScaleTicks(e.globals.minX,e.globals.maxX):e.globals.isBarHorizontal&&(i=this.ctx.timeScale.calculateTimeScaleTicks(e.globals.minY,e.globals.maxY)),this.ctx.timeScale.recalcDimensionsBasedOnFormat(i)}t=new y(this.ctx).getCalculatedRatios()}return t}},{key:"updateSourceChart",value:function(t){this.ctx.w.globals.selection=void 0,this.ctx.updateHelpers._updateOptions({chart:{selection:{xaxis:{min:t.w.globals.minX,max:t.w.globals.maxX}}}},!1,!1)}},{key:"setupBrushHandler",value:function(){var t=this,e=this.w;if(e.config.chart.brush.enabled&&"function"!=typeof e.config.chart.events.selection){var i=e.config.chart.brush.targets||[e.config.chart.brush.target];i.forEach((function(e){var i=ApexCharts.getChartByID(e);i.w.globals.brushSource=t.ctx,"function"!=typeof i.w.config.chart.events.zoomed&&(i.w.config.chart.events.zoomed=function(){t.updateSourceChart(i)}),"function"!=typeof i.w.config.chart.events.scrolled&&(i.w.config.chart.events.scrolled=function(){t.updateSourceChart(i)})})),e.config.chart.events.selection=function(t,a){i.forEach((function(t){var i=ApexCharts.getChartByID(t),s=f.clone(e.config.yaxis);if(e.config.chart.brush.autoScaleYaxis&&1===i.w.globals.series.length){var r=new j(i);s=r.autoScaleY(i,s,a)}var n=i.w.config.yaxis.reduce((function(t,e,a){return[].concat(g(t),[o(o({},i.w.config.yaxis[a]),{},{min:s[0].min,max:s[0].max})])}),[]);i.ctx.updateHelpers._updateOptions({xaxis:{min:a.xaxis.min,max:a.xaxis.max},yaxis:n},!1,!1,!1,!1)}))}}}}]),t}(),Et=function(){function i(t){e(this,i),this.ctx=t,this.w=t.w}return a(i,[{key:"_updateOptions",value:function(e){var i=this,a=arguments.length>1&&void 0!==arguments[1]&&arguments[1],s=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],r=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],o=arguments.length>4&&void 0!==arguments[4]&&arguments[4],n=[this.ctx];r&&(n=this.ctx.getSyncedCharts()),this.ctx.w.globals.isExecCalled&&(n=[this.ctx],this.ctx.w.globals.isExecCalled=!1),n.forEach((function(r){var n=r.w;return n.globals.shouldAnimate=s,a||(n.globals.resized=!0,n.globals.dataChanged=!0,s&&r.series.getPreviousPaths()),e&&"object"===t(e)&&(r.config=new H(e),e=y.extendArrayProps(r.config,e,n),r.w.globals.chartID!==i.ctx.w.globals.chartID&&delete e.series,n.config=f.extend(n.config,e),o&&(n.globals.lastXAxis=e.xaxis?f.clone(e.xaxis):[],n.globals.lastYAxis=e.yaxis?f.clone(e.yaxis):[],n.globals.initialConfig=f.extend({},n.config),n.globals.initialSeries=f.clone(n.config.series))),r.update(e)}))}},{key:"_updateSeries",value:function(t,e){var i,a=this,s=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=this.w;return r.globals.shouldAnimate=e,r.globals.dataChanged=!0,e&&this.ctx.series.getPreviousPaths(),r.globals.axisCharts?(0===(i=t.map((function(t,e){return a._extendSeries(t,e)}))).length&&(i=[{data:[]}]),r.config.series=i):r.config.series=t.slice(),s&&(r.globals.initialSeries=f.clone(r.config.series)),this.ctx.update()}},{key:"_extendSeries",value:function(t,e){var i=this.w,a=i.config.series[e];return o(o({},i.config.series[e]),{},{name:t.name?t.name:a&&a.name,color:t.color?t.color:a&&a.color,type:t.type?t.type:a&&a.type,data:t.data?t.data:a&&a.data})}},{key:"toggleDataPointSelection",value:function(t,e){var i=this.w,a=null,s=".apexcharts-series[data\\:realIndex='".concat(t,"']");return i.globals.axisCharts?a=i.globals.dom.Paper.select("".concat(s," path[j='").concat(e,"'], ").concat(s," circle[j='").concat(e,"'], ").concat(s," rect[j='").concat(e,"']")).members[0]:void 0===e&&(a=i.globals.dom.Paper.select("".concat(s," path[j='").concat(t,"']")).members[0],"pie"!==i.config.chart.type&&"polarArea"!==i.config.chart.type&&"donut"!==i.config.chart.type||this.ctx.pie.pieClicked(t)),a?(new b(this.ctx).pathMouseDown(a,null),a.node?a.node:null):(console.warn("toggleDataPointSelection: Element not found"),null)}},{key:"forceXAxisUpdate",value:function(t){var e=this.w;if(["min","max"].forEach((function(i){void 0!==t.xaxis[i]&&(e.config.xaxis[i]=t.xaxis[i],e.globals.lastXAxis[i]=t.xaxis[i])})),t.xaxis.categories&&t.xaxis.categories.length&&(e.config.xaxis.categories=t.xaxis.categories),e.config.xaxis.convertedCatToNumeric){var i=new R(t);t=i.convertCatToNumericXaxis(t,this.ctx)}return t}},{key:"forceYAxisUpdate",value:function(t){var e=this.w;return e.config.chart.stacked&&"100%"===e.config.chart.stackType&&(Array.isArray(t.yaxis)?t.yaxis.forEach((function(e,i){t.yaxis[i].min=0,t.yaxis[i].max=100})):(t.yaxis.min=0,t.yaxis.max=100)),t}},{key:"revertDefaultAxisMinMax",value:function(t){var e=this,i=this.w,a=i.globals.lastXAxis,s=i.globals.lastYAxis;t&&t.xaxis&&(a=t.xaxis),t&&t.yaxis&&(s=t.yaxis),i.config.xaxis.min=a.min,i.config.xaxis.max=a.max;var r=function(t){void 0!==s[t]&&(i.config.yaxis[t].min=s[t].min,i.config.yaxis[t].max=s[t].max)};i.config.yaxis.map((function(t,a){i.globals.zoomed||void 0!==s[a]?r(a):void 0!==e.ctx.opts.yaxis[a]&&(t.min=e.ctx.opts.yaxis[a].min,t.max=e.ctx.opts.yaxis[a].max)}))}}]),i}();Tt="undefined"!=typeof window?window:void 0,zt=function(e,i){var a=(void 0!==this?this:e).SVG=function(t){if(a.supported)return t=new a.Doc(t),a.parser.draw||a.prepare(),t};if(a.ns="http://www.w3.org/2000/svg",a.xmlns="http://www.w3.org/2000/xmlns/",a.xlink="http://www.w3.org/1999/xlink",a.svgjs="http://svgjs.com/svgjs",a.supported=!0,!a.supported)return!1;a.did=1e3,a.eid=function(t){return"Svgjs"+d(t)+a.did++},a.create=function(t){var e=i.createElementNS(this.ns,t);return e.setAttribute("id",this.eid(t)),e},a.extend=function(){var t,e;e=(t=[].slice.call(arguments)).pop();for(var i=t.length-1;i>=0;i--)if(t[i])for(var s in e)t[i].prototype[s]=e[s];a.Set&&a.Set.inherit&&a.Set.inherit()},a.invent=function(t){var e="function"==typeof t.create?t.create:function(){this.constructor.call(this,a.create(t.create))};return t.inherit&&(e.prototype=new t.inherit),t.extend&&a.extend(e,t.extend),t.construct&&a.extend(t.parent||a.Container,t.construct),e},a.adopt=function(t){return t?t.instance?t.instance:((i="svg"==t.nodeName?t.parentNode instanceof e.SVGElement?new a.Nested:new a.Doc:"linearGradient"==t.nodeName?new a.Gradient("linear"):"radialGradient"==t.nodeName?new a.Gradient("radial"):a[d(t.nodeName)]?new(a[d(t.nodeName)]):new a.Element(t)).type=t.nodeName,i.node=t,t.instance=i,i instanceof a.Doc&&i.namespace().defs(),i.setData(JSON.parse(t.getAttribute("svgjs:data"))||{}),i):null;var i},a.prepare=function(){var t=i.getElementsByTagName("body")[0],e=(t?new a.Doc(t):a.adopt(i.documentElement).nested()).size(2,0);a.parser={body:t||i.documentElement,draw:e.style("opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden").node,poly:e.polyline().node,path:e.path().node,native:a.create("svg")}},a.parser={native:a.create("svg")},i.addEventListener("DOMContentLoaded",(function(){a.parser.draw||a.prepare()}),!1),a.regex={numberAndUnit:/^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,transforms:/\)\s*,?\s*/,whitespace:/\s/g,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,delimiter:/[\s,]+/,hyphen:/([^e])\-/gi,pathLetters:/[MLHVCSQTAZ]/gi,isPathLetter:/[MLHVCSQTAZ]/i,numbersWithDots:/((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,dots:/\./g},a.utils={map:function(t,e){for(var i=t.length,a=[],s=0;s1?1:t,new a.Color({r:~~(this.r+(this.destination.r-this.r)*t),g:~~(this.g+(this.destination.g-this.g)*t),b:~~(this.b+(this.destination.b-this.b)*t)})):this}}),a.Color.test=function(t){return t+="",a.regex.isHex.test(t)||a.regex.isRgb.test(t)},a.Color.isRgb=function(t){return t&&"number"==typeof t.r&&"number"==typeof t.g&&"number"==typeof t.b},a.Color.isColor=function(t){return a.Color.isRgb(t)||a.Color.test(t)},a.Array=function(t,e){0==(t=(t||[]).valueOf()).length&&e&&(t=e.valueOf()),this.value=this.parse(t)},a.extend(a.Array,{toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(t){return t=t.valueOf(),Array.isArray(t)?t:this.split(t)}}),a.PointArray=function(t,e){a.Array.call(this,t,e||[[0,0]])},a.PointArray.prototype=new a.Array,a.PointArray.prototype.constructor=a.PointArray;for(var s={M:function(t,e,i){return e.x=i.x=t[0],e.y=i.y=t[1],["M",e.x,e.y]},L:function(t,e){return e.x=t[0],e.y=t[1],["L",t[0],t[1]]},H:function(t,e){return e.x=t[0],["H",t[0]]},V:function(t,e){return e.y=t[0],["V",t[0]]},C:function(t,e){return e.x=t[4],e.y=t[5],["C",t[0],t[1],t[2],t[3],t[4],t[5]]},Q:function(t,e){return e.x=t[2],e.y=t[3],["Q",t[0],t[1],t[2],t[3]]},Z:function(t,e,i){return e.x=i.x,e.y=i.y,["Z"]}},r="mlhvqtcsaz".split(""),o=0,n=r.length;ol);return r},bbox:function(){return a.parser.draw||a.prepare(),a.parser.path.setAttribute("d",this.toString()),a.parser.path.getBBox()}}),a.Number=a.invent({create:function(t,e){this.value=0,this.unit=e||"","number"==typeof t?this.value=isNaN(t)?0:isFinite(t)?t:t<0?-34e37:34e37:"string"==typeof t?(e=t.match(a.regex.numberAndUnit))&&(this.value=parseFloat(e[1]),"%"==e[5]?this.value/=100:"s"==e[5]&&(this.value*=1e3),this.unit=e[5]):t instanceof a.Number&&(this.value=t.valueOf(),this.unit=t.unit)},extend:{toString:function(){return("%"==this.unit?~~(1e8*this.value)/1e6:"s"==this.unit?this.value/1e3:this.value)+this.unit},toJSON:function(){return this.toString()},valueOf:function(){return this.value},plus:function(t){return t=new a.Number(t),new a.Number(this+t,this.unit||t.unit)},minus:function(t){return t=new a.Number(t),new a.Number(this-t,this.unit||t.unit)},times:function(t){return t=new a.Number(t),new a.Number(this*t,this.unit||t.unit)},divide:function(t){return t=new a.Number(t),new a.Number(this/t,this.unit||t.unit)},to:function(t){var e=new a.Number(this);return"string"==typeof t&&(e.unit=t),e},morph:function(t){return this.destination=new a.Number(t),t.relative&&(this.destination.value+=this.value),this},at:function(t){return this.destination?new a.Number(this.destination).minus(this).times(t).plus(this):this}}}),a.Element=a.invent({create:function(t){this._stroke=a.defaults.attrs.stroke,this._event=null,this.dom={},(this.node=t)&&(this.type=t.nodeName,this.node.instance=this,this._stroke=t.getAttribute("stroke")||this._stroke)},extend:{x:function(t){return this.attr("x",t)},y:function(t){return this.attr("y",t)},cx:function(t){return null==t?this.x()+this.width()/2:this.x(t-this.width()/2)},cy:function(t){return null==t?this.y()+this.height()/2:this.y(t-this.height()/2)},move:function(t,e){return this.x(t).y(e)},center:function(t,e){return this.cx(t).cy(e)},width:function(t){return this.attr("width",t)},height:function(t){return this.attr("height",t)},size:function(t,e){var i=u(this,t,e);return this.width(new a.Number(i.width)).height(new a.Number(i.height))},clone:function(t){this.writeDataToDom();var e=x(this.node.cloneNode(!0));return t?t.add(e):this.after(e),e},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(t){return this.after(t).remove(),t},addTo:function(t){return t.put(this)},putIn:function(t){return t.add(this)},id:function(t){return this.attr("id",t)},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return"none"!=this.style("display")},toString:function(){return this.attr("id")},classes:function(){var t=this.attr("class");return null==t?[]:t.trim().split(a.regex.delimiter)},hasClass:function(t){return-1!=this.classes().indexOf(t)},addClass:function(t){if(!this.hasClass(t)){var e=this.classes();e.push(t),this.attr("class",e.join(" "))}return this},removeClass:function(t){return this.hasClass(t)&&this.attr("class",this.classes().filter((function(e){return e!=t})).join(" ")),this},toggleClass:function(t){return this.hasClass(t)?this.removeClass(t):this.addClass(t)},reference:function(t){return a.get(this.attr(t))},parent:function(t){var i=this;if(!i.node.parentNode)return null;if(i=a.adopt(i.node.parentNode),!t)return i;for(;i&&i.node instanceof e.SVGElement;){if("string"==typeof t?i.matches(t):i instanceof t)return i;if(!i.node.parentNode||"#document"==i.node.parentNode.nodeName)return null;i=a.adopt(i.node.parentNode)}},doc:function(){return this instanceof a.Doc?this:this.parent(a.Doc)},parents:function(t){var e=[],i=this;do{if(!(i=i.parent(t))||!i.node)break;e.push(i)}while(i.parent);return e},matches:function(t){return function(t,e){return(t.matches||t.matchesSelector||t.msMatchesSelector||t.mozMatchesSelector||t.webkitMatchesSelector||t.oMatchesSelector).call(t,e)}(this.node,t)},native:function(){return this.node},svg:function(t){var e=i.createElement("svg");if(!(t&&this instanceof a.Parent))return e.appendChild(t=i.createElement("svg")),this.writeDataToDom(),t.appendChild(this.node.cloneNode(!0)),e.innerHTML.replace(/^/,"").replace(/<\/svg>$/,"");e.innerHTML=""+t.replace(/\n/,"").replace(/<([\w:-]+)([^<]+?)\/>/g,"<$1$2>")+"";for(var s=0,r=e.firstChild.childNodes.length;s":function(t){return-Math.cos(t*Math.PI)/2+.5},">":function(t){return Math.sin(t*Math.PI/2)},"<":function(t){return 1-Math.cos(t*Math.PI/2)}},a.morph=function(t){return function(e,i){return new a.MorphObj(e,i).at(t)}},a.Situation=a.invent({create:function(t){this.init=!1,this.reversed=!1,this.reversing=!1,this.duration=new a.Number(t.duration).valueOf(),this.delay=new a.Number(t.delay).valueOf(),this.start=+new Date+this.delay,this.finish=this.start+this.duration,this.ease=t.ease,this.loop=0,this.loops=!1,this.animations={},this.attrs={},this.styles={},this.transforms=[],this.once={}}}),a.FX=a.invent({create:function(t){this._target=t,this.situations=[],this.active=!1,this.situation=null,this.paused=!1,this.lastPos=0,this.pos=0,this.absPos=0,this._speed=1},extend:{animate:function(e,i,s){"object"===t(e)&&(i=e.ease,s=e.delay,e=e.duration);var r=new a.Situation({duration:e||1e3,delay:s||0,ease:a.easing[i||"-"]||i});return this.queue(r),this},target:function(t){return t&&t instanceof a.Element?(this._target=t,this):this._target},timeToAbsPos:function(t){return(t-this.situation.start)/(this.situation.duration/this._speed)},absPosToTime:function(t){return this.situation.duration/this._speed*t+this.situation.start},startAnimFrame:function(){this.stopAnimFrame(),this.animationFrame=e.requestAnimationFrame(function(){this.step()}.bind(this))},stopAnimFrame:function(){e.cancelAnimationFrame(this.animationFrame)},start:function(){return!this.active&&this.situation&&(this.active=!0,this.startCurrent()),this},startCurrent:function(){return this.situation.start=+new Date+this.situation.delay/this._speed,this.situation.finish=this.situation.start+this.situation.duration/this._speed,this.initAnimations().step()},queue:function(t){return("function"==typeof t||t instanceof a.Situation)&&this.situations.push(t),this.situation||(this.situation=this.situations.shift()),this},dequeue:function(){return this.stop(),this.situation=this.situations.shift(),this.situation&&(this.situation instanceof a.Situation?this.start():this.situation.call(this)),this},initAnimations:function(){var t,e=this.situation;if(e.init)return this;for(var i in e.animations){t=this.target()[i](),Array.isArray(t)||(t=[t]),Array.isArray(e.animations[i])||(e.animations[i]=[e.animations[i]]);for(var s=t.length;s--;)e.animations[i][s]instanceof a.Number&&(t[s]=new a.Number(t[s])),e.animations[i][s]=t[s].morph(e.animations[i][s])}for(var i in e.attrs)e.attrs[i]=new a.MorphObj(this.target().attr(i),e.attrs[i]);for(var i in e.styles)e.styles[i]=new a.MorphObj(this.target().style(i),e.styles[i]);return e.initialTransformation=this.target().matrixify(),e.init=!0,this},clearQueue:function(){return this.situations=[],this},clearCurrent:function(){return this.situation=null,this},stop:function(t,e){var i=this.active;return this.active=!1,e&&this.clearQueue(),t&&this.situation&&(!i&&this.startCurrent(),this.atEnd()),this.stopAnimFrame(),this.clearCurrent()},after:function(t){var e=this.last();return this.target().on("finished.fx",(function i(a){a.detail.situation==e&&(t.call(this,e),this.off("finished.fx",i))})),this._callStart()},during:function(t){var e=this.last(),i=function(i){i.detail.situation==e&&t.call(this,i.detail.pos,a.morph(i.detail.pos),i.detail.eased,e)};return this.target().off("during.fx",i).on("during.fx",i),this.after((function(){this.off("during.fx",i)})),this._callStart()},afterAll:function(t){var e=function e(i){t.call(this),this.off("allfinished.fx",e)};return this.target().off("allfinished.fx",e).on("allfinished.fx",e),this._callStart()},last:function(){return this.situations.length?this.situations[this.situations.length-1]:this.situation},add:function(t,e,i){return this.last()[i||"animations"][t]=e,this._callStart()},step:function(t){var e,i,a;t||(this.absPos=this.timeToAbsPos(+new Date)),!1!==this.situation.loops?(e=Math.max(this.absPos,0),i=Math.floor(e),!0===this.situation.loops||ithis.lastPos&&r<=s&&(this.situation.once[r].call(this.target(),this.pos,s),delete this.situation.once[r]);return this.active&&this.target().fire("during",{pos:this.pos,eased:s,fx:this,situation:this.situation}),this.situation?(this.eachAt(),1==this.pos&&!this.situation.reversed||this.situation.reversed&&0==this.pos?(this.stopAnimFrame(),this.target().fire("finished",{fx:this,situation:this.situation}),this.situations.length||(this.target().fire("allfinished"),this.situations.length||(this.target().off(".fx"),this.active=!1)),this.active?this.dequeue():this.clearCurrent()):!this.paused&&this.active&&this.startAnimFrame(),this.lastPos=s,this):this},eachAt:function(){var t,e=this,i=this.target(),s=this.situation;for(var r in s.animations)t=[].concat(s.animations[r]).map((function(t){return"string"!=typeof t&&t.at?t.at(s.ease(e.pos),e.pos):t})),i[r].apply(i,t);for(var r in s.attrs)t=[r].concat(s.attrs[r]).map((function(t){return"string"!=typeof t&&t.at?t.at(s.ease(e.pos),e.pos):t})),i.attr.apply(i,t);for(var r in s.styles)t=[r].concat(s.styles[r]).map((function(t){return"string"!=typeof t&&t.at?t.at(s.ease(e.pos),e.pos):t})),i.style.apply(i,t);if(s.transforms.length){t=s.initialTransformation,r=0;for(var o=s.transforms.length;r=0;--s)this[v[s]]=null!=e[v[s]]?e[v[s]]:i[v[s]]},extend:{extract:function(){var t=f(this,0,1),e=(f(this,1,0),180/Math.PI*Math.atan2(t.y,t.x)-90);return{x:this.e,y:this.f,transformedX:(this.e*Math.cos(e*Math.PI/180)+this.f*Math.sin(e*Math.PI/180))/Math.sqrt(this.a*this.a+this.b*this.b),transformedY:(this.f*Math.cos(e*Math.PI/180)+this.e*Math.sin(-e*Math.PI/180))/Math.sqrt(this.c*this.c+this.d*this.d),rotation:e,a:this.a,b:this.b,c:this.c,d:this.d,e:this.e,f:this.f,matrix:new a.Matrix(this)}},clone:function(){return new a.Matrix(this)},morph:function(t){return this.destination=new a.Matrix(t),this},multiply:function(t){return new a.Matrix(this.native().multiply(function(t){return t instanceof a.Matrix||(t=new a.Matrix(t)),t}(t).native()))},inverse:function(){return new a.Matrix(this.native().inverse())},translate:function(t,e){return new a.Matrix(this.native().translate(t||0,e||0))},native:function(){for(var t=a.parser.native.createSVGMatrix(),e=v.length-1;e>=0;e--)t[v[e]]=this[v[e]];return t},toString:function(){return"matrix("+m(this.a)+","+m(this.b)+","+m(this.c)+","+m(this.d)+","+m(this.e)+","+m(this.f)+")"}},parent:a.Element,construct:{ctm:function(){return new a.Matrix(this.node.getCTM())},screenCTM:function(){if(this instanceof a.Nested){var t=this.rect(1,1),e=t.node.getScreenCTM();return t.remove(),new a.Matrix(e)}return new a.Matrix(this.node.getScreenCTM())}}}),a.Point=a.invent({create:function(e,i){var a;a=Array.isArray(e)?{x:e[0],y:e[1]}:"object"===t(e)?{x:e.x,y:e.y}:null!=e?{x:e,y:null!=i?i:e}:{x:0,y:0},this.x=a.x,this.y=a.y},extend:{clone:function(){return new a.Point(this)},morph:function(t,e){return this.destination=new a.Point(t,e),this}}}),a.extend(a.Element,{point:function(t,e){return new a.Point(t,e).transform(this.screenCTM().inverse())}}),a.extend(a.Element,{attr:function(e,i,s){if(null==e){for(e={},s=(i=this.node.attributes).length-1;s>=0;s--)e[i[s].nodeName]=a.regex.isNumber.test(i[s].nodeValue)?parseFloat(i[s].nodeValue):i[s].nodeValue;return e}if("object"===t(e))for(var r in e)this.attr(r,e[r]);else if(null===i)this.node.removeAttribute(e);else{if(null==i)return null==(i=this.node.getAttribute(e))?a.defaults.attrs[e]:a.regex.isNumber.test(i)?parseFloat(i):i;"stroke-width"==e?this.attr("stroke",parseFloat(i)>0?this._stroke:null):"stroke"==e&&(this._stroke=i),"fill"!=e&&"stroke"!=e||(a.regex.isImage.test(i)&&(i=this.doc().defs().image(i,0,0)),i instanceof a.Image&&(i=this.doc().defs().pattern(0,0,(function(){this.add(i)})))),"number"==typeof i?i=new a.Number(i):a.Color.isColor(i)?i=new a.Color(i):Array.isArray(i)&&(i=new a.Array(i)),"leading"==e?this.leading&&this.leading(i):"string"==typeof s?this.node.setAttributeNS(s,e,i.toString()):this.node.setAttribute(e,i.toString()),!this.rebuild||"font-size"!=e&&"x"!=e||this.rebuild(e,i)}return this}}),a.extend(a.Element,{transform:function(e,i){var s;return"object"!==t(e)?(s=new a.Matrix(this).extract(),"string"==typeof e?s[e]:s):(s=new a.Matrix(this),i=!!i||!!e.relative,null!=e.a&&(s=i?s.multiply(new a.Matrix(e)):new a.Matrix(e)),this.attr("transform",s))}}),a.extend(a.Element,{untransform:function(){return this.attr("transform",null)},matrixify:function(){return(this.attr("transform")||"").split(a.regex.transforms).slice(0,-1).map((function(t){var e=t.trim().split("(");return[e[0],e[1].split(a.regex.delimiter).map((function(t){return parseFloat(t)}))]})).reduce((function(t,e){return"matrix"==e[0]?t.multiply(p(e[1])):t[e[0]].apply(t,e[1])}),new a.Matrix)},toParent:function(t){if(this==t)return this;var e=this.screenCTM(),i=t.screenCTM().inverse();return this.addTo(t).untransform().transform(i.multiply(e)),this},toDoc:function(){return this.toParent(this.doc())}}),a.Transformation=a.invent({create:function(e,i){if(arguments.length>1&&"boolean"!=typeof i)return this.constructor.call(this,[].slice.call(arguments));if(Array.isArray(e))for(var a=0,s=this.arguments.length;a=0},index:function(t){return[].slice.call(this.node.childNodes).indexOf(t.node)},get:function(t){return a.adopt(this.node.childNodes[t])},first:function(){return this.get(0)},last:function(){return this.get(this.node.childNodes.length-1)},each:function(t,e){for(var i=this.children(),s=0,r=i.length;s=0;i--)t.childNodes[i]instanceof e.SVGElement&&x(t.childNodes[i]);return a.adopt(t).id(a.eid(t.nodeName))}function b(t){return null==t.x&&(t.x=0,t.y=0,t.width=0,t.height=0),t.w=t.width,t.h=t.height,t.x2=t.x+t.width,t.y2=t.y+t.height,t.cx=t.x+t.width/2,t.cy=t.y+t.height/2,t}function m(t){return Math.abs(t)>1e-37?t:0}["fill","stroke"].forEach((function(t){var e={};e[t]=function(e){if(void 0===e)return this;if("string"==typeof e||a.Color.isRgb(e)||e&&"function"==typeof e.fill)this.attr(t,e);else for(var i=l[t].length-1;i>=0;i--)null!=e[l[t][i]]&&this.attr(l.prefix(t,l[t][i]),e[l[t][i]]);return this},a.extend(a.Element,a.FX,e)})),a.extend(a.Element,a.FX,{translate:function(t,e){return this.transform({x:t,y:e})},matrix:function(t){return this.attr("transform",new a.Matrix(6==arguments.length?[].slice.call(arguments):t))},opacity:function(t){return this.attr("opacity",t)},dx:function(t){return this.x(new a.Number(t).plus(this instanceof a.FX?0:this.x()),!0)},dy:function(t){return this.y(new a.Number(t).plus(this instanceof a.FX?0:this.y()),!0)}}),a.extend(a.Path,{length:function(){return this.node.getTotalLength()},pointAt:function(t){return this.node.getPointAtLength(t)}}),a.Set=a.invent({create:function(t){Array.isArray(t)?this.members=t:this.clear()},extend:{add:function(){for(var t=[].slice.call(arguments),e=0,i=t.length;e-1&&this.members.splice(e,1),this},each:function(t){for(var e=0,i=this.members.length;e=0},index:function(t){return this.members.indexOf(t)},get:function(t){return this.members[t]},first:function(){return this.get(0)},last:function(){return this.get(this.members.length-1)},valueOf:function(){return this.members}},construct:{set:function(t){return new a.Set(t)}}}),a.FX.Set=a.invent({create:function(t){this.set=t}}),a.Set.inherit=function(){var t=[];for(var e in a.Shape.prototype)"function"==typeof a.Shape.prototype[e]&&"function"!=typeof a.Set.prototype[e]&&t.push(e);for(var e in t.forEach((function(t){a.Set.prototype[t]=function(){for(var e=0,i=this.members.length;e=0;t--)delete this.memory()[arguments[t]];return this},memory:function(){return this._memory||(this._memory={})}}),a.get=function(t){var e=i.getElementById(function(t){var e=(t||"").toString().match(a.regex.reference);if(e)return e[1]}(t)||t);return a.adopt(e)},a.select=function(t,e){return new a.Set(a.utils.map((e||i).querySelectorAll(t),(function(t){return a.adopt(t)})))},a.extend(a.Parent,{select:function(t){return a.select(t,this.node)}});var v="abcdef".split("");if("function"!=typeof e.CustomEvent){var y=function(t,e){e=e||{bubbles:!1,cancelable:!1,detail:void 0};var a=i.createEvent("CustomEvent");return a.initCustomEvent(t,e.bubbles,e.cancelable,e.detail),a};y.prototype=e.Event.prototype,a.CustomEvent=y}else a.CustomEvent=e.CustomEvent;return a},"function"==typeof define&&define.amd?define((function(){return zt(Tt,Tt.document)})):"object"===("undefined"==typeof exports?"undefined":t(exports))&&"undefined"!=typeof module?module.exports=Tt.document?zt(Tt,Tt.document):function(t){return zt(t,t.document)}:Tt.SVG=zt(Tt,Tt.document), +/*! svg.filter.js - v2.0.2 - 2016-02-24 +* https://github.com/wout/svg.filter.js +* Copyright (c) 2016 Wout Fierens; Licensed MIT */ +function(){SVG.Filter=SVG.invent({create:"filter",inherit:SVG.Parent,extend:{source:"SourceGraphic",sourceAlpha:"SourceAlpha",background:"BackgroundImage",backgroundAlpha:"BackgroundAlpha",fill:"FillPaint",stroke:"StrokePaint",autoSetIn:!0,put:function(t,e){return this.add(t,e),!t.attr("in")&&this.autoSetIn&&t.attr("in",this.source),t.attr("result")||t.attr("result",t),t},blend:function(t,e,i){return this.put(new SVG.BlendEffect(t,e,i))},colorMatrix:function(t,e){return this.put(new SVG.ColorMatrixEffect(t,e))},convolveMatrix:function(t){return this.put(new SVG.ConvolveMatrixEffect(t))},componentTransfer:function(t){return this.put(new SVG.ComponentTransferEffect(t))},composite:function(t,e,i){return this.put(new SVG.CompositeEffect(t,e,i))},flood:function(t,e){return this.put(new SVG.FloodEffect(t,e))},offset:function(t,e){return this.put(new SVG.OffsetEffect(t,e))},image:function(t){return this.put(new SVG.ImageEffect(t))},merge:function(){var t=[void 0];for(var e in arguments)t.push(arguments[e]);return this.put(new(SVG.MergeEffect.bind.apply(SVG.MergeEffect,t)))},gaussianBlur:function(t,e){return this.put(new SVG.GaussianBlurEffect(t,e))},morphology:function(t,e){return this.put(new SVG.MorphologyEffect(t,e))},diffuseLighting:function(t,e,i){return this.put(new SVG.DiffuseLightingEffect(t,e,i))},displacementMap:function(t,e,i,a,s){return this.put(new SVG.DisplacementMapEffect(t,e,i,a,s))},specularLighting:function(t,e,i,a){return this.put(new SVG.SpecularLightingEffect(t,e,i,a))},tile:function(){return this.put(new SVG.TileEffect)},turbulence:function(t,e,i,a,s){return this.put(new SVG.TurbulenceEffect(t,e,i,a,s))},toString:function(){return"url(#"+this.attr("id")+")"}}}),SVG.extend(SVG.Defs,{filter:function(t){var e=this.put(new SVG.Filter);return"function"==typeof t&&t.call(e,e),e}}),SVG.extend(SVG.Container,{filter:function(t){return this.defs().filter(t)}}),SVG.extend(SVG.Element,SVG.G,SVG.Nested,{filter:function(t){return this.filterer=t instanceof SVG.Element?t:this.doc().filter(t),this.doc()&&this.filterer.doc()!==this.doc()&&this.doc().defs().add(this.filterer),this.attr("filter",this.filterer),this.filterer},unfilter:function(t){return this.filterer&&!0===t&&this.filterer.remove(),delete this.filterer,this.attr("filter",null)}}),SVG.Effect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(t){return null==t?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",t)},result:function(t){return null==t?this.attr("result"):this.attr("result",t)},toString:function(){return this.result()}}}),SVG.ParentEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Parent,extend:{in:function(t){return null==t?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",t)},result:function(t){return null==t?this.attr("result"):this.attr("result",t)},toString:function(){return this.result()}}});var t={blend:function(t,e){return this.parent()&&this.parent().blend(this,t,e)},colorMatrix:function(t,e){return this.parent()&&this.parent().colorMatrix(t,e).in(this)},convolveMatrix:function(t){return this.parent()&&this.parent().convolveMatrix(t).in(this)},componentTransfer:function(t){return this.parent()&&this.parent().componentTransfer(t).in(this)},composite:function(t,e){return this.parent()&&this.parent().composite(this,t,e)},flood:function(t,e){return this.parent()&&this.parent().flood(t,e)},offset:function(t,e){return this.parent()&&this.parent().offset(t,e).in(this)},image:function(t){return this.parent()&&this.parent().image(t)},merge:function(){return this.parent()&&this.parent().merge.apply(this.parent(),[this].concat(arguments))},gaussianBlur:function(t,e){return this.parent()&&this.parent().gaussianBlur(t,e).in(this)},morphology:function(t,e){return this.parent()&&this.parent().morphology(t,e).in(this)},diffuseLighting:function(t,e,i){return this.parent()&&this.parent().diffuseLighting(t,e,i).in(this)},displacementMap:function(t,e,i,a){return this.parent()&&this.parent().displacementMap(this,t,e,i,a)},specularLighting:function(t,e,i,a){return this.parent()&&this.parent().specularLighting(t,e,i,a).in(this)},tile:function(){return this.parent()&&this.parent().tile().in(this)},turbulence:function(t,e,i,a,s){return this.parent()&&this.parent().turbulence(t,e,i,a,s).in(this)}};SVG.extend(SVG.Effect,t),SVG.extend(SVG.ParentEffect,t),SVG.ChildEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(t){this.attr("in",t)}}});var e={blend:function(t,e,i){this.attr({in:t,in2:e,mode:i||"normal"})},colorMatrix:function(t,e){"matrix"==t&&(e=s(e)),this.attr({type:t,values:void 0===e?null:e})},convolveMatrix:function(t){t=s(t),this.attr({order:Math.sqrt(t.split(" ").length),kernelMatrix:t})},composite:function(t,e,i){this.attr({in:t,in2:e,operator:i})},flood:function(t,e){this.attr("flood-color",t),null!=e&&this.attr("flood-opacity",e)},offset:function(t,e){this.attr({dx:t,dy:e})},image:function(t){this.attr("href",t,SVG.xlink)},displacementMap:function(t,e,i,a,s){this.attr({in:t,in2:e,scale:i,xChannelSelector:a,yChannelSelector:s})},gaussianBlur:function(t,e){null!=t||null!=e?this.attr("stdDeviation",r(Array.prototype.slice.call(arguments))):this.attr("stdDeviation","0 0")},morphology:function(t,e){this.attr({operator:t,radius:e})},tile:function(){},turbulence:function(t,e,i,a,s){this.attr({numOctaves:e,seed:i,stitchTiles:a,baseFrequency:t,type:s})}},i={merge:function(){var t;if(arguments[0]instanceof SVG.Set){var e=this;arguments[0].each((function(t){this instanceof SVG.MergeNode?e.put(this):(this instanceof SVG.Effect||this instanceof SVG.ParentEffect)&&e.put(new SVG.MergeNode(this))}))}else{t=Array.isArray(arguments[0])?arguments[0]:arguments;for(var i=0;i1&&(T*=a=Math.sqrt(a),z*=a);s=(new SVG.Matrix).rotate(I).scale(1/T,1/z).rotate(-I),F=F.transform(s),R=R.transform(s),r=[R.x-F.x,R.y-F.y],n=r[0]*r[0]+r[1]*r[1],o=Math.sqrt(n),r[0]/=o,r[1]/=o,l=n<4?Math.sqrt(1-n/4):0,M===X&&(l*=-1);h=new SVG.Point((R.x+F.x)/2+l*-r[1],(R.y+F.y)/2+l*r[0]),c=new SVG.Point(F.x-h.x,F.y-h.y),d=new SVG.Point(R.x-h.x,R.y-h.y),g=Math.acos(c.x/Math.sqrt(c.x*c.x+c.y*c.y)),c.y<0&&(g*=-1);u=Math.acos(d.x/Math.sqrt(d.x*d.x+d.y*d.y)),d.y<0&&(u*=-1);X&&g>u&&(u+=2*Math.PI);!X&&gr.maxX-e.width&&(o=(a=r.maxX-e.width)-this.startPoints.box.x),null!=r.minY&&sr.maxY-e.height&&(n=(s=r.maxY-e.height)-this.startPoints.box.y),null!=r.snapToGrid&&(a-=a%r.snapToGrid,s-=s%r.snapToGrid,o-=o%r.snapToGrid,n-=n%r.snapToGrid),this.el instanceof SVG.G?this.el.matrix(this.startPoints.transform).transform({x:o,y:n},!0):this.el.move(a,s));return i},t.prototype.end=function(t){var e=this.drag(t);this.el.fire("dragend",{event:t,p:e,m:this.m,handler:this}),SVG.off(window,"mousemove.drag"),SVG.off(window,"touchmove.drag"),SVG.off(window,"mouseup.drag"),SVG.off(window,"touchend.drag")},SVG.extend(SVG.Element,{draggable:function(e,i){"function"!=typeof e&&"object"!=typeof e||(i=e,e=!0);var a=this.remember("_draggable")||new t(this);return(e=void 0===e||e)?a.init(i||{},e):(this.off("mousedown.drag"),this.off("touchstart.drag")),this}})}.call(void 0),function(){function t(t){this.el=t,t.remember("_selectHandler",this),this.pointSelection={isSelected:!1},this.rectSelection={isSelected:!1},this.pointsList={lt:[0,0],rt:["width",0],rb:["width","height"],lb:[0,"height"],t:["width",0],r:["width","height"],b:["width","height"],l:[0,"height"]},this.pointCoord=function(t,e,i){var a="string"!=typeof t?t:e[t];return i?a/2:a},this.pointCoords=function(t,e){var i=this.pointsList[t];return{x:this.pointCoord(i[0],e,"t"===t||"b"===t),y:this.pointCoord(i[1],e,"r"===t||"l"===t)}}}t.prototype.init=function(t,e){var i=this.el.bbox();this.options={};var a=this.el.selectize.defaults.points;for(var s in this.el.selectize.defaults)this.options[s]=this.el.selectize.defaults[s],void 0!==e[s]&&(this.options[s]=e[s]);var r=["points","pointsExclude"];for(var s in r){var o=this.options[r[s]];"string"==typeof o?o=o.length>0?o.split(/\s*,\s*/i):[]:"boolean"==typeof o&&"points"===r[s]&&(o=o?a:[]),this.options[r[s]]=o}this.options.points=[a,this.options.points].reduce((function(t,e){return t.filter((function(t){return e.indexOf(t)>-1}))})),this.options.points=[this.options.points,this.options.pointsExclude].reduce((function(t,e){return t.filter((function(t){return e.indexOf(t)<0}))})),this.parent=this.el.parent(),this.nested=this.nested||this.parent.group(),this.nested.matrix(new SVG.Matrix(this.el).translate(i.x,i.y)),this.options.deepSelect&&-1!==["line","polyline","polygon"].indexOf(this.el.type)?this.selectPoints(t):this.selectRect(t),this.observe(),this.cleanup()},t.prototype.selectPoints=function(t){return this.pointSelection.isSelected=t,this.pointSelection.set||(this.pointSelection.set=this.parent.set(),this.drawPoints()),this},t.prototype.getPointArray=function(){var t=this.el.bbox();return this.el.array().valueOf().map((function(e){return[e[0]-t.x,e[1]-t.y]}))},t.prototype.drawPoints=function(){for(var t=this,e=this.getPointArray(),i=0,a=e.length;i0&&this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x+i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-i[0]);i=this.checkAspectRatio(i),this.el.move(this.parameters.box.x+i[0],this.parameters.box.y+i[1]).size(this.parameters.box.width-i[0],this.parameters.box.height-i[1])}};break;case"rt":this.calc=function(t,e){var i=this.snapToGrid(t,e,2);if(this.parameters.box.width+i[0]>0&&this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x-i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+i[0]);i=this.checkAspectRatio(i,!0),this.el.move(this.parameters.box.x,this.parameters.box.y+i[1]).size(this.parameters.box.width+i[0],this.parameters.box.height-i[1])}};break;case"rb":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.width+i[0]>0&&this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x-i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+i[0]);i=this.checkAspectRatio(i),this.el.move(this.parameters.box.x,this.parameters.box.y).size(this.parameters.box.width+i[0],this.parameters.box.height+i[1])}};break;case"lb":this.calc=function(t,e){var i=this.snapToGrid(t,e,1);if(this.parameters.box.width-i[0]>0&&this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x+i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-i[0]);i=this.checkAspectRatio(i,!0),this.el.move(this.parameters.box.x+i[0],this.parameters.box.y).size(this.parameters.box.width-i[0],this.parameters.box.height+i[1])}};break;case"t":this.calc=function(t,e){var i=this.snapToGrid(t,e,2);if(this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y+i[1]).height(this.parameters.box.height-i[1])}};break;case"r":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.width+i[0]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y).width(this.parameters.box.width+i[0])}};break;case"b":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y).height(this.parameters.box.height+i[1])}};break;case"l":this.calc=function(t,e){var i=this.snapToGrid(t,e,1);if(this.parameters.box.width-i[0]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x+i[0],this.parameters.box.y).width(this.parameters.box.width-i[0])}};break;case"rot":this.calc=function(t,e){var i=t+this.parameters.p.x,a=e+this.parameters.p.y,s=Math.atan2(this.parameters.p.y-this.parameters.box.y-this.parameters.box.height/2,this.parameters.p.x-this.parameters.box.x-this.parameters.box.width/2),r=Math.atan2(a-this.parameters.box.y-this.parameters.box.height/2,i-this.parameters.box.x-this.parameters.box.width/2),o=this.parameters.rotation+180*(r-s)/Math.PI+this.options.snapToAngle/2;this.el.center(this.parameters.box.cx,this.parameters.box.cy).rotate(o-o%this.options.snapToAngle,this.parameters.box.cx,this.parameters.box.cy)};break;case"point":this.calc=function(t,e){var i=this.snapToGrid(t,e,this.parameters.pointCoords[0],this.parameters.pointCoords[1]),a=this.el.array().valueOf();a[this.parameters.i][0]=this.parameters.pointCoords[0]+i[0],a[this.parameters.i][1]=this.parameters.pointCoords[1]+i[1],this.el.plot(a)}}this.el.fire("resizestart",{dx:this.parameters.x,dy:this.parameters.y,event:t}),SVG.on(window,"touchmove.resize",(function(t){e.update(t||window.event)})),SVG.on(window,"touchend.resize",(function(){e.done()})),SVG.on(window,"mousemove.resize",(function(t){e.update(t||window.event)})),SVG.on(window,"mouseup.resize",(function(){e.done()}))},t.prototype.update=function(t){if(t){var e=this._extractPosition(t),i=this.transformPoint(e.x,e.y),a=i.x-this.parameters.p.x,s=i.y-this.parameters.p.y;this.lastUpdateCall=[a,s],this.calc(a,s),this.el.fire("resizing",{dx:a,dy:s,event:t})}else this.lastUpdateCall&&this.calc(this.lastUpdateCall[0],this.lastUpdateCall[1])},t.prototype.done=function(){this.lastUpdateCall=null,SVG.off(window,"mousemove.resize"),SVG.off(window,"mouseup.resize"),SVG.off(window,"touchmove.resize"),SVG.off(window,"touchend.resize"),this.el.fire("resizedone")},t.prototype.snapToGrid=function(t,e,i,a){var s;return void 0!==a?s=[(i+t)%this.options.snapToGrid,(a+e)%this.options.snapToGrid]:(i=null==i?3:i,s=[(this.parameters.box.x+t+(1&i?0:this.parameters.box.width))%this.options.snapToGrid,(this.parameters.box.y+e+(2&i?0:this.parameters.box.height))%this.options.snapToGrid]),t<0&&(s[0]-=this.options.snapToGrid),e<0&&(s[1]-=this.options.snapToGrid),t-=Math.abs(s[0])o.maxX&&(t=o.maxX-s),void 0!==o.minY&&r+eo.maxY&&(e=o.maxY-r),[t,e]},t.prototype.checkAspectRatio=function(t,e){if(!this.options.saveAspectRatio)return t;var i=t.slice(),a=this.parameters.box.width/this.parameters.box.height,s=this.parameters.box.width+t[0],r=this.parameters.box.height-t[1],o=s/r;return oa&&(i[0]=this.parameters.box.width-r*a,e&&(i[0]=-i[0])),i},SVG.extend(SVG.Element,{resize:function(e){return(this.remember("_resizeHandler")||new t(this)).init(e||{}),this}}),SVG.Element.prototype.resize.defaults={snapToAngle:.1,snapToGrid:1,constraint:{},saveAspectRatio:!1}}).call(this)}();!function(t,e){void 0===e&&(e={});var i=e.insertAt;if(t&&"undefined"!=typeof document){var a=document.head||document.getElementsByTagName("head")[0],s=document.createElement("style");s.type="text/css","top"===i&&a.firstChild?a.insertBefore(s,a.firstChild):a.appendChild(s),s.styleSheet?s.styleSheet.cssText=t:s.appendChild(document.createTextNode(t))}}('.apexcharts-canvas {\n position: relative;\n user-select: none;\n /* cannot give overflow: hidden as it will crop tooltips which overflow outside chart area */\n}\n\n\n/* scrollbar is not visible by default for legend, hence forcing the visibility */\n.apexcharts-canvas ::-webkit-scrollbar {\n -webkit-appearance: none;\n width: 6px;\n}\n\n.apexcharts-canvas ::-webkit-scrollbar-thumb {\n border-radius: 4px;\n background-color: rgba(0, 0, 0, .5);\n box-shadow: 0 0 1px rgba(255, 255, 255, .5);\n -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);\n}\n\n\n.apexcharts-inner {\n position: relative;\n}\n\n.apexcharts-text tspan {\n font-family: inherit;\n}\n\n.legend-mouseover-inactive {\n transition: 0.15s ease all;\n opacity: 0.20;\n}\n\n.apexcharts-series-collapsed {\n opacity: 0;\n}\n\n.apexcharts-tooltip {\n border-radius: 5px;\n box-shadow: 2px 2px 6px -4px #999;\n cursor: default;\n font-size: 14px;\n left: 62px;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n top: 20px;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n white-space: nowrap;\n z-index: 12;\n transition: 0.15s ease all;\n}\n\n.apexcharts-tooltip.apexcharts-active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-tooltip.apexcharts-theme-light {\n border: 1px solid #e3e3e3;\n background: rgba(255, 255, 255, 0.96);\n}\n\n.apexcharts-tooltip.apexcharts-theme-dark {\n color: #fff;\n background: rgba(30, 30, 30, 0.8);\n}\n\n.apexcharts-tooltip * {\n font-family: inherit;\n}\n\n\n.apexcharts-tooltip-title {\n padding: 6px;\n font-size: 15px;\n margin-bottom: 4px;\n}\n\n.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {\n background: #ECEFF1;\n border-bottom: 1px solid #ddd;\n}\n\n.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title {\n background: rgba(0, 0, 0, 0.7);\n border-bottom: 1px solid #333;\n}\n\n.apexcharts-tooltip-text-y-value,\n.apexcharts-tooltip-text-goals-value,\n.apexcharts-tooltip-text-z-value {\n display: inline-block;\n font-weight: 600;\n margin-left: 5px;\n}\n\n.apexcharts-tooltip-text-y-label:empty,\n.apexcharts-tooltip-text-y-value:empty,\n.apexcharts-tooltip-text-goals-label:empty,\n.apexcharts-tooltip-text-goals-value:empty,\n.apexcharts-tooltip-text-z-value:empty {\n display: none;\n}\n\n.apexcharts-tooltip-text-y-value,\n.apexcharts-tooltip-text-goals-value,\n.apexcharts-tooltip-text-z-value {\n font-weight: 600;\n}\n\n.apexcharts-tooltip-text-goals-label, \n.apexcharts-tooltip-text-goals-value {\n padding: 6px 0 5px;\n}\n\n.apexcharts-tooltip-goals-group, \n.apexcharts-tooltip-text-goals-label, \n.apexcharts-tooltip-text-goals-value {\n display: flex;\n}\n.apexcharts-tooltip-text-goals-label:not(:empty),\n.apexcharts-tooltip-text-goals-value:not(:empty) {\n margin-top: -6px;\n}\n\n.apexcharts-tooltip-marker {\n width: 12px;\n height: 12px;\n position: relative;\n top: 0px;\n margin-right: 10px;\n border-radius: 50%;\n}\n\n.apexcharts-tooltip-series-group {\n padding: 0 10px;\n display: none;\n text-align: left;\n justify-content: left;\n align-items: center;\n}\n\n.apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-marker {\n opacity: 1;\n}\n\n.apexcharts-tooltip-series-group.apexcharts-active,\n.apexcharts-tooltip-series-group:last-child {\n padding-bottom: 4px;\n}\n\n.apexcharts-tooltip-series-group-hidden {\n opacity: 0;\n height: 0;\n line-height: 0;\n padding: 0 !important;\n}\n\n.apexcharts-tooltip-y-group {\n padding: 6px 0 5px;\n}\n\n.apexcharts-tooltip-box, .apexcharts-custom-tooltip {\n padding: 4px 8px;\n}\n\n.apexcharts-tooltip-boxPlot {\n display: flex;\n flex-direction: column-reverse;\n}\n\n.apexcharts-tooltip-box>div {\n margin: 4px 0;\n}\n\n.apexcharts-tooltip-box span.value {\n font-weight: bold;\n}\n\n.apexcharts-tooltip-rangebar {\n padding: 5px 8px;\n}\n\n.apexcharts-tooltip-rangebar .category {\n font-weight: 600;\n color: #777;\n}\n\n.apexcharts-tooltip-rangebar .series-name {\n font-weight: bold;\n display: block;\n margin-bottom: 5px;\n}\n\n.apexcharts-xaxistooltip {\n opacity: 0;\n padding: 9px 10px;\n pointer-events: none;\n color: #373d3f;\n font-size: 13px;\n text-align: center;\n border-radius: 2px;\n position: absolute;\n z-index: 10;\n background: #ECEFF1;\n border: 1px solid #90A4AE;\n transition: 0.15s ease all;\n}\n\n.apexcharts-xaxistooltip.apexcharts-theme-dark {\n background: rgba(0, 0, 0, 0.7);\n border: 1px solid rgba(0, 0, 0, 0.5);\n color: #fff;\n}\n\n.apexcharts-xaxistooltip:after,\n.apexcharts-xaxistooltip:before {\n left: 50%;\n border: solid transparent;\n content: " ";\n height: 0;\n width: 0;\n position: absolute;\n pointer-events: none;\n}\n\n.apexcharts-xaxistooltip:after {\n border-color: rgba(236, 239, 241, 0);\n border-width: 6px;\n margin-left: -6px;\n}\n\n.apexcharts-xaxistooltip:before {\n border-color: rgba(144, 164, 174, 0);\n border-width: 7px;\n margin-left: -7px;\n}\n\n.apexcharts-xaxistooltip-bottom:after,\n.apexcharts-xaxistooltip-bottom:before {\n bottom: 100%;\n}\n\n.apexcharts-xaxistooltip-top:after,\n.apexcharts-xaxistooltip-top:before {\n top: 100%;\n}\n\n.apexcharts-xaxistooltip-bottom:after {\n border-bottom-color: #ECEFF1;\n}\n\n.apexcharts-xaxistooltip-bottom:before {\n border-bottom-color: #90A4AE;\n}\n\n.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:after {\n border-bottom-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:before {\n border-bottom-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-top:after {\n border-top-color: #ECEFF1\n}\n\n.apexcharts-xaxistooltip-top:before {\n border-top-color: #90A4AE;\n}\n\n.apexcharts-xaxistooltip-top.apexcharts-theme-dark:after {\n border-top-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-top.apexcharts-theme-dark:before {\n border-top-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip.apexcharts-active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-yaxistooltip {\n opacity: 0;\n padding: 4px 10px;\n pointer-events: none;\n color: #373d3f;\n font-size: 13px;\n text-align: center;\n border-radius: 2px;\n position: absolute;\n z-index: 10;\n background: #ECEFF1;\n border: 1px solid #90A4AE;\n}\n\n.apexcharts-yaxistooltip.apexcharts-theme-dark {\n background: rgba(0, 0, 0, 0.7);\n border: 1px solid rgba(0, 0, 0, 0.5);\n color: #fff;\n}\n\n.apexcharts-yaxistooltip:after,\n.apexcharts-yaxistooltip:before {\n top: 50%;\n border: solid transparent;\n content: " ";\n height: 0;\n width: 0;\n position: absolute;\n pointer-events: none;\n}\n\n.apexcharts-yaxistooltip:after {\n border-color: rgba(236, 239, 241, 0);\n border-width: 6px;\n margin-top: -6px;\n}\n\n.apexcharts-yaxistooltip:before {\n border-color: rgba(144, 164, 174, 0);\n border-width: 7px;\n margin-top: -7px;\n}\n\n.apexcharts-yaxistooltip-left:after,\n.apexcharts-yaxistooltip-left:before {\n left: 100%;\n}\n\n.apexcharts-yaxistooltip-right:after,\n.apexcharts-yaxistooltip-right:before {\n right: 100%;\n}\n\n.apexcharts-yaxistooltip-left:after {\n border-left-color: #ECEFF1;\n}\n\n.apexcharts-yaxistooltip-left:before {\n border-left-color: #90A4AE;\n}\n\n.apexcharts-yaxistooltip-left.apexcharts-theme-dark:after {\n border-left-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-left.apexcharts-theme-dark:before {\n border-left-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-right:after {\n border-right-color: #ECEFF1;\n}\n\n.apexcharts-yaxistooltip-right:before {\n border-right-color: #90A4AE;\n}\n\n.apexcharts-yaxistooltip-right.apexcharts-theme-dark:after {\n border-right-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-right.apexcharts-theme-dark:before {\n border-right-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip.apexcharts-active {\n opacity: 1;\n}\n\n.apexcharts-yaxistooltip-hidden {\n display: none;\n}\n\n.apexcharts-xcrosshairs,\n.apexcharts-ycrosshairs {\n pointer-events: none;\n opacity: 0;\n transition: 0.15s ease all;\n}\n\n.apexcharts-xcrosshairs.apexcharts-active,\n.apexcharts-ycrosshairs.apexcharts-active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-ycrosshairs-hidden {\n opacity: 0;\n}\n\n.apexcharts-selection-rect {\n cursor: move;\n}\n\n.svg_select_boundingRect, .svg_select_points_rot {\n pointer-events: none;\n opacity: 0;\n visibility: hidden;\n}\n.apexcharts-selection-rect + g .svg_select_boundingRect,\n.apexcharts-selection-rect + g .svg_select_points_rot {\n opacity: 0;\n visibility: hidden;\n}\n\n.apexcharts-selection-rect + g .svg_select_points_l,\n.apexcharts-selection-rect + g .svg_select_points_r {\n cursor: ew-resize;\n opacity: 1;\n visibility: visible;\n}\n\n.svg_select_points {\n fill: #efefef;\n stroke: #333;\n rx: 2;\n}\n\n.apexcharts-svg.apexcharts-zoomable.hovering-zoom {\n cursor: crosshair\n}\n\n.apexcharts-svg.apexcharts-zoomable.hovering-pan {\n cursor: move\n}\n\n.apexcharts-zoom-icon,\n.apexcharts-zoomin-icon,\n.apexcharts-zoomout-icon,\n.apexcharts-reset-icon,\n.apexcharts-pan-icon,\n.apexcharts-selection-icon,\n.apexcharts-menu-icon,\n.apexcharts-toolbar-custom-icon {\n cursor: pointer;\n width: 20px;\n height: 20px;\n line-height: 24px;\n color: #6E8192;\n text-align: center;\n}\n\n.apexcharts-zoom-icon svg,\n.apexcharts-zoomin-icon svg,\n.apexcharts-zoomout-icon svg,\n.apexcharts-reset-icon svg,\n.apexcharts-menu-icon svg {\n fill: #6E8192;\n}\n\n.apexcharts-selection-icon svg {\n fill: #444;\n transform: scale(0.76)\n}\n\n.apexcharts-theme-dark .apexcharts-zoom-icon svg,\n.apexcharts-theme-dark .apexcharts-zoomin-icon svg,\n.apexcharts-theme-dark .apexcharts-zoomout-icon svg,\n.apexcharts-theme-dark .apexcharts-reset-icon svg,\n.apexcharts-theme-dark .apexcharts-pan-icon svg,\n.apexcharts-theme-dark .apexcharts-selection-icon svg,\n.apexcharts-theme-dark .apexcharts-menu-icon svg,\n.apexcharts-theme-dark .apexcharts-toolbar-custom-icon svg {\n fill: #f3f4f5;\n}\n\n.apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg,\n.apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg,\n.apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg {\n fill: #008FFB;\n}\n\n.apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,\n.apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,\n.apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,\n.apexcharts-theme-light .apexcharts-zoomout-icon:hover svg,\n.apexcharts-theme-light .apexcharts-reset-icon:hover svg,\n.apexcharts-theme-light .apexcharts-menu-icon:hover svg {\n fill: #333;\n}\n\n.apexcharts-selection-icon,\n.apexcharts-menu-icon {\n position: relative;\n}\n\n.apexcharts-reset-icon {\n margin-left: 5px;\n}\n\n.apexcharts-zoom-icon,\n.apexcharts-reset-icon,\n.apexcharts-menu-icon {\n transform: scale(0.85);\n}\n\n.apexcharts-zoomin-icon,\n.apexcharts-zoomout-icon {\n transform: scale(0.7)\n}\n\n.apexcharts-zoomout-icon {\n margin-right: 3px;\n}\n\n.apexcharts-pan-icon {\n transform: scale(0.62);\n position: relative;\n left: 1px;\n top: 0px;\n}\n\n.apexcharts-pan-icon svg {\n fill: #fff;\n stroke: #6E8192;\n stroke-width: 2;\n}\n\n.apexcharts-pan-icon.apexcharts-selected svg {\n stroke: #008FFB;\n}\n\n.apexcharts-pan-icon:not(.apexcharts-selected):hover svg {\n stroke: #333;\n}\n\n.apexcharts-toolbar {\n position: absolute;\n z-index: 11;\n max-width: 176px;\n text-align: right;\n border-radius: 3px;\n padding: 0px 6px 2px 6px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.apexcharts-menu {\n background: #fff;\n position: absolute;\n top: 100%;\n border: 1px solid #ddd;\n border-radius: 3px;\n padding: 3px;\n right: 10px;\n opacity: 0;\n min-width: 110px;\n transition: 0.15s ease all;\n pointer-events: none;\n}\n\n.apexcharts-menu.apexcharts-menu-open {\n opacity: 1;\n pointer-events: all;\n transition: 0.15s ease all;\n}\n\n.apexcharts-menu-item {\n padding: 6px 7px;\n font-size: 12px;\n cursor: pointer;\n}\n\n.apexcharts-theme-light .apexcharts-menu-item:hover {\n background: #eee;\n}\n\n.apexcharts-theme-dark .apexcharts-menu {\n background: rgba(0, 0, 0, 0.7);\n color: #fff;\n}\n\n@media screen and (min-width: 768px) {\n .apexcharts-canvas:hover .apexcharts-toolbar {\n opacity: 1;\n }\n}\n\n.apexcharts-datalabel.apexcharts-element-hidden {\n opacity: 0;\n}\n\n.apexcharts-pie-label,\n.apexcharts-datalabels,\n.apexcharts-datalabel,\n.apexcharts-datalabel-label,\n.apexcharts-datalabel-value {\n cursor: default;\n pointer-events: none;\n}\n\n.apexcharts-pie-label-delay {\n opacity: 0;\n animation-name: opaque;\n animation-duration: 0.3s;\n animation-fill-mode: forwards;\n animation-timing-function: ease;\n}\n\n.apexcharts-canvas .apexcharts-element-hidden {\n opacity: 0;\n}\n\n.apexcharts-hide .apexcharts-series-points {\n opacity: 0;\n}\n\n.apexcharts-gridline,\n.apexcharts-annotation-rect,\n.apexcharts-tooltip .apexcharts-marker,\n.apexcharts-area-series .apexcharts-area,\n.apexcharts-line,\n.apexcharts-zoom-rect,\n.apexcharts-toolbar svg,\n.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,\n.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,\n.apexcharts-radar-series path,\n.apexcharts-radar-series polygon {\n pointer-events: none;\n}\n\n\n/* markers */\n\n.apexcharts-marker {\n transition: 0.15s ease all;\n}\n\n@keyframes opaque {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}\n\n\n/* Resize generated styles */\n\n@keyframes resizeanim {\n from {\n opacity: 0;\n }\n to {\n opacity: 0;\n }\n}\n\n.resize-triggers {\n animation: 1ms resizeanim;\n visibility: hidden;\n opacity: 0;\n}\n\n.resize-triggers,\n.resize-triggers>div,\n.contract-trigger:before {\n content: " ";\n display: block;\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n overflow: hidden;\n}\n\n.resize-triggers>div {\n background: #eee;\n overflow: auto;\n}\n\n.contract-trigger:before {\n width: 200%;\n height: 200%;\n}'),function(){function t(t){var e=t.__resizeTriggers__,i=e.firstElementChild,a=e.lastElementChild,s=i?i.firstElementChild:null;a&&(a.scrollLeft=a.scrollWidth,a.scrollTop=a.scrollHeight),s&&(s.style.width=i.offsetWidth+1+"px",s.style.height=i.offsetHeight+1+"px"),i&&(i.scrollLeft=i.scrollWidth,i.scrollTop=i.scrollHeight)}function e(e){var i=this;t(this),this.__resizeRAF__&&r(this.__resizeRAF__),this.__resizeRAF__=s((function(){(function(t){return t.offsetWidth!=t.__resizeLast__.width||t.offsetHeight!=t.__resizeLast__.height})(i)&&(i.__resizeLast__.width=i.offsetWidth,i.__resizeLast__.height=i.offsetHeight,i.__resizeListeners__.forEach((function(t){t.call(e)})))}))}var i,a,s=(i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||function(t){return window.setTimeout(t,20)},function(t){return i(t)}),r=(a=window.cancelAnimationFrame||window.mozCancelAnimationFrame||window.webkitCancelAnimationFrame||window.clearTimeout,function(t){return a(t)}),o=!1,n="animationstart",l="Webkit Moz O ms".split(" "),h="webkitAnimationStart animationstart oAnimationStart MSAnimationStart".split(" "),c=document.createElement("fakeelement");if(void 0!==c.style.animationName&&(o=!0),!1===o)for(var d=0;d
',i.appendChild(i.__resizeTriggers__),t(i),i.addEventListener("scroll",e,!0),n&&i.__resizeTriggers__.addEventListener(n,(function(e){"resizeanim"==e.animationName&&t(i)}))),i.__resizeListeners__.push(a)},window.removeResizeListener=function(t,i){t&&(t.__resizeListeners__.splice(t.__resizeListeners__.indexOf(i),1),t.__resizeListeners__.length||(t.removeEventListener("scroll",e),t.__resizeTriggers__.parentNode&&(t.__resizeTriggers__=!t.removeChild(t.__resizeTriggers__))))}}(),void 0===window.Apex&&(window.Apex={});var Yt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"initModules",value:function(){this.ctx.publicMethods=["updateOptions","updateSeries","appendData","appendSeries","toggleSeries","showSeries","hideSeries","setLocale","resetSeries","zoomX","toggleDataPointSelection","dataURI","addXaxisAnnotation","addYaxisAnnotation","addPointAnnotation","clearAnnotations","removeAnnotation","paper","destroy"],this.ctx.eventList=["click","mousedown","mousemove","mouseleave","touchstart","touchmove","touchleave","mouseup","touchend"],this.ctx.animations=new p(this.ctx),this.ctx.axes=new J(this.ctx),this.ctx.core=new Xt(this.ctx.el,this.ctx),this.ctx.config=new H({}),this.ctx.data=new O(this.ctx),this.ctx.grid=new _(this.ctx),this.ctx.graphics=new b(this.ctx),this.ctx.coreUtils=new y(this.ctx),this.ctx.crosshairs=new Q(this.ctx),this.ctx.events=new Z(this.ctx),this.ctx.exports=new V(this.ctx),this.ctx.localization=new $(this.ctx),this.ctx.options=new S,this.ctx.responsive=new K(this.ctx),this.ctx.series=new M(this.ctx),this.ctx.theme=new tt(this.ctx),this.ctx.formatters=new W(this.ctx),this.ctx.titleSubtitle=new et(this.ctx),this.ctx.legend=new lt(this.ctx),this.ctx.toolbar=new ht(this.ctx),this.ctx.dimensions=new ot(this.ctx),this.ctx.updateHelpers=new Et(this.ctx),this.ctx.zoomPanSelection=new ct(this.ctx),this.ctx.w.globals.tooltip=new bt(this.ctx)}}]),t}(),Ft=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"clear",value:function(t){var e=t.isUpdating;this.ctx.zoomPanSelection&&this.ctx.zoomPanSelection.destroy(),this.ctx.toolbar&&this.ctx.toolbar.destroy(),this.ctx.animations=null,this.ctx.axes=null,this.ctx.annotations=null,this.ctx.core=null,this.ctx.data=null,this.ctx.grid=null,this.ctx.series=null,this.ctx.responsive=null,this.ctx.theme=null,this.ctx.formatters=null,this.ctx.titleSubtitle=null,this.ctx.legend=null,this.ctx.dimensions=null,this.ctx.options=null,this.ctx.crosshairs=null,this.ctx.zoomPanSelection=null,this.ctx.updateHelpers=null,this.ctx.toolbar=null,this.ctx.localization=null,this.ctx.w.globals.tooltip=null,this.clearDomElements({isUpdating:e})}},{key:"killSVG",value:function(t){t.each((function(t,e){this.removeClass("*"),this.off(),this.stop()}),!0),t.ungroup(),t.clear()}},{key:"clearDomElements",value:function(t){var e=this,i=t.isUpdating,a=this.w.globals.dom.Paper.node;a.parentNode&&a.parentNode.parentNode&&!i&&(a.parentNode.parentNode.style.minHeight="unset");var s=this.w.globals.dom.baseEl;s&&this.ctx.eventList.forEach((function(t){s.removeEventListener(t,e.ctx.events.documentEvent)}));var r=this.w.globals.dom;if(null!==this.ctx.el)for(;this.ctx.el.firstChild;)this.ctx.el.removeChild(this.ctx.el.firstChild);this.killSVG(r.Paper),r.Paper.remove(),r.elWrap=null,r.elGraphical=null,r.elAnnotations=null,r.elLegendWrap=null,r.baseEl=null,r.elGridRect=null,r.elGridRectMask=null,r.elGridRectMarkerMask=null,r.elDefs=null}}]),t}(),Rt=function(){function t(i,a){e(this,t),this.opts=a,this.ctx=this,this.w=new N(a).init(),this.el=i,this.w.globals.cuid=f.randomId(),this.w.globals.chartID=this.w.config.chart.id?f.escapeString(this.w.config.chart.id):this.w.globals.cuid,new Yt(this).initModules(),this.create=f.bind(this.create,this),this.windowResizeHandler=this._windowResizeHandler.bind(this),this.parentResizeHandler=this._parentResizeCallback.bind(this)}return a(t,[{key:"render",value:function(){var t=this;return new Promise((function(e,i){if(null!==t.el){void 0===Apex._chartInstances&&(Apex._chartInstances=[]),t.w.config.chart.id&&Apex._chartInstances.push({id:t.w.globals.chartID,group:t.w.config.chart.group,chart:t}),t.setLocale(t.w.config.chart.defaultLocale);var a=t.w.config.chart.events.beforeMount;"function"==typeof a&&a(t,t.w),t.events.fireEvent("beforeMount",[t,t.w]),window.addEventListener("resize",t.windowResizeHandler),window.addResizeListener(t.el.parentNode,t.parentResizeHandler);var s=t.create(t.w.config.series,{});if(!s)return e(t);t.mount(s).then((function(){"function"==typeof t.w.config.chart.events.mounted&&t.w.config.chart.events.mounted(t,t.w),t.events.fireEvent("mounted",[t,t.w]),e(s)})).catch((function(t){i(t)}))}else i(new Error("Element not found"))}))}},{key:"create",value:function(t,e){var i=this.w;new Yt(this).initModules();var a=this.w.globals;(a.noData=!1,a.animationEnded=!1,this.responsive.checkResponsiveConfig(e),i.config.xaxis.convertedCatToNumeric)&&new R(i.config).convertCatToNumericXaxis(i.config,this.ctx);if(null===this.el)return a.animationEnded=!0,null;if(this.core.setupElements(),"treemap"===i.config.chart.type&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),0===a.svgWidth)return a.animationEnded=!0,null;var s=y.checkComboSeries(t);a.comboCharts=s.comboCharts,a.comboBarCount=s.comboBarCount;var r=t.every((function(t){return t.data&&0===t.data.length}));(0===t.length||r)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(t),this.theme.init(),new P(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),a.noData&&a.collapsedSeries.length!==a.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),a.axisCharts&&(this.core.coreCalculations(),"category"!==i.config.xaxis.type&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),this.dimensions.plotCoords();var o=this.core.xySettings();this.grid.createGridMask();var n=this.core.plotChartType(t,o),l=new z(this);l.bringForward(),i.config.dataLabels.background.enabled&&l.dataLabelsBackground(),this.core.shiftGraphPosition();var h={plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}};return{elGraph:n,xyRatios:o,elInner:i.globals.dom.elGraphical,dimensions:h}}},{key:"mount",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,i=this,a=i.w;return new Promise((function(s,r){if(null===i.el)return r(new Error("Not enough data to display or target element not found"));(null===e||a.globals.allSeriesCollapsed)&&i.series.handleNoData(),"treemap"!==a.config.chart.type&&i.axes.drawAxis(a.config.chart.type,e.xyRatios),i.grid=new _(i);var o=i.grid.drawGrid();i.annotations=new C(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),"back"===a.config.grid.position&&o&&a.globals.dom.elGraphical.add(o.el);var n=new G(t.ctx),l=new q(t.ctx);if(null!==o&&(n.xAxisLabelCorrections(o.xAxisTickWidth),l.setYAxisTextAlignments(),a.config.yaxis.map((function(t,e){-1===a.globals.ignoreYAxisIndexes.indexOf(e)&&l.yAxisTitleRotate(e,t.opposite)}))),"back"===a.config.annotations.position&&(a.globals.dom.Paper.add(a.globals.dom.elAnnotations),i.annotations.drawAxesAnnotations()),Array.isArray(e.elGraph))for(var h=0;h0&&a.globals.memory.methodsToExec.forEach((function(t){t.method(t.params,!1,t.context)})),a.globals.axisCharts||a.globals.noData||i.core.resizeNonAxisCharts(),s(i)}))}},{key:"destroy",value:function(){window.removeEventListener("resize",this.windowResizeHandler),window.removeResizeListener(this.el.parentNode,this.parentResizeHandler);var t=this.w.config.chart.id;t&&Apex._chartInstances.forEach((function(e,i){e.id===f.escapeString(t)&&Apex._chartInstances.splice(i,1)})),new Ft(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(t){var e=this,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1],a=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],s=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],r=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],o=this.w;return o.globals.selection=void 0,t.series&&(this.series.resetSeries(!1,!0,!1),t.series.length&&t.series[0].data&&(t.series=t.series.map((function(t,i){return e.updateHelpers._extendSeries(t,i)}))),this.updateHelpers.revertDefaultAxisMinMax()),t.xaxis&&(t=this.updateHelpers.forceXAxisUpdate(t)),t.yaxis&&(t=this.updateHelpers.forceYAxisUpdate(t)),o.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),t.theme&&(t=this.theme.updateThemeOptions(t)),this.updateHelpers._updateOptions(t,i,a,s,r)}},{key:"updateSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(t,e,i)}},{key:"appendSeries",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=this.w.config.series.slice();return a.push(t),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(a,e,i)}},{key:"appendData",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var a=i.w.config.series.slice(),s=0;s0&&void 0!==arguments[0])||arguments[0],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];this.series.resetSeries(t,e)}},{key:"addEventListener",value:function(t,e){this.events.addEventListener(t,e)}},{key:"removeEventListener",value:function(t,e){this.events.removeEventListener(t,e)}},{key:"addXaxisAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,a=this;i&&(a=i),a.annotations.addXaxisAnnotationExternal(t,e,a)}},{key:"addYaxisAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,a=this;i&&(a=i),a.annotations.addYaxisAnnotationExternal(t,e,a)}},{key:"addPointAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,a=this;i&&(a=i),a.annotations.addPointAnnotationExternal(t,e,a)}},{key:"clearAnnotations",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,e=this;t&&(e=t),e.annotations.clearAnnotations(e)}},{key:"removeAnnotation",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,i=this;e&&(i=e),i.annotations.removeAnnotation(i,t)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(t,e){return this.coreUtils.getSeriesTotalsXRange(t,e)}},{key:"getHighestValueInSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=new U(this.ctx);return e.getMinYMaxY(t).highestY}},{key:"getLowestValueInSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=new U(this.ctx);return e.getMinYMaxY(t).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(t,e){return this.updateHelpers.toggleDataPointSelection(t,e)}},{key:"zoomX",value:function(t,e){this.ctx.toolbar.zoomUpdateOptions(t,e)}},{key:"setLocale",value:function(t){this.localization.setCurrentLocaleValues(t)}},{key:"dataURI",value:function(t){return new V(this.ctx).dataURI(t)}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var t=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout((function(){t.w.globals.resized=!0,t.w.globals.dataChanged=!1,t.ctx.update()}),150)}},{key:"_windowResizeHandler",value:function(){var t=this.w.config.chart.redrawOnWindowResize;"function"==typeof t&&(t=t()),t&&this._windowResize()}}],[{key:"getChartByID",value:function(t){var e=f.escapeString(t),i=Apex._chartInstances.filter((function(t){return t.id===e}))[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var e=document.querySelectorAll("[data-apexcharts]"),i=0;i2?s-2:0),o=2;o