├── .vscode └── launch.json ├── README.md ├── backend ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── itau │ │ │ └── backend │ │ │ ├── DemoApplication.java │ │ │ ├── config │ │ │ └── CorsConfig.java │ │ │ ├── controller │ │ │ ├── PontoController.java │ │ │ └── UsuarioController.java │ │ │ ├── models │ │ │ ├── Ponto.java │ │ │ └── Usuario.java │ │ │ └── repository │ │ │ ├── PontoRepository.java │ │ │ └── UsuarioRepository.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── itau │ └── backend │ └── DemoApplicationTests.java ├── database └── schema.sql ├── frontend ├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── angular.json ├── docs │ ├── argon.css │ └── documentation.html ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.routing.ts │ │ ├── components │ │ │ ├── components.module.spec.ts │ │ │ ├── components.module.ts │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ ├── footer.component.scss │ │ │ │ ├── footer.component.spec.ts │ │ │ │ └── footer.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.html │ │ │ │ ├── navbar.component.scss │ │ │ │ ├── navbar.component.spec.ts │ │ │ │ └── navbar.component.ts │ │ │ └── sidebar │ │ │ │ ├── sidebar.component.html │ │ │ │ ├── sidebar.component.scss │ │ │ │ ├── sidebar.component.spec.ts │ │ │ │ └── sidebar.component.ts │ │ ├── layouts │ │ │ ├── admin-layout │ │ │ │ ├── admin-layout.component.html │ │ │ │ ├── admin-layout.component.scss │ │ │ │ ├── admin-layout.component.spec.ts │ │ │ │ ├── admin-layout.component.ts │ │ │ │ ├── admin-layout.module.ts │ │ │ │ └── admin-layout.routing.ts │ │ │ └── auth-layout │ │ │ │ ├── auth-layout.component.html │ │ │ │ ├── auth-layout.component.scss │ │ │ │ ├── auth-layout.component.spec.ts │ │ │ │ ├── auth-layout.component.ts │ │ │ │ ├── auth-layout.module.ts │ │ │ │ └── auth-layout.routing.ts │ │ ├── pages │ │ │ ├── dashboard │ │ │ │ ├── dashboard.component.html │ │ │ │ ├── dashboard.component.scss │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ └── dashboard.component.ts │ │ │ ├── login │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.scss │ │ │ │ ├── login.component.spec.ts │ │ │ │ └── login.component.ts │ │ │ └── user-profile │ │ │ │ ├── user-profile.component.html │ │ │ │ ├── user-profile.component.scss │ │ │ │ ├── user-profile.component.spec.ts │ │ │ │ └── user-profile.component.ts │ │ ├── services │ │ │ └── request.ts │ │ └── variables │ │ │ └── charts.ts │ ├── assets │ │ ├── fonts │ │ │ └── nucleo │ │ │ │ ├── nucleo-icons.eot │ │ │ │ ├── nucleo-icons.svg │ │ │ │ ├── nucleo-icons.ttf │ │ │ │ ├── nucleo-icons.woff │ │ │ │ └── nucleo-icons.woff2 │ │ ├── img │ │ │ ├── brand │ │ │ │ ├── argon-white.png │ │ │ │ ├── blue.png │ │ │ │ ├── favicon.png │ │ │ │ ├── favicon0.png │ │ │ │ ├── itau.png │ │ │ │ ├── naelinda.jpg │ │ │ │ ├── red.png │ │ │ │ └── white.png │ │ │ ├── icons │ │ │ │ └── common │ │ │ │ │ ├── github.svg │ │ │ │ │ └── google.svg │ │ │ └── theme │ │ │ │ ├── angular.jpg │ │ │ │ ├── bootstrap.jpg │ │ │ │ ├── profile-cover.jpg │ │ │ │ ├── react.jpg │ │ │ │ ├── sketch.jpg │ │ │ │ ├── team-1-800x800.jpg │ │ │ │ ├── team-2-800x800.jpg │ │ │ │ ├── team-3-800x800.jpg │ │ │ │ ├── team-4-800x800.jpg │ │ │ │ └── vue.jpg │ │ ├── scss │ │ │ ├── angular-differences │ │ │ │ ├── _angular-differences.scss │ │ │ │ ├── _responsive.scss │ │ │ │ ├── _sidebar-and-main-panel.scss │ │ │ │ └── plugins │ │ │ │ │ └── _ng-bootstrap.scss │ │ │ ├── argon.scss │ │ │ ├── core │ │ │ │ ├── alerts │ │ │ │ │ ├── _alert-dismissible.scss │ │ │ │ │ └── _alert.scss │ │ │ │ ├── avatars │ │ │ │ │ ├── _avatar-group.scss │ │ │ │ │ └── _avatar.scss │ │ │ │ ├── badges │ │ │ │ │ ├── _badge-circle.scss │ │ │ │ │ ├── _badge-dot.scss │ │ │ │ │ └── _badge.scss │ │ │ │ ├── buttons │ │ │ │ │ ├── _button-brand.scss │ │ │ │ │ ├── _button-icon.scss │ │ │ │ │ └── _button.scss │ │ │ │ ├── cards │ │ │ │ │ ├── _card-animations.scss │ │ │ │ │ ├── _card-blockquote.scss │ │ │ │ │ ├── _card-profile.scss │ │ │ │ │ ├── _card-stats.scss │ │ │ │ │ └── _card.scss │ │ │ │ ├── charts │ │ │ │ │ └── _chart.scss │ │ │ │ ├── close │ │ │ │ │ └── _close.scss │ │ │ │ ├── custom-forms │ │ │ │ │ ├── _custom-checkbox.scss │ │ │ │ │ ├── _custom-control.scss │ │ │ │ │ ├── _custom-form.scss │ │ │ │ │ ├── _custom-radio.scss │ │ │ │ │ └── _custom-toggle.scss │ │ │ │ ├── dropdowns │ │ │ │ │ └── _dropdown.scss │ │ │ │ ├── footers │ │ │ │ │ └── _footer.scss │ │ │ │ ├── forms │ │ │ │ │ ├── _form-validation.scss │ │ │ │ │ ├── _form.scss │ │ │ │ │ └── _input-group.scss │ │ │ │ ├── headers │ │ │ │ │ └── _header.scss │ │ │ │ ├── icons │ │ │ │ │ ├── _icon-shape.scss │ │ │ │ │ └── _icon.scss │ │ │ │ ├── list-groups │ │ │ │ │ └── _list-group.scss │ │ │ │ ├── maps │ │ │ │ │ └── _map.scss │ │ │ │ ├── masks │ │ │ │ │ └── _mask.scss │ │ │ │ ├── mixins │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _icon.scss │ │ │ │ │ ├── _modals.scss │ │ │ │ │ └── _popover.scss │ │ │ │ ├── modals │ │ │ │ │ └── _modal.scss │ │ │ │ ├── navbars │ │ │ │ │ ├── _navbar-collapse.scss │ │ │ │ │ ├── _navbar-dropdown.scss │ │ │ │ │ ├── _navbar-search.scss │ │ │ │ │ ├── _navbar-vertical.scss │ │ │ │ │ └── _navbar.scss │ │ │ │ ├── navs │ │ │ │ │ ├── _nav-pills.scss │ │ │ │ │ └── _nav.scss │ │ │ │ ├── paginations │ │ │ │ │ └── _pagination.scss │ │ │ │ ├── popovers │ │ │ │ │ └── _popover.scss │ │ │ │ ├── progresses │ │ │ │ │ └── _progress.scss │ │ │ │ ├── separators │ │ │ │ │ └── _separator.scss │ │ │ │ ├── tables │ │ │ │ │ └── _table.scss │ │ │ │ ├── type │ │ │ │ │ ├── _article.scss │ │ │ │ │ ├── _display.scss │ │ │ │ │ ├── _heading.scss │ │ │ │ │ └── _type.scss │ │ │ │ ├── utilities │ │ │ │ │ ├── _backgrounds.scss │ │ │ │ │ ├── _blurable.scss │ │ │ │ │ ├── _floating.scss │ │ │ │ │ ├── _helper.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ ├── _overflow.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _shadows.scss │ │ │ │ │ ├── _sizing.scss │ │ │ │ │ ├── _spacing.scss │ │ │ │ │ ├── _text.scss │ │ │ │ │ └── _transform.scss │ │ │ │ └── vendors │ │ │ │ │ ├── _bootstrap-datepicker.scss │ │ │ │ │ ├── _headroom.scss │ │ │ │ │ ├── _nouislider.scss │ │ │ │ │ └── _scrollbar.scss │ │ │ └── custom │ │ │ │ ├── _alert.scss │ │ │ │ ├── _avatar.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _chart.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _components.scss │ │ │ │ ├── _content.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _map.scss │ │ │ │ ├── _mask.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _section.scss │ │ │ │ ├── _separator.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── _vendors.scss │ │ └── vendor │ │ │ ├── @fortawesome │ │ │ └── fontawesome-free │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ └── v4-shims.min.css │ │ │ │ ├── js │ │ │ │ ├── all.min.js │ │ │ │ ├── brands.min.js │ │ │ │ ├── fontawesome.min.js │ │ │ │ ├── regular.min.js │ │ │ │ ├── solid.min.js │ │ │ │ └── v4-shims.min.js │ │ │ │ ├── sprites │ │ │ │ ├── brands.svg │ │ │ │ ├── regular.svg │ │ │ │ └── solid.svg │ │ │ │ ├── svgs │ │ │ │ ├── brands │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ ├── adn.svg │ │ │ │ │ ├── adversal.svg │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ ├── algolia.svg │ │ │ │ │ ├── alipay.svg │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ ├── amazon.svg │ │ │ │ │ ├── amilia.svg │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── angellist.svg │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ ├── angular.svg │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ ├── app-store.svg │ │ │ │ │ ├── apper.svg │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ ├── audible.svg │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ ├── avianex.svg │ │ │ │ │ ├── aviato.svg │ │ │ │ │ ├── aws.svg │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ ├── behance-square.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── bity.svg │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── btc.svg │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ ├── centercode.svg │ │ │ │ │ ├── chrome.svg │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ ├── codepen.svg │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ ├── contao.svg │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ ├── delicious.svg │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ ├── digg.svg │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── discourse.svg │ │ │ │ │ ├── dochub.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ ├── dribbble-square.svg │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── drupal.svg │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ ├── ebay.svg │ │ │ │ │ ├── edge.svg │ │ │ │ │ ├── elementor.svg │ │ │ │ │ ├── ello.svg │ │ │ │ │ ├── ember.svg │ │ │ │ │ ├── empire.svg │ │ │ │ │ ├── envira.svg │ │ │ │ │ ├── erlang.svg │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ ├── etsy.svg │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ ├── facebook-square.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── firefox.svg │ │ │ │ │ ├── first-order-alt.svg │ │ │ │ │ ├── first-order.svg │ │ │ │ │ ├── firstdraft.svg │ │ │ │ │ ├── flickr.svg │ │ │ │ │ ├── flipboard.svg │ │ │ │ │ ├── fly.svg │ │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── fonticons-fi.svg │ │ │ │ │ ├── fonticons.svg │ │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ │ ├── fort-awesome.svg │ │ │ │ │ ├── forumbee.svg │ │ │ │ │ ├── foursquare.svg │ │ │ │ │ ├── free-code-camp.svg │ │ │ │ │ ├── freebsd.svg │ │ │ │ │ ├── fulcrum.svg │ │ │ │ │ ├── galactic-republic.svg │ │ │ │ │ ├── galactic-senate.svg │ │ │ │ │ ├── get-pocket.svg │ │ │ │ │ ├── gg-circle.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── git-square.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github-square.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ ├── hips.svg │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ ├── hooli.svg │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ ├── imdb.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ ├── itunes.svg │ │ │ │ │ ├── java.svg │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ ├── joget.svg │ │ │ │ │ ├── joomla.svg │ │ │ │ │ ├── js-square.svg │ │ │ │ │ ├── js.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ ├── less.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linode.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── lyft.svg │ │ │ │ │ ├── magento.svg │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ ├── markdown.svg │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ ├── medapps.svg │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ ├── modx.svg │ │ │ │ │ ├── monero.svg │ │ │ │ │ ├── napster.svg │ │ │ │ │ ├── neos.svg │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ ├── nintendo-switch.svg │ │ │ │ │ ├── node-js.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── ns8.svg │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── periscope.svg │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ ├── playstation.svg │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ ├── pushed.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── qq.svg │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ ├── quora.svg │ │ │ │ │ ├── r-project.svg │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── readme.svg │ │ │ │ │ ├── rebel.svg │ │ │ │ │ ├── red-river.svg │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ ├── reddit-square.svg │ │ │ │ │ ├── reddit.svg │ │ │ │ │ ├── rendact.svg │ │ │ │ │ ├── renren.svg │ │ │ │ │ ├── replyd.svg │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ ├── resolving.svg │ │ │ │ │ ├── rev.svg │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ ├── safari.svg │ │ │ │ │ ├── sass.svg │ │ │ │ │ ├── schlix.svg │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack-hash.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ ├── steam-square.svg │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ ├── steam.svg │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ ├── stripe.svg │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ ├── supple.svg │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram-plane.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tripadvisor.svg │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.svg │ │ │ │ │ ├── twitter-square.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── typo3.svg │ │ │ │ │ ├── uber.svg │ │ │ │ │ ├── uikit.svg │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ ├── untappd.svg │ │ │ │ │ ├── usb.svg │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ ├── viadeo-square.svg │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ ├── viber.svg │ │ │ │ │ ├── vimeo-square.svg │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ ├── vine.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── vnv.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── weebly.svg │ │ │ │ │ ├── weibo.svg │ │ │ │ │ ├── weixin.svg │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wix.svg │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.svg │ │ │ │ │ ├── yelp.svg │ │ │ │ │ ├── yoast.svg │ │ │ │ │ ├── youtube-square.svg │ │ │ │ │ ├── youtube.svg │ │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── adjust.svg │ │ │ │ │ ├── air-freshener.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── allergies.svg │ │ │ │ │ ├── ambulance.svg │ │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── angle-double-down.svg │ │ │ │ │ ├── angle-double-left.svg │ │ │ │ │ ├── angle-double-right.svg │ │ │ │ │ ├── angle-double-up.svg │ │ │ │ │ ├── angle-down.svg │ │ │ │ │ ├── angle-left.svg │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ ├── archive.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ │ ├── arrows-alt.svg │ │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atlas.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── backspace.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── balance-scale.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── band-aid.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-ball.svg │ │ │ │ │ ├── basketball-ball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ ├── bible.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── birthday-cake.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blind.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-reader.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── broadcast-tower.svg │ │ │ │ │ ├── broom.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── burn.svg │ │ │ │ │ ├── bus-alt.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-time.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-alt.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-crash.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── caret-square-down.svg │ │ │ │ │ ├── caret-square-left.svg │ │ │ │ │ ├── caret-square-right.svg │ │ │ │ │ ├── caret-square-up.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-double.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-board.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── chess.svg │ │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── child.svg │ │ │ │ │ ├── church.svg │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── city.svg │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── cocktail.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coffee.svg │ │ │ │ │ ├── cog.svg │ │ │ │ │ ├── cogs.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── columns.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── concierge-bell.svg │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ ├── cookie.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── couch.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crop-alt.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── crow.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── deaf.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagnoses.svg │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ ├── dice.svg │ │ │ │ │ ├── digital-tachograph.svg │ │ │ │ │ ├── directions.svg │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ │ ├── dolly.svg │ │ │ │ │ ├── donate.svg │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ ├── door-open.svg │ │ │ │ │ ├── dot-circle.svg │ │ │ │ │ ├── dove.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── drafting-compass.svg │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope-square.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exchange-alt.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── external-link-alt.svg │ │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── fast-backward.svg │ │ │ │ │ ├── fast-forward.svg │ │ │ │ │ ├── fax.svg │ │ │ │ │ ├── feather-alt.svg │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── female.svg │ │ │ │ │ ├── fighter-jet.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-archive.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-download.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ ├── file-medical-alt.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ ├── file-upload.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── first-aid.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── flushed.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football-ball.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── frog.svg │ │ │ │ │ ├── frown-open.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── funnel-dollar.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ │ ├── glass-martini.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe-africa.svg │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ ├── globe-asia.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-ball.svg │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ ├── grimace.svg │ │ │ │ │ ├── grin-alt.svg │ │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ │ ├── grin-beam.svg │ │ │ │ │ ├── grin-hearts.svg │ │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ │ ├── grin-squint.svg │ │ │ │ │ ├── grin-stars.svg │ │ │ │ │ ├── grin-tears.svg │ │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin-tongue.svg │ │ │ │ │ ├── grin-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── grip-horizontal.svg │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ ├── h-square.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-paper.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-rock.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hands-helping.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── haykal.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── heartbeat.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── hospital-alt.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-alt.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── jedi.svg │ │ │ │ │ ├── joint.svg │ │ │ │ │ ├── journal-whills.svg │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── khanda.svg │ │ │ │ │ ├── kiss-beam.svg │ │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ │ ├── kiss.svg │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── laugh-beam.svg │ │ │ │ │ ├── laugh-squint.svg │ │ │ │ │ ├── laugh-wink.svg │ │ │ │ │ ├── laugh.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ ├── less-than.svg │ │ │ │ │ ├── level-down-alt.svg │ │ │ │ │ ├── level-up-alt.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-alt.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ │ ├── low-vision.svg │ │ │ │ │ ├── luggage-cart.svg │ │ │ │ │ ├── magic.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── mail-bulk.svg │ │ │ │ │ ├── male.svg │ │ │ │ │ ├── map-marked-alt.svg │ │ │ │ │ ├── map-marked.svg │ │ │ │ │ ├── map-marker-alt.svg │ │ │ │ │ ├── map-marker.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map-signs.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── medkit.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.svg │ │ │ │ │ ├── microchip.svg │ │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ │ ├── microphone-alt.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── minus-circle.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── mobile-alt.svg │ │ │ │ │ ├── mobile.svg │ │ │ │ │ ├── money-bill-alt.svg │ │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-check-alt.svg │ │ │ │ │ ├── money-check.svg │ │ │ │ │ ├── monument.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ ├── mosque.svg │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ ├── mouse-pointer.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── paint-brush.svg │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── pallet.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── parking.svg │ │ │ │ │ ├── passport.svg │ │ │ │ │ ├── pastafarianism.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── peace.svg │ │ │ │ │ ├── pen-alt.svg │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ ├── pen-square.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pencil-alt.svg │ │ │ │ │ ├── pencil-ruler.svg │ │ │ │ │ ├── people-carry.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── percentage.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-square.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podcast.svg │ │ │ │ │ ├── poll-h.svg │ │ │ │ │ ├── poll.svg │ │ │ │ │ ├── poo.svg │ │ │ │ │ ├── poop.svg │ │ │ │ │ ├── portrait.svg │ │ │ │ │ ├── pound-sign.svg │ │ │ │ │ ├── power-off.svg │ │ │ │ │ ├── pray.svg │ │ │ │ │ ├── praying-hands.svg │ │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── prescription.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── procedures.svg │ │ │ │ │ ├── project-diagram.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quidditch.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── quran.svg │ │ │ │ │ ├── random.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── redo-alt.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── road.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── route.svg │ │ │ │ │ ├── rss-square.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ ├── search-dollar.svg │ │ │ │ │ ├── search-location.svg │ │ │ │ │ ├── search-minus.svg │ │ │ │ │ ├── search-plus.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── seedling.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-alt-square.svg │ │ │ │ │ ├── share-alt.svg │ │ │ │ │ ├── share-square.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ ├── shield-alt.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shipping-fast.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shopping-bag.svg │ │ │ │ │ ├── shopping-basket.svg │ │ │ │ │ ├── shopping-cart.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shuttle-van.svg │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ ├── sign-language.svg │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ ├── sign.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── sliders-h.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── smoking-ban.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── space-shuttle.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-root-alt.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── stamp.svg │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── step-backward.svg │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── sticky-note.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-alt.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── stream.svg │ │ │ │ │ ├── street-view.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── subway.svg │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── swimmer.svg │ │ │ │ │ ├── swimming-pool.svg │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ ├── sync-alt.svg │ │ │ │ │ ├── sync.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── table-tennis.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet-alt.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachometer-alt.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tags.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tasks.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── text-width.svg │ │ │ │ │ ├── th-large.svg │ │ │ │ │ ├── th-list.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── theater-masks.svg │ │ │ │ │ ├── thermometer-empty.svg │ │ │ │ │ ├── thermometer-full.svg │ │ │ │ │ ├── thermometer-half.svg │ │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-alt.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── times.svg │ │ │ │ │ ├── tint-slash.svg │ │ │ │ │ ├── tint.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torah.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── transgender-alt.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── tree.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── truck-loading.svg │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tshirt.svg │ │ │ │ │ ├── tty.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── undo-alt.svg │ │ │ │ │ ├── undo.svg │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ ├── university.svg │ │ │ │ │ ├── unlink.svg │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-alt-slash.svg │ │ │ │ │ ├── user-alt.svg │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ ├── user-cog.svg │ │ │ │ │ ├── user-edit.svg │ │ │ │ │ ├── user-friends.svg │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ ├── user-md.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ ├── user-times.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-cog.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── utensil-spoon.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── volleyball-ball.svg │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ ├── walking.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ └── yin-yang.svg │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ └── nucleo │ │ │ ├── css │ │ │ ├── nucleo-svg.css │ │ │ └── nucleo.css │ │ │ └── fonts │ │ │ ├── nucleo-icons.eot │ │ │ ├── nucleo-icons.svg │ │ │ ├── nucleo-icons.ttf │ │ │ ├── nucleo-icons.woff │ │ │ └── nucleo-icons.woff2 │ ├── browserslist │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json ├── tsconfig.json └── tslint.json └── mer.png /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /backend/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /backend/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /backend/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/mvnw -------------------------------------------------------------------------------- /backend/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/mvnw.cmd -------------------------------------------------------------------------------- /backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/pom.xml -------------------------------------------------------------------------------- /backend/src/main/java/com/itau/backend/DemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/src/main/java/com/itau/backend/DemoApplication.java -------------------------------------------------------------------------------- /backend/src/main/java/com/itau/backend/config/CorsConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/src/main/java/com/itau/backend/config/CorsConfig.java -------------------------------------------------------------------------------- /backend/src/main/java/com/itau/backend/controller/PontoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/src/main/java/com/itau/backend/controller/PontoController.java -------------------------------------------------------------------------------- /backend/src/main/java/com/itau/backend/controller/UsuarioController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/src/main/java/com/itau/backend/controller/UsuarioController.java -------------------------------------------------------------------------------- /backend/src/main/java/com/itau/backend/models/Ponto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/src/main/java/com/itau/backend/models/Ponto.java -------------------------------------------------------------------------------- /backend/src/main/java/com/itau/backend/models/Usuario.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/src/main/java/com/itau/backend/models/Usuario.java -------------------------------------------------------------------------------- /backend/src/main/java/com/itau/backend/repository/PontoRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/src/main/java/com/itau/backend/repository/PontoRepository.java -------------------------------------------------------------------------------- /backend/src/main/java/com/itau/backend/repository/UsuarioRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/src/main/java/com/itau/backend/repository/UsuarioRepository.java -------------------------------------------------------------------------------- /backend/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/src/main/resources/application.properties -------------------------------------------------------------------------------- /backend/src/test/java/com/itau/backend/DemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/backend/src/test/java/com/itau/backend/DemoApplicationTests.java -------------------------------------------------------------------------------- /database/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/database/schema.sql -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/CHANGELOG.md -------------------------------------------------------------------------------- /frontend/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /frontend/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/LICENSE.md -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/angular.json -------------------------------------------------------------------------------- /frontend/docs/argon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/docs/argon.css -------------------------------------------------------------------------------- /frontend/docs/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/docs/documentation.html -------------------------------------------------------------------------------- /frontend/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/e2e/protractor.conf.js -------------------------------------------------------------------------------- /frontend/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /frontend/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/e2e/src/app.po.ts -------------------------------------------------------------------------------- /frontend/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/app.component.html -------------------------------------------------------------------------------- /frontend/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/app.component.ts -------------------------------------------------------------------------------- /frontend/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/app.module.ts -------------------------------------------------------------------------------- /frontend/src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/app.routing.ts -------------------------------------------------------------------------------- /frontend/src/app/components/components.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/components/components.module.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/components/components.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/components/components.module.ts -------------------------------------------------------------------------------- /frontend/src/app/components/footer/footer.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/components/footer/footer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/components/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/components/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/components/footer/footer.component.ts -------------------------------------------------------------------------------- /frontend/src/app/components/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/components/navbar/navbar.component.html -------------------------------------------------------------------------------- /frontend/src/app/components/navbar/navbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/components/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/components/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/components/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/components/navbar/navbar.component.ts -------------------------------------------------------------------------------- /frontend/src/app/components/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/components/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /frontend/src/app/components/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/components/sidebar/sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/components/sidebar/sidebar.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/components/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/components/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /frontend/src/app/layouts/admin-layout/admin-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/layouts/admin-layout/admin-layout.component.html -------------------------------------------------------------------------------- /frontend/src/app/layouts/admin-layout/admin-layout.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/layouts/admin-layout/admin-layout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/layouts/admin-layout/admin-layout.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/layouts/admin-layout/admin-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/layouts/admin-layout/admin-layout.component.ts -------------------------------------------------------------------------------- /frontend/src/app/layouts/admin-layout/admin-layout.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/layouts/admin-layout/admin-layout.module.ts -------------------------------------------------------------------------------- /frontend/src/app/layouts/admin-layout/admin-layout.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/layouts/admin-layout/admin-layout.routing.ts -------------------------------------------------------------------------------- /frontend/src/app/layouts/auth-layout/auth-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/layouts/auth-layout/auth-layout.component.html -------------------------------------------------------------------------------- /frontend/src/app/layouts/auth-layout/auth-layout.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/layouts/auth-layout/auth-layout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/layouts/auth-layout/auth-layout.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/layouts/auth-layout/auth-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/layouts/auth-layout/auth-layout.component.ts -------------------------------------------------------------------------------- /frontend/src/app/layouts/auth-layout/auth-layout.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/layouts/auth-layout/auth-layout.module.ts -------------------------------------------------------------------------------- /frontend/src/app/layouts/auth-layout/auth-layout.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/layouts/auth-layout/auth-layout.routing.ts -------------------------------------------------------------------------------- /frontend/src/app/pages/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/pages/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /frontend/src/app/pages/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/pages/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/pages/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/pages/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/pages/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /frontend/src/app/pages/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/pages/login/login.component.html -------------------------------------------------------------------------------- /frontend/src/app/pages/login/login.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/pages/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/pages/login/login.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/pages/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/pages/login/login.component.ts -------------------------------------------------------------------------------- /frontend/src/app/pages/user-profile/user-profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/pages/user-profile/user-profile.component.html -------------------------------------------------------------------------------- /frontend/src/app/pages/user-profile/user-profile.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/pages/user-profile/user-profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/pages/user-profile/user-profile.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/pages/user-profile/user-profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/pages/user-profile/user-profile.component.ts -------------------------------------------------------------------------------- /frontend/src/app/services/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/services/request.ts -------------------------------------------------------------------------------- /frontend/src/app/variables/charts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/app/variables/charts.ts -------------------------------------------------------------------------------- /frontend/src/assets/fonts/nucleo/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/fonts/nucleo/nucleo-icons.eot -------------------------------------------------------------------------------- /frontend/src/assets/fonts/nucleo/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/fonts/nucleo/nucleo-icons.svg -------------------------------------------------------------------------------- /frontend/src/assets/fonts/nucleo/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/fonts/nucleo/nucleo-icons.ttf -------------------------------------------------------------------------------- /frontend/src/assets/fonts/nucleo/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/fonts/nucleo/nucleo-icons.woff -------------------------------------------------------------------------------- /frontend/src/assets/fonts/nucleo/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/fonts/nucleo/nucleo-icons.woff2 -------------------------------------------------------------------------------- /frontend/src/assets/img/brand/argon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/argon-white.png -------------------------------------------------------------------------------- /frontend/src/assets/img/brand/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/blue.png -------------------------------------------------------------------------------- /frontend/src/assets/img/brand/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/favicon.png -------------------------------------------------------------------------------- /frontend/src/assets/img/brand/favicon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/favicon0.png -------------------------------------------------------------------------------- /frontend/src/assets/img/brand/itau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/itau.png -------------------------------------------------------------------------------- /frontend/src/assets/img/brand/naelinda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/naelinda.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/brand/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/red.png -------------------------------------------------------------------------------- /frontend/src/assets/img/brand/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/brand/white.png -------------------------------------------------------------------------------- /frontend/src/assets/img/icons/common/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/icons/common/github.svg -------------------------------------------------------------------------------- /frontend/src/assets/img/icons/common/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/icons/common/google.svg -------------------------------------------------------------------------------- /frontend/src/assets/img/theme/angular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/angular.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/theme/bootstrap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/bootstrap.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/theme/profile-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/profile-cover.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/theme/react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/react.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/theme/sketch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/sketch.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/theme/team-1-800x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/team-1-800x800.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/theme/team-2-800x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/team-2-800x800.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/theme/team-3-800x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/team-3-800x800.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/theme/team-4-800x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/team-4-800x800.jpg -------------------------------------------------------------------------------- /frontend/src/assets/img/theme/vue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/img/theme/vue.jpg -------------------------------------------------------------------------------- /frontend/src/assets/scss/angular-differences/_angular-differences.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/angular-differences/_angular-differences.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/angular-differences/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/angular-differences/_responsive.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/angular-differences/_sidebar-and-main-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/angular-differences/_sidebar-and-main-panel.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/angular-differences/plugins/_ng-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/angular-differences/plugins/_ng-bootstrap.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/argon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/argon.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/alerts/_alert-dismissible.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/alerts/_alert-dismissible.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/alerts/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/alerts/_alert.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/avatars/_avatar-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/avatars/_avatar-group.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/avatars/_avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/avatars/_avatar.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/badges/_badge-circle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/badges/_badge-circle.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/badges/_badge-dot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/badges/_badge-dot.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/badges/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/badges/_badge.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/buttons/_button-brand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/buttons/_button-brand.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/buttons/_button-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/buttons/_button-icon.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/buttons/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/buttons/_button.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/cards/_card-animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/cards/_card-animations.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/cards/_card-blockquote.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/cards/_card-blockquote.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/cards/_card-profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/cards/_card-profile.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/cards/_card-stats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/cards/_card-stats.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/cards/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/cards/_card.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/charts/_chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/charts/_chart.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/close/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/close/_close.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/custom-forms/_custom-checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/custom-forms/_custom-checkbox.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/custom-forms/_custom-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/custom-forms/_custom-control.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/custom-forms/_custom-form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/custom-forms/_custom-form.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/custom-forms/_custom-radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/custom-forms/_custom-radio.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/custom-forms/_custom-toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/custom-forms/_custom-toggle.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/dropdowns/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/dropdowns/_dropdown.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/footers/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/footers/_footer.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/forms/_form-validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/forms/_form-validation.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/forms/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/forms/_form.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/forms/_input-group.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/headers/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/headers/_header.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/icons/_icon-shape.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/icons/_icon-shape.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/icons/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/icons/_icon.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/list-groups/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/list-groups/_list-group.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/maps/_map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/maps/_map.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/masks/_mask.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/masks/_mask.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/mixins/_alert.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/mixins/_background-variant.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/mixins/_badge.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/mixins/_buttons.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/mixins/_forms.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/mixins/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/mixins/_icon.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/mixins/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/mixins/_modals.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/mixins/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/mixins/_popover.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/modals/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/modals/_modal.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/navbars/_navbar-collapse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/navbars/_navbar-collapse.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/navbars/_navbar-dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/navbars/_navbar-dropdown.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/navbars/_navbar-search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/navbars/_navbar-search.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/navbars/_navbar-vertical.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/navbars/_navbar-vertical.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/navbars/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/navbars/_navbar.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/navs/_nav-pills.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/navs/_nav-pills.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/navs/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/navs/_nav.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/paginations/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/paginations/_pagination.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/popovers/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/popovers/_popover.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/progresses/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/progresses/_progress.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/separators/_separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/separators/_separator.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/tables/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/tables/_table.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/type/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/type/_article.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/type/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/type/_display.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/type/_heading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/type/_heading.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/type/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/type/_type.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_backgrounds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_backgrounds.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_blurable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_blurable.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_floating.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_floating.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_helper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_helper.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_image.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_opacity.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_overflow.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_position.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_shadows.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_sizing.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_spacing.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_text.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/utilities/_transform.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/utilities/_transform.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/vendors/_bootstrap-datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/vendors/_bootstrap-datepicker.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/vendors/_headroom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/vendors/_headroom.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/vendors/_nouislider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/vendors/_nouislider.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/core/vendors/_scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/core/vendors/_scrollbar.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_alert.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_avatar.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_badge.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_buttons.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_card.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_chart.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_close.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_components.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_content.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_custom-forms.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_dropdown.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_footer.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_forms.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_functions.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_header.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_icons.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_input-group.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_list-group.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_map.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_mask.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_mask.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_mixins.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_modal.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_nav.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_navbar.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_pagination.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_popover.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_progress.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_reboot.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_section.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_separator.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_tables.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_type.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_utilities.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_variables.scss -------------------------------------------------------------------------------- /frontend/src/assets/scss/custom/_vendors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/scss/custom/_vendors.scss -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/LICENSE.txt -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/css/brands.min.css -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/css/regular.min.css -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/css/v4-shims.min.css -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/all.min.js -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/brands.min.js -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/fontawesome.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/fontawesome.min.js -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/regular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/regular.min.js -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/solid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/solid.min.js -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/v4-shims.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/js/v4-shims.min.js -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/sprites/brands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/sprites/brands.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/sprites/regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/sprites/regular.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/sprites/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/sprites/solid.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/500px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/500px.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/adn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/adn.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/alipay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/alipay.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/amazon.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/amilia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/amilia.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/apper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/apper.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/apple.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/aviato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/aviato.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/aws.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/bity.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/btc.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/cc-jcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/cc-jcb.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/chrome.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/contao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/contao.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/cpanel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/cpanel.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/css3.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/digg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/digg.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dochub.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/docker.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/drupal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/drupal.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ebay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ebay.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/edge.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ello.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ember.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/empire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/empire.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/envira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/envira.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/erlang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/erlang.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/etsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/etsy.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/flickr.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/fly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/fly.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gg.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/git.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/github.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gitlab.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gitter.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/glide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/glide.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gofore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gofore.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/google.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/grav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/grav.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/grunt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/grunt.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/gulp.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hips.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hooli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hooli.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/hotjar.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/houzz.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/html5.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/imdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/imdb.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/itunes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/itunes.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/java.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/joget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/joget.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/joomla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/joomla.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/js.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/kaggle.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/keycdn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/keycdn.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/korvue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/korvue.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/lastfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/lastfm.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/less.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/line.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/linode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/linode.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/linux.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/lyft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/lyft.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/medium.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/medrt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/medrt.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/meetup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/meetup.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/mix.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/mizuni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/mizuni.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/modx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/modx.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/monero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/monero.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/neos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/neos.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/nimblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/nimblr.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/node.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/npm.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ns8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/ns8.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/openid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/openid.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/opera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/opera.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/osi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/osi.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/page4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/page4.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/palfed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/palfed.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/paypal.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/php.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/pushed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/pushed.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/python.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/qq.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/quora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/quora.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/react.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/readme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/readme.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/rebel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/rebel.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/reddit.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/renren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/renren.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/replyd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/replyd.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/rev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/rev.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/safari.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/safari.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sass.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/schlix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/schlix.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/scribd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/scribd.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sellsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sellsy.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/sith.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/skype.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/slack.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/steam.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/strava.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/strava.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/stripe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/stripe.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/supple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/supple.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/trello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/trello.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/tumblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/tumblr.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/twitch.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/typo3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/typo3.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/uber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/uber.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/uikit.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/usb.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vaadin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vaadin.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/viadeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/viadeo.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/viber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/viber.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vimeo.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vine.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vk.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vnv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vnv.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/weebly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/weebly.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/weibo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/weibo.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/weixin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/weixin.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/whmcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/whmcs.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/wix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/wix.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/xbox.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/xing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/xing.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yahoo.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yelp.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yoast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/yoast.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/zhihu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/brands/zhihu.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/angry.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/bell.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/clock.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/clone.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/copy.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/dizzy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/dizzy.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/edit.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/eye.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/file.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/flag.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/frown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/frown.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/gem.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/grin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/grin.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/hdd.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/heart.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/image.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/kiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/kiss.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/laugh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/laugh.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/lemon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/lemon.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/map.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/meh.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/moon.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/save.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/smile.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/star.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/sun.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/tired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/tired.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/regular/user.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ad.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/adjust.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/anchor.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/angry.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ankh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ankh.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/archive.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/archway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/archway.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/at.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/atlas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/atlas.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/atom.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/award.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/award.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ban.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/barcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/barcode.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bars.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bath.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bed.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/beer.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bell.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bible.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bicycle.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/blender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/blender.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/blind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/blind.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bold.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bolt.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bomb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bomb.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bone.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bong.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/book.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/box.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/boxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/boxes.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/braille.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/braille.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/brain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/brain.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/broom.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/brush.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bug.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/burn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/burn.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bus-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bus-alt.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/bus.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/camera.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/car-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/car-alt.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/car.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/check.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/chess.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/child.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/child.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/church.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/church.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/circle.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/city.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clock.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/clone.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cloud.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/code.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/coffee.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cog.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cogs.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/coins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/coins.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/columns.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/comment.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/compass.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cookie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cookie.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/copy.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/couch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/couch.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/crop.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cross.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/crow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/crow.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/crown.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cube.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cubes.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/cut.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/deaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/deaf.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/desktop.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dice.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/divide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/divide.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dizzy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dizzy.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dna.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dolly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dolly.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/donate.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/dove.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/drum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/drum.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/edit.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eject.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/equals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/equals.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eraser.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/expand.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/eye.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fax.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/feather.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/female.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/file.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fill.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/film.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/filter.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fire.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/fish.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/flag.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/flask.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/flushed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/flushed.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/folder.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/font.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/forward.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/frog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/frog.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/frown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/frown.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/futbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/futbol.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gamepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gamepad.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gavel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gavel.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gem.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gift.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/glasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/glasses.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/globe.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gopuram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/gopuram.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/grimace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/grimace.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/grin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/grin.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hamsa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hamsa.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hands.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hashtag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hashtag.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/haykal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/haykal.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hdd.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/heading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/heading.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/headset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/headset.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/heart.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/history.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/home.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hot-tub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hot-tub.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hotel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/hotel.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/id-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/id-card.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/image.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/images.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/inbox.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/indent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/indent.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/info.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/italic.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/jedi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/jedi.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/joint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/joint.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/kaaba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/kaaba.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/key.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/khanda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/khanda.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/kiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/kiss.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/laugh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/laugh.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/leaf.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/lemon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/lemon.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/link.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/list.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/lock.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/magic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/magic.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/male.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/map.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/mars.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/medal.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/meh.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/minus.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/moon.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/music.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/om.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paste.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pause.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/paw.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/peace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/peace.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pen.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/phone.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pills.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pills.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plane.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/play.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plug.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/plus.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/poll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/poll.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/poo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/poo.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/poop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/poop.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/pray.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/print.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/quran.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/quran.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/redo.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/reply.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/road.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/road.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/robot.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/route.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/rss.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ruler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ruler.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/save.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/share.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/ship.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sign.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/skull.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/smile.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/socks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/socks.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sort.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/spa.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/stamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/stamp.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/star.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/stop.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/store.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sun.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/sync.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/table.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tag.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tags.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tape.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tasks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tasks.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/taxi.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/teeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/teeth.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/th.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/times.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tint.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tired.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tooth.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/torah.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/torah.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/train.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/trash.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tree.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/truck.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tty.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/tv.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/undo.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/user.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/users.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/venus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/venus.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/vial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/vial.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/vials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/vials.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/video.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/wifi.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/x-ray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/@fortawesome/fontawesome-free/svgs/solid/x-ray.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/nucleo/css/nucleo-svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/nucleo/css/nucleo-svg.css -------------------------------------------------------------------------------- /frontend/src/assets/vendor/nucleo/css/nucleo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/nucleo/css/nucleo.css -------------------------------------------------------------------------------- /frontend/src/assets/vendor/nucleo/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/nucleo/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /frontend/src/assets/vendor/nucleo/fonts/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/nucleo/fonts/nucleo-icons.svg -------------------------------------------------------------------------------- /frontend/src/assets/vendor/nucleo/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/nucleo/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /frontend/src/assets/vendor/nucleo/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/nucleo/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /frontend/src/assets/vendor/nucleo/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/assets/vendor/nucleo/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /frontend/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/browserslist -------------------------------------------------------------------------------- /frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /frontend/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/environments/environment.ts -------------------------------------------------------------------------------- /frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/favicon.ico -------------------------------------------------------------------------------- /frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/index.html -------------------------------------------------------------------------------- /frontend/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/karma.conf.js -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/main.ts -------------------------------------------------------------------------------- /frontend/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/polyfills.ts -------------------------------------------------------------------------------- /frontend/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/styles.scss -------------------------------------------------------------------------------- /frontend/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/test.ts -------------------------------------------------------------------------------- /frontend/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/tsconfig.spec.json -------------------------------------------------------------------------------- /frontend/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/src/tslint.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/frontend/tslint.json -------------------------------------------------------------------------------- /mer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaeliSilva/gerenciamento-ponto-eletronico-itau-estags/HEAD/mer.png --------------------------------------------------------------------------------