├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Controller.php │ │ └── Dashboard │ │ │ ├── AdvanceSalaryController.php │ │ │ ├── AttendenceController.php │ │ │ ├── CategoryController.php │ │ │ ├── CustomerController.php │ │ │ ├── DashboardController.php │ │ │ ├── DatabaseBackupController.php │ │ │ ├── EmployeeController.php │ │ │ ├── OrderController.php │ │ │ ├── PaySalaryController.php │ │ │ ├── PosController.php │ │ │ ├── ProductController.php │ │ │ ├── ProfileController.php │ │ │ ├── RoleController.php │ │ │ ├── SupplierController.php │ │ │ └── UserController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ └── ProfileUpdateRequest.php ├── Models │ ├── AdvanceSalary.php │ ├── Attendence.php │ ├── Category.php │ ├── Customer.php │ ├── Employee.php │ ├── Order.php │ ├── OrderDetails.php │ ├── PaySalary.php │ ├── Product.php │ ├── Supplier.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── backup.php ├── broadcasting.php ├── cache.php ├── cart.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── image.php ├── logging.php ├── mail.php ├── permission.php ├── query-builder.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2023_03_15_044621_add_username_and_photo_to_users.php │ ├── 2023_03_24_080143_create_employees_table.php │ ├── 2023_03_29_025458_create_customers_table.php │ ├── 2023_03_30_020042_create_suppliers_table.php │ ├── 2023_03_30_083652_create_advance_salaries_table.php │ ├── 2023_04_01_142106_create_pay_salaries_table.php │ ├── 2023_04_02_141037_create_attendences_table.php │ ├── 2023_04_04_041700_create_categories_table.php │ ├── 2023_04_04_052256_create_products_table.php │ ├── 2023_04_10_043156_create_orders_table.php │ ├── 2023_04_10_044212_create_order_details_table.php │ └── 2023_04_13_222344_create_permission_tables.php └── seeders │ └── DatabaseSeeder.php ├── lang └── vendor │ └── backup │ ├── ar │ └── notifications.php │ ├── bg │ └── notifications.php │ ├── bn │ └── notifications.php │ ├── cs │ └── notifications.php │ ├── da │ └── notifications.php │ ├── de │ └── notifications.php │ ├── en │ └── notifications.php │ ├── es │ └── notifications.php │ ├── fa │ └── notifications.php │ ├── fi │ └── notifications.php │ ├── fr │ └── notifications.php │ ├── hi │ └── notifications.php │ ├── hr │ └── notifications.php │ ├── id │ └── notifications.php │ ├── it │ └── notifications.php │ ├── ja │ └── notifications.php │ ├── nl │ └── notifications.php │ ├── no │ └── notifications.php │ ├── pl │ └── notifications.php │ ├── pt-BR │ └── notifications.php │ ├── pt │ └── notifications.php │ ├── ro │ └── notifications.php │ ├── ru │ └── notifications.php │ ├── tr │ └── notifications.php │ ├── uk │ └── notifications.php │ ├── zh-CN │ └── notifications.php │ └── zh-TW │ └── notifications.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── assets │ ├── css │ │ ├── backend-plugin.min.css │ │ ├── backend.css │ │ ├── bootstrap │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-reboot.css │ │ │ └── bootstrap.css │ │ ├── intro.css │ │ └── maps │ │ │ ├── backend.css.map │ │ │ ├── bootstrap │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-reboot.css.map │ │ │ └── bootstrap.css.map │ │ │ └── intro.css.map │ ├── images │ │ ├── down-aerrow.gif │ │ ├── error │ │ │ ├── 02.png │ │ │ ├── 404.png │ │ │ └── 500.png │ │ ├── icon │ │ │ ├── 08.png │ │ │ ├── 09.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── expand-window.json │ │ │ ├── open-letter.json │ │ │ └── pdf.png │ │ ├── intro │ │ │ ├── btn-icon.svg │ │ │ ├── clients │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ └── 05.png │ │ │ ├── demo │ │ │ │ └── layout │ │ │ │ │ ├── app-5.jpg │ │ │ │ │ ├── app-9.jpg │ │ │ │ │ ├── dashboard-1.jpg │ │ │ │ │ ├── error-404.jpg │ │ │ │ │ ├── error-500.jpg │ │ │ │ │ ├── list-product.jpg │ │ │ │ │ ├── maintanance.jpg │ │ │ │ │ ├── price.jpg │ │ │ │ │ ├── report.jpg │ │ │ │ │ ├── sign-in.jpg │ │ │ │ │ ├── sign-up.jpg │ │ │ │ │ └── time.jpg │ │ │ ├── features │ │ │ │ ├── 01.png │ │ │ │ ├── 01_.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ ├── 09.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── gulp-white.png │ │ │ │ ├── handle-white.png │ │ │ │ ├── sass-white.png │ │ │ │ └── webpack-white.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ ├── slider │ │ │ │ └── banner │ │ │ │ │ ├── 01.png │ │ │ │ │ ├── 02.png │ │ │ │ │ ├── 03.png │ │ │ │ │ ├── 04.png │ │ │ │ │ ├── 05.png │ │ │ │ │ └── 06.png │ │ │ └── technology-bg.png │ │ ├── layouts │ │ │ └── side-bkg.png │ │ ├── loader.gif │ │ ├── login │ │ │ ├── 01.png │ │ │ ├── 01=.png │ │ │ ├── 01asd.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 2.jpg │ │ │ ├── login.jpg │ │ │ ├── mail.png │ │ │ └── sign-bg.jpg │ │ ├── logo.png │ │ ├── logo │ │ │ ├── logo-min.png │ │ │ └── logo.png │ │ ├── main │ │ │ └── ventas.jpg │ │ ├── page-img │ │ │ ├── 01.jpg │ │ │ ├── 02.jpg │ │ │ ├── 03.jpg │ │ │ ├── 07.jpg │ │ │ ├── 08.jpg │ │ │ ├── 09.jpg │ │ │ ├── 10.jpg │ │ │ ├── 100.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 14.png │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 19.jpg │ │ │ ├── 20.jpg │ │ │ ├── 21.jpg │ │ │ ├── 22.jpg │ │ │ ├── 23.jpg │ │ │ ├── 24.jpg │ │ │ ├── 25.jpg │ │ │ ├── 26.jpg │ │ │ ├── 27.jpg │ │ │ ├── 28.jpg │ │ │ ├── 37.jpg │ │ │ ├── 37.png │ │ │ ├── 38.png │ │ │ ├── 39.png │ │ │ ├── 42.jpg │ │ │ ├── 42.png │ │ │ ├── 43.jpg │ │ │ ├── 44.jpg │ │ │ ├── 45.jpg │ │ │ ├── 46.jpg │ │ │ ├── 47.jpg │ │ │ ├── 48.jpg │ │ │ ├── 49.jpg │ │ │ ├── 50.png │ │ │ ├── 51.png │ │ │ ├── a1.png │ │ │ ├── a2.png │ │ │ ├── a3.png │ │ │ ├── a4.png │ │ │ ├── diamond.png │ │ │ ├── featured-book.png │ │ │ ├── img-success.png │ │ │ ├── man.svg │ │ │ ├── p1.jpg │ │ │ ├── p2.jpg │ │ │ ├── page-load-loader.gif │ │ │ ├── profile-bg.jpg │ │ │ ├── profile-bg.png │ │ │ ├── profile.png │ │ │ ├── side-bkg.png │ │ │ ├── tag_blue.svg │ │ │ └── tag_red.svg │ │ ├── plugins │ │ │ └── picture.jpg │ │ ├── product │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── default.webp │ │ ├── profile │ │ │ └── service │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ └── 06.png │ │ ├── rating │ │ │ ├── 01.jpg │ │ │ └── 01.png │ │ ├── small │ │ │ ├── 04.svg │ │ │ ├── 05.svg │ │ │ ├── 07.png │ │ │ ├── 08.png │ │ │ ├── 09.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── data.json │ │ │ ├── data1.json │ │ │ ├── data2.json │ │ │ ├── flag-01.png │ │ │ ├── flag-02.png │ │ │ ├── flag-03.png │ │ │ ├── flag-04.png │ │ │ ├── flag-05.png │ │ │ ├── flag-06.png │ │ │ ├── img-1.jpg │ │ │ ├── jpg.svg │ │ │ ├── match-code.json │ │ │ ├── xml.svg │ │ │ └── zip.svg │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ ├── sort_desc_disabled.png │ │ ├── table │ │ │ └── product │ │ │ │ ├── 01.jpg │ │ │ │ ├── 02.jpg │ │ │ │ ├── 03.jpg │ │ │ │ ├── 04.jpg │ │ │ │ ├── 05.jpg │ │ │ │ ├── 06.jpg │ │ │ │ ├── 07.jpg │ │ │ │ ├── 08.jpg │ │ │ │ └── 09.jpg │ │ ├── user │ │ │ ├── 01.jpg │ │ │ ├── 02.jpg │ │ │ ├── 03.jpg │ │ │ ├── 04.jpg │ │ │ ├── 05.jpg │ │ │ ├── 06.jpg │ │ │ ├── 07.jpg │ │ │ ├── 08.jpg │ │ │ ├── 09.jpg │ │ │ ├── 1.jpg │ │ │ ├── 1.png │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 11.png │ │ │ ├── 12.jpg │ │ │ ├── i1.jpg │ │ │ ├── user-1.jpg │ │ │ ├── user-2.jpg │ │ │ ├── user-3.jpg │ │ │ ├── user-4.jpg │ │ │ ├── user-5.jpg │ │ │ └── user-6.jpg │ │ └── vectormap │ │ │ ├── bg-red-green.png │ │ │ ├── bg-yellow-blue.png │ │ │ ├── icon-bank.png │ │ │ ├── icon-factory.png │ │ │ ├── icon-np-1.png │ │ │ ├── icon-np-2.png │ │ │ └── icon-np-3.png │ ├── invoice │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ └── js │ │ │ ├── app.js │ │ │ ├── html2canvas.js │ │ │ ├── jquery.min.js │ │ │ └── jspdf.min.js │ ├── js │ │ ├── animated.js │ │ ├── apexcharts.js │ │ ├── app.js │ │ ├── backend-bundle.min.js │ │ ├── bstreeview.js │ │ ├── chart-custom.js │ │ ├── charts.js │ │ ├── core.js │ │ ├── countdown.js │ │ ├── country2.js │ │ ├── croppy.js │ │ ├── customizer.js │ │ ├── flex-tree.min.js │ │ ├── highcharts-3d.js │ │ ├── highcharts-more.js │ │ ├── highcharts.js │ │ ├── imagesloaded.pkgd.min.js │ │ ├── intro.js │ │ ├── jquery.appear.js │ │ ├── jquery.barrating.min.js │ │ ├── kelly.js │ │ ├── maps.js │ │ ├── masonry.pkgd.min.js │ │ ├── material.js │ │ ├── morris.js │ │ ├── morris.min.js │ │ ├── popper.min.js │ │ ├── quill.js │ │ ├── raphael-min.js │ │ ├── rating.min.js │ │ ├── sweetalert.js │ │ ├── table-treeview.js │ │ ├── tilt.jquery.min.js │ │ ├── tree.js │ │ ├── usaLow.js │ │ ├── validator.min.js │ │ └── worldLow.js │ └── 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 │ │ │ ├── conflict-detection.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 │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adobe.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-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 │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dailymotion.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── deezer.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge-legacy.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.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-alt.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-pay.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 │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram-square.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-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 │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mixer.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.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 │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.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-square.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 │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── rust.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopify.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.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 │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── unsplash.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.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 │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.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 │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bacteria.svg │ │ │ │ ├── bacterium.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.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 │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box-tissue.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.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-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.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 │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.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 │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-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 │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.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-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-alt.svg │ │ │ │ ├── compress-arrows-alt.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 │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── disease.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.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 │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.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 │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-alt.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── faucet.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-csv.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-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.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 │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.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-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding-water.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.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-sparkles.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands-wash.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake-alt-slash.svg │ │ │ │ ├── handshake-slash.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ ├── head-side-cough.svg │ │ │ │ ├── head-side-mask.svg │ │ │ │ ├── head-side-virus.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital-user.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── house-user.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.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-house.svg │ │ │ │ ├── laptop-medical.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 │ │ │ │ ├── lungs-virus.svg │ │ │ │ ├── lungs.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 │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.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 │ │ │ │ ├── mitten.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 │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.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-arrows.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane-slash.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-storm.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 │ │ │ │ ├── pump-medical.svg │ │ │ │ ├── pump-soap.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.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 │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.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 │ │ │ │ ├── shield-virus.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 │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sink.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── soap.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.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-20.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt-slash.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store-slash.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 │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.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 │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.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-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.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-slash.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 │ │ │ │ ├── virus-slash.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── viruses.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.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 │ │ ├── @icon │ │ └── dripicons │ │ │ ├── dripicons.css │ │ │ ├── dripicons.eot │ │ │ ├── dripicons.svg │ │ │ ├── dripicons.ttf │ │ │ ├── dripicons.woff │ │ │ ├── icons │ │ │ ├── alarm.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── anchor.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-thin-down.svg │ │ │ ├── arrow-thin-left.svg │ │ │ ├── arrow-thin-right.svg │ │ │ ├── arrow-thin-up.svg │ │ │ ├── arrow-up.svg │ │ │ ├── article.svg │ │ │ ├── backspace.svg │ │ │ ├── basket.svg │ │ │ ├── basketball.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery-medium.svg │ │ │ ├── bell.svg │ │ │ ├── blog.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bold.svg │ │ │ ├── bookmark.svg │ │ │ ├── bookmarks.svg │ │ │ ├── box.svg │ │ │ ├── briefcase.svg │ │ │ ├── brightness-low.svg │ │ │ ├── brightness-max.svg │ │ │ ├── brightness-medium.svg │ │ │ ├── broadcast.svg │ │ │ ├── browser-upload.svg │ │ │ ├── browser.svg │ │ │ ├── brush.svg │ │ │ ├── calendar.svg │ │ │ ├── camcorder.svg │ │ │ ├── camera.svg │ │ │ ├── card.svg │ │ │ ├── cart.svg │ │ │ ├── checklist.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clockwise.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── code.svg │ │ │ ├── contract-2.svg │ │ │ ├── contract.svg │ │ │ ├── conversation.svg │ │ │ ├── copy.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshair.svg │ │ │ ├── cutlery.svg │ │ │ ├── device-desktop.svg │ │ │ ├── device-mobile.svg │ │ │ ├── device-tablet.svg │ │ │ ├── direction.svg │ │ │ ├── disc.svg │ │ │ ├── document-delete.svg │ │ │ ├── document-edit.svg │ │ │ ├── document-new.svg │ │ │ ├── document-remove.svg │ │ │ ├── document.svg │ │ │ ├── dot.svg │ │ │ ├── dots-2.svg │ │ │ ├── dots-3.svg │ │ │ ├── download.svg │ │ │ ├── duplicate.svg │ │ │ ├── enter.svg │ │ │ ├── exit.svg │ │ │ ├── expand-2.svg │ │ │ ├── expand.svg │ │ │ ├── experiment.svg │ │ │ ├── export.svg │ │ │ ├── feed.svg │ │ │ ├── flag.svg │ │ │ ├── flashlight.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── forward.svg │ │ │ ├── gaming.svg │ │ │ ├── gear.svg │ │ │ ├── graduation.svg │ │ │ ├── graph-bar.svg │ │ │ ├── graph-line.svg │ │ │ ├── graph-pie.svg │ │ │ ├── headset.svg │ │ │ ├── heart.svg │ │ │ ├── help.svg │ │ │ ├── home.svg │ │ │ ├── hourglass.svg │ │ │ ├── inbox.svg │ │ │ ├── information.svg │ │ │ ├── italic.svg │ │ │ ├── jewel.svg │ │ │ ├── lifting.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link-broken.svg │ │ │ ├── link.svg │ │ │ ├── list.svg │ │ │ ├── loading.svg │ │ │ ├── location.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── mail.svg │ │ │ ├── map.svg │ │ │ ├── media-loop.svg │ │ │ ├── media-next.svg │ │ │ ├── media-pause.svg │ │ │ ├── media-play.svg │ │ │ ├── media-previous.svg │ │ │ ├── media-record.svg │ │ │ ├── media-shuffle.svg │ │ │ ├── media-stop.svg │ │ │ ├── medical.svg │ │ │ ├── menu.svg │ │ │ ├── message.svg │ │ │ ├── meter.svg │ │ │ ├── microphone.svg │ │ │ ├── minus.svg │ │ │ ├── monitor.svg │ │ │ ├── move.svg │ │ │ ├── music.svg │ │ │ ├── network-1.svg │ │ │ ├── network-2.svg │ │ │ ├── network-3.svg │ │ │ ├── network-4.svg │ │ │ ├── network-5.svg │ │ │ ├── pamphlet.svg │ │ │ ├── paperclip.svg │ │ │ ├── pencil.svg │ │ │ ├── phone.svg │ │ │ ├── photo-group.svg │ │ │ ├── photo.svg │ │ │ ├── pill.svg │ │ │ ├── pin.svg │ │ │ ├── plus.svg │ │ │ ├── power.svg │ │ │ ├── preview.svg │ │ │ ├── print.svg │ │ │ ├── pulse.svg │ │ │ ├── question.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── return.svg │ │ │ ├── retweet.svg │ │ │ ├── rocket.svg │ │ │ ├── scale.svg │ │ │ ├── search.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── skip.svg │ │ │ ├── stack.svg │ │ │ ├── star.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store.svg │ │ │ ├── suitcase.svg │ │ │ ├── swap.svg │ │ │ ├── tag-delete.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── ticket.svg │ │ │ ├── time-reverse.svg │ │ │ ├── to-do.svg │ │ │ ├── toggles.svg │ │ │ ├── trash.svg │ │ │ ├── trophy.svg │ │ │ ├── upload.svg │ │ │ ├── user-group.svg │ │ │ ├── user-id.svg │ │ │ ├── user.svg │ │ │ ├── vibrate.svg │ │ │ ├── view-apps.svg │ │ │ ├── view-list-large.svg │ │ │ ├── view-list.svg │ │ │ ├── view-thumb.svg │ │ │ ├── volume-full.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-medium.svg │ │ │ ├── volume-off.svg │ │ │ ├── wallet.svg │ │ │ ├── warning.svg │ │ │ ├── web.svg │ │ │ ├── weight.svg │ │ │ ├── wifi.svg │ │ │ ├── wrong.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ │ └── manifest.json │ │ ├── fullcalendar │ │ ├── bootstrap │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── core │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── locales-all.js │ │ │ ├── locales-all.min.js │ │ │ ├── locales │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── ko.js │ │ │ │ ├── lb.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── daygrid │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── google-calendar │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── interaction │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── list │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── luxon │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── moment-timezone │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── moment │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── rrule │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ └── timegrid │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── ionicons │ │ └── dist │ │ │ ├── cheatsheet.html │ │ │ ├── cjs │ │ │ ├── css-shim-564371aa.js │ │ │ ├── dom-6b1463fe.js │ │ │ ├── index-d64a26b7.js │ │ │ ├── index.cjs.js │ │ │ ├── ion-icon.cjs.entry.js │ │ │ ├── ionicons.cjs.js │ │ │ ├── loader.cjs.js │ │ │ ├── patch-60245faa.js │ │ │ ├── shadow-css-30b84385.js │ │ │ └── utils-bb18553b.js │ │ │ ├── collection │ │ │ ├── collection-manifest.json │ │ │ ├── components │ │ │ │ └── icon │ │ │ │ │ ├── icon.css │ │ │ │ │ ├── icon.js │ │ │ │ │ ├── request.js │ │ │ │ │ ├── svg │ │ │ │ │ ├── add-circle-outline.svg │ │ │ │ │ ├── add-circle-sharp.svg │ │ │ │ │ ├── add-circle.svg │ │ │ │ │ ├── add-outline.svg │ │ │ │ │ ├── add-sharp.svg │ │ │ │ │ ├── add.svg │ │ │ │ │ ├── airplane-outline.svg │ │ │ │ │ ├── airplane-sharp.svg │ │ │ │ │ ├── airplane.svg │ │ │ │ │ ├── alarm-outline.svg │ │ │ │ │ ├── alarm-sharp.svg │ │ │ │ │ ├── alarm.svg │ │ │ │ │ ├── albums-outline.svg │ │ │ │ │ ├── albums-sharp.svg │ │ │ │ │ ├── albums.svg │ │ │ │ │ ├── alert-circle-outline.svg │ │ │ │ │ ├── alert-circle-sharp.svg │ │ │ │ │ ├── alert-circle.svg │ │ │ │ │ ├── alert-outline.svg │ │ │ │ │ ├── alert-sharp.svg │ │ │ │ │ ├── alert.svg │ │ │ │ │ ├── american-football-outline.svg │ │ │ │ │ ├── american-football-sharp.svg │ │ │ │ │ ├── american-football.svg │ │ │ │ │ ├── analytics-outline.svg │ │ │ │ │ ├── analytics-sharp.svg │ │ │ │ │ ├── analytics.svg │ │ │ │ │ ├── aperture-outline.svg │ │ │ │ │ ├── aperture-sharp.svg │ │ │ │ │ ├── aperture.svg │ │ │ │ │ ├── apps-outline.svg │ │ │ │ │ ├── apps-sharp.svg │ │ │ │ │ ├── apps.svg │ │ │ │ │ ├── archive-outline.svg │ │ │ │ │ ├── archive-sharp.svg │ │ │ │ │ ├── archive.svg │ │ │ │ │ ├── arrow-back-circle-outline.svg │ │ │ │ │ ├── arrow-back-circle-sharp.svg │ │ │ │ │ ├── arrow-back-circle.svg │ │ │ │ │ ├── arrow-back-outline.svg │ │ │ │ │ ├── arrow-back-sharp.svg │ │ │ │ │ ├── arrow-back.svg │ │ │ │ │ ├── arrow-down-circle-outline.svg │ │ │ │ │ ├── arrow-down-circle-sharp.svg │ │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ │ ├── arrow-down-outline.svg │ │ │ │ │ ├── arrow-down-sharp.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-forward-circle-outline.svg │ │ │ │ │ ├── arrow-forward-circle-sharp.svg │ │ │ │ │ ├── arrow-forward-circle.svg │ │ │ │ │ ├── arrow-forward-outline.svg │ │ │ │ │ ├── arrow-forward-sharp.svg │ │ │ │ │ ├── arrow-forward.svg │ │ │ │ │ ├── arrow-redo-circle-outline.svg │ │ │ │ │ ├── arrow-redo-circle-sharp.svg │ │ │ │ │ ├── arrow-redo-circle.svg │ │ │ │ │ ├── arrow-redo-outline.svg │ │ │ │ │ ├── arrow-redo-sharp.svg │ │ │ │ │ ├── arrow-redo.svg │ │ │ │ │ ├── arrow-undo-circle-outline.svg │ │ │ │ │ ├── arrow-undo-circle-sharp.svg │ │ │ │ │ ├── arrow-undo-circle.svg │ │ │ │ │ ├── arrow-undo-outline.svg │ │ │ │ │ ├── arrow-undo-sharp.svg │ │ │ │ │ ├── arrow-undo.svg │ │ │ │ │ ├── arrow-up-circle-outline.svg │ │ │ │ │ ├── arrow-up-circle-sharp.svg │ │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ │ ├── arrow-up-outline.svg │ │ │ │ │ ├── arrow-up-sharp.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── at-circle-outline.svg │ │ │ │ │ ├── at-circle-sharp.svg │ │ │ │ │ ├── at-circle.svg │ │ │ │ │ ├── at-outline.svg │ │ │ │ │ ├── at-sharp.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── attach-outline.svg │ │ │ │ │ ├── attach-sharp.svg │ │ │ │ │ ├── attach.svg │ │ │ │ │ ├── backspace-outline.svg │ │ │ │ │ ├── backspace-sharp.svg │ │ │ │ │ ├── backspace.svg │ │ │ │ │ ├── bandage-outline.svg │ │ │ │ │ ├── bandage-sharp.svg │ │ │ │ │ ├── bandage.svg │ │ │ │ │ ├── bar-chart-outline.svg │ │ │ │ │ ├── bar-chart-sharp.svg │ │ │ │ │ ├── bar-chart.svg │ │ │ │ │ ├── barbell-outline.svg │ │ │ │ │ ├── barbell-sharp.svg │ │ │ │ │ ├── barbell.svg │ │ │ │ │ ├── barcode-outline.svg │ │ │ │ │ ├── barcode-sharp.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── baseball-outline.svg │ │ │ │ │ ├── baseball-sharp.svg │ │ │ │ │ ├── baseball.svg │ │ │ │ │ ├── basket-outline.svg │ │ │ │ │ ├── basket-sharp.svg │ │ │ │ │ ├── basket.svg │ │ │ │ │ ├── basketball-outline.svg │ │ │ │ │ ├── basketball-sharp.svg │ │ │ │ │ ├── basketball.svg │ │ │ │ │ ├── battery-charging-outline.svg │ │ │ │ │ ├── battery-charging-sharp.svg │ │ │ │ │ ├── battery-charging.svg │ │ │ │ │ ├── battery-dead-outline.svg │ │ │ │ │ ├── battery-dead-sharp.svg │ │ │ │ │ ├── battery-dead.svg │ │ │ │ │ ├── battery-full-outline.svg │ │ │ │ │ ├── battery-full-sharp.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half-outline.svg │ │ │ │ │ ├── battery-half-sharp.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── beaker-outline.svg │ │ │ │ │ ├── beaker-sharp.svg │ │ │ │ │ ├── beaker.svg │ │ │ │ │ ├── bed-outline.svg │ │ │ │ │ ├── bed-sharp.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer-outline.svg │ │ │ │ │ ├── beer-sharp.svg │ │ │ │ │ ├── beer.svg │ │ │ │ │ ├── bicycle-outline.svg │ │ │ │ │ ├── bicycle-sharp.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── bluetooth-outline.svg │ │ │ │ │ ├── bluetooth-sharp.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── boat-outline.svg │ │ │ │ │ ├── boat-sharp.svg │ │ │ │ │ ├── boat.svg │ │ │ │ │ ├── body-outline.svg │ │ │ │ │ ├── body-sharp.svg │ │ │ │ │ ├── body.svg │ │ │ │ │ ├── bonfire-outline.svg │ │ │ │ │ ├── bonfire-sharp.svg │ │ │ │ │ ├── bonfire.svg │ │ │ │ │ ├── book-outline.svg │ │ │ │ │ ├── book-sharp.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark-outline.svg │ │ │ │ │ ├── bookmark-sharp.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── bookmarks-outline.svg │ │ │ │ │ ├── bookmarks-sharp.svg │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ ├── briefcase-outline.svg │ │ │ │ │ ├── briefcase-sharp.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── browsers-outline.svg │ │ │ │ │ ├── browsers-sharp.svg │ │ │ │ │ ├── browsers.svg │ │ │ │ │ ├── brush-outline.svg │ │ │ │ │ ├── brush-sharp.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bug-outline.svg │ │ │ │ │ ├── bug-sharp.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── build-outline.svg │ │ │ │ │ ├── build-sharp.svg │ │ │ │ │ ├── build.svg │ │ │ │ │ ├── bulb-outline.svg │ │ │ │ │ ├── bulb-sharp.svg │ │ │ │ │ ├── bulb.svg │ │ │ │ │ ├── bus-outline.svg │ │ │ │ │ ├── bus-sharp.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-outline.svg │ │ │ │ │ ├── business-sharp.svg │ │ │ │ │ ├── business.svg │ │ │ │ │ ├── cafe-outline.svg │ │ │ │ │ ├── cafe-sharp.svg │ │ │ │ │ ├── cafe.svg │ │ │ │ │ ├── calculator-outline.svg │ │ │ │ │ ├── calculator-sharp.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-outline.svg │ │ │ │ │ ├── calendar-sharp.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── call-outline.svg │ │ │ │ │ ├── call-sharp.svg │ │ │ │ │ ├── call.svg │ │ │ │ │ ├── camera-outline.svg │ │ │ │ │ ├── camera-reverse-outline.svg │ │ │ │ │ ├── camera-reverse-sharp.svg │ │ │ │ │ ├── camera-reverse.svg │ │ │ │ │ ├── camera-sharp.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── car-outline.svg │ │ │ │ │ ├── car-sharp.svg │ │ │ │ │ ├── car-sport-outline.svg │ │ │ │ │ ├── car-sport-sharp.svg │ │ │ │ │ ├── car-sport.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── card-outline.svg │ │ │ │ │ ├── card-sharp.svg │ │ │ │ │ ├── card.svg │ │ │ │ │ ├── caret-back-circle-outline.svg │ │ │ │ │ ├── caret-back-circle-sharp.svg │ │ │ │ │ ├── caret-back-circle.svg │ │ │ │ │ ├── caret-back-outline.svg │ │ │ │ │ ├── caret-back-sharp.svg │ │ │ │ │ ├── caret-back.svg │ │ │ │ │ ├── caret-down-circle-outline.svg │ │ │ │ │ ├── caret-down-circle-sharp.svg │ │ │ │ │ ├── caret-down-circle.svg │ │ │ │ │ ├── caret-down-outline.svg │ │ │ │ │ ├── caret-down-sharp.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-forward-circle-outline.svg │ │ │ │ │ ├── caret-forward-circle-sharp.svg │ │ │ │ │ ├── caret-forward-circle.svg │ │ │ │ │ ├── caret-forward-outline.svg │ │ │ │ │ ├── caret-forward-sharp.svg │ │ │ │ │ ├── caret-forward.svg │ │ │ │ │ ├── caret-up-circle-outline.svg │ │ │ │ │ ├── caret-up-circle-sharp.svg │ │ │ │ │ ├── caret-up-circle.svg │ │ │ │ │ ├── caret-up-outline.svg │ │ │ │ │ ├── caret-up-sharp.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── cart-outline.svg │ │ │ │ │ ├── cart-sharp.svg │ │ │ │ │ ├── cart.svg │ │ │ │ │ ├── cash-outline.svg │ │ │ │ │ ├── cash-sharp.svg │ │ │ │ │ ├── cash.svg │ │ │ │ │ ├── cellular-outline.svg │ │ │ │ │ ├── cellular-sharp.svg │ │ │ │ │ ├── cellular.svg │ │ │ │ │ ├── chatbox-ellipses-outline.svg │ │ │ │ │ ├── chatbox-ellipses-sharp.svg │ │ │ │ │ ├── chatbox-ellipses.svg │ │ │ │ │ ├── chatbox-outline.svg │ │ │ │ │ ├── chatbox-sharp.svg │ │ │ │ │ ├── chatbox.svg │ │ │ │ │ ├── chatbubble-ellipses-outline.svg │ │ │ │ │ ├── chatbubble-ellipses-sharp.svg │ │ │ │ │ ├── chatbubble-ellipses.svg │ │ │ │ │ ├── chatbubble-outline.svg │ │ │ │ │ ├── chatbubble-sharp.svg │ │ │ │ │ ├── chatbubble.svg │ │ │ │ │ ├── chatbubbles-outline.svg │ │ │ │ │ ├── chatbubbles-sharp.svg │ │ │ │ │ ├── chatbubbles.svg │ │ │ │ │ ├── checkbox-outline.svg │ │ │ │ │ ├── checkbox-sharp.svg │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ ├── checkmark-circle-outline.svg │ │ │ │ │ ├── checkmark-circle-sharp.svg │ │ │ │ │ ├── checkmark-circle.svg │ │ │ │ │ ├── checkmark-done-circle-outline.svg │ │ │ │ │ ├── checkmark-done-circle-sharp.svg │ │ │ │ │ ├── checkmark-done-circle.svg │ │ │ │ │ ├── checkmark-done-outline.svg │ │ │ │ │ ├── checkmark-done-sharp.svg │ │ │ │ │ ├── checkmark-done.svg │ │ │ │ │ ├── checkmark-outline.svg │ │ │ │ │ ├── checkmark-sharp.svg │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ ├── chevron-back-circle-outline.svg │ │ │ │ │ ├── chevron-back-circle-sharp.svg │ │ │ │ │ ├── chevron-back-circle.svg │ │ │ │ │ ├── chevron-back-outline.svg │ │ │ │ │ ├── chevron-back-sharp.svg │ │ │ │ │ ├── chevron-back.svg │ │ │ │ │ ├── chevron-down-circle-outline.svg │ │ │ │ │ ├── chevron-down-circle-sharp.svg │ │ │ │ │ ├── chevron-down-circle.svg │ │ │ │ │ ├── chevron-down-outline.svg │ │ │ │ │ ├── chevron-down-sharp.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-forward-circle-outline.svg │ │ │ │ │ ├── chevron-forward-circle-sharp.svg │ │ │ │ │ ├── chevron-forward-circle.svg │ │ │ │ │ ├── chevron-forward-outline.svg │ │ │ │ │ ├── chevron-forward-sharp.svg │ │ │ │ │ ├── chevron-forward.svg │ │ │ │ │ ├── chevron-up-circle-outline.svg │ │ │ │ │ ├── chevron-up-circle-sharp.svg │ │ │ │ │ ├── chevron-up-circle.svg │ │ │ │ │ ├── chevron-up-outline.svg │ │ │ │ │ ├── chevron-up-sharp.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── clipboard-outline.svg │ │ │ │ │ ├── clipboard-sharp.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── close-circle-outline.svg │ │ │ │ │ ├── close-circle-sharp.svg │ │ │ │ │ ├── close-circle.svg │ │ │ │ │ ├── close-outline.svg │ │ │ │ │ ├── close-sharp.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── cloud-circle-outline.svg │ │ │ │ │ ├── cloud-circle-sharp.svg │ │ │ │ │ ├── cloud-circle.svg │ │ │ │ │ ├── cloud-done-outline.svg │ │ │ │ │ ├── cloud-done-sharp.svg │ │ │ │ │ ├── cloud-done.svg │ │ │ │ │ ├── cloud-download-outline.svg │ │ │ │ │ ├── cloud-download-sharp.svg │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ ├── cloud-offline-outline.svg │ │ │ │ │ ├── cloud-offline-sharp.svg │ │ │ │ │ ├── cloud-offline.svg │ │ │ │ │ ├── cloud-outline.svg │ │ │ │ │ ├── cloud-sharp.svg │ │ │ │ │ ├── cloud-upload-outline.svg │ │ │ │ │ ├── cloud-upload-sharp.svg │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── cloudy-night-outline.svg │ │ │ │ │ ├── cloudy-night-sharp.svg │ │ │ │ │ ├── cloudy-night.svg │ │ │ │ │ ├── cloudy-outline.svg │ │ │ │ │ ├── cloudy-sharp.svg │ │ │ │ │ ├── cloudy.svg │ │ │ │ │ ├── code-download-outline.svg │ │ │ │ │ ├── code-download-sharp.svg │ │ │ │ │ ├── code-download.svg │ │ │ │ │ ├── code-outline.svg │ │ │ │ │ ├── code-sharp.svg │ │ │ │ │ ├── code-slash-outline.svg │ │ │ │ │ ├── code-slash-sharp.svg │ │ │ │ │ ├── code-slash.svg │ │ │ │ │ ├── code-working-outline.svg │ │ │ │ │ ├── code-working-sharp.svg │ │ │ │ │ ├── code-working.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── cog-outline.svg │ │ │ │ │ ├── cog-sharp.svg │ │ │ │ │ ├── cog.svg │ │ │ │ │ ├── color-fill-outline.svg │ │ │ │ │ ├── color-fill-sharp.svg │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ ├── color-filter-outline.svg │ │ │ │ │ ├── color-filter-sharp.svg │ │ │ │ │ ├── color-filter.svg │ │ │ │ │ ├── color-palette-outline.svg │ │ │ │ │ ├── color-palette-sharp.svg │ │ │ │ │ ├── color-palette.svg │ │ │ │ │ ├── color-wand-outline.svg │ │ │ │ │ ├── color-wand-sharp.svg │ │ │ │ │ ├── color-wand.svg │ │ │ │ │ ├── compass-outline.svg │ │ │ │ │ ├── compass-sharp.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── construct-outline.svg │ │ │ │ │ ├── construct-sharp.svg │ │ │ │ │ ├── construct.svg │ │ │ │ │ ├── contract-outline.svg │ │ │ │ │ ├── contract-sharp.svg │ │ │ │ │ ├── contract.svg │ │ │ │ │ ├── contrast-outline.svg │ │ │ │ │ ├── contrast-sharp.svg │ │ │ │ │ ├── contrast.svg │ │ │ │ │ ├── copy-outline.svg │ │ │ │ │ ├── copy-sharp.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── create-outline.svg │ │ │ │ │ ├── create-sharp.svg │ │ │ │ │ ├── create.svg │ │ │ │ │ ├── crop-outline.svg │ │ │ │ │ ├── crop-sharp.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cube-outline.svg │ │ │ │ │ ├── cube-sharp.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cut-outline.svg │ │ │ │ │ ├── cut-sharp.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── desktop-outline.svg │ │ │ │ │ ├── desktop-sharp.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── disc-outline.svg │ │ │ │ │ ├── disc-sharp.svg │ │ │ │ │ ├── disc.svg │ │ │ │ │ ├── document-attach-outline.svg │ │ │ │ │ ├── document-attach-sharp.svg │ │ │ │ │ ├── document-attach.svg │ │ │ │ │ ├── document-outline.svg │ │ │ │ │ ├── document-sharp.svg │ │ │ │ │ ├── document-text-outline.svg │ │ │ │ │ ├── document-text-sharp.svg │ │ │ │ │ ├── document-text.svg │ │ │ │ │ ├── document.svg │ │ │ │ │ ├── documents-outline.svg │ │ │ │ │ ├── documents-sharp.svg │ │ │ │ │ ├── documents.svg │ │ │ │ │ ├── download-outline.svg │ │ │ │ │ ├── download-sharp.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── duplicate-outline.svg │ │ │ │ │ ├── duplicate-sharp.svg │ │ │ │ │ ├── duplicate.svg │ │ │ │ │ ├── ear-outline.svg │ │ │ │ │ ├── ear-sharp.svg │ │ │ │ │ ├── ear.svg │ │ │ │ │ ├── earth-outline.svg │ │ │ │ │ ├── earth-sharp.svg │ │ │ │ │ ├── earth.svg │ │ │ │ │ ├── easel-outline.svg │ │ │ │ │ ├── easel-sharp.svg │ │ │ │ │ ├── easel.svg │ │ │ │ │ ├── egg-outline.svg │ │ │ │ │ ├── egg-sharp.svg │ │ │ │ │ ├── egg.svg │ │ │ │ │ ├── ellipse-outline.svg │ │ │ │ │ ├── ellipse-sharp.svg │ │ │ │ │ ├── ellipse.svg │ │ │ │ │ ├── ellipsis-horizontal-circle-outline.svg │ │ │ │ │ ├── ellipsis-horizontal-circle-sharp.svg │ │ │ │ │ ├── ellipsis-horizontal-circle.svg │ │ │ │ │ ├── ellipsis-horizontal-outline.svg │ │ │ │ │ ├── ellipsis-horizontal-sharp.svg │ │ │ │ │ ├── ellipsis-horizontal.svg │ │ │ │ │ ├── ellipsis-vertical-circle-outline.svg │ │ │ │ │ ├── ellipsis-vertical-circle-sharp.svg │ │ │ │ │ ├── ellipsis-vertical-circle.svg │ │ │ │ │ ├── ellipsis-vertical-outline.svg │ │ │ │ │ ├── ellipsis-vertical-sharp.svg │ │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ │ ├── enter-outline.svg │ │ │ │ │ ├── enter-sharp.svg │ │ │ │ │ ├── enter.svg │ │ │ │ │ ├── exit-outline.svg │ │ │ │ │ ├── exit-sharp.svg │ │ │ │ │ ├── exit.svg │ │ │ │ │ ├── expand-outline.svg │ │ │ │ │ ├── expand-sharp.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── eye-off-outline.svg │ │ │ │ │ ├── eye-off-sharp.svg │ │ │ │ │ ├── eye-off.svg │ │ │ │ │ ├── eye-outline.svg │ │ │ │ │ ├── eye-sharp.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── eyedrop-outline.svg │ │ │ │ │ ├── eyedrop-sharp.svg │ │ │ │ │ ├── eyedrop.svg │ │ │ │ │ ├── fast-food-outline.svg │ │ │ │ │ ├── fast-food-sharp.svg │ │ │ │ │ ├── fast-food.svg │ │ │ │ │ ├── female-outline.svg │ │ │ │ │ ├── female-sharp.svg │ │ │ │ │ ├── female.svg │ │ │ │ │ ├── file-tray-full-outline.svg │ │ │ │ │ ├── file-tray-full-sharp.svg │ │ │ │ │ ├── file-tray-full.svg │ │ │ │ │ ├── file-tray-outline.svg │ │ │ │ │ ├── file-tray-sharp.svg │ │ │ │ │ ├── file-tray-stacked-outline.svg │ │ │ │ │ ├── file-tray-stacked-sharp.svg │ │ │ │ │ ├── file-tray-stacked.svg │ │ │ │ │ ├── file-tray.svg │ │ │ │ │ ├── film-outline.svg │ │ │ │ │ ├── film-sharp.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter-outline.svg │ │ │ │ │ ├── filter-sharp.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── finger-print-outline.svg │ │ │ │ │ ├── finger-print-sharp.svg │ │ │ │ │ ├── finger-print.svg │ │ │ │ │ ├── fitness-outline.svg │ │ │ │ │ ├── fitness-sharp.svg │ │ │ │ │ ├── fitness.svg │ │ │ │ │ ├── flag-outline.svg │ │ │ │ │ ├── flag-sharp.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flame-outline.svg │ │ │ │ │ ├── flame-sharp.svg │ │ │ │ │ ├── flame.svg │ │ │ │ │ ├── flash-off-outline.svg │ │ │ │ │ ├── flash-off-sharp.svg │ │ │ │ │ ├── flash-off.svg │ │ │ │ │ ├── flash-outline.svg │ │ │ │ │ ├── flash-sharp.svg │ │ │ │ │ ├── flash.svg │ │ │ │ │ ├── flashlight-outline.svg │ │ │ │ │ ├── flashlight-sharp.svg │ │ │ │ │ ├── flashlight.svg │ │ │ │ │ ├── flask-outline.svg │ │ │ │ │ ├── flask-sharp.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── flower-outline.svg │ │ │ │ │ ├── flower-sharp.svg │ │ │ │ │ ├── flower.svg │ │ │ │ │ ├── folder-open-outline.svg │ │ │ │ │ ├── folder-open-sharp.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-outline.svg │ │ │ │ │ ├── folder-sharp.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── football-outline.svg │ │ │ │ │ ├── football-sharp.svg │ │ │ │ │ ├── football.svg │ │ │ │ │ ├── funnel-outline.svg │ │ │ │ │ ├── funnel-sharp.svg │ │ │ │ │ ├── funnel.svg │ │ │ │ │ ├── game-controller-outline.svg │ │ │ │ │ ├── game-controller-sharp.svg │ │ │ │ │ ├── game-controller.svg │ │ │ │ │ ├── gift-outline.svg │ │ │ │ │ ├── gift-sharp.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── git-branch-outline.svg │ │ │ │ │ ├── git-branch-sharp.svg │ │ │ │ │ ├── git-branch.svg │ │ │ │ │ ├── git-commit-outline.svg │ │ │ │ │ ├── git-commit-sharp.svg │ │ │ │ │ ├── git-commit.svg │ │ │ │ │ ├── git-compare-outline.svg │ │ │ │ │ ├── git-compare-sharp.svg │ │ │ │ │ ├── git-compare.svg │ │ │ │ │ ├── git-merge-outline.svg │ │ │ │ │ ├── git-merge-sharp.svg │ │ │ │ │ ├── git-merge.svg │ │ │ │ │ ├── git-network-outline.svg │ │ │ │ │ ├── git-network-sharp.svg │ │ │ │ │ ├── git-network.svg │ │ │ │ │ ├── git-pull-request-outline.svg │ │ │ │ │ ├── git-pull-request-sharp.svg │ │ │ │ │ ├── git-pull-request.svg │ │ │ │ │ ├── glasses-outline.svg │ │ │ │ │ ├── glasses-sharp.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe-outline.svg │ │ │ │ │ ├── globe-sharp.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-outline.svg │ │ │ │ │ ├── golf-sharp.svg │ │ │ │ │ ├── golf.svg │ │ │ │ │ ├── grid-outline.svg │ │ │ │ │ ├── grid-sharp.svg │ │ │ │ │ ├── grid.svg │ │ │ │ │ ├── hammer-outline.svg │ │ │ │ │ ├── hammer-sharp.svg │ │ │ │ │ ├── hammer.svg │ │ │ │ │ ├── hand-left-outline.svg │ │ │ │ │ ├── hand-left-sharp.svg │ │ │ │ │ ├── hand-left.svg │ │ │ │ │ ├── hand-right-outline.svg │ │ │ │ │ ├── hand-right-sharp.svg │ │ │ │ │ ├── hand-right.svg │ │ │ │ │ ├── happy-outline.svg │ │ │ │ │ ├── happy-sharp.svg │ │ │ │ │ ├── happy.svg │ │ │ │ │ ├── hardware-chip-outline.svg │ │ │ │ │ ├── hardware-chip-sharp.svg │ │ │ │ │ ├── hardware-chip.svg │ │ │ │ │ ├── headset-outline.svg │ │ │ │ │ ├── headset-sharp.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart-circle-outline.svg │ │ │ │ │ ├── heart-circle-sharp.svg │ │ │ │ │ ├── heart-circle.svg │ │ │ │ │ ├── heart-dislike-circle-outline.svg │ │ │ │ │ ├── heart-dislike-circle-sharp.svg │ │ │ │ │ ├── heart-dislike-circle.svg │ │ │ │ │ ├── heart-dislike-outline.svg │ │ │ │ │ ├── heart-dislike-sharp.svg │ │ │ │ │ ├── heart-dislike.svg │ │ │ │ │ ├── heart-half-outline.svg │ │ │ │ │ ├── heart-half-sharp.svg │ │ │ │ │ ├── heart-half.svg │ │ │ │ │ ├── heart-outline.svg │ │ │ │ │ ├── heart-sharp.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── help-buoy-outline.svg │ │ │ │ │ ├── help-buoy-sharp.svg │ │ │ │ │ ├── help-buoy.svg │ │ │ │ │ ├── help-circle-outline.svg │ │ │ │ │ ├── help-circle-sharp.svg │ │ │ │ │ ├── help-circle.svg │ │ │ │ │ ├── help-outline.svg │ │ │ │ │ ├── help-sharp.svg │ │ │ │ │ ├── help.svg │ │ │ │ │ ├── home-outline.svg │ │ │ │ │ ├── home-sharp.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── hourglass-outline.svg │ │ │ │ │ ├── hourglass-sharp.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── ice-cream-outline.svg │ │ │ │ │ ├── ice-cream-sharp.svg │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ ├── image-outline.svg │ │ │ │ │ ├── image-sharp.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images-outline.svg │ │ │ │ │ ├── images-sharp.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── infinite-outline.svg │ │ │ │ │ ├── infinite-sharp.svg │ │ │ │ │ ├── infinite.svg │ │ │ │ │ ├── information-circle-outline.svg │ │ │ │ │ ├── information-circle-sharp.svg │ │ │ │ │ ├── information-circle.svg │ │ │ │ │ ├── information-outline.svg │ │ │ │ │ ├── information-sharp.svg │ │ │ │ │ ├── information.svg │ │ │ │ │ ├── journal-outline.svg │ │ │ │ │ ├── journal-sharp.svg │ │ │ │ │ ├── journal.svg │ │ │ │ │ ├── key-outline.svg │ │ │ │ │ ├── key-sharp.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keypad-outline.svg │ │ │ │ │ ├── keypad-sharp.svg │ │ │ │ │ ├── keypad.svg │ │ │ │ │ ├── language-outline.svg │ │ │ │ │ ├── language-sharp.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-outline.svg │ │ │ │ │ ├── laptop-sharp.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── layers-outline.svg │ │ │ │ │ ├── layers-sharp.svg │ │ │ │ │ ├── layers.svg │ │ │ │ │ ├── leaf-outline.svg │ │ │ │ │ ├── leaf-sharp.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── library-outline.svg │ │ │ │ │ ├── library-sharp.svg │ │ │ │ │ ├── library.svg │ │ │ │ │ ├── link-outline.svg │ │ │ │ │ ├── link-sharp.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── list-circle-outline.svg │ │ │ │ │ ├── list-circle-sharp.svg │ │ │ │ │ ├── list-circle.svg │ │ │ │ │ ├── list-outline.svg │ │ │ │ │ ├── list-sharp.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── locate-outline.svg │ │ │ │ │ ├── locate-sharp.svg │ │ │ │ │ ├── locate.svg │ │ │ │ │ ├── location-outline.svg │ │ │ │ │ ├── location-sharp.svg │ │ │ │ │ ├── location.svg │ │ │ │ │ ├── lock-closed-outline.svg │ │ │ │ │ ├── lock-closed-sharp.svg │ │ │ │ │ ├── lock-closed.svg │ │ │ │ │ ├── lock-open-outline.svg │ │ │ │ │ ├── lock-open-sharp.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── log-in-outline.svg │ │ │ │ │ ├── log-in-sharp.svg │ │ │ │ │ ├── log-in.svg │ │ │ │ │ ├── log-out-outline.svg │ │ │ │ │ ├── log-out-sharp.svg │ │ │ │ │ ├── log-out.svg │ │ │ │ │ ├── logo-amazon.svg │ │ │ │ │ ├── logo-amplify.svg │ │ │ │ │ ├── logo-android.svg │ │ │ │ │ ├── logo-angular.svg │ │ │ │ │ ├── logo-apple-appstore.svg │ │ │ │ │ ├── logo-apple.svg │ │ │ │ │ ├── logo-behance.svg │ │ │ │ │ ├── logo-bitbucket.svg │ │ │ │ │ ├── logo-bitcoin.svg │ │ │ │ │ ├── logo-buffer.svg │ │ │ │ │ ├── logo-capacitor.svg │ │ │ │ │ ├── logo-chrome.svg │ │ │ │ │ ├── logo-closed-captioning.svg │ │ │ │ │ ├── logo-codepen.svg │ │ │ │ │ ├── logo-css3.svg │ │ │ │ │ ├── logo-designernews.svg │ │ │ │ │ ├── logo-docker.svg │ │ │ │ │ ├── logo-dribbble.svg │ │ │ │ │ ├── logo-dropbox.svg │ │ │ │ │ ├── logo-edge.svg │ │ │ │ │ ├── logo-electron.svg │ │ │ │ │ ├── logo-euro.svg │ │ │ │ │ ├── logo-facebook.svg │ │ │ │ │ ├── logo-firebase.svg │ │ │ │ │ ├── logo-firefox.svg │ │ │ │ │ ├── logo-flickr.svg │ │ │ │ │ ├── logo-foursquare.svg │ │ │ │ │ ├── logo-github.svg │ │ │ │ │ ├── logo-gitlab.svg │ │ │ │ │ ├── logo-google-playstore.svg │ │ │ │ │ ├── logo-google.svg │ │ │ │ │ ├── logo-hackernews.svg │ │ │ │ │ ├── logo-html5.svg │ │ │ │ │ ├── logo-instagram.svg │ │ │ │ │ ├── logo-ionic.svg │ │ │ │ │ ├── logo-ionitron.svg │ │ │ │ │ ├── logo-javascript.svg │ │ │ │ │ ├── logo-laravel.svg │ │ │ │ │ ├── logo-linkedin.svg │ │ │ │ │ ├── logo-markdown.svg │ │ │ │ │ ├── logo-medium.svg │ │ │ │ │ ├── logo-no-smoking.svg │ │ │ │ │ ├── logo-nodejs.svg │ │ │ │ │ ├── logo-npm.svg │ │ │ │ │ ├── logo-octocat.svg │ │ │ │ │ ├── logo-paypal.svg │ │ │ │ │ ├── logo-pinterest.svg │ │ │ │ │ ├── logo-playstation.svg │ │ │ │ │ ├── logo-pwa.svg │ │ │ │ │ ├── logo-python.svg │ │ │ │ │ ├── logo-react.svg │ │ │ │ │ ├── logo-reddit.svg │ │ │ │ │ ├── logo-rss.svg │ │ │ │ │ ├── logo-sass.svg │ │ │ │ │ ├── logo-skype.svg │ │ │ │ │ ├── logo-slack.svg │ │ │ │ │ ├── logo-snapchat.svg │ │ │ │ │ ├── logo-soundcloud.svg │ │ │ │ │ ├── logo-stackoverflow.svg │ │ │ │ │ ├── logo-steam.svg │ │ │ │ │ ├── logo-stencil.svg │ │ │ │ │ ├── logo-tiktok.svg │ │ │ │ │ ├── logo-tumblr.svg │ │ │ │ │ ├── logo-tux.svg │ │ │ │ │ ├── logo-twitch.svg │ │ │ │ │ ├── logo-twitter.svg │ │ │ │ │ ├── logo-usd.svg │ │ │ │ │ ├── logo-venmo.svg │ │ │ │ │ ├── logo-vimeo.svg │ │ │ │ │ ├── logo-vk.svg │ │ │ │ │ ├── logo-vue.svg │ │ │ │ │ ├── logo-web-component.svg │ │ │ │ │ ├── logo-whatsapp.svg │ │ │ │ │ ├── logo-windows.svg │ │ │ │ │ ├── logo-wordpress.svg │ │ │ │ │ ├── logo-xbox.svg │ │ │ │ │ ├── logo-xing.svg │ │ │ │ │ ├── logo-yahoo.svg │ │ │ │ │ ├── logo-yen.svg │ │ │ │ │ ├── logo-youtube.svg │ │ │ │ │ ├── magnet-outline.svg │ │ │ │ │ ├── magnet-sharp.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── mail-open-outline.svg │ │ │ │ │ ├── mail-open-sharp.svg │ │ │ │ │ ├── mail-open.svg │ │ │ │ │ ├── mail-outline.svg │ │ │ │ │ ├── mail-sharp.svg │ │ │ │ │ ├── mail-unread-outline.svg │ │ │ │ │ ├── mail-unread-sharp.svg │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ ├── mail.svg │ │ │ │ │ ├── male-female-outline.svg │ │ │ │ │ ├── male-female-sharp.svg │ │ │ │ │ ├── male-female.svg │ │ │ │ │ ├── male-outline.svg │ │ │ │ │ ├── male-sharp.svg │ │ │ │ │ ├── male.svg │ │ │ │ │ ├── man-outline.svg │ │ │ │ │ ├── man-sharp.svg │ │ │ │ │ ├── man.svg │ │ │ │ │ ├── map-outline.svg │ │ │ │ │ ├── map-sharp.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── medal-outline.svg │ │ │ │ │ ├── medal-sharp.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── medical-outline.svg │ │ │ │ │ ├── medical-sharp.svg │ │ │ │ │ ├── medical.svg │ │ │ │ │ ├── medkit-outline.svg │ │ │ │ │ ├── medkit-sharp.svg │ │ │ │ │ ├── medkit.svg │ │ │ │ │ ├── megaphone-outline.svg │ │ │ │ │ ├── megaphone-sharp.svg │ │ │ │ │ ├── megaphone.svg │ │ │ │ │ ├── menu-outline.svg │ │ │ │ │ ├── menu-sharp.svg │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── mic-circle-outline.svg │ │ │ │ │ ├── mic-circle-sharp.svg │ │ │ │ │ ├── mic-circle.svg │ │ │ │ │ ├── mic-off-circle-outline.svg │ │ │ │ │ ├── mic-off-circle-sharp.svg │ │ │ │ │ ├── mic-off-circle.svg │ │ │ │ │ ├── mic-off-outline.svg │ │ │ │ │ ├── mic-off-sharp.svg │ │ │ │ │ ├── mic-off.svg │ │ │ │ │ ├── mic-outline.svg │ │ │ │ │ ├── mic-sharp.svg │ │ │ │ │ ├── mic.svg │ │ │ │ │ ├── moon-outline.svg │ │ │ │ │ ├── moon-sharp.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── move-outline.svg │ │ │ │ │ ├── move-sharp.svg │ │ │ │ │ ├── move.svg │ │ │ │ │ ├── musical-note-outline.svg │ │ │ │ │ ├── musical-note-sharp.svg │ │ │ │ │ ├── musical-note.svg │ │ │ │ │ ├── musical-notes-outline.svg │ │ │ │ │ ├── musical-notes-sharp.svg │ │ │ │ │ ├── musical-notes.svg │ │ │ │ │ ├── navigate-circle-outline.svg │ │ │ │ │ ├── navigate-circle-sharp.svg │ │ │ │ │ ├── navigate-circle.svg │ │ │ │ │ ├── navigate-outline.svg │ │ │ │ │ ├── navigate-sharp.svg │ │ │ │ │ ├── navigate.svg │ │ │ │ │ ├── newspaper-outline.svg │ │ │ │ │ ├── newspaper-sharp.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── notifications-circle-outline.svg │ │ │ │ │ ├── notifications-circle-sharp.svg │ │ │ │ │ ├── notifications-circle.svg │ │ │ │ │ ├── notifications-off-circle-outline.svg │ │ │ │ │ ├── notifications-off-circle-sharp.svg │ │ │ │ │ ├── notifications-off-circle.svg │ │ │ │ │ ├── notifications-off-outline.svg │ │ │ │ │ ├── notifications-off-sharp.svg │ │ │ │ │ ├── notifications-off.svg │ │ │ │ │ ├── notifications-outline.svg │ │ │ │ │ ├── notifications-sharp.svg │ │ │ │ │ ├── notifications.svg │ │ │ │ │ ├── nuclear-outline.svg │ │ │ │ │ ├── nuclear-sharp.svg │ │ │ │ │ ├── nuclear.svg │ │ │ │ │ ├── nutrition-outline.svg │ │ │ │ │ ├── nutrition-sharp.svg │ │ │ │ │ ├── nutrition.svg │ │ │ │ │ ├── open-outline.svg │ │ │ │ │ ├── open-sharp.svg │ │ │ │ │ ├── open.svg │ │ │ │ │ ├── options-outline.svg │ │ │ │ │ ├── options-sharp.svg │ │ │ │ │ ├── options.svg │ │ │ │ │ ├── paper-plane-outline.svg │ │ │ │ │ ├── paper-plane-sharp.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── partly-sunny-outline.svg │ │ │ │ │ ├── partly-sunny-sharp.svg │ │ │ │ │ ├── partly-sunny.svg │ │ │ │ │ ├── pause-circle-outline.svg │ │ │ │ │ ├── pause-circle-sharp.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── pause-outline.svg │ │ │ │ │ ├── pause-sharp.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw-outline.svg │ │ │ │ │ ├── paw-sharp.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── pencil-outline.svg │ │ │ │ │ ├── pencil-sharp.svg │ │ │ │ │ ├── pencil.svg │ │ │ │ │ ├── people-circle-outline.svg │ │ │ │ │ ├── people-circle-sharp.svg │ │ │ │ │ ├── people-circle.svg │ │ │ │ │ ├── people-outline.svg │ │ │ │ │ ├── people-sharp.svg │ │ │ │ │ ├── people.svg │ │ │ │ │ ├── person-add-outline.svg │ │ │ │ │ ├── person-add-sharp.svg │ │ │ │ │ ├── person-add.svg │ │ │ │ │ ├── person-circle-outline.svg │ │ │ │ │ ├── person-circle-sharp.svg │ │ │ │ │ ├── person-circle.svg │ │ │ │ │ ├── person-outline.svg │ │ │ │ │ ├── person-remove-outline.svg │ │ │ │ │ ├── person-remove-sharp.svg │ │ │ │ │ ├── person-remove.svg │ │ │ │ │ ├── person-sharp.svg │ │ │ │ │ ├── person.svg │ │ │ │ │ ├── phone-landscape-outline.svg │ │ │ │ │ ├── phone-landscape-sharp.svg │ │ │ │ │ ├── phone-landscape.svg │ │ │ │ │ ├── phone-portrait-outline.svg │ │ │ │ │ ├── phone-portrait-sharp.svg │ │ │ │ │ ├── phone-portrait.svg │ │ │ │ │ ├── pie-chart-outline.svg │ │ │ │ │ ├── pie-chart-sharp.svg │ │ │ │ │ ├── pie-chart.svg │ │ │ │ │ ├── pin-outline.svg │ │ │ │ │ ├── pin-sharp.svg │ │ │ │ │ ├── pin.svg │ │ │ │ │ ├── pint-outline.svg │ │ │ │ │ ├── pint-sharp.svg │ │ │ │ │ ├── pint.svg │ │ │ │ │ ├── pizza-outline.svg │ │ │ │ │ ├── pizza-sharp.svg │ │ │ │ │ ├── pizza.svg │ │ │ │ │ ├── planet-outline.svg │ │ │ │ │ ├── planet-sharp.svg │ │ │ │ │ ├── planet.svg │ │ │ │ │ ├── play-back-circle-outline.svg │ │ │ │ │ ├── play-back-circle-sharp.svg │ │ │ │ │ ├── play-back-circle.svg │ │ │ │ │ ├── play-back-outline.svg │ │ │ │ │ ├── play-back-sharp.svg │ │ │ │ │ ├── play-back.svg │ │ │ │ │ ├── play-circle-outline.svg │ │ │ │ │ ├── play-circle-sharp.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── play-forward-circle-outline.svg │ │ │ │ │ ├── play-forward-circle-sharp.svg │ │ │ │ │ ├── play-forward-circle.svg │ │ │ │ │ ├── play-forward-outline.svg │ │ │ │ │ ├── play-forward-sharp.svg │ │ │ │ │ ├── play-forward.svg │ │ │ │ │ ├── play-outline.svg │ │ │ │ │ ├── play-sharp.svg │ │ │ │ │ ├── play-skip-back-circle-outline.svg │ │ │ │ │ ├── play-skip-back-circle-sharp.svg │ │ │ │ │ ├── play-skip-back-circle.svg │ │ │ │ │ ├── play-skip-back-outline.svg │ │ │ │ │ ├── play-skip-back-sharp.svg │ │ │ │ │ ├── play-skip-back.svg │ │ │ │ │ ├── play-skip-forward-circle-outline.svg │ │ │ │ │ ├── play-skip-forward-circle-sharp.svg │ │ │ │ │ ├── play-skip-forward-circle.svg │ │ │ │ │ ├── play-skip-forward-outline.svg │ │ │ │ │ ├── play-skip-forward-sharp.svg │ │ │ │ │ ├── play-skip-forward.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── podium-outline.svg │ │ │ │ │ ├── podium-sharp.svg │ │ │ │ │ ├── podium.svg │ │ │ │ │ ├── power-outline.svg │ │ │ │ │ ├── power-sharp.svg │ │ │ │ │ ├── power.svg │ │ │ │ │ ├── pricetag-outline.svg │ │ │ │ │ ├── pricetag-sharp.svg │ │ │ │ │ ├── pricetag.svg │ │ │ │ │ ├── pricetags-outline.svg │ │ │ │ │ ├── pricetags-sharp.svg │ │ │ │ │ ├── pricetags.svg │ │ │ │ │ ├── print-outline.svg │ │ │ │ │ ├── print-sharp.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── pulse-outline.svg │ │ │ │ │ ├── pulse-sharp.svg │ │ │ │ │ ├── pulse.svg │ │ │ │ │ ├── push-outline.svg │ │ │ │ │ ├── push-sharp.svg │ │ │ │ │ ├── push.svg │ │ │ │ │ ├── qr-code-outline.svg │ │ │ │ │ ├── qr-code-sharp.svg │ │ │ │ │ ├── qr-code.svg │ │ │ │ │ ├── radio-button-off-outline.svg │ │ │ │ │ ├── radio-button-off-sharp.svg │ │ │ │ │ ├── radio-button-off.svg │ │ │ │ │ ├── radio-button-on-outline.svg │ │ │ │ │ ├── radio-button-on-sharp.svg │ │ │ │ │ ├── radio-button-on.svg │ │ │ │ │ ├── radio-outline.svg │ │ │ │ │ ├── radio-sharp.svg │ │ │ │ │ ├── radio.svg │ │ │ │ │ ├── rainy-outline.svg │ │ │ │ │ ├── rainy-sharp.svg │ │ │ │ │ ├── rainy.svg │ │ │ │ │ ├── reader-outline.svg │ │ │ │ │ ├── reader-sharp.svg │ │ │ │ │ ├── reader.svg │ │ │ │ │ ├── receipt-outline.svg │ │ │ │ │ ├── receipt-sharp.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── recording-outline.svg │ │ │ │ │ ├── recording-sharp.svg │ │ │ │ │ ├── recording.svg │ │ │ │ │ ├── refresh-circle-outline.svg │ │ │ │ │ ├── refresh-circle-sharp.svg │ │ │ │ │ ├── refresh-circle.svg │ │ │ │ │ ├── refresh-outline.svg │ │ │ │ │ ├── refresh-sharp.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── reload-circle-outline.svg │ │ │ │ │ ├── reload-circle-sharp.svg │ │ │ │ │ ├── reload-circle.svg │ │ │ │ │ ├── reload-outline.svg │ │ │ │ │ ├── reload-sharp.svg │ │ │ │ │ ├── reload.svg │ │ │ │ │ ├── remove-circle-outline.svg │ │ │ │ │ ├── remove-circle-sharp.svg │ │ │ │ │ ├── remove-circle.svg │ │ │ │ │ ├── remove-outline.svg │ │ │ │ │ ├── remove-sharp.svg │ │ │ │ │ ├── remove.svg │ │ │ │ │ ├── reorder-four-outline.svg │ │ │ │ │ ├── reorder-four-sharp.svg │ │ │ │ │ ├── reorder-four.svg │ │ │ │ │ ├── reorder-three-outline.svg │ │ │ │ │ ├── reorder-three-sharp.svg │ │ │ │ │ ├── reorder-three.svg │ │ │ │ │ ├── reorder-two-outline.svg │ │ │ │ │ ├── reorder-two-sharp.svg │ │ │ │ │ ├── reorder-two.svg │ │ │ │ │ ├── repeat-outline.svg │ │ │ │ │ ├── repeat-sharp.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── resize-outline.svg │ │ │ │ │ ├── resize-sharp.svg │ │ │ │ │ ├── resize.svg │ │ │ │ │ ├── restaurant-outline.svg │ │ │ │ │ ├── restaurant-sharp.svg │ │ │ │ │ ├── restaurant.svg │ │ │ │ │ ├── return-down-back-outline.svg │ │ │ │ │ ├── return-down-back-sharp.svg │ │ │ │ │ ├── return-down-back.svg │ │ │ │ │ ├── return-down-forward-outline.svg │ │ │ │ │ ├── return-down-forward-sharp.svg │ │ │ │ │ ├── return-down-forward.svg │ │ │ │ │ ├── return-up-back-outline.svg │ │ │ │ │ ├── return-up-back-sharp.svg │ │ │ │ │ ├── return-up-back.svg │ │ │ │ │ ├── return-up-forward-outline.svg │ │ │ │ │ ├── return-up-forward-sharp.svg │ │ │ │ │ ├── return-up-forward.svg │ │ │ │ │ ├── ribbon-outline.svg │ │ │ │ │ ├── ribbon-sharp.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── rocket-outline.svg │ │ │ │ │ ├── rocket-sharp.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── rose-outline.svg │ │ │ │ │ ├── rose-sharp.svg │ │ │ │ │ ├── rose.svg │ │ │ │ │ ├── sad-outline.svg │ │ │ │ │ ├── sad-sharp.svg │ │ │ │ │ ├── sad.svg │ │ │ │ │ ├── save-outline.svg │ │ │ │ │ ├── save-sharp.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── scan-circle-outline.svg │ │ │ │ │ ├── scan-circle-sharp.svg │ │ │ │ │ ├── scan-circle.svg │ │ │ │ │ ├── scan-outline.svg │ │ │ │ │ ├── scan-sharp.svg │ │ │ │ │ ├── scan.svg │ │ │ │ │ ├── school-outline.svg │ │ │ │ │ ├── school-sharp.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── search-circle-outline.svg │ │ │ │ │ ├── search-circle-sharp.svg │ │ │ │ │ ├── search-circle.svg │ │ │ │ │ ├── search-outline.svg │ │ │ │ │ ├── search-sharp.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── send-outline.svg │ │ │ │ │ ├── send-sharp.svg │ │ │ │ │ ├── send.svg │ │ │ │ │ ├── server-outline.svg │ │ │ │ │ ├── server-sharp.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── settings-outline.svg │ │ │ │ │ ├── settings-sharp.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── shapes-outline.svg │ │ │ │ │ ├── shapes-sharp.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-outline.svg │ │ │ │ │ ├── share-sharp.svg │ │ │ │ │ ├── share-social-outline.svg │ │ │ │ │ ├── share-social-sharp.svg │ │ │ │ │ ├── share-social.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── shield-checkmark-outline.svg │ │ │ │ │ ├── shield-checkmark-sharp.svg │ │ │ │ │ ├── shield-checkmark.svg │ │ │ │ │ ├── shield-outline.svg │ │ │ │ │ ├── shield-sharp.svg │ │ │ │ │ ├── shield.svg │ │ │ │ │ ├── shirt-outline.svg │ │ │ │ │ ├── shirt-sharp.svg │ │ │ │ │ ├── shirt.svg │ │ │ │ │ ├── shuffle-outline.svg │ │ │ │ │ ├── shuffle-sharp.svg │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ ├── skull-outline.svg │ │ │ │ │ ├── skull-sharp.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── snow-outline.svg │ │ │ │ │ ├── snow-sharp.svg │ │ │ │ │ ├── snow.svg │ │ │ │ │ ├── speedometer-outline.svg │ │ │ │ │ ├── speedometer-sharp.svg │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ ├── square-outline.svg │ │ │ │ │ ├── square-sharp.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half-outline.svg │ │ │ │ │ ├── star-half-sharp.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-outline.svg │ │ │ │ │ ├── star-sharp.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── stats-chart-outline.svg │ │ │ │ │ ├── stats-chart-sharp.svg │ │ │ │ │ ├── stats-chart.svg │ │ │ │ │ ├── stop-circle-outline.svg │ │ │ │ │ ├── stop-circle-sharp.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── stop-outline.svg │ │ │ │ │ ├── stop-sharp.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch-outline.svg │ │ │ │ │ ├── stopwatch-sharp.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── subway-outline.svg │ │ │ │ │ ├── subway-sharp.svg │ │ │ │ │ ├── subway.svg │ │ │ │ │ ├── sunny-outline.svg │ │ │ │ │ ├── sunny-sharp.svg │ │ │ │ │ ├── sunny.svg │ │ │ │ │ ├── swap-horizontal-outline.svg │ │ │ │ │ ├── swap-horizontal-sharp.svg │ │ │ │ │ ├── swap-horizontal.svg │ │ │ │ │ ├── swap-vertical-outline.svg │ │ │ │ │ ├── swap-vertical-sharp.svg │ │ │ │ │ ├── swap-vertical.svg │ │ │ │ │ ├── sync-circle-outline.svg │ │ │ │ │ ├── sync-circle-sharp.svg │ │ │ │ │ ├── sync-circle.svg │ │ │ │ │ ├── sync-outline.svg │ │ │ │ │ ├── sync-sharp.svg │ │ │ │ │ ├── sync.svg │ │ │ │ │ ├── tablet-landscape-outline.svg │ │ │ │ │ ├── tablet-landscape-sharp.svg │ │ │ │ │ ├── tablet-landscape.svg │ │ │ │ │ ├── tablet-portrait-outline.svg │ │ │ │ │ ├── tablet-portrait-sharp.svg │ │ │ │ │ ├── tablet-portrait.svg │ │ │ │ │ ├── tennisball-outline.svg │ │ │ │ │ ├── tennisball-sharp.svg │ │ │ │ │ ├── tennisball.svg │ │ │ │ │ ├── terminal-outline.svg │ │ │ │ │ ├── terminal-sharp.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-outline.svg │ │ │ │ │ ├── text-sharp.svg │ │ │ │ │ ├── text.svg │ │ │ │ │ ├── thermometer-outline.svg │ │ │ │ │ ├── thermometer-sharp.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down-outline.svg │ │ │ │ │ ├── thumbs-down-sharp.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up-outline.svg │ │ │ │ │ ├── thumbs-up-sharp.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thunderstorm-outline.svg │ │ │ │ │ ├── thunderstorm-sharp.svg │ │ │ │ │ ├── thunderstorm.svg │ │ │ │ │ ├── time-outline.svg │ │ │ │ │ ├── time-sharp.svg │ │ │ │ │ ├── time.svg │ │ │ │ │ ├── timer-outline.svg │ │ │ │ │ ├── timer-sharp.svg │ │ │ │ │ ├── timer.svg │ │ │ │ │ ├── today-outline.svg │ │ │ │ │ ├── today-sharp.svg │ │ │ │ │ ├── today.svg │ │ │ │ │ ├── toggle-outline.svg │ │ │ │ │ ├── toggle-sharp.svg │ │ │ │ │ ├── toggle.svg │ │ │ │ │ ├── trail-sign-outline.svg │ │ │ │ │ ├── trail-sign-sharp.svg │ │ │ │ │ ├── trail-sign.svg │ │ │ │ │ ├── train-outline.svg │ │ │ │ │ ├── train-sharp.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── transgender-outline.svg │ │ │ │ │ ├── transgender-sharp.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-bin-outline.svg │ │ │ │ │ ├── trash-bin-sharp.svg │ │ │ │ │ ├── trash-bin.svg │ │ │ │ │ ├── trash-outline.svg │ │ │ │ │ ├── trash-sharp.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── trending-down-outline.svg │ │ │ │ │ ├── trending-down-sharp.svg │ │ │ │ │ ├── trending-down.svg │ │ │ │ │ ├── trending-up-outline.svg │ │ │ │ │ ├── trending-up-sharp.svg │ │ │ │ │ ├── trending-up.svg │ │ │ │ │ ├── triangle-outline.svg │ │ │ │ │ ├── triangle-sharp.svg │ │ │ │ │ ├── triangle.svg │ │ │ │ │ ├── trophy-outline.svg │ │ │ │ │ ├── trophy-sharp.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── tv-outline.svg │ │ │ │ │ ├── tv-sharp.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── umbrella-outline.svg │ │ │ │ │ ├── umbrella-sharp.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── videocam-outline.svg │ │ │ │ │ ├── videocam-sharp.svg │ │ │ │ │ ├── videocam.svg │ │ │ │ │ ├── volume-high-outline.svg │ │ │ │ │ ├── volume-high-sharp.svg │ │ │ │ │ ├── volume-high.svg │ │ │ │ │ ├── volume-low-outline.svg │ │ │ │ │ ├── volume-low-sharp.svg │ │ │ │ │ ├── volume-low.svg │ │ │ │ │ ├── volume-medium-outline.svg │ │ │ │ │ ├── volume-medium-sharp.svg │ │ │ │ │ ├── volume-medium.svg │ │ │ │ │ ├── volume-mute-outline.svg │ │ │ │ │ ├── volume-mute-sharp.svg │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ ├── volume-off-outline.svg │ │ │ │ │ ├── volume-off-sharp.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── walk-outline.svg │ │ │ │ │ ├── walk-sharp.svg │ │ │ │ │ ├── walk.svg │ │ │ │ │ ├── wallet-outline.svg │ │ │ │ │ ├── wallet-sharp.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── warning-outline.svg │ │ │ │ │ ├── warning-sharp.svg │ │ │ │ │ ├── warning.svg │ │ │ │ │ ├── watch-outline.svg │ │ │ │ │ ├── watch-sharp.svg │ │ │ │ │ ├── watch.svg │ │ │ │ │ ├── water-outline.svg │ │ │ │ │ ├── water-sharp.svg │ │ │ │ │ ├── water.svg │ │ │ │ │ ├── wifi-outline.svg │ │ │ │ │ ├── wifi-sharp.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── wine-outline.svg │ │ │ │ │ ├── wine-sharp.svg │ │ │ │ │ ├── wine.svg │ │ │ │ │ ├── woman-outline.svg │ │ │ │ │ ├── woman-sharp.svg │ │ │ │ │ └── woman.svg │ │ │ │ │ ├── utils.js │ │ │ │ │ └── validate.js │ │ │ └── index.js │ │ │ ├── esm-es5 │ │ │ ├── css-shim-3b0ed064.js │ │ │ ├── dom-3fa9e65e.js │ │ │ ├── index-e0fb4cab.js │ │ │ ├── index.mjs │ │ │ ├── ion-icon.entry.js │ │ │ ├── ionicons.mjs │ │ │ ├── loader.mjs │ │ │ ├── patch-8a5c4a53.js │ │ │ ├── shadow-css-a27537cf.js │ │ │ └── utils-6f78da88.js │ │ │ ├── esm │ │ │ ├── css-shim-3b0ed064.js │ │ │ ├── dom-3fa9e65e.js │ │ │ ├── index-e0fb4cab.js │ │ │ ├── index.mjs │ │ │ ├── ion-icon.entry.js │ │ │ ├── ionicons.mjs │ │ │ ├── loader.mjs │ │ │ ├── patch-8a5c4a53.js │ │ │ ├── polyfills │ │ │ │ ├── core-js.js │ │ │ │ ├── css-shim.js │ │ │ │ ├── dom.js │ │ │ │ ├── es5-html-element.js │ │ │ │ ├── index.js │ │ │ │ ├── promise.js │ │ │ │ └── system.js │ │ │ ├── shadow-css-a27537cf.js │ │ │ └── utils-6f78da88.js │ │ │ ├── index.js │ │ │ ├── index.mjs │ │ │ ├── ionicons.js │ │ │ ├── ionicons.json │ │ │ ├── ionicons.symbols.svg │ │ │ ├── ionicons │ │ │ ├── index.esm.js │ │ │ ├── ionicons.esm.js │ │ │ ├── ionicons.js │ │ │ ├── p-1bbd5478.system.js │ │ │ ├── p-27972752.js │ │ │ ├── p-3833d40d.js │ │ │ ├── p-4372c4bc.js │ │ │ ├── p-6f4eae92.js │ │ │ ├── p-6fac4dda.system.js │ │ │ ├── p-73a136a1.system.js │ │ │ ├── p-7815a89a.entry.js │ │ │ ├── p-93944642.system.js │ │ │ ├── p-9ca7810c.system.js │ │ │ ├── p-a144ac62.system.js │ │ │ ├── p-a32ddb35.js │ │ │ ├── p-bea43937.js │ │ │ ├── p-c4eb75a2.system.js │ │ │ ├── p-e4297691.system.js │ │ │ ├── p-e81624d4.system.entry.js │ │ │ └── svg │ │ │ │ ├── add-circle-outline.svg │ │ │ │ ├── add-circle-sharp.svg │ │ │ │ ├── add-circle.svg │ │ │ │ ├── add-outline.svg │ │ │ │ ├── add-sharp.svg │ │ │ │ ├── add.svg │ │ │ │ ├── airplane-outline.svg │ │ │ │ ├── airplane-sharp.svg │ │ │ │ ├── airplane.svg │ │ │ │ ├── alarm-outline.svg │ │ │ │ ├── alarm-sharp.svg │ │ │ │ ├── alarm.svg │ │ │ │ ├── albums-outline.svg │ │ │ │ ├── albums-sharp.svg │ │ │ │ ├── albums.svg │ │ │ │ ├── alert-circle-outline.svg │ │ │ │ ├── alert-circle-sharp.svg │ │ │ │ ├── alert-circle.svg │ │ │ │ ├── alert-outline.svg │ │ │ │ ├── alert-sharp.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── american-football-outline.svg │ │ │ │ ├── american-football-sharp.svg │ │ │ │ ├── american-football.svg │ │ │ │ ├── analytics-outline.svg │ │ │ │ ├── analytics-sharp.svg │ │ │ │ ├── analytics.svg │ │ │ │ ├── aperture-outline.svg │ │ │ │ ├── aperture-sharp.svg │ │ │ │ ├── aperture.svg │ │ │ │ ├── apps-outline.svg │ │ │ │ ├── apps-sharp.svg │ │ │ │ ├── apps.svg │ │ │ │ ├── archive-outline.svg │ │ │ │ ├── archive-sharp.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── arrow-back-circle-outline.svg │ │ │ │ ├── arrow-back-circle-sharp.svg │ │ │ │ ├── arrow-back-circle.svg │ │ │ │ ├── arrow-back-outline.svg │ │ │ │ ├── arrow-back-sharp.svg │ │ │ │ ├── arrow-back.svg │ │ │ │ ├── arrow-down-circle-outline.svg │ │ │ │ ├── arrow-down-circle-sharp.svg │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ ├── arrow-down-outline.svg │ │ │ │ ├── arrow-down-sharp.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-forward-circle-outline.svg │ │ │ │ ├── arrow-forward-circle-sharp.svg │ │ │ │ ├── arrow-forward-circle.svg │ │ │ │ ├── arrow-forward-outline.svg │ │ │ │ ├── arrow-forward-sharp.svg │ │ │ │ ├── arrow-forward.svg │ │ │ │ ├── arrow-redo-circle-outline.svg │ │ │ │ ├── arrow-redo-circle-sharp.svg │ │ │ │ ├── arrow-redo-circle.svg │ │ │ │ ├── arrow-redo-outline.svg │ │ │ │ ├── arrow-redo-sharp.svg │ │ │ │ ├── arrow-redo.svg │ │ │ │ ├── arrow-undo-circle-outline.svg │ │ │ │ ├── arrow-undo-circle-sharp.svg │ │ │ │ ├── arrow-undo-circle.svg │ │ │ │ ├── arrow-undo-outline.svg │ │ │ │ ├── arrow-undo-sharp.svg │ │ │ │ ├── arrow-undo.svg │ │ │ │ ├── arrow-up-circle-outline.svg │ │ │ │ ├── arrow-up-circle-sharp.svg │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ ├── arrow-up-outline.svg │ │ │ │ ├── arrow-up-sharp.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── at-circle-outline.svg │ │ │ │ ├── at-circle-sharp.svg │ │ │ │ ├── at-circle.svg │ │ │ │ ├── at-outline.svg │ │ │ │ ├── at-sharp.svg │ │ │ │ ├── at.svg │ │ │ │ ├── attach-outline.svg │ │ │ │ ├── attach-sharp.svg │ │ │ │ ├── attach.svg │ │ │ │ ├── backspace-outline.svg │ │ │ │ ├── backspace-sharp.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── bandage-outline.svg │ │ │ │ ├── bandage-sharp.svg │ │ │ │ ├── bandage.svg │ │ │ │ ├── bar-chart-outline.svg │ │ │ │ ├── bar-chart-sharp.svg │ │ │ │ ├── bar-chart.svg │ │ │ │ ├── barbell-outline.svg │ │ │ │ ├── barbell-sharp.svg │ │ │ │ ├── barbell.svg │ │ │ │ ├── barcode-outline.svg │ │ │ │ ├── barcode-sharp.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── baseball-outline.svg │ │ │ │ ├── baseball-sharp.svg │ │ │ │ ├── baseball.svg │ │ │ │ ├── basket-outline.svg │ │ │ │ ├── basket-sharp.svg │ │ │ │ ├── basket.svg │ │ │ │ ├── basketball-outline.svg │ │ │ │ ├── basketball-sharp.svg │ │ │ │ ├── basketball.svg │ │ │ │ ├── battery-charging-outline.svg │ │ │ │ ├── battery-charging-sharp.svg │ │ │ │ ├── battery-charging.svg │ │ │ │ ├── battery-dead-outline.svg │ │ │ │ ├── battery-dead-sharp.svg │ │ │ │ ├── battery-dead.svg │ │ │ │ ├── battery-full-outline.svg │ │ │ │ ├── battery-full-sharp.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half-outline.svg │ │ │ │ ├── battery-half-sharp.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── beaker-outline.svg │ │ │ │ ├── beaker-sharp.svg │ │ │ │ ├── beaker.svg │ │ │ │ ├── bed-outline.svg │ │ │ │ ├── bed-sharp.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer-outline.svg │ │ │ │ ├── beer-sharp.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bicycle-outline.svg │ │ │ │ ├── bicycle-sharp.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── bluetooth-outline.svg │ │ │ │ ├── bluetooth-sharp.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── boat-outline.svg │ │ │ │ ├── boat-sharp.svg │ │ │ │ ├── boat.svg │ │ │ │ ├── body-outline.svg │ │ │ │ ├── body-sharp.svg │ │ │ │ ├── body.svg │ │ │ │ ├── bonfire-outline.svg │ │ │ │ ├── bonfire-sharp.svg │ │ │ │ ├── bonfire.svg │ │ │ │ ├── book-outline.svg │ │ │ │ ├── book-sharp.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark-outline.svg │ │ │ │ ├── bookmark-sharp.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── bookmarks-outline.svg │ │ │ │ ├── bookmarks-sharp.svg │ │ │ │ ├── bookmarks.svg │ │ │ │ ├── briefcase-outline.svg │ │ │ │ ├── briefcase-sharp.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── browsers-outline.svg │ │ │ │ ├── browsers-sharp.svg │ │ │ │ ├── browsers.svg │ │ │ │ ├── brush-outline.svg │ │ │ │ ├── brush-sharp.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug-outline.svg │ │ │ │ ├── bug-sharp.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── build-outline.svg │ │ │ │ ├── build-sharp.svg │ │ │ │ ├── build.svg │ │ │ │ ├── bulb-outline.svg │ │ │ │ ├── bulb-sharp.svg │ │ │ │ ├── bulb.svg │ │ │ │ ├── bus-outline.svg │ │ │ │ ├── bus-sharp.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-outline.svg │ │ │ │ ├── business-sharp.svg │ │ │ │ ├── business.svg │ │ │ │ ├── cafe-outline.svg │ │ │ │ ├── cafe-sharp.svg │ │ │ │ ├── cafe.svg │ │ │ │ ├── calculator-outline.svg │ │ │ │ ├── calculator-sharp.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-outline.svg │ │ │ │ ├── calendar-sharp.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── call-outline.svg │ │ │ │ ├── call-sharp.svg │ │ │ │ ├── call.svg │ │ │ │ ├── camera-outline.svg │ │ │ │ ├── camera-reverse-outline.svg │ │ │ │ ├── camera-reverse-sharp.svg │ │ │ │ ├── camera-reverse.svg │ │ │ │ ├── camera-sharp.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── car-outline.svg │ │ │ │ ├── car-sharp.svg │ │ │ │ ├── car-sport-outline.svg │ │ │ │ ├── car-sport-sharp.svg │ │ │ │ ├── car-sport.svg │ │ │ │ ├── car.svg │ │ │ │ ├── card-outline.svg │ │ │ │ ├── card-sharp.svg │ │ │ │ ├── card.svg │ │ │ │ ├── caret-back-circle-outline.svg │ │ │ │ ├── caret-back-circle-sharp.svg │ │ │ │ ├── caret-back-circle.svg │ │ │ │ ├── caret-back-outline.svg │ │ │ │ ├── caret-back-sharp.svg │ │ │ │ ├── caret-back.svg │ │ │ │ ├── caret-down-circle-outline.svg │ │ │ │ ├── caret-down-circle-sharp.svg │ │ │ │ ├── caret-down-circle.svg │ │ │ │ ├── caret-down-outline.svg │ │ │ │ ├── caret-down-sharp.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-forward-circle-outline.svg │ │ │ │ ├── caret-forward-circle-sharp.svg │ │ │ │ ├── caret-forward-circle.svg │ │ │ │ ├── caret-forward-outline.svg │ │ │ │ ├── caret-forward-sharp.svg │ │ │ │ ├── caret-forward.svg │ │ │ │ ├── caret-up-circle-outline.svg │ │ │ │ ├── caret-up-circle-sharp.svg │ │ │ │ ├── caret-up-circle.svg │ │ │ │ ├── caret-up-outline.svg │ │ │ │ ├── caret-up-sharp.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── cart-outline.svg │ │ │ │ ├── cart-sharp.svg │ │ │ │ ├── cart.svg │ │ │ │ ├── cash-outline.svg │ │ │ │ ├── cash-sharp.svg │ │ │ │ ├── cash.svg │ │ │ │ ├── cellular-outline.svg │ │ │ │ ├── cellular-sharp.svg │ │ │ │ ├── cellular.svg │ │ │ │ ├── chatbox-ellipses-outline.svg │ │ │ │ ├── chatbox-ellipses-sharp.svg │ │ │ │ ├── chatbox-ellipses.svg │ │ │ │ ├── chatbox-outline.svg │ │ │ │ ├── chatbox-sharp.svg │ │ │ │ ├── chatbox.svg │ │ │ │ ├── chatbubble-ellipses-outline.svg │ │ │ │ ├── chatbubble-ellipses-sharp.svg │ │ │ │ ├── chatbubble-ellipses.svg │ │ │ │ ├── chatbubble-outline.svg │ │ │ │ ├── chatbubble-sharp.svg │ │ │ │ ├── chatbubble.svg │ │ │ │ ├── chatbubbles-outline.svg │ │ │ │ ├── chatbubbles-sharp.svg │ │ │ │ ├── chatbubbles.svg │ │ │ │ ├── checkbox-outline.svg │ │ │ │ ├── checkbox-sharp.svg │ │ │ │ ├── checkbox.svg │ │ │ │ ├── checkmark-circle-outline.svg │ │ │ │ ├── checkmark-circle-sharp.svg │ │ │ │ ├── checkmark-circle.svg │ │ │ │ ├── checkmark-done-circle-outline.svg │ │ │ │ ├── checkmark-done-circle-sharp.svg │ │ │ │ ├── checkmark-done-circle.svg │ │ │ │ ├── checkmark-done-outline.svg │ │ │ │ ├── checkmark-done-sharp.svg │ │ │ │ ├── checkmark-done.svg │ │ │ │ ├── checkmark-outline.svg │ │ │ │ ├── checkmark-sharp.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── chevron-back-circle-outline.svg │ │ │ │ ├── chevron-back-circle-sharp.svg │ │ │ │ ├── chevron-back-circle.svg │ │ │ │ ├── chevron-back-outline.svg │ │ │ │ ├── chevron-back-sharp.svg │ │ │ │ ├── chevron-back.svg │ │ │ │ ├── chevron-down-circle-outline.svg │ │ │ │ ├── chevron-down-circle-sharp.svg │ │ │ │ ├── chevron-down-circle.svg │ │ │ │ ├── chevron-down-outline.svg │ │ │ │ ├── chevron-down-sharp.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-forward-circle-outline.svg │ │ │ │ ├── chevron-forward-circle-sharp.svg │ │ │ │ ├── chevron-forward-circle.svg │ │ │ │ ├── chevron-forward-outline.svg │ │ │ │ ├── chevron-forward-sharp.svg │ │ │ │ ├── chevron-forward.svg │ │ │ │ ├── chevron-up-circle-outline.svg │ │ │ │ ├── chevron-up-circle-sharp.svg │ │ │ │ ├── chevron-up-circle.svg │ │ │ │ ├── chevron-up-outline.svg │ │ │ │ ├── chevron-up-sharp.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── clipboard-outline.svg │ │ │ │ ├── clipboard-sharp.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── close-circle-outline.svg │ │ │ │ ├── close-circle-sharp.svg │ │ │ │ ├── close-circle.svg │ │ │ │ ├── close-outline.svg │ │ │ │ ├── close-sharp.svg │ │ │ │ ├── close.svg │ │ │ │ ├── cloud-circle-outline.svg │ │ │ │ ├── cloud-circle-sharp.svg │ │ │ │ ├── cloud-circle.svg │ │ │ │ ├── cloud-done-outline.svg │ │ │ │ ├── cloud-done-sharp.svg │ │ │ │ ├── cloud-done.svg │ │ │ │ ├── cloud-download-outline.svg │ │ │ │ ├── cloud-download-sharp.svg │ │ │ │ ├── cloud-download.svg │ │ │ │ ├── cloud-offline-outline.svg │ │ │ │ ├── cloud-offline-sharp.svg │ │ │ │ ├── cloud-offline.svg │ │ │ │ ├── cloud-outline.svg │ │ │ │ ├── cloud-sharp.svg │ │ │ │ ├── cloud-upload-outline.svg │ │ │ │ ├── cloud-upload-sharp.svg │ │ │ │ ├── cloud-upload.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cloudy-night-outline.svg │ │ │ │ ├── cloudy-night-sharp.svg │ │ │ │ ├── cloudy-night.svg │ │ │ │ ├── cloudy-outline.svg │ │ │ │ ├── cloudy-sharp.svg │ │ │ │ ├── cloudy.svg │ │ │ │ ├── code-download-outline.svg │ │ │ │ ├── code-download-sharp.svg │ │ │ │ ├── code-download.svg │ │ │ │ ├── code-outline.svg │ │ │ │ ├── code-sharp.svg │ │ │ │ ├── code-slash-outline.svg │ │ │ │ ├── code-slash-sharp.svg │ │ │ │ ├── code-slash.svg │ │ │ │ ├── code-working-outline.svg │ │ │ │ ├── code-working-sharp.svg │ │ │ │ ├── code-working.svg │ │ │ │ ├── code.svg │ │ │ │ ├── cog-outline.svg │ │ │ │ ├── cog-sharp.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── color-fill-outline.svg │ │ │ │ ├── color-fill-sharp.svg │ │ │ │ ├── color-fill.svg │ │ │ │ ├── color-filter-outline.svg │ │ │ │ ├── color-filter-sharp.svg │ │ │ │ ├── color-filter.svg │ │ │ │ ├── color-palette-outline.svg │ │ │ │ ├── color-palette-sharp.svg │ │ │ │ ├── color-palette.svg │ │ │ │ ├── color-wand-outline.svg │ │ │ │ ├── color-wand-sharp.svg │ │ │ │ ├── color-wand.svg │ │ │ │ ├── compass-outline.svg │ │ │ │ ├── compass-sharp.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── construct-outline.svg │ │ │ │ ├── construct-sharp.svg │ │ │ │ ├── construct.svg │ │ │ │ ├── contract-outline.svg │ │ │ │ ├── contract-sharp.svg │ │ │ │ ├── contract.svg │ │ │ │ ├── contrast-outline.svg │ │ │ │ ├── contrast-sharp.svg │ │ │ │ ├── contrast.svg │ │ │ │ ├── copy-outline.svg │ │ │ │ ├── copy-sharp.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── create-outline.svg │ │ │ │ ├── create-sharp.svg │ │ │ │ ├── create.svg │ │ │ │ ├── crop-outline.svg │ │ │ │ ├── crop-sharp.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cube-outline.svg │ │ │ │ ├── cube-sharp.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cut-outline.svg │ │ │ │ ├── cut-sharp.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── desktop-outline.svg │ │ │ │ ├── desktop-sharp.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── disc-outline.svg │ │ │ │ ├── disc-sharp.svg │ │ │ │ ├── disc.svg │ │ │ │ ├── document-attach-outline.svg │ │ │ │ ├── document-attach-sharp.svg │ │ │ │ ├── document-attach.svg │ │ │ │ ├── document-outline.svg │ │ │ │ ├── document-sharp.svg │ │ │ │ ├── document-text-outline.svg │ │ │ │ ├── document-text-sharp.svg │ │ │ │ ├── document-text.svg │ │ │ │ ├── document.svg │ │ │ │ ├── documents-outline.svg │ │ │ │ ├── documents-sharp.svg │ │ │ │ ├── documents.svg │ │ │ │ ├── download-outline.svg │ │ │ │ ├── download-sharp.svg │ │ │ │ ├── download.svg │ │ │ │ ├── duplicate-outline.svg │ │ │ │ ├── duplicate-sharp.svg │ │ │ │ ├── duplicate.svg │ │ │ │ ├── ear-outline.svg │ │ │ │ ├── ear-sharp.svg │ │ │ │ ├── ear.svg │ │ │ │ ├── earth-outline.svg │ │ │ │ ├── earth-sharp.svg │ │ │ │ ├── earth.svg │ │ │ │ ├── easel-outline.svg │ │ │ │ ├── easel-sharp.svg │ │ │ │ ├── easel.svg │ │ │ │ ├── egg-outline.svg │ │ │ │ ├── egg-sharp.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── ellipse-outline.svg │ │ │ │ ├── ellipse-sharp.svg │ │ │ │ ├── ellipse.svg │ │ │ │ ├── ellipsis-horizontal-circle-outline.svg │ │ │ │ ├── ellipsis-horizontal-circle-sharp.svg │ │ │ │ ├── ellipsis-horizontal-circle.svg │ │ │ │ ├── ellipsis-horizontal-outline.svg │ │ │ │ ├── ellipsis-horizontal-sharp.svg │ │ │ │ ├── ellipsis-horizontal.svg │ │ │ │ ├── ellipsis-vertical-circle-outline.svg │ │ │ │ ├── ellipsis-vertical-circle-sharp.svg │ │ │ │ ├── ellipsis-vertical-circle.svg │ │ │ │ ├── ellipsis-vertical-outline.svg │ │ │ │ ├── ellipsis-vertical-sharp.svg │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ ├── enter-outline.svg │ │ │ │ ├── enter-sharp.svg │ │ │ │ ├── enter.svg │ │ │ │ ├── exit-outline.svg │ │ │ │ ├── exit-sharp.svg │ │ │ │ ├── exit.svg │ │ │ │ ├── expand-outline.svg │ │ │ │ ├── expand-sharp.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── eye-off-outline.svg │ │ │ │ ├── eye-off-sharp.svg │ │ │ │ ├── eye-off.svg │ │ │ │ ├── eye-outline.svg │ │ │ │ ├── eye-sharp.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── eyedrop-outline.svg │ │ │ │ ├── eyedrop-sharp.svg │ │ │ │ ├── eyedrop.svg │ │ │ │ ├── fast-food-outline.svg │ │ │ │ ├── fast-food-sharp.svg │ │ │ │ ├── fast-food.svg │ │ │ │ ├── female-outline.svg │ │ │ │ ├── female-sharp.svg │ │ │ │ ├── female.svg │ │ │ │ ├── file-tray-full-outline.svg │ │ │ │ ├── file-tray-full-sharp.svg │ │ │ │ ├── file-tray-full.svg │ │ │ │ ├── file-tray-outline.svg │ │ │ │ ├── file-tray-sharp.svg │ │ │ │ ├── file-tray-stacked-outline.svg │ │ │ │ ├── file-tray-stacked-sharp.svg │ │ │ │ ├── file-tray-stacked.svg │ │ │ │ ├── file-tray.svg │ │ │ │ ├── film-outline.svg │ │ │ │ ├── film-sharp.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter-outline.svg │ │ │ │ ├── filter-sharp.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── finger-print-outline.svg │ │ │ │ ├── finger-print-sharp.svg │ │ │ │ ├── finger-print.svg │ │ │ │ ├── fitness-outline.svg │ │ │ │ ├── fitness-sharp.svg │ │ │ │ ├── fitness.svg │ │ │ │ ├── flag-outline.svg │ │ │ │ ├── flag-sharp.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flame-outline.svg │ │ │ │ ├── flame-sharp.svg │ │ │ │ ├── flame.svg │ │ │ │ ├── flash-off-outline.svg │ │ │ │ ├── flash-off-sharp.svg │ │ │ │ ├── flash-off.svg │ │ │ │ ├── flash-outline.svg │ │ │ │ ├── flash-sharp.svg │ │ │ │ ├── flash.svg │ │ │ │ ├── flashlight-outline.svg │ │ │ │ ├── flashlight-sharp.svg │ │ │ │ ├── flashlight.svg │ │ │ │ ├── flask-outline.svg │ │ │ │ ├── flask-sharp.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flower-outline.svg │ │ │ │ ├── flower-sharp.svg │ │ │ │ ├── flower.svg │ │ │ │ ├── folder-open-outline.svg │ │ │ │ ├── folder-open-sharp.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-outline.svg │ │ │ │ ├── folder-sharp.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── football-outline.svg │ │ │ │ ├── football-sharp.svg │ │ │ │ ├── football.svg │ │ │ │ ├── funnel-outline.svg │ │ │ │ ├── funnel-sharp.svg │ │ │ │ ├── funnel.svg │ │ │ │ ├── game-controller-outline.svg │ │ │ │ ├── game-controller-sharp.svg │ │ │ │ ├── game-controller.svg │ │ │ │ ├── gift-outline.svg │ │ │ │ ├── gift-sharp.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── git-branch-outline.svg │ │ │ │ ├── git-branch-sharp.svg │ │ │ │ ├── git-branch.svg │ │ │ │ ├── git-commit-outline.svg │ │ │ │ ├── git-commit-sharp.svg │ │ │ │ ├── git-commit.svg │ │ │ │ ├── git-compare-outline.svg │ │ │ │ ├── git-compare-sharp.svg │ │ │ │ ├── git-compare.svg │ │ │ │ ├── git-merge-outline.svg │ │ │ │ ├── git-merge-sharp.svg │ │ │ │ ├── git-merge.svg │ │ │ │ ├── git-network-outline.svg │ │ │ │ ├── git-network-sharp.svg │ │ │ │ ├── git-network.svg │ │ │ │ ├── git-pull-request-outline.svg │ │ │ │ ├── git-pull-request-sharp.svg │ │ │ │ ├── git-pull-request.svg │ │ │ │ ├── glasses-outline.svg │ │ │ │ ├── glasses-sharp.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-outline.svg │ │ │ │ ├── globe-sharp.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-outline.svg │ │ │ │ ├── golf-sharp.svg │ │ │ │ ├── golf.svg │ │ │ │ ├── grid-outline.svg │ │ │ │ ├── grid-sharp.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── hammer-outline.svg │ │ │ │ ├── hammer-sharp.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hand-left-outline.svg │ │ │ │ ├── hand-left-sharp.svg │ │ │ │ ├── hand-left.svg │ │ │ │ ├── hand-right-outline.svg │ │ │ │ ├── hand-right-sharp.svg │ │ │ │ ├── hand-right.svg │ │ │ │ ├── happy-outline.svg │ │ │ │ ├── happy-sharp.svg │ │ │ │ ├── happy.svg │ │ │ │ ├── hardware-chip-outline.svg │ │ │ │ ├── hardware-chip-sharp.svg │ │ │ │ ├── hardware-chip.svg │ │ │ │ ├── headset-outline.svg │ │ │ │ ├── headset-sharp.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-circle-outline.svg │ │ │ │ ├── heart-circle-sharp.svg │ │ │ │ ├── heart-circle.svg │ │ │ │ ├── heart-dislike-circle-outline.svg │ │ │ │ ├── heart-dislike-circle-sharp.svg │ │ │ │ ├── heart-dislike-circle.svg │ │ │ │ ├── heart-dislike-outline.svg │ │ │ │ ├── heart-dislike-sharp.svg │ │ │ │ ├── heart-dislike.svg │ │ │ │ ├── heart-half-outline.svg │ │ │ │ ├── heart-half-sharp.svg │ │ │ │ ├── heart-half.svg │ │ │ │ ├── heart-outline.svg │ │ │ │ ├── heart-sharp.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── help-buoy-outline.svg │ │ │ │ ├── help-buoy-sharp.svg │ │ │ │ ├── help-buoy.svg │ │ │ │ ├── help-circle-outline.svg │ │ │ │ ├── help-circle-sharp.svg │ │ │ │ ├── help-circle.svg │ │ │ │ ├── help-outline.svg │ │ │ │ ├── help-sharp.svg │ │ │ │ ├── help.svg │ │ │ │ ├── home-outline.svg │ │ │ │ ├── home-sharp.svg │ │ │ │ ├── home.svg │ │ │ │ ├── hourglass-outline.svg │ │ │ │ ├── hourglass-sharp.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── ice-cream-outline.svg │ │ │ │ ├── ice-cream-sharp.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── image-outline.svg │ │ │ │ ├── image-sharp.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images-outline.svg │ │ │ │ ├── images-sharp.svg │ │ │ │ ├── images.svg │ │ │ │ ├── infinite-outline.svg │ │ │ │ ├── infinite-sharp.svg │ │ │ │ ├── infinite.svg │ │ │ │ ├── information-circle-outline.svg │ │ │ │ ├── information-circle-sharp.svg │ │ │ │ ├── information-circle.svg │ │ │ │ ├── information-outline.svg │ │ │ │ ├── information-sharp.svg │ │ │ │ ├── information.svg │ │ │ │ ├── journal-outline.svg │ │ │ │ ├── journal-sharp.svg │ │ │ │ ├── journal.svg │ │ │ │ ├── key-outline.svg │ │ │ │ ├── key-sharp.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keypad-outline.svg │ │ │ │ ├── keypad-sharp.svg │ │ │ │ ├── keypad.svg │ │ │ │ ├── language-outline.svg │ │ │ │ ├── language-sharp.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-outline.svg │ │ │ │ ├── laptop-sharp.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── layers-outline.svg │ │ │ │ ├── layers-sharp.svg │ │ │ │ ├── layers.svg │ │ │ │ ├── leaf-outline.svg │ │ │ │ ├── leaf-sharp.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── library-outline.svg │ │ │ │ ├── library-sharp.svg │ │ │ │ ├── library.svg │ │ │ │ ├── link-outline.svg │ │ │ │ ├── link-sharp.svg │ │ │ │ ├── link.svg │ │ │ │ ├── list-circle-outline.svg │ │ │ │ ├── list-circle-sharp.svg │ │ │ │ ├── list-circle.svg │ │ │ │ ├── list-outline.svg │ │ │ │ ├── list-sharp.svg │ │ │ │ ├── list.svg │ │ │ │ ├── locate-outline.svg │ │ │ │ ├── locate-sharp.svg │ │ │ │ ├── locate.svg │ │ │ │ ├── location-outline.svg │ │ │ │ ├── location-sharp.svg │ │ │ │ ├── location.svg │ │ │ │ ├── lock-closed-outline.svg │ │ │ │ ├── lock-closed-sharp.svg │ │ │ │ ├── lock-closed.svg │ │ │ │ ├── lock-open-outline.svg │ │ │ │ ├── lock-open-sharp.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── log-in-outline.svg │ │ │ │ ├── log-in-sharp.svg │ │ │ │ ├── log-in.svg │ │ │ │ ├── log-out-outline.svg │ │ │ │ ├── log-out-sharp.svg │ │ │ │ ├── log-out.svg │ │ │ │ ├── logo-amazon.svg │ │ │ │ ├── logo-amplify.svg │ │ │ │ ├── logo-android.svg │ │ │ │ ├── logo-angular.svg │ │ │ │ ├── logo-apple-appstore.svg │ │ │ │ ├── logo-apple.svg │ │ │ │ ├── logo-behance.svg │ │ │ │ ├── logo-bitbucket.svg │ │ │ │ ├── logo-bitcoin.svg │ │ │ │ ├── logo-buffer.svg │ │ │ │ ├── logo-capacitor.svg │ │ │ │ ├── logo-chrome.svg │ │ │ │ ├── logo-closed-captioning.svg │ │ │ │ ├── logo-codepen.svg │ │ │ │ ├── logo-css3.svg │ │ │ │ ├── logo-designernews.svg │ │ │ │ ├── logo-docker.svg │ │ │ │ ├── logo-dribbble.svg │ │ │ │ ├── logo-dropbox.svg │ │ │ │ ├── logo-edge.svg │ │ │ │ ├── logo-electron.svg │ │ │ │ ├── logo-euro.svg │ │ │ │ ├── logo-facebook.svg │ │ │ │ ├── logo-firebase.svg │ │ │ │ ├── logo-firefox.svg │ │ │ │ ├── logo-flickr.svg │ │ │ │ ├── logo-foursquare.svg │ │ │ │ ├── logo-github.svg │ │ │ │ ├── logo-gitlab.svg │ │ │ │ ├── logo-google-playstore.svg │ │ │ │ ├── logo-google.svg │ │ │ │ ├── logo-hackernews.svg │ │ │ │ ├── logo-html5.svg │ │ │ │ ├── logo-instagram.svg │ │ │ │ ├── logo-ionic.svg │ │ │ │ ├── logo-ionitron.svg │ │ │ │ ├── logo-javascript.svg │ │ │ │ ├── logo-laravel.svg │ │ │ │ ├── logo-linkedin.svg │ │ │ │ ├── logo-markdown.svg │ │ │ │ ├── logo-medium.svg │ │ │ │ ├── logo-no-smoking.svg │ │ │ │ ├── logo-nodejs.svg │ │ │ │ ├── logo-npm.svg │ │ │ │ ├── logo-octocat.svg │ │ │ │ ├── logo-paypal.svg │ │ │ │ ├── logo-pinterest.svg │ │ │ │ ├── logo-playstation.svg │ │ │ │ ├── logo-pwa.svg │ │ │ │ ├── logo-python.svg │ │ │ │ ├── logo-react.svg │ │ │ │ ├── logo-reddit.svg │ │ │ │ ├── logo-rss.svg │ │ │ │ ├── logo-sass.svg │ │ │ │ ├── logo-skype.svg │ │ │ │ ├── logo-slack.svg │ │ │ │ ├── logo-snapchat.svg │ │ │ │ ├── logo-soundcloud.svg │ │ │ │ ├── logo-stackoverflow.svg │ │ │ │ ├── logo-steam.svg │ │ │ │ ├── logo-stencil.svg │ │ │ │ ├── logo-tiktok.svg │ │ │ │ ├── logo-tumblr.svg │ │ │ │ ├── logo-tux.svg │ │ │ │ ├── logo-twitch.svg │ │ │ │ ├── logo-twitter.svg │ │ │ │ ├── logo-usd.svg │ │ │ │ ├── logo-venmo.svg │ │ │ │ ├── logo-vimeo.svg │ │ │ │ ├── logo-vk.svg │ │ │ │ ├── logo-vue.svg │ │ │ │ ├── logo-web-component.svg │ │ │ │ ├── logo-whatsapp.svg │ │ │ │ ├── logo-windows.svg │ │ │ │ ├── logo-wordpress.svg │ │ │ │ ├── logo-xbox.svg │ │ │ │ ├── logo-xing.svg │ │ │ │ ├── logo-yahoo.svg │ │ │ │ ├── logo-yen.svg │ │ │ │ ├── logo-youtube.svg │ │ │ │ ├── magnet-outline.svg │ │ │ │ ├── magnet-sharp.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-open-outline.svg │ │ │ │ ├── mail-open-sharp.svg │ │ │ │ ├── mail-open.svg │ │ │ │ ├── mail-outline.svg │ │ │ │ ├── mail-sharp.svg │ │ │ │ ├── mail-unread-outline.svg │ │ │ │ ├── mail-unread-sharp.svg │ │ │ │ ├── mail-unread.svg │ │ │ │ ├── mail.svg │ │ │ │ ├── male-female-outline.svg │ │ │ │ ├── male-female-sharp.svg │ │ │ │ ├── male-female.svg │ │ │ │ ├── male-outline.svg │ │ │ │ ├── male-sharp.svg │ │ │ │ ├── male.svg │ │ │ │ ├── man-outline.svg │ │ │ │ ├── man-sharp.svg │ │ │ │ ├── man.svg │ │ │ │ ├── map-outline.svg │ │ │ │ ├── map-sharp.svg │ │ │ │ ├── map.svg │ │ │ │ ├── medal-outline.svg │ │ │ │ ├── medal-sharp.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medical-outline.svg │ │ │ │ ├── medical-sharp.svg │ │ │ │ ├── medical.svg │ │ │ │ ├── medkit-outline.svg │ │ │ │ ├── medkit-sharp.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── megaphone-outline.svg │ │ │ │ ├── megaphone-sharp.svg │ │ │ │ ├── megaphone.svg │ │ │ │ ├── menu-outline.svg │ │ │ │ ├── menu-sharp.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── mic-circle-outline.svg │ │ │ │ ├── mic-circle-sharp.svg │ │ │ │ ├── mic-circle.svg │ │ │ │ ├── mic-off-circle-outline.svg │ │ │ │ ├── mic-off-circle-sharp.svg │ │ │ │ ├── mic-off-circle.svg │ │ │ │ ├── mic-off-outline.svg │ │ │ │ ├── mic-off-sharp.svg │ │ │ │ ├── mic-off.svg │ │ │ │ ├── mic-outline.svg │ │ │ │ ├── mic-sharp.svg │ │ │ │ ├── mic.svg │ │ │ │ ├── moon-outline.svg │ │ │ │ ├── moon-sharp.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── move-outline.svg │ │ │ │ ├── move-sharp.svg │ │ │ │ ├── move.svg │ │ │ │ ├── musical-note-outline.svg │ │ │ │ ├── musical-note-sharp.svg │ │ │ │ ├── musical-note.svg │ │ │ │ ├── musical-notes-outline.svg │ │ │ │ ├── musical-notes-sharp.svg │ │ │ │ ├── musical-notes.svg │ │ │ │ ├── navigate-circle-outline.svg │ │ │ │ ├── navigate-circle-sharp.svg │ │ │ │ ├── navigate-circle.svg │ │ │ │ ├── navigate-outline.svg │ │ │ │ ├── navigate-sharp.svg │ │ │ │ ├── navigate.svg │ │ │ │ ├── newspaper-outline.svg │ │ │ │ ├── newspaper-sharp.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── notifications-circle-outline.svg │ │ │ │ ├── notifications-circle-sharp.svg │ │ │ │ ├── notifications-circle.svg │ │ │ │ ├── notifications-off-circle-outline.svg │ │ │ │ ├── notifications-off-circle-sharp.svg │ │ │ │ ├── notifications-off-circle.svg │ │ │ │ ├── notifications-off-outline.svg │ │ │ │ ├── notifications-off-sharp.svg │ │ │ │ ├── notifications-off.svg │ │ │ │ ├── notifications-outline.svg │ │ │ │ ├── notifications-sharp.svg │ │ │ │ ├── notifications.svg │ │ │ │ ├── nuclear-outline.svg │ │ │ │ ├── nuclear-sharp.svg │ │ │ │ ├── nuclear.svg │ │ │ │ ├── nutrition-outline.svg │ │ │ │ ├── nutrition-sharp.svg │ │ │ │ ├── nutrition.svg │ │ │ │ ├── open-outline.svg │ │ │ │ ├── open-sharp.svg │ │ │ │ ├── open.svg │ │ │ │ ├── options-outline.svg │ │ │ │ ├── options-sharp.svg │ │ │ │ ├── options.svg │ │ │ │ ├── paper-plane-outline.svg │ │ │ │ ├── paper-plane-sharp.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── partly-sunny-outline.svg │ │ │ │ ├── partly-sunny-sharp.svg │ │ │ │ ├── partly-sunny.svg │ │ │ │ ├── pause-circle-outline.svg │ │ │ │ ├── pause-circle-sharp.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause-outline.svg │ │ │ │ ├── pause-sharp.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw-outline.svg │ │ │ │ ├── paw-sharp.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── pencil-outline.svg │ │ │ │ ├── pencil-sharp.svg │ │ │ │ ├── pencil.svg │ │ │ │ ├── people-circle-outline.svg │ │ │ │ ├── people-circle-sharp.svg │ │ │ │ ├── people-circle.svg │ │ │ │ ├── people-outline.svg │ │ │ │ ├── people-sharp.svg │ │ │ │ ├── people.svg │ │ │ │ ├── person-add-outline.svg │ │ │ │ ├── person-add-sharp.svg │ │ │ │ ├── person-add.svg │ │ │ │ ├── person-circle-outline.svg │ │ │ │ ├── person-circle-sharp.svg │ │ │ │ ├── person-circle.svg │ │ │ │ ├── person-outline.svg │ │ │ │ ├── person-remove-outline.svg │ │ │ │ ├── person-remove-sharp.svg │ │ │ │ ├── person-remove.svg │ │ │ │ ├── person-sharp.svg │ │ │ │ ├── person.svg │ │ │ │ ├── phone-landscape-outline.svg │ │ │ │ ├── phone-landscape-sharp.svg │ │ │ │ ├── phone-landscape.svg │ │ │ │ ├── phone-portrait-outline.svg │ │ │ │ ├── phone-portrait-sharp.svg │ │ │ │ ├── phone-portrait.svg │ │ │ │ ├── pie-chart-outline.svg │ │ │ │ ├── pie-chart-sharp.svg │ │ │ │ ├── pie-chart.svg │ │ │ │ ├── pin-outline.svg │ │ │ │ ├── pin-sharp.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── pint-outline.svg │ │ │ │ ├── pint-sharp.svg │ │ │ │ ├── pint.svg │ │ │ │ ├── pizza-outline.svg │ │ │ │ ├── pizza-sharp.svg │ │ │ │ ├── pizza.svg │ │ │ │ ├── planet-outline.svg │ │ │ │ ├── planet-sharp.svg │ │ │ │ ├── planet.svg │ │ │ │ ├── play-back-circle-outline.svg │ │ │ │ ├── play-back-circle-sharp.svg │ │ │ │ ├── play-back-circle.svg │ │ │ │ ├── play-back-outline.svg │ │ │ │ ├── play-back-sharp.svg │ │ │ │ ├── play-back.svg │ │ │ │ ├── play-circle-outline.svg │ │ │ │ ├── play-circle-sharp.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play-forward-circle-outline.svg │ │ │ │ ├── play-forward-circle-sharp.svg │ │ │ │ ├── play-forward-circle.svg │ │ │ │ ├── play-forward-outline.svg │ │ │ │ ├── play-forward-sharp.svg │ │ │ │ ├── play-forward.svg │ │ │ │ ├── play-outline.svg │ │ │ │ ├── play-sharp.svg │ │ │ │ ├── play-skip-back-circle-outline.svg │ │ │ │ ├── play-skip-back-circle-sharp.svg │ │ │ │ ├── play-skip-back-circle.svg │ │ │ │ ├── play-skip-back-outline.svg │ │ │ │ ├── play-skip-back-sharp.svg │ │ │ │ ├── play-skip-back.svg │ │ │ │ ├── play-skip-forward-circle-outline.svg │ │ │ │ ├── play-skip-forward-circle-sharp.svg │ │ │ │ ├── play-skip-forward-circle.svg │ │ │ │ ├── play-skip-forward-outline.svg │ │ │ │ ├── play-skip-forward-sharp.svg │ │ │ │ ├── play-skip-forward.svg │ │ │ │ ├── play.svg │ │ │ │ ├── podium-outline.svg │ │ │ │ ├── podium-sharp.svg │ │ │ │ ├── podium.svg │ │ │ │ ├── power-outline.svg │ │ │ │ ├── power-sharp.svg │ │ │ │ ├── power.svg │ │ │ │ ├── pricetag-outline.svg │ │ │ │ ├── pricetag-sharp.svg │ │ │ │ ├── pricetag.svg │ │ │ │ ├── pricetags-outline.svg │ │ │ │ ├── pricetags-sharp.svg │ │ │ │ ├── pricetags.svg │ │ │ │ ├── print-outline.svg │ │ │ │ ├── print-sharp.svg │ │ │ │ ├── print.svg │ │ │ │ ├── pulse-outline.svg │ │ │ │ ├── pulse-sharp.svg │ │ │ │ ├── pulse.svg │ │ │ │ ├── push-outline.svg │ │ │ │ ├── push-sharp.svg │ │ │ │ ├── push.svg │ │ │ │ ├── qr-code-outline.svg │ │ │ │ ├── qr-code-sharp.svg │ │ │ │ ├── qr-code.svg │ │ │ │ ├── radio-button-off-outline.svg │ │ │ │ ├── radio-button-off-sharp.svg │ │ │ │ ├── radio-button-off.svg │ │ │ │ ├── radio-button-on-outline.svg │ │ │ │ ├── radio-button-on-sharp.svg │ │ │ │ ├── radio-button-on.svg │ │ │ │ ├── radio-outline.svg │ │ │ │ ├── radio-sharp.svg │ │ │ │ ├── radio.svg │ │ │ │ ├── rainy-outline.svg │ │ │ │ ├── rainy-sharp.svg │ │ │ │ ├── rainy.svg │ │ │ │ ├── reader-outline.svg │ │ │ │ ├── reader-sharp.svg │ │ │ │ ├── reader.svg │ │ │ │ ├── receipt-outline.svg │ │ │ │ ├── receipt-sharp.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── recording-outline.svg │ │ │ │ ├── recording-sharp.svg │ │ │ │ ├── recording.svg │ │ │ │ ├── refresh-circle-outline.svg │ │ │ │ ├── refresh-circle-sharp.svg │ │ │ │ ├── refresh-circle.svg │ │ │ │ ├── refresh-outline.svg │ │ │ │ ├── refresh-sharp.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── reload-circle-outline.svg │ │ │ │ ├── reload-circle-sharp.svg │ │ │ │ ├── reload-circle.svg │ │ │ │ ├── reload-outline.svg │ │ │ │ ├── reload-sharp.svg │ │ │ │ ├── reload.svg │ │ │ │ ├── remove-circle-outline.svg │ │ │ │ ├── remove-circle-sharp.svg │ │ │ │ ├── remove-circle.svg │ │ │ │ ├── remove-outline.svg │ │ │ │ ├── remove-sharp.svg │ │ │ │ ├── remove.svg │ │ │ │ ├── reorder-four-outline.svg │ │ │ │ ├── reorder-four-sharp.svg │ │ │ │ ├── reorder-four.svg │ │ │ │ ├── reorder-three-outline.svg │ │ │ │ ├── reorder-three-sharp.svg │ │ │ │ ├── reorder-three.svg │ │ │ │ ├── reorder-two-outline.svg │ │ │ │ ├── reorder-two-sharp.svg │ │ │ │ ├── reorder-two.svg │ │ │ │ ├── repeat-outline.svg │ │ │ │ ├── repeat-sharp.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── resize-outline.svg │ │ │ │ ├── resize-sharp.svg │ │ │ │ ├── resize.svg │ │ │ │ ├── restaurant-outline.svg │ │ │ │ ├── restaurant-sharp.svg │ │ │ │ ├── restaurant.svg │ │ │ │ ├── return-down-back-outline.svg │ │ │ │ ├── return-down-back-sharp.svg │ │ │ │ ├── return-down-back.svg │ │ │ │ ├── return-down-forward-outline.svg │ │ │ │ ├── return-down-forward-sharp.svg │ │ │ │ ├── return-down-forward.svg │ │ │ │ ├── return-up-back-outline.svg │ │ │ │ ├── return-up-back-sharp.svg │ │ │ │ ├── return-up-back.svg │ │ │ │ ├── return-up-forward-outline.svg │ │ │ │ ├── return-up-forward-sharp.svg │ │ │ │ ├── return-up-forward.svg │ │ │ │ ├── ribbon-outline.svg │ │ │ │ ├── ribbon-sharp.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── rocket-outline.svg │ │ │ │ ├── rocket-sharp.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── rose-outline.svg │ │ │ │ ├── rose-sharp.svg │ │ │ │ ├── rose.svg │ │ │ │ ├── sad-outline.svg │ │ │ │ ├── sad-sharp.svg │ │ │ │ ├── sad.svg │ │ │ │ ├── save-outline.svg │ │ │ │ ├── save-sharp.svg │ │ │ │ ├── save.svg │ │ │ │ ├── scan-circle-outline.svg │ │ │ │ ├── scan-circle-sharp.svg │ │ │ │ ├── scan-circle.svg │ │ │ │ ├── scan-outline.svg │ │ │ │ ├── scan-sharp.svg │ │ │ │ ├── scan.svg │ │ │ │ ├── school-outline.svg │ │ │ │ ├── school-sharp.svg │ │ │ │ ├── school.svg │ │ │ │ ├── search-circle-outline.svg │ │ │ │ ├── search-circle-sharp.svg │ │ │ │ ├── search-circle.svg │ │ │ │ ├── search-outline.svg │ │ │ │ ├── search-sharp.svg │ │ │ │ ├── search.svg │ │ │ │ ├── send-outline.svg │ │ │ │ ├── send-sharp.svg │ │ │ │ ├── send.svg │ │ │ │ ├── server-outline.svg │ │ │ │ ├── server-sharp.svg │ │ │ │ ├── server.svg │ │ │ │ ├── settings-outline.svg │ │ │ │ ├── settings-sharp.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── shapes-outline.svg │ │ │ │ ├── shapes-sharp.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-outline.svg │ │ │ │ ├── share-sharp.svg │ │ │ │ ├── share-social-outline.svg │ │ │ │ ├── share-social-sharp.svg │ │ │ │ ├── share-social.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shield-checkmark-outline.svg │ │ │ │ ├── shield-checkmark-sharp.svg │ │ │ │ ├── shield-checkmark.svg │ │ │ │ ├── shield-outline.svg │ │ │ │ ├── shield-sharp.svg │ │ │ │ ├── shield.svg │ │ │ │ ├── shirt-outline.svg │ │ │ │ ├── shirt-sharp.svg │ │ │ │ ├── shirt.svg │ │ │ │ ├── shuffle-outline.svg │ │ │ │ ├── shuffle-sharp.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── skull-outline.svg │ │ │ │ ├── skull-sharp.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── snow-outline.svg │ │ │ │ ├── snow-sharp.svg │ │ │ │ ├── snow.svg │ │ │ │ ├── speedometer-outline.svg │ │ │ │ ├── speedometer-sharp.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── square-outline.svg │ │ │ │ ├── square-sharp.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half-outline.svg │ │ │ │ ├── star-half-sharp.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-outline.svg │ │ │ │ ├── star-sharp.svg │ │ │ │ ├── star.svg │ │ │ │ ├── stats-chart-outline.svg │ │ │ │ ├── stats-chart-sharp.svg │ │ │ │ ├── stats-chart.svg │ │ │ │ ├── stop-circle-outline.svg │ │ │ │ ├── stop-circle-sharp.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop-outline.svg │ │ │ │ ├── stop-sharp.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch-outline.svg │ │ │ │ ├── stopwatch-sharp.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── subway-outline.svg │ │ │ │ ├── subway-sharp.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── sunny-outline.svg │ │ │ │ ├── sunny-sharp.svg │ │ │ │ ├── sunny.svg │ │ │ │ ├── swap-horizontal-outline.svg │ │ │ │ ├── swap-horizontal-sharp.svg │ │ │ │ ├── swap-horizontal.svg │ │ │ │ ├── swap-vertical-outline.svg │ │ │ │ ├── swap-vertical-sharp.svg │ │ │ │ ├── swap-vertical.svg │ │ │ │ ├── sync-circle-outline.svg │ │ │ │ ├── sync-circle-sharp.svg │ │ │ │ ├── sync-circle.svg │ │ │ │ ├── sync-outline.svg │ │ │ │ ├── sync-sharp.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── tablet-landscape-outline.svg │ │ │ │ ├── tablet-landscape-sharp.svg │ │ │ │ ├── tablet-landscape.svg │ │ │ │ ├── tablet-portrait-outline.svg │ │ │ │ ├── tablet-portrait-sharp.svg │ │ │ │ ├── tablet-portrait.svg │ │ │ │ ├── tennisball-outline.svg │ │ │ │ ├── tennisball-sharp.svg │ │ │ │ ├── tennisball.svg │ │ │ │ ├── terminal-outline.svg │ │ │ │ ├── terminal-sharp.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-outline.svg │ │ │ │ ├── text-sharp.svg │ │ │ │ ├── text.svg │ │ │ │ ├── thermometer-outline.svg │ │ │ │ ├── thermometer-sharp.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down-outline.svg │ │ │ │ ├── thumbs-down-sharp.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up-outline.svg │ │ │ │ ├── thumbs-up-sharp.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thunderstorm-outline.svg │ │ │ │ ├── thunderstorm-sharp.svg │ │ │ │ ├── thunderstorm.svg │ │ │ │ ├── time-outline.svg │ │ │ │ ├── time-sharp.svg │ │ │ │ ├── time.svg │ │ │ │ ├── timer-outline.svg │ │ │ │ ├── timer-sharp.svg │ │ │ │ ├── timer.svg │ │ │ │ ├── today-outline.svg │ │ │ │ ├── today-sharp.svg │ │ │ │ ├── today.svg │ │ │ │ ├── toggle-outline.svg │ │ │ │ ├── toggle-sharp.svg │ │ │ │ ├── toggle.svg │ │ │ │ ├── trail-sign-outline.svg │ │ │ │ ├── trail-sign-sharp.svg │ │ │ │ ├── trail-sign.svg │ │ │ │ ├── train-outline.svg │ │ │ │ ├── train-sharp.svg │ │ │ │ ├── train.svg │ │ │ │ ├── transgender-outline.svg │ │ │ │ ├── transgender-sharp.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-bin-outline.svg │ │ │ │ ├── trash-bin-sharp.svg │ │ │ │ ├── trash-bin.svg │ │ │ │ ├── trash-outline.svg │ │ │ │ ├── trash-sharp.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── trending-down-outline.svg │ │ │ │ ├── trending-down-sharp.svg │ │ │ │ ├── trending-down.svg │ │ │ │ ├── trending-up-outline.svg │ │ │ │ ├── trending-up-sharp.svg │ │ │ │ ├── trending-up.svg │ │ │ │ ├── triangle-outline.svg │ │ │ │ ├── triangle-sharp.svg │ │ │ │ ├── triangle.svg │ │ │ │ ├── trophy-outline.svg │ │ │ │ ├── trophy-sharp.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── tv-outline.svg │ │ │ │ ├── tv-sharp.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-outline.svg │ │ │ │ ├── umbrella-sharp.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── videocam-outline.svg │ │ │ │ ├── videocam-sharp.svg │ │ │ │ ├── videocam.svg │ │ │ │ ├── volume-high-outline.svg │ │ │ │ ├── volume-high-sharp.svg │ │ │ │ ├── volume-high.svg │ │ │ │ ├── volume-low-outline.svg │ │ │ │ ├── volume-low-sharp.svg │ │ │ │ ├── volume-low.svg │ │ │ │ ├── volume-medium-outline.svg │ │ │ │ ├── volume-medium-sharp.svg │ │ │ │ ├── volume-medium.svg │ │ │ │ ├── volume-mute-outline.svg │ │ │ │ ├── volume-mute-sharp.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off-outline.svg │ │ │ │ ├── volume-off-sharp.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── walk-outline.svg │ │ │ │ ├── walk-sharp.svg │ │ │ │ ├── walk.svg │ │ │ │ ├── wallet-outline.svg │ │ │ │ ├── wallet-sharp.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warning-outline.svg │ │ │ │ ├── warning-sharp.svg │ │ │ │ ├── warning.svg │ │ │ │ ├── watch-outline.svg │ │ │ │ ├── watch-sharp.svg │ │ │ │ ├── watch.svg │ │ │ │ ├── water-outline.svg │ │ │ │ ├── water-sharp.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wifi-outline.svg │ │ │ │ ├── wifi-sharp.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wine-outline.svg │ │ │ │ ├── wine-sharp.svg │ │ │ │ ├── wine.svg │ │ │ │ ├── woman-outline.svg │ │ │ │ ├── woman-sharp.svg │ │ │ │ └── woman.svg │ │ │ ├── loader │ │ │ ├── cdn.js │ │ │ ├── index.cjs.js │ │ │ ├── index.es2017.mjs │ │ │ ├── index.mjs │ │ │ └── node-main.js │ │ │ └── svg │ │ │ ├── add-circle-outline.svg │ │ │ ├── add-circle-sharp.svg │ │ │ ├── add-circle.svg │ │ │ ├── add-outline.svg │ │ │ ├── add-sharp.svg │ │ │ ├── add.svg │ │ │ ├── airplane-outline.svg │ │ │ ├── airplane-sharp.svg │ │ │ ├── airplane.svg │ │ │ ├── alarm-outline.svg │ │ │ ├── alarm-sharp.svg │ │ │ ├── alarm.svg │ │ │ ├── albums-outline.svg │ │ │ ├── albums-sharp.svg │ │ │ ├── albums.svg │ │ │ ├── alert-circle-outline.svg │ │ │ ├── alert-circle-sharp.svg │ │ │ ├── alert-circle.svg │ │ │ ├── alert-outline.svg │ │ │ ├── alert-sharp.svg │ │ │ ├── alert.svg │ │ │ ├── american-football-outline.svg │ │ │ ├── american-football-sharp.svg │ │ │ ├── american-football.svg │ │ │ ├── analytics-outline.svg │ │ │ ├── analytics-sharp.svg │ │ │ ├── analytics.svg │ │ │ ├── aperture-outline.svg │ │ │ ├── aperture-sharp.svg │ │ │ ├── aperture.svg │ │ │ ├── apps-outline.svg │ │ │ ├── apps-sharp.svg │ │ │ ├── apps.svg │ │ │ ├── archive-outline.svg │ │ │ ├── archive-sharp.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-back-circle-outline.svg │ │ │ ├── arrow-back-circle-sharp.svg │ │ │ ├── arrow-back-circle.svg │ │ │ ├── arrow-back-outline.svg │ │ │ ├── arrow-back-sharp.svg │ │ │ ├── arrow-back.svg │ │ │ ├── arrow-down-circle-outline.svg │ │ │ ├── arrow-down-circle-sharp.svg │ │ │ ├── arrow-down-circle.svg │ │ │ ├── arrow-down-outline.svg │ │ │ ├── arrow-down-sharp.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-forward-circle-outline.svg │ │ │ ├── arrow-forward-circle-sharp.svg │ │ │ ├── arrow-forward-circle.svg │ │ │ ├── arrow-forward-outline.svg │ │ │ ├── arrow-forward-sharp.svg │ │ │ ├── arrow-forward.svg │ │ │ ├── arrow-redo-circle-outline.svg │ │ │ ├── arrow-redo-circle-sharp.svg │ │ │ ├── arrow-redo-circle.svg │ │ │ ├── arrow-redo-outline.svg │ │ │ ├── arrow-redo-sharp.svg │ │ │ ├── arrow-redo.svg │ │ │ ├── arrow-undo-circle-outline.svg │ │ │ ├── arrow-undo-circle-sharp.svg │ │ │ ├── arrow-undo-circle.svg │ │ │ ├── arrow-undo-outline.svg │ │ │ ├── arrow-undo-sharp.svg │ │ │ ├── arrow-undo.svg │ │ │ ├── arrow-up-circle-outline.svg │ │ │ ├── arrow-up-circle-sharp.svg │ │ │ ├── arrow-up-circle.svg │ │ │ ├── arrow-up-outline.svg │ │ │ ├── arrow-up-sharp.svg │ │ │ ├── arrow-up.svg │ │ │ ├── at-circle-outline.svg │ │ │ ├── at-circle-sharp.svg │ │ │ ├── at-circle.svg │ │ │ ├── at-outline.svg │ │ │ ├── at-sharp.svg │ │ │ ├── at.svg │ │ │ ├── attach-outline.svg │ │ │ ├── attach-sharp.svg │ │ │ ├── attach.svg │ │ │ ├── backspace-outline.svg │ │ │ ├── backspace-sharp.svg │ │ │ ├── backspace.svg │ │ │ ├── bandage-outline.svg │ │ │ ├── bandage-sharp.svg │ │ │ ├── bandage.svg │ │ │ ├── bar-chart-outline.svg │ │ │ ├── bar-chart-sharp.svg │ │ │ ├── bar-chart.svg │ │ │ ├── barbell-outline.svg │ │ │ ├── barbell-sharp.svg │ │ │ ├── barbell.svg │ │ │ ├── barcode-outline.svg │ │ │ ├── barcode-sharp.svg │ │ │ ├── barcode.svg │ │ │ ├── baseball-outline.svg │ │ │ ├── baseball-sharp.svg │ │ │ ├── baseball.svg │ │ │ ├── basket-outline.svg │ │ │ ├── basket-sharp.svg │ │ │ ├── basket.svg │ │ │ ├── basketball-outline.svg │ │ │ ├── basketball-sharp.svg │ │ │ ├── basketball.svg │ │ │ ├── battery-charging-outline.svg │ │ │ ├── battery-charging-sharp.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-dead-outline.svg │ │ │ ├── battery-dead-sharp.svg │ │ │ ├── battery-dead.svg │ │ │ ├── battery-full-outline.svg │ │ │ ├── battery-full-sharp.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half-outline.svg │ │ │ ├── battery-half-sharp.svg │ │ │ ├── battery-half.svg │ │ │ ├── beaker-outline.svg │ │ │ ├── beaker-sharp.svg │ │ │ ├── beaker.svg │ │ │ ├── bed-outline.svg │ │ │ ├── bed-sharp.svg │ │ │ ├── bed.svg │ │ │ ├── beer-outline.svg │ │ │ ├── beer-sharp.svg │ │ │ ├── beer.svg │ │ │ ├── bicycle-outline.svg │ │ │ ├── bicycle-sharp.svg │ │ │ ├── bicycle.svg │ │ │ ├── bluetooth-outline.svg │ │ │ ├── bluetooth-sharp.svg │ │ │ ├── bluetooth.svg │ │ │ ├── boat-outline.svg │ │ │ ├── boat-sharp.svg │ │ │ ├── boat.svg │ │ │ ├── body-outline.svg │ │ │ ├── body-sharp.svg │ │ │ ├── body.svg │ │ │ ├── bonfire-outline.svg │ │ │ ├── bonfire-sharp.svg │ │ │ ├── bonfire.svg │ │ │ ├── book-outline.svg │ │ │ ├── book-sharp.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-outline.svg │ │ │ ├── bookmark-sharp.svg │ │ │ ├── bookmark.svg │ │ │ ├── bookmarks-outline.svg │ │ │ ├── bookmarks-sharp.svg │ │ │ ├── bookmarks.svg │ │ │ ├── briefcase-outline.svg │ │ │ ├── briefcase-sharp.svg │ │ │ ├── briefcase.svg │ │ │ ├── browsers-outline.svg │ │ │ ├── browsers-sharp.svg │ │ │ ├── browsers.svg │ │ │ ├── brush-outline.svg │ │ │ ├── brush-sharp.svg │ │ │ ├── brush.svg │ │ │ ├── bug-outline.svg │ │ │ ├── bug-sharp.svg │ │ │ ├── bug.svg │ │ │ ├── build-outline.svg │ │ │ ├── build-sharp.svg │ │ │ ├── build.svg │ │ │ ├── bulb-outline.svg │ │ │ ├── bulb-sharp.svg │ │ │ ├── bulb.svg │ │ │ ├── bus-outline.svg │ │ │ ├── bus-sharp.svg │ │ │ ├── bus.svg │ │ │ ├── business-outline.svg │ │ │ ├── business-sharp.svg │ │ │ ├── business.svg │ │ │ ├── cafe-outline.svg │ │ │ ├── cafe-sharp.svg │ │ │ ├── cafe.svg │ │ │ ├── calculator-outline.svg │ │ │ ├── calculator-sharp.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-outline.svg │ │ │ ├── calendar-sharp.svg │ │ │ ├── calendar.svg │ │ │ ├── call-outline.svg │ │ │ ├── call-sharp.svg │ │ │ ├── call.svg │ │ │ ├── camera-outline.svg │ │ │ ├── camera-reverse-outline.svg │ │ │ ├── camera-reverse-sharp.svg │ │ │ ├── camera-reverse.svg │ │ │ ├── camera-sharp.svg │ │ │ ├── camera.svg │ │ │ ├── car-outline.svg │ │ │ ├── car-sharp.svg │ │ │ ├── car-sport-outline.svg │ │ │ ├── car-sport-sharp.svg │ │ │ ├── car-sport.svg │ │ │ ├── car.svg │ │ │ ├── card-outline.svg │ │ │ ├── card-sharp.svg │ │ │ ├── card.svg │ │ │ ├── caret-back-circle-outline.svg │ │ │ ├── caret-back-circle-sharp.svg │ │ │ ├── caret-back-circle.svg │ │ │ ├── caret-back-outline.svg │ │ │ ├── caret-back-sharp.svg │ │ │ ├── caret-back.svg │ │ │ ├── caret-down-circle-outline.svg │ │ │ ├── caret-down-circle-sharp.svg │ │ │ ├── caret-down-circle.svg │ │ │ ├── caret-down-outline.svg │ │ │ ├── caret-down-sharp.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-forward-circle-outline.svg │ │ │ ├── caret-forward-circle-sharp.svg │ │ │ ├── caret-forward-circle.svg │ │ │ ├── caret-forward-outline.svg │ │ │ ├── caret-forward-sharp.svg │ │ │ ├── caret-forward.svg │ │ │ ├── caret-up-circle-outline.svg │ │ │ ├── caret-up-circle-sharp.svg │ │ │ ├── caret-up-circle.svg │ │ │ ├── caret-up-outline.svg │ │ │ ├── caret-up-sharp.svg │ │ │ ├── caret-up.svg │ │ │ ├── cart-outline.svg │ │ │ ├── cart-sharp.svg │ │ │ ├── cart.svg │ │ │ ├── cash-outline.svg │ │ │ ├── cash-sharp.svg │ │ │ ├── cash.svg │ │ │ ├── cellular-outline.svg │ │ │ ├── cellular-sharp.svg │ │ │ ├── cellular.svg │ │ │ ├── chatbox-ellipses-outline.svg │ │ │ ├── chatbox-ellipses-sharp.svg │ │ │ ├── chatbox-ellipses.svg │ │ │ ├── chatbox-outline.svg │ │ │ ├── chatbox-sharp.svg │ │ │ ├── chatbox.svg │ │ │ ├── chatbubble-ellipses-outline.svg │ │ │ ├── chatbubble-ellipses-sharp.svg │ │ │ ├── chatbubble-ellipses.svg │ │ │ ├── chatbubble-outline.svg │ │ │ ├── chatbubble-sharp.svg │ │ │ ├── chatbubble.svg │ │ │ ├── chatbubbles-outline.svg │ │ │ ├── chatbubbles-sharp.svg │ │ │ ├── chatbubbles.svg │ │ │ ├── checkbox-outline.svg │ │ │ ├── checkbox-sharp.svg │ │ │ ├── checkbox.svg │ │ │ ├── checkmark-circle-outline.svg │ │ │ ├── checkmark-circle-sharp.svg │ │ │ ├── checkmark-circle.svg │ │ │ ├── checkmark-done-circle-outline.svg │ │ │ ├── checkmark-done-circle-sharp.svg │ │ │ ├── checkmark-done-circle.svg │ │ │ ├── checkmark-done-outline.svg │ │ │ ├── checkmark-done-sharp.svg │ │ │ ├── checkmark-done.svg │ │ │ ├── checkmark-outline.svg │ │ │ ├── checkmark-sharp.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-back-circle-outline.svg │ │ │ ├── chevron-back-circle-sharp.svg │ │ │ ├── chevron-back-circle.svg │ │ │ ├── chevron-back-outline.svg │ │ │ ├── chevron-back-sharp.svg │ │ │ ├── chevron-back.svg │ │ │ ├── chevron-down-circle-outline.svg │ │ │ ├── chevron-down-circle-sharp.svg │ │ │ ├── chevron-down-circle.svg │ │ │ ├── chevron-down-outline.svg │ │ │ ├── chevron-down-sharp.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-forward-circle-outline.svg │ │ │ ├── chevron-forward-circle-sharp.svg │ │ │ ├── chevron-forward-circle.svg │ │ │ ├── chevron-forward-outline.svg │ │ │ ├── chevron-forward-sharp.svg │ │ │ ├── chevron-forward.svg │ │ │ ├── chevron-up-circle-outline.svg │ │ │ ├── chevron-up-circle-sharp.svg │ │ │ ├── chevron-up-circle.svg │ │ │ ├── chevron-up-outline.svg │ │ │ ├── chevron-up-sharp.svg │ │ │ ├── chevron-up.svg │ │ │ ├── clipboard-outline.svg │ │ │ ├── clipboard-sharp.svg │ │ │ ├── clipboard.svg │ │ │ ├── close-circle-outline.svg │ │ │ ├── close-circle-sharp.svg │ │ │ ├── close-circle.svg │ │ │ ├── close-outline.svg │ │ │ ├── close-sharp.svg │ │ │ ├── close.svg │ │ │ ├── cloud-circle-outline.svg │ │ │ ├── cloud-circle-sharp.svg │ │ │ ├── cloud-circle.svg │ │ │ ├── cloud-done-outline.svg │ │ │ ├── cloud-done-sharp.svg │ │ │ ├── cloud-done.svg │ │ │ ├── cloud-download-outline.svg │ │ │ ├── cloud-download-sharp.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-offline-outline.svg │ │ │ ├── cloud-offline-sharp.svg │ │ │ ├── cloud-offline.svg │ │ │ ├── cloud-outline.svg │ │ │ ├── cloud-sharp.svg │ │ │ ├── cloud-upload-outline.svg │ │ │ ├── cloud-upload-sharp.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── cloudy-night-outline.svg │ │ │ ├── cloudy-night-sharp.svg │ │ │ ├── cloudy-night.svg │ │ │ ├── cloudy-outline.svg │ │ │ ├── cloudy-sharp.svg │ │ │ ├── cloudy.svg │ │ │ ├── code-download-outline.svg │ │ │ ├── code-download-sharp.svg │ │ │ ├── code-download.svg │ │ │ ├── code-outline.svg │ │ │ ├── code-sharp.svg │ │ │ ├── code-slash-outline.svg │ │ │ ├── code-slash-sharp.svg │ │ │ ├── code-slash.svg │ │ │ ├── code-working-outline.svg │ │ │ ├── code-working-sharp.svg │ │ │ ├── code-working.svg │ │ │ ├── code.svg │ │ │ ├── cog-outline.svg │ │ │ ├── cog-sharp.svg │ │ │ ├── cog.svg │ │ │ ├── color-fill-outline.svg │ │ │ ├── color-fill-sharp.svg │ │ │ ├── color-fill.svg │ │ │ ├── color-filter-outline.svg │ │ │ ├── color-filter-sharp.svg │ │ │ ├── color-filter.svg │ │ │ ├── color-palette-outline.svg │ │ │ ├── color-palette-sharp.svg │ │ │ ├── color-palette.svg │ │ │ ├── color-wand-outline.svg │ │ │ ├── color-wand-sharp.svg │ │ │ ├── color-wand.svg │ │ │ ├── compass-outline.svg │ │ │ ├── compass-sharp.svg │ │ │ ├── compass.svg │ │ │ ├── construct-outline.svg │ │ │ ├── construct-sharp.svg │ │ │ ├── construct.svg │ │ │ ├── contract-outline.svg │ │ │ ├── contract-sharp.svg │ │ │ ├── contract.svg │ │ │ ├── contrast-outline.svg │ │ │ ├── contrast-sharp.svg │ │ │ ├── contrast.svg │ │ │ ├── copy-outline.svg │ │ │ ├── copy-sharp.svg │ │ │ ├── copy.svg │ │ │ ├── create-outline.svg │ │ │ ├── create-sharp.svg │ │ │ ├── create.svg │ │ │ ├── crop-outline.svg │ │ │ ├── crop-sharp.svg │ │ │ ├── crop.svg │ │ │ ├── cube-outline.svg │ │ │ ├── cube-sharp.svg │ │ │ ├── cube.svg │ │ │ ├── cut-outline.svg │ │ │ ├── cut-sharp.svg │ │ │ ├── cut.svg │ │ │ ├── desktop-outline.svg │ │ │ ├── desktop-sharp.svg │ │ │ ├── desktop.svg │ │ │ ├── disc-outline.svg │ │ │ ├── disc-sharp.svg │ │ │ ├── disc.svg │ │ │ ├── document-attach-outline.svg │ │ │ ├── document-attach-sharp.svg │ │ │ ├── document-attach.svg │ │ │ ├── document-outline.svg │ │ │ ├── document-sharp.svg │ │ │ ├── document-text-outline.svg │ │ │ ├── document-text-sharp.svg │ │ │ ├── document-text.svg │ │ │ ├── document.svg │ │ │ ├── documents-outline.svg │ │ │ ├── documents-sharp.svg │ │ │ ├── documents.svg │ │ │ ├── download-outline.svg │ │ │ ├── download-sharp.svg │ │ │ ├── download.svg │ │ │ ├── duplicate-outline.svg │ │ │ ├── duplicate-sharp.svg │ │ │ ├── duplicate.svg │ │ │ ├── ear-outline.svg │ │ │ ├── ear-sharp.svg │ │ │ ├── ear.svg │ │ │ ├── earth-outline.svg │ │ │ ├── earth-sharp.svg │ │ │ ├── earth.svg │ │ │ ├── easel-outline.svg │ │ │ ├── easel-sharp.svg │ │ │ ├── easel.svg │ │ │ ├── egg-outline.svg │ │ │ ├── egg-sharp.svg │ │ │ ├── egg.svg │ │ │ ├── ellipse-outline.svg │ │ │ ├── ellipse-sharp.svg │ │ │ ├── ellipse.svg │ │ │ ├── ellipsis-horizontal-circle-outline.svg │ │ │ ├── ellipsis-horizontal-circle-sharp.svg │ │ │ ├── ellipsis-horizontal-circle.svg │ │ │ ├── ellipsis-horizontal-outline.svg │ │ │ ├── ellipsis-horizontal-sharp.svg │ │ │ ├── ellipsis-horizontal.svg │ │ │ ├── ellipsis-vertical-circle-outline.svg │ │ │ ├── ellipsis-vertical-circle-sharp.svg │ │ │ ├── ellipsis-vertical-circle.svg │ │ │ ├── ellipsis-vertical-outline.svg │ │ │ ├── ellipsis-vertical-sharp.svg │ │ │ ├── ellipsis-vertical.svg │ │ │ ├── enter-outline.svg │ │ │ ├── enter-sharp.svg │ │ │ ├── enter.svg │ │ │ ├── exit-outline.svg │ │ │ ├── exit-sharp.svg │ │ │ ├── exit.svg │ │ │ ├── expand-outline.svg │ │ │ ├── expand-sharp.svg │ │ │ ├── expand.svg │ │ │ ├── eye-off-outline.svg │ │ │ ├── eye-off-sharp.svg │ │ │ ├── eye-off.svg │ │ │ ├── eye-outline.svg │ │ │ ├── eye-sharp.svg │ │ │ ├── eye.svg │ │ │ ├── eyedrop-outline.svg │ │ │ ├── eyedrop-sharp.svg │ │ │ ├── eyedrop.svg │ │ │ ├── fast-food-outline.svg │ │ │ ├── fast-food-sharp.svg │ │ │ ├── fast-food.svg │ │ │ ├── female-outline.svg │ │ │ ├── female-sharp.svg │ │ │ ├── female.svg │ │ │ ├── file-tray-full-outline.svg │ │ │ ├── file-tray-full-sharp.svg │ │ │ ├── file-tray-full.svg │ │ │ ├── file-tray-outline.svg │ │ │ ├── file-tray-sharp.svg │ │ │ ├── file-tray-stacked-outline.svg │ │ │ ├── file-tray-stacked-sharp.svg │ │ │ ├── file-tray-stacked.svg │ │ │ ├── file-tray.svg │ │ │ ├── film-outline.svg │ │ │ ├── film-sharp.svg │ │ │ ├── film.svg │ │ │ ├── filter-outline.svg │ │ │ ├── filter-sharp.svg │ │ │ ├── filter.svg │ │ │ ├── finger-print-outline.svg │ │ │ ├── finger-print-sharp.svg │ │ │ ├── finger-print.svg │ │ │ ├── fitness-outline.svg │ │ │ ├── fitness-sharp.svg │ │ │ ├── fitness.svg │ │ │ ├── flag-outline.svg │ │ │ ├── flag-sharp.svg │ │ │ ├── flag.svg │ │ │ ├── flame-outline.svg │ │ │ ├── flame-sharp.svg │ │ │ ├── flame.svg │ │ │ ├── flash-off-outline.svg │ │ │ ├── flash-off-sharp.svg │ │ │ ├── flash-off.svg │ │ │ ├── flash-outline.svg │ │ │ ├── flash-sharp.svg │ │ │ ├── flash.svg │ │ │ ├── flashlight-outline.svg │ │ │ ├── flashlight-sharp.svg │ │ │ ├── flashlight.svg │ │ │ ├── flask-outline.svg │ │ │ ├── flask-sharp.svg │ │ │ ├── flask.svg │ │ │ ├── flower-outline.svg │ │ │ ├── flower-sharp.svg │ │ │ ├── flower.svg │ │ │ ├── folder-open-outline.svg │ │ │ ├── folder-open-sharp.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-outline.svg │ │ │ ├── folder-sharp.svg │ │ │ ├── folder.svg │ │ │ ├── football-outline.svg │ │ │ ├── football-sharp.svg │ │ │ ├── football.svg │ │ │ ├── funnel-outline.svg │ │ │ ├── funnel-sharp.svg │ │ │ ├── funnel.svg │ │ │ ├── game-controller-outline.svg │ │ │ ├── game-controller-sharp.svg │ │ │ ├── game-controller.svg │ │ │ ├── gift-outline.svg │ │ │ ├── gift-sharp.svg │ │ │ ├── gift.svg │ │ │ ├── git-branch-outline.svg │ │ │ ├── git-branch-sharp.svg │ │ │ ├── git-branch.svg │ │ │ ├── git-commit-outline.svg │ │ │ ├── git-commit-sharp.svg │ │ │ ├── git-commit.svg │ │ │ ├── git-compare-outline.svg │ │ │ ├── git-compare-sharp.svg │ │ │ ├── git-compare.svg │ │ │ ├── git-merge-outline.svg │ │ │ ├── git-merge-sharp.svg │ │ │ ├── git-merge.svg │ │ │ ├── git-network-outline.svg │ │ │ ├── git-network-sharp.svg │ │ │ ├── git-network.svg │ │ │ ├── git-pull-request-outline.svg │ │ │ ├── git-pull-request-sharp.svg │ │ │ ├── git-pull-request.svg │ │ │ ├── glasses-outline.svg │ │ │ ├── glasses-sharp.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-outline.svg │ │ │ ├── globe-sharp.svg │ │ │ ├── globe.svg │ │ │ ├── golf-outline.svg │ │ │ ├── golf-sharp.svg │ │ │ ├── golf.svg │ │ │ ├── grid-outline.svg │ │ │ ├── grid-sharp.svg │ │ │ ├── grid.svg │ │ │ ├── hammer-outline.svg │ │ │ ├── hammer-sharp.svg │ │ │ ├── hammer.svg │ │ │ ├── hand-left-outline.svg │ │ │ ├── hand-left-sharp.svg │ │ │ ├── hand-left.svg │ │ │ ├── hand-right-outline.svg │ │ │ ├── hand-right-sharp.svg │ │ │ ├── hand-right.svg │ │ │ ├── happy-outline.svg │ │ │ ├── happy-sharp.svg │ │ │ ├── happy.svg │ │ │ ├── hardware-chip-outline.svg │ │ │ ├── hardware-chip-sharp.svg │ │ │ ├── hardware-chip.svg │ │ │ ├── headset-outline.svg │ │ │ ├── headset-sharp.svg │ │ │ ├── headset.svg │ │ │ ├── heart-circle-outline.svg │ │ │ ├── heart-circle-sharp.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-dislike-circle-outline.svg │ │ │ ├── heart-dislike-circle-sharp.svg │ │ │ ├── heart-dislike-circle.svg │ │ │ ├── heart-dislike-outline.svg │ │ │ ├── heart-dislike-sharp.svg │ │ │ ├── heart-dislike.svg │ │ │ ├── heart-half-outline.svg │ │ │ ├── heart-half-sharp.svg │ │ │ ├── heart-half.svg │ │ │ ├── heart-outline.svg │ │ │ ├── heart-sharp.svg │ │ │ ├── heart.svg │ │ │ ├── help-buoy-outline.svg │ │ │ ├── help-buoy-sharp.svg │ │ │ ├── help-buoy.svg │ │ │ ├── help-circle-outline.svg │ │ │ ├── help-circle-sharp.svg │ │ │ ├── help-circle.svg │ │ │ ├── help-outline.svg │ │ │ ├── help-sharp.svg │ │ │ ├── help.svg │ │ │ ├── home-outline.svg │ │ │ ├── home-sharp.svg │ │ │ ├── home.svg │ │ │ ├── hourglass-outline.svg │ │ │ ├── hourglass-sharp.svg │ │ │ ├── hourglass.svg │ │ │ ├── ice-cream-outline.svg │ │ │ ├── ice-cream-sharp.svg │ │ │ ├── ice-cream.svg │ │ │ ├── image-outline.svg │ │ │ ├── image-sharp.svg │ │ │ ├── image.svg │ │ │ ├── images-outline.svg │ │ │ ├── images-sharp.svg │ │ │ ├── images.svg │ │ │ ├── infinite-outline.svg │ │ │ ├── infinite-sharp.svg │ │ │ ├── infinite.svg │ │ │ ├── information-circle-outline.svg │ │ │ ├── information-circle-sharp.svg │ │ │ ├── information-circle.svg │ │ │ ├── information-outline.svg │ │ │ ├── information-sharp.svg │ │ │ ├── information.svg │ │ │ ├── journal-outline.svg │ │ │ ├── journal-sharp.svg │ │ │ ├── journal.svg │ │ │ ├── key-outline.svg │ │ │ ├── key-sharp.svg │ │ │ ├── key.svg │ │ │ ├── keypad-outline.svg │ │ │ ├── keypad-sharp.svg │ │ │ ├── keypad.svg │ │ │ ├── language-outline.svg │ │ │ ├── language-sharp.svg │ │ │ ├── language.svg │ │ │ ├── laptop-outline.svg │ │ │ ├── laptop-sharp.svg │ │ │ ├── laptop.svg │ │ │ ├── layers-outline.svg │ │ │ ├── layers-sharp.svg │ │ │ ├── layers.svg │ │ │ ├── leaf-outline.svg │ │ │ ├── leaf-sharp.svg │ │ │ ├── leaf.svg │ │ │ ├── library-outline.svg │ │ │ ├── library-sharp.svg │ │ │ ├── library.svg │ │ │ ├── link-outline.svg │ │ │ ├── link-sharp.svg │ │ │ ├── link.svg │ │ │ ├── list-circle-outline.svg │ │ │ ├── list-circle-sharp.svg │ │ │ ├── list-circle.svg │ │ │ ├── list-outline.svg │ │ │ ├── list-sharp.svg │ │ │ ├── list.svg │ │ │ ├── locate-outline.svg │ │ │ ├── locate-sharp.svg │ │ │ ├── locate.svg │ │ │ ├── location-outline.svg │ │ │ ├── location-sharp.svg │ │ │ ├── location.svg │ │ │ ├── lock-closed-outline.svg │ │ │ ├── lock-closed-sharp.svg │ │ │ ├── lock-closed.svg │ │ │ ├── lock-open-outline.svg │ │ │ ├── lock-open-sharp.svg │ │ │ ├── lock-open.svg │ │ │ ├── log-in-outline.svg │ │ │ ├── log-in-sharp.svg │ │ │ ├── log-in.svg │ │ │ ├── log-out-outline.svg │ │ │ ├── log-out-sharp.svg │ │ │ ├── log-out.svg │ │ │ ├── logo-amazon.svg │ │ │ ├── logo-amplify.svg │ │ │ ├── logo-android.svg │ │ │ ├── logo-angular.svg │ │ │ ├── logo-apple-appstore.svg │ │ │ ├── logo-apple.svg │ │ │ ├── logo-behance.svg │ │ │ ├── logo-bitbucket.svg │ │ │ ├── logo-bitcoin.svg │ │ │ ├── logo-buffer.svg │ │ │ ├── logo-capacitor.svg │ │ │ ├── logo-chrome.svg │ │ │ ├── logo-closed-captioning.svg │ │ │ ├── logo-codepen.svg │ │ │ ├── logo-css3.svg │ │ │ ├── logo-designernews.svg │ │ │ ├── logo-docker.svg │ │ │ ├── logo-dribbble.svg │ │ │ ├── logo-dropbox.svg │ │ │ ├── logo-edge.svg │ │ │ ├── logo-electron.svg │ │ │ ├── logo-euro.svg │ │ │ ├── logo-facebook.svg │ │ │ ├── logo-firebase.svg │ │ │ ├── logo-firefox.svg │ │ │ ├── logo-flickr.svg │ │ │ ├── logo-foursquare.svg │ │ │ ├── logo-github.svg │ │ │ ├── logo-gitlab.svg │ │ │ ├── logo-google-playstore.svg │ │ │ ├── logo-google.svg │ │ │ ├── logo-hackernews.svg │ │ │ ├── logo-html5.svg │ │ │ ├── logo-instagram.svg │ │ │ ├── logo-ionic.svg │ │ │ ├── logo-ionitron.svg │ │ │ ├── logo-javascript.svg │ │ │ ├── logo-laravel.svg │ │ │ ├── logo-linkedin.svg │ │ │ ├── logo-markdown.svg │ │ │ ├── logo-medium.svg │ │ │ ├── logo-no-smoking.svg │ │ │ ├── logo-nodejs.svg │ │ │ ├── logo-npm.svg │ │ │ ├── logo-octocat.svg │ │ │ ├── logo-paypal.svg │ │ │ ├── logo-pinterest.svg │ │ │ ├── logo-playstation.svg │ │ │ ├── logo-pwa.svg │ │ │ ├── logo-python.svg │ │ │ ├── logo-react.svg │ │ │ ├── logo-reddit.svg │ │ │ ├── logo-rss.svg │ │ │ ├── logo-sass.svg │ │ │ ├── logo-skype.svg │ │ │ ├── logo-slack.svg │ │ │ ├── logo-snapchat.svg │ │ │ ├── logo-soundcloud.svg │ │ │ ├── logo-stackoverflow.svg │ │ │ ├── logo-steam.svg │ │ │ ├── logo-stencil.svg │ │ │ ├── logo-tiktok.svg │ │ │ ├── logo-tumblr.svg │ │ │ ├── logo-tux.svg │ │ │ ├── logo-twitch.svg │ │ │ ├── logo-twitter.svg │ │ │ ├── logo-usd.svg │ │ │ ├── logo-venmo.svg │ │ │ ├── logo-vimeo.svg │ │ │ ├── logo-vk.svg │ │ │ ├── logo-vue.svg │ │ │ ├── logo-web-component.svg │ │ │ ├── logo-whatsapp.svg │ │ │ ├── logo-windows.svg │ │ │ ├── logo-wordpress.svg │ │ │ ├── logo-xbox.svg │ │ │ ├── logo-xing.svg │ │ │ ├── logo-yahoo.svg │ │ │ ├── logo-yen.svg │ │ │ ├── logo-youtube.svg │ │ │ ├── magnet-outline.svg │ │ │ ├── magnet-sharp.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-open-outline.svg │ │ │ ├── mail-open-sharp.svg │ │ │ ├── mail-open.svg │ │ │ ├── mail-outline.svg │ │ │ ├── mail-sharp.svg │ │ │ ├── mail-unread-outline.svg │ │ │ ├── mail-unread-sharp.svg │ │ │ ├── mail-unread.svg │ │ │ ├── mail.svg │ │ │ ├── male-female-outline.svg │ │ │ ├── male-female-sharp.svg │ │ │ ├── male-female.svg │ │ │ ├── male-outline.svg │ │ │ ├── male-sharp.svg │ │ │ ├── male.svg │ │ │ ├── man-outline.svg │ │ │ ├── man-sharp.svg │ │ │ ├── man.svg │ │ │ ├── map-outline.svg │ │ │ ├── map-sharp.svg │ │ │ ├── map.svg │ │ │ ├── medal-outline.svg │ │ │ ├── medal-sharp.svg │ │ │ ├── medal.svg │ │ │ ├── medical-outline.svg │ │ │ ├── medical-sharp.svg │ │ │ ├── medical.svg │ │ │ ├── medkit-outline.svg │ │ │ ├── medkit-sharp.svg │ │ │ ├── medkit.svg │ │ │ ├── megaphone-outline.svg │ │ │ ├── megaphone-sharp.svg │ │ │ ├── megaphone.svg │ │ │ ├── menu-outline.svg │ │ │ ├── menu-sharp.svg │ │ │ ├── menu.svg │ │ │ ├── mic-circle-outline.svg │ │ │ ├── mic-circle-sharp.svg │ │ │ ├── mic-circle.svg │ │ │ ├── mic-off-circle-outline.svg │ │ │ ├── mic-off-circle-sharp.svg │ │ │ ├── mic-off-circle.svg │ │ │ ├── mic-off-outline.svg │ │ │ ├── mic-off-sharp.svg │ │ │ ├── mic-off.svg │ │ │ ├── mic-outline.svg │ │ │ ├── mic-sharp.svg │ │ │ ├── mic.svg │ │ │ ├── moon-outline.svg │ │ │ ├── moon-sharp.svg │ │ │ ├── moon.svg │ │ │ ├── move-outline.svg │ │ │ ├── move-sharp.svg │ │ │ ├── move.svg │ │ │ ├── musical-note-outline.svg │ │ │ ├── musical-note-sharp.svg │ │ │ ├── musical-note.svg │ │ │ ├── musical-notes-outline.svg │ │ │ ├── musical-notes-sharp.svg │ │ │ ├── musical-notes.svg │ │ │ ├── navigate-circle-outline.svg │ │ │ ├── navigate-circle-sharp.svg │ │ │ ├── navigate-circle.svg │ │ │ ├── navigate-outline.svg │ │ │ ├── navigate-sharp.svg │ │ │ ├── navigate.svg │ │ │ ├── newspaper-outline.svg │ │ │ ├── newspaper-sharp.svg │ │ │ ├── newspaper.svg │ │ │ ├── notifications-circle-outline.svg │ │ │ ├── notifications-circle-sharp.svg │ │ │ ├── notifications-circle.svg │ │ │ ├── notifications-off-circle-outline.svg │ │ │ ├── notifications-off-circle-sharp.svg │ │ │ ├── notifications-off-circle.svg │ │ │ ├── notifications-off-outline.svg │ │ │ ├── notifications-off-sharp.svg │ │ │ ├── notifications-off.svg │ │ │ ├── notifications-outline.svg │ │ │ ├── notifications-sharp.svg │ │ │ ├── notifications.svg │ │ │ ├── nuclear-outline.svg │ │ │ ├── nuclear-sharp.svg │ │ │ ├── nuclear.svg │ │ │ ├── nutrition-outline.svg │ │ │ ├── nutrition-sharp.svg │ │ │ ├── nutrition.svg │ │ │ ├── open-outline.svg │ │ │ ├── open-sharp.svg │ │ │ ├── open.svg │ │ │ ├── options-outline.svg │ │ │ ├── options-sharp.svg │ │ │ ├── options.svg │ │ │ ├── paper-plane-outline.svg │ │ │ ├── paper-plane-sharp.svg │ │ │ ├── paper-plane.svg │ │ │ ├── partly-sunny-outline.svg │ │ │ ├── partly-sunny-sharp.svg │ │ │ ├── partly-sunny.svg │ │ │ ├── pause-circle-outline.svg │ │ │ ├── pause-circle-sharp.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause-outline.svg │ │ │ ├── pause-sharp.svg │ │ │ ├── pause.svg │ │ │ ├── paw-outline.svg │ │ │ ├── paw-sharp.svg │ │ │ ├── paw.svg │ │ │ ├── pencil-outline.svg │ │ │ ├── pencil-sharp.svg │ │ │ ├── pencil.svg │ │ │ ├── people-circle-outline.svg │ │ │ ├── people-circle-sharp.svg │ │ │ ├── people-circle.svg │ │ │ ├── people-outline.svg │ │ │ ├── people-sharp.svg │ │ │ ├── people.svg │ │ │ ├── person-add-outline.svg │ │ │ ├── person-add-sharp.svg │ │ │ ├── person-add.svg │ │ │ ├── person-circle-outline.svg │ │ │ ├── person-circle-sharp.svg │ │ │ ├── person-circle.svg │ │ │ ├── person-outline.svg │ │ │ ├── person-remove-outline.svg │ │ │ ├── person-remove-sharp.svg │ │ │ ├── person-remove.svg │ │ │ ├── person-sharp.svg │ │ │ ├── person.svg │ │ │ ├── phone-landscape-outline.svg │ │ │ ├── phone-landscape-sharp.svg │ │ │ ├── phone-landscape.svg │ │ │ ├── phone-portrait-outline.svg │ │ │ ├── phone-portrait-sharp.svg │ │ │ ├── phone-portrait.svg │ │ │ ├── pie-chart-outline.svg │ │ │ ├── pie-chart-sharp.svg │ │ │ ├── pie-chart.svg │ │ │ ├── pin-outline.svg │ │ │ ├── pin-sharp.svg │ │ │ ├── pin.svg │ │ │ ├── pint-outline.svg │ │ │ ├── pint-sharp.svg │ │ │ ├── pint.svg │ │ │ ├── pizza-outline.svg │ │ │ ├── pizza-sharp.svg │ │ │ ├── pizza.svg │ │ │ ├── planet-outline.svg │ │ │ ├── planet-sharp.svg │ │ │ ├── planet.svg │ │ │ ├── play-back-circle-outline.svg │ │ │ ├── play-back-circle-sharp.svg │ │ │ ├── play-back-circle.svg │ │ │ ├── play-back-outline.svg │ │ │ ├── play-back-sharp.svg │ │ │ ├── play-back.svg │ │ │ ├── play-circle-outline.svg │ │ │ ├── play-circle-sharp.svg │ │ │ ├── play-circle.svg │ │ │ ├── play-forward-circle-outline.svg │ │ │ ├── play-forward-circle-sharp.svg │ │ │ ├── play-forward-circle.svg │ │ │ ├── play-forward-outline.svg │ │ │ ├── play-forward-sharp.svg │ │ │ ├── play-forward.svg │ │ │ ├── play-outline.svg │ │ │ ├── play-sharp.svg │ │ │ ├── play-skip-back-circle-outline.svg │ │ │ ├── play-skip-back-circle-sharp.svg │ │ │ ├── play-skip-back-circle.svg │ │ │ ├── play-skip-back-outline.svg │ │ │ ├── play-skip-back-sharp.svg │ │ │ ├── play-skip-back.svg │ │ │ ├── play-skip-forward-circle-outline.svg │ │ │ ├── play-skip-forward-circle-sharp.svg │ │ │ ├── play-skip-forward-circle.svg │ │ │ ├── play-skip-forward-outline.svg │ │ │ ├── play-skip-forward-sharp.svg │ │ │ ├── play-skip-forward.svg │ │ │ ├── play.svg │ │ │ ├── podium-outline.svg │ │ │ ├── podium-sharp.svg │ │ │ ├── podium.svg │ │ │ ├── power-outline.svg │ │ │ ├── power-sharp.svg │ │ │ ├── power.svg │ │ │ ├── pricetag-outline.svg │ │ │ ├── pricetag-sharp.svg │ │ │ ├── pricetag.svg │ │ │ ├── pricetags-outline.svg │ │ │ ├── pricetags-sharp.svg │ │ │ ├── pricetags.svg │ │ │ ├── print-outline.svg │ │ │ ├── print-sharp.svg │ │ │ ├── print.svg │ │ │ ├── pulse-outline.svg │ │ │ ├── pulse-sharp.svg │ │ │ ├── pulse.svg │ │ │ ├── push-outline.svg │ │ │ ├── push-sharp.svg │ │ │ ├── push.svg │ │ │ ├── qr-code-outline.svg │ │ │ ├── qr-code-sharp.svg │ │ │ ├── qr-code.svg │ │ │ ├── radio-button-off-outline.svg │ │ │ ├── radio-button-off-sharp.svg │ │ │ ├── radio-button-off.svg │ │ │ ├── radio-button-on-outline.svg │ │ │ ├── radio-button-on-sharp.svg │ │ │ ├── radio-button-on.svg │ │ │ ├── radio-outline.svg │ │ │ ├── radio-sharp.svg │ │ │ ├── radio.svg │ │ │ ├── rainy-outline.svg │ │ │ ├── rainy-sharp.svg │ │ │ ├── rainy.svg │ │ │ ├── reader-outline.svg │ │ │ ├── reader-sharp.svg │ │ │ ├── reader.svg │ │ │ ├── receipt-outline.svg │ │ │ ├── receipt-sharp.svg │ │ │ ├── receipt.svg │ │ │ ├── recording-outline.svg │ │ │ ├── recording-sharp.svg │ │ │ ├── recording.svg │ │ │ ├── refresh-circle-outline.svg │ │ │ ├── refresh-circle-sharp.svg │ │ │ ├── refresh-circle.svg │ │ │ ├── refresh-outline.svg │ │ │ ├── refresh-sharp.svg │ │ │ ├── refresh.svg │ │ │ ├── reload-circle-outline.svg │ │ │ ├── reload-circle-sharp.svg │ │ │ ├── reload-circle.svg │ │ │ ├── reload-outline.svg │ │ │ ├── reload-sharp.svg │ │ │ ├── reload.svg │ │ │ ├── remove-circle-outline.svg │ │ │ ├── remove-circle-sharp.svg │ │ │ ├── remove-circle.svg │ │ │ ├── remove-outline.svg │ │ │ ├── remove-sharp.svg │ │ │ ├── remove.svg │ │ │ ├── reorder-four-outline.svg │ │ │ ├── reorder-four-sharp.svg │ │ │ ├── reorder-four.svg │ │ │ ├── reorder-three-outline.svg │ │ │ ├── reorder-three-sharp.svg │ │ │ ├── reorder-three.svg │ │ │ ├── reorder-two-outline.svg │ │ │ ├── reorder-two-sharp.svg │ │ │ ├── reorder-two.svg │ │ │ ├── repeat-outline.svg │ │ │ ├── repeat-sharp.svg │ │ │ ├── repeat.svg │ │ │ ├── resize-outline.svg │ │ │ ├── resize-sharp.svg │ │ │ ├── resize.svg │ │ │ ├── restaurant-outline.svg │ │ │ ├── restaurant-sharp.svg │ │ │ ├── restaurant.svg │ │ │ ├── return-down-back-outline.svg │ │ │ ├── return-down-back-sharp.svg │ │ │ ├── return-down-back.svg │ │ │ ├── return-down-forward-outline.svg │ │ │ ├── return-down-forward-sharp.svg │ │ │ ├── return-down-forward.svg │ │ │ ├── return-up-back-outline.svg │ │ │ ├── return-up-back-sharp.svg │ │ │ ├── return-up-back.svg │ │ │ ├── return-up-forward-outline.svg │ │ │ ├── return-up-forward-sharp.svg │ │ │ ├── return-up-forward.svg │ │ │ ├── ribbon-outline.svg │ │ │ ├── ribbon-sharp.svg │ │ │ ├── ribbon.svg │ │ │ ├── rocket-outline.svg │ │ │ ├── rocket-sharp.svg │ │ │ ├── rocket.svg │ │ │ ├── rose-outline.svg │ │ │ ├── rose-sharp.svg │ │ │ ├── rose.svg │ │ │ ├── sad-outline.svg │ │ │ ├── sad-sharp.svg │ │ │ ├── sad.svg │ │ │ ├── save-outline.svg │ │ │ ├── save-sharp.svg │ │ │ ├── save.svg │ │ │ ├── scan-circle-outline.svg │ │ │ ├── scan-circle-sharp.svg │ │ │ ├── scan-circle.svg │ │ │ ├── scan-outline.svg │ │ │ ├── scan-sharp.svg │ │ │ ├── scan.svg │ │ │ ├── school-outline.svg │ │ │ ├── school-sharp.svg │ │ │ ├── school.svg │ │ │ ├── search-circle-outline.svg │ │ │ ├── search-circle-sharp.svg │ │ │ ├── search-circle.svg │ │ │ ├── search-outline.svg │ │ │ ├── search-sharp.svg │ │ │ ├── search.svg │ │ │ ├── send-outline.svg │ │ │ ├── send-sharp.svg │ │ │ ├── send.svg │ │ │ ├── server-outline.svg │ │ │ ├── server-sharp.svg │ │ │ ├── server.svg │ │ │ ├── settings-outline.svg │ │ │ ├── settings-sharp.svg │ │ │ ├── settings.svg │ │ │ ├── shapes-outline.svg │ │ │ ├── shapes-sharp.svg │ │ │ ├── shapes.svg │ │ │ ├── share-outline.svg │ │ │ ├── share-sharp.svg │ │ │ ├── share-social-outline.svg │ │ │ ├── share-social-sharp.svg │ │ │ ├── share-social.svg │ │ │ ├── share.svg │ │ │ ├── shield-checkmark-outline.svg │ │ │ ├── shield-checkmark-sharp.svg │ │ │ ├── shield-checkmark.svg │ │ │ ├── shield-outline.svg │ │ │ ├── shield-sharp.svg │ │ │ ├── shield.svg │ │ │ ├── shirt-outline.svg │ │ │ ├── shirt-sharp.svg │ │ │ ├── shirt.svg │ │ │ ├── shuffle-outline.svg │ │ │ ├── shuffle-sharp.svg │ │ │ ├── shuffle.svg │ │ │ ├── skull-outline.svg │ │ │ ├── skull-sharp.svg │ │ │ ├── skull.svg │ │ │ ├── snow-outline.svg │ │ │ ├── snow-sharp.svg │ │ │ ├── snow.svg │ │ │ ├── speedometer-outline.svg │ │ │ ├── speedometer-sharp.svg │ │ │ ├── speedometer.svg │ │ │ ├── square-outline.svg │ │ │ ├── square-sharp.svg │ │ │ ├── square.svg │ │ │ ├── star-half-outline.svg │ │ │ ├── star-half-sharp.svg │ │ │ ├── star-half.svg │ │ │ ├── star-outline.svg │ │ │ ├── star-sharp.svg │ │ │ ├── star.svg │ │ │ ├── stats-chart-outline.svg │ │ │ ├── stats-chart-sharp.svg │ │ │ ├── stats-chart.svg │ │ │ ├── stop-circle-outline.svg │ │ │ ├── stop-circle-sharp.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop-outline.svg │ │ │ ├── stop-sharp.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-outline.svg │ │ │ ├── stopwatch-sharp.svg │ │ │ ├── stopwatch.svg │ │ │ ├── subway-outline.svg │ │ │ ├── subway-sharp.svg │ │ │ ├── subway.svg │ │ │ ├── sunny-outline.svg │ │ │ ├── sunny-sharp.svg │ │ │ ├── sunny.svg │ │ │ ├── swap-horizontal-outline.svg │ │ │ ├── swap-horizontal-sharp.svg │ │ │ ├── swap-horizontal.svg │ │ │ ├── swap-vertical-outline.svg │ │ │ ├── swap-vertical-sharp.svg │ │ │ ├── swap-vertical.svg │ │ │ ├── sync-circle-outline.svg │ │ │ ├── sync-circle-sharp.svg │ │ │ ├── sync-circle.svg │ │ │ ├── sync-outline.svg │ │ │ ├── sync-sharp.svg │ │ │ ├── sync.svg │ │ │ ├── tablet-landscape-outline.svg │ │ │ ├── tablet-landscape-sharp.svg │ │ │ ├── tablet-landscape.svg │ │ │ ├── tablet-portrait-outline.svg │ │ │ ├── tablet-portrait-sharp.svg │ │ │ ├── tablet-portrait.svg │ │ │ ├── tennisball-outline.svg │ │ │ ├── tennisball-sharp.svg │ │ │ ├── tennisball.svg │ │ │ ├── terminal-outline.svg │ │ │ ├── terminal-sharp.svg │ │ │ ├── terminal.svg │ │ │ ├── text-outline.svg │ │ │ ├── text-sharp.svg │ │ │ ├── text.svg │ │ │ ├── thermometer-outline.svg │ │ │ ├── thermometer-sharp.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down-outline.svg │ │ │ ├── thumbs-down-sharp.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up-outline.svg │ │ │ ├── thumbs-up-sharp.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thunderstorm-outline.svg │ │ │ ├── thunderstorm-sharp.svg │ │ │ ├── thunderstorm.svg │ │ │ ├── time-outline.svg │ │ │ ├── time-sharp.svg │ │ │ ├── time.svg │ │ │ ├── timer-outline.svg │ │ │ ├── timer-sharp.svg │ │ │ ├── timer.svg │ │ │ ├── today-outline.svg │ │ │ ├── today-sharp.svg │ │ │ ├── today.svg │ │ │ ├── toggle-outline.svg │ │ │ ├── toggle-sharp.svg │ │ │ ├── toggle.svg │ │ │ ├── trail-sign-outline.svg │ │ │ ├── trail-sign-sharp.svg │ │ │ ├── trail-sign.svg │ │ │ ├── train-outline.svg │ │ │ ├── train-sharp.svg │ │ │ ├── train.svg │ │ │ ├── transgender-outline.svg │ │ │ ├── transgender-sharp.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-bin-outline.svg │ │ │ ├── trash-bin-sharp.svg │ │ │ ├── trash-bin.svg │ │ │ ├── trash-outline.svg │ │ │ ├── trash-sharp.svg │ │ │ ├── trash.svg │ │ │ ├── trending-down-outline.svg │ │ │ ├── trending-down-sharp.svg │ │ │ ├── trending-down.svg │ │ │ ├── trending-up-outline.svg │ │ │ ├── trending-up-sharp.svg │ │ │ ├── trending-up.svg │ │ │ ├── triangle-outline.svg │ │ │ ├── triangle-sharp.svg │ │ │ ├── triangle.svg │ │ │ ├── trophy-outline.svg │ │ │ ├── trophy-sharp.svg │ │ │ ├── trophy.svg │ │ │ ├── tv-outline.svg │ │ │ ├── tv-sharp.svg │ │ │ ├── tv.svg │ │ │ ├── umbrella-outline.svg │ │ │ ├── umbrella-sharp.svg │ │ │ ├── umbrella.svg │ │ │ ├── videocam-outline.svg │ │ │ ├── videocam-sharp.svg │ │ │ ├── videocam.svg │ │ │ ├── volume-high-outline.svg │ │ │ ├── volume-high-sharp.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low-outline.svg │ │ │ ├── volume-low-sharp.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-medium-outline.svg │ │ │ ├── volume-medium-sharp.svg │ │ │ ├── volume-medium.svg │ │ │ ├── volume-mute-outline.svg │ │ │ ├── volume-mute-sharp.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off-outline.svg │ │ │ ├── volume-off-sharp.svg │ │ │ ├── volume-off.svg │ │ │ ├── walk-outline.svg │ │ │ ├── walk-sharp.svg │ │ │ ├── walk.svg │ │ │ ├── wallet-outline.svg │ │ │ ├── wallet-sharp.svg │ │ │ ├── wallet.svg │ │ │ ├── warning-outline.svg │ │ │ ├── warning-sharp.svg │ │ │ ├── warning.svg │ │ │ ├── watch-outline.svg │ │ │ ├── watch-sharp.svg │ │ │ ├── watch.svg │ │ │ ├── water-outline.svg │ │ │ ├── water-sharp.svg │ │ │ ├── water.svg │ │ │ ├── wifi-outline.svg │ │ │ ├── wifi-sharp.svg │ │ │ ├── wifi.svg │ │ │ ├── wine-outline.svg │ │ │ ├── wine-sharp.svg │ │ │ ├── wine.svg │ │ │ ├── woman-outline.svg │ │ │ ├── woman-sharp.svg │ │ │ └── woman.svg │ │ ├── line-awesome │ │ └── dist │ │ │ ├── font-awesome-line-awesome │ │ │ ├── css │ │ │ │ └── all.min.css │ │ │ └── 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 │ │ │ └── line-awesome │ │ │ ├── css │ │ │ └── line-awesome.min.css │ │ │ └── fonts │ │ │ ├── la-brands-400.eot │ │ │ ├── la-brands-400.svg │ │ │ ├── la-brands-400.ttf │ │ │ ├── la-brands-400.woff │ │ │ ├── la-brands-400.woff2 │ │ │ ├── la-regular-400.eot │ │ │ ├── la-regular-400.svg │ │ │ ├── la-regular-400.ttf │ │ │ ├── la-regular-400.woff │ │ │ ├── la-regular-400.woff2 │ │ │ ├── la-solid-900.eot │ │ │ ├── la-solid-900.svg │ │ │ ├── la-solid-900.ttf │ │ │ ├── la-solid-900.woff │ │ │ └── la-solid-900.woff2 │ │ ├── mapbox │ │ └── mapbox-gl.css │ │ └── remixicon │ │ ├── License │ │ ├── fonts │ │ ├── remixicon.css │ │ ├── remixicon.eot │ │ ├── remixicon.svg │ │ ├── remixicon.symbol.svg │ │ ├── remixicon.ttf │ │ ├── remixicon.woff │ │ └── remixicon.woff2 │ │ └── icons │ │ ├── Buildings │ │ ├── ancient-gate-fill.svg │ │ ├── ancient-gate-line.svg │ │ ├── ancient-pavilion-fill.svg │ │ ├── ancient-pavilion-line.svg │ │ ├── bank-fill.svg │ │ ├── bank-line.svg │ │ ├── building-2-fill.svg │ │ ├── building-2-line.svg │ │ ├── building-3-fill.svg │ │ ├── building-3-line.svg │ │ ├── building-4-fill.svg │ │ ├── building-4-line.svg │ │ ├── building-fill.svg │ │ ├── building-line.svg │ │ ├── community-fill.svg │ │ ├── community-line.svg │ │ ├── government-fill.svg │ │ ├── government-line.svg │ │ ├── home-2-fill.svg │ │ ├── home-2-line.svg │ │ ├── home-3-fill.svg │ │ ├── home-3-line.svg │ │ ├── home-4-fill.svg │ │ ├── home-4-line.svg │ │ ├── home-5-fill.svg │ │ ├── home-5-line.svg │ │ ├── home-6-fill.svg │ │ ├── home-6-line.svg │ │ ├── home-7-fill.svg │ │ ├── home-7-line.svg │ │ ├── home-8-fill.svg │ │ ├── home-8-line.svg │ │ ├── home-fill.svg │ │ ├── home-gear-fill.svg │ │ ├── home-gear-line.svg │ │ ├── home-heart-fill.svg │ │ ├── home-heart-line.svg │ │ ├── home-line.svg │ │ ├── home-smile-2-fill.svg │ │ ├── home-smile-2-line.svg │ │ ├── home-smile-fill.svg │ │ ├── home-smile-line.svg │ │ ├── home-wifi-fill.svg │ │ ├── home-wifi-line.svg │ │ ├── hospital-fill.svg │ │ ├── hospital-line.svg │ │ ├── hotel-fill.svg │ │ ├── hotel-line.svg │ │ ├── store-2-fill.svg │ │ ├── store-2-line.svg │ │ ├── store-3-fill.svg │ │ ├── store-3-line.svg │ │ ├── store-fill.svg │ │ └── store-line.svg │ │ ├── Business │ │ ├── advertisement-fill.svg │ │ ├── advertisement-line.svg │ │ ├── archive-drawer-fill.svg │ │ ├── archive-drawer-line.svg │ │ ├── archive-fill.svg │ │ ├── archive-line.svg │ │ ├── at-fill.svg │ │ ├── at-line.svg │ │ ├── attachment-fill.svg │ │ ├── attachment-line.svg │ │ ├── award-fill.svg │ │ ├── award-line.svg │ │ ├── bar-chart-2-fill.svg │ │ ├── bar-chart-2-line.svg │ │ ├── bar-chart-box-fill.svg │ │ ├── bar-chart-box-line.svg │ │ ├── bar-chart-fill.svg │ │ ├── bar-chart-grouped-fill.svg │ │ ├── bar-chart-grouped-line.svg │ │ ├── bar-chart-horizontal-fill.svg │ │ ├── bar-chart-horizontal-line.svg │ │ ├── bar-chart-line.svg │ │ ├── bookmark-2-fill.svg │ │ ├── bookmark-2-line.svg │ │ ├── bookmark-3-fill.svg │ │ ├── bookmark-3-line.svg │ │ ├── bookmark-fill.svg │ │ ├── bookmark-line.svg │ │ ├── briefcase-2-fill.svg │ │ ├── briefcase-2-line.svg │ │ ├── briefcase-3-fill.svg │ │ ├── briefcase-3-line.svg │ │ ├── briefcase-4-fill.svg │ │ ├── briefcase-4-line.svg │ │ ├── briefcase-5-fill.svg │ │ ├── briefcase-5-line.svg │ │ ├── briefcase-fill.svg │ │ ├── briefcase-line.svg │ │ ├── bubble-chart-fill.svg │ │ ├── bubble-chart-line.svg │ │ ├── calculator-fill.svg │ │ ├── calculator-line.svg │ │ ├── calendar-2-fill.svg │ │ ├── calendar-2-line.svg │ │ ├── calendar-check-fill.svg │ │ ├── calendar-check-line.svg │ │ ├── calendar-event-fill.svg │ │ ├── calendar-event-line.svg │ │ ├── calendar-fill.svg │ │ ├── calendar-line.svg │ │ ├── calendar-todo-fill.svg │ │ ├── calendar-todo-line.svg │ │ ├── cloud-fill.svg │ │ ├── cloud-line.svg │ │ ├── cloud-off-fill.svg │ │ ├── cloud-off-line.svg │ │ ├── copyleft-fill.svg │ │ ├── copyleft-line.svg │ │ ├── copyright-fill.svg │ │ ├── copyright-line.svg │ │ ├── creative-commons-by-fill.svg │ │ ├── creative-commons-by-line.svg │ │ ├── creative-commons-fill.svg │ │ ├── creative-commons-line.svg │ │ ├── creative-commons-nc-fill.svg │ │ ├── creative-commons-nc-line.svg │ │ ├── creative-commons-nd-fill.svg │ │ ├── creative-commons-nd-line.svg │ │ ├── creative-commons-sa-fill.svg │ │ ├── creative-commons-sa-line.svg │ │ ├── creative-commons-zero-fill.svg │ │ ├── creative-commons-zero-line.svg │ │ ├── customer-service-2-fill.svg │ │ ├── customer-service-2-line.svg │ │ ├── customer-service-fill.svg │ │ ├── customer-service-line.svg │ │ ├── donut-chart-fill.svg │ │ ├── donut-chart-line.svg │ │ ├── flag-2-fill.svg │ │ ├── flag-2-line.svg │ │ ├── flag-fill.svg │ │ ├── flag-line.svg │ │ ├── global-fill.svg │ │ ├── global-line.svg │ │ ├── honour-fill.svg │ │ ├── honour-line.svg │ │ ├── inbox-archive-fill.svg │ │ ├── inbox-archive-line.svg │ │ ├── inbox-fill.svg │ │ ├── inbox-line.svg │ │ ├── inbox-unarchive-fill.svg │ │ ├── inbox-unarchive-line.svg │ │ ├── line-chart-fill.svg │ │ ├── line-chart-line.svg │ │ ├── links-fill.svg │ │ ├── links-line.svg │ │ ├── mail-add-fill.svg │ │ ├── mail-add-line.svg │ │ ├── mail-check-fill.svg │ │ ├── mail-check-line.svg │ │ ├── mail-close-fill.svg │ │ ├── mail-close-line.svg │ │ ├── mail-download-fill.svg │ │ ├── mail-download-line.svg │ │ ├── mail-fill.svg │ │ ├── mail-forbid-fill.svg │ │ ├── mail-forbid-line.svg │ │ ├── mail-line.svg │ │ ├── mail-lock-fill.svg │ │ ├── mail-lock-line.svg │ │ ├── mail-open-fill.svg │ │ ├── mail-open-line.svg │ │ ├── mail-send-fill.svg │ │ ├── mail-send-line.svg │ │ ├── mail-settings-fill.svg │ │ ├── mail-settings-line.svg │ │ ├── mail-star-fill.svg │ │ ├── mail-star-line.svg │ │ ├── mail-unread-fill.svg │ │ ├── mail-unread-line.svg │ │ ├── mail-volume-fill.svg │ │ ├── mail-volume-line.svg │ │ ├── medal-2-fill.svg │ │ ├── medal-2-line.svg │ │ ├── medal-fill.svg │ │ ├── medal-line.svg │ │ ├── pie-chart-2-fill.svg │ │ ├── pie-chart-2-line.svg │ │ ├── pie-chart-box-fill.svg │ │ ├── pie-chart-box-line.svg │ │ ├── pie-chart-fill.svg │ │ ├── pie-chart-line.svg │ │ ├── printer-cloud-fill.svg │ │ ├── printer-cloud-line.svg │ │ ├── printer-fill.svg │ │ ├── printer-line.svg │ │ ├── profile-fill.svg │ │ ├── profile-line.svg │ │ ├── projector-2-fill.svg │ │ ├── projector-2-line.svg │ │ ├── projector-fill.svg │ │ ├── projector-line.svg │ │ ├── record-mail-fill.svg │ │ ├── record-mail-line.svg │ │ ├── registered-fill.svg │ │ ├── registered-line.svg │ │ ├── reply-all-fill.svg │ │ ├── reply-all-line.svg │ │ ├── reply-fill.svg │ │ ├── reply-line.svg │ │ ├── send-plane-2-fill.svg │ │ ├── send-plane-2-line.svg │ │ ├── send-plane-fill.svg │ │ ├── send-plane-line.svg │ │ ├── service-fill.svg │ │ ├── service-line.svg │ │ ├── slideshow-2-fill.svg │ │ ├── slideshow-2-line.svg │ │ ├── slideshow-3-fill.svg │ │ ├── slideshow-3-line.svg │ │ ├── slideshow-4-fill.svg │ │ ├── slideshow-4-line.svg │ │ ├── slideshow-fill.svg │ │ ├── slideshow-line.svg │ │ ├── stack-fill.svg │ │ ├── stack-line.svg │ │ ├── trademark-fill.svg │ │ ├── trademark-line.svg │ │ ├── window-2-fill.svg │ │ ├── window-2-line.svg │ │ ├── window-fill.svg │ │ └── window-line.svg │ │ ├── Communication │ │ ├── chat-1-fill.svg │ │ ├── chat-1-line.svg │ │ ├── chat-2-fill.svg │ │ ├── chat-2-line.svg │ │ ├── chat-3-fill.svg │ │ ├── chat-3-line.svg │ │ ├── chat-4-fill.svg │ │ ├── chat-4-line.svg │ │ ├── chat-check-fill.svg │ │ ├── chat-check-line.svg │ │ ├── chat-delete-fill.svg │ │ ├── chat-delete-line.svg │ │ ├── chat-download-fill.svg │ │ ├── chat-download-line.svg │ │ ├── chat-follow-up-fill.svg │ │ ├── chat-follow-up-line.svg │ │ ├── chat-forward-fill.svg │ │ ├── chat-forward-line.svg │ │ ├── chat-heart-fill.svg │ │ ├── chat-heart-line.svg │ │ ├── chat-history-fill.svg │ │ ├── chat-history-line.svg │ │ ├── chat-new-fill.svg │ │ ├── chat-new-line.svg │ │ ├── chat-off-fill.svg │ │ ├── chat-off-line.svg │ │ ├── chat-poll-fill.svg │ │ ├── chat-poll-line.svg │ │ ├── chat-private-fill.svg │ │ ├── chat-private-line.svg │ │ ├── chat-quote-fill.svg │ │ ├── chat-quote-line.svg │ │ ├── chat-settings-fill.svg │ │ ├── chat-settings-line.svg │ │ ├── chat-smile-2-fill.svg │ │ ├── chat-smile-2-line.svg │ │ ├── chat-smile-3-fill.svg │ │ ├── chat-smile-3-line.svg │ │ ├── chat-smile-fill.svg │ │ ├── chat-smile-line.svg │ │ ├── chat-upload-fill.svg │ │ ├── chat-upload-line.svg │ │ ├── chat-voice-fill.svg │ │ ├── chat-voice-line.svg │ │ ├── discuss-fill.svg │ │ ├── discuss-line.svg │ │ ├── feedback-fill.svg │ │ ├── feedback-line.svg │ │ ├── message-2-fill.svg │ │ ├── message-2-line.svg │ │ ├── message-3-fill.svg │ │ ├── message-3-line.svg │ │ ├── message-fill.svg │ │ ├── message-line.svg │ │ ├── question-answer-fill.svg │ │ ├── question-answer-line.svg │ │ ├── questionnaire-fill.svg │ │ ├── questionnaire-line.svg │ │ ├── video-chat-fill.svg │ │ └── video-chat-line.svg │ │ ├── Design │ │ ├── anticlockwise-2-fill.svg │ │ ├── anticlockwise-2-line.svg │ │ ├── anticlockwise-fill.svg │ │ ├── anticlockwise-line.svg │ │ ├── artboard-2-fill.svg │ │ ├── artboard-2-line.svg │ │ ├── artboard-fill.svg │ │ ├── artboard-line.svg │ │ ├── ball-pen-fill.svg │ │ ├── ball-pen-line.svg │ │ ├── blur-off-fill.svg │ │ ├── blur-off-line.svg │ │ ├── brush-2-fill.svg │ │ ├── brush-2-line.svg │ │ ├── brush-3-fill.svg │ │ ├── brush-3-line.svg │ │ ├── brush-4-fill.svg │ │ ├── brush-4-line.svg │ │ ├── brush-fill.svg │ │ ├── brush-line.svg │ │ ├── clockwise-2-fill.svg │ │ ├── clockwise-2-line.svg │ │ ├── clockwise-fill.svg │ │ ├── clockwise-line.svg │ │ ├── collage-fill.svg │ │ ├── collage-line.svg │ │ ├── compasses-2-fill.svg │ │ ├── compasses-2-line.svg │ │ ├── compasses-fill.svg │ │ ├── compasses-line.svg │ │ ├── contrast-2-fill.svg │ │ ├── contrast-2-line.svg │ │ ├── contrast-drop-2-fill.svg │ │ ├── contrast-drop-2-line.svg │ │ ├── contrast-drop-fill.svg │ │ ├── contrast-drop-line.svg │ │ ├── contrast-fill.svg │ │ ├── contrast-line.svg │ │ ├── crop-2-fill.svg │ │ ├── crop-2-line.svg │ │ ├── crop-fill.svg │ │ ├── crop-line.svg │ │ ├── drag-drop-fill.svg │ │ ├── drag-drop-line.svg │ │ ├── drag-move-2-fill.svg │ │ ├── drag-move-2-line.svg │ │ ├── drag-move-fill.svg │ │ ├── drag-move-line.svg │ │ ├── drop-fill.svg │ │ ├── drop-line.svg │ │ ├── edit-2-fill.svg │ │ ├── edit-2-line.svg │ │ ├── edit-box-fill.svg │ │ ├── edit-box-line.svg │ │ ├── edit-circle-fill.svg │ │ ├── edit-circle-line.svg │ │ ├── edit-fill.svg │ │ ├── edit-line.svg │ │ ├── eraser-fill.svg │ │ ├── eraser-line.svg │ │ ├── focus-2-fill.svg │ │ ├── focus-2-line.svg │ │ ├── focus-3-fill.svg │ │ ├── focus-3-line.svg │ │ ├── focus-fill.svg │ │ ├── focus-line.svg │ │ ├── grid-fill.svg │ │ ├── grid-line.svg │ │ ├── hammer-fill.svg │ │ ├── hammer-line.svg │ │ ├── ink-bottle-fill.svg │ │ ├── ink-bottle-line.svg │ │ ├── input-method-fill.svg │ │ ├── input-method-line.svg │ │ ├── layout-2-fill.svg │ │ ├── layout-2-line.svg │ │ ├── layout-3-fill.svg │ │ ├── layout-3-line.svg │ │ ├── layout-4-fill.svg │ │ ├── layout-4-line.svg │ │ ├── layout-5-fill.svg │ │ ├── layout-5-line.svg │ │ ├── layout-6-fill.svg │ │ ├── layout-6-line.svg │ │ ├── layout-bottom-2-fill.svg │ │ ├── layout-bottom-2-line.svg │ │ ├── layout-bottom-fill.svg │ │ ├── layout-bottom-line.svg │ │ ├── layout-column-fill.svg │ │ ├── layout-column-line.svg │ │ ├── layout-fill.svg │ │ ├── layout-grid-fill.svg │ │ ├── layout-grid-line.svg │ │ ├── layout-left-2-fill.svg │ │ ├── layout-left-2-line.svg │ │ ├── layout-left-fill.svg │ │ ├── layout-left-line.svg │ │ ├── layout-line.svg │ │ ├── layout-masonry-fill.svg │ │ ├── layout-masonry-line.svg │ │ ├── layout-right-2-fill.svg │ │ ├── layout-right-2-line.svg │ │ ├── layout-right-fill.svg │ │ ├── layout-right-line.svg │ │ ├── layout-row-fill.svg │ │ ├── layout-row-line.svg │ │ ├── layout-top-2-fill.svg │ │ ├── layout-top-2-line.svg │ │ ├── layout-top-fill.svg │ │ ├── layout-top-line.svg │ │ ├── magic-fill.svg │ │ ├── magic-line.svg │ │ ├── mark-pen-fill.svg │ │ ├── mark-pen-line.svg │ │ ├── markup-fill.svg │ │ ├── markup-line.svg │ │ ├── paint-brush-fill.svg │ │ ├── paint-brush-line.svg │ │ ├── paint-fill.svg │ │ ├── paint-line.svg │ │ ├── palette-fill.svg │ │ ├── palette-line.svg │ │ ├── pantone-fill.svg │ │ ├── pantone-line.svg │ │ ├── pen-nib-fill.svg │ │ ├── pen-nib-line.svg │ │ ├── pencil-fill.svg │ │ ├── pencil-line.svg │ │ ├── pencil-ruler-2-fill.svg │ │ ├── pencil-ruler-2-line.svg │ │ ├── pencil-ruler-fill.svg │ │ ├── pencil-ruler-line.svg │ │ ├── quill-pen-fill.svg │ │ ├── quill-pen-line.svg │ │ ├── ruler-2-fill.svg │ │ ├── ruler-2-line.svg │ │ ├── ruler-fill.svg │ │ ├── ruler-line.svg │ │ ├── scissors-2-fill.svg │ │ ├── scissors-2-line.svg │ │ ├── scissors-cut-fill.svg │ │ ├── scissors-cut-line.svg │ │ ├── scissors-fill.svg │ │ ├── scissors-line.svg │ │ ├── screenshot-2-fill.svg │ │ ├── screenshot-2-line.svg │ │ ├── screenshot-fill.svg │ │ ├── screenshot-line.svg │ │ ├── shape-2-fill.svg │ │ ├── shape-2-line.svg │ │ ├── shape-fill.svg │ │ ├── shape-line.svg │ │ ├── sip-fill.svg │ │ ├── sip-line.svg │ │ ├── slice-fill.svg │ │ ├── slice-line.svg │ │ ├── t-box-fill.svg │ │ ├── t-box-line.svg │ │ ├── table-alt-fill.svg │ │ ├── table-alt-line.svg │ │ ├── table-fill.svg │ │ ├── table-line.svg │ │ ├── tools-fill.svg │ │ └── tools-line.svg │ │ ├── Development │ │ ├── braces-fill.svg │ │ ├── braces-line.svg │ │ ├── brackets-fill.svg │ │ ├── brackets-line.svg │ │ ├── bug-2-fill.svg │ │ ├── bug-2-line.svg │ │ ├── bug-fill.svg │ │ ├── bug-line.svg │ │ ├── code-box-fill.svg │ │ ├── code-box-line.svg │ │ ├── code-fill.svg │ │ ├── code-line.svg │ │ ├── code-s-fill.svg │ │ ├── code-s-line.svg │ │ ├── code-s-slash-fill.svg │ │ ├── code-s-slash-line.svg │ │ ├── command-fill.svg │ │ ├── command-line.svg │ │ ├── css3-fill.svg │ │ ├── css3-line.svg │ │ ├── cursor-fill.svg │ │ ├── cursor-line.svg │ │ ├── git-branch-fill.svg │ │ ├── git-branch-line.svg │ │ ├── git-commit-fill.svg │ │ ├── git-commit-line.svg │ │ ├── git-merge-fill.svg │ │ ├── git-merge-line.svg │ │ ├── git-pull-request-fill.svg │ │ ├── git-pull-request-line.svg │ │ ├── git-repository-commits-fill.svg │ │ ├── git-repository-commits-line.svg │ │ ├── git-repository-fill.svg │ │ ├── git-repository-line.svg │ │ ├── git-repository-private-fill.svg │ │ ├── git-repository-private-line.svg │ │ ├── html5-fill.svg │ │ ├── html5-line.svg │ │ ├── parentheses-fill.svg │ │ ├── parentheses-line.svg │ │ ├── terminal-box-fill.svg │ │ ├── terminal-box-line.svg │ │ ├── terminal-fill.svg │ │ ├── terminal-line.svg │ │ ├── terminal-window-fill.svg │ │ └── terminal-window-line.svg │ │ ├── Device │ │ ├── airplay-fill.svg │ │ ├── airplay-line.svg │ │ ├── barcode-box-fill.svg │ │ ├── barcode-box-line.svg │ │ ├── barcode-fill.svg │ │ ├── barcode-line.svg │ │ ├── base-station-fill.svg │ │ ├── base-station-line.svg │ │ ├── battery-2-charge-fill.svg │ │ ├── battery-2-charge-line.svg │ │ ├── battery-2-fill.svg │ │ ├── battery-2-line.svg │ │ ├── battery-charge-fill.svg │ │ ├── battery-charge-line.svg │ │ ├── battery-fill.svg │ │ ├── battery-line.svg │ │ ├── battery-low-fill.svg │ │ ├── battery-low-line.svg │ │ ├── battery-saver-fill.svg │ │ ├── battery-saver-line.svg │ │ ├── battery-share-fill.svg │ │ ├── battery-share-line.svg │ │ ├── bluetooth-connect-fill.svg │ │ ├── bluetooth-connect-line.svg │ │ ├── bluetooth-fill.svg │ │ ├── bluetooth-line.svg │ │ ├── cast-fill.svg │ │ ├── cast-line.svg │ │ ├── cellphone-fill.svg │ │ ├── cellphone-line.svg │ │ ├── computer-fill.svg │ │ ├── computer-line.svg │ │ ├── cpu-fill.svg │ │ ├── cpu-line.svg │ │ ├── dashboard-2-fill.svg │ │ ├── dashboard-2-line.svg │ │ ├── dashboard-3-fill.svg │ │ ├── dashboard-3-line.svg │ │ ├── database-2-fill.svg │ │ ├── database-2-line.svg │ │ ├── database-fill.svg │ │ ├── database-line.svg │ │ ├── device-fill.svg │ │ ├── device-line.svg │ │ ├── device-recover-fill.svg │ │ ├── device-recover-line.svg │ │ ├── dual-sim-1-fill.svg │ │ ├── dual-sim-1-line.svg │ │ ├── dual-sim-2-fill.svg │ │ ├── dual-sim-2-line.svg │ │ ├── fingerprint-2-fill.svg │ │ ├── fingerprint-2-line.svg │ │ ├── fingerprint-fill.svg │ │ ├── fingerprint-line.svg │ │ ├── gamepad-fill.svg │ │ ├── gamepad-line.svg │ │ ├── gps-fill.svg │ │ ├── gps-line.svg │ │ ├── gradienter-fill.svg │ │ ├── gradienter-line.svg │ │ ├── hard-drive-2-fill.svg │ │ ├── hard-drive-2-line.svg │ │ ├── hard-drive-fill.svg │ │ ├── hard-drive-line.svg │ │ ├── hotspot-fill.svg │ │ ├── hotspot-line.svg │ │ ├── install-fill.svg │ │ ├── install-line.svg │ │ ├── keyboard-box-fill.svg │ │ ├── keyboard-box-line.svg │ │ ├── keyboard-fill.svg │ │ ├── keyboard-line.svg │ │ ├── mac-fill.svg │ │ ├── mac-line.svg │ │ ├── macbook-fill.svg │ │ ├── macbook-line.svg │ │ ├── mouse-fill.svg │ │ ├── mouse-line.svg │ │ ├── phone-fill.svg │ │ ├── phone-find-fill.svg │ │ ├── phone-find-line.svg │ │ ├── phone-line.svg │ │ ├── phone-lock-fill.svg │ │ ├── phone-lock-line.svg │ │ ├── qr-code-fill.svg │ │ ├── qr-code-line.svg │ │ ├── qr-scan-2-fill.svg │ │ ├── qr-scan-2-line.svg │ │ ├── qr-scan-fill.svg │ │ ├── qr-scan-line.svg │ │ ├── radar-fill.svg │ │ ├── radar-line.svg │ │ ├── remote-control-2-fill.svg │ │ ├── remote-control-2-line.svg │ │ ├── remote-control-fill.svg │ │ ├── remote-control-line.svg │ │ ├── restart-fill.svg │ │ ├── restart-line.svg │ │ ├── rotate-lock-fill.svg │ │ ├── rotate-lock-line.svg │ │ ├── router-fill.svg │ │ ├── router-line.svg │ │ ├── rss-fill.svg │ │ ├── rss-line.svg │ │ ├── save-2-fill.svg │ │ ├── save-2-line.svg │ │ ├── save-3-fill.svg │ │ ├── save-3-line.svg │ │ ├── save-fill.svg │ │ ├── save-line.svg │ │ ├── scan-2-fill.svg │ │ ├── scan-2-line.svg │ │ ├── scan-fill.svg │ │ ├── scan-line.svg │ │ ├── sd-card-fill.svg │ │ ├── sd-card-line.svg │ │ ├── sd-card-mini-fill.svg │ │ ├── sd-card-mini-line.svg │ │ ├── sensor-fill.svg │ │ ├── sensor-line.svg │ │ ├── server-fill.svg │ │ ├── server-line.svg │ │ ├── shut-down-fill.svg │ │ ├── shut-down-line.svg │ │ ├── signal-wifi-1-fill.svg │ │ ├── signal-wifi-1-line.svg │ │ ├── signal-wifi-2-fill.svg │ │ ├── signal-wifi-2-line.svg │ │ ├── signal-wifi-3-fill.svg │ │ ├── signal-wifi-3-line.svg │ │ ├── signal-wifi-error-fill.svg │ │ ├── signal-wifi-error-line.svg │ │ ├── signal-wifi-fill.svg │ │ ├── signal-wifi-line.svg │ │ ├── signal-wifi-off-fill.svg │ │ ├── signal-wifi-off-line.svg │ │ ├── sim-card-2-fill.svg │ │ ├── sim-card-2-line.svg │ │ ├── sim-card-fill.svg │ │ ├── sim-card-line.svg │ │ ├── smartphone-fill.svg │ │ ├── smartphone-line.svg │ │ ├── tablet-fill.svg │ │ ├── tablet-line.svg │ │ ├── tv-2-fill.svg │ │ ├── tv-2-line.svg │ │ ├── tv-fill.svg │ │ ├── tv-line.svg │ │ ├── u-disk-fill.svg │ │ ├── u-disk-line.svg │ │ ├── uninstall-fill.svg │ │ ├── uninstall-line.svg │ │ ├── usb-fill.svg │ │ ├── usb-line.svg │ │ ├── wifi-fill.svg │ │ ├── wifi-line.svg │ │ ├── wifi-off-fill.svg │ │ ├── wifi-off-line.svg │ │ ├── wireless-charging-fill.svg │ │ └── wireless-charging-line.svg │ │ ├── Document │ │ ├── article-fill.svg │ │ ├── article-line.svg │ │ ├── bill-fill.svg │ │ ├── bill-line.svg │ │ ├── book-2-fill.svg │ │ ├── book-2-line.svg │ │ ├── book-3-fill.svg │ │ ├── book-3-line.svg │ │ ├── book-fill.svg │ │ ├── book-line.svg │ │ ├── book-mark-fill.svg │ │ ├── book-mark-line.svg │ │ ├── book-open-fill.svg │ │ ├── book-open-line.svg │ │ ├── book-read-fill.svg │ │ ├── book-read-line.svg │ │ ├── booklet-fill.svg │ │ ├── booklet-line.svg │ │ ├── clipboard-fill.svg │ │ ├── clipboard-line.svg │ │ ├── contacts-book-2-fill.svg │ │ ├── contacts-book-2-line.svg │ │ ├── contacts-book-fill.svg │ │ ├── contacts-book-line.svg │ │ ├── contacts-book-upload-fill.svg │ │ ├── contacts-book-upload-line.svg │ │ ├── draft-fill.svg │ │ ├── draft-line.svg │ │ ├── file-2-fill.svg │ │ ├── file-2-line.svg │ │ ├── file-3-fill.svg │ │ ├── file-3-line.svg │ │ ├── file-4-fill.svg │ │ ├── file-4-line.svg │ │ ├── file-add-fill.svg │ │ ├── file-add-line.svg │ │ ├── file-chart-2-fill.svg │ │ ├── file-chart-2-line.svg │ │ ├── file-chart-fill.svg │ │ ├── file-chart-line.svg │ │ ├── file-cloud-fill.svg │ │ ├── file-cloud-line.svg │ │ ├── file-code-fill.svg │ │ ├── file-code-line.svg │ │ ├── file-copy-2-fill.svg │ │ ├── file-copy-2-line.svg │ │ ├── file-copy-fill.svg │ │ ├── file-copy-line.svg │ │ ├── file-damage-fill.svg │ │ ├── file-damage-line.svg │ │ ├── file-download-fill.svg │ │ ├── file-download-line.svg │ │ ├── file-edit-fill.svg │ │ ├── file-edit-line.svg │ │ ├── file-excel-2-fill.svg │ │ ├── file-excel-2-line.svg │ │ ├── file-excel-fill.svg │ │ ├── file-excel-line.svg │ │ ├── file-fill.svg │ │ ├── file-forbid-fill.svg │ │ ├── file-forbid-line.svg │ │ ├── file-gif-fill.svg │ │ ├── file-gif-line.svg │ │ ├── file-history-fill.svg │ │ ├── file-history-line.svg │ │ ├── file-hwp-fill.svg │ │ ├── file-hwp-line.svg │ │ ├── file-info-fill.svg │ │ ├── file-info-line.svg │ │ ├── file-line.svg │ │ ├── file-list-2-fill.svg │ │ ├── file-list-2-line.svg │ │ ├── file-list-3-fill.svg │ │ ├── file-list-3-line.svg │ │ ├── file-list-fill.svg │ │ ├── file-list-line.svg │ │ ├── file-lock-fill.svg │ │ ├── file-lock-line.svg │ │ ├── file-mark-fill.svg │ │ ├── file-mark-line.svg │ │ ├── file-music-fill.svg │ │ ├── file-music-line.svg │ │ ├── file-paper-2-fill.svg │ │ ├── file-paper-2-line.svg │ │ ├── file-paper-fill.svg │ │ ├── file-paper-line.svg │ │ ├── file-pdf-fill.svg │ │ ├── file-pdf-line.svg │ │ ├── file-ppt-2-fill.svg │ │ ├── file-ppt-2-line.svg │ │ ├── file-ppt-fill.svg │ │ ├── file-ppt-line.svg │ │ ├── file-reduce-fill.svg │ │ ├── file-reduce-line.svg │ │ ├── file-search-fill.svg │ │ ├── file-search-line.svg │ │ ├── file-settings-fill.svg │ │ ├── file-settings-line.svg │ │ ├── file-shield-2-fill.svg │ │ ├── file-shield-2-line.svg │ │ ├── file-shield-fill.svg │ │ ├── file-shield-line.svg │ │ ├── file-shred-fill.svg │ │ ├── file-shred-line.svg │ │ ├── file-text-fill.svg │ │ ├── file-text-line.svg │ │ ├── file-transfer-fill.svg │ │ ├── file-transfer-line.svg │ │ ├── file-unknow-fill.svg │ │ ├── file-unknow-line.svg │ │ ├── file-upload-fill.svg │ │ ├── file-upload-line.svg │ │ ├── file-user-fill.svg │ │ ├── file-user-line.svg │ │ ├── file-warning-fill.svg │ │ ├── file-warning-line.svg │ │ ├── file-word-2-fill.svg │ │ ├── file-word-2-line.svg │ │ ├── file-word-fill.svg │ │ ├── file-word-line.svg │ │ ├── file-zip-fill.svg │ │ ├── file-zip-line.svg │ │ ├── folder-2-fill.svg │ │ ├── folder-2-line.svg │ │ ├── folder-3-fill.svg │ │ ├── folder-3-line.svg │ │ ├── folder-4-fill.svg │ │ ├── folder-4-line.svg │ │ ├── folder-5-fill.svg │ │ ├── folder-5-line.svg │ │ ├── folder-add-fill.svg │ │ ├── folder-add-line.svg │ │ ├── folder-chart-2-fill.svg │ │ ├── folder-chart-2-line.svg │ │ ├── folder-chart-fill.svg │ │ ├── folder-chart-line.svg │ │ ├── folder-download-fill.svg │ │ ├── folder-download-line.svg │ │ ├── folder-fill.svg │ │ ├── folder-forbid-fill.svg │ │ ├── folder-forbid-line.svg │ │ ├── folder-history-fill.svg │ │ ├── folder-history-line.svg │ │ ├── folder-info-fill.svg │ │ ├── folder-info-line.svg │ │ ├── folder-keyhole-fill.svg │ │ ├── folder-keyhole-line.svg │ │ ├── folder-line.svg │ │ ├── folder-lock-fill.svg │ │ ├── folder-lock-line.svg │ │ ├── folder-music-fill.svg │ │ ├── folder-music-line.svg │ │ ├── folder-open-fill.svg │ │ ├── folder-open-line.svg │ │ ├── folder-received-fill.svg │ │ ├── folder-received-line.svg │ │ ├── folder-reduce-fill.svg │ │ ├── folder-reduce-line.svg │ │ ├── folder-settings-fill.svg │ │ ├── folder-settings-line.svg │ │ ├── folder-shared-fill.svg │ │ ├── folder-shared-line.svg │ │ ├── folder-shield-2-fill.svg │ │ ├── folder-shield-2-line.svg │ │ ├── folder-shield-fill.svg │ │ ├── folder-shield-line.svg │ │ ├── folder-transfer-fill.svg │ │ ├── folder-transfer-line.svg │ │ ├── folder-unknow-fill.svg │ │ ├── folder-unknow-line.svg │ │ ├── folder-upload-fill.svg │ │ ├── folder-upload-line.svg │ │ ├── folder-user-fill.svg │ │ ├── folder-user-line.svg │ │ ├── folder-warning-fill.svg │ │ ├── folder-warning-line.svg │ │ ├── folder-zip-fill.svg │ │ ├── folder-zip-line.svg │ │ ├── folders-fill.svg │ │ ├── folders-line.svg │ │ ├── keynote-fill.svg │ │ ├── keynote-line.svg │ │ ├── markdown-fill.svg │ │ ├── markdown-line.svg │ │ ├── newspaper-fill.svg │ │ ├── newspaper-line.svg │ │ ├── numbers-fill.svg │ │ ├── numbers-line.svg │ │ ├── pages-fill.svg │ │ ├── pages-line.svg │ │ ├── sticky-note-2-fill.svg │ │ ├── sticky-note-2-line.svg │ │ ├── sticky-note-fill.svg │ │ ├── sticky-note-line.svg │ │ ├── survey-fill.svg │ │ ├── survey-line.svg │ │ ├── task-fill.svg │ │ ├── task-line.svg │ │ ├── todo-fill.svg │ │ └── todo-line.svg │ │ ├── Editor │ │ ├── a-b.svg │ │ ├── align-bottom.svg │ │ ├── align-center.svg │ │ ├── align-justify.svg │ │ ├── align-left.svg │ │ ├── align-right.svg │ │ ├── align-top.svg │ │ ├── align-vertically.svg │ │ ├── asterisk.svg │ │ ├── attachment-2.svg │ │ ├── bold.svg │ │ ├── bring-forward.svg │ │ ├── bring-to-front.svg │ │ ├── code-view.svg │ │ ├── delete-column.svg │ │ ├── delete-row.svg │ │ ├── double-quotes-l.svg │ │ ├── double-quotes-r.svg │ │ ├── emphasis-cn.svg │ │ ├── emphasis.svg │ │ ├── english-input.svg │ │ ├── flow-chart.svg │ │ ├── font-color.svg │ │ ├── font-size-2.svg │ │ ├── font-size.svg │ │ ├── format-clear.svg │ │ ├── functions.svg │ │ ├── h-1.svg │ │ ├── h-2.svg │ │ ├── h-3.svg │ │ ├── h-4.svg │ │ ├── h-5.svg │ │ ├── h-6.svg │ │ ├── hashtag.svg │ │ ├── heading.svg │ │ ├── indent-decrease.svg │ │ ├── indent-increase.svg │ │ ├── input-cursor-move.svg │ │ ├── insert-column-left.svg │ │ ├── insert-column-right.svg │ │ ├── insert-row-bottom.svg │ │ ├── insert-row-top.svg │ │ ├── italic.svg │ │ ├── line-height.svg │ │ ├── link-m.svg │ │ ├── link-unlink-m.svg │ │ ├── link-unlink.svg │ │ ├── link.svg │ │ ├── list-check-2.svg │ │ ├── list-check.svg │ │ ├── list-ordered.svg │ │ ├── list-unordered.svg │ │ ├── merge-cells-horizontal.svg │ │ ├── merge-cells-vertical.svg │ │ ├── mind-map.svg │ │ ├── node-tree.svg │ │ ├── number-0.svg │ │ ├── number-1.svg │ │ ├── number-2.svg │ │ ├── number-3.svg │ │ ├── number-4.svg │ │ ├── number-5.svg │ │ ├── number-6.svg │ │ ├── number-7.svg │ │ ├── number-8.svg │ │ ├── number-9.svg │ │ ├── omega.svg │ │ ├── organization-chart.svg │ │ ├── page-separator.svg │ │ ├── paragraph.svg │ │ ├── pinyin-input.svg │ │ ├── question-mark.svg │ │ ├── rounded-corner.svg │ │ ├── send-backward.svg │ │ ├── send-to-back.svg │ │ ├── separator.svg │ │ ├── single-quotes-l.svg │ │ ├── single-quotes-r.svg │ │ ├── sort-asc.svg │ │ ├── sort-desc.svg │ │ ├── space.svg │ │ ├── split-cells-horizontal.svg │ │ ├── split-cells-vertical.svg │ │ ├── strikethrough-2.svg │ │ ├── strikethrough.svg │ │ ├── subscript-2.svg │ │ ├── subscript.svg │ │ ├── superscript-2.svg │ │ ├── superscript.svg │ │ ├── table-2.svg │ │ ├── text-direction-l.svg │ │ ├── text-direction-r.svg │ │ ├── text-spacing.svg │ │ ├── text-wrap.svg │ │ ├── text.svg │ │ ├── translate-2.svg │ │ ├── translate.svg │ │ ├── underline.svg │ │ └── wubi-input.svg │ │ ├── Finance │ │ ├── 24-hours-fill.svg │ │ ├── 24-hours-line.svg │ │ ├── auction-fill.svg │ │ ├── auction-line.svg │ │ ├── bank-card-2-fill.svg │ │ ├── bank-card-2-line.svg │ │ ├── bank-card-fill.svg │ │ ├── bank-card-line.svg │ │ ├── bit-coin-fill.svg │ │ ├── bit-coin-line.svg │ │ ├── coin-fill.svg │ │ ├── coin-line.svg │ │ ├── coins-fill.svg │ │ ├── coins-line.svg │ │ ├── copper-coin-fill.svg │ │ ├── copper-coin-line.svg │ │ ├── copper-diamond-fill.svg │ │ ├── copper-diamond-line.svg │ │ ├── coupon-2-fill.svg │ │ ├── coupon-2-line.svg │ │ ├── coupon-3-fill.svg │ │ ├── coupon-3-line.svg │ │ ├── coupon-4-fill.svg │ │ ├── coupon-4-line.svg │ │ ├── coupon-5-fill.svg │ │ ├── coupon-5-line.svg │ │ ├── coupon-fill.svg │ │ ├── coupon-line.svg │ │ ├── currency-fill.svg │ │ ├── currency-line.svg │ │ ├── exchange-box-fill.svg │ │ ├── exchange-box-line.svg │ │ ├── exchange-cny-fill.svg │ │ ├── exchange-cny-line.svg │ │ ├── exchange-dollar-fill.svg │ │ ├── exchange-dollar-line.svg │ │ ├── exchange-fill.svg │ │ ├── exchange-funds-fill.svg │ │ ├── exchange-funds-line.svg │ │ ├── exchange-line.svg │ │ ├── funds-box-fill.svg │ │ ├── funds-box-line.svg │ │ ├── funds-fill.svg │ │ ├── funds-line.svg │ │ ├── gift-2-fill.svg │ │ ├── gift-2-line.svg │ │ ├── gift-fill.svg │ │ ├── gift-line.svg │ │ ├── hand-coin-fill.svg │ │ ├── hand-coin-line.svg │ │ ├── hand-heart-fill.svg │ │ ├── hand-heart-line.svg │ │ ├── increase-decrease-fill.svg │ │ ├── increase-decrease-line.svg │ │ ├── money-cny-box-fill.svg │ │ ├── money-cny-box-line.svg │ │ ├── money-cny-circle-fill.svg │ │ ├── money-cny-circle-line.svg │ │ ├── money-dollar-box-fill.svg │ │ ├── money-dollar-box-line.svg │ │ ├── money-dollar-circle-fill.svg │ │ ├── money-dollar-circle-line.svg │ │ ├── money-euro-box-fill.svg │ │ ├── money-euro-box-line.svg │ │ ├── money-euro-circle-fill.svg │ │ ├── money-euro-circle-line.svg │ │ ├── money-pound-box-fill.svg │ │ ├── money-pound-box-line.svg │ │ ├── money-pound-circle-fill.svg │ │ ├── money-pound-circle-line.svg │ │ ├── percent-fill.svg │ │ ├── percent-line.svg │ │ ├── price-tag-2-fill.svg │ │ ├── price-tag-2-line.svg │ │ ├── price-tag-3-fill.svg │ │ ├── price-tag-3-line.svg │ │ ├── price-tag-fill.svg │ │ ├── price-tag-line.svg │ │ ├── red-packet-fill.svg │ │ ├── red-packet-line.svg │ │ ├── refund-2-fill.svg │ │ ├── refund-2-line.svg │ │ ├── refund-fill.svg │ │ ├── refund-line.svg │ │ ├── safe-2-fill.svg │ │ ├── safe-2-line.svg │ │ ├── safe-fill.svg │ │ ├── safe-line.svg │ │ ├── secure-payment-fill.svg │ │ ├── secure-payment-line.svg │ │ ├── shopping-bag-2-fill.svg │ │ ├── shopping-bag-2-line.svg │ │ ├── shopping-bag-3-fill.svg │ │ ├── shopping-bag-3-line.svg │ │ ├── shopping-bag-fill.svg │ │ ├── shopping-bag-line.svg │ │ ├── shopping-basket-2-fill.svg │ │ ├── shopping-basket-2-line.svg │ │ ├── shopping-basket-fill.svg │ │ ├── shopping-basket-line.svg │ │ ├── shopping-cart-2-fill.svg │ │ ├── shopping-cart-2-line.svg │ │ ├── shopping-cart-fill.svg │ │ ├── shopping-cart-line.svg │ │ ├── stock-fill.svg │ │ ├── stock-line.svg │ │ ├── swap-box-fill.svg │ │ ├── swap-box-line.svg │ │ ├── swap-fill.svg │ │ ├── swap-line.svg │ │ ├── ticket-2-fill.svg │ │ ├── ticket-2-line.svg │ │ ├── ticket-fill.svg │ │ ├── ticket-line.svg │ │ ├── trophy-fill.svg │ │ ├── trophy-line.svg │ │ ├── vip-crown-2-fill.svg │ │ ├── vip-crown-2-line.svg │ │ ├── vip-crown-fill.svg │ │ ├── vip-crown-line.svg │ │ ├── vip-diamond-fill.svg │ │ ├── vip-diamond-line.svg │ │ ├── vip-fill.svg │ │ ├── vip-line.svg │ │ ├── wallet-2-fill.svg │ │ ├── wallet-2-line.svg │ │ ├── wallet-3-fill.svg │ │ ├── wallet-3-line.svg │ │ ├── wallet-fill.svg │ │ ├── wallet-line.svg │ │ ├── water-flash-fill.svg │ │ └── water-flash-line.svg │ │ ├── Health │ │ ├── capsule-fill.svg │ │ ├── capsule-line.svg │ │ ├── dislike-fill.svg │ │ ├── dislike-line.svg │ │ ├── dossier-fill.svg │ │ ├── dossier-line.svg │ │ ├── empathize-fill.svg │ │ ├── empathize-line.svg │ │ ├── first-aid-kit-fill.svg │ │ ├── first-aid-kit-line.svg │ │ ├── flask-fill.svg │ │ ├── flask-line.svg │ │ ├── hand-sanitizer-fill.svg │ │ ├── hand-sanitizer-line.svg │ │ ├── health-book-fill.svg │ │ ├── health-book-line.svg │ │ ├── heart-2-fill.svg │ │ ├── heart-2-line.svg │ │ ├── heart-3-fill.svg │ │ ├── heart-3-line.svg │ │ ├── heart-add-fill.svg │ │ ├── heart-add-line.svg │ │ ├── heart-fill.svg │ │ ├── heart-line.svg │ │ ├── heart-pulse-fill.svg │ │ ├── heart-pulse-line.svg │ │ ├── hearts-fill.svg │ │ ├── hearts-line.svg │ │ ├── infrared-thermometer-fill.svg │ │ ├── infrared-thermometer-line.svg │ │ ├── lungs-fill.svg │ │ ├── lungs-line.svg │ │ ├── medicine-bottle-fill.svg │ │ ├── medicine-bottle-line.svg │ │ ├── mental-health-fill.svg │ │ ├── mental-health-line.svg │ │ ├── microscope-fill.svg │ │ ├── microscope-line.svg │ │ ├── nurse-fill.svg │ │ ├── nurse-line.svg │ │ ├── psychotherapy-fill.svg │ │ ├── psychotherapy-line.svg │ │ ├── pulse-fill.svg │ │ ├── pulse-line.svg │ │ ├── rest-time-fill.svg │ │ ├── rest-time-line.svg │ │ ├── stethoscope-fill.svg │ │ ├── stethoscope-line.svg │ │ ├── surgical-mask-fill.svg │ │ ├── surgical-mask-line.svg │ │ ├── syringe-fill.svg │ │ ├── syringe-line.svg │ │ ├── test-tube-fill.svg │ │ ├── test-tube-line.svg │ │ ├── thermometer-fill.svg │ │ ├── thermometer-line.svg │ │ ├── virus-fill.svg │ │ ├── virus-line.svg │ │ ├── zzz-fill.svg │ │ └── zzz-line.svg │ │ ├── Logos │ │ ├── alipay-fill.svg │ │ ├── alipay-line.svg │ │ ├── amazon-fill.svg │ │ ├── amazon-line.svg │ │ ├── android-fill.svg │ │ ├── android-line.svg │ │ ├── angularjs-fill.svg │ │ ├── angularjs-line.svg │ │ ├── app-store-fill.svg │ │ ├── app-store-line.svg │ │ ├── apple-fill.svg │ │ ├── apple-line.svg │ │ ├── baidu-fill.svg │ │ ├── baidu-line.svg │ │ ├── behance-fill.svg │ │ ├── behance-line.svg │ │ ├── bilibili-fill.svg │ │ ├── bilibili-line.svg │ │ ├── centos-fill.svg │ │ ├── centos-line.svg │ │ ├── chrome-fill.svg │ │ ├── chrome-line.svg │ │ ├── codepen-fill.svg │ │ ├── codepen-line.svg │ │ ├── coreos-fill.svg │ │ ├── coreos-line.svg │ │ ├── dingding-fill.svg │ │ ├── dingding-line.svg │ │ ├── discord-fill.svg │ │ ├── discord-line.svg │ │ ├── disqus-fill.svg │ │ ├── disqus-line.svg │ │ ├── douban-fill.svg │ │ ├── douban-line.svg │ │ ├── dribbble-fill.svg │ │ ├── dribbble-line.svg │ │ ├── drive-fill.svg │ │ ├── drive-line.svg │ │ ├── dropbox-fill.svg │ │ ├── dropbox-line.svg │ │ ├── edge-fill.svg │ │ ├── edge-line.svg │ │ ├── evernote-fill.svg │ │ ├── evernote-line.svg │ │ ├── facebook-box-fill.svg │ │ ├── facebook-box-line.svg │ │ ├── facebook-circle-fill.svg │ │ ├── facebook-circle-line.svg │ │ ├── facebook-fill.svg │ │ ├── facebook-line.svg │ │ ├── finder-fill.svg │ │ ├── finder-line.svg │ │ ├── firefox-fill.svg │ │ ├── firefox-line.svg │ │ ├── flutter-fill.svg │ │ ├── flutter-line.svg │ │ ├── gatsby-fill.svg │ │ ├── gatsby-line.svg │ │ ├── github-fill.svg │ │ ├── github-line.svg │ │ ├── gitlab-fill.svg │ │ ├── gitlab-line.svg │ │ ├── google-fill.svg │ │ ├── google-line.svg │ │ ├── google-play-fill.svg │ │ ├── google-play-line.svg │ │ ├── honor-of-kings-fill.svg │ │ ├── honor-of-kings-line.svg │ │ ├── ie-fill.svg │ │ ├── ie-line.svg │ │ ├── instagram-fill.svg │ │ ├── instagram-line.svg │ │ ├── invision-fill.svg │ │ ├── invision-line.svg │ │ ├── kakao-talk-fill.svg │ │ ├── kakao-talk-line.svg │ │ ├── line-fill.svg │ │ ├── line-line.svg │ │ ├── linkedin-box-fill.svg │ │ ├── linkedin-box-line.svg │ │ ├── linkedin-fill.svg │ │ ├── linkedin-line.svg │ │ ├── mastercard-fill.svg │ │ ├── mastercard-line.svg │ │ ├── mastodon-fill.svg │ │ ├── mastodon-line.svg │ │ ├── medium-fill.svg │ │ ├── medium-line.svg │ │ ├── messenger-fill.svg │ │ ├── messenger-line.svg │ │ ├── microsoft-fill.svg │ │ ├── microsoft-line.svg │ │ ├── mini-program-fill.svg │ │ ├── mini-program-line.svg │ │ ├── netease-cloud-music-fill.svg │ │ ├── netease-cloud-music-line.svg │ │ ├── netflix-fill.svg │ │ ├── netflix-line.svg │ │ ├── npmjs-fill.svg │ │ ├── npmjs-line.svg │ │ ├── open-source-fill.svg │ │ ├── open-source-line.svg │ │ ├── opera-fill.svg │ │ ├── opera-line.svg │ │ ├── patreon-fill.svg │ │ ├── patreon-line.svg │ │ ├── paypal-fill.svg │ │ ├── paypal-line.svg │ │ ├── pinterest-fill.svg │ │ ├── pinterest-line.svg │ │ ├── pixelfed-fill.svg │ │ ├── pixelfed-line.svg │ │ ├── playstation-fill.svg │ │ ├── playstation-line.svg │ │ ├── product-hunt-fill.svg │ │ ├── product-hunt-line.svg │ │ ├── qq-fill.svg │ │ ├── qq-line.svg │ │ ├── reactjs-fill.svg │ │ ├── reactjs-line.svg │ │ ├── reddit-fill.svg │ │ ├── reddit-line.svg │ │ ├── remixicon-fill.svg │ │ ├── remixicon-line.svg │ │ ├── safari-fill.svg │ │ ├── safari-line.svg │ │ ├── skype-fill.svg │ │ ├── skype-line.svg │ │ ├── slack-fill.svg │ │ ├── slack-line.svg │ │ ├── snapchat-fill.svg │ │ ├── snapchat-line.svg │ │ ├── soundcloud-fill.svg │ │ ├── soundcloud-line.svg │ │ ├── spectrum-fill.svg │ │ ├── spectrum-line.svg │ │ ├── spotify-fill.svg │ │ ├── spotify-line.svg │ │ ├── stack-overflow-fill.svg │ │ ├── stack-overflow-line.svg │ │ ├── stackshare-fill.svg │ │ ├── stackshare-line.svg │ │ ├── steam-fill.svg │ │ ├── steam-line.svg │ │ ├── switch-fill.svg │ │ ├── switch-line.svg │ │ ├── taobao-fill.svg │ │ ├── taobao-line.svg │ │ ├── telegram-fill.svg │ │ ├── telegram-line.svg │ │ ├── trello-fill.svg │ │ ├── trello-line.svg │ │ ├── tumblr-fill.svg │ │ ├── tumblr-line.svg │ │ ├── twitch-fill.svg │ │ ├── twitch-line.svg │ │ ├── twitter-fill.svg │ │ ├── twitter-line.svg │ │ ├── ubuntu-fill.svg │ │ ├── ubuntu-line.svg │ │ ├── unsplash-fill.svg │ │ ├── unsplash-line.svg │ │ ├── vimeo-fill.svg │ │ ├── vimeo-line.svg │ │ ├── visa-fill.svg │ │ ├── visa-line.svg │ │ ├── vuejs-fill.svg │ │ ├── vuejs-line.svg │ │ ├── wechat-2-fill.svg │ │ ├── wechat-2-line.svg │ │ ├── wechat-fill.svg │ │ ├── wechat-line.svg │ │ ├── wechat-pay-fill.svg │ │ ├── wechat-pay-line.svg │ │ ├── weibo-fill.svg │ │ ├── weibo-line.svg │ │ ├── whatsapp-fill.svg │ │ ├── whatsapp-line.svg │ │ ├── windows-fill.svg │ │ ├── windows-line.svg │ │ ├── xbox-fill.svg │ │ ├── xbox-line.svg │ │ ├── xing-fill.svg │ │ ├── xing-line.svg │ │ ├── youtube-fill.svg │ │ ├── youtube-line.svg │ │ ├── zcool-fill.svg │ │ ├── zcool-line.svg │ │ ├── zhihu-fill.svg │ │ └── zhihu-line.svg │ │ ├── Map │ │ ├── anchor-fill.svg │ │ ├── anchor-line.svg │ │ ├── barricade-fill.svg │ │ ├── barricade-line.svg │ │ ├── bike-fill.svg │ │ ├── bike-line.svg │ │ ├── bus-2-fill.svg │ │ ├── bus-2-line.svg │ │ ├── bus-fill.svg │ │ ├── bus-line.svg │ │ ├── bus-wifi-fill.svg │ │ ├── bus-wifi-line.svg │ │ ├── car-fill.svg │ │ ├── car-line.svg │ │ ├── car-washing-fill.svg │ │ ├── car-washing-line.svg │ │ ├── caravan-fill.svg │ │ ├── caravan-line.svg │ │ ├── charging-pile-2-fill.svg │ │ ├── charging-pile-2-line.svg │ │ ├── charging-pile-fill.svg │ │ ├── charging-pile-line.svg │ │ ├── china-railway-fill.svg │ │ ├── china-railway-line.svg │ │ ├── compass-2-fill.svg │ │ ├── compass-2-line.svg │ │ ├── compass-3-fill.svg │ │ ├── compass-3-line.svg │ │ ├── compass-4-fill.svg │ │ ├── compass-4-line.svg │ │ ├── compass-discover-fill.svg │ │ ├── compass-discover-line.svg │ │ ├── compass-fill.svg │ │ ├── compass-line.svg │ │ ├── cup-fill.svg │ │ ├── cup-line.svg │ │ ├── direction-fill.svg │ │ ├── direction-line.svg │ │ ├── e-bike-2-fill.svg │ │ ├── e-bike-2-line.svg │ │ ├── e-bike-fill.svg │ │ ├── e-bike-line.svg │ │ ├── earth-fill.svg │ │ ├── earth-line.svg │ │ ├── flight-land-fill.svg │ │ ├── flight-land-line.svg │ │ ├── flight-takeoff-fill.svg │ │ ├── flight-takeoff-line.svg │ │ ├── footprint-fill.svg │ │ ├── footprint-line.svg │ │ ├── gas-station-fill.svg │ │ ├── gas-station-line.svg │ │ ├── globe-fill.svg │ │ ├── globe-line.svg │ │ ├── goblet-fill.svg │ │ ├── goblet-line.svg │ │ ├── guide-fill.svg │ │ ├── guide-line.svg │ │ ├── hotel-bed-fill.svg │ │ ├── hotel-bed-line.svg │ │ ├── lifebuoy-fill.svg │ │ ├── lifebuoy-line.svg │ │ ├── luggage-cart-fill.svg │ │ ├── luggage-cart-line.svg │ │ ├── luggage-deposit-fill.svg │ │ ├── luggage-deposit-line.svg │ │ ├── map-2-fill.svg │ │ ├── map-2-line.svg │ │ ├── map-fill.svg │ │ ├── map-line.svg │ │ ├── map-pin-2-fill.svg │ │ ├── map-pin-2-line.svg │ │ ├── map-pin-3-fill.svg │ │ ├── map-pin-3-line.svg │ │ ├── map-pin-4-fill.svg │ │ ├── map-pin-4-line.svg │ │ ├── map-pin-5-fill.svg │ │ ├── map-pin-5-line.svg │ │ ├── map-pin-add-fill.svg │ │ ├── map-pin-add-line.svg │ │ ├── map-pin-fill.svg │ │ ├── map-pin-line.svg │ │ ├── map-pin-range-fill.svg │ │ ├── map-pin-range-line.svg │ │ ├── map-pin-time-fill.svg │ │ ├── map-pin-time-line.svg │ │ ├── map-pin-user-fill.svg │ │ ├── map-pin-user-line.svg │ │ ├── motorbike-fill.svg │ │ ├── motorbike-line.svg │ │ ├── navigation-fill.svg │ │ ├── navigation-line.svg │ │ ├── oil-fill.svg │ │ ├── oil-line.svg │ │ ├── parking-box-fill.svg │ │ ├── parking-box-line.svg │ │ ├── parking-fill.svg │ │ ├── parking-line.svg │ │ ├── passport-fill.svg │ │ ├── passport-line.svg │ │ ├── pin-distance-fill.svg │ │ ├── pin-distance-line.svg │ │ ├── plane-fill.svg │ │ ├── plane-line.svg │ │ ├── police-car-fill.svg │ │ ├── police-car-line.svg │ │ ├── pushpin-2-fill.svg │ │ ├── pushpin-2-line.svg │ │ ├── pushpin-fill.svg │ │ ├── pushpin-line.svg │ │ ├── restaurant-2-fill.svg │ │ ├── restaurant-2-line.svg │ │ ├── restaurant-fill.svg │ │ ├── restaurant-line.svg │ │ ├── riding-fill.svg │ │ ├── riding-line.svg │ │ ├── road-map-fill.svg │ │ ├── road-map-line.svg │ │ ├── roadster-fill.svg │ │ ├── roadster-line.svg │ │ ├── rocket-2-fill.svg │ │ ├── rocket-2-line.svg │ │ ├── rocket-fill.svg │ │ ├── rocket-line.svg │ │ ├── route-fill.svg │ │ ├── route-line.svg │ │ ├── run-fill.svg │ │ ├── run-line.svg │ │ ├── sailboat-fill.svg │ │ ├── sailboat-line.svg │ │ ├── ship-2-fill.svg │ │ ├── ship-2-line.svg │ │ ├── ship-fill.svg │ │ ├── ship-line.svg │ │ ├── signal-tower-fill.svg │ │ ├── signal-tower-line.svg │ │ ├── space-ship-fill.svg │ │ ├── space-ship-line.svg │ │ ├── steering-2-fill.svg │ │ ├── steering-2-line.svg │ │ ├── steering-fill.svg │ │ ├── steering-line.svg │ │ ├── subway-fill.svg │ │ ├── subway-line.svg │ │ ├── subway-wifi-fill.svg │ │ ├── subway-wifi-line.svg │ │ ├── suitcase-2-fill.svg │ │ ├── suitcase-2-line.svg │ │ ├── suitcase-3-fill.svg │ │ ├── suitcase-3-line.svg │ │ ├── suitcase-fill.svg │ │ ├── suitcase-line.svg │ │ ├── takeaway-fill.svg │ │ ├── takeaway-line.svg │ │ ├── taxi-fill.svg │ │ ├── taxi-line.svg │ │ ├── taxi-wifi-fill.svg │ │ ├── taxi-wifi-line.svg │ │ ├── traffic-light-fill.svg │ │ ├── traffic-light-line.svg │ │ ├── train-fill.svg │ │ ├── train-line.svg │ │ ├── train-wifi-fill.svg │ │ ├── train-wifi-line.svg │ │ ├── treasure-map-fill.svg │ │ ├── treasure-map-line.svg │ │ ├── truck-fill.svg │ │ ├── truck-line.svg │ │ ├── walk-fill.svg │ │ └── walk-line.svg │ │ ├── Media │ │ ├── 4k-fill.svg │ │ ├── 4k-line.svg │ │ ├── album-fill.svg │ │ ├── album-line.svg │ │ ├── aspect-ratio-fill.svg │ │ ├── aspect-ratio-line.svg │ │ ├── broadcast-fill.svg │ │ ├── broadcast-line.svg │ │ ├── camera-2-fill.svg │ │ ├── camera-2-line.svg │ │ ├── camera-3-fill.svg │ │ ├── camera-3-line.svg │ │ ├── camera-fill.svg │ │ ├── camera-lens-fill.svg │ │ ├── camera-lens-line.svg │ │ ├── camera-line.svg │ │ ├── camera-off-fill.svg │ │ ├── camera-off-line.svg │ │ ├── camera-switch-fill.svg │ │ ├── camera-switch-line.svg │ │ ├── clapperboard-fill.svg │ │ ├── clapperboard-line.svg │ │ ├── closed-captioning-fill.svg │ │ ├── closed-captioning-line.svg │ │ ├── disc-fill.svg │ │ ├── disc-line.svg │ │ ├── dv-fill.svg │ │ ├── dv-line.svg │ │ ├── dvd-fill.svg │ │ ├── dvd-line.svg │ │ ├── eject-fill.svg │ │ ├── eject-line.svg │ │ ├── equalizer-fill.svg │ │ ├── equalizer-line.svg │ │ ├── film-fill.svg │ │ ├── film-line.svg │ │ ├── fullscreen-exit-fill.svg │ │ ├── fullscreen-exit-line.svg │ │ ├── fullscreen-fill.svg │ │ ├── fullscreen-line.svg │ │ ├── gallery-fill.svg │ │ ├── gallery-line.svg │ │ ├── gallery-upload-fill.svg │ │ ├── gallery-upload-line.svg │ │ ├── hd-fill.svg │ │ ├── hd-line.svg │ │ ├── headphone-fill.svg │ │ ├── headphone-line.svg │ │ ├── hq-fill.svg │ │ ├── hq-line.svg │ │ ├── image-2-fill.svg │ │ ├── image-2-line.svg │ │ ├── image-add-fill.svg │ │ ├── image-add-line.svg │ │ ├── image-edit-fill.svg │ │ ├── image-edit-line.svg │ │ ├── image-fill.svg │ │ ├── image-line.svg │ │ ├── landscape-fill.svg │ │ ├── landscape-line.svg │ │ ├── live-fill.svg │ │ ├── live-line.svg │ │ ├── mic-2-fill.svg │ │ ├── mic-2-line.svg │ │ ├── mic-fill.svg │ │ ├── mic-line.svg │ │ ├── mic-off-fill.svg │ │ ├── mic-off-line.svg │ │ ├── movie-2-fill.svg │ │ ├── movie-2-line.svg │ │ ├── movie-fill.svg │ │ ├── movie-line.svg │ │ ├── music-2-fill.svg │ │ ├── music-2-line.svg │ │ ├── music-fill.svg │ │ ├── music-line.svg │ │ ├── mv-fill.svg │ │ ├── mv-line.svg │ │ ├── notification-2-fill.svg │ │ ├── notification-2-line.svg │ │ ├── notification-3-fill.svg │ │ ├── notification-3-line.svg │ │ ├── notification-4-fill.svg │ │ ├── notification-4-line.svg │ │ ├── notification-fill.svg │ │ ├── notification-line.svg │ │ ├── notification-off-fill.svg │ │ ├── notification-off-line.svg │ │ ├── order-play-fill.svg │ │ ├── order-play-line.svg │ │ ├── pause-circle-fill.svg │ │ ├── pause-circle-line.svg │ │ ├── pause-fill.svg │ │ ├── pause-line.svg │ │ ├── pause-mini-fill.svg │ │ ├── pause-mini-line.svg │ │ ├── phone-camera-fill.svg │ │ ├── phone-camera-line.svg │ │ ├── picture-in-picture-2-fill.svg │ │ ├── picture-in-picture-2-line.svg │ │ ├── picture-in-picture-exit-fill.svg │ │ ├── picture-in-picture-exit-line.svg │ │ ├── picture-in-picture-fill.svg │ │ ├── picture-in-picture-line.svg │ │ ├── play-circle-fill.svg │ │ ├── play-circle-line.svg │ │ ├── play-fill.svg │ │ ├── play-line.svg │ │ ├── play-list-2-fill.svg │ │ ├── play-list-2-line.svg │ │ ├── play-list-add-fill.svg │ │ ├── play-list-add-line.svg │ │ ├── play-list-fill.svg │ │ ├── play-list-line.svg │ │ ├── play-mini-fill.svg │ │ ├── play-mini-line.svg │ │ ├── polaroid-2-fill.svg │ │ ├── polaroid-2-line.svg │ │ ├── polaroid-fill.svg │ │ ├── polaroid-line.svg │ │ ├── radio-2-fill.svg │ │ ├── radio-2-line.svg │ │ ├── radio-fill.svg │ │ ├── radio-line.svg │ │ ├── record-circle-fill.svg │ │ ├── record-circle-line.svg │ │ ├── repeat-2-fill.svg │ │ ├── repeat-2-line.svg │ │ ├── repeat-fill.svg │ │ ├── repeat-line.svg │ │ ├── repeat-one-fill.svg │ │ ├── repeat-one-line.svg │ │ ├── rewind-fill.svg │ │ ├── rewind-line.svg │ │ ├── rewind-mini-fill.svg │ │ ├── rewind-mini-line.svg │ │ ├── rhythm-fill.svg │ │ ├── rhythm-line.svg │ │ ├── shuffle-fill.svg │ │ ├── shuffle-line.svg │ │ ├── skip-back-fill.svg │ │ ├── skip-back-line.svg │ │ ├── skip-back-mini-fill.svg │ │ ├── skip-back-mini-line.svg │ │ ├── skip-forward-fill.svg │ │ ├── skip-forward-line.svg │ │ ├── skip-forward-mini-fill.svg │ │ ├── skip-forward-mini-line.svg │ │ ├── sound-module-fill.svg │ │ ├── sound-module-line.svg │ │ ├── speaker-2-fill.svg │ │ ├── speaker-2-line.svg │ │ ├── speaker-3-fill.svg │ │ ├── speaker-3-line.svg │ │ ├── speaker-fill.svg │ │ ├── speaker-line.svg │ │ ├── speed-fill.svg │ │ ├── speed-line.svg │ │ ├── speed-mini-fill.svg │ │ ├── speed-mini-line.svg │ │ ├── stop-circle-fill.svg │ │ ├── stop-circle-line.svg │ │ ├── stop-fill.svg │ │ ├── stop-line.svg │ │ ├── stop-mini-fill.svg │ │ ├── stop-mini-line.svg │ │ ├── surround-sound-fill.svg │ │ ├── surround-sound-line.svg │ │ ├── tape-fill.svg │ │ ├── tape-line.svg │ │ ├── video-add-fill.svg │ │ ├── video-add-line.svg │ │ ├── video-download-fill.svg │ │ ├── video-download-line.svg │ │ ├── video-fill.svg │ │ ├── video-line.svg │ │ ├── video-upload-fill.svg │ │ ├── video-upload-line.svg │ │ ├── vidicon-2-fill.svg │ │ ├── vidicon-2-line.svg │ │ ├── vidicon-fill.svg │ │ ├── vidicon-line.svg │ │ ├── voiceprint-fill.svg │ │ ├── voiceprint-line.svg │ │ ├── volume-down-fill.svg │ │ ├── volume-down-line.svg │ │ ├── volume-mute-fill.svg │ │ ├── volume-mute-line.svg │ │ ├── volume-off-vibrate-fill.svg │ │ ├── volume-off-vibrate-line.svg │ │ ├── volume-up-fill.svg │ │ ├── volume-up-line.svg │ │ ├── volume-vibrate-fill.svg │ │ ├── volume-vibrate-line.svg │ │ ├── webcam-fill.svg │ │ └── webcam-line.svg │ │ ├── Others │ │ ├── basketball-fill.svg │ │ ├── basketball-line.svg │ │ ├── bell-fill.svg │ │ ├── bell-line.svg │ │ ├── billiards-fill.svg │ │ ├── billiards-line.svg │ │ ├── boxing-fill.svg │ │ ├── boxing-line.svg │ │ ├── cactus-fill.svg │ │ ├── cactus-line.svg │ │ ├── cake-2-fill.svg │ │ ├── cake-2-line.svg │ │ ├── cake-3-fill.svg │ │ ├── cake-3-line.svg │ │ ├── cake-fill.svg │ │ ├── cake-line.svg │ │ ├── character-recognition-fill.svg │ │ ├── character-recognition-line.svg │ │ ├── door-closed-fill.svg │ │ ├── door-closed-line.svg │ │ ├── door-fill.svg │ │ ├── door-line.svg │ │ ├── door-lock-box-fill.svg │ │ ├── door-lock-box-line.svg │ │ ├── door-lock-fill.svg │ │ ├── door-lock-line.svg │ │ ├── door-open-fill.svg │ │ ├── door-open-line.svg │ │ ├── football-fill.svg │ │ ├── football-line.svg │ │ ├── fridge-fill.svg │ │ ├── fridge-line.svg │ │ ├── game-fill.svg │ │ ├── game-line.svg │ │ ├── handbag-fill.svg │ │ ├── handbag-line.svg │ │ ├── key-2-fill.svg │ │ ├── key-2-line.svg │ │ ├── key-fill.svg │ │ ├── key-line.svg │ │ ├── knife-blood-fill.svg │ │ ├── knife-blood-line.svg │ │ ├── knife-fill.svg │ │ ├── knife-line.svg │ │ ├── leaf-fill.svg │ │ ├── leaf-line.svg │ │ ├── lightbulb-fill.svg │ │ ├── lightbulb-flash-fill.svg │ │ ├── lightbulb-flash-line.svg │ │ ├── lightbulb-line.svg │ │ ├── outlet-2-fill.svg │ │ ├── outlet-2-line.svg │ │ ├── outlet-fill.svg │ │ ├── outlet-line.svg │ │ ├── ping-pong-fill.svg │ │ ├── ping-pong-line.svg │ │ ├── plant-fill.svg │ │ ├── plant-line.svg │ │ ├── plug-2-fill.svg │ │ ├── plug-2-line.svg │ │ ├── plug-fill.svg │ │ ├── plug-line.svg │ │ ├── recycle-fill.svg │ │ ├── recycle-line.svg │ │ ├── reserved-fill.svg │ │ ├── reserved-line.svg │ │ ├── scales-2-fill.svg │ │ ├── scales-2-line.svg │ │ ├── scales-3-fill.svg │ │ ├── scales-3-line.svg │ │ ├── scales-fill.svg │ │ ├── scales-line.svg │ │ ├── seedling-fill.svg │ │ ├── seedling-line.svg │ │ ├── shirt-fill.svg │ │ ├── shirt-line.svg │ │ ├── sword-fill.svg │ │ ├── sword-line.svg │ │ ├── t-shirt-2-fill.svg │ │ ├── t-shirt-2-line.svg │ │ ├── t-shirt-air-fill.svg │ │ ├── t-shirt-air-line.svg │ │ ├── t-shirt-fill.svg │ │ ├── t-shirt-line.svg │ │ ├── umbrella-fill.svg │ │ ├── umbrella-line.svg │ │ ├── voice-recognition-fill.svg │ │ ├── voice-recognition-line.svg │ │ ├── wheelchair-fill.svg │ │ └── wheelchair-line.svg │ │ ├── System │ │ ├── add-box-fill.svg │ │ ├── add-box-line.svg │ │ ├── add-circle-fill.svg │ │ ├── add-circle-line.svg │ │ ├── add-fill.svg │ │ ├── add-line.svg │ │ ├── alarm-fill.svg │ │ ├── alarm-line.svg │ │ ├── alarm-warning-fill.svg │ │ ├── alarm-warning-line.svg │ │ ├── alert-fill.svg │ │ ├── alert-line.svg │ │ ├── apps-2-fill.svg │ │ ├── apps-2-line.svg │ │ ├── apps-fill.svg │ │ ├── apps-line.svg │ │ ├── arrow-down-circle-fill.svg │ │ ├── arrow-down-circle-line.svg │ │ ├── arrow-down-fill.svg │ │ ├── arrow-down-line.svg │ │ ├── arrow-down-s-fill.svg │ │ ├── arrow-down-s-line.svg │ │ ├── arrow-drop-down-fill.svg │ │ ├── arrow-drop-down-line.svg │ │ ├── arrow-drop-left-fill.svg │ │ ├── arrow-drop-left-line.svg │ │ ├── arrow-drop-right-fill.svg │ │ ├── arrow-drop-right-line.svg │ │ ├── arrow-drop-up-fill.svg │ │ ├── arrow-drop-up-line.svg │ │ ├── arrow-go-back-fill.svg │ │ ├── arrow-go-back-line.svg │ │ ├── arrow-go-forward-fill.svg │ │ ├── arrow-go-forward-line.svg │ │ ├── arrow-left-circle-fill.svg │ │ ├── arrow-left-circle-line.svg │ │ ├── arrow-left-down-fill.svg │ │ ├── arrow-left-down-line.svg │ │ ├── arrow-left-fill.svg │ │ ├── arrow-left-line.svg │ │ ├── arrow-left-right-fill.svg │ │ ├── arrow-left-right-line.svg │ │ ├── arrow-left-s-fill.svg │ │ ├── arrow-left-s-line.svg │ │ ├── arrow-left-up-fill.svg │ │ ├── arrow-left-up-line.svg │ │ ├── arrow-right-circle-fill.svg │ │ ├── arrow-right-circle-line.svg │ │ ├── arrow-right-down-fill.svg │ │ ├── arrow-right-down-line.svg │ │ ├── arrow-right-fill.svg │ │ ├── arrow-right-line.svg │ │ ├── arrow-right-s-fill.svg │ │ ├── arrow-right-s-line.svg │ │ ├── arrow-right-up-fill.svg │ │ ├── arrow-right-up-line.svg │ │ ├── arrow-up-circle-fill.svg │ │ ├── arrow-up-circle-line.svg │ │ ├── arrow-up-down-fill.svg │ │ ├── arrow-up-down-line.svg │ │ ├── arrow-up-fill.svg │ │ ├── arrow-up-line.svg │ │ ├── arrow-up-s-fill.svg │ │ ├── arrow-up-s-line.svg │ │ ├── check-double-fill.svg │ │ ├── check-double-line.svg │ │ ├── check-fill.svg │ │ ├── check-line.svg │ │ ├── checkbox-blank-circle-fill.svg │ │ ├── checkbox-blank-circle-line.svg │ │ ├── checkbox-blank-fill.svg │ │ ├── checkbox-blank-line.svg │ │ ├── checkbox-circle-fill.svg │ │ ├── checkbox-circle-line.svg │ │ ├── checkbox-fill.svg │ │ ├── checkbox-indeterminate-fill.svg │ │ ├── checkbox-indeterminate-line.svg │ │ ├── checkbox-line.svg │ │ ├── checkbox-multiple-blank-fill.svg │ │ ├── checkbox-multiple-blank-line.svg │ │ ├── checkbox-multiple-fill.svg │ │ ├── checkbox-multiple-line.svg │ │ ├── close-circle-fill.svg │ │ ├── close-circle-line.svg │ │ ├── close-fill.svg │ │ ├── close-line.svg │ │ ├── dashboard-fill.svg │ │ ├── dashboard-line.svg │ │ ├── delete-back-2-fill.svg │ │ ├── delete-back-2-line.svg │ │ ├── delete-back-fill.svg │ │ ├── delete-back-line.svg │ │ ├── delete-bin-2-fill.svg │ │ ├── delete-bin-2-line.svg │ │ ├── delete-bin-3-fill.svg │ │ ├── delete-bin-3-line.svg │ │ ├── delete-bin-4-fill.svg │ │ ├── delete-bin-4-line.svg │ │ ├── delete-bin-5-fill.svg │ │ ├── delete-bin-5-line.svg │ │ ├── delete-bin-6-fill.svg │ │ ├── delete-bin-6-line.svg │ │ ├── delete-bin-7-fill.svg │ │ ├── delete-bin-7-line.svg │ │ ├── delete-bin-fill.svg │ │ ├── delete-bin-line.svg │ │ ├── divide-fill.svg │ │ ├── divide-line.svg │ │ ├── download-2-fill.svg │ │ ├── download-2-line.svg │ │ ├── download-cloud-2-fill.svg │ │ ├── download-cloud-2-line.svg │ │ ├── download-cloud-fill.svg │ │ ├── download-cloud-line.svg │ │ ├── download-fill.svg │ │ ├── download-line.svg │ │ ├── error-warning-fill.svg │ │ ├── error-warning-line.svg │ │ ├── external-link-fill.svg │ │ ├── external-link-line.svg │ │ ├── eye-2-fill.svg │ │ ├── eye-2-line.svg │ │ ├── eye-close-fill.svg │ │ ├── eye-close-line.svg │ │ ├── eye-fill.svg │ │ ├── eye-line.svg │ │ ├── eye-off-fill.svg │ │ ├── eye-off-line.svg │ │ ├── filter-2-fill.svg │ │ ├── filter-2-line.svg │ │ ├── filter-3-fill.svg │ │ ├── filter-3-line.svg │ │ ├── filter-fill.svg │ │ ├── filter-line.svg │ │ ├── filter-off-fill.svg │ │ ├── filter-off-line.svg │ │ ├── find-replace-fill.svg │ │ ├── find-replace-line.svg │ │ ├── forbid-2-fill.svg │ │ ├── forbid-2-line.svg │ │ ├── forbid-fill.svg │ │ ├── forbid-line.svg │ │ ├── function-fill.svg │ │ ├── function-line.svg │ │ ├── history-fill.svg │ │ ├── history-line.svg │ │ ├── indeterminate-circle-fill.svg │ │ ├── indeterminate-circle-line.svg │ │ ├── information-fill.svg │ │ ├── information-line.svg │ │ ├── list-settings-fill.svg │ │ ├── list-settings-line.svg │ │ ├── loader-2-fill.svg │ │ ├── loader-2-line.svg │ │ ├── loader-3-fill.svg │ │ ├── loader-3-line.svg │ │ ├── loader-4-fill.svg │ │ ├── loader-4-line.svg │ │ ├── loader-5-fill.svg │ │ ├── loader-5-line.svg │ │ ├── loader-fill.svg │ │ ├── loader-line.svg │ │ ├── lock-2-fill.svg │ │ ├── lock-2-line.svg │ │ ├── lock-fill.svg │ │ ├── lock-line.svg │ │ ├── lock-password-fill.svg │ │ ├── lock-password-line.svg │ │ ├── lock-unlock-fill.svg │ │ ├── lock-unlock-line.svg │ │ ├── login-box-fill.svg │ │ ├── login-box-line.svg │ │ ├── login-circle-fill.svg │ │ ├── login-circle-line.svg │ │ ├── logout-box-fill.svg │ │ ├── logout-box-line.svg │ │ ├── logout-box-r-fill.svg │ │ ├── logout-box-r-line.svg │ │ ├── logout-circle-fill.svg │ │ ├── logout-circle-line.svg │ │ ├── logout-circle-r-fill.svg │ │ ├── logout-circle-r-line.svg │ │ ├── menu-2-fill.svg │ │ ├── menu-2-line.svg │ │ ├── menu-3-fill.svg │ │ ├── menu-3-line.svg │ │ ├── menu-4-fill.svg │ │ ├── menu-4-line.svg │ │ ├── menu-5-fill.svg │ │ ├── menu-5-line.svg │ │ ├── menu-add-fill.svg │ │ ├── menu-add-line.svg │ │ ├── menu-fill.svg │ │ ├── menu-fold-fill.svg │ │ ├── menu-fold-line.svg │ │ ├── menu-line.svg │ │ ├── menu-unfold-fill.svg │ │ ├── menu-unfold-line.svg │ │ ├── more-2-fill.svg │ │ ├── more-2-line.svg │ │ ├── more-fill.svg │ │ ├── more-line.svg │ │ ├── notification-badge-fill.svg │ │ ├── notification-badge-line.svg │ │ ├── question-fill.svg │ │ ├── question-line.svg │ │ ├── radio-button-fill.svg │ │ ├── radio-button-line.svg │ │ ├── refresh-fill.svg │ │ ├── refresh-line.svg │ │ ├── search-2-fill.svg │ │ ├── search-2-line.svg │ │ ├── search-eye-fill.svg │ │ ├── search-eye-line.svg │ │ ├── search-fill.svg │ │ ├── search-line.svg │ │ ├── settings-2-fill.svg │ │ ├── settings-2-line.svg │ │ ├── settings-3-fill.svg │ │ ├── settings-3-line.svg │ │ ├── settings-4-fill.svg │ │ ├── settings-4-line.svg │ │ ├── settings-5-fill.svg │ │ ├── settings-5-line.svg │ │ ├── settings-6-fill.svg │ │ ├── settings-6-line.svg │ │ ├── settings-fill.svg │ │ ├── settings-line.svg │ │ ├── share-box-fill.svg │ │ ├── share-box-line.svg │ │ ├── share-circle-fill.svg │ │ ├── share-circle-line.svg │ │ ├── share-fill.svg │ │ ├── share-forward-2-fill.svg │ │ ├── share-forward-2-line.svg │ │ ├── share-forward-box-fill.svg │ │ ├── share-forward-box-line.svg │ │ ├── share-forward-fill.svg │ │ ├── share-forward-line.svg │ │ ├── share-line.svg │ │ ├── shield-check-fill.svg │ │ ├── shield-check-line.svg │ │ ├── shield-cross-fill.svg │ │ ├── shield-cross-line.svg │ │ ├── shield-fill.svg │ │ ├── shield-flash-fill.svg │ │ ├── shield-flash-line.svg │ │ ├── shield-keyhole-fill.svg │ │ ├── shield-keyhole-line.svg │ │ ├── shield-line.svg │ │ ├── shield-star-fill.svg │ │ ├── shield-star-line.svg │ │ ├── shield-user-fill.svg │ │ ├── shield-user-line.svg │ │ ├── side-bar-fill.svg │ │ ├── side-bar-line.svg │ │ ├── spam-2-fill.svg │ │ ├── spam-2-line.svg │ │ ├── spam-3-fill.svg │ │ ├── spam-3-line.svg │ │ ├── spam-fill.svg │ │ ├── spam-line.svg │ │ ├── star-fill.svg │ │ ├── star-half-fill.svg │ │ ├── star-half-line.svg │ │ ├── star-half-s-fill.svg │ │ ├── star-half-s-line.svg │ │ ├── star-line.svg │ │ ├── star-s-fill.svg │ │ ├── star-s-line.svg │ │ ├── subtract-fill.svg │ │ ├── subtract-line.svg │ │ ├── thumb-down-fill.svg │ │ ├── thumb-down-line.svg │ │ ├── thumb-up-fill.svg │ │ ├── thumb-up-line.svg │ │ ├── time-fill.svg │ │ ├── time-line.svg │ │ ├── timer-2-fill.svg │ │ ├── timer-2-line.svg │ │ ├── timer-fill.svg │ │ ├── timer-flash-fill.svg │ │ ├── timer-flash-line.svg │ │ ├── timer-line.svg │ │ ├── toggle-fill.svg │ │ ├── toggle-line.svg │ │ ├── upload-2-fill.svg │ │ ├── upload-2-line.svg │ │ ├── upload-cloud-2-fill.svg │ │ ├── upload-cloud-2-line.svg │ │ ├── upload-cloud-fill.svg │ │ ├── upload-cloud-line.svg │ │ ├── upload-fill.svg │ │ ├── upload-line.svg │ │ ├── zoom-in-fill.svg │ │ ├── zoom-in-line.svg │ │ ├── zoom-out-fill.svg │ │ └── zoom-out-line.svg │ │ ├── User │ │ ├── account-box-fill.svg │ │ ├── account-box-line.svg │ │ ├── account-circle-fill.svg │ │ ├── account-circle-line.svg │ │ ├── account-pin-box-fill.svg │ │ ├── account-pin-box-line.svg │ │ ├── account-pin-circle-fill.svg │ │ ├── account-pin-circle-line.svg │ │ ├── admin-fill.svg │ │ ├── admin-line.svg │ │ ├── aliens-fill.svg │ │ ├── aliens-line.svg │ │ ├── bear-smile-fill.svg │ │ ├── bear-smile-line.svg │ │ ├── body-scan-fill.svg │ │ ├── body-scan-line.svg │ │ ├── contacts-fill.svg │ │ ├── contacts-line.svg │ │ ├── criminal-fill.svg │ │ ├── criminal-line.svg │ │ ├── emotion-2-fill.svg │ │ ├── emotion-2-line.svg │ │ ├── emotion-fill.svg │ │ ├── emotion-happy-fill.svg │ │ ├── emotion-happy-line.svg │ │ ├── emotion-laugh-fill.svg │ │ ├── emotion-laugh-line.svg │ │ ├── emotion-line.svg │ │ ├── emotion-normal-fill.svg │ │ ├── emotion-normal-line.svg │ │ ├── emotion-sad-fill.svg │ │ ├── emotion-sad-line.svg │ │ ├── emotion-unhappy-fill.svg │ │ ├── emotion-unhappy-line.svg │ │ ├── genderless-fill.svg │ │ ├── genderless-line.svg │ │ ├── ghost-2-fill.svg │ │ ├── ghost-2-line.svg │ │ ├── ghost-fill.svg │ │ ├── ghost-line.svg │ │ ├── ghost-smile-fill.svg │ │ ├── ghost-smile-line.svg │ │ ├── group-2-fill.svg │ │ ├── group-2-line.svg │ │ ├── group-fill.svg │ │ ├── group-line.svg │ │ ├── men-fill.svg │ │ ├── men-line.svg │ │ ├── mickey-fill.svg │ │ ├── mickey-line.svg │ │ ├── open-arm-fill.svg │ │ ├── open-arm-line.svg │ │ ├── parent-fill.svg │ │ ├── parent-line.svg │ │ ├── robot-fill.svg │ │ ├── robot-line.svg │ │ ├── skull-2-fill.svg │ │ ├── skull-2-line.svg │ │ ├── skull-fill.svg │ │ ├── skull-line.svg │ │ ├── spy-fill.svg │ │ ├── spy-line.svg │ │ ├── star-smile-fill.svg │ │ ├── star-smile-line.svg │ │ ├── team-fill.svg │ │ ├── team-line.svg │ │ ├── travesti-fill.svg │ │ ├── travesti-line.svg │ │ ├── user-2-fill.svg │ │ ├── user-2-line.svg │ │ ├── user-3-fill.svg │ │ ├── user-3-line.svg │ │ ├── user-4-fill.svg │ │ ├── user-4-line.svg │ │ ├── user-5-fill.svg │ │ ├── user-5-line.svg │ │ ├── user-6-fill.svg │ │ ├── user-6-line.svg │ │ ├── user-add-fill.svg │ │ ├── user-add-line.svg │ │ ├── user-fill.svg │ │ ├── user-follow-fill.svg │ │ ├── user-follow-line.svg │ │ ├── user-heart-fill.svg │ │ ├── user-heart-line.svg │ │ ├── user-line.svg │ │ ├── user-location-fill.svg │ │ ├── user-location-line.svg │ │ ├── user-received-2-fill.svg │ │ ├── user-received-2-line.svg │ │ ├── user-received-fill.svg │ │ ├── user-received-line.svg │ │ ├── user-search-fill.svg │ │ ├── user-search-line.svg │ │ ├── user-settings-fill.svg │ │ ├── user-settings-line.svg │ │ ├── user-shared-2-fill.svg │ │ ├── user-shared-2-line.svg │ │ ├── user-shared-fill.svg │ │ ├── user-shared-line.svg │ │ ├── user-smile-fill.svg │ │ ├── user-smile-line.svg │ │ ├── user-star-fill.svg │ │ ├── user-star-line.svg │ │ ├── user-unfollow-fill.svg │ │ ├── user-unfollow-line.svg │ │ ├── user-voice-fill.svg │ │ ├── user-voice-line.svg │ │ ├── women-fill.svg │ │ └── women-line.svg │ │ └── Weather │ │ ├── blaze-fill.svg │ │ ├── blaze-line.svg │ │ ├── celsius-fill.svg │ │ ├── celsius-line.svg │ │ ├── cloud-windy-fill.svg │ │ ├── cloud-windy-line.svg │ │ ├── cloudy-2-fill.svg │ │ ├── cloudy-2-line.svg │ │ ├── cloudy-fill.svg │ │ ├── cloudy-line.svg │ │ ├── drizzle-fill.svg │ │ ├── drizzle-line.svg │ │ ├── earthquake-fill.svg │ │ ├── earthquake-line.svg │ │ ├── fahrenheit-fill.svg │ │ ├── fahrenheit-line.svg │ │ ├── fire-fill.svg │ │ ├── fire-line.svg │ │ ├── flashlight-fill.svg │ │ ├── flashlight-line.svg │ │ ├── flood-fill.svg │ │ ├── flood-line.svg │ │ ├── foggy-fill.svg │ │ ├── foggy-line.svg │ │ ├── hail-fill.svg │ │ ├── hail-line.svg │ │ ├── haze-2-fill.svg │ │ ├── haze-2-line.svg │ │ ├── haze-fill.svg │ │ ├── haze-line.svg │ │ ├── heavy-showers-fill.svg │ │ ├── heavy-showers-line.svg │ │ ├── meteor-fill.svg │ │ ├── meteor-line.svg │ │ ├── mist-fill.svg │ │ ├── mist-line.svg │ │ ├── moon-clear-fill.svg │ │ ├── moon-clear-line.svg │ │ ├── moon-cloudy-fill.svg │ │ ├── moon-cloudy-line.svg │ │ ├── moon-fill.svg │ │ ├── moon-foggy-fill.svg │ │ ├── moon-foggy-line.svg │ │ ├── moon-line.svg │ │ ├── rainbow-fill.svg │ │ ├── rainbow-line.svg │ │ ├── rainy-fill.svg │ │ ├── rainy-line.svg │ │ ├── showers-fill.svg │ │ ├── showers-line.svg │ │ ├── snowy-fill.svg │ │ ├── snowy-line.svg │ │ ├── sun-cloudy-fill.svg │ │ ├── sun-cloudy-line.svg │ │ ├── sun-fill.svg │ │ ├── sun-foggy-fill.svg │ │ ├── sun-foggy-line.svg │ │ ├── sun-line.svg │ │ ├── temp-cold-fill.svg │ │ ├── temp-cold-line.svg │ │ ├── temp-hot-fill.svg │ │ ├── temp-hot-line.svg │ │ ├── thunderstorms-fill.svg │ │ ├── thunderstorms-line.svg │ │ ├── tornado-fill.svg │ │ ├── tornado-line.svg │ │ ├── typhoon-fill.svg │ │ ├── typhoon-line.svg │ │ ├── windy-fill.svg │ │ └── windy-line.svg ├── capturas │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ └── 07.png ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── advance-salary │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── attendence │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── auth │ ├── body │ │ └── main.blade.php │ ├── login.blade.php │ └── register.blade.php │ ├── categories │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── components │ └── preview-img-form.blade.php │ ├── customers │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── dashboard │ ├── body │ │ ├── footer.blade.php │ │ ├── main.blade.php │ │ ├── navbar.blade.php │ │ └── sidebar.blade.php │ └── index.blade.php │ ├── database │ └── index.blade.php │ ├── employees │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── errors │ ├── 403.blade.php │ └── 404.blade.php │ ├── orders │ ├── complete-orders.blade.php │ ├── details-order.blade.php │ ├── invoice-order.blade.php │ ├── pending-due.blade.php │ └── pending-orders.blade.php │ ├── pay-salary │ ├── create.blade.php │ ├── history-details.blade.php │ ├── history.blade.php │ └── index.blade.php │ ├── pos │ ├── create-invoice.blade.php │ ├── index.blade.php │ ├── print-invoice.blade.php │ └── text-item.blade.php │ ├── products │ ├── create.blade.php │ ├── edit.blade.php │ ├── import.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── profile │ ├── change-password.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── partials │ │ ├── background-profile.blade.php │ │ ├── change-password-form.blade.php │ │ ├── edit-profile-form.blade.php │ │ ├── left-profile.blade.php │ │ ├── navbar-profile.blade.php │ │ └── show-profile.blade.php │ ├── roles │ ├── permission-create.blade.php │ ├── permission-edit.blade.php │ ├── permission-index.blade.php │ ├── role-create.blade.php │ ├── role-edit.blade.php │ ├── role-index.blade.php │ ├── role-permission-create.blade.php │ ├── role-permission-edit.blade.php │ └── role-permission-index.blade.php │ ├── stock │ └── index.blade.php │ ├── suppliers │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── users │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── clockwork │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Dashboard/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Controllers/Dashboard/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Dashboard/PosController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Controllers/Dashboard/PosController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Dashboard/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Controllers/Dashboard/ProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Dashboard/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Controllers/Dashboard/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Dashboard/RoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Controllers/Dashboard/RoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Dashboard/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Controllers/Dashboard/UserController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Http/Requests/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Models/AdvanceSalary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/AdvanceSalary.php -------------------------------------------------------------------------------- /app/Models/Attendence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/Attendence.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/Customer.php -------------------------------------------------------------------------------- /app/Models/Employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/Employee.php -------------------------------------------------------------------------------- /app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/Order.php -------------------------------------------------------------------------------- /app/Models/OrderDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/OrderDetails.php -------------------------------------------------------------------------------- /app/Models/PaySalary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/PaySalary.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/Supplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/Supplier.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/backup.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/cart.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/image.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/query-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/query-builder.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /lang/vendor/backup/ar/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/ar/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/bg/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/bg/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/bn/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/bn/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/cs/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/cs/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/da/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/da/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/de/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/de/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/en/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/en/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/es/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/es/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/fa/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/fa/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/fi/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/fi/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/fr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/fr/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/hi/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/hi/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/hr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/hr/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/id/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/id/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/it/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/it/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/ja/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/ja/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/nl/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/nl/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/no/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/no/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/pl/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/pl/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/pt-BR/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/pt-BR/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/pt/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/pt/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/ro/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/ro/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/ru/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/ru/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/tr/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/tr/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/uk/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/uk/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/zh-CN/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/zh-CN/notifications.php -------------------------------------------------------------------------------- /lang/vendor/backup/zh-TW/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/lang/vendor/backup/zh-TW/notifications.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/css/backend-plugin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/css/backend-plugin.min.css -------------------------------------------------------------------------------- /public/assets/css/backend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/css/backend.css -------------------------------------------------------------------------------- /public/assets/css/bootstrap/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/css/bootstrap/bootstrap-grid.css -------------------------------------------------------------------------------- /public/assets/css/bootstrap/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/css/bootstrap/bootstrap-reboot.css -------------------------------------------------------------------------------- /public/assets/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /public/assets/css/intro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/css/intro.css -------------------------------------------------------------------------------- /public/assets/css/maps/backend.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/css/maps/backend.css.map -------------------------------------------------------------------------------- /public/assets/css/maps/bootstrap/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/css/maps/bootstrap/bootstrap.css.map -------------------------------------------------------------------------------- /public/assets/css/maps/intro.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/css/maps/intro.css.map -------------------------------------------------------------------------------- /public/assets/images/down-aerrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/down-aerrow.gif -------------------------------------------------------------------------------- /public/assets/images/error/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/error/02.png -------------------------------------------------------------------------------- /public/assets/images/error/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/error/404.png -------------------------------------------------------------------------------- /public/assets/images/error/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/error/500.png -------------------------------------------------------------------------------- /public/assets/images/icon/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/08.png -------------------------------------------------------------------------------- /public/assets/images/icon/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/09.png -------------------------------------------------------------------------------- /public/assets/images/icon/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/10.png -------------------------------------------------------------------------------- /public/assets/images/icon/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/11.png -------------------------------------------------------------------------------- /public/assets/images/icon/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/12.png -------------------------------------------------------------------------------- /public/assets/images/icon/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/13.png -------------------------------------------------------------------------------- /public/assets/images/icon/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/14.png -------------------------------------------------------------------------------- /public/assets/images/icon/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/15.png -------------------------------------------------------------------------------- /public/assets/images/icon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/16.png -------------------------------------------------------------------------------- /public/assets/images/icon/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/17.png -------------------------------------------------------------------------------- /public/assets/images/icon/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/18.png -------------------------------------------------------------------------------- /public/assets/images/icon/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/19.png -------------------------------------------------------------------------------- /public/assets/images/icon/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/20.png -------------------------------------------------------------------------------- /public/assets/images/icon/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/21.png -------------------------------------------------------------------------------- /public/assets/images/icon/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/22.png -------------------------------------------------------------------------------- /public/assets/images/icon/expand-window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/expand-window.json -------------------------------------------------------------------------------- /public/assets/images/icon/open-letter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/open-letter.json -------------------------------------------------------------------------------- /public/assets/images/icon/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/icon/pdf.png -------------------------------------------------------------------------------- /public/assets/images/intro/btn-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/btn-icon.svg -------------------------------------------------------------------------------- /public/assets/images/intro/clients/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/clients/01.png -------------------------------------------------------------------------------- /public/assets/images/intro/clients/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/clients/02.png -------------------------------------------------------------------------------- /public/assets/images/intro/clients/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/clients/03.png -------------------------------------------------------------------------------- /public/assets/images/intro/clients/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/clients/04.png -------------------------------------------------------------------------------- /public/assets/images/intro/clients/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/clients/05.png -------------------------------------------------------------------------------- /public/assets/images/intro/demo/layout/app-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/demo/layout/app-5.jpg -------------------------------------------------------------------------------- /public/assets/images/intro/demo/layout/app-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/demo/layout/app-9.jpg -------------------------------------------------------------------------------- /public/assets/images/intro/demo/layout/error-404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/demo/layout/error-404.jpg -------------------------------------------------------------------------------- /public/assets/images/intro/demo/layout/error-500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/demo/layout/error-500.jpg -------------------------------------------------------------------------------- /public/assets/images/intro/demo/layout/price.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/demo/layout/price.jpg -------------------------------------------------------------------------------- /public/assets/images/intro/demo/layout/report.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/demo/layout/report.jpg -------------------------------------------------------------------------------- /public/assets/images/intro/demo/layout/sign-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/demo/layout/sign-in.jpg -------------------------------------------------------------------------------- /public/assets/images/intro/demo/layout/sign-up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/demo/layout/sign-up.jpg -------------------------------------------------------------------------------- /public/assets/images/intro/demo/layout/time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/demo/layout/time.jpg -------------------------------------------------------------------------------- /public/assets/images/intro/features/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/01.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/01_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/01_.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/02.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/03.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/04.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/05.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/06.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/07.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/09.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/10.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/11.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/12.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/13.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/14.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/15.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/16.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/17.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/18.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/19.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/20.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/21.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/23.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/24.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/25.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/26.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/27.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/28.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/29.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/gulp-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/gulp-white.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/handle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/handle-white.png -------------------------------------------------------------------------------- /public/assets/images/intro/features/sass-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/features/sass-white.png -------------------------------------------------------------------------------- /public/assets/images/intro/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/left.png -------------------------------------------------------------------------------- /public/assets/images/intro/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/right.png -------------------------------------------------------------------------------- /public/assets/images/intro/slider/banner/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/slider/banner/01.png -------------------------------------------------------------------------------- /public/assets/images/intro/slider/banner/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/slider/banner/02.png -------------------------------------------------------------------------------- /public/assets/images/intro/slider/banner/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/slider/banner/03.png -------------------------------------------------------------------------------- /public/assets/images/intro/slider/banner/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/slider/banner/04.png -------------------------------------------------------------------------------- /public/assets/images/intro/slider/banner/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/slider/banner/05.png -------------------------------------------------------------------------------- /public/assets/images/intro/slider/banner/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/slider/banner/06.png -------------------------------------------------------------------------------- /public/assets/images/intro/technology-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/intro/technology-bg.png -------------------------------------------------------------------------------- /public/assets/images/layouts/side-bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/layouts/side-bkg.png -------------------------------------------------------------------------------- /public/assets/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/loader.gif -------------------------------------------------------------------------------- /public/assets/images/login/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/login/01.png -------------------------------------------------------------------------------- /public/assets/images/login/01=.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/login/01=.png -------------------------------------------------------------------------------- /public/assets/images/login/01asd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/login/01asd.png -------------------------------------------------------------------------------- /public/assets/images/login/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/login/02.png -------------------------------------------------------------------------------- /public/assets/images/login/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/login/03.png -------------------------------------------------------------------------------- /public/assets/images/login/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/login/2.jpg -------------------------------------------------------------------------------- /public/assets/images/login/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/login/login.jpg -------------------------------------------------------------------------------- /public/assets/images/login/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/login/mail.png -------------------------------------------------------------------------------- /public/assets/images/login/sign-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/login/sign-bg.jpg -------------------------------------------------------------------------------- /public/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/logo.png -------------------------------------------------------------------------------- /public/assets/images/logo/logo-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/logo/logo-min.png -------------------------------------------------------------------------------- /public/assets/images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/logo/logo.png -------------------------------------------------------------------------------- /public/assets/images/main/ventas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/main/ventas.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/01.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/02.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/03.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/07.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/08.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/09.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/10.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/100.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/11.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/12.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/13.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/14.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/14.png -------------------------------------------------------------------------------- /public/assets/images/page-img/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/15.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/16.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/17.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/18.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/19.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/20.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/21.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/22.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/23.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/24.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/25.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/26.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/27.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/28.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/37.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/37.png -------------------------------------------------------------------------------- /public/assets/images/page-img/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/38.png -------------------------------------------------------------------------------- /public/assets/images/page-img/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/39.png -------------------------------------------------------------------------------- /public/assets/images/page-img/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/42.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/42.png -------------------------------------------------------------------------------- /public/assets/images/page-img/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/43.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/44.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/45.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/46.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/47.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/48.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/49.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/50.png -------------------------------------------------------------------------------- /public/assets/images/page-img/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/51.png -------------------------------------------------------------------------------- /public/assets/images/page-img/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/a1.png -------------------------------------------------------------------------------- /public/assets/images/page-img/a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/a2.png -------------------------------------------------------------------------------- /public/assets/images/page-img/a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/a3.png -------------------------------------------------------------------------------- /public/assets/images/page-img/a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/a4.png -------------------------------------------------------------------------------- /public/assets/images/page-img/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/diamond.png -------------------------------------------------------------------------------- /public/assets/images/page-img/featured-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/featured-book.png -------------------------------------------------------------------------------- /public/assets/images/page-img/img-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/img-success.png -------------------------------------------------------------------------------- /public/assets/images/page-img/man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/man.svg -------------------------------------------------------------------------------- /public/assets/images/page-img/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/p1.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/p2.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/page-load-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/page-load-loader.gif -------------------------------------------------------------------------------- /public/assets/images/page-img/profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/profile-bg.jpg -------------------------------------------------------------------------------- /public/assets/images/page-img/profile-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/profile-bg.png -------------------------------------------------------------------------------- /public/assets/images/page-img/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/profile.png -------------------------------------------------------------------------------- /public/assets/images/page-img/side-bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/side-bkg.png -------------------------------------------------------------------------------- /public/assets/images/page-img/tag_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/tag_blue.svg -------------------------------------------------------------------------------- /public/assets/images/page-img/tag_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/page-img/tag_red.svg -------------------------------------------------------------------------------- /public/assets/images/plugins/picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/plugins/picture.jpg -------------------------------------------------------------------------------- /public/assets/images/product/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/product/01.png -------------------------------------------------------------------------------- /public/assets/images/product/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/product/02.png -------------------------------------------------------------------------------- /public/assets/images/product/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/product/03.png -------------------------------------------------------------------------------- /public/assets/images/product/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/product/04.png -------------------------------------------------------------------------------- /public/assets/images/product/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/product/05.png -------------------------------------------------------------------------------- /public/assets/images/product/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/product/1.png -------------------------------------------------------------------------------- /public/assets/images/product/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/product/2.png -------------------------------------------------------------------------------- /public/assets/images/product/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/product/3.png -------------------------------------------------------------------------------- /public/assets/images/product/default.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/product/default.webp -------------------------------------------------------------------------------- /public/assets/images/profile/service/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/profile/service/01.png -------------------------------------------------------------------------------- /public/assets/images/profile/service/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/profile/service/02.png -------------------------------------------------------------------------------- /public/assets/images/profile/service/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/profile/service/03.png -------------------------------------------------------------------------------- /public/assets/images/profile/service/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/profile/service/04.png -------------------------------------------------------------------------------- /public/assets/images/profile/service/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/profile/service/05.png -------------------------------------------------------------------------------- /public/assets/images/profile/service/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/profile/service/06.png -------------------------------------------------------------------------------- /public/assets/images/rating/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/rating/01.jpg -------------------------------------------------------------------------------- /public/assets/images/rating/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/rating/01.png -------------------------------------------------------------------------------- /public/assets/images/small/04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/04.svg -------------------------------------------------------------------------------- /public/assets/images/small/05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/05.svg -------------------------------------------------------------------------------- /public/assets/images/small/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/07.png -------------------------------------------------------------------------------- /public/assets/images/small/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/08.png -------------------------------------------------------------------------------- /public/assets/images/small/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/09.png -------------------------------------------------------------------------------- /public/assets/images/small/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/10.png -------------------------------------------------------------------------------- /public/assets/images/small/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/11.png -------------------------------------------------------------------------------- /public/assets/images/small/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/12.png -------------------------------------------------------------------------------- /public/assets/images/small/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/13.png -------------------------------------------------------------------------------- /public/assets/images/small/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/14.png -------------------------------------------------------------------------------- /public/assets/images/small/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/data.json -------------------------------------------------------------------------------- /public/assets/images/small/data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/data1.json -------------------------------------------------------------------------------- /public/assets/images/small/data2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/data2.json -------------------------------------------------------------------------------- /public/assets/images/small/flag-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/flag-01.png -------------------------------------------------------------------------------- /public/assets/images/small/flag-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/flag-02.png -------------------------------------------------------------------------------- /public/assets/images/small/flag-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/flag-03.png -------------------------------------------------------------------------------- /public/assets/images/small/flag-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/flag-04.png -------------------------------------------------------------------------------- /public/assets/images/small/flag-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/flag-05.png -------------------------------------------------------------------------------- /public/assets/images/small/flag-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/flag-06.png -------------------------------------------------------------------------------- /public/assets/images/small/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/img-1.jpg -------------------------------------------------------------------------------- /public/assets/images/small/jpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/jpg.svg -------------------------------------------------------------------------------- /public/assets/images/small/match-code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/match-code.json -------------------------------------------------------------------------------- /public/assets/images/small/xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/xml.svg -------------------------------------------------------------------------------- /public/assets/images/small/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/small/zip.svg -------------------------------------------------------------------------------- /public/assets/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/sort_asc.png -------------------------------------------------------------------------------- /public/assets/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /public/assets/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/sort_both.png -------------------------------------------------------------------------------- /public/assets/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/sort_desc.png -------------------------------------------------------------------------------- /public/assets/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /public/assets/images/table/product/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/table/product/01.jpg -------------------------------------------------------------------------------- /public/assets/images/table/product/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/table/product/02.jpg -------------------------------------------------------------------------------- /public/assets/images/table/product/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/table/product/03.jpg -------------------------------------------------------------------------------- /public/assets/images/table/product/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/table/product/04.jpg -------------------------------------------------------------------------------- /public/assets/images/table/product/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/table/product/05.jpg -------------------------------------------------------------------------------- /public/assets/images/table/product/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/table/product/06.jpg -------------------------------------------------------------------------------- /public/assets/images/table/product/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/table/product/07.jpg -------------------------------------------------------------------------------- /public/assets/images/table/product/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/table/product/08.jpg -------------------------------------------------------------------------------- /public/assets/images/table/product/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/table/product/09.jpg -------------------------------------------------------------------------------- /public/assets/images/user/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/01.jpg -------------------------------------------------------------------------------- /public/assets/images/user/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/02.jpg -------------------------------------------------------------------------------- /public/assets/images/user/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/03.jpg -------------------------------------------------------------------------------- /public/assets/images/user/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/04.jpg -------------------------------------------------------------------------------- /public/assets/images/user/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/05.jpg -------------------------------------------------------------------------------- /public/assets/images/user/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/06.jpg -------------------------------------------------------------------------------- /public/assets/images/user/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/07.jpg -------------------------------------------------------------------------------- /public/assets/images/user/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/08.jpg -------------------------------------------------------------------------------- /public/assets/images/user/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/09.jpg -------------------------------------------------------------------------------- /public/assets/images/user/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/1.jpg -------------------------------------------------------------------------------- /public/assets/images/user/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/1.png -------------------------------------------------------------------------------- /public/assets/images/user/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/10.jpg -------------------------------------------------------------------------------- /public/assets/images/user/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/11.jpg -------------------------------------------------------------------------------- /public/assets/images/user/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/11.png -------------------------------------------------------------------------------- /public/assets/images/user/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/12.jpg -------------------------------------------------------------------------------- /public/assets/images/user/i1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/i1.jpg -------------------------------------------------------------------------------- /public/assets/images/user/user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/user-1.jpg -------------------------------------------------------------------------------- /public/assets/images/user/user-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/user-2.jpg -------------------------------------------------------------------------------- /public/assets/images/user/user-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/user-3.jpg -------------------------------------------------------------------------------- /public/assets/images/user/user-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/user-4.jpg -------------------------------------------------------------------------------- /public/assets/images/user/user-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/user-5.jpg -------------------------------------------------------------------------------- /public/assets/images/user/user-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/user/user-6.jpg -------------------------------------------------------------------------------- /public/assets/images/vectormap/bg-red-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/vectormap/bg-red-green.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/bg-yellow-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/vectormap/bg-yellow-blue.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/icon-bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/vectormap/icon-bank.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/icon-factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/vectormap/icon-factory.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/icon-np-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/vectormap/icon-np-1.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/icon-np-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/vectormap/icon-np-2.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/icon-np-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/images/vectormap/icon-np-3.png -------------------------------------------------------------------------------- /public/assets/invoice/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/invoice/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/assets/invoice/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/invoice/css/style.css -------------------------------------------------------------------------------- /public/assets/invoice/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/invoice/js/app.js -------------------------------------------------------------------------------- /public/assets/invoice/js/html2canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/invoice/js/html2canvas.js -------------------------------------------------------------------------------- /public/assets/invoice/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/invoice/js/jquery.min.js -------------------------------------------------------------------------------- /public/assets/invoice/js/jspdf.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/invoice/js/jspdf.min.js -------------------------------------------------------------------------------- /public/assets/js/animated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/animated.js -------------------------------------------------------------------------------- /public/assets/js/apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/apexcharts.js -------------------------------------------------------------------------------- /public/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/app.js -------------------------------------------------------------------------------- /public/assets/js/backend-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/backend-bundle.min.js -------------------------------------------------------------------------------- /public/assets/js/bstreeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/bstreeview.js -------------------------------------------------------------------------------- /public/assets/js/chart-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/chart-custom.js -------------------------------------------------------------------------------- /public/assets/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/charts.js -------------------------------------------------------------------------------- /public/assets/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/core.js -------------------------------------------------------------------------------- /public/assets/js/countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/countdown.js -------------------------------------------------------------------------------- /public/assets/js/country2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/country2.js -------------------------------------------------------------------------------- /public/assets/js/croppy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/croppy.js -------------------------------------------------------------------------------- /public/assets/js/customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/customizer.js -------------------------------------------------------------------------------- /public/assets/js/flex-tree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/flex-tree.min.js -------------------------------------------------------------------------------- /public/assets/js/highcharts-3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/highcharts-3d.js -------------------------------------------------------------------------------- /public/assets/js/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/highcharts-more.js -------------------------------------------------------------------------------- /public/assets/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/highcharts.js -------------------------------------------------------------------------------- /public/assets/js/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /public/assets/js/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/intro.js -------------------------------------------------------------------------------- /public/assets/js/jquery.appear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/jquery.appear.js -------------------------------------------------------------------------------- /public/assets/js/jquery.barrating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/jquery.barrating.min.js -------------------------------------------------------------------------------- /public/assets/js/kelly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/kelly.js -------------------------------------------------------------------------------- /public/assets/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/maps.js -------------------------------------------------------------------------------- /public/assets/js/masonry.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/masonry.pkgd.min.js -------------------------------------------------------------------------------- /public/assets/js/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/material.js -------------------------------------------------------------------------------- /public/assets/js/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/morris.js -------------------------------------------------------------------------------- /public/assets/js/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/morris.min.js -------------------------------------------------------------------------------- /public/assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/popper.min.js -------------------------------------------------------------------------------- /public/assets/js/quill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/quill.js -------------------------------------------------------------------------------- /public/assets/js/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/raphael-min.js -------------------------------------------------------------------------------- /public/assets/js/rating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/rating.min.js -------------------------------------------------------------------------------- /public/assets/js/sweetalert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/sweetalert.js -------------------------------------------------------------------------------- /public/assets/js/table-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/table-treeview.js -------------------------------------------------------------------------------- /public/assets/js/tilt.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/tilt.jquery.min.js -------------------------------------------------------------------------------- /public/assets/js/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/tree.js -------------------------------------------------------------------------------- /public/assets/js/usaLow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/usaLow.js -------------------------------------------------------------------------------- /public/assets/js/validator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/validator.min.js -------------------------------------------------------------------------------- /public/assets/js/worldLow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/js/worldLow.js -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/dripicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/dripicons.css -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/dripicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/dripicons.eot -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/dripicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/dripicons.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/dripicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/dripicons.ttf -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/dripicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/dripicons.woff -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/alarm.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/bell.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/blog.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/bold.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/box.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/brush.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/card.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/cart.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/clock.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/cloud.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/code.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/copy.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/crop.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/cross.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/disc.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/dot.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/enter.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/exit.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/feed.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/flag.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/gear.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/heart.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/help.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/home.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/inbox.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/jewel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/jewel.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/link.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/list.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/lock.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/mail.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/map.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/menu.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/meter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/meter.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/minus.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/move.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/music.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/phone.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/photo.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/pill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/pill.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/pin.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/plus.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/power.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/print.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/pulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/pulse.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/reply.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/scale.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/skip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/skip.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/stack.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/star.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/store.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/swap.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/tag.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/tags.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/to-do.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/to-do.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/trash.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/user.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/web.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/wifi.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/icons/wrong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/icons/wrong.svg -------------------------------------------------------------------------------- /public/assets/vendor/@icon/dripicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/@icon/dripicons/manifest.json -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/bootstrap/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/bootstrap/main.css -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/bootstrap/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/bootstrap/main.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/LICENSE.txt -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/README.md -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/af.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/ar.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/bg.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/bs.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/ca.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/cs.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/da.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/de.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/el.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/es.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/et.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/eu.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/fa.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/fi.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/fr.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/gl.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/he.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/hi.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/hr.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/hu.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/id.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/is.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/it.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/ja.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/ka.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/kk.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/ko.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/lb.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/lt.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/lv.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/mk.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/ms.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/nb.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/nl.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/nn.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/pl.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/pt.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/locales/ro.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/main.css -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/main.d.ts -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/core/main.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/daygrid/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/daygrid/main.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/list/README.md -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/list/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/list/main.css -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/list/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/list/main.d.ts -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/list/main.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/luxon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/luxon/README.md -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/luxon/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/luxon/main.d.ts -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/luxon/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/luxon/main.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/moment/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/moment/main.js -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/rrule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/rrule/README.md -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/rrule/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/rrule/main.d.ts -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/rrule/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/fullcalendar/rrule/main.js -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/collection/index.js: -------------------------------------------------------------------------------- 1 | export { addIcons } from './components/icon/utils'; 2 | -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/esm/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/esm/index.mjs -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/esm/loader.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/esm/loader.mjs -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./cjs/index.cjs.js'); 2 | -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/index.mjs: -------------------------------------------------------------------------------- 1 | export * from './esm-es5/index.mjs'; -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/ionicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/ionicons.js -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/ionicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/ionicons.json -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/loader/cdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/loader/cdn.js -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/add.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/alarm.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/albums.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/albums.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/alert.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/apps.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/at.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/attach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/attach.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/basket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/basket.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/beaker.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/bed.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/beer.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/boat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/boat.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/body.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/body.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/book.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/brush.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/bug.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/build.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/bulb.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/bus.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/cafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/cafe.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/call.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/camera.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/car.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/card.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/cart.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/cash.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/close.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/cloud.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/cloudy.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/code.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/cog.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/copy.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/create.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/create.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/crop.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/cube.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/cut.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/disc.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/ear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/ear.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/earth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/earth.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/easel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/easel.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/egg.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/enter.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/exit.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/expand.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/eye.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/female.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/film.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/filter.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/flag.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/flame.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/flash.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/flask.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/flower.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/folder.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/funnel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/funnel.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/gift.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/globe.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/golf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/golf.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/grid.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/hammer.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/happy.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/heart.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/help.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/home.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/image.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/images.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/key.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/keypad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/keypad.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/laptop.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/layers.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/leaf.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/link.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/list.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/locate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/locate.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/log-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/log-in.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/magnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/magnet.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/mail.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/male.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/man.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/map.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/medal.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/medkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/medkit.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/menu.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/mic.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/moon.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/move.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/open.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/pause.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/paw.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/pencil.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/people.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/person.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/pin.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/pint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/pint.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/pizza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/pizza.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/planet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/planet.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/play.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/podium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/podium.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/power.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/print.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/pulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/pulse.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/push.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/push.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/radio.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/rainy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/rainy.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/reader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/reader.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/reload.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/remove.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/repeat.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/resize.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/ribbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/ribbon.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/rocket.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/rose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/rose.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/sad.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/save.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/scan.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/school.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/search.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/send.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/server.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/shapes.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/share.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/shield.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/shirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/shirt.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/skull.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/snow.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/square.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/star.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/stop.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/subway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/subway.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/sunny.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/sync.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/text.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/time.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/timer.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/today.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/toggle.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/train.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/trash.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/trophy.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/tv.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/walk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/walk.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/wallet.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/watch.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/water.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/wifi.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/wine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/wine.svg -------------------------------------------------------------------------------- /public/assets/vendor/ionicons/dist/svg/woman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/ionicons/dist/svg/woman.svg -------------------------------------------------------------------------------- /public/assets/vendor/mapbox/mapbox-gl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/mapbox/mapbox-gl.css -------------------------------------------------------------------------------- /public/assets/vendor/remixicon/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/assets/vendor/remixicon/License -------------------------------------------------------------------------------- /public/capturas/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/capturas/01.png -------------------------------------------------------------------------------- /public/capturas/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/capturas/02.png -------------------------------------------------------------------------------- /public/capturas/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/capturas/03.png -------------------------------------------------------------------------------- /public/capturas/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/capturas/04.png -------------------------------------------------------------------------------- /public/capturas/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/capturas/05.png -------------------------------------------------------------------------------- /public/capturas/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/capturas/06.png -------------------------------------------------------------------------------- /public/capturas/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/capturas/07.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/advance-salary/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/advance-salary/create.blade.php -------------------------------------------------------------------------------- /resources/views/advance-salary/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/advance-salary/edit.blade.php -------------------------------------------------------------------------------- /resources/views/advance-salary/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/advance-salary/index.blade.php -------------------------------------------------------------------------------- /resources/views/attendence/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/attendence/create.blade.php -------------------------------------------------------------------------------- /resources/views/attendence/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/attendence/edit.blade.php -------------------------------------------------------------------------------- /resources/views/attendence/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/attendence/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/body/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/auth/body/main.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/categories/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/categories/create.blade.php -------------------------------------------------------------------------------- /resources/views/categories/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/categories/edit.blade.php -------------------------------------------------------------------------------- /resources/views/categories/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/categories/index.blade.php -------------------------------------------------------------------------------- /resources/views/customers/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/customers/create.blade.php -------------------------------------------------------------------------------- /resources/views/customers/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/customers/edit.blade.php -------------------------------------------------------------------------------- /resources/views/customers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/customers/index.blade.php -------------------------------------------------------------------------------- /resources/views/customers/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/customers/show.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard/body/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/dashboard/body/footer.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard/body/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/dashboard/body/main.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard/body/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/dashboard/body/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard/body/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/dashboard/body/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/dashboard/index.blade.php -------------------------------------------------------------------------------- /resources/views/database/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/database/index.blade.php -------------------------------------------------------------------------------- /resources/views/employees/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/employees/create.blade.php -------------------------------------------------------------------------------- /resources/views/employees/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/employees/edit.blade.php -------------------------------------------------------------------------------- /resources/views/employees/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/employees/index.blade.php -------------------------------------------------------------------------------- /resources/views/employees/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/employees/show.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/orders/complete-orders.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/orders/complete-orders.blade.php -------------------------------------------------------------------------------- /resources/views/orders/details-order.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/orders/details-order.blade.php -------------------------------------------------------------------------------- /resources/views/orders/invoice-order.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/orders/invoice-order.blade.php -------------------------------------------------------------------------------- /resources/views/orders/pending-due.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/orders/pending-due.blade.php -------------------------------------------------------------------------------- /resources/views/orders/pending-orders.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/orders/pending-orders.blade.php -------------------------------------------------------------------------------- /resources/views/pay-salary/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/pay-salary/create.blade.php -------------------------------------------------------------------------------- /resources/views/pay-salary/history.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/pay-salary/history.blade.php -------------------------------------------------------------------------------- /resources/views/pay-salary/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/pay-salary/index.blade.php -------------------------------------------------------------------------------- /resources/views/pos/create-invoice.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/pos/create-invoice.blade.php -------------------------------------------------------------------------------- /resources/views/pos/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/pos/index.blade.php -------------------------------------------------------------------------------- /resources/views/pos/print-invoice.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/pos/print-invoice.blade.php -------------------------------------------------------------------------------- /resources/views/pos/text-item.blade.php: -------------------------------------------------------------------------------- 1 | {{ $productItem }} 2 | -------------------------------------------------------------------------------- /resources/views/products/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/products/create.blade.php -------------------------------------------------------------------------------- /resources/views/products/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/products/edit.blade.php -------------------------------------------------------------------------------- /resources/views/products/import.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/products/import.blade.php -------------------------------------------------------------------------------- /resources/views/products/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/products/index.blade.php -------------------------------------------------------------------------------- /resources/views/products/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/products/show.blade.php -------------------------------------------------------------------------------- /resources/views/profile/change-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/profile/change-password.blade.php -------------------------------------------------------------------------------- /resources/views/profile/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/profile/edit.blade.php -------------------------------------------------------------------------------- /resources/views/profile/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/profile/index.blade.php -------------------------------------------------------------------------------- /resources/views/roles/permission-create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/roles/permission-create.blade.php -------------------------------------------------------------------------------- /resources/views/roles/permission-edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/roles/permission-edit.blade.php -------------------------------------------------------------------------------- /resources/views/roles/permission-index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/roles/permission-index.blade.php -------------------------------------------------------------------------------- /resources/views/roles/role-create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/roles/role-create.blade.php -------------------------------------------------------------------------------- /resources/views/roles/role-edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/roles/role-edit.blade.php -------------------------------------------------------------------------------- /resources/views/roles/role-index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/roles/role-index.blade.php -------------------------------------------------------------------------------- /resources/views/stock/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/stock/index.blade.php -------------------------------------------------------------------------------- /resources/views/suppliers/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/suppliers/create.blade.php -------------------------------------------------------------------------------- /resources/views/suppliers/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/suppliers/edit.blade.php -------------------------------------------------------------------------------- /resources/views/suppliers/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/suppliers/index.blade.php -------------------------------------------------------------------------------- /resources/views/suppliers/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/suppliers/show.blade.php -------------------------------------------------------------------------------- /resources/views/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/users/create.blade.php -------------------------------------------------------------------------------- /resources/views/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/clockwork/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/storage/clockwork/.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yorchavez9/sistema-punto-de-venta/HEAD/vite.config.js --------------------------------------------------------------------------------