├── .all-contributorsrc ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── backend-server ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── Dockerfile ├── app │ ├── Console │ │ ├── Commands │ │ │ └── FillInitialPromptCommand.php │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Api │ │ │ └── Controllers │ │ │ │ └── MessageController.php │ │ ├── Controllers │ │ │ ├── ChatbotController.php │ │ │ ├── ChatbotSettingController.php │ │ │ ├── Controller.php │ │ │ ├── OnboardingController.php │ │ │ ├── PdfDataSourceController.php │ │ │ └── WebsiteDataSourceController.php │ │ ├── Enums │ │ │ ├── ChatBotInitialPromptEnum.php │ │ │ ├── ChatbotStatusType.php │ │ │ ├── IngestStatusType.php │ │ │ └── WebsiteDataSourceStatusType.php │ │ ├── Events │ │ │ ├── ChatbotWasCreated.php │ │ │ ├── CodebaseDataSourceWasAdded.php │ │ │ ├── PdfDataSourceWasAdded.php │ │ │ ├── WebsiteDataSourceCrawlingWasCompleted.php │ │ │ └── WebsiteDataSourceWasAdded.php │ │ ├── GetLogoFromUrlTrait.php │ │ ├── Interfaces │ │ │ └── DataSourceInterface.php │ │ ├── Kernel.php │ │ ├── Listeners │ │ │ ├── CreateWebsiteDataSourceIfNeeded.php │ │ │ ├── IngestCodebaseDataSource.php │ │ │ ├── IngestPdfDataSource.php │ │ │ ├── IngestWebsiteDataSource.php │ │ │ └── StartRecursiveCrawler.php │ │ ├── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── EncryptCookies.php │ │ │ ├── IframeMiddleware.php │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustHosts.php │ │ │ ├── TrustProxies.php │ │ │ ├── ValidateSignature.php │ │ │ └── VerifyCsrfToken.php │ │ ├── Requests │ │ │ ├── AddWebsiteDataSourceRequest.php │ │ │ ├── CreateChatbotRequest.php │ │ │ ├── CreateChatbotViaCodebaseRequest.php │ │ │ ├── CreateChatbotViaPdfFlowRequest.php │ │ │ ├── SendChatMessageRequest.php │ │ │ ├── UpdateCharacterSettingsRequest.php │ │ │ └── UploadPdfFilesRequest.php │ │ ├── Responses │ │ │ └── ChatbotResponse.php │ │ ├── Rules │ │ │ └── GithubRepoUrlRule.php │ │ └── Services │ │ │ └── HandlePdfDataSource.php │ ├── Models │ │ ├── ChatHistory.php │ │ ├── Chatbot.php │ │ ├── ChatbotSetting.php │ │ ├── CodebaseDataSource.php │ │ ├── CrawledPages.php │ │ ├── PdfDataSource.php │ │ ├── User.php │ │ └── WebsiteDataSource.php │ └── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php ├── artisan ├── bootstrap │ ├── app.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 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_05_12_110303_create_chatbots_table.php │ │ ├── 2023_05_12_110323_create_chat_histories_table.php │ │ ├── 2023_05_12_110357_create_chatbot_settings_table.php │ │ ├── 2023_05_12_110416_create_onboarding_steps_table.php │ │ ├── 2023_05_12_161106_create_website_data_sources_table.php │ │ ├── 2023_05_12_214227_create_jobs_table.php │ │ ├── 2023_05_14_114015_create_crawled_pages_table.php │ │ ├── 2023_05_14_222511_create_text_data_sources_table.php │ │ ├── 2023_05_14_222525_create_pdf_data_sources_table.php │ │ ├── 2023_05_14_222537_create_notion_data_sources_table.php │ │ ├── 2023_06_01_200443_drop_content_columns_from_crawled_pages_table.php │ │ ├── 2023_06_02_174045_create_codebase_data_sources_table.php │ │ ├── 2023_06_15_105434_add_ingest_status_to_pdf_data_sources_table.php │ │ └── 2023_06_17_102310_add_session_id_to_chat_histories_table.php │ └── seeders │ │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── chat.css │ ├── chat.js │ ├── dashboard │ │ ├── css │ │ │ ├── additional-styles │ │ │ │ ├── flatpickr.css │ │ │ │ ├── range-slider.css │ │ │ │ ├── theme.css │ │ │ │ ├── toggle-switch.css │ │ │ │ └── utility-patterns.css │ │ │ ├── style.css │ │ │ └── vendors │ │ │ │ └── flatpickr.min.css │ │ ├── images │ │ │ ├── 404-illustration.svg │ │ │ ├── announcement-icon.svg │ │ │ ├── applications-image-01.jpg │ │ │ ├── applications-image-02.jpg │ │ │ ├── applications-image-03.jpg │ │ │ ├── applications-image-04.jpg │ │ │ ├── applications-image-05.jpg │ │ │ ├── applications-image-06.jpg │ │ │ ├── applications-image-07.jpg │ │ │ ├── applications-image-08.jpg │ │ │ ├── applications-image-09.jpg │ │ │ ├── applications-image-10.jpg │ │ │ ├── applications-image-11.jpg │ │ │ ├── applications-image-12.jpg │ │ │ ├── applications-image-13.jpg │ │ │ ├── applications-image-14.jpg │ │ │ ├── applications-image-15.jpg │ │ │ ├── applications-image-16.jpg │ │ │ ├── applications-image-17.jpg │ │ │ ├── applications-image-18.jpg │ │ │ ├── applications-image-19.jpg │ │ │ ├── applications-image-20.jpg │ │ │ ├── applications-image-21.jpg │ │ │ ├── applications-image-22.jpg │ │ │ ├── applications-image-23.jpg │ │ │ ├── applications-image-24.jpg │ │ │ ├── applications-image-25.jpg │ │ │ ├── applications-image-26.jpg │ │ │ ├── applications-image-27.jpg │ │ │ ├── applications-image-28.jpg │ │ │ ├── applications-image-29.jpg │ │ │ ├── applications-image-30.jpg │ │ │ ├── applications-image-31.jpg │ │ │ ├── applications-image-32.jpg │ │ │ ├── auth-decoration.png │ │ │ ├── auth-image.jpg │ │ │ ├── avatar-01.jpg │ │ │ ├── avatar-02.jpg │ │ │ ├── avatar-03.jpg │ │ │ ├── avatar-04.jpg │ │ │ ├── avatar-05.jpg │ │ │ ├── avatar-06.jpg │ │ │ ├── channel-01.png │ │ │ ├── channel-02.png │ │ │ ├── channel-03.png │ │ │ ├── chat-image.jpg │ │ │ ├── chat-widget-info.gif │ │ │ ├── company-bg.jpg │ │ │ ├── company-icon-01.svg │ │ │ ├── company-icon-02.svg │ │ │ ├── company-icon-03.svg │ │ │ ├── company-icon-04.svg │ │ │ ├── company-icon-05.svg │ │ │ ├── company-icon-06.svg │ │ │ ├── company-icon-07.svg │ │ │ ├── company-icon-08.svg │ │ │ ├── favicon.png │ │ │ ├── feed-image-01.jpg │ │ │ ├── feed-image-02.jpg │ │ │ ├── group-avatar-01.png │ │ │ ├── group-avatar-02.png │ │ │ ├── group-avatar-03.png │ │ │ ├── group-avatar-04.png │ │ │ ├── icon-01.svg │ │ │ ├── icon-02.svg │ │ │ ├── icon-03.svg │ │ │ ├── inbox-image.jpg │ │ │ ├── mastercard-circle.png │ │ │ ├── meetup-image.jpg │ │ │ ├── meetup-photo-01.jpg │ │ │ ├── meetup-photo-02.jpg │ │ │ ├── meetup-photo-03.jpg │ │ │ ├── meetups-thumb-01.jpg │ │ │ ├── meetups-thumb-02.jpg │ │ │ ├── meetups-thumb-03.jpg │ │ │ ├── meetups-thumb-04.jpg │ │ │ ├── meetups-thumb-05.jpg │ │ │ ├── meetups-thumb-06.jpg │ │ │ ├── meetups-thumb-07.jpg │ │ │ ├── meetups-thumb-08.jpg │ │ │ ├── modal-image.jpg │ │ │ ├── onboarding-image.jpg │ │ │ ├── pay-bg.jpg │ │ │ ├── product-image.jpg │ │ │ ├── profile-bg.jpg │ │ │ ├── related-product-01.jpg │ │ │ ├── related-product-02.jpg │ │ │ ├── related-product-03.jpg │ │ │ ├── search-widget-info.gif │ │ │ ├── task-image-01.jpg │ │ │ ├── task-image-02.jpg │ │ │ ├── transactions-image-01.svg │ │ │ ├── transactions-image-02.svg │ │ │ ├── transactions-image-03.svg │ │ │ ├── transactions-image-04.svg │ │ │ ├── transactions-image-05.svg │ │ │ ├── transactions-image-06.svg │ │ │ ├── transactions-image-07.svg │ │ │ ├── transactions-image-08.svg │ │ │ ├── user-128-01.jpg │ │ │ ├── user-28-01.jpg │ │ │ ├── user-28-02.jpg │ │ │ ├── user-28-03.jpg │ │ │ ├── user-28-04.jpg │ │ │ ├── user-28-05.jpg │ │ │ ├── user-28-06.jpg │ │ │ ├── user-28-07.jpg │ │ │ ├── user-28-08.jpg │ │ │ ├── user-28-09.jpg │ │ │ ├── user-28-10.jpg │ │ │ ├── user-28-11.jpg │ │ │ ├── user-28-12.jpg │ │ │ ├── user-32-01.jpg │ │ │ ├── user-32-02.jpg │ │ │ ├── user-32-03.jpg │ │ │ ├── user-32-04.jpg │ │ │ ├── user-32-05.jpg │ │ │ ├── user-32-06.jpg │ │ │ ├── user-32-07.jpg │ │ │ ├── user-32-08.jpg │ │ │ ├── user-36-01.jpg │ │ │ ├── user-36-02.jpg │ │ │ ├── user-36-03.jpg │ │ │ ├── user-36-04.jpg │ │ │ ├── user-36-05.jpg │ │ │ ├── user-40-01.jpg │ │ │ ├── user-40-02.jpg │ │ │ ├── user-40-03.jpg │ │ │ ├── user-40-04.jpg │ │ │ ├── user-40-05.jpg │ │ │ ├── user-40-06.jpg │ │ │ ├── user-40-07.jpg │ │ │ ├── user-40-08.jpg │ │ │ ├── user-40-09.jpg │ │ │ ├── user-40-10.jpg │ │ │ ├── user-40-11.jpg │ │ │ ├── user-40-12.jpg │ │ │ ├── user-64-01.jpg │ │ │ ├── user-64-02.jpg │ │ │ ├── user-64-03.jpg │ │ │ ├── user-64-04.jpg │ │ │ ├── user-64-05.jpg │ │ │ ├── user-64-06.jpg │ │ │ ├── user-64-07.jpg │ │ │ ├── user-64-08.jpg │ │ │ ├── user-64-09.jpg │ │ │ ├── user-64-10.jpg │ │ │ ├── user-64-11.jpg │ │ │ ├── user-64-12.jpg │ │ │ ├── user-64-13.jpg │ │ │ ├── user-64-14.jpg │ │ │ ├── user-avatar-32.png │ │ │ ├── user-avatar-80.png │ │ │ └── visa-cricle.png │ │ ├── js │ │ │ ├── analytics-charts.js │ │ │ ├── dashboard-charts.js │ │ │ ├── fintech-charts.js │ │ │ ├── flatpickr-init.js │ │ │ └── vendors │ │ │ │ ├── alpinejs.min.js │ │ │ │ ├── chart.js │ │ │ │ ├── chartjs-adapter-moment.js │ │ │ │ ├── flatpickr.js │ │ │ │ └── moment.js │ │ └── style.css │ ├── favicon.ico │ ├── index.php │ ├── notification.mp3 │ ├── operator.2b750c4a-a89eff38.mp3 │ ├── robots.txt │ ├── search.js │ ├── submit.3abafccd-cfb52721.mp3 │ └── vendor │ │ └── telescope │ │ ├── app-dark.css │ │ ├── app.css │ │ ├── app.js │ │ ├── favicon.ico │ │ └── mix-manifest.json ├── resources │ ├── css │ │ └── app.css │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ └── views │ │ ├── chat.blade.php │ │ ├── index.blade.php │ │ ├── layout │ │ ├── app.blade.php │ │ ├── header.blade.php │ │ ├── sidebar-bot-page.blade.php │ │ └── sidebar.blade.php │ │ ├── onboarding │ │ ├── other-data-sources-pdf.blade.php │ │ ├── other-data-sources-website.blade.php │ │ ├── step-0.blade.php │ │ ├── step-1.blade.php │ │ ├── step-2-codebase.blade.php │ │ ├── step-2-pdf.blade.php │ │ ├── step-2.blade.php │ │ ├── step-3.blade.php │ │ └── step-4.blade.php │ │ ├── settings-analytics.blade.php │ │ ├── settings-data.blade.php │ │ ├── settings-history.blade.php │ │ ├── settings-integrations.blade.php │ │ ├── settings-theme.blade.php │ │ ├── settings.blade.php │ │ └── widgets │ │ ├── chat-history.blade.php │ │ └── data-sources-updates.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── .gitignore │ │ │ └── data │ │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── vite.config.js ├── common.env ├── dj_backend_server ├── .dockerignore ├── .gitignore ├── .vscode │ ├── launch.json │ └── settings.json ├── CHANGELOG.MD ├── Dockerfile ├── Makefile ├── api │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── chatbot_info.py │ ├── configs │ │ ├── __init__.py │ │ └── base.py │ ├── data_sources │ │ ├── __init__.py │ │ ├── codebase_handler.py │ │ ├── pdf_handler.py │ │ └── website_handler.py │ ├── enums │ │ ├── __init__.py │ │ ├── embedding_type.py │ │ └── store_type.py │ ├── interfaces.py │ ├── middleware │ │ └── cors_middleware.py │ ├── models.py │ ├── pdf_handler.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── custom_pdf_loader.py │ │ ├── get_embeddings.py │ │ ├── get_openai_llm.py │ │ ├── get_prompts.py │ │ ├── get_vector_store.py │ │ ├── init_vector_store.py │ │ └── make_chain.py │ └── views │ │ ├── __init__.py │ │ ├── views_auth.py │ │ ├── views_chat.py │ │ ├── views_ingest.py │ │ └── views_message.py ├── bugs_features_enhancements.md ├── channels │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── consumers.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── routing.py │ ├── tests.py │ └── views.py ├── dj_backend_server │ ├── __init__.py │ ├── asgi.py │ ├── celery.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── docker-compose.linux.yaml ├── docker-compose.yaml ├── docs │ ├── building_with_docker.md │ ├── crawled_pages+website_data_source+chatbot.md │ └── todo.md ├── entrypoint.sh ├── example.env ├── locale │ ├── Readme.MD │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── ro │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── manage.py ├── management │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── management │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── create_superuser.py │ │ │ ├── inspire.py │ │ │ └── sync_models.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── nginx │ ├── nginx.template.conf │ ├── readme.md │ └── ssl │ │ └── cert.csr ├── pyvenv.cfg ├── readme.md ├── remove_all_migs.sh ├── requirements.txt └── web │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── decorators │ └── error_handler.py │ ├── enums │ ├── __init__.py │ ├── chatbot_initial_prompt_enum.py │ ├── common_enums.py │ ├── ingest_status_enum.py │ └── website_data_source_status_enum.py │ ├── forms │ ├── __init__.py │ ├── chatbot_form.py │ └── create_chatbot_via_codebase_form.py │ ├── interfaces │ ├── dashboard.py │ └── data_source_interface.py │ ├── listeners │ ├── __init__.py │ ├── create_website_data_source_if_needed.py │ ├── ingest_codebase_data_source.py │ ├── ingest_pdf_data_source.py │ ├── ingest_website_data_source.py │ └── website_data_source_added.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_remove_pdfdatasource_chatbot_id_and_more.py │ ├── 0003_alter_pdfdatasource_id.py │ ├── 0004_pdfdatasource_files_info.py │ ├── 0005_pdfdatasourceerrorlog.py │ ├── 0006_crawledpages_content_file.py │ ├── 0007_alter_crawledpages_id.py │ ├── 0008_delete_pdfdatasourceerrorlog.py │ ├── 0009_chatbot_user.py │ ├── 0010_chathistory_feedback.py │ └── __init__.py │ ├── models │ ├── __init__.py │ ├── chat_histories.py │ ├── chatbot.py │ ├── chatbot_settings.py │ ├── codebase_data_sources.py │ ├── crawled_pages.py │ ├── failed_jobs.py │ ├── jobs.py │ ├── notion_data_sources.py │ ├── onboarding_steps.py │ ├── password_reset_token.py │ ├── pdf_data_sources.py │ ├── personal_access_tokens.py │ ├── text_data_sources.py │ ├── user.py │ └── website_data_sources.py │ ├── services │ ├── __init__.py │ ├── chat_history_service.py │ └── handle_pdf_datasource.py │ ├── signals │ ├── __init__.py │ ├── chatbot_was_created.py │ ├── codebase_datasource_was_created.py │ ├── pdf_datasource_was_added.py │ ├── website_data_source_crawling_was_completed.py │ └── website_data_source_was_added.py │ ├── static │ ├── .htaccess │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── assets │ │ ├── css │ │ │ ├── icons.css │ │ │ ├── icons.min.css │ │ │ ├── icons.min.css.map │ │ │ ├── theme.css │ │ │ ├── theme.min.css │ │ │ └── theme.min.css.map │ │ ├── fonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ │ ├── images │ │ │ ├── 404-error.svg │ │ │ ├── 500-error.svg │ │ │ ├── brands │ │ │ │ ├── bitbucket.png │ │ │ │ ├── dribbble.png │ │ │ │ ├── dropbox.png │ │ │ │ ├── g-suite.png │ │ │ │ ├── github.png │ │ │ │ ├── instagram.png │ │ │ │ ├── messenger.png │ │ │ │ └── slack.png │ │ │ ├── favicon.ico │ │ │ ├── flags │ │ │ │ ├── french.jpg │ │ │ │ ├── germany.jpg │ │ │ │ ├── italy.jpg │ │ │ │ ├── russia.jpg │ │ │ │ ├── spain.jpg │ │ │ │ └── us.jpg │ │ │ ├── logo-dark.png │ │ │ ├── logo-light.png │ │ │ ├── logo-sm.png │ │ │ ├── maintenance.svg │ │ │ └── users │ │ │ │ ├── avatar-1.jpg │ │ │ │ ├── avatar-10.jpg │ │ │ │ ├── avatar-2.jpg │ │ │ │ ├── avatar-3.jpg │ │ │ │ ├── avatar-4.jpg │ │ │ │ ├── avatar-5.jpg │ │ │ │ ├── avatar-6.jpg │ │ │ │ ├── avatar-7.jpg │ │ │ │ ├── avatar-8.jpg │ │ │ │ └── avatar-9.jpg │ │ ├── js │ │ │ ├── app.js │ │ │ ├── app.min.js │ │ │ ├── head.js │ │ │ ├── head.min.js │ │ │ └── pages │ │ │ │ ├── calendar.js │ │ │ │ ├── calendar.min.js │ │ │ │ ├── charts-apex.js │ │ │ │ ├── charts-apex.min.js │ │ │ │ ├── dashboard.js │ │ │ │ ├── dashboard.min.js │ │ │ │ ├── form-editor.js │ │ │ │ ├── form-editor.min.js │ │ │ │ ├── form-inputmask.js │ │ │ │ ├── form-inputmask.min.js │ │ │ │ ├── maps-google.js │ │ │ │ ├── maps-google.min.js │ │ │ │ ├── maps-vector.js │ │ │ │ ├── maps-vector.min.js │ │ │ │ ├── ratings.js │ │ │ │ ├── ratings.min.js │ │ │ │ ├── swiper.js │ │ │ │ └── swiper.min.js │ │ └── libs │ │ │ ├── @fortawesome │ │ │ └── fontawesome-free │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── attribution.js │ │ │ │ ├── css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-font-face.min.css │ │ │ │ ├── v4-shims.min.css │ │ │ │ └── v5-font-face.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 │ │ │ │ ├── metadata │ │ │ │ └── icon-families.json │ │ │ │ ├── sprites │ │ │ │ ├── brands.svg │ │ │ │ ├── regular.svg │ │ │ │ └── solid.svg │ │ │ │ ├── svgs │ │ │ │ ├── brands │ │ │ │ │ ├── 42-group.svg │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── accessible-icon.svg │ │ │ │ │ ├── accusoft.svg │ │ │ │ │ ├── adn.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.svg │ │ │ │ │ ├── bilibili.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 │ │ │ │ │ ├── bots.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 │ │ │ │ │ ├── cloudflare.svg │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ ├── cmplid.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 │ │ │ │ │ ├── debian.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.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.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.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.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── golang.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-pay.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── guilded.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ ├── hashnode.svg │ │ │ │ │ ├── hips.svg │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ ├── hive.svg │ │ │ │ │ ├── hooli.svg │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ ├── ideal.svg │ │ │ │ │ ├── imdb.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── instalod.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.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.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.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── mendeley.svg │ │ │ │ │ ├── meta.svg │ │ │ │ │ ├── microblog.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.svg │ │ │ │ │ ├── mixer.svg │ │ │ │ │ ├── mizuni.svg │ │ │ │ │ ├── modx.svg │ │ │ │ │ ├── monero.svg │ │ │ │ │ ├── napster.svg │ │ │ │ │ ├── neos.svg │ │ │ │ │ ├── nfc-directional.svg │ │ │ │ │ ├── nfc-symbol.svg │ │ │ │ │ ├── nimblr.svg │ │ │ │ │ ├── node-js.svg │ │ │ │ │ ├── node.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── ns8.svg │ │ │ │ │ ├── nutritionix.svg │ │ │ │ │ ├── octopus-deploy.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── odysee.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── orcid.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── padlet.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── perbyte.svg │ │ │ │ │ ├── periscope.svg │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ ├── pix.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.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 │ │ │ │ │ ├── screenpal.svg │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopify.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── sitrox.svg │ │ │ │ │ ├── sketch.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── sourcetree.svg │ │ │ │ │ ├── space-awesome.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── speaker-deck.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── square-behance.svg │ │ │ │ │ ├── square-dribbble.svg │ │ │ │ │ ├── square-facebook.svg │ │ │ │ │ ├── square-font-awesome-stroke.svg │ │ │ │ │ ├── square-font-awesome.svg │ │ │ │ │ ├── square-git.svg │ │ │ │ │ ├── square-github.svg │ │ │ │ │ ├── square-gitlab.svg │ │ │ │ │ ├── square-google-plus.svg │ │ │ │ │ ├── square-hacker-news.svg │ │ │ │ │ ├── square-instagram.svg │ │ │ │ │ ├── square-js.svg │ │ │ │ │ ├── square-lastfm.svg │ │ │ │ │ ├── square-odnoklassniki.svg │ │ │ │ │ ├── square-pied-piper.svg │ │ │ │ │ ├── square-pinterest.svg │ │ │ │ │ ├── square-reddit.svg │ │ │ │ │ ├── square-snapchat.svg │ │ │ │ │ ├── square-steam.svg │ │ │ │ │ ├── square-threads.svg │ │ │ │ │ ├── square-tumblr.svg │ │ │ │ │ ├── square-twitter.svg │ │ │ │ │ ├── square-viadeo.svg │ │ │ │ │ ├── square-vimeo.svg │ │ │ │ │ ├── square-whatsapp.svg │ │ │ │ │ ├── square-x-twitter.svg │ │ │ │ │ ├── square-xing.svg │ │ │ │ │ ├── square-youtube.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ ├── stackpath.svg │ │ │ │ │ ├── staylinked.svg │ │ │ │ │ ├── steam-symbol.svg │ │ │ │ │ ├── steam.svg │ │ │ │ │ ├── sticker-mule.svg │ │ │ │ │ ├── strava.svg │ │ │ │ │ ├── stripe-s.svg │ │ │ │ │ ├── stripe.svg │ │ │ │ │ ├── stubber.svg │ │ │ │ │ ├── studiovinari.svg │ │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ ├── superpowers.svg │ │ │ │ │ ├── supple.svg │ │ │ │ │ ├── suse.svg │ │ │ │ │ ├── swift.svg │ │ │ │ │ ├── symfony.svg │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── think-peaks.svg │ │ │ │ │ ├── threads.svg │ │ │ │ │ ├── tiktok.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── typo3.svg │ │ │ │ │ ├── uber.svg │ │ │ │ │ ├── ubuntu.svg │ │ │ │ │ ├── uikit.svg │ │ │ │ │ ├── umbraco.svg │ │ │ │ │ ├── uncharted.svg │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ ├── unity.svg │ │ │ │ │ ├── unsplash.svg │ │ │ │ │ ├── untappd.svg │ │ │ │ │ ├── ups.svg │ │ │ │ │ ├── usb.svg │ │ │ │ │ ├── usps.svg │ │ │ │ │ ├── ussunnah.svg │ │ │ │ │ ├── vaadin.svg │ │ │ │ │ ├── viacoin.svg │ │ │ │ │ ├── viadeo.svg │ │ │ │ │ ├── viber.svg │ │ │ │ │ ├── vimeo-v.svg │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ ├── vine.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── vnv.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── watchman-monitoring.svg │ │ │ │ │ ├── waze.svg │ │ │ │ │ ├── weebly.svg │ │ │ │ │ ├── weibo.svg │ │ │ │ │ ├── weixin.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wirsindhandwerk.svg │ │ │ │ │ ├── wix.svg │ │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ │ ├── wodu.svg │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ ├── wpressr.svg │ │ │ │ │ ├── x-twitter.svg │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yammer.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.svg │ │ │ │ │ ├── yarn.svg │ │ │ │ │ ├── yelp.svg │ │ │ │ │ ├── yoast.svg │ │ │ │ │ ├── youtube.svg │ │ │ │ │ └── zhihu.svg │ │ │ │ ├── regular │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-days.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-xmark.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chess-bishop.svg │ │ │ │ │ ├── chess-king.svg │ │ │ │ │ ├── chess-knight.svg │ │ │ │ │ ├── chess-pawn.svg │ │ │ │ │ ├── chess-queen.svg │ │ │ │ │ ├── chess-rook.svg │ │ │ │ │ ├── circle-check.svg │ │ │ │ │ ├── circle-dot.svg │ │ │ │ │ ├── circle-down.svg │ │ │ │ │ ├── circle-left.svg │ │ │ │ │ ├── circle-pause.svg │ │ │ │ │ ├── circle-play.svg │ │ │ │ │ ├── circle-question.svg │ │ │ │ │ ├── circle-right.svg │ │ │ │ │ ├── circle-stop.svg │ │ │ │ │ ├── circle-up.svg │ │ │ │ │ ├── circle-user.svg │ │ │ │ │ ├── circle-xmark.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── face-angry.svg │ │ │ │ │ ├── face-dizzy.svg │ │ │ │ │ ├── face-flushed.svg │ │ │ │ │ ├── face-frown-open.svg │ │ │ │ │ ├── face-frown.svg │ │ │ │ │ ├── face-grimace.svg │ │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ │ ├── face-grin-beam.svg │ │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ │ ├── face-grin-squint.svg │ │ │ │ │ ├── face-grin-stars.svg │ │ │ │ │ ├── face-grin-tears.svg │ │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ │ ├── face-grin-wide.svg │ │ │ │ │ ├── face-grin-wink.svg │ │ │ │ │ ├── face-grin.svg │ │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ │ ├── face-kiss.svg │ │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ │ ├── face-laugh.svg │ │ │ │ │ ├── face-meh-blank.svg │ │ │ │ │ ├── face-meh.svg │ │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ │ ├── face-sad-cry.svg │ │ │ │ │ ├── face-sad-tear.svg │ │ │ │ │ ├── face-smile-beam.svg │ │ │ │ │ ├── face-smile-wink.svg │ │ │ │ │ ├── face-smile.svg │ │ │ │ │ ├── face-surprise.svg │ │ │ │ │ ├── face-tired.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-lines.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file-zipper.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── floppy-disk.svg │ │ │ │ │ ├── folder-closed.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── hand-back-fist.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hand.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hard-drive.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ ├── money-bill-1.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── note-sticky.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pen-to-square.svg │ │ │ │ │ ├── rectangle-list.svg │ │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── share-from-square.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── square-caret-down.svg │ │ │ │ │ ├── square-caret-left.svg │ │ │ │ │ ├── square-caret-right.svg │ │ │ │ │ ├── square-caret-up.svg │ │ │ │ │ ├── square-check.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-minus.svg │ │ │ │ │ ├── square-plus.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half-stroke.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── trash-can.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ └── window-restore.svg │ │ │ │ └── solid │ │ │ │ │ ├── 0.svg │ │ │ │ │ ├── 1.svg │ │ │ │ │ ├── 2.svg │ │ │ │ │ ├── 3.svg │ │ │ │ │ ├── 4.svg │ │ │ │ │ ├── 5.svg │ │ │ │ │ ├── 6.svg │ │ │ │ │ ├── 7.svg │ │ │ │ │ ├── 8.svg │ │ │ │ │ ├── 9.svg │ │ │ │ │ ├── a.svg │ │ │ │ │ ├── address-book.svg │ │ │ │ │ ├── address-card.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── anchor-circle-check.svg │ │ │ │ │ ├── anchor-circle-exclamation.svg │ │ │ │ │ ├── anchor-circle-xmark.svg │ │ │ │ │ ├── anchor-lock.svg │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── angle-down.svg │ │ │ │ │ ├── angle-left.svg │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── angles-down.svg │ │ │ │ │ ├── angles-left.svg │ │ │ │ │ ├── angles-right.svg │ │ │ │ │ ├── angles-up.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-whole.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-down-1-9.svg │ │ │ │ │ ├── arrow-down-9-1.svg │ │ │ │ │ ├── arrow-down-a-z.svg │ │ │ │ │ ├── arrow-down-long.svg │ │ │ │ │ ├── arrow-down-short-wide.svg │ │ │ │ │ ├── arrow-down-up-across-line.svg │ │ │ │ │ ├── arrow-down-up-lock.svg │ │ │ │ │ ├── arrow-down-wide-short.svg │ │ │ │ │ ├── arrow-down-z-a.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-left-long.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-pointer.svg │ │ │ │ │ ├── arrow-right-arrow-left.svg │ │ │ │ │ ├── arrow-right-from-bracket.svg │ │ │ │ │ ├── arrow-right-long.svg │ │ │ │ │ ├── arrow-right-to-bracket.svg │ │ │ │ │ ├── arrow-right-to-city.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-rotate-left.svg │ │ │ │ │ ├── arrow-rotate-right.svg │ │ │ │ │ ├── arrow-trend-down.svg │ │ │ │ │ ├── arrow-trend-up.svg │ │ │ │ │ ├── arrow-turn-down.svg │ │ │ │ │ ├── arrow-turn-up.svg │ │ │ │ │ ├── arrow-up-1-9.svg │ │ │ │ │ ├── arrow-up-9-1.svg │ │ │ │ │ ├── arrow-up-a-z.svg │ │ │ │ │ ├── arrow-up-from-bracket.svg │ │ │ │ │ ├── arrow-up-from-ground-water.svg │ │ │ │ │ ├── arrow-up-from-water-pump.svg │ │ │ │ │ ├── arrow-up-long.svg │ │ │ │ │ ├── arrow-up-right-dots.svg │ │ │ │ │ ├── arrow-up-right-from-square.svg │ │ │ │ │ ├── arrow-up-short-wide.svg │ │ │ │ │ ├── arrow-up-wide-short.svg │ │ │ │ │ ├── arrow-up-z-a.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── arrows-down-to-line.svg │ │ │ │ │ ├── arrows-down-to-people.svg │ │ │ │ │ ├── arrows-left-right-to-line.svg │ │ │ │ │ ├── arrows-left-right.svg │ │ │ │ │ ├── arrows-rotate.svg │ │ │ │ │ ├── arrows-spin.svg │ │ │ │ │ ├── arrows-split-up-and-left.svg │ │ │ │ │ ├── arrows-to-circle.svg │ │ │ │ │ ├── arrows-to-dot.svg │ │ │ │ │ ├── arrows-to-eye.svg │ │ │ │ │ ├── arrows-turn-right.svg │ │ │ │ │ ├── arrows-turn-to-dots.svg │ │ │ │ │ ├── arrows-up-down-left-right.svg │ │ │ │ │ ├── arrows-up-down.svg │ │ │ │ │ ├── arrows-up-to-line.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── audio-description.svg │ │ │ │ │ ├── austral-sign.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── b.svg │ │ │ │ │ ├── baby-carriage.svg │ │ │ │ │ ├── baby.svg │ │ │ │ │ ├── backward-fast.svg │ │ │ │ │ ├── backward-step.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── bacon.svg │ │ │ │ │ ├── bacteria.svg │ │ │ │ │ ├── bacterium.svg │ │ │ │ │ ├── bag-shopping.svg │ │ │ │ │ ├── bahai.svg │ │ │ │ │ ├── baht-sign.svg │ │ │ │ │ ├── ban-smoking.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── bandage.svg │ │ │ │ │ ├── bangladeshi-taka-sign.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── bars-progress.svg │ │ │ │ │ ├── bars-staggered.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-bat-ball.svg │ │ │ │ │ ├── baseball.svg │ │ │ │ │ ├── basket-shopping.svg │ │ │ │ │ ├── basketball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── battery-quarter.svg │ │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ │ ├── bed-pulse.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer-mug-empty.svg │ │ │ │ │ ├── bell-concierge.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bezier-curve.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── biohazard.svg │ │ │ │ │ ├── bitcoin-sign.svg │ │ │ │ │ ├── blender-phone.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blog.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt-lightning.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-atlas.svg │ │ │ │ │ ├── book-bible.svg │ │ │ │ │ ├── book-bookmark.svg │ │ │ │ │ ├── book-journal-whills.svg │ │ │ │ │ ├── book-medical.svg │ │ │ │ │ ├── book-open-reader.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-quran.svg │ │ │ │ │ ├── book-skull.svg │ │ │ │ │ ├── book-tanakh.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── border-all.svg │ │ │ │ │ ├── border-none.svg │ │ │ │ │ ├── border-top-left.svg │ │ │ │ │ ├── bore-hole.svg │ │ │ │ │ ├── bottle-droplet.svg │ │ │ │ │ ├── bottle-water.svg │ │ │ │ │ ├── bowl-food.svg │ │ │ │ │ ├── bowl-rice.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-archive.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box-tissue.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes-packing.svg │ │ │ │ │ ├── boxes-stacked.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── brazilian-real-sign.svg │ │ │ │ │ ├── bread-slice.svg │ │ │ │ │ ├── bridge-circle-check.svg │ │ │ │ │ ├── bridge-circle-exclamation.svg │ │ │ │ │ ├── bridge-circle-xmark.svg │ │ │ │ │ ├── bridge-lock.svg │ │ │ │ │ ├── bridge-water.svg │ │ │ │ │ ├── bridge.svg │ │ │ │ │ ├── briefcase-medical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── broom-ball.svg │ │ │ │ │ ├── broom.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bucket.svg │ │ │ │ │ ├── bug-slash.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── bugs.svg │ │ │ │ │ ├── building-circle-arrow-right.svg │ │ │ │ │ ├── building-circle-check.svg │ │ │ │ │ ├── building-circle-exclamation.svg │ │ │ │ │ ├── building-circle-xmark.svg │ │ │ │ │ ├── building-columns.svg │ │ │ │ │ ├── building-flag.svg │ │ │ │ │ ├── building-lock.svg │ │ │ │ │ ├── building-ngo.svg │ │ │ │ │ ├── building-shield.svg │ │ │ │ │ ├── building-un.svg │ │ │ │ │ ├── building-user.svg │ │ │ │ │ ├── building-wheat.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullhorn.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── burger.svg │ │ │ │ │ ├── burst.svg │ │ │ │ │ ├── bus-simple.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-time.svg │ │ │ │ │ ├── c.svg │ │ │ │ │ ├── cable-car.svg │ │ │ │ │ ├── cake-candles.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-day.svg │ │ │ │ │ ├── calendar-days.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-week.svg │ │ │ │ │ ├── calendar-xmark.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera-rotate.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── campground.svg │ │ │ │ │ ├── candy-cane.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-burst.svg │ │ │ │ │ ├── car-on.svg │ │ │ │ │ ├── car-rear.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car-tunnel.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── caravan.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── carrot.svg │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-flatbed-suitcase.svg │ │ │ │ │ ├── cart-flatbed.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── cart-shopping.svg │ │ │ │ │ ├── cash-register.svg │ │ │ │ │ ├── cat.svg │ │ │ │ │ ├── cedi-sign.svg │ │ │ │ │ ├── cent-sign.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── chair.svg │ │ │ │ │ ├── chalkboard-user.svg │ │ │ │ │ ├── chalkboard.svg │ │ │ │ │ ├── champagne-glasses.svg │ │ │ │ │ ├── charging-station.svg │ │ │ │ │ ├── chart-area.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-column.svg │ │ │ │ │ ├── chart-gantt.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── chart-simple.svg │ │ │ │ │ ├── check-double.svg │ │ │ │ │ ├── check-to-slot.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-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── child-combatant.svg │ │ │ │ │ ├── child-dress.svg │ │ │ │ │ ├── child-reaching.svg │ │ │ │ │ ├── child.svg │ │ │ │ │ ├── children.svg │ │ │ │ │ ├── church.svg │ │ │ │ │ ├── circle-arrow-down.svg │ │ │ │ │ ├── circle-arrow-left.svg │ │ │ │ │ ├── circle-arrow-right.svg │ │ │ │ │ ├── circle-arrow-up.svg │ │ │ │ │ ├── circle-check.svg │ │ │ │ │ ├── circle-chevron-down.svg │ │ │ │ │ ├── circle-chevron-left.svg │ │ │ │ │ ├── circle-chevron-right.svg │ │ │ │ │ ├── circle-chevron-up.svg │ │ │ │ │ ├── circle-dollar-to-slot.svg │ │ │ │ │ ├── circle-dot.svg │ │ │ │ │ ├── circle-down.svg │ │ │ │ │ ├── circle-exclamation.svg │ │ │ │ │ ├── circle-h.svg │ │ │ │ │ ├── circle-half-stroke.svg │ │ │ │ │ ├── circle-info.svg │ │ │ │ │ ├── circle-left.svg │ │ │ │ │ ├── circle-minus.svg │ │ │ │ │ ├── circle-nodes.svg │ │ │ │ │ ├── circle-notch.svg │ │ │ │ │ ├── circle-pause.svg │ │ │ │ │ ├── circle-play.svg │ │ │ │ │ ├── circle-plus.svg │ │ │ │ │ ├── circle-question.svg │ │ │ │ │ ├── circle-radiation.svg │ │ │ │ │ ├── circle-right.svg │ │ │ │ │ ├── circle-stop.svg │ │ │ │ │ ├── circle-up.svg │ │ │ │ │ ├── circle-user.svg │ │ │ │ │ ├── circle-xmark.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── city.svg │ │ │ │ │ ├── clapperboard.svg │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard-question.svg │ │ │ │ │ ├── clipboard-user.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock-rotate-left.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-arrow-down.svg │ │ │ │ │ ├── cloud-arrow-up.svg │ │ │ │ │ ├── cloud-bolt.svg │ │ │ │ │ ├── cloud-meatball.svg │ │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ │ ├── cloud-showers-water.svg │ │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── clover.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── code-commit.svg │ │ │ │ │ ├── code-compare.svg │ │ │ │ │ ├── code-fork.svg │ │ │ │ │ ├── code-merge.svg │ │ │ │ │ ├── code-pull-request.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── colon-sign.svg │ │ │ │ │ ├── comment-dollar.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-medical.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment-sms.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass-drafting.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── computer-mouse.svg │ │ │ │ │ ├── computer.svg │ │ │ │ │ ├── cookie-bite.svg │ │ │ │ │ ├── cookie.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── couch.svg │ │ │ │ │ ├── cow.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crop-simple.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cross.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── crow.svg │ │ │ │ │ ├── crown.svg │ │ │ │ │ ├── crutch.svg │ │ │ │ │ ├── cruzeiro-sign.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes-stacked.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── d.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── delete-left.svg │ │ │ │ │ ├── democrat.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagram-next.svg │ │ │ │ │ ├── diagram-predecessor.svg │ │ │ │ │ ├── diagram-project.svg │ │ │ │ │ ├── diagram-successor.svg │ │ │ │ │ ├── diamond-turn-right.svg │ │ │ │ │ ├── diamond.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 │ │ │ │ │ ├── disease.svg │ │ │ │ │ ├── display.svg │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── dog.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── dolly.svg │ │ │ │ │ ├── dong-sign.svg │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ ├── door-open.svg │ │ │ │ │ ├── dove.svg │ │ │ │ │ ├── down-left-and-up-right-to-center.svg │ │ │ │ │ ├── down-long.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── dragon.svg │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── droplet-slash.svg │ │ │ │ │ ├── droplet.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── drumstick-bite.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── dumpster-fire.svg │ │ │ │ │ ├── dumpster.svg │ │ │ │ │ ├── dungeon.svg │ │ │ │ │ ├── e.svg │ │ │ │ │ ├── ear-deaf.svg │ │ │ │ │ ├── ear-listen.svg │ │ │ │ │ ├── earth-africa.svg │ │ │ │ │ ├── earth-americas.svg │ │ │ │ │ ├── earth-asia.svg │ │ │ │ │ ├── earth-europe.svg │ │ │ │ │ ├── earth-oceania.svg │ │ │ │ │ ├── egg.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── elevator.svg │ │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ │ ├── ellipsis.svg │ │ │ │ │ ├── envelope-circle-check.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── envelopes-bulk.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── ethernet.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── explosion.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-low-vision.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── f.svg │ │ │ │ │ ├── face-angry.svg │ │ │ │ │ ├── face-dizzy.svg │ │ │ │ │ ├── face-flushed.svg │ │ │ │ │ ├── face-frown-open.svg │ │ │ │ │ ├── face-frown.svg │ │ │ │ │ ├── face-grimace.svg │ │ │ │ │ ├── face-grin-beam-sweat.svg │ │ │ │ │ ├── face-grin-beam.svg │ │ │ │ │ ├── face-grin-hearts.svg │ │ │ │ │ ├── face-grin-squint-tears.svg │ │ │ │ │ ├── face-grin-squint.svg │ │ │ │ │ ├── face-grin-stars.svg │ │ │ │ │ ├── face-grin-tears.svg │ │ │ │ │ ├── face-grin-tongue-squint.svg │ │ │ │ │ ├── face-grin-tongue-wink.svg │ │ │ │ │ ├── face-grin-tongue.svg │ │ │ │ │ ├── face-grin-wide.svg │ │ │ │ │ ├── face-grin-wink.svg │ │ │ │ │ ├── face-grin.svg │ │ │ │ │ ├── face-kiss-beam.svg │ │ │ │ │ ├── face-kiss-wink-heart.svg │ │ │ │ │ ├── face-kiss.svg │ │ │ │ │ ├── face-laugh-beam.svg │ │ │ │ │ ├── face-laugh-squint.svg │ │ │ │ │ ├── face-laugh-wink.svg │ │ │ │ │ ├── face-laugh.svg │ │ │ │ │ ├── face-meh-blank.svg │ │ │ │ │ ├── face-meh.svg │ │ │ │ │ ├── face-rolling-eyes.svg │ │ │ │ │ ├── face-sad-cry.svg │ │ │ │ │ ├── face-sad-tear.svg │ │ │ │ │ ├── face-smile-beam.svg │ │ │ │ │ ├── face-smile-wink.svg │ │ │ │ │ ├── face-smile.svg │ │ │ │ │ ├── face-surprise.svg │ │ │ │ │ ├── face-tired.svg │ │ │ │ │ ├── fan.svg │ │ │ │ │ ├── faucet-drip.svg │ │ │ │ │ ├── faucet.svg │ │ │ │ │ ├── fax.svg │ │ │ │ │ ├── feather-pointed.svg │ │ │ │ │ ├── feather.svg │ │ │ │ │ ├── ferry.svg │ │ │ │ │ ├── file-arrow-down.svg │ │ │ │ │ ├── file-arrow-up.svg │ │ │ │ │ ├── file-audio.svg │ │ │ │ │ ├── file-circle-check.svg │ │ │ │ │ ├── file-circle-exclamation.svg │ │ │ │ │ ├── file-circle-minus.svg │ │ │ │ │ ├── file-circle-plus.svg │ │ │ │ │ ├── file-circle-question.svg │ │ │ │ │ ├── file-circle-xmark.svg │ │ │ │ │ ├── file-code.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-csv.svg │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-image.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ │ ├── file-invoice.svg │ │ │ │ │ ├── file-lines.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ ├── file-pen.svg │ │ │ │ │ ├── file-powerpoint.svg │ │ │ │ │ ├── file-prescription.svg │ │ │ │ │ ├── file-shield.svg │ │ │ │ │ ├── file-signature.svg │ │ │ │ │ ├── file-video.svg │ │ │ │ │ ├── file-waveform.svg │ │ │ │ │ ├── file-word.svg │ │ │ │ │ ├── file-zipper.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── fill-drip.svg │ │ │ │ │ ├── fill.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter-circle-dollar.svg │ │ │ │ │ ├── filter-circle-xmark.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ ├── fire-burner.svg │ │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ │ ├── fire-flame-curved.svg │ │ │ │ │ ├── fire-flame-simple.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── fish-fins.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── flag-checkered.svg │ │ │ │ │ ├── flag-usa.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flask-vial.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── floppy-disk.svg │ │ │ │ │ ├── florin-sign.svg │ │ │ │ │ ├── folder-closed.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder-tree.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font-awesome.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football.svg │ │ │ │ │ ├── forward-fast.svg │ │ │ │ │ ├── forward-step.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── franc-sign.svg │ │ │ │ │ ├── frog.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── g.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gauge-high.svg │ │ │ │ │ ├── gauge-simple-high.svg │ │ │ │ │ ├── gauge-simple.svg │ │ │ │ │ ├── gauge.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gear.svg │ │ │ │ │ ├── gears.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── ghost.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── gifts.svg │ │ │ │ │ ├── glass-water-droplet.svg │ │ │ │ │ ├── glass-water.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-ball-tee.svg │ │ │ │ │ ├── gopuram.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── greater-than-equal.svg │ │ │ │ │ ├── greater-than.svg │ │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ │ ├── grip-lines.svg │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ ├── grip.svg │ │ │ │ │ ├── group-arrows-rotate.svg │ │ │ │ │ ├── guarani-sign.svg │ │ │ │ │ ├── guitar.svg │ │ │ │ │ ├── gun.svg │ │ │ │ │ ├── h.svg │ │ │ │ │ ├── hammer.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-back-fist.svg │ │ │ │ │ ├── hand-dots.svg │ │ │ │ │ ├── hand-fist.svg │ │ │ │ │ ├── hand-holding-dollar.svg │ │ │ │ │ ├── hand-holding-droplet.svg │ │ │ │ │ ├── hand-holding-hand.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ │ ├── hand-holding.svg │ │ │ │ │ ├── hand-lizard.svg │ │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ │ ├── hand-peace.svg │ │ │ │ │ ├── hand-point-down.svg │ │ │ │ │ ├── hand-point-left.svg │ │ │ │ │ ├── hand-point-right.svg │ │ │ │ │ ├── hand-point-up.svg │ │ │ │ │ ├── hand-pointer.svg │ │ │ │ │ ├── hand-scissors.svg │ │ │ │ │ ├── hand-sparkles.svg │ │ │ │ │ ├── hand-spock.svg │ │ │ │ │ ├── hand.svg │ │ │ │ │ ├── handcuffs.svg │ │ │ │ │ ├── hands-asl-interpreting.svg │ │ │ │ │ ├── hands-bound.svg │ │ │ │ │ ├── hands-bubbles.svg │ │ │ │ │ ├── hands-clapping.svg │ │ │ │ │ ├── hands-holding-child.svg │ │ │ │ │ ├── hands-holding-circle.svg │ │ │ │ │ ├── hands-holding.svg │ │ │ │ │ ├── hands-praying.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake-angle.svg │ │ │ │ │ ├── handshake-simple-slash.svg │ │ │ │ │ ├── handshake-simple.svg │ │ │ │ │ ├── handshake-slash.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hanukiah.svg │ │ │ │ │ ├── hard-drive.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ │ ├── hat-cowboy.svg │ │ │ │ │ ├── hat-wizard.svg │ │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ ├── head-side-virus.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-simple.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart-circle-bolt.svg │ │ │ │ │ ├── heart-circle-check.svg │ │ │ │ │ ├── heart-circle-exclamation.svg │ │ │ │ │ ├── heart-circle-minus.svg │ │ │ │ │ ├── heart-circle-plus.svg │ │ │ │ │ ├── heart-circle-xmark.svg │ │ │ │ │ ├── heart-crack.svg │ │ │ │ │ ├── heart-pulse.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── helicopter-symbol.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── helmet-safety.svg │ │ │ │ │ ├── helmet-un.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── hill-avalanche.svg │ │ │ │ │ ├── hill-rockslide.svg │ │ │ │ │ ├── hippo.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── holly-berry.svg │ │ │ │ │ ├── horse-head.svg │ │ │ │ │ ├── horse.svg │ │ │ │ │ ├── hospital-user.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub-person.svg │ │ │ │ │ ├── hotdog.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── house-chimney-crack.svg │ │ │ │ │ ├── house-chimney-medical.svg │ │ │ │ │ ├── house-chimney-user.svg │ │ │ │ │ ├── house-chimney-window.svg │ │ │ │ │ ├── house-chimney.svg │ │ │ │ │ ├── house-circle-check.svg │ │ │ │ │ ├── house-circle-exclamation.svg │ │ │ │ │ ├── house-circle-xmark.svg │ │ │ │ │ ├── house-crack.svg │ │ │ │ │ ├── house-fire.svg │ │ │ │ │ ├── house-flag.svg │ │ │ │ │ ├── house-flood-water-circle-arrow-right.svg │ │ │ │ │ ├── house-flood-water.svg │ │ │ │ │ ├── house-laptop.svg │ │ │ │ │ ├── house-lock.svg │ │ │ │ │ ├── house-medical-circle-check.svg │ │ │ │ │ ├── house-medical-circle-exclamation.svg │ │ │ │ │ ├── house-medical-circle-xmark.svg │ │ │ │ │ ├── house-medical-flag.svg │ │ │ │ │ ├── house-medical.svg │ │ │ │ │ ├── house-signal.svg │ │ │ │ │ ├── house-tsunami.svg │ │ │ │ │ ├── house-user.svg │ │ │ │ │ ├── house.svg │ │ │ │ │ ├── hryvnia-sign.svg │ │ │ │ │ ├── hurricane.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── i.svg │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ ├── icicles.svg │ │ │ │ │ ├── icons.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-clip.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── igloo.svg │ │ │ │ │ ├── image-portrait.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── indian-rupee-sign.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── j.svg │ │ │ │ │ ├── jar-wheat.svg │ │ │ │ │ ├── jar.svg │ │ │ │ │ ├── jedi.svg │ │ │ │ │ ├── jet-fighter-up.svg │ │ │ │ │ ├── jet-fighter.svg │ │ │ │ │ ├── joint.svg │ │ │ │ │ ├── jug-detergent.svg │ │ │ │ │ ├── k.svg │ │ │ │ │ ├── kaaba.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── khanda.svg │ │ │ │ │ ├── kip-sign.svg │ │ │ │ │ ├── kit-medical.svg │ │ │ │ │ ├── kitchen-set.svg │ │ │ │ │ ├── kiwi-bird.svg │ │ │ │ │ ├── l.svg │ │ │ │ │ ├── land-mine-on.svg │ │ │ │ │ ├── landmark-dome.svg │ │ │ │ │ ├── landmark-flag.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.svg │ │ │ │ │ ├── laptop-file.svg │ │ │ │ │ ├── laptop-medical.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── lari-sign.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── left-long.svg │ │ │ │ │ ├── left-right.svg │ │ │ │ │ ├── lemon.svg │ │ │ │ │ ├── less-than-equal.svg │ │ │ │ │ ├── less-than.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── lines-leaning.svg │ │ │ │ │ ├── link-slash.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-check.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── litecoin-sign.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── location-crosshairs.svg │ │ │ │ │ ├── location-dot.svg │ │ │ │ │ ├── location-pin-lock.svg │ │ │ │ │ ├── location-pin.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── locust.svg │ │ │ │ │ ├── lungs-virus.svg │ │ │ │ │ ├── lungs.svg │ │ │ │ │ ├── m.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── magnifying-glass-arrow-right.svg │ │ │ │ │ ├── magnifying-glass-chart.svg │ │ │ │ │ ├── magnifying-glass-dollar.svg │ │ │ │ │ ├── magnifying-glass-location.svg │ │ │ │ │ ├── magnifying-glass-minus.svg │ │ │ │ │ ├── magnifying-glass-plus.svg │ │ │ │ │ ├── magnifying-glass.svg │ │ │ │ │ ├── manat-sign.svg │ │ │ │ │ ├── map-location-dot.svg │ │ │ │ │ ├── map-location.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── marker.svg │ │ │ │ │ ├── mars-and-venus-burst.svg │ │ │ │ │ ├── mars-and-venus.svg │ │ │ │ │ ├── mars-double.svg │ │ │ │ │ ├── mars-stroke-right.svg │ │ │ │ │ ├── mars-stroke-up.svg │ │ │ │ │ ├── mars-stroke.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── martini-glass-citrus.svg │ │ │ │ │ ├── martini-glass-empty.svg │ │ │ │ │ ├── martini-glass.svg │ │ │ │ │ ├── mask-face.svg │ │ │ │ │ ├── mask-ventilator.svg │ │ │ │ │ ├── mask.svg │ │ │ │ │ ├── masks-theater.svg │ │ │ │ │ ├── mattress-pillow.svg │ │ │ │ │ ├── maximize.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ ├── meteor.svg │ │ │ │ │ ├── microchip.svg │ │ │ │ │ ├── microphone-lines-slash.svg │ │ │ │ │ ├── microphone-lines.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── mill-sign.svg │ │ │ │ │ ├── minimize.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── mitten.svg │ │ │ │ │ ├── mobile-button.svg │ │ │ │ │ ├── mobile-retro.svg │ │ │ │ │ ├── mobile-screen-button.svg │ │ │ │ │ ├── mobile-screen.svg │ │ │ │ │ ├── mobile.svg │ │ │ │ │ ├── money-bill-1-wave.svg │ │ │ │ │ ├── money-bill-1.svg │ │ │ │ │ ├── money-bill-transfer.svg │ │ │ │ │ ├── money-bill-trend-up.svg │ │ │ │ │ ├── money-bill-wave.svg │ │ │ │ │ ├── money-bill-wheat.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-bills.svg │ │ │ │ │ ├── money-check-dollar.svg │ │ │ │ │ ├── money-check.svg │ │ │ │ │ ├── monument.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── mortar-pestle.svg │ │ │ │ │ ├── mosque.svg │ │ │ │ │ ├── mosquito-net.svg │ │ │ │ │ ├── mosquito.svg │ │ │ │ │ ├── motorcycle.svg │ │ │ │ │ ├── mound.svg │ │ │ │ │ ├── mountain-city.svg │ │ │ │ │ ├── mountain-sun.svg │ │ │ │ │ ├── mountain.svg │ │ │ │ │ ├── mug-hot.svg │ │ │ │ │ ├── mug-saucer.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── n.svg │ │ │ │ │ ├── naira-sign.svg │ │ │ │ │ ├── network-wired.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── notdef.svg │ │ │ │ │ ├── note-sticky.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── o.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── oil-well.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── otter.svg │ │ │ │ │ ├── outdent.svg │ │ │ │ │ ├── p.svg │ │ │ │ │ ├── pager.svg │ │ │ │ │ ├── paint-roller.svg │ │ │ │ │ ├── paintbrush.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── pallet.svg │ │ │ │ │ ├── panorama.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── parachute-box.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── passport.svg │ │ │ │ │ ├── paste.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── peace.svg │ │ │ │ │ ├── pen-clip.svg │ │ │ │ │ ├── pen-fancy.svg │ │ │ │ │ ├── pen-nib.svg │ │ │ │ │ ├── pen-ruler.svg │ │ │ │ │ ├── pen-to-square.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pencil.svg │ │ │ │ │ ├── people-arrows.svg │ │ │ │ │ ├── people-carry-box.svg │ │ │ │ │ ├── people-group.svg │ │ │ │ │ ├── people-line.svg │ │ │ │ │ ├── people-pulling.svg │ │ │ │ │ ├── people-robbery.svg │ │ │ │ │ ├── people-roof.svg │ │ │ │ │ ├── pepper-hot.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── person-arrow-down-to-line.svg │ │ │ │ │ ├── person-arrow-up-from-line.svg │ │ │ │ │ ├── person-biking.svg │ │ │ │ │ ├── person-booth.svg │ │ │ │ │ ├── person-breastfeeding.svg │ │ │ │ │ ├── person-burst.svg │ │ │ │ │ ├── person-cane.svg │ │ │ │ │ ├── person-chalkboard.svg │ │ │ │ │ ├── person-circle-check.svg │ │ │ │ │ ├── person-circle-exclamation.svg │ │ │ │ │ ├── person-circle-minus.svg │ │ │ │ │ ├── person-circle-plus.svg │ │ │ │ │ ├── person-circle-question.svg │ │ │ │ │ ├── person-circle-xmark.svg │ │ │ │ │ ├── person-digging.svg │ │ │ │ │ ├── person-dots-from-line.svg │ │ │ │ │ ├── person-dress-burst.svg │ │ │ │ │ ├── person-dress.svg │ │ │ │ │ ├── person-drowning.svg │ │ │ │ │ ├── person-falling-burst.svg │ │ │ │ │ ├── person-falling.svg │ │ │ │ │ ├── person-half-dress.svg │ │ │ │ │ ├── person-harassing.svg │ │ │ │ │ ├── person-hiking.svg │ │ │ │ │ ├── person-military-pointing.svg │ │ │ │ │ ├── person-military-rifle.svg │ │ │ │ │ ├── person-military-to-person.svg │ │ │ │ │ ├── person-praying.svg │ │ │ │ │ ├── person-pregnant.svg │ │ │ │ │ ├── person-rays.svg │ │ │ │ │ ├── person-rifle.svg │ │ │ │ │ ├── person-running.svg │ │ │ │ │ ├── person-shelter.svg │ │ │ │ │ ├── person-skating.svg │ │ │ │ │ ├── person-skiing-nordic.svg │ │ │ │ │ ├── person-skiing.svg │ │ │ │ │ ├── person-snowboarding.svg │ │ │ │ │ ├── person-swimming.svg │ │ │ │ │ ├── person-through-window.svg │ │ │ │ │ ├── person-walking-arrow-loop-left.svg │ │ │ │ │ ├── person-walking-arrow-right.svg │ │ │ │ │ ├── person-walking-dashed-line-arrow-right.svg │ │ │ │ │ ├── person-walking-luggage.svg │ │ │ │ │ ├── person-walking-with-cane.svg │ │ │ │ │ ├── person-walking.svg │ │ │ │ │ ├── person.svg │ │ │ │ │ ├── peseta-sign.svg │ │ │ │ │ ├── peso-sign.svg │ │ │ │ │ ├── phone-flip.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── photo-film.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── pizza-slice.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-circle-check.svg │ │ │ │ │ ├── plane-circle-exclamation.svg │ │ │ │ │ ├── plane-circle-xmark.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane-lock.svg │ │ │ │ │ ├── plane-slash.svg │ │ │ │ │ ├── plane-up.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── plant-wilt.svg │ │ │ │ │ ├── plate-wheat.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug-circle-bolt.svg │ │ │ │ │ ├── plug-circle-check.svg │ │ │ │ │ ├── plug-circle-exclamation.svg │ │ │ │ │ ├── plug-circle-minus.svg │ │ │ │ │ ├── plug-circle-plus.svg │ │ │ │ │ ├── plug-circle-xmark.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-minus.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podcast.svg │ │ │ │ │ ├── poo-storm.svg │ │ │ │ │ ├── poo.svg │ │ │ │ │ ├── poop.svg │ │ │ │ │ ├── power-off.svg │ │ │ │ │ ├── prescription-bottle-medical.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── prescription.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── pump-medical.svg │ │ │ │ │ ├── pump-soap.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── q.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── r.svg │ │ │ │ │ ├── radiation.svg │ │ │ │ │ ├── radio.svg │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ ├── ranking-star.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── record-vinyl.svg │ │ │ │ │ ├── rectangle-ad.svg │ │ │ │ │ ├── rectangle-list.svg │ │ │ │ │ ├── rectangle-xmark.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── republican.svg │ │ │ │ │ ├── restroom.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── right-from-bracket.svg │ │ │ │ │ ├── right-left.svg │ │ │ │ │ ├── right-long.svg │ │ │ │ │ ├── right-to-bracket.svg │ │ │ │ │ ├── ring.svg │ │ │ │ │ ├── road-barrier.svg │ │ │ │ │ ├── road-bridge.svg │ │ │ │ │ ├── road-circle-check.svg │ │ │ │ │ ├── road-circle-exclamation.svg │ │ │ │ │ ├── road-circle-xmark.svg │ │ │ │ │ ├── road-lock.svg │ │ │ │ │ ├── road-spikes.svg │ │ │ │ │ ├── road.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── rotate-left.svg │ │ │ │ │ ├── rotate-right.svg │ │ │ │ │ ├── rotate.svg │ │ │ │ │ ├── route.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruble-sign.svg │ │ │ │ │ ├── rug.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ │ ├── ruler-vertical.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── rupiah-sign.svg │ │ │ │ │ ├── s.svg │ │ │ │ │ ├── sack-dollar.svg │ │ │ │ │ ├── sack-xmark.svg │ │ │ │ │ ├── sailboat.svg │ │ │ │ │ ├── satellite-dish.svg │ │ │ │ │ ├── satellite.svg │ │ │ │ │ ├── scale-balanced.svg │ │ │ │ │ ├── scale-unbalanced-flip.svg │ │ │ │ │ ├── scale-unbalanced.svg │ │ │ │ │ ├── school-circle-check.svg │ │ │ │ │ ├── school-circle-exclamation.svg │ │ │ │ │ ├── school-circle-xmark.svg │ │ │ │ │ ├── school-flag.svg │ │ │ │ │ ├── school-lock.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── scissors.svg │ │ │ │ │ ├── screwdriver-wrench.svg │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ ├── scroll-torah.svg │ │ │ │ │ ├── scroll.svg │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ ├── section.svg │ │ │ │ │ ├── seedling.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-from-square.svg │ │ │ │ │ ├── share-nodes.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── sheet-plastic.svg │ │ │ │ │ ├── shekel-sign.svg │ │ │ │ │ ├── shield-cat.svg │ │ │ │ │ ├── shield-dog.svg │ │ │ │ │ ├── shield-halved.svg │ │ │ │ │ ├── shield-heart.svg │ │ │ │ │ ├── shield-virus.svg │ │ │ │ │ ├── shield.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shirt.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shop-lock.svg │ │ │ │ │ ├── shop-slash.svg │ │ │ │ │ ├── shop.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shrimp.svg │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ ├── shuttle-space.svg │ │ │ │ │ ├── sign-hanging.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── signs-post.svg │ │ │ │ │ ├── sim-card.svg │ │ │ │ │ ├── sink.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skull-crossbones.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── slash.svg │ │ │ │ │ ├── sleigh.svg │ │ │ │ │ ├── sliders.svg │ │ │ │ │ ├── smog.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── snowman.svg │ │ │ │ │ ├── snowplow.svg │ │ │ │ │ ├── soap.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── spaghetti-monster-flying.svg │ │ │ │ │ ├── spell-check.svg │ │ │ │ │ ├── spider.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spoon.svg │ │ │ │ │ ├── spray-can-sparkles.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-arrow-up-right.svg │ │ │ │ │ ├── square-caret-down.svg │ │ │ │ │ ├── square-caret-left.svg │ │ │ │ │ ├── square-caret-right.svg │ │ │ │ │ ├── square-caret-up.svg │ │ │ │ │ ├── square-check.svg │ │ │ │ │ ├── square-envelope.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-h.svg │ │ │ │ │ ├── square-minus.svg │ │ │ │ │ ├── square-nfi.svg │ │ │ │ │ ├── square-parking.svg │ │ │ │ │ ├── square-pen.svg │ │ │ │ │ ├── square-person-confined.svg │ │ │ │ │ ├── square-phone-flip.svg │ │ │ │ │ ├── square-phone.svg │ │ │ │ │ ├── square-plus.svg │ │ │ │ │ ├── square-poll-horizontal.svg │ │ │ │ │ ├── square-poll-vertical.svg │ │ │ │ │ ├── square-root-variable.svg │ │ │ │ │ ├── square-rss.svg │ │ │ │ │ ├── square-share-nodes.svg │ │ │ │ │ ├── square-up-right.svg │ │ │ │ │ ├── square-virus.svg │ │ │ │ │ ├── square-xmark.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── staff-snake.svg │ │ │ │ │ ├── stairs.svg │ │ │ │ │ ├── stamp.svg │ │ │ │ │ ├── stapler.svg │ │ │ │ │ ├── star-and-crescent.svg │ │ │ │ │ ├── star-half-stroke.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-of-david.svg │ │ │ │ │ ├── star-of-life.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── sterling-sign.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch-20.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── street-view.svg │ │ │ │ │ ├── strikethrough.svg │ │ │ │ │ ├── stroopwafel.svg │ │ │ │ │ ├── subscript.svg │ │ │ │ │ ├── suitcase-medical.svg │ │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun-plant-wilt.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── superscript.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── synagogue.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── t.svg │ │ │ │ │ ├── table-cells-large.svg │ │ │ │ │ ├── table-cells.svg │ │ │ │ │ ├── table-columns.svg │ │ │ │ │ ├── table-list.svg │ │ │ │ │ ├── table-tennis-paddle-ball.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet-button.svg │ │ │ │ │ ├── tablet-screen-button.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachograph-digital.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tags.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tarp-droplet.svg │ │ │ │ │ ├── tarp.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.svg │ │ │ │ │ ├── temperature-arrow-down.svg │ │ │ │ │ ├── temperature-arrow-up.svg │ │ │ │ │ ├── temperature-empty.svg │ │ │ │ │ ├── temperature-full.svg │ │ │ │ │ ├── temperature-half.svg │ │ │ │ │ ├── temperature-high.svg │ │ │ │ │ ├── temperature-low.svg │ │ │ │ │ ├── temperature-quarter.svg │ │ │ │ │ ├── temperature-three-quarters.svg │ │ │ │ │ ├── tenge-sign.svg │ │ │ │ │ ├── tent-arrow-down-to-line.svg │ │ │ │ │ ├── tent-arrow-left-right.svg │ │ │ │ │ ├── tent-arrow-turn-left.svg │ │ │ │ │ ├── tent-arrows-down.svg │ │ │ │ │ ├── tent.svg │ │ │ │ │ ├── tents.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-height.svg │ │ │ │ │ ├── text-slash.svg │ │ │ │ │ ├── text-width.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-simple.svg │ │ │ │ │ ├── ticket.svg │ │ │ │ │ ├── timeline.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── toilet-portable.svg │ │ │ │ │ ├── toilet.svg │ │ │ │ │ ├── toilets-portable.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── tornado.svg │ │ │ │ │ ├── tower-broadcast.svg │ │ │ │ │ ├── tower-cell.svg │ │ │ │ │ ├── tower-observation.svg │ │ │ │ │ ├── tractor.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── trailer.svg │ │ │ │ │ ├── train-subway.svg │ │ │ │ │ ├── train-tram.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-arrow-up.svg │ │ │ │ │ ├── trash-can-arrow-up.svg │ │ │ │ │ ├── trash-can.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── tree-city.svg │ │ │ │ │ ├── tree.svg │ │ │ │ │ ├── triangle-exclamation.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── trowel-bricks.svg │ │ │ │ │ ├── trowel.svg │ │ │ │ │ ├── truck-arrow-right.svg │ │ │ │ │ ├── truck-droplet.svg │ │ │ │ │ ├── truck-fast.svg │ │ │ │ │ ├── truck-field-un.svg │ │ │ │ │ ├── truck-field.svg │ │ │ │ │ ├── truck-front.svg │ │ │ │ │ ├── truck-medical.svg │ │ │ │ │ ├── truck-monster.svg │ │ │ │ │ ├── truck-moving.svg │ │ │ │ │ ├── truck-pickup.svg │ │ │ │ │ ├── truck-plane.svg │ │ │ │ │ ├── truck-ramp-box.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tty.svg │ │ │ │ │ ├── turkish-lira-sign.svg │ │ │ │ │ ├── turn-down.svg │ │ │ │ │ ├── turn-up.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── u.svg │ │ │ │ │ ├── umbrella-beach.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ ├── unlock-keyhole.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── up-down-left-right.svg │ │ │ │ │ ├── up-down.svg │ │ │ │ │ ├── up-long.svg │ │ │ │ │ ├── up-right-and-down-left-from-center.svg │ │ │ │ │ ├── up-right-from-square.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── user-astronaut.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-clock.svg │ │ │ │ │ ├── user-doctor.svg │ │ │ │ │ ├── user-gear.svg │ │ │ │ │ ├── user-graduate.svg │ │ │ │ │ ├── user-group.svg │ │ │ │ │ ├── user-injured.svg │ │ │ │ │ ├── user-large-slash.svg │ │ │ │ │ ├── user-large.svg │ │ │ │ │ ├── user-lock.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.svg │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ ├── user-pen.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-secret.svg │ │ │ │ │ ├── user-shield.svg │ │ │ │ │ ├── user-slash.svg │ │ │ │ │ ├── user-tag.svg │ │ │ │ │ ├── user-tie.svg │ │ │ │ │ ├── user-xmark.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-between-lines.svg │ │ │ │ │ ├── users-gear.svg │ │ │ │ │ ├── users-line.svg │ │ │ │ │ ├── users-rays.svg │ │ │ │ │ ├── users-rectangle.svg │ │ │ │ │ ├── users-slash.svg │ │ │ │ │ ├── users-viewfinder.svg │ │ │ │ │ ├── users.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── v.svg │ │ │ │ │ ├── van-shuttle.svg │ │ │ │ │ ├── vault.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vest-patches.svg │ │ │ │ │ ├── vest.svg │ │ │ │ │ ├── vial-circle-check.svg │ │ │ │ │ ├── vial-virus.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── virus-covid-slash.svg │ │ │ │ │ ├── virus-covid.svg │ │ │ │ │ ├── virus-slash.svg │ │ │ │ │ ├── virus.svg │ │ │ │ │ ├── viruses.svg │ │ │ │ │ ├── voicemail.svg │ │ │ │ │ ├── volcano.svg │ │ │ │ │ ├── volleyball.svg │ │ │ │ │ ├── volume-high.svg │ │ │ │ │ ├── volume-low.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-xmark.svg │ │ │ │ │ ├── vr-cardboard.svg │ │ │ │ │ ├── w.svg │ │ │ │ │ ├── walkie-talkie.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── wand-magic-sparkles.svg │ │ │ │ │ ├── wand-magic.svg │ │ │ │ │ ├── wand-sparkles.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── water-ladder.svg │ │ │ │ │ ├── water.svg │ │ │ │ │ ├── wave-square.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight-scale.svg │ │ │ │ │ ├── wheat-awn-circle-exclamation.svg │ │ │ │ │ ├── wheat-awn.svg │ │ │ │ │ ├── wheelchair-move.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── whiskey-glass.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── wind.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ ├── wine-bottle.svg │ │ │ │ │ ├── wine-glass-empty.svg │ │ │ │ │ ├── wine-glass.svg │ │ │ │ │ ├── won-sign.svg │ │ │ │ │ ├── worm.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-ray.svg │ │ │ │ │ ├── x.svg │ │ │ │ │ ├── xmark.svg │ │ │ │ │ ├── xmarks-lines.svg │ │ │ │ │ ├── y.svg │ │ │ │ │ ├── yen-sign.svg │ │ │ │ │ ├── yin-yang.svg │ │ │ │ │ └── z.svg │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ ├── @iconscout │ │ │ └── unicons │ │ │ │ ├── css │ │ │ │ ├── animation.css │ │ │ │ ├── before.css │ │ │ │ ├── line.css │ │ │ │ ├── solid.css │ │ │ │ └── thinline.css │ │ │ │ ├── fonts │ │ │ │ ├── line │ │ │ │ │ ├── unicons-0.eot │ │ │ │ │ ├── unicons-0.svg │ │ │ │ │ ├── unicons-0.ttf │ │ │ │ │ ├── unicons-0.woff │ │ │ │ │ ├── unicons-0.woff2 │ │ │ │ │ ├── unicons-1.eot │ │ │ │ │ ├── unicons-1.svg │ │ │ │ │ ├── unicons-1.ttf │ │ │ │ │ ├── unicons-1.woff │ │ │ │ │ ├── unicons-1.woff2 │ │ │ │ │ ├── unicons-10.eot │ │ │ │ │ ├── unicons-10.svg │ │ │ │ │ ├── unicons-10.ttf │ │ │ │ │ ├── unicons-10.woff │ │ │ │ │ ├── unicons-10.woff2 │ │ │ │ │ ├── unicons-11.eot │ │ │ │ │ ├── unicons-11.svg │ │ │ │ │ ├── unicons-11.ttf │ │ │ │ │ ├── unicons-11.woff │ │ │ │ │ ├── unicons-11.woff2 │ │ │ │ │ ├── unicons-12.eot │ │ │ │ │ ├── unicons-12.svg │ │ │ │ │ ├── unicons-12.ttf │ │ │ │ │ ├── unicons-12.woff │ │ │ │ │ ├── unicons-12.woff2 │ │ │ │ │ ├── unicons-13.eot │ │ │ │ │ ├── unicons-13.svg │ │ │ │ │ ├── unicons-13.ttf │ │ │ │ │ ├── unicons-13.woff │ │ │ │ │ ├── unicons-13.woff2 │ │ │ │ │ ├── unicons-14.eot │ │ │ │ │ ├── unicons-14.svg │ │ │ │ │ ├── unicons-14.ttf │ │ │ │ │ ├── unicons-14.woff │ │ │ │ │ ├── unicons-14.woff2 │ │ │ │ │ ├── unicons-15.eot │ │ │ │ │ ├── unicons-15.svg │ │ │ │ │ ├── unicons-15.ttf │ │ │ │ │ ├── unicons-15.woff │ │ │ │ │ ├── unicons-15.woff2 │ │ │ │ │ ├── unicons-16.eot │ │ │ │ │ ├── unicons-16.svg │ │ │ │ │ ├── unicons-16.ttf │ │ │ │ │ ├── unicons-16.woff │ │ │ │ │ ├── unicons-16.woff2 │ │ │ │ │ ├── unicons-17.eot │ │ │ │ │ ├── unicons-17.svg │ │ │ │ │ ├── unicons-17.ttf │ │ │ │ │ ├── unicons-17.woff │ │ │ │ │ ├── unicons-17.woff2 │ │ │ │ │ ├── unicons-18.eot │ │ │ │ │ ├── unicons-18.svg │ │ │ │ │ ├── unicons-18.ttf │ │ │ │ │ ├── unicons-18.woff │ │ │ │ │ ├── unicons-18.woff2 │ │ │ │ │ ├── unicons-19.eot │ │ │ │ │ ├── unicons-19.svg │ │ │ │ │ ├── unicons-19.ttf │ │ │ │ │ ├── unicons-19.woff │ │ │ │ │ ├── unicons-19.woff2 │ │ │ │ │ ├── unicons-2.eot │ │ │ │ │ ├── unicons-2.svg │ │ │ │ │ ├── unicons-2.ttf │ │ │ │ │ ├── unicons-2.woff │ │ │ │ │ ├── unicons-2.woff2 │ │ │ │ │ ├── unicons-20.eot │ │ │ │ │ ├── unicons-20.svg │ │ │ │ │ ├── unicons-20.ttf │ │ │ │ │ ├── unicons-20.woff │ │ │ │ │ ├── unicons-20.woff2 │ │ │ │ │ ├── unicons-3.eot │ │ │ │ │ ├── unicons-3.svg │ │ │ │ │ ├── unicons-3.ttf │ │ │ │ │ ├── unicons-3.woff │ │ │ │ │ ├── unicons-3.woff2 │ │ │ │ │ ├── unicons-4.eot │ │ │ │ │ ├── unicons-4.svg │ │ │ │ │ ├── unicons-4.ttf │ │ │ │ │ ├── unicons-4.woff │ │ │ │ │ ├── unicons-4.woff2 │ │ │ │ │ ├── unicons-5.eot │ │ │ │ │ ├── unicons-5.svg │ │ │ │ │ ├── unicons-5.ttf │ │ │ │ │ ├── unicons-5.woff │ │ │ │ │ ├── unicons-5.woff2 │ │ │ │ │ ├── unicons-6.eot │ │ │ │ │ ├── unicons-6.svg │ │ │ │ │ ├── unicons-6.ttf │ │ │ │ │ ├── unicons-6.woff │ │ │ │ │ ├── unicons-6.woff2 │ │ │ │ │ ├── unicons-7.eot │ │ │ │ │ ├── unicons-7.svg │ │ │ │ │ ├── unicons-7.ttf │ │ │ │ │ ├── unicons-7.woff │ │ │ │ │ ├── unicons-7.woff2 │ │ │ │ │ ├── unicons-8.eot │ │ │ │ │ ├── unicons-8.svg │ │ │ │ │ ├── unicons-8.ttf │ │ │ │ │ ├── unicons-8.woff │ │ │ │ │ ├── unicons-8.woff2 │ │ │ │ │ ├── unicons-9.eot │ │ │ │ │ ├── unicons-9.svg │ │ │ │ │ ├── unicons-9.ttf │ │ │ │ │ ├── unicons-9.woff │ │ │ │ │ ├── unicons-9.woff2 │ │ │ │ │ ├── unicons-line.eot │ │ │ │ │ ├── unicons-line.svg │ │ │ │ │ ├── unicons-line.ttf │ │ │ │ │ ├── unicons-line.woff │ │ │ │ │ └── unicons-line.woff2 │ │ │ │ ├── solid │ │ │ │ │ ├── unicons-0.eot │ │ │ │ │ ├── unicons-0.svg │ │ │ │ │ ├── unicons-0.ttf │ │ │ │ │ ├── unicons-0.woff │ │ │ │ │ ├── unicons-0.woff2 │ │ │ │ │ ├── unicons-1.eot │ │ │ │ │ ├── unicons-1.svg │ │ │ │ │ ├── unicons-1.ttf │ │ │ │ │ ├── unicons-1.woff │ │ │ │ │ ├── unicons-1.woff2 │ │ │ │ │ ├── unicons-2.eot │ │ │ │ │ ├── unicons-2.svg │ │ │ │ │ ├── unicons-2.ttf │ │ │ │ │ ├── unicons-2.woff │ │ │ │ │ ├── unicons-2.woff2 │ │ │ │ │ ├── unicons-3.eot │ │ │ │ │ ├── unicons-3.svg │ │ │ │ │ ├── unicons-3.ttf │ │ │ │ │ ├── unicons-3.woff │ │ │ │ │ ├── unicons-3.woff2 │ │ │ │ │ ├── unicons-solid.eot │ │ │ │ │ ├── unicons-solid.svg │ │ │ │ │ ├── unicons-solid.ttf │ │ │ │ │ ├── unicons-solid.woff │ │ │ │ │ └── unicons-solid.woff2 │ │ │ │ └── thinline │ │ │ │ │ ├── unicons-0.eot │ │ │ │ │ ├── unicons-0.svg │ │ │ │ │ ├── unicons-0.ttf │ │ │ │ │ ├── unicons-0.woff │ │ │ │ │ ├── unicons-0.woff2 │ │ │ │ │ ├── unicons-1.eot │ │ │ │ │ ├── unicons-1.svg │ │ │ │ │ ├── unicons-1.ttf │ │ │ │ │ ├── unicons-1.woff │ │ │ │ │ ├── unicons-1.woff2 │ │ │ │ │ ├── unicons-2.eot │ │ │ │ │ ├── unicons-2.svg │ │ │ │ │ ├── unicons-2.ttf │ │ │ │ │ ├── unicons-2.woff │ │ │ │ │ ├── unicons-2.woff2 │ │ │ │ │ ├── unicons-3.eot │ │ │ │ │ ├── unicons-3.svg │ │ │ │ │ ├── unicons-3.ttf │ │ │ │ │ ├── unicons-3.woff │ │ │ │ │ ├── unicons-3.woff2 │ │ │ │ │ ├── unicons-thinline.eot │ │ │ │ │ ├── unicons-thinline.svg │ │ │ │ │ ├── unicons-thinline.ttf │ │ │ │ │ ├── unicons-thinline.woff │ │ │ │ │ └── unicons-thinline.woff2 │ │ │ │ ├── index-line.html │ │ │ │ ├── index-monochrome.html │ │ │ │ ├── index-solid.html │ │ │ │ ├── index-thinline.html │ │ │ │ ├── index.html │ │ │ │ ├── json │ │ │ │ ├── line.json │ │ │ │ ├── monochrome.json │ │ │ │ ├── solid.json │ │ │ │ └── thinline.json │ │ │ │ ├── script │ │ │ │ └── monochrome │ │ │ │ │ └── bundle.js │ │ │ │ ├── scripts │ │ │ │ ├── line │ │ │ │ │ ├── build-sprite.js │ │ │ │ │ ├── download.js │ │ │ │ │ ├── folder-move.js │ │ │ │ │ ├── generate-fontello-config.js │ │ │ │ │ ├── generate-fonts-css.js │ │ │ │ │ ├── generate-single-font.js │ │ │ │ │ ├── overwriteWoff2.js │ │ │ │ │ └── svgoConfig.js │ │ │ │ ├── monochrome │ │ │ │ │ ├── download.js │ │ │ │ │ ├── replaceFill.js │ │ │ │ │ ├── script.js │ │ │ │ │ ├── svgoOptions.js │ │ │ │ │ └── validate.js │ │ │ │ ├── update-json.js │ │ │ │ └── utils │ │ │ │ │ ├── countDuplicates.js │ │ │ │ │ └── downloadImage.js │ │ │ │ ├── sprite.html │ │ │ │ ├── sprite │ │ │ │ ├── line │ │ │ │ │ └── unicons.svg │ │ │ │ ├── solid │ │ │ │ │ └── unicons.svg │ │ │ │ └── thinline │ │ │ │ │ └── unicons.svg │ │ │ │ ├── svg │ │ │ │ ├── line │ │ │ │ │ ├── 0-plus.svg │ │ │ │ │ ├── 10-plus.svg │ │ │ │ │ ├── 12-plus.svg │ │ │ │ │ ├── 13-plus.svg │ │ │ │ │ ├── 16-plus.svg │ │ │ │ │ ├── 17-plus.svg │ │ │ │ │ ├── 18-plus.svg │ │ │ │ │ ├── 21-plus.svg │ │ │ │ │ ├── 3-plus.svg │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── 6-plus.svg │ │ │ │ │ ├── abacus.svg │ │ │ │ │ ├── accessible-icon-alt.svg │ │ │ │ │ ├── adjust-alt.svg │ │ │ │ │ ├── adjust-circle.svg │ │ │ │ │ ├── adjust-half.svg │ │ │ │ │ ├── adjust.svg │ │ │ │ │ ├── adobe-alt.svg │ │ │ │ │ ├── adobe.svg │ │ │ │ │ ├── airplay.svg │ │ │ │ │ ├── align-alt.svg │ │ │ │ │ ├── align-center-alt.svg │ │ │ │ │ ├── align-center-h.svg │ │ │ │ │ ├── align-center-justify.svg │ │ │ │ │ ├── align-center-v.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-letter-right.svg │ │ │ │ │ ├── align-right-justify.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── align.svg │ │ │ │ │ ├── amazon.svg │ │ │ │ │ ├── ambulance.svg │ │ │ │ │ ├── analysis.svg │ │ │ │ │ ├── analytics.svg │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── android-alt.svg │ │ │ │ │ ├── android-phone-slash.svg │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── angle-double-down.svg │ │ │ │ │ ├── angle-double-left.svg │ │ │ │ │ ├── angle-double-right.svg │ │ │ │ │ ├── angle-double-up.svg │ │ │ │ │ ├── angle-down.svg │ │ │ │ │ ├── angle-left-b.svg │ │ │ │ │ ├── angle-left.svg │ │ │ │ │ ├── angle-right-b.svg │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── angry.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── annoyed-alt.svg │ │ │ │ │ ├── annoyed.svg │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── apps.svg │ │ │ │ │ ├── archive-alt.svg │ │ │ │ │ ├── archive.svg │ │ │ │ │ ├── archway.svg │ │ │ │ │ ├── arrow-break.svg │ │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ │ ├── arrow-compress-h.svg │ │ │ │ │ ├── arrow-down-left.svg │ │ │ │ │ ├── arrow-down-right.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-from-right.svg │ │ │ │ │ ├── arrow-from-top.svg │ │ │ │ │ ├── arrow-growth.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-random.svg │ │ │ │ │ ├── arrow-resize-diagonal.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-to-bottom.svg │ │ │ │ │ ├── arrow-to-right.svg │ │ │ │ │ ├── arrow-up-left.svg │ │ │ │ │ ├── arrow-up-right.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── arrow.svg │ │ │ │ │ ├── arrows-h-alt.svg │ │ │ │ │ ├── arrows-h.svg │ │ │ │ │ ├── arrows-left-down.svg │ │ │ │ │ ├── arrows-maximize.svg │ │ │ │ │ ├── arrows-merge.svg │ │ │ │ │ ├── arrows-resize-h.svg │ │ │ │ │ ├── arrows-resize-v.svg │ │ │ │ │ ├── arrows-resize.svg │ │ │ │ │ ├── arrows-right-down.svg │ │ │ │ │ ├── arrows-shrink-h.svg │ │ │ │ │ ├── arrows-shrink-v.svg │ │ │ │ │ ├── arrows-up-right.svg │ │ │ │ │ ├── arrows-v-alt.svg │ │ │ │ │ ├── arrows-v.svg │ │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── atom.svg │ │ │ │ │ ├── auto-flash.svg │ │ │ │ │ ├── award-alt.svg │ │ │ │ │ ├── award.svg │ │ │ │ │ ├── baby-carriage.svg │ │ │ │ │ ├── backpack.svg │ │ │ │ │ ├── backspace.svg │ │ │ │ │ ├── backward.svg │ │ │ │ │ ├── bag-alt.svg │ │ │ │ │ ├── bag-slash.svg │ │ │ │ │ ├── bag.svg │ │ │ │ │ ├── balance-scale.svg │ │ │ │ │ ├── ban.svg │ │ │ │ │ ├── band-aid.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── baseball-ball.svg │ │ │ │ │ ├── basketball-hoop.svg │ │ │ │ │ ├── basketball.svg │ │ │ │ │ ├── bath.svg │ │ │ │ │ ├── battery-bolt.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── bed-double.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── behance-alt.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bell-school.svg │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ ├── bell.svg │ │ │ │ │ ├── bill.svg │ │ │ │ │ ├── bing.svg │ │ │ │ │ ├── bitcoin-alt.svg │ │ │ │ │ ├── bitcoin-circle.svg │ │ │ │ │ ├── bitcoin-sign.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── black-berry.svg │ │ │ │ │ ├── blogger-alt.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt-alt.svg │ │ │ │ │ ├── bolt-slash.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── book-alt.svg │ │ │ │ │ ├── book-medical.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-reader.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark-full.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── books.svg │ │ │ │ │ ├── boombox.svg │ │ │ │ │ ├── border-alt.svg │ │ │ │ │ ├── border-bottom.svg │ │ │ │ │ ├── border-clear.svg │ │ │ │ │ ├── border-horizontal.svg │ │ │ │ │ ├── border-inner.svg │ │ │ │ │ ├── border-left.svg │ │ │ │ │ ├── border-out.svg │ │ │ │ │ ├── border-right.svg │ │ │ │ │ ├── border-top.svg │ │ │ │ │ ├── border-vertical.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── brackets-curly.svg │ │ │ │ │ ├── brain.svg │ │ │ │ │ ├── briefcase-alt.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── bright.svg │ │ │ │ │ ├── brightness-empty.svg │ │ │ │ │ ├── brightness-half.svg │ │ │ │ │ ├── brightness-low.svg │ │ │ │ │ ├── brightness-minus.svg │ │ │ │ │ ├── brightness-plus.svg │ │ │ │ │ ├── brightness.svg │ │ │ │ │ ├── bring-bottom.svg │ │ │ │ │ ├── bring-front.svg │ │ │ │ │ ├── browser.svg │ │ │ │ │ ├── brush-alt.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── building.svg │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ ├── bus-alt.svg │ │ │ │ │ ├── bus-school.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── calculator-alt.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-slash.svg │ │ │ │ │ ├── calender.svg │ │ │ │ │ ├── calling.svg │ │ │ │ │ ├── camera-change.svg │ │ │ │ │ ├── camera-plus.svg │ │ │ │ │ ├── camera-slash.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── cancel.svg │ │ │ │ │ ├── capsule.svg │ │ │ │ │ ├── capture.svg │ │ │ │ │ ├── car-sideview.svg │ │ │ │ │ ├── car-slash.svg │ │ │ │ │ ├── car-wash.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── card-atm.svg │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ ├── cell.svg │ │ │ │ │ ├── celsius.svg │ │ │ │ │ ├── channel-add.svg │ │ │ │ │ ├── channel.svg │ │ │ │ │ ├── chart-bar-alt.svg │ │ │ │ │ ├── chart-bar.svg │ │ │ │ │ ├── chart-down.svg │ │ │ │ │ ├── chart-growth-alt.svg │ │ │ │ │ ├── chart-growth.svg │ │ │ │ │ ├── chart-line.svg │ │ │ │ │ ├── chart-pie-alt.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── chart.svg │ │ │ │ │ ├── chat-bubble-user.svg │ │ │ │ │ ├── chat-info.svg │ │ │ │ │ ├── chat.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── circle-layer.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── circuit.svg │ │ │ │ │ ├── clapper-board.svg │ │ │ │ │ ├── clinic-medical.svg │ │ │ │ │ ├── clipboard-alt.svg │ │ │ │ │ ├── clipboard-blank.svg │ │ │ │ │ ├── clipboard-notes.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock-eight.svg │ │ │ │ │ ├── clock-five.svg │ │ │ │ │ ├── clock-nine.svg │ │ │ │ │ ├── clock-seven.svg │ │ │ │ │ ├── clock-ten.svg │ │ │ │ │ ├── clock-three.svg │ │ │ │ │ ├── clock-two.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── closed-captioning-slash.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-block.svg │ │ │ │ │ ├── cloud-bookmark.svg │ │ │ │ │ ├── cloud-check.svg │ │ │ │ │ ├── cloud-computing.svg │ │ │ │ │ ├── cloud-data-connection.svg │ │ │ │ │ ├── cloud-database-tree.svg │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ ├── cloud-drizzle.svg │ │ │ │ │ ├── cloud-exclamation.svg │ │ │ │ │ ├── cloud-hail.svg │ │ │ │ │ ├── cloud-heart.svg │ │ │ │ │ ├── cloud-info.svg │ │ │ │ │ ├── cloud-lock.svg │ │ │ │ │ ├── cloud-meatball.svg │ │ │ │ │ ├── cloud-moon-hail.svg │ │ │ │ │ ├── cloud-moon-meatball.svg │ │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ │ ├── cloud-moon-showers.svg │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ ├── cloud-question.svg │ │ │ │ │ ├── cloud-rain-sun.svg │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ ├── cloud-redo.svg │ │ │ │ │ ├── cloud-share.svg │ │ │ │ │ ├── cloud-shield.svg │ │ │ │ │ ├── cloud-showers-alt.svg │ │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ │ ├── cloud-showers.svg │ │ │ │ │ ├── cloud-slash.svg │ │ │ │ │ ├── cloud-sun-hail.svg │ │ │ │ │ ├── cloud-sun-meatball.svg │ │ │ │ │ ├── cloud-sun-rain-alt.svg │ │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ │ ├── cloud-sun-tear.svg │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ ├── cloud-times.svg │ │ │ │ │ ├── cloud-unlock.svg │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ ├── cloud-wifi.svg │ │ │ │ │ ├── cloud-wind.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── clouds.svg │ │ │ │ │ ├── club.svg │ │ │ │ │ ├── code-branch.svg │ │ │ │ │ ├── coffee.svg │ │ │ │ │ ├── cog.svg │ │ │ │ │ ├── coins.svg │ │ │ │ │ ├── columns.svg │ │ │ │ │ ├── comment-add.svg │ │ │ │ │ ├── comment-alt-block.svg │ │ │ │ │ ├── comment-alt-chart-lines.svg │ │ │ │ │ ├── comment-alt-check.svg │ │ │ │ │ ├── comment-alt-dots.svg │ │ │ │ │ ├── comment-alt-download.svg │ │ │ │ │ ├── comment-alt-edit.svg │ │ │ │ │ ├── comment-alt-exclamation.svg │ │ │ │ │ ├── comment-alt-heart.svg │ │ │ │ │ ├── comment-alt-image.svg │ │ │ │ │ ├── comment-alt-info.svg │ │ │ │ │ ├── comment-alt-lines.svg │ │ │ │ │ ├── comment-alt-lock.svg │ │ │ │ │ ├── comment-alt-medical.svg │ │ │ │ │ ├── comment-alt-message.svg │ │ │ │ │ ├── comment-alt-notes.svg │ │ │ │ │ ├── comment-alt-plus.svg │ │ │ │ │ ├── comment-alt-question.svg │ │ │ │ │ ├── comment-alt-redo.svg │ │ │ │ │ ├── comment-alt-search.svg │ │ │ │ │ ├── comment-alt-share.svg │ │ │ │ │ ├── comment-alt-shield.svg │ │ │ │ │ ├── comment-alt-slash.svg │ │ │ │ │ ├── comment-alt-upload.svg │ │ │ │ │ ├── comment-alt-verify.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-block.svg │ │ │ │ │ ├── comment-chart-line.svg │ │ │ │ │ ├── comment-check.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-download.svg │ │ │ │ │ ├── comment-edit.svg │ │ │ │ │ ├── comment-exclamation.svg │ │ │ │ │ ├── comment-heart.svg │ │ │ │ │ ├── comment-image.svg │ │ │ │ │ ├── comment-info-alt.svg │ │ │ │ │ ├── comment-info.svg │ │ │ │ │ ├── comment-lines.svg │ │ │ │ │ ├── comment-lock.svg │ │ │ │ │ ├── comment-medical.svg │ │ │ │ │ ├── comment-message.svg │ │ │ │ │ ├── comment-notes.svg │ │ │ │ │ ├── comment-plus.svg │ │ │ │ │ ├── comment-question.svg │ │ │ │ │ ├── comment-redo.svg │ │ │ │ │ ├── comment-search.svg │ │ │ │ │ ├── comment-share.svg │ │ │ │ │ ├── comment-shield.svg │ │ │ │ │ ├── comment-slash.svg │ │ │ │ │ ├── comment-upload.svg │ │ │ │ │ ├── comment-verify.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-alt.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── comparison.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── compress-alt-left.svg │ │ │ │ │ ├── compress-alt.svg │ │ │ │ │ ├── compress-arrows.svg │ │ │ │ │ ├── compress-lines.svg │ │ │ │ │ ├── compress-point.svg │ │ │ │ │ ├── compress-v.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── confused.svg │ │ │ │ │ ├── constructor.svg │ │ │ │ │ ├── copy-alt.svg │ │ │ │ │ ├── copy-landscape.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── copyright.svg │ │ │ │ │ ├── corner-down-left.svg │ │ │ │ │ ├── corner-down-right-alt.svg │ │ │ │ │ ├── corner-down-right.svg │ │ │ │ │ ├── corner-left-down.svg │ │ │ │ │ ├── corner-right-down.svg │ │ │ │ │ ├── corner-up-left-alt.svg │ │ │ │ │ ├── corner-up-left.svg │ │ │ │ │ ├── corner-up-right-alt.svg │ │ │ │ │ ├── corner-up-right.svg │ │ │ │ │ ├── coronavirus.svg │ │ │ │ │ ├── create-dashboard.svg │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ ├── credit-card-search.svg │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ ├── crockery.svg │ │ │ │ │ ├── crop-alt-rotate-left.svg │ │ │ │ │ ├── crop-alt-rotate-right.svg │ │ │ │ │ ├── crop-alt.svg │ │ │ │ │ ├── crosshair-alt.svg │ │ │ │ │ ├── crosshair.svg │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ ├── css3-simple.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── dashboard.svg │ │ │ │ │ ├── data-sharing.svg │ │ │ │ │ ├── database-alt.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── desert.svg │ │ │ │ │ ├── desktop-alt-slash.svg │ │ │ │ │ ├── desktop-alt.svg │ │ │ │ │ ├── desktop-cloud-alt.svg │ │ │ │ │ ├── desktop-slash.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dialpad-alt.svg │ │ │ │ │ ├── dialpad.svg │ │ │ │ │ ├── diamond.svg │ │ │ │ │ ├── diary-alt.svg │ │ │ │ │ ├── diary.svg │ │ │ │ │ ├── dice-five.svg │ │ │ │ │ ├── dice-four.svg │ │ │ │ │ ├── dice-one.svg │ │ │ │ │ ├── dice-six.svg │ │ │ │ │ ├── dice-three.svg │ │ │ │ │ ├── dice-two.svg │ │ │ │ │ ├── direction.svg │ │ │ │ │ ├── directions.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── dizzy-meh.svg │ │ │ │ │ ├── dna.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── document-info.svg │ │ │ │ │ ├── document-layout-center.svg │ │ │ │ │ ├── document-layout-left.svg │ │ │ │ │ ├── document-layout-right.svg │ │ │ │ │ ├── dollar-alt.svg │ │ │ │ │ ├── dollar-sign-alt.svg │ │ │ │ │ ├── dollar-sign.svg │ │ │ │ │ ├── download-alt.svg │ │ │ │ │ ├── draggabledots.svg │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ ├── drill.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── ear.svg │ │ │ │ │ ├── edit-alt.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── elipsis-double-v-alt.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── emoji.svg │ │ │ │ │ ├── english-to-chinese.svg │ │ │ │ │ ├── enter.svg │ │ │ │ │ ├── envelope-add.svg │ │ │ │ │ ├── envelope-alt.svg │ │ │ │ │ ├── envelope-block.svg │ │ │ │ │ ├── envelope-bookmark.svg │ │ │ │ │ ├── envelope-check.svg │ │ │ │ │ ├── envelope-download-alt.svg │ │ │ │ │ ├── envelope-download.svg │ │ │ │ │ ├── envelope-edit.svg │ │ │ │ │ ├── envelope-exclamation.svg │ │ │ │ │ ├── envelope-heart.svg │ │ │ │ │ ├── envelope-info.svg │ │ │ │ │ ├── envelope-lock.svg │ │ │ │ │ ├── envelope-minus.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope-question.svg │ │ │ │ │ ├── envelope-receive.svg │ │ │ │ │ ├── envelope-redo.svg │ │ │ │ │ ├── envelope-search.svg │ │ │ │ │ ├── envelope-send.svg │ │ │ │ │ ├── envelope-share.svg │ │ │ │ │ ├── envelope-shield.svg │ │ │ │ │ ├── envelope-star.svg │ │ │ │ │ ├── envelope-times.svg │ │ │ │ │ ├── envelope-upload-alt.svg │ │ │ │ │ ├── envelope-upload.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── envelopes.svg │ │ │ │ │ ├── equal-circle.svg │ │ │ │ │ ├── estate.svg │ │ │ │ │ ├── euro-circle.svg │ │ │ │ │ ├── euro.svg │ │ │ │ │ ├── exchange-alt.svg │ │ │ │ │ ├── exchange.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-octagon.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── exclude.svg │ │ │ │ │ ├── exit.svg │ │ │ │ │ ├── expand-alt.svg │ │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ │ ├── expand-arrows.svg │ │ │ │ │ ├── expand-from-corner.svg │ │ │ │ │ ├── expand-left.svg │ │ │ │ │ ├── expand-right.svg │ │ │ │ │ ├── export.svg │ │ │ │ │ ├── exposure-alt.svg │ │ │ │ │ ├── exposure-increase.svg │ │ │ │ │ ├── external-link-alt.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger-alt.svg │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── fahrenheit.svg │ │ │ │ │ ├── fast-mail-alt.svg │ │ │ │ │ ├── fast-mail.svg │ │ │ │ │ ├── favorite.svg │ │ │ │ │ ├── feedback.svg │ │ │ │ │ ├── fidget-spinner.svg │ │ │ │ │ ├── file-alt.svg │ │ │ │ │ ├── file-blank.svg │ │ │ │ │ ├── file-block-alt.svg │ │ │ │ │ ├── file-bookmark-alt.svg │ │ │ │ │ ├── file-check-alt.svg │ │ │ │ │ ├── file-check.svg │ │ │ │ │ ├── file-contract-dollar.svg │ │ │ │ │ ├── file-contract.svg │ │ │ │ │ ├── file-copy-alt.svg │ │ │ │ │ ├── file-download-alt.svg │ │ │ │ │ ├── file-download.svg │ │ │ │ │ ├── file-edit-alt.svg │ │ │ │ │ ├── file-exclamation-alt.svg │ │ │ │ │ ├── file-exclamation.svg │ │ │ │ │ ├── file-export.svg │ │ │ │ │ ├── file-graph.svg │ │ │ │ │ ├── file-heart.svg │ │ │ │ │ ├── file-import.svg │ │ │ │ │ ├── file-info-alt.svg │ │ │ │ │ ├── file-landscape-alt.svg │ │ │ │ │ ├── file-landscape.svg │ │ │ │ │ ├── file-lanscape-slash.svg │ │ │ │ │ ├── file-lock-alt.svg │ │ │ │ │ ├── file-medical-alt.svg │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ ├── file-minus-alt.svg │ │ │ │ │ ├── file-minus.svg │ │ │ │ │ ├── file-network.svg │ │ │ │ │ ├── file-plus-alt.svg │ │ │ │ │ ├── file-plus.svg │ │ │ │ │ ├── file-question-alt.svg │ │ │ │ │ ├── file-question.svg │ │ │ │ │ ├── file-redo-alt.svg │ │ │ │ │ ├── file-search-alt.svg │ │ │ │ │ ├── file-share-alt.svg │ │ │ │ │ ├── file-shield-alt.svg │ │ │ │ │ ├── file-slash.svg │ │ │ │ │ ├── file-times-alt.svg │ │ │ │ │ ├── file-times.svg │ │ │ │ │ ├── file-upload-alt.svg │ │ │ │ │ ├── file-upload.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── files-landscapes-alt.svg │ │ │ │ │ ├── files-landscapes.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter-slash.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── flask-potion.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── flip-h-alt.svg │ │ │ │ │ ├── flip-h.svg │ │ │ │ │ ├── flip-v-alt.svg │ │ │ │ │ ├── flip-v.svg │ │ │ │ │ ├── flower.svg │ │ │ │ │ ├── focus-add.svg │ │ │ │ │ ├── focus-target.svg │ │ │ │ │ ├── focus.svg │ │ │ │ │ ├── folder-check.svg │ │ │ │ │ ├── folder-download.svg │ │ │ │ │ ├── folder-exclamation.svg │ │ │ │ │ ├── folder-heart.svg │ │ │ │ │ ├── folder-info.svg │ │ │ │ │ ├── folder-lock.svg │ │ │ │ │ ├── folder-medical.svg │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ ├── folder-network.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ ├── folder-question.svg │ │ │ │ │ ├── folder-slash.svg │ │ │ │ │ ├── folder-times.svg │ │ │ │ │ ├── folder-upload.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── football-american.svg │ │ │ │ │ ├── football-ball.svg │ │ │ │ │ ├── football.svg │ │ │ │ │ ├── forecastcloud-moon-tear.svg │ │ │ │ │ ├── forwaded-call.svg │ │ │ │ │ ├── forward.svg │ │ │ │ │ ├── frown.svg │ │ │ │ │ ├── game-structure.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── glass-martini-alt-slash.svg │ │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ │ ├── glass-martini.svg │ │ │ │ │ ├── glass-tea.svg │ │ │ │ │ ├── glass.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── gold.svg │ │ │ │ │ ├── golf-ball.svg │ │ │ │ │ ├── google-drive-alt.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-hangouts-alt.svg │ │ │ │ │ ├── google-hangouts.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── graduation-cap.svg │ │ │ │ │ ├── graph-bar.svg │ │ │ │ │ ├── grid.svg │ │ │ │ │ ├── grids.svg │ │ │ │ │ ├── grin-tongue-wink-alt.svg │ │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ │ ├── grin.svg │ │ │ │ │ ├── grip-horizontal-line.svg │ │ │ │ │ ├── hard-hat.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ ├── head-side.svg │ │ │ │ │ ├── headphone-slash.svg │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── heart-alt.svg │ │ │ │ │ ├── heart-break.svg │ │ │ │ │ ├── heart-medical.svg │ │ │ │ │ ├── heart-rate.svg │ │ │ │ │ ├── heart-sign.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── heartbeat.svg │ │ │ │ │ ├── hindi-to-chinese.svg │ │ │ │ │ ├── hipchat.svg │ │ │ │ │ ├── history-alt.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── home-alt.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── horizontal-align-center.svg │ │ │ │ │ ├── horizontal-align-left.svg │ │ │ │ │ ├── horizontal-align-right.svg │ │ │ │ │ ├── horizontal-distribution-center.svg │ │ │ │ │ ├── horizontal-distribution-left.svg │ │ │ │ │ ├── horizontal-distribution-right.svg │ │ │ │ │ ├── hospital-square-sign.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── house-user.svg │ │ │ │ │ ├── html3-alt.svg │ │ │ │ │ ├── html3.svg │ │ │ │ │ ├── html5-alt.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hunting.svg │ │ │ │ │ ├── icons.svg │ │ │ │ │ ├── illustration.svg │ │ │ │ │ ├── image-alt-slash.svg │ │ │ │ │ ├── image-block.svg │ │ │ │ │ ├── image-broken.svg │ │ │ │ │ ├── image-check.svg │ │ │ │ │ ├── image-download.svg │ │ │ │ │ ├── image-edit.svg │ │ │ │ │ ├── image-lock.svg │ │ │ │ │ ├── image-minus.svg │ │ │ │ │ ├── image-plus.svg │ │ │ │ │ ├── image-question.svg │ │ │ │ │ ├── image-redo.svg │ │ │ │ │ ├── image-resize-landscape.svg │ │ │ │ │ ├── image-resize-square.svg │ │ │ │ │ ├── image-search.svg │ │ │ │ │ ├── image-share.svg │ │ │ │ │ ├── image-shield.svg │ │ │ │ │ ├── image-slash.svg │ │ │ │ │ ├── image-times.svg │ │ │ │ │ ├── image-upload.svg │ │ │ │ │ ├── image-v.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── import.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── incoming-call.svg │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── instagram-alt.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── intercom-alt.svg │ │ │ │ │ ├── intercom.svg │ │ │ │ │ ├── invoice.svg │ │ │ │ │ ├── italic.svg │ │ │ │ │ ├── jackhammer.svg │ │ │ │ │ ├── java-script.svg │ │ │ │ │ ├── kayak.svg │ │ │ │ │ ├── key-skeleton-alt.svg │ │ │ │ │ ├── key-skeleton.svg │ │ │ │ │ ├── keyboard-alt.svg │ │ │ │ │ ├── keyboard-hide.svg │ │ │ │ │ ├── keyboard-show.svg │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ ├── keyhole-circle.svg │ │ │ │ │ ├── keyhole-square-full.svg │ │ │ │ │ ├── keyhole-square.svg │ │ │ │ │ ├── kid.svg │ │ │ │ │ ├── label-alt.svg │ │ │ │ │ ├── label.svg │ │ │ │ │ ├── lamp.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-cloud.svg │ │ │ │ │ ├── laptop-connection.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── laughing.svg │ │ │ │ │ ├── layer-group-slash.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── layers-alt.svg │ │ │ │ │ ├── layers-slash.svg │ │ │ │ │ ├── layers.svg │ │ │ │ │ ├── left-arrow-from-left.svg │ │ │ │ │ ├── left-arrow-to-left.svg │ │ │ │ │ ├── left-indent-alt.svg │ │ │ │ │ ├── left-indent.svg │ │ │ │ │ ├── left-to-right-text-direction.svg │ │ │ │ │ ├── letter-chinese-a.svg │ │ │ │ │ ├── letter-english-a.svg │ │ │ │ │ ├── letter-hindi-a.svg │ │ │ │ │ ├── letter-japanese-a.svg │ │ │ │ │ ├── life-ring.svg │ │ │ │ │ ├── lightbulb-alt.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── line-alt.svg │ │ │ │ │ ├── line-spacing.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── link-add.svg │ │ │ │ │ ├── link-alt.svg │ │ │ │ │ ├── link-broken.svg │ │ │ │ │ ├── link-h.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── linkedin-alt.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── lira-sign.svg │ │ │ │ │ ├── list-ol-alt.svg │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ ├── list-ui-alt.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── location-arrow-alt.svg │ │ │ │ │ ├── location-arrow.svg │ │ │ │ │ ├── location-pin-alt.svg │ │ │ │ │ ├── location-point.svg │ │ │ │ │ ├── lock-access.svg │ │ │ │ │ ├── lock-alt.svg │ │ │ │ │ ├── lock-open-alt.svg │ │ │ │ │ ├── lock-slash.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── lottiefiles-alt.svg │ │ │ │ │ ├── lottiefiles.svg │ │ │ │ │ ├── luggage-cart.svg │ │ │ │ │ ├── mailbox-alt.svg │ │ │ │ │ ├── mailbox.svg │ │ │ │ │ ├── map-marker-alt.svg │ │ │ │ │ ├── map-marker-edit.svg │ │ │ │ │ ├── map-marker-info.svg │ │ │ │ │ ├── map-marker-minus.svg │ │ │ │ │ ├── map-marker-plus.svg │ │ │ │ │ ├── map-marker-question.svg │ │ │ │ │ ├── map-marker-shield.svg │ │ │ │ │ ├── map-marker-slash.svg │ │ │ │ │ ├── map-marker.svg │ │ │ │ │ ├── map-pin-alt.svg │ │ │ │ │ ├── map-pin.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── mars.svg │ │ │ │ │ ├── master-card.svg │ │ │ │ │ ├── maximize-left.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── medical-drip.svg │ │ │ │ │ ├── medical-square-full.svg │ │ │ │ │ ├── medical-square.svg │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ ├── medkit.svg │ │ │ │ │ ├── meeting-board.svg │ │ │ │ │ ├── megaphone.svg │ │ │ │ │ ├── meh-alt.svg │ │ │ │ │ ├── meh-closed-eye.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── message.svg │ │ │ │ │ ├── metro.svg │ │ │ │ │ ├── microphone-slash.svg │ │ │ │ │ ├── microphone.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── minus-circle.svg │ │ │ │ │ ├── minus-path.svg │ │ │ │ │ ├── minus-square-full.svg │ │ │ │ │ ├── minus-square.svg │ │ │ │ │ ├── minus.svg │ │ │ │ │ ├── missed-call.svg │ │ │ │ │ ├── mobile-android-alt.svg │ │ │ │ │ ├── mobile-android.svg │ │ │ │ │ ├── mobile-vibrate.svg │ │ │ │ │ ├── modem.svg │ │ │ │ │ ├── money-bill-slash.svg │ │ │ │ │ ├── money-bill-stack.svg │ │ │ │ │ ├── money-bill.svg │ │ │ │ │ ├── money-insert.svg │ │ │ │ │ ├── money-stack.svg │ │ │ │ │ ├── money-withdraw.svg │ │ │ │ │ ├── money-withdrawal.svg │ │ │ │ │ ├── moneybag-alt.svg │ │ │ │ │ ├── moneybag.svg │ │ │ │ │ ├── monitor-heart-rate.svg │ │ │ │ │ ├── monitor.svg │ │ │ │ │ ├── moon-eclipse.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── moonset.svg │ │ │ │ │ ├── mountains-sun.svg │ │ │ │ │ ├── mountains.svg │ │ │ │ │ ├── mouse-alt-2.svg │ │ │ │ │ ├── mouse-alt.svg │ │ │ │ │ ├── mouse.svg │ │ │ │ │ ├── multiply.svg │ │ │ │ │ ├── music-note.svg │ │ │ │ │ ├── music-tune-slash.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── n-a.svg │ │ │ │ │ ├── navigator.svg │ │ │ │ │ ├── nerd.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── ninja.svg │ │ │ │ │ ├── no-entry.svg │ │ │ │ │ ├── notebooks.svg │ │ │ │ │ ├── notes.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── octagon.svg │ │ │ │ │ ├── okta.svg │ │ │ │ │ ├── opera-alt.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── outgoing-call.svg │ │ │ │ │ ├── package.svg │ │ │ │ │ ├── padlock.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── pagerduty.svg │ │ │ │ │ ├── paint-tool.svg │ │ │ │ │ ├── palette.svg │ │ │ │ │ ├── panel-add.svg │ │ │ │ │ ├── panorama-h-alt.svg │ │ │ │ │ ├── panorama-h.svg │ │ │ │ │ ├── panorama-v.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── parcel.svg │ │ │ │ │ ├── parking-circle.svg │ │ │ │ │ ├── parking-square.svg │ │ │ │ │ ├── pathfinder-unite.svg │ │ │ │ │ ├── pathfinder.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── pen.svg │ │ │ │ │ ├── pentagon.svg │ │ │ │ │ ├── percentage.svg │ │ │ │ │ ├── phone-alt.svg │ │ │ │ │ ├── phone-pause.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-times.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── picture.svg │ │ │ │ │ ├── pizza-slice.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-departure.svg │ │ │ │ │ ├── plane-fly.svg │ │ │ │ │ ├── plane.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── plug.svg │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── plus.svg │ │ │ │ │ ├── podium.svg │ │ │ │ │ ├── polygon.svg │ │ │ │ │ ├── post-stamp.svg │ │ │ │ │ ├── postcard.svg │ │ │ │ │ ├── pound-circle.svg │ │ │ │ │ ├── pound.svg │ │ │ │ │ ├── power.svg │ │ │ │ │ ├── prescription-bottle.svg │ │ │ │ │ ├── presentation-check.svg │ │ │ │ │ ├── presentation-edit.svg │ │ │ │ │ ├── presentation-line.svg │ │ │ │ │ ├── presentation-lines-alt.svg │ │ │ │ │ ├── presentation-minus.svg │ │ │ │ │ ├── presentation-play.svg │ │ │ │ │ ├── presentation-plus.svg │ │ │ │ │ ├── presentation-times.svg │ │ │ │ │ ├── presentation.svg │ │ │ │ │ ├── previous.svg │ │ │ │ │ ├── pricetag-alt.svg │ │ │ │ │ ├── print-slash.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── process.svg │ │ │ │ │ ├── processor.svg │ │ │ │ │ ├── programming-language.svg │ │ │ │ │ ├── pump.svg │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── qrcode-scan.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ ├── raindrops-alt.svg │ │ │ │ │ ├── raindrops.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── receipt-alt.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── record-audio.svg │ │ │ │ │ ├── reddit-alien-alt.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── restaurant.svg │ │ │ │ │ ├── right-indent-alt.svg │ │ │ │ │ ├── right-to-left-text-direction.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── rope-way.svg │ │ │ │ │ ├── rotate-360.svg │ │ │ │ │ ├── rss-alt.svg │ │ │ │ │ ├── rss-interface.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-crying.svg │ │ │ │ │ ├── sad-dizzy.svg │ │ │ │ │ ├── sad-squint.svg │ │ │ │ │ ├── sad.svg │ │ │ │ │ ├── sanitizer-alt.svg │ │ │ │ │ ├── sanitizer.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── scaling-left.svg │ │ │ │ │ ├── scaling-right.svg │ │ │ │ │ ├── scenery.svg │ │ │ │ │ ├── schedule.svg │ │ │ │ │ ├── screw.svg │ │ │ │ │ ├── scroll-h.svg │ │ │ │ │ ├── scroll.svg │ │ │ │ │ ├── search-alt.svg │ │ │ │ │ ├── search-minus.svg │ │ │ │ │ ├── search-plus.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── selfie.svg │ │ │ │ │ ├── server-alt.svg │ │ │ │ │ ├── server-connection.svg │ │ │ │ │ ├── server-network-alt.svg │ │ │ │ │ ├── server-network.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── servers.svg │ │ │ │ │ ├── servicemark.svg │ │ │ │ │ ├── setting.svg │ │ │ │ │ ├── share-alt.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── shield-check.svg │ │ │ │ │ ├── shield-exclamation.svg │ │ │ │ │ ├── shield-plus.svg │ │ │ │ │ ├── shield-question.svg │ │ │ │ │ ├── shield-slash.svg │ │ │ │ │ ├── shield.svg │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shop.svg │ │ │ │ │ ├── shopping-bag.svg │ │ │ │ │ ├── shopping-basket.svg │ │ │ │ │ ├── shopping-cart-alt.svg │ │ │ │ │ ├── shopping-cart.svg │ │ │ │ │ ├── shovel.svg │ │ │ │ │ ├── shrink.svg │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ ├── shutter-alt.svg │ │ │ │ │ ├── shutter.svg │ │ │ │ │ ├── sick.svg │ │ │ │ │ ├── sigma.svg │ │ │ │ │ ├── sign-alt.svg │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ ├── sign-left.svg │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ ├── sign-right.svg │ │ │ │ │ ├── signal-alt-3.svg │ │ │ │ │ ├── signal-alt.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signin.svg │ │ │ │ │ ├── signout.svg │ │ │ │ │ ├── silence.svg │ │ │ │ │ ├── silent-squint.svg │ │ │ │ │ ├── sim-card.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skip-forward-alt.svg │ │ │ │ │ ├── skip-forward-circle.svg │ │ │ │ │ ├── skip-forward.svg │ │ │ │ │ ├── skype-alt.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack-alt.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slider-h-range.svg │ │ │ │ │ ├── slider-h.svg │ │ │ │ │ ├── sliders-v-alt.svg │ │ │ │ │ ├── sliders-v.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-dizzy.svg │ │ │ │ │ ├── smile-squint-wink-alt.svg │ │ │ │ │ ├── smile-squint-wink.svg │ │ │ │ │ ├── smile-wink-alt.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── snapchat-alt.svg │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ ├── snow-flake.svg │ │ │ │ │ ├── snowflake-alt.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── social-distancing.svg │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── sorting.svg │ │ │ │ │ ├── space-key.svg │ │ │ │ │ ├── spade.svg │ │ │ │ │ ├── sperms.svg │ │ │ │ │ ├── spin.svg │ │ │ │ │ ├── spinner-alt.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-shape.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── squint.svg │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── step-backward-alt.svg │ │ │ │ │ ├── step-backward-circle.svg │ │ │ │ │ ├── step-backward.svg │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ ├── stethoscope-alt.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── stopwatch-slash.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-alt.svg │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ ├── store.svg │ │ │ │ │ ├── streering.svg │ │ │ │ │ ├── stretcher.svg │ │ │ │ │ ├── subject.svg │ │ │ │ │ ├── subway-alt.svg │ │ │ │ │ ├── subway.svg │ │ │ │ │ ├── suitcase-alt.svg │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ ├── sun.svg │ │ │ │ │ ├── sunset.svg │ │ │ │ │ ├── surprise.svg │ │ │ │ │ ├── swatchbook.svg │ │ │ │ │ ├── swiggy.svg │ │ │ │ │ ├── swimmer.svg │ │ │ │ │ ├── sync-exclamation.svg │ │ │ │ │ ├── sync-slash.svg │ │ │ │ │ ├── sync.svg │ │ │ │ │ ├── syringe.svg │ │ │ │ │ ├── table-tennis.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tablet.svg │ │ │ │ │ ├── tablets.svg │ │ │ │ │ ├── tachometer-fast-alt.svg │ │ │ │ │ ├── tachometer-fast.svg │ │ │ │ │ ├── tag-alt.svg │ │ │ │ │ ├── tag.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── tear.svg │ │ │ │ │ ├── telegram-alt.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── telescope.svg │ │ │ │ │ ├── temperature-empty.svg │ │ │ │ │ ├── temperature-half.svg │ │ │ │ │ ├── temperature-minus.svg │ │ │ │ │ ├── temperature-plus.svg │ │ │ │ │ ├── temperature-quarter.svg │ │ │ │ │ ├── temperature-three-quarter.svg │ │ │ │ │ ├── temperature.svg │ │ │ │ │ ├── tennis-ball.svg │ │ │ │ │ ├── text-fields.svg │ │ │ │ │ ├── text-size.svg │ │ │ │ │ ├── text-strike-through.svg │ │ │ │ │ ├── text.svg │ │ │ │ │ ├── th-large.svg │ │ │ │ │ ├── th-slash.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thunderstorm-moon.svg │ │ │ │ │ ├── thunderstorm-sun.svg │ │ │ │ │ ├── thunderstorm.svg │ │ │ │ │ ├── ticket.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── times-square.svg │ │ │ │ │ ├── times.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── top-arrow-from-top.svg │ │ │ │ │ ├── top-arrow-to-top.svg │ │ │ │ │ ├── tornado.svg │ │ │ │ │ ├── trademark-circle.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-barrier.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── transaction.svg │ │ │ │ │ ├── trash-alt.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── trees.svg │ │ │ │ │ ├── triangle.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── trowel.svg │ │ │ │ │ ├── truck-loading.svg │ │ │ │ │ ├── truck.svg │ │ │ │ │ ├── tumblr-alt.svg │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── tv-retro-slash.svg │ │ │ │ │ ├── tv-retro.svg │ │ │ │ │ ├── twitter-alt.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── unamused.svg │ │ │ │ │ ├── underline.svg │ │ │ │ │ ├── university.svg │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── upload-alt.svg │ │ │ │ │ ├── upload.svg │ │ │ │ │ ├── usd-circle.svg │ │ │ │ │ ├── usd-square.svg │ │ │ │ │ ├── user-arrows.svg │ │ │ │ │ ├── user-check.svg │ │ │ │ │ ├── user-circle.svg │ │ │ │ │ ├── user-exclamation.svg │ │ │ │ │ ├── user-location.svg │ │ │ │ │ ├── user-md.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ ├── user-plus.svg │ │ │ │ │ ├── user-square.svg │ │ │ │ │ ├── user-times.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── users-alt.svg │ │ │ │ │ ├── utensils-alt.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── vector-square-alt.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vertical-align-bottom.svg │ │ │ │ │ ├── vertical-align-center.svg │ │ │ │ │ ├── vertical-align-top.svg │ │ │ │ │ ├── vertical-distribute-bottom.svg │ │ │ │ │ ├── vertical-distribution-center.svg │ │ │ │ │ ├── vertical-distribution-top.svg │ │ │ │ │ ├── video-question.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── virus-slash.svg │ │ │ │ │ ├── visual-studio.svg │ │ │ │ │ ├── vk-alt.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── voicemail-rectangle.svg │ │ │ │ │ ├── voicemail.svg │ │ │ │ │ ├── volleyball.svg │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ ├── volume.svg │ │ │ │ │ ├── vuejs-alt.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── wall.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── watch-alt.svg │ │ │ │ │ ├── watch.svg │ │ │ │ │ ├── water-drop-slash.svg │ │ │ │ │ ├── water-glass.svg │ │ │ │ │ ├── water.svg │ │ │ │ │ ├── web-grid-alt.svg │ │ │ │ │ ├── web-grid.svg │ │ │ │ │ ├── web-section-alt.svg │ │ │ │ │ ├── web-section.svg │ │ │ │ │ ├── webcam.svg │ │ │ │ │ ├── weight.svg │ │ │ │ │ ├── whatsapp-alt.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── wheel-barrow.svg │ │ │ │ │ ├── wheelchair-alt.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── wifi-router.svg │ │ │ │ │ ├── wifi-slash.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── wind-moon.svg │ │ │ │ │ ├── wind-sun.svg │ │ │ │ │ ├── wind.svg │ │ │ │ │ ├── window-grid.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-section.svg │ │ │ │ │ ├── window.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── windsock.svg │ │ │ │ │ ├── windy.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wrap-text.svg │ │ │ │ │ ├── wrench.svg │ │ │ │ │ ├── x-add.svg │ │ │ │ │ ├── x.svg │ │ │ │ │ ├── yen-circle.svg │ │ │ │ │ ├── yen.svg │ │ │ │ │ ├── yin-yang.svg │ │ │ │ │ └── youtube.svg │ │ │ │ ├── monochrome │ │ │ │ │ ├── 500px.svg │ │ │ │ │ ├── adobe-alt.svg │ │ │ │ │ ├── adobe.svg │ │ │ │ │ ├── airplay.svg │ │ │ │ │ ├── align-alt.svg │ │ │ │ │ ├── align-center-justify.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-letter-right.svg │ │ │ │ │ ├── align-right-justify.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── align.svg │ │ │ │ │ ├── amazon.svg │ │ │ │ │ ├── analysis.svg │ │ │ │ │ ├── analytics.svg │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── android-alt.svg │ │ │ │ │ ├── android.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-b.svg │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ ├── apple.svg │ │ │ │ │ ├── apps.svg │ │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ │ ├── arrow-down-left.svg │ │ │ │ │ ├── arrow-down-right.svg │ │ │ │ │ ├── arrow-up-left.svg │ │ │ │ │ ├── arrow-up-right.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── bag.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── battery-bolt.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── behance-alt.svg │ │ │ │ │ ├── behance.svg │ │ │ │ │ ├── bing.svg │ │ │ │ │ ├── bitcoin-alt.svg │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ ├── blogger-alt.svg │ │ │ │ │ ├── blogger.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── border-alt.svg │ │ │ │ │ ├── border-bottom.svg │ │ │ │ │ ├── border-clear.svg │ │ │ │ │ ├── border-horizontal.svg │ │ │ │ │ ├── border-inner.svg │ │ │ │ │ ├── border-left.svg │ │ │ │ │ ├── border-out.svg │ │ │ │ │ ├── border-right.svg │ │ │ │ │ ├── border-top.svg │ │ │ │ │ ├── border-vertical.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── calender.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── chart.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── circle-layer.svg │ │ │ │ │ ├── circle.svg │ │ │ │ │ ├── clinic-medical.svg │ │ │ │ │ ├── clock-eight.svg │ │ │ │ │ ├── clock-five.svg │ │ │ │ │ ├── clock-nine.svg │ │ │ │ │ ├── clock-seven.svg │ │ │ │ │ ├── clock-ten.svg │ │ │ │ │ ├── clock-three.svg │ │ │ │ │ ├── clock-two.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── columns.svg │ │ │ │ │ ├── comment-alt-dots.svg │ │ │ │ │ ├── comment-alt-message.svg │ │ │ │ │ ├── comment-alt-plus.svg │ │ │ │ │ ├── comment-alt.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── comment-message.svg │ │ │ │ │ ├── comment-plus.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── corner-down-left.svg │ │ │ │ │ ├── corner-down-right.svg │ │ │ │ │ ├── corner-left-down.svg │ │ │ │ │ ├── corner-right-down.svg │ │ │ │ │ ├── corner-up-left.svg │ │ │ │ │ ├── corner-up-right.svg │ │ │ │ │ ├── coronavirus.svg │ │ │ │ │ ├── css3-simple.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── dialpad-alt.svg │ │ │ │ │ ├── dialpad.svg │ │ │ │ │ ├── direction.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── document-layout-center.svg │ │ │ │ │ ├── document-layout-left.svg │ │ │ │ │ ├── document-layout-right.svg │ │ │ │ │ ├── download-alt.svg │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── entry.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-octagon.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── exit.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger-alt.svg │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── favorite.svg │ │ │ │ │ ├── flip-h-alt.svg │ │ │ │ │ ├── flip-h.svg │ │ │ │ │ ├── flip-v-alt.svg │ │ │ │ │ ├── flip-v.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitlab-alt.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── google-drive-alt.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-hangouts-alt.svg │ │ │ │ │ ├── google-hangouts.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── graph-bar.svg │ │ │ │ │ ├── grid.svg │ │ │ │ │ ├── grids.svg │ │ │ │ │ ├── grip-horizontal-line.svg │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ ├── head-side.svg │ │ │ │ │ ├── hipchat.svg │ │ │ │ │ ├── history-alt.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── horizontal-align-left.svg │ │ │ │ │ ├── hospital-square-sign.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── house-user.svg │ │ │ │ │ ├── html3-alt.svg │ │ │ │ │ ├── html3.svg │ │ │ │ │ ├── html5-alt.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── image-v.svg │ │ │ │ │ ├── instagram-alt.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── intercom-alt.svg │ │ │ │ │ ├── intercom.svg │ │ │ │ │ ├── java-script.svg │ │ │ │ │ ├── key-skeleton-alt.svg │ │ │ │ │ ├── key-skeleton.svg │ │ │ │ │ ├── keyhole-circle.svg │ │ │ │ │ ├── keyhole-square-full.svg │ │ │ │ │ ├── keyhole-square.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── layers-alt.svg │ │ │ │ │ ├── left-indent-alt.svg │ │ │ │ │ ├── left-indent.svg │ │ │ │ │ ├── line-spacing.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── link-h.svg │ │ │ │ │ ├── linkedin-alt.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── list-ui-alt.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── lock-access.svg │ │ │ │ │ ├── lock-alt.svg │ │ │ │ │ ├── lock-open-alt.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── lottiefiles.svg │ │ │ │ │ ├── master-card.svg │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── minus-square-full.svg │ │ │ │ │ ├── multiply.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── okta.svg │ │ │ │ │ ├── opera-alt.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── padlock.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── pagerduty.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── pentagon.svg │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ ├── polygon.svg │ │ │ │ │ ├── previous.svg │ │ │ │ │ ├── process.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── record-audio.svg │ │ │ │ │ ├── reddit-alien-alt.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── right-indent-alt.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── sanitizer-alt.svg │ │ │ │ │ ├── sanitizer.svg │ │ │ │ │ ├── scenery.svg │ │ │ │ │ ├── schedule.svg │ │ │ │ │ ├── shield-plus.svg │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ ├── sign-in.svg │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ ├── signal-alt-3.svg │ │ │ │ │ ├── signal-alt.svg │ │ │ │ │ ├── signin.svg │ │ │ │ │ ├── signout.svg │ │ │ │ │ ├── skype-alt.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack-alt.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── snapchat-alt.svg │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ ├── social-distancing.svg │ │ │ │ │ ├── sorting.svg │ │ │ │ │ ├── space-key.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-shape.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── squre-shape.svg │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ ├── stethoscope-alt.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ ├── subject.svg │ │ │ │ │ ├── swiggy.svg │ │ │ │ │ ├── sync-exclamation.svg │ │ │ │ │ ├── sync-slash.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── telegram-alt.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── th-large.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── triangle.svg │ │ │ │ │ ├── tumblr-alt.svg │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitter-alt.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── upload-alt.svg │ │ │ │ │ ├── user-arrows.svg │ │ │ │ │ ├── user-md.svg │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ ├── vector-square-alt.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── virus-slash.svg │ │ │ │ │ ├── visual-studio.svg │ │ │ │ │ ├── vk-alt.svg │ │ │ │ │ ├── vk.svg │ │ │ │ │ ├── vuejs-alt.svg │ │ │ │ │ ├── vuejs.svg │ │ │ │ │ ├── web-grid-alt.svg │ │ │ │ │ ├── web-grid.svg │ │ │ │ │ ├── web-section-alt.svg │ │ │ │ │ ├── web-section.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── window-grid.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-section.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wrap-text.svg │ │ │ │ │ └── youtube.svg │ │ │ │ ├── solid │ │ │ │ │ ├── airplay.svg │ │ │ │ │ ├── align-alt.svg │ │ │ │ │ ├── align-center-justify.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-justify.svg │ │ │ │ │ ├── align-left-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-letter-right.svg │ │ │ │ │ ├── align-right-justify.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── analysis.svg │ │ │ │ │ ├── analytics.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-b.svg │ │ │ │ │ ├── angle-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── apps.svg │ │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ │ ├── arrow-down-left.svg │ │ │ │ │ ├── arrow-down-right.svg │ │ │ │ │ ├── arrow-up-left.svg │ │ │ │ │ ├── arrow-up-right.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── bag.svg │ │ │ │ │ ├── bars.svg │ │ │ │ │ ├── battery-bolt.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── border-alt.svg │ │ │ │ │ ├── border-bottom.svg │ │ │ │ │ ├── border-clear.svg │ │ │ │ │ ├── border-horizontal.svg │ │ │ │ │ ├── border-inner.svg │ │ │ │ │ ├── border-left.svg │ │ │ │ │ ├── border-out.svg │ │ │ │ │ ├── border-right.svg │ │ │ │ │ ├── border-top.svg │ │ │ │ │ ├── border-vertical.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── calender.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── chart.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── circle-layer.svg │ │ │ │ │ ├── clinic-medical.svg │ │ │ │ │ ├── clock-eight.svg │ │ │ │ │ ├── clock-five.svg │ │ │ │ │ ├── clock-nine.svg │ │ │ │ │ ├── clock-seven.svg │ │ │ │ │ ├── clock-ten.svg │ │ │ │ │ ├── clock-three.svg │ │ │ │ │ ├── clock-two.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── columns.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── corner-down-left.svg │ │ │ │ │ ├── corner-down-right.svg │ │ │ │ │ ├── corner-left-down.svg │ │ │ │ │ ├── corner-right-down.svg │ │ │ │ │ ├── corner-up-left.svg │ │ │ │ │ ├── corner-up-right.svg │ │ │ │ │ ├── coronavirus.svg │ │ │ │ │ ├── dialpad.svg │ │ │ │ │ ├── direction.svg │ │ │ │ │ ├── document-layout-center.svg │ │ │ │ │ ├── document-layout-left.svg │ │ │ │ │ ├── document-layout-right.svg │ │ │ │ │ ├── download-alt.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-octagon.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── favorite.svg │ │ │ │ │ ├── flip-h-alt.svg │ │ │ │ │ ├── flip-h.svg │ │ │ │ │ ├── flip-v-alt.svg │ │ │ │ │ ├── flip-v.svg │ │ │ │ │ ├── graph-bar.svg │ │ │ │ │ ├── grid.svg │ │ │ │ │ ├── grids.svg │ │ │ │ │ ├── grip-horizontal-line.svg │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ ├── head-side.svg │ │ │ │ │ ├── history-alt.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── horizontal-align-left.svg │ │ │ │ │ ├── hospital-square-sign.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── house-user.svg │ │ │ │ │ ├── image-v.svg │ │ │ │ │ ├── key-skeleton-alt.svg │ │ │ │ │ ├── key-skeleton.svg │ │ │ │ │ ├── keyhole-circle.svg │ │ │ │ │ ├── keyhole-square-full.svg │ │ │ │ │ ├── keyhole-square.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── layers-alt.svg │ │ │ │ │ ├── left-indent-alt.svg │ │ │ │ │ ├── left-indent.svg │ │ │ │ │ ├── line-spacing.svg │ │ │ │ │ ├── link-h.svg │ │ │ │ │ ├── list-ui-alt.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── lock-access.svg │ │ │ │ │ ├── lock-alt.svg │ │ │ │ │ ├── lock-open-alt.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── minus-square-full.svg │ │ │ │ │ ├── multiply.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── padlock.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── pentagon.svg │ │ │ │ │ ├── polygon.svg │ │ │ │ │ ├── previous.svg │ │ │ │ │ ├── process.svg │ │ │ │ │ ├── record-audio.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── right-indent-alt.svg │ │ │ │ │ ├── right-indent.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── sanitizer-alt.svg │ │ │ │ │ ├── sanitizer.svg │ │ │ │ │ ├── scenery.svg │ │ │ │ │ ├── schedule.svg │ │ │ │ │ ├── shield-plus.svg │ │ │ │ │ ├── signal-alt-3.svg │ │ │ │ │ ├── signal-alt.svg │ │ │ │ │ ├── signout.svg │ │ │ │ │ ├── social-distancing.svg │ │ │ │ │ ├── sorting.svg │ │ │ │ │ ├── space-key.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ ├── stethoscope-alt.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ ├── subject.svg │ │ │ │ │ ├── sync-exclamation.svg │ │ │ │ │ ├── sync-slash.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── th-large.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── triangle.svg │ │ │ │ │ ├── unlock-alt.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── upload-alt.svg │ │ │ │ │ ├── user-arrows.svg │ │ │ │ │ ├── user-md.svg │ │ │ │ │ ├── user-nurse.svg │ │ │ │ │ ├── vector-square-alt.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── virus-slash.svg │ │ │ │ │ ├── web-grid-alt.svg │ │ │ │ │ ├── web-grid.svg │ │ │ │ │ ├── web-section-alt.svg │ │ │ │ │ ├── web-section.svg │ │ │ │ │ ├── window-grid.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-section.svg │ │ │ │ │ └── wrap-text.svg │ │ │ │ └── thinline │ │ │ │ │ ├── adobe-alt.svg │ │ │ │ │ ├── airplay.svg │ │ │ │ │ ├── align-alt.svg │ │ │ │ │ ├── align-center-alt.svg │ │ │ │ │ ├── align-center-justify.svg │ │ │ │ │ ├── align-center.svg │ │ │ │ │ ├── align-left-justify.svg │ │ │ │ │ ├── align-left.svg │ │ │ │ │ ├── align-letter-right.svg │ │ │ │ │ ├── align-right-justify.svg │ │ │ │ │ ├── align-right.svg │ │ │ │ │ ├── anchor.svg │ │ │ │ │ ├── android-alt.svg │ │ │ │ │ ├── angle-double-down.svg │ │ │ │ │ ├── angle-double-left.svg │ │ │ │ │ ├── angle-double-right.svg │ │ │ │ │ ├── angle-up.svg │ │ │ │ │ ├── ankh.svg │ │ │ │ │ ├── apple-alt.svg │ │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ │ ├── arrow-down-left.svg │ │ │ │ │ ├── arrow-down-right.svg │ │ │ │ │ ├── arrow-up-left.svg │ │ │ │ │ ├── arrow-up-right.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── bag.svg │ │ │ │ │ ├── battery-bolt.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── behance-alt.svg │ │ │ │ │ ├── bitcoin-alt.svg │ │ │ │ │ ├── blogger-alt.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── border-alt.svg │ │ │ │ │ ├── border-bottom.svg │ │ │ │ │ ├── border-clear.svg │ │ │ │ │ ├── border-horizontal.svg │ │ │ │ │ ├── border-inner.svg │ │ │ │ │ ├── border-left.svg │ │ │ │ │ ├── border-out.svg │ │ │ │ │ ├── border-top.svg │ │ │ │ │ ├── border-vertical.svg │ │ │ │ │ ├── calender.svg │ │ │ │ │ ├── chart-growth.svg │ │ │ │ │ ├── chart-pie.svg │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ ├── check-square.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── circle-layer.svg │ │ │ │ │ ├── circuit.svg │ │ │ │ │ ├── clinic-medical.svg │ │ │ │ │ ├── clock-eight.svg │ │ │ │ │ ├── clock-five.svg │ │ │ │ │ ├── clock-nine.svg │ │ │ │ │ ├── clock-seven.svg │ │ │ │ │ ├── clock-ten.svg │ │ │ │ │ ├── clock-three.svg │ │ │ │ │ ├── clock-two.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── columns.svg │ │ │ │ │ ├── comment-dots.svg │ │ │ │ │ ├── compress.svg │ │ │ │ │ ├── corner-down-left.svg │ │ │ │ │ ├── corner-down-right.svg │ │ │ │ │ ├── corner-left-down.svg │ │ │ │ │ ├── corner-right-down.svg │ │ │ │ │ ├── corner-up-left.svg │ │ │ │ │ ├── corner-up-right.svg │ │ │ │ │ ├── covid-19.svg │ │ │ │ │ ├── create-dashboard.svg │ │ │ │ │ ├── desktop-alt-slash.svg │ │ │ │ │ ├── dialpad.svg │ │ │ │ │ ├── direction.svg │ │ │ │ │ ├── document-layout-center.svg │ │ │ │ │ ├── document-layout-left.svg │ │ │ │ │ ├── document-layout-right.svg │ │ │ │ │ ├── download-alt.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-octagon.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger-alt.svg │ │ │ │ │ ├── favorite.svg │ │ │ │ │ ├── flip-h-alt.svg │ │ │ │ │ ├── flip-h.svg │ │ │ │ │ ├── flip-v-alt.svg │ │ │ │ │ ├── flip-v.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── gold.svg │ │ │ │ │ ├── google-drive-alt.svg │ │ │ │ │ ├── google-hangouts-alt.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── grid.svg │ │ │ │ │ ├── grids.svg │ │ │ │ │ ├── grip-horizontal-line.svg │ │ │ │ │ ├── head-side-cough.svg │ │ │ │ │ ├── head-side-mask.svg │ │ │ │ │ ├── head-side.svg │ │ │ │ │ ├── history-alt.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── horizontal-align-left.svg │ │ │ │ │ ├── hospital-square-sign.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── house-user.svg │ │ │ │ │ ├── html3-alt.svg │ │ │ │ │ ├── image-v.svg │ │ │ │ │ ├── intercom-alt.svg │ │ │ │ │ ├── key-skeleton-alt.svg │ │ │ │ │ ├── key-skeleton.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── layer-group.svg │ │ │ │ │ ├── layers-alt.svg │ │ │ │ │ ├── left-indent-alt.svg │ │ │ │ │ ├── left-indent.svg │ │ │ │ │ ├── line-spacing.svg │ │ │ │ │ ├── link-broken.svg │ │ │ │ │ ├── link-h.svg │ │ │ │ │ ├── linkedin-alt.svg │ │ │ │ │ ├── list-ui-alt.svg │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ ├── master-card.svg │ │ │ │ │ ├── microscope.svg │ │ │ │ │ ├── minus-square-full.svg │ │ │ │ │ ├── modem.svg │ │ │ │ │ ├── mouse-alt-2.svg │ │ │ │ │ ├── multiply.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── opera-alt.svg │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── pentagon.svg │ │ │ │ │ ├── polygon.svg │ │ │ │ │ ├── previous.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── process.svg │ │ │ │ │ ├── pump.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── record-audio.svg │ │ │ │ │ ├── reddit-alien-alt.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── right-indent-alt.svg │ │ │ │ │ ├── right-indent.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── ruler-combined.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── sanitizer-alt.svg │ │ │ │ │ ├── sanitizer.svg │ │ │ │ │ ├── scenery.svg │ │ │ │ │ ├── shield-check.svg │ │ │ │ │ ├── shield-exclamation.svg │ │ │ │ │ ├── shield-plus.svg │ │ │ │ │ ├── shield-question.svg │ │ │ │ │ ├── shield-slash.svg │ │ │ │ │ ├── shield.svg │ │ │ │ │ ├── signal-alt-3.svg │ │ │ │ │ ├── signal-alt.svg │ │ │ │ │ ├── signout.svg │ │ │ │ │ ├── sim-card.svg │ │ │ │ │ ├── skype-alt.svg │ │ │ │ │ ├── slack-alt.svg │ │ │ │ │ ├── snapchat-alt.svg │ │ │ │ │ ├── social-distancing.svg │ │ │ │ │ ├── space-key.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── star-half-alt.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── step-forward.svg │ │ │ │ │ ├── stethoscope-alt.svg │ │ │ │ │ ├── stethoscope.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── store-slash.svg │ │ │ │ │ ├── subject.svg │ │ │ │ │ ├── sync-exclamation.svg │ │ │ │ │ ├── sync-slash.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── telegram-alt.svg │ │ │ │ │ ├── th-large.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toilet-paper.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── triangle.svg │ │ │ │ │ ├── tumblr-alt.svg │ │ │ │ │ ├── twitter-alt.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── upload-alt.svg │ │ │ │ │ ├── user-arrows.svg │ │ │ │ │ ├── vector-square-alt.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── vk-alt.svg │ │ │ │ │ ├── vuejs-alt.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── web-grid-alt.svg │ │ │ │ │ ├── web-grid.svg │ │ │ │ │ ├── web-section-alt.svg │ │ │ │ │ ├── web-section.svg │ │ │ │ │ ├── window-grid.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-section.svg │ │ │ │ │ ├── wrap-text.svg │ │ │ │ │ └── youtube.svg │ │ │ │ └── test.npmrc │ │ │ ├── @mdi │ │ │ └── font │ │ │ │ ├── css │ │ │ │ └── materialdesignicons.min.css │ │ │ │ ├── fonts │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ │ ├── preview.html │ │ │ │ └── scripts │ │ │ │ └── verify.js │ │ │ ├── @tailwindcss │ │ │ ├── forms │ │ │ │ └── tailwind.css │ │ │ └── typography │ │ │ │ └── node_modules │ │ │ │ └── postcss-selector-parser │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── index.js │ │ │ │ ├── parser.js │ │ │ │ ├── processor.js │ │ │ │ ├── selectors │ │ │ │ ├── attribute.js │ │ │ │ ├── className.js │ │ │ │ ├── combinator.js │ │ │ │ ├── comment.js │ │ │ │ ├── constructors.js │ │ │ │ ├── container.js │ │ │ │ ├── guards.js │ │ │ │ ├── id.js │ │ │ │ ├── index.js │ │ │ │ ├── namespace.js │ │ │ │ ├── nesting.js │ │ │ │ ├── node.js │ │ │ │ ├── pseudo.js │ │ │ │ ├── root.js │ │ │ │ ├── selector.js │ │ │ │ ├── string.js │ │ │ │ ├── tag.js │ │ │ │ ├── types.js │ │ │ │ └── universal.js │ │ │ │ ├── sortAscending.js │ │ │ │ ├── tokenTypes.js │ │ │ │ ├── tokenize.js │ │ │ │ └── util │ │ │ │ ├── ensureObject.js │ │ │ │ ├── getProp.js │ │ │ │ ├── index.js │ │ │ │ ├── stripComments.js │ │ │ │ └── unesc.js │ │ │ ├── apexcharts │ │ │ ├── apexcharts.amd.js │ │ │ ├── apexcharts.common.js │ │ │ ├── apexcharts.css │ │ │ ├── apexcharts.esm.js │ │ │ ├── apexcharts.min.js │ │ │ └── locales │ │ │ │ ├── ar.json │ │ │ │ ├── ca.json │ │ │ │ ├── cs.json │ │ │ │ ├── de.json │ │ │ │ ├── el.json │ │ │ │ ├── en.json │ │ │ │ ├── es.json │ │ │ │ ├── fi.json │ │ │ │ ├── fr.json │ │ │ │ ├── he.json │ │ │ │ ├── hi.json │ │ │ │ ├── hr.json │ │ │ │ ├── hu.json │ │ │ │ ├── hy.json │ │ │ │ ├── id.json │ │ │ │ ├── it.json │ │ │ │ ├── ja.json │ │ │ │ ├── ka.json │ │ │ │ ├── ko.json │ │ │ │ ├── lt.json │ │ │ │ ├── nb.json │ │ │ │ ├── nl.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt-br.json │ │ │ │ ├── pt.json │ │ │ │ ├── rs.json │ │ │ │ ├── ru.json │ │ │ │ ├── se.json │ │ │ │ ├── sk.json │ │ │ │ ├── sl.json │ │ │ │ ├── sq.json │ │ │ │ ├── th.json │ │ │ │ ├── tr.json │ │ │ │ ├── ua.json │ │ │ │ └── zh-cn.json │ │ │ ├── dayjs │ │ │ ├── dayjs.min.js │ │ │ ├── esm │ │ │ │ ├── constant.js │ │ │ │ ├── index.js │ │ │ │ ├── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── am.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-iq.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bi.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── bn-bd.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bo.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cv.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dv.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-il.js │ │ │ │ │ ├── en-in.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── en-sg.js │ │ │ │ │ ├── en-tt.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-do.js │ │ │ │ │ ├── es-mx.js │ │ │ │ │ ├── es-pr.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fy.js │ │ │ │ │ ├── ga.js │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gom-latn.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── ht.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it-ch.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── jv.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── kn.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── ky.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lo.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── mi.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ml.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── mt.js │ │ │ │ │ ├── my.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl-be.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── oc-lnc.js │ │ │ │ │ ├── pa-in.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── rn.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── rw.js │ │ │ │ │ ├── sd.js │ │ │ │ │ ├── se.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── ss.js │ │ │ │ │ ├── sv-fi.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── tet.js │ │ │ │ │ ├── tg.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ ├── tlh.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tzl.js │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ ├── tzm.js │ │ │ │ │ ├── ug-cn.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ur.js │ │ │ │ │ ├── uz-latn.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── x-pseudo.js │ │ │ │ │ ├── yo.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-hk.js │ │ │ │ │ ├── zh-tw.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugin │ │ │ │ │ ├── advancedFormat │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── arraySupport │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── badMutable │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── bigIntSupport │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── buddhistEra │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── calendar │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── customParseFormat │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── dayOfYear │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── devHelper │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── duration │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── isBetween │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── isLeapYear │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── isMoment │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── isSameOrAfter │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── isSameOrBefore │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── isToday │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── isTomorrow │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── isYesterday │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── isoWeek │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── isoWeeksInYear │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── localeData │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── localizedFormat │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── minMax │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── objectSupport │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── pluralGetSet │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── preParsePostFormat │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── quarterOfYear │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── relativeTime │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── timezone │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── toArray │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── toObject │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── updateLocale │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── utc │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── weekOfYear │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── weekYear │ │ │ │ │ │ └── index.js │ │ │ │ │ └── weekday │ │ │ │ │ │ └── index.js │ │ │ │ └── utils.js │ │ │ ├── locale.json │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── am.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-iq.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bi.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn-bd.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-in.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── en-sg.js │ │ │ │ ├── en-tt.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es-pr.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── ht.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── oc-lnc.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── rn.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── rw.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv-fi.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ ├── zh-tw.js │ │ │ │ └── zh.js │ │ │ └── plugin │ │ │ │ ├── advancedFormat.js │ │ │ │ ├── arraySupport.js │ │ │ │ ├── badMutable.js │ │ │ │ ├── bigIntSupport.js │ │ │ │ ├── buddhistEra.js │ │ │ │ ├── calendar.js │ │ │ │ ├── customParseFormat.js │ │ │ │ ├── dayOfYear.js │ │ │ │ ├── devHelper.js │ │ │ │ ├── duration.js │ │ │ │ ├── isBetween.js │ │ │ │ ├── isLeapYear.js │ │ │ │ ├── isMoment.js │ │ │ │ ├── isSameOrAfter.js │ │ │ │ ├── isSameOrBefore.js │ │ │ │ ├── isToday.js │ │ │ │ ├── isTomorrow.js │ │ │ │ ├── isYesterday.js │ │ │ │ ├── isoWeek.js │ │ │ │ ├── isoWeeksInYear.js │ │ │ │ ├── localeData.js │ │ │ │ ├── localizedFormat.js │ │ │ │ ├── minMax.js │ │ │ │ ├── objectSupport.js │ │ │ │ ├── pluralGetSet.js │ │ │ │ ├── preParsePostFormat.js │ │ │ │ ├── quarterOfYear.js │ │ │ │ ├── relativeTime.js │ │ │ │ ├── timezone.js │ │ │ │ ├── toArray.js │ │ │ │ ├── toObject.js │ │ │ │ ├── updateLocale.js │ │ │ │ ├── utc.js │ │ │ │ ├── weekOfYear.js │ │ │ │ ├── weekYear.js │ │ │ │ └── weekday.js │ │ │ ├── fullcalendar │ │ │ ├── index.cjs │ │ │ ├── index.global.min.js │ │ │ └── index.js │ │ │ ├── gmaps │ │ │ ├── gmaps.min.js │ │ │ ├── jsdoc.json │ │ │ ├── lib │ │ │ │ ├── gmaps.controls.js │ │ │ │ ├── gmaps.core.js │ │ │ │ ├── gmaps.events.js │ │ │ │ ├── gmaps.geofences.js │ │ │ │ ├── gmaps.geometry.js │ │ │ │ ├── gmaps.layers.js │ │ │ │ ├── gmaps.map_types.js │ │ │ │ ├── gmaps.markers.js │ │ │ │ ├── gmaps.native_extensions.js │ │ │ │ ├── gmaps.overlays.js │ │ │ │ ├── gmaps.routes.js │ │ │ │ ├── gmaps.static.js │ │ │ │ ├── gmaps.streetview.js │ │ │ │ ├── gmaps.styles.js │ │ │ │ └── gmaps.utils.js │ │ │ └── umd.hbs │ │ │ ├── inputmask │ │ │ ├── bindings │ │ │ │ └── inputmask.binding.js │ │ │ ├── inputmask.es6.js │ │ │ ├── inputmask.min.js │ │ │ └── jquery.inputmask.min.js │ │ │ ├── isotope-layout │ │ │ └── isotope.pkgd.min.js │ │ │ ├── jquery-knob │ │ │ └── jquery.knob.min.js │ │ │ ├── jquery-sparkline │ │ │ ├── Changelog.txt │ │ │ ├── build.js │ │ │ └── jquery.sparkline.min.js │ │ │ ├── jquery │ │ │ ├── jquery.min.js │ │ │ └── jquery.slim.min.js │ │ │ ├── jsvectormap │ │ │ ├── css │ │ │ │ └── jsvectormap.min.css │ │ │ ├── js │ │ │ │ ├── gdp.js │ │ │ │ └── jsvectormap.min.js │ │ │ └── maps │ │ │ │ ├── canada.js │ │ │ │ ├── iraq.js │ │ │ │ ├── italy.js │ │ │ │ ├── russia.js │ │ │ │ ├── spain.js │ │ │ │ ├── us-aea-en.js │ │ │ │ ├── us-lcc-en.js │ │ │ │ ├── us-merc-en.js │ │ │ │ ├── us-mill-en.js │ │ │ │ ├── world-merc.js │ │ │ │ └── world.js │ │ │ ├── moment │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn-bd.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-in.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── en-sg.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fil.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-deva.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── oc-lnc.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ ├── zh-mo.js │ │ │ │ └── zh-tw.js │ │ │ └── moment.js │ │ │ ├── morris.js │ │ │ ├── bower.travis.json │ │ │ ├── morris.css │ │ │ └── morris.min.js │ │ │ ├── node-waves │ │ │ ├── waves.min.css │ │ │ └── waves.min.js │ │ │ ├── plyr │ │ │ ├── plyr.css │ │ │ ├── plyr.min.js │ │ │ ├── plyr.min.mjs │ │ │ ├── plyr.mjs │ │ │ ├── plyr.polyfilled.min.js │ │ │ ├── plyr.polyfilled.min.mjs │ │ │ ├── plyr.polyfilled.mjs │ │ │ └── plyr.svg │ │ │ ├── preline │ │ │ ├── components │ │ │ │ ├── hs-accordion │ │ │ │ │ ├── hs-accordion.js │ │ │ │ │ └── hs-accordion.js.LICENSE.txt │ │ │ │ ├── hs-collapse │ │ │ │ │ ├── hs-collapse.js │ │ │ │ │ └── hs-collapse.js.LICENSE.txt │ │ │ │ ├── hs-dropdown │ │ │ │ │ ├── hs-dropdown.js │ │ │ │ │ └── hs-dropdown.js.LICENSE.txt │ │ │ │ ├── hs-overlay │ │ │ │ │ ├── hs-overlay.js │ │ │ │ │ └── hs-overlay.js.LICENSE.txt │ │ │ │ ├── hs-remove-element │ │ │ │ │ ├── hs-remove-element.js │ │ │ │ │ └── hs-remove-element.js.LICENSE.txt │ │ │ │ ├── hs-scrollspy │ │ │ │ │ ├── hs-scrollspy.js │ │ │ │ │ └── hs-scrollspy.js.LICENSE.txt │ │ │ │ ├── hs-tabs │ │ │ │ │ ├── hs-tabs.js │ │ │ │ │ └── hs-tabs.js.LICENSE.txt │ │ │ │ └── hs-tooltip │ │ │ │ │ ├── hs-tooltip.js │ │ │ │ │ └── hs-tooltip.js.LICENSE.txt │ │ │ ├── preline.js │ │ │ └── preline.js.LICENSE.txt │ │ │ ├── quill │ │ │ ├── quill.bubble.css │ │ │ ├── quill.core.css │ │ │ ├── quill.core.js │ │ │ ├── quill.min.js │ │ │ └── quill.snow.css │ │ │ ├── raphael │ │ │ ├── dev │ │ │ │ ├── banner.txt │ │ │ │ ├── raphael.amd.js │ │ │ │ ├── raphael.core.js │ │ │ │ ├── raphael.svg.js │ │ │ │ ├── raphael.vml.js │ │ │ │ └── raphaelTest.html │ │ │ ├── license.txt │ │ │ ├── raphael.min.js │ │ │ └── raphael.no-deps.min.js │ │ │ ├── rater-js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── rater-js.js │ │ │ │ ├── star_0.svg │ │ │ │ ├── star_1.svg │ │ │ │ └── style.css │ │ │ └── ratings.png │ │ │ ├── simplebar │ │ │ ├── index.cjs │ │ │ ├── index.mjs │ │ │ ├── simplebar.cjs │ │ │ ├── simplebar.min.css │ │ │ └── simplebar.min.js │ │ │ ├── sweetalert2 │ │ │ ├── sweetalert2.all.min.js │ │ │ ├── sweetalert2.min.css │ │ │ └── sweetalert2.min.js │ │ │ └── swiper │ │ │ ├── modules │ │ │ ├── a11y-element.min.css │ │ │ ├── a11y.min.css │ │ │ ├── a11y.min.mjs │ │ │ ├── a11y.mjs │ │ │ ├── autoplay-element.min.css │ │ │ ├── autoplay.min.css │ │ │ ├── autoplay.min.mjs │ │ │ ├── autoplay.mjs │ │ │ ├── controller-element.min.css │ │ │ ├── controller.min.css │ │ │ ├── controller.min.mjs │ │ │ ├── controller.mjs │ │ │ ├── effect-cards-element.min.css │ │ │ ├── effect-cards.min.css │ │ │ ├── effect-cards.min.mjs │ │ │ ├── effect-cards.mjs │ │ │ ├── effect-coverflow-element.min.css │ │ │ ├── effect-coverflow.min.css │ │ │ ├── effect-coverflow.min.mjs │ │ │ ├── effect-coverflow.mjs │ │ │ ├── effect-creative-element.min.css │ │ │ ├── effect-creative.min.css │ │ │ ├── effect-creative.min.mjs │ │ │ ├── effect-creative.mjs │ │ │ ├── effect-cube-element.min.css │ │ │ ├── effect-cube.min.css │ │ │ ├── effect-cube.min.mjs │ │ │ ├── effect-cube.mjs │ │ │ ├── effect-fade-element.min.css │ │ │ ├── effect-fade.min.css │ │ │ ├── effect-fade.min.mjs │ │ │ ├── effect-fade.mjs │ │ │ ├── effect-flip-element.min.css │ │ │ ├── effect-flip.min.css │ │ │ ├── effect-flip.min.mjs │ │ │ ├── effect-flip.mjs │ │ │ ├── free-mode-element.min.css │ │ │ ├── free-mode.min.css │ │ │ ├── free-mode.min.mjs │ │ │ ├── free-mode.mjs │ │ │ ├── grid-element.min.css │ │ │ ├── grid.min.css │ │ │ ├── grid.min.mjs │ │ │ ├── grid.mjs │ │ │ ├── hash-navigation-element.min.css │ │ │ ├── hash-navigation.min.css │ │ │ ├── hash-navigation.min.mjs │ │ │ ├── hash-navigation.mjs │ │ │ ├── history-element.min.css │ │ │ ├── history.min.css │ │ │ ├── history.min.mjs │ │ │ ├── history.mjs │ │ │ ├── index.min.mjs │ │ │ ├── index.mjs │ │ │ ├── keyboard-element.min.css │ │ │ ├── keyboard.min.css │ │ │ ├── keyboard.min.mjs │ │ │ ├── keyboard.mjs │ │ │ ├── manipulation-element.min.css │ │ │ ├── manipulation.min.css │ │ │ ├── manipulation.min.mjs │ │ │ ├── manipulation.mjs │ │ │ ├── mousewheel-element.min.css │ │ │ ├── mousewheel.min.css │ │ │ ├── mousewheel.min.mjs │ │ │ ├── mousewheel.mjs │ │ │ ├── navigation-element.min.css │ │ │ ├── navigation.min.css │ │ │ ├── navigation.min.mjs │ │ │ ├── navigation.mjs │ │ │ ├── pagination-element.min.css │ │ │ ├── pagination.min.css │ │ │ ├── pagination.min.mjs │ │ │ ├── pagination.mjs │ │ │ ├── parallax-element.min.css │ │ │ ├── parallax.min.css │ │ │ ├── parallax.min.mjs │ │ │ ├── parallax.mjs │ │ │ ├── scrollbar-element.min.css │ │ │ ├── scrollbar.min.css │ │ │ ├── scrollbar.min.mjs │ │ │ ├── scrollbar.mjs │ │ │ ├── thumbs-element.min.css │ │ │ ├── thumbs.min.css │ │ │ ├── thumbs.min.mjs │ │ │ ├── thumbs.mjs │ │ │ ├── virtual-element.min.css │ │ │ ├── virtual.min.css │ │ │ ├── virtual.min.mjs │ │ │ ├── virtual.mjs │ │ │ ├── zoom-element.min.css │ │ │ ├── zoom.min.css │ │ │ ├── zoom.min.mjs │ │ │ └── zoom.mjs │ │ │ ├── shared │ │ │ ├── classes-to-selector.min.mjs │ │ │ ├── classes-to-selector.mjs │ │ │ ├── create-element-if-not-defined.min.mjs │ │ │ ├── create-element-if-not-defined.mjs │ │ │ ├── create-shadow.min.mjs │ │ │ ├── create-shadow.mjs │ │ │ ├── effect-init.min.mjs │ │ │ ├── effect-init.mjs │ │ │ ├── effect-target.min.mjs │ │ │ ├── effect-target.mjs │ │ │ ├── effect-virtual-transition-end.min.mjs │ │ │ ├── effect-virtual-transition-end.mjs │ │ │ ├── get-element-params.min.mjs │ │ │ ├── get-element-params.mjs │ │ │ ├── ssr-window.esm.min.mjs │ │ │ ├── ssr-window.esm.mjs │ │ │ ├── swiper-core.min.mjs │ │ │ ├── swiper-core.mjs │ │ │ ├── update-on-virtual-data.min.mjs │ │ │ ├── update-on-virtual-data.mjs │ │ │ ├── update-swiper.min.mjs │ │ │ ├── update-swiper.mjs │ │ │ ├── utils.min.mjs │ │ │ └── utils.mjs │ │ │ ├── swiper-bundle.min.css │ │ │ ├── swiper-bundle.min.js │ │ │ ├── swiper-bundle.min.mjs │ │ │ ├── swiper-bundle.mjs │ │ │ ├── swiper-element-bundle.min.js │ │ │ ├── swiper-element-bundle.min.mjs │ │ │ ├── swiper-element-bundle.mjs │ │ │ ├── swiper-element.min.js │ │ │ ├── swiper-element.min.mjs │ │ │ ├── swiper-element.mjs │ │ │ ├── swiper-react.mjs │ │ │ ├── swiper-vue.mjs │ │ │ ├── swiper.min.css │ │ │ ├── swiper.min.js │ │ │ ├── swiper.min.mjs │ │ │ └── swiper.mjs │ ├── browserconfig.xml │ ├── chat.css │ ├── chat.js │ ├── dashboard │ │ ├── css │ │ │ ├── additional-styles │ │ │ │ ├── flatpickr.css │ │ │ │ ├── range-slider.css │ │ │ │ ├── theme.css │ │ │ │ ├── toggle-switch.css │ │ │ │ └── utility-patterns.css │ │ │ ├── style.css │ │ │ └── vendors │ │ │ │ └── flatpickr.min.css │ │ ├── images │ │ │ ├── 404-illustration.svg │ │ │ ├── announcement-icon.svg │ │ │ ├── applications-image-01.jpg │ │ │ ├── applications-image-02.jpg │ │ │ ├── applications-image-03.jpg │ │ │ ├── applications-image-04.jpg │ │ │ ├── applications-image-05.jpg │ │ │ ├── applications-image-06.jpg │ │ │ ├── applications-image-07.jpg │ │ │ ├── applications-image-08.jpg │ │ │ ├── applications-image-09.jpg │ │ │ ├── applications-image-10.jpg │ │ │ ├── applications-image-11.jpg │ │ │ ├── applications-image-12.jpg │ │ │ ├── applications-image-13.jpg │ │ │ ├── applications-image-14.jpg │ │ │ ├── applications-image-15.jpg │ │ │ ├── applications-image-16.jpg │ │ │ ├── applications-image-17.jpg │ │ │ ├── applications-image-18.jpg │ │ │ ├── applications-image-19.jpg │ │ │ ├── applications-image-20.jpg │ │ │ ├── applications-image-21.jpg │ │ │ ├── applications-image-22.jpg │ │ │ ├── applications-image-23.jpg │ │ │ ├── applications-image-24.jpg │ │ │ ├── applications-image-25.jpg │ │ │ ├── applications-image-26.jpg │ │ │ ├── applications-image-27.jpg │ │ │ ├── applications-image-28.jpg │ │ │ ├── applications-image-29.jpg │ │ │ ├── applications-image-30.jpg │ │ │ ├── applications-image-31.jpg │ │ │ ├── applications-image-32.jpg │ │ │ ├── auth-decoration.png │ │ │ ├── auth-image.jpg │ │ │ ├── avatar-01.jpg │ │ │ ├── avatar-02.jpg │ │ │ ├── avatar-03.jpg │ │ │ ├── avatar-04.jpg │ │ │ ├── avatar-05.jpg │ │ │ ├── avatar-06.jpg │ │ │ ├── channel-01.png │ │ │ ├── channel-02.png │ │ │ ├── channel-03.png │ │ │ ├── chat-image.jpg │ │ │ ├── chat-widget-info.gif │ │ │ ├── company-bg.jpg │ │ │ ├── company-icon-01.svg │ │ │ ├── company-icon-02.svg │ │ │ ├── company-icon-03.svg │ │ │ ├── company-icon-04.svg │ │ │ ├── company-icon-05.svg │ │ │ ├── company-icon-06.svg │ │ │ ├── company-icon-07.svg │ │ │ ├── company-icon-08.svg │ │ │ ├── favicon.png │ │ │ ├── feed-image-01.jpg │ │ │ ├── feed-image-02.jpg │ │ │ ├── group-avatar-01.png │ │ │ ├── group-avatar-02.png │ │ │ ├── group-avatar-03.png │ │ │ ├── group-avatar-04.png │ │ │ ├── icon-01.svg │ │ │ ├── icon-02.svg │ │ │ ├── icon-03.svg │ │ │ ├── inbox-image.jpg │ │ │ ├── mastercard-circle.png │ │ │ ├── meetup-image.jpg │ │ │ ├── meetup-photo-01.jpg │ │ │ ├── meetup-photo-02.jpg │ │ │ ├── meetup-photo-03.jpg │ │ │ ├── meetups-thumb-01.jpg │ │ │ ├── meetups-thumb-02.jpg │ │ │ ├── meetups-thumb-03.jpg │ │ │ ├── meetups-thumb-04.jpg │ │ │ ├── meetups-thumb-05.jpg │ │ │ ├── meetups-thumb-06.jpg │ │ │ ├── meetups-thumb-07.jpg │ │ │ ├── meetups-thumb-08.jpg │ │ │ ├── modal-image.jpg │ │ │ ├── onboarding-image.jpg │ │ │ ├── pay-bg.jpg │ │ │ ├── product-image.jpg │ │ │ ├── profile-bg.jpg │ │ │ ├── related-product-01.jpg │ │ │ ├── related-product-02.jpg │ │ │ ├── related-product-03.jpg │ │ │ ├── search-widget-info.gif │ │ │ ├── task-image-01.jpg │ │ │ ├── task-image-02.jpg │ │ │ ├── transactions-image-01.svg │ │ │ ├── transactions-image-02.svg │ │ │ ├── transactions-image-03.svg │ │ │ ├── transactions-image-04.svg │ │ │ ├── transactions-image-05.svg │ │ │ ├── transactions-image-06.svg │ │ │ ├── transactions-image-07.svg │ │ │ ├── transactions-image-08.svg │ │ │ ├── user-128-01.jpg │ │ │ ├── user-28-01.jpg │ │ │ ├── user-28-02.jpg │ │ │ ├── user-28-03.jpg │ │ │ ├── user-28-04.jpg │ │ │ ├── user-28-05.jpg │ │ │ ├── user-28-06.jpg │ │ │ ├── user-28-07.jpg │ │ │ ├── user-28-08.jpg │ │ │ ├── user-28-09.jpg │ │ │ ├── user-28-10.jpg │ │ │ ├── user-28-11.jpg │ │ │ ├── user-28-12.jpg │ │ │ ├── user-32-01.jpg │ │ │ ├── user-32-02.jpg │ │ │ ├── user-32-03.jpg │ │ │ ├── user-32-04.jpg │ │ │ ├── user-32-05.jpg │ │ │ ├── user-32-06.jpg │ │ │ ├── user-32-07.jpg │ │ │ ├── user-32-08.jpg │ │ │ ├── user-36-01.jpg │ │ │ ├── user-36-02.jpg │ │ │ ├── user-36-03.jpg │ │ │ ├── user-36-04.jpg │ │ │ ├── user-36-05.jpg │ │ │ ├── user-40-01.jpg │ │ │ ├── user-40-02.jpg │ │ │ ├── user-40-03.jpg │ │ │ ├── user-40-04.jpg │ │ │ ├── user-40-05.jpg │ │ │ ├── user-40-06.jpg │ │ │ ├── user-40-07.jpg │ │ │ ├── user-40-08.jpg │ │ │ ├── user-40-09.jpg │ │ │ ├── user-40-10.jpg │ │ │ ├── user-40-11.jpg │ │ │ ├── user-40-12.jpg │ │ │ ├── user-64-01.jpg │ │ │ ├── user-64-02.jpg │ │ │ ├── user-64-03.jpg │ │ │ ├── user-64-04.jpg │ │ │ ├── user-64-05.jpg │ │ │ ├── user-64-06.jpg │ │ │ ├── user-64-07.jpg │ │ │ ├── user-64-08.jpg │ │ │ ├── user-64-09.jpg │ │ │ ├── user-64-10.jpg │ │ │ ├── user-64-11.jpg │ │ │ ├── user-64-12.jpg │ │ │ ├── user-64-13.jpg │ │ │ ├── user-64-14.jpg │ │ │ ├── user-avatar-32.png │ │ │ ├── user-avatar-80.png │ │ │ └── visa-cricle.png │ │ ├── js │ │ │ ├── analytics-charts.js │ │ │ ├── dashboard-charts.js │ │ │ ├── fintech-charts.js │ │ │ ├── flatpickr-init.js │ │ │ └── vendors │ │ │ │ ├── alpinejs.min.js │ │ │ │ ├── chart.js │ │ │ │ ├── chartjs-adapter-moment.js │ │ │ │ ├── clipboard.js │ │ │ │ ├── clipboard.min.js │ │ │ │ ├── flatpickr.js │ │ │ │ └── moment.js │ │ └── style.css │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── index.php │ ├── mstile-150x150.png │ ├── notification.mp3 │ ├── operator.2b750c4a-a89eff38.mp3 │ ├── robots.txt │ ├── safari-pinned-tab.svg │ ├── search.js │ ├── site.webmanifest │ ├── submit.3abafccd-cfb52721.mp3 │ └── vendor │ │ └── telescope │ │ ├── app-dark.css │ │ ├── app.css │ │ ├── app.js │ │ ├── favicon.ico │ │ └── mix-manifest.json │ ├── template_filters │ ├── __init__.py │ └── time_difference.py │ ├── templates │ ├── chat.html │ ├── create_user.html │ ├── errors_check.html │ ├── index.html │ ├── layout │ │ ├── app.html │ │ ├── header.html │ │ ├── noapp.html │ │ └── sidebar-bot-page.html │ ├── login.html │ ├── modify_user.html │ ├── onboarding │ │ ├── other-data-sources-pdf.html │ │ ├── other-data-sources-website.html │ │ ├── step-0.html │ │ ├── step-1.html │ │ ├── step-2-codebase.html │ │ ├── step-2-pdf.html │ │ ├── step-2.html │ │ ├── step-3.html │ │ └── step-4.html │ ├── root_navigation.html │ ├── settings-analytics.html │ ├── settings-data.html │ ├── settings-history.html │ ├── settings-integrations.html │ ├── settings-theme.html │ ├── settings.html │ ├── settings │ │ ├── settings-data-addmore.html │ │ ├── settings-data-codebase.html │ │ ├── settings-data-documents.html │ │ └── settings-data-website.html │ └── widgets │ │ ├── chat-history.html │ │ ├── data-sources-updates.html │ │ ├── feedback.html │ │ └── metadata.html │ ├── tests.py │ ├── urls.py │ ├── utils │ ├── __init__.py │ ├── common.py │ ├── context_processors.py │ ├── delete_foler.py │ ├── get_logo_from_url.py │ └── github_repo_url_validator.py │ ├── views │ ├── __init__.py │ ├── view_root.py │ ├── views_chatbot.py │ ├── views_chatbot_createuser.py │ ├── views_chatbot_settings.py │ ├── views_errors.py │ ├── views_onboarding.py │ ├── views_pdf_data_source.py │ └── views_website_datasource.py │ └── workers │ └── crawler.py ├── docker-compose.yml ├── docs ├── aug_11 │ └── django.gif ├── aug_26 │ └── readme.md ├── django_release.md └── docker_push.md ├── llm-server ├── .dockerignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .vscode │ └── launch.json ├── Dockerfile ├── config │ └── pinecone.ts ├── data-sources │ ├── codebaseHandler.ts │ ├── pdfHandler.ts │ └── websiteHandler.ts ├── declarations │ └── pdf-parse.d.ts ├── interfaces │ └── storeOptions.interface.ts ├── next.config.js ├── package.json ├── pages │ └── api │ │ ├── chat.ts │ │ └── ingest.ts ├── postcss.config.cjs ├── tailwind.config.cjs ├── tsconfig.json ├── types │ └── chat.ts ├── utils │ ├── cn.ts │ ├── customPDFLoader.ts │ ├── getVectorStore.ts │ ├── initVectorStore.ts │ ├── makechain.ts │ ├── pinecone-client.ts │ └── store.enum.ts └── yarn.lock ├── make.bat ├── update_repo.sh └── widgets └── search ├── .eslintrc.cjs ├── .gitignore ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.tsx ├── components │ ├── InputComponent.tsx │ ├── MarkDown.Hilight.tsx │ ├── Message.tsx │ └── ModalTrigger.tsx ├── hooks │ ├── useBoolean.ts │ └── useClipboard.ts ├── index.css ├── main.tsx ├── utils │ ├── axios_instance.ts │ └── cn.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/SECURITY.md -------------------------------------------------------------------------------- /backend-server/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/.editorconfig -------------------------------------------------------------------------------- /backend-server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/.env.example -------------------------------------------------------------------------------- /backend-server/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/.gitattributes -------------------------------------------------------------------------------- /backend-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/.gitignore -------------------------------------------------------------------------------- /backend-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/Dockerfile -------------------------------------------------------------------------------- /backend-server/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Console/Kernel.php -------------------------------------------------------------------------------- /backend-server/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /backend-server/app/Http/Api/Controllers/MessageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Api/Controllers/MessageController.php -------------------------------------------------------------------------------- /backend-server/app/Http/Controllers/ChatbotController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Controllers/ChatbotController.php -------------------------------------------------------------------------------- /backend-server/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /backend-server/app/Http/Controllers/OnboardingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Controllers/OnboardingController.php -------------------------------------------------------------------------------- /backend-server/app/Http/Enums/ChatBotInitialPromptEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Enums/ChatBotInitialPromptEnum.php -------------------------------------------------------------------------------- /backend-server/app/Http/Enums/ChatbotStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Enums/ChatbotStatusType.php -------------------------------------------------------------------------------- /backend-server/app/Http/Enums/IngestStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Enums/IngestStatusType.php -------------------------------------------------------------------------------- /backend-server/app/Http/Enums/WebsiteDataSourceStatusType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Enums/WebsiteDataSourceStatusType.php -------------------------------------------------------------------------------- /backend-server/app/Http/Events/ChatbotWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Events/ChatbotWasCreated.php -------------------------------------------------------------------------------- /backend-server/app/Http/Events/CodebaseDataSourceWasAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Events/CodebaseDataSourceWasAdded.php -------------------------------------------------------------------------------- /backend-server/app/Http/Events/PdfDataSourceWasAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Events/PdfDataSourceWasAdded.php -------------------------------------------------------------------------------- /backend-server/app/Http/Events/WebsiteDataSourceWasAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Events/WebsiteDataSourceWasAdded.php -------------------------------------------------------------------------------- /backend-server/app/Http/GetLogoFromUrlTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/GetLogoFromUrlTrait.php -------------------------------------------------------------------------------- /backend-server/app/Http/Interfaces/DataSourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Interfaces/DataSourceInterface.php -------------------------------------------------------------------------------- /backend-server/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Kernel.php -------------------------------------------------------------------------------- /backend-server/app/Http/Listeners/IngestPdfDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Listeners/IngestPdfDataSource.php -------------------------------------------------------------------------------- /backend-server/app/Http/Listeners/IngestWebsiteDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Listeners/IngestWebsiteDataSource.php -------------------------------------------------------------------------------- /backend-server/app/Http/Listeners/StartRecursiveCrawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Listeners/StartRecursiveCrawler.php -------------------------------------------------------------------------------- /backend-server/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /backend-server/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /backend-server/app/Http/Middleware/IframeMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Middleware/IframeMiddleware.php -------------------------------------------------------------------------------- /backend-server/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /backend-server/app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /backend-server/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /backend-server/app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /backend-server/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /backend-server/app/Http/Requests/CreateChatbotRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Requests/CreateChatbotRequest.php -------------------------------------------------------------------------------- /backend-server/app/Http/Requests/SendChatMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Requests/SendChatMessageRequest.php -------------------------------------------------------------------------------- /backend-server/app/Http/Requests/UploadPdfFilesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Requests/UploadPdfFilesRequest.php -------------------------------------------------------------------------------- /backend-server/app/Http/Responses/ChatbotResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Responses/ChatbotResponse.php -------------------------------------------------------------------------------- /backend-server/app/Http/Rules/GithubRepoUrlRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Rules/GithubRepoUrlRule.php -------------------------------------------------------------------------------- /backend-server/app/Http/Services/HandlePdfDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Http/Services/HandlePdfDataSource.php -------------------------------------------------------------------------------- /backend-server/app/Models/ChatHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Models/ChatHistory.php -------------------------------------------------------------------------------- /backend-server/app/Models/Chatbot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Models/Chatbot.php -------------------------------------------------------------------------------- /backend-server/app/Models/ChatbotSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Models/ChatbotSetting.php -------------------------------------------------------------------------------- /backend-server/app/Models/CodebaseDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Models/CodebaseDataSource.php -------------------------------------------------------------------------------- /backend-server/app/Models/CrawledPages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Models/CrawledPages.php -------------------------------------------------------------------------------- /backend-server/app/Models/PdfDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Models/PdfDataSource.php -------------------------------------------------------------------------------- /backend-server/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Models/User.php -------------------------------------------------------------------------------- /backend-server/app/Models/WebsiteDataSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Models/WebsiteDataSource.php -------------------------------------------------------------------------------- /backend-server/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /backend-server/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /backend-server/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /backend-server/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /backend-server/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /backend-server/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/artisan -------------------------------------------------------------------------------- /backend-server/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/bootstrap/app.php -------------------------------------------------------------------------------- /backend-server/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend-server/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/composer.json -------------------------------------------------------------------------------- /backend-server/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/composer.lock -------------------------------------------------------------------------------- /backend-server/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/app.php -------------------------------------------------------------------------------- /backend-server/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/auth.php -------------------------------------------------------------------------------- /backend-server/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/broadcasting.php -------------------------------------------------------------------------------- /backend-server/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/cache.php -------------------------------------------------------------------------------- /backend-server/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/cors.php -------------------------------------------------------------------------------- /backend-server/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/database.php -------------------------------------------------------------------------------- /backend-server/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/filesystems.php -------------------------------------------------------------------------------- /backend-server/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/hashing.php -------------------------------------------------------------------------------- /backend-server/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/logging.php -------------------------------------------------------------------------------- /backend-server/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/mail.php -------------------------------------------------------------------------------- /backend-server/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/queue.php -------------------------------------------------------------------------------- /backend-server/config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/sanctum.php -------------------------------------------------------------------------------- /backend-server/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/services.php -------------------------------------------------------------------------------- /backend-server/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/session.php -------------------------------------------------------------------------------- /backend-server/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/config/view.php -------------------------------------------------------------------------------- /backend-server/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /backend-server/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/database/factories/UserFactory.php -------------------------------------------------------------------------------- /backend-server/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /backend-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/package.json -------------------------------------------------------------------------------- /backend-server/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/phpunit.xml -------------------------------------------------------------------------------- /backend-server/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/.htaccess -------------------------------------------------------------------------------- /backend-server/public/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/chat.css -------------------------------------------------------------------------------- /backend-server/public/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/chat.js -------------------------------------------------------------------------------- /backend-server/public/dashboard/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/css/style.css -------------------------------------------------------------------------------- /backend-server/public/dashboard/css/vendors/flatpickr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/css/vendors/flatpickr.min.css -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/404-illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/404-illustration.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/announcement-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/announcement-icon.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/auth-decoration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/auth-decoration.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/auth-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/auth-image.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/avatar-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/avatar-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/avatar-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/avatar-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/avatar-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/avatar-03.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/avatar-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/avatar-04.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/avatar-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/avatar-05.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/avatar-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/avatar-06.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/channel-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/channel-01.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/channel-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/channel-02.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/channel-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/channel-03.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/chat-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/chat-image.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/chat-widget-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/chat-widget-info.gif -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/company-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/company-bg.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/company-icon-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/company-icon-01.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/company-icon-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/company-icon-02.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/company-icon-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/company-icon-03.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/company-icon-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/company-icon-04.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/company-icon-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/company-icon-05.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/company-icon-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/company-icon-06.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/company-icon-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/company-icon-07.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/company-icon-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/company-icon-08.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/favicon.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/feed-image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/feed-image-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/feed-image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/feed-image-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/group-avatar-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/group-avatar-01.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/group-avatar-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/group-avatar-02.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/group-avatar-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/group-avatar-03.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/group-avatar-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/group-avatar-04.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/icon-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/icon-01.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/icon-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/icon-02.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/icon-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/icon-03.svg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/inbox-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/inbox-image.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/mastercard-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/mastercard-circle.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetup-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetup-image.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetup-photo-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetup-photo-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetup-photo-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetup-photo-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetup-photo-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetup-photo-03.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetups-thumb-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetups-thumb-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetups-thumb-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetups-thumb-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetups-thumb-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetups-thumb-03.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetups-thumb-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetups-thumb-04.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetups-thumb-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetups-thumb-05.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetups-thumb-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetups-thumb-06.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetups-thumb-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetups-thumb-07.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/meetups-thumb-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/meetups-thumb-08.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/modal-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/modal-image.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/onboarding-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/onboarding-image.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/pay-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/pay-bg.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/product-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/product-image.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/profile-bg.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/related-product-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/related-product-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/related-product-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/related-product-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/related-product-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/related-product-03.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/search-widget-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/search-widget-info.gif -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/task-image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/task-image-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/task-image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/task-image-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-128-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-128-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-03.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-04.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-05.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-06.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-07.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-08.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-09.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-10.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-11.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-28-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-28-12.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-32-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-32-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-32-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-32-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-32-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-32-03.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-32-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-32-04.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-32-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-32-05.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-32-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-32-06.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-32-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-32-07.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-32-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-32-08.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-36-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-36-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-36-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-36-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-36-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-36-03.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-36-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-36-04.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-36-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-36-05.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-03.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-04.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-05.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-06.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-07.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-08.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-09.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-10.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-11.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-40-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-40-12.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-01.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-02.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-03.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-04.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-05.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-06.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-07.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-08.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-09.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-10.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-11.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-12.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-13.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-64-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-64-14.jpg -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-avatar-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-avatar-32.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/user-avatar-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/user-avatar-80.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/images/visa-cricle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/images/visa-cricle.png -------------------------------------------------------------------------------- /backend-server/public/dashboard/js/analytics-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/js/analytics-charts.js -------------------------------------------------------------------------------- /backend-server/public/dashboard/js/dashboard-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/js/dashboard-charts.js -------------------------------------------------------------------------------- /backend-server/public/dashboard/js/fintech-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/js/fintech-charts.js -------------------------------------------------------------------------------- /backend-server/public/dashboard/js/flatpickr-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/js/flatpickr-init.js -------------------------------------------------------------------------------- /backend-server/public/dashboard/js/vendors/alpinejs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/js/vendors/alpinejs.min.js -------------------------------------------------------------------------------- /backend-server/public/dashboard/js/vendors/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/js/vendors/chart.js -------------------------------------------------------------------------------- /backend-server/public/dashboard/js/vendors/flatpickr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/js/vendors/flatpickr.js -------------------------------------------------------------------------------- /backend-server/public/dashboard/js/vendors/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/js/vendors/moment.js -------------------------------------------------------------------------------- /backend-server/public/dashboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/dashboard/style.css -------------------------------------------------------------------------------- /backend-server/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-server/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/index.php -------------------------------------------------------------------------------- /backend-server/public/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/notification.mp3 -------------------------------------------------------------------------------- /backend-server/public/operator.2b750c4a-a89eff38.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/operator.2b750c4a-a89eff38.mp3 -------------------------------------------------------------------------------- /backend-server/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /backend-server/public/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/search.js -------------------------------------------------------------------------------- /backend-server/public/submit.3abafccd-cfb52721.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/submit.3abafccd-cfb52721.mp3 -------------------------------------------------------------------------------- /backend-server/public/vendor/telescope/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/vendor/telescope/app-dark.css -------------------------------------------------------------------------------- /backend-server/public/vendor/telescope/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/vendor/telescope/app.css -------------------------------------------------------------------------------- /backend-server/public/vendor/telescope/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/vendor/telescope/app.js -------------------------------------------------------------------------------- /backend-server/public/vendor/telescope/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/vendor/telescope/favicon.ico -------------------------------------------------------------------------------- /backend-server/public/vendor/telescope/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/public/vendor/telescope/mix-manifest.json -------------------------------------------------------------------------------- /backend-server/resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-server/resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /backend-server/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/js/bootstrap.js -------------------------------------------------------------------------------- /backend-server/resources/views/chat.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/chat.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/index.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/layout/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/layout/app.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/layout/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/layout/header.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/layout/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/layout/sidebar.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/onboarding/step-0.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/onboarding/step-0.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/onboarding/step-1.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/onboarding/step-1.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/onboarding/step-2.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/onboarding/step-2.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/onboarding/step-3.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/onboarding/step-3.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/onboarding/step-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/onboarding/step-4.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/settings-analytics.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/settings-analytics.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/settings-data.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/settings-data.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/settings-history.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/settings-history.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/settings-theme.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/settings-theme.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/settings.blade.php -------------------------------------------------------------------------------- /backend-server/resources/views/widgets/chat-history.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/resources/views/widgets/chat-history.blade.php -------------------------------------------------------------------------------- /backend-server/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/routes/api.php -------------------------------------------------------------------------------- /backend-server/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/routes/channels.php -------------------------------------------------------------------------------- /backend-server/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/routes/console.php -------------------------------------------------------------------------------- /backend-server/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/routes/web.php -------------------------------------------------------------------------------- /backend-server/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /backend-server/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend-server/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/storage/framework/.gitignore -------------------------------------------------------------------------------- /backend-server/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /backend-server/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend-server/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend-server/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend-server/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend-server/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend-server/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/tests/CreatesApplication.php -------------------------------------------------------------------------------- /backend-server/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /backend-server/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/tests/TestCase.php -------------------------------------------------------------------------------- /backend-server/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /backend-server/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/backend-server/vite.config.js -------------------------------------------------------------------------------- /common.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/common.env -------------------------------------------------------------------------------- /dj_backend_server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/.dockerignore -------------------------------------------------------------------------------- /dj_backend_server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/.gitignore -------------------------------------------------------------------------------- /dj_backend_server/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/.vscode/launch.json -------------------------------------------------------------------------------- /dj_backend_server/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/.vscode/settings.json -------------------------------------------------------------------------------- /dj_backend_server/CHANGELOG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/CHANGELOG.MD -------------------------------------------------------------------------------- /dj_backend_server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/Dockerfile -------------------------------------------------------------------------------- /dj_backend_server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/Makefile -------------------------------------------------------------------------------- /dj_backend_server/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/admin.py -------------------------------------------------------------------------------- /dj_backend_server/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/apps.py -------------------------------------------------------------------------------- /dj_backend_server/api/chatbot_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/chatbot_info.py -------------------------------------------------------------------------------- /dj_backend_server/api/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/configs/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/api/configs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/configs/base.py -------------------------------------------------------------------------------- /dj_backend_server/api/data_sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/data_sources/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/api/data_sources/codebase_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/data_sources/codebase_handler.py -------------------------------------------------------------------------------- /dj_backend_server/api/data_sources/pdf_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/data_sources/pdf_handler.py -------------------------------------------------------------------------------- /dj_backend_server/api/data_sources/website_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/data_sources/website_handler.py -------------------------------------------------------------------------------- /dj_backend_server/api/enums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/enums/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/api/enums/embedding_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/enums/embedding_type.py -------------------------------------------------------------------------------- /dj_backend_server/api/enums/store_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/enums/store_type.py -------------------------------------------------------------------------------- /dj_backend_server/api/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/interfaces.py -------------------------------------------------------------------------------- /dj_backend_server/api/middleware/cors_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/middleware/cors_middleware.py -------------------------------------------------------------------------------- /dj_backend_server/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/models.py -------------------------------------------------------------------------------- /dj_backend_server/api/pdf_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/pdf_handler.py -------------------------------------------------------------------------------- /dj_backend_server/api/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/tasks.py -------------------------------------------------------------------------------- /dj_backend_server/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/tests.py -------------------------------------------------------------------------------- /dj_backend_server/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/urls.py -------------------------------------------------------------------------------- /dj_backend_server/api/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/utils/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/api/utils/custom_pdf_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/utils/custom_pdf_loader.py -------------------------------------------------------------------------------- /dj_backend_server/api/utils/get_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/utils/get_embeddings.py -------------------------------------------------------------------------------- /dj_backend_server/api/utils/get_openai_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/utils/get_openai_llm.py -------------------------------------------------------------------------------- /dj_backend_server/api/utils/get_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/utils/get_prompts.py -------------------------------------------------------------------------------- /dj_backend_server/api/utils/get_vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/utils/get_vector_store.py -------------------------------------------------------------------------------- /dj_backend_server/api/utils/init_vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/utils/init_vector_store.py -------------------------------------------------------------------------------- /dj_backend_server/api/utils/make_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/utils/make_chain.py -------------------------------------------------------------------------------- /dj_backend_server/api/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/views/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/api/views/views_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/views/views_auth.py -------------------------------------------------------------------------------- /dj_backend_server/api/views/views_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/views/views_chat.py -------------------------------------------------------------------------------- /dj_backend_server/api/views/views_ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/views/views_ingest.py -------------------------------------------------------------------------------- /dj_backend_server/api/views/views_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/api/views/views_message.py -------------------------------------------------------------------------------- /dj_backend_server/bugs_features_enhancements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/bugs_features_enhancements.md -------------------------------------------------------------------------------- /dj_backend_server/channels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/channels/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/channels/admin.py -------------------------------------------------------------------------------- /dj_backend_server/channels/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/channels/apps.py -------------------------------------------------------------------------------- /dj_backend_server/channels/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/channels/consumers.py -------------------------------------------------------------------------------- /dj_backend_server/channels/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/channels/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/channels/models.py -------------------------------------------------------------------------------- /dj_backend_server/channels/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/channels/routing.py -------------------------------------------------------------------------------- /dj_backend_server/channels/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/channels/tests.py -------------------------------------------------------------------------------- /dj_backend_server/channels/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /dj_backend_server/dj_backend_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/dj_backend_server/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/dj_backend_server/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/dj_backend_server/asgi.py -------------------------------------------------------------------------------- /dj_backend_server/dj_backend_server/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/dj_backend_server/celery.py -------------------------------------------------------------------------------- /dj_backend_server/dj_backend_server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/dj_backend_server/settings.py -------------------------------------------------------------------------------- /dj_backend_server/dj_backend_server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/dj_backend_server/urls.py -------------------------------------------------------------------------------- /dj_backend_server/dj_backend_server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/dj_backend_server/wsgi.py -------------------------------------------------------------------------------- /dj_backend_server/docker-compose.linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/docker-compose.linux.yaml -------------------------------------------------------------------------------- /dj_backend_server/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/docker-compose.yaml -------------------------------------------------------------------------------- /dj_backend_server/docs/building_with_docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/docs/building_with_docker.md -------------------------------------------------------------------------------- /dj_backend_server/docs/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/docs/todo.md -------------------------------------------------------------------------------- /dj_backend_server/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/entrypoint.sh -------------------------------------------------------------------------------- /dj_backend_server/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/example.env -------------------------------------------------------------------------------- /dj_backend_server/locale/Readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/locale/Readme.MD -------------------------------------------------------------------------------- /dj_backend_server/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /dj_backend_server/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /dj_backend_server/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /dj_backend_server/locale/ro/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/locale/ro/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /dj_backend_server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/manage.py -------------------------------------------------------------------------------- /dj_backend_server/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/management/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/management/admin.py -------------------------------------------------------------------------------- /dj_backend_server/management/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/management/apps.py -------------------------------------------------------------------------------- /dj_backend_server/management/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | from .inspire import Command -------------------------------------------------------------------------------- /dj_backend_server/management/management/commands/inspire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/management/management/commands/inspire.py -------------------------------------------------------------------------------- /dj_backend_server/management/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/management/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/management/models.py -------------------------------------------------------------------------------- /dj_backend_server/management/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/management/tests.py -------------------------------------------------------------------------------- /dj_backend_server/management/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /dj_backend_server/nginx/nginx.template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/nginx/nginx.template.conf -------------------------------------------------------------------------------- /dj_backend_server/nginx/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/nginx/readme.md -------------------------------------------------------------------------------- /dj_backend_server/nginx/ssl/cert.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/nginx/ssl/cert.csr -------------------------------------------------------------------------------- /dj_backend_server/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/pyvenv.cfg -------------------------------------------------------------------------------- /dj_backend_server/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/readme.md -------------------------------------------------------------------------------- /dj_backend_server/remove_all_migs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/remove_all_migs.sh -------------------------------------------------------------------------------- /dj_backend_server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/requirements.txt -------------------------------------------------------------------------------- /dj_backend_server/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/admin.py -------------------------------------------------------------------------------- /dj_backend_server/web/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/apps.py -------------------------------------------------------------------------------- /dj_backend_server/web/decorators/error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/decorators/error_handler.py -------------------------------------------------------------------------------- /dj_backend_server/web/enums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/enums/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/web/enums/chatbot_initial_prompt_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/enums/chatbot_initial_prompt_enum.py -------------------------------------------------------------------------------- /dj_backend_server/web/enums/common_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/enums/common_enums.py -------------------------------------------------------------------------------- /dj_backend_server/web/enums/ingest_status_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/enums/ingest_status_enum.py -------------------------------------------------------------------------------- /dj_backend_server/web/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/forms/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/web/forms/chatbot_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/forms/chatbot_form.py -------------------------------------------------------------------------------- /dj_backend_server/web/interfaces/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/interfaces/dashboard.py -------------------------------------------------------------------------------- /dj_backend_server/web/interfaces/data_source_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/interfaces/data_source_interface.py -------------------------------------------------------------------------------- /dj_backend_server/web/listeners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/listeners/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/web/listeners/ingest_pdf_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/listeners/ingest_pdf_data_source.py -------------------------------------------------------------------------------- /dj_backend_server/web/listeners/ingest_website_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/listeners/ingest_website_data_source.py -------------------------------------------------------------------------------- /dj_backend_server/web/listeners/website_data_source_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/listeners/website_data_source_added.py -------------------------------------------------------------------------------- /dj_backend_server/web/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/migrations/0001_initial.py -------------------------------------------------------------------------------- /dj_backend_server/web/migrations/0009_chatbot_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/migrations/0009_chatbot_user.py -------------------------------------------------------------------------------- /dj_backend_server/web/migrations/0010_chathistory_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/migrations/0010_chathistory_feedback.py -------------------------------------------------------------------------------- /dj_backend_server/web/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/chat_histories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/chat_histories.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/chatbot.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/chatbot_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/chatbot_settings.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/codebase_data_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/codebase_data_sources.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/crawled_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/crawled_pages.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/failed_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/failed_jobs.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/jobs.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/notion_data_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/notion_data_sources.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/onboarding_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/onboarding_steps.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/password_reset_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/password_reset_token.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/pdf_data_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/pdf_data_sources.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/personal_access_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/personal_access_tokens.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/text_data_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/text_data_sources.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/user.py -------------------------------------------------------------------------------- /dj_backend_server/web/models/website_data_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/models/website_data_sources.py -------------------------------------------------------------------------------- /dj_backend_server/web/services/__init__.py: -------------------------------------------------------------------------------- 1 | from . import handle_pdf_datasource -------------------------------------------------------------------------------- /dj_backend_server/web/services/chat_history_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/services/chat_history_service.py -------------------------------------------------------------------------------- /dj_backend_server/web/services/handle_pdf_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/services/handle_pdf_datasource.py -------------------------------------------------------------------------------- /dj_backend_server/web/signals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/signals/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/web/signals/chatbot_was_created.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/signals/chatbot_was_created.py -------------------------------------------------------------------------------- /dj_backend_server/web/signals/pdf_datasource_was_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/signals/pdf_datasource_was_added.py -------------------------------------------------------------------------------- /dj_backend_server/web/static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/.htaccess -------------------------------------------------------------------------------- /dj_backend_server/web/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/apple-touch-icon.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/css/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/css/icons.css -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/css/icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/css/icons.min.css -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/css/icons.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/css/icons.min.css.map -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/css/theme.css -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/css/theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/css/theme.min.css -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/css/theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/css/theme.min.css.map -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/404-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/404-error.svg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/500-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/500-error.svg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/brands/dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/brands/dropbox.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/brands/g-suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/brands/g-suite.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/brands/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/brands/github.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/brands/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/brands/slack.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/favicon.ico -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/flags/french.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/flags/french.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/flags/germany.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/flags/germany.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/flags/italy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/flags/italy.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/flags/russia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/flags/russia.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/flags/spain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/flags/spain.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/flags/us.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/flags/us.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/logo-dark.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/logo-light.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/logo-sm.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/maintenance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/maintenance.svg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/users/avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/users/avatar-1.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/users/avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/users/avatar-2.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/users/avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/users/avatar-3.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/users/avatar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/users/avatar-4.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/users/avatar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/users/avatar-5.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/users/avatar-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/users/avatar-6.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/users/avatar-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/users/avatar-7.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/users/avatar-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/users/avatar-8.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/images/users/avatar-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/images/users/avatar-9.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/app.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/app.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/head.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/head.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/calendar.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/calendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/calendar.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/charts-apex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/charts-apex.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/dashboard.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/dashboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/dashboard.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/form-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/form-editor.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/maps-google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/maps-google.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/maps-vector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/maps-vector.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/ratings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/ratings.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/ratings.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/ratings.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/swiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/swiper.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/js/pages/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/js/pages/swiper.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/dayjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/dayjs.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/esm/index.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/esm/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/esm/utils.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale.json -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/af.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/am.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ar.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/az.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/be.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/bg.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/bi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/bi.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/bm.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/bn.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/bo.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/br.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/bs.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ca.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/cs.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/cv.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/cy.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/da.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/de.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/dv.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/el.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/en.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/eo.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/es.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/et.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/eu.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/fa.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/fi.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/fo.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/fr.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/fy.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ga.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/gd.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/gl.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/gu.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/he.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/hi.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/hr.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ht.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ht.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/hu.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/id.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/is.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/it.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ja.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/jv.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ka.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/kk.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/km.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/kn.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ko.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ku.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ky.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/lb.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/lo.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/lt.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/lv.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/me.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/mi.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/mk.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ml.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/mn.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/mr.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ms.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/mt.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/my.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/nb.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ne.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/nl.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/nn.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/pl.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/pt.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/rn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/rn.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ro.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ru.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/rw.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/sd.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/se.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/si.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/sk.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/sl.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/sq.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/sr.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ss.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/sv.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/sw.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ta.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/te.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/tet.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/tg.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/th.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/tk.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/tlh.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/tr.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/tzl.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/tzm.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/uk.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/ur.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/uz.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/vi.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/yo.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/locale/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/locale/zh.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/dayjs/plugin/utc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/dayjs/plugin/utc.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/gmaps/gmaps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/gmaps/gmaps.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/gmaps/jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/gmaps/jsdoc.json -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/gmaps/umd.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/gmaps/umd.hbs -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/jquery/jquery.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/af.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/ar.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/az.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/be.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/bg.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/bm.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/bn.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/bo.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/br.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/bs.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/ca.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/cs.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/cv.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/cy.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/da.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/de.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/dv.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/el.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/eo.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/es.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/et.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/eu.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/fa.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/fi.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/fil.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/fo.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/fr.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/fy.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/ga.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/gd.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/gl.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/gu.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/he.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/hi.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/hr.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/hu.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/id.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/is.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/it.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/ja.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/jv.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/ka.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/kk.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/km.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/kn.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/ko.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/ku.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/ky.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/lb.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/lo.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/lt.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/locale/lv.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/moment/moment.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/plyr/plyr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/plyr/plyr.css -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/plyr/plyr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/plyr/plyr.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/plyr/plyr.min.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/plyr/plyr.min.mjs -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/plyr/plyr.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/plyr/plyr.mjs -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/plyr/plyr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/plyr/plyr.svg -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/preline/preline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/preline/preline.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/quill/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/quill/quill.min.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/rater-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/rater-js/index.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/autoplay-element.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/autoplay.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/controller-element.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/controller.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/effect-coverflow-element.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/effect-coverflow.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/hash-navigation-element.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/hash-navigation.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/history-element.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/history.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/keyboard-element.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/keyboard.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/manipulation-element.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/manipulation.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/mousewheel-element.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/mousewheel.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/parallax-element.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/parallax.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/thumbs-element.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/thumbs.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/modules/zoom-element.min.css: -------------------------------------------------------------------------------- 1 | ::slotted(.swiper-slide-zoomed){cursor:move;touch-action:none} -------------------------------------------------------------------------------- /dj_backend_server/web/static/assets/libs/swiper/swiper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/assets/libs/swiper/swiper.mjs -------------------------------------------------------------------------------- /dj_backend_server/web/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/browserconfig.xml -------------------------------------------------------------------------------- /dj_backend_server/web/static/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/chat.css -------------------------------------------------------------------------------- /dj_backend_server/web/static/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/chat.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/css/style.css -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/avatar-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/avatar-01.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/avatar-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/avatar-02.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/avatar-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/avatar-03.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/avatar-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/avatar-04.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/avatar-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/avatar-05.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/avatar-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/avatar-06.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/favicon.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/icon-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/icon-01.svg -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/icon-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/icon-02.svg -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/icon-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/icon-03.svg -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/images/pay-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/images/pay-bg.jpg -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/js/fintech-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/js/fintech-charts.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/js/flatpickr-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/js/flatpickr-init.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/js/vendors/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/js/vendors/chart.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/js/vendors/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/js/vendors/moment.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/dashboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/dashboard/style.css -------------------------------------------------------------------------------- /dj_backend_server/web/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/favicon-16x16.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/favicon-32x32.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/favicon.ico -------------------------------------------------------------------------------- /dj_backend_server/web/static/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/index.php -------------------------------------------------------------------------------- /dj_backend_server/web/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/mstile-150x150.png -------------------------------------------------------------------------------- /dj_backend_server/web/static/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/notification.mp3 -------------------------------------------------------------------------------- /dj_backend_server/web/static/operator.2b750c4a-a89eff38.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/operator.2b750c4a-a89eff38.mp3 -------------------------------------------------------------------------------- /dj_backend_server/web/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /dj_backend_server/web/static/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/safari-pinned-tab.svg -------------------------------------------------------------------------------- /dj_backend_server/web/static/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/search.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/site.webmanifest -------------------------------------------------------------------------------- /dj_backend_server/web/static/submit.3abafccd-cfb52721.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/submit.3abafccd-cfb52721.mp3 -------------------------------------------------------------------------------- /dj_backend_server/web/static/vendor/telescope/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/vendor/telescope/app-dark.css -------------------------------------------------------------------------------- /dj_backend_server/web/static/vendor/telescope/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/vendor/telescope/app.css -------------------------------------------------------------------------------- /dj_backend_server/web/static/vendor/telescope/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/vendor/telescope/app.js -------------------------------------------------------------------------------- /dj_backend_server/web/static/vendor/telescope/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/static/vendor/telescope/favicon.ico -------------------------------------------------------------------------------- /dj_backend_server/web/template_filters/__init__.py: -------------------------------------------------------------------------------- 1 | from . import time_difference -------------------------------------------------------------------------------- /dj_backend_server/web/template_filters/time_difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/template_filters/time_difference.py -------------------------------------------------------------------------------- /dj_backend_server/web/templates/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/chat.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/create_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/create_user.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/errors_check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/errors_check.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/index.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/layout/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/layout/app.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/layout/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/layout/header.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/layout/noapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/layout/noapp.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/login.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/modify_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/modify_user.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/onboarding/step-0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/onboarding/step-0.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/onboarding/step-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/onboarding/step-1.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/onboarding/step-2-pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/onboarding/step-2-pdf.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/onboarding/step-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/onboarding/step-2.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/onboarding/step-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/onboarding/step-3.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/onboarding/step-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/onboarding/step-4.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/root_navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/root_navigation.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/settings-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/settings-analytics.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/settings-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/settings-data.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/settings-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/settings-history.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/settings-integrations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/settings-integrations.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/settings-theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/settings-theme.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/settings.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/widgets/chat-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/widgets/chat-history.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/widgets/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/widgets/feedback.html -------------------------------------------------------------------------------- /dj_backend_server/web/templates/widgets/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/templates/widgets/metadata.html -------------------------------------------------------------------------------- /dj_backend_server/web/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/tests.py -------------------------------------------------------------------------------- /dj_backend_server/web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/urls.py -------------------------------------------------------------------------------- /dj_backend_server/web/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/utils/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/web/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/utils/common.py -------------------------------------------------------------------------------- /dj_backend_server/web/utils/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/utils/context_processors.py -------------------------------------------------------------------------------- /dj_backend_server/web/utils/delete_foler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/utils/delete_foler.py -------------------------------------------------------------------------------- /dj_backend_server/web/utils/get_logo_from_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/utils/get_logo_from_url.py -------------------------------------------------------------------------------- /dj_backend_server/web/utils/github_repo_url_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/utils/github_repo_url_validator.py -------------------------------------------------------------------------------- /dj_backend_server/web/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/views/__init__.py -------------------------------------------------------------------------------- /dj_backend_server/web/views/view_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/views/view_root.py -------------------------------------------------------------------------------- /dj_backend_server/web/views/views_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/views/views_chatbot.py -------------------------------------------------------------------------------- /dj_backend_server/web/views/views_chatbot_createuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/views/views_chatbot_createuser.py -------------------------------------------------------------------------------- /dj_backend_server/web/views/views_chatbot_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/views/views_chatbot_settings.py -------------------------------------------------------------------------------- /dj_backend_server/web/views/views_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/views/views_errors.py -------------------------------------------------------------------------------- /dj_backend_server/web/views/views_onboarding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/views/views_onboarding.py -------------------------------------------------------------------------------- /dj_backend_server/web/views/views_pdf_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/views/views_pdf_data_source.py -------------------------------------------------------------------------------- /dj_backend_server/web/views/views_website_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/views/views_website_datasource.py -------------------------------------------------------------------------------- /dj_backend_server/web/workers/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/dj_backend_server/web/workers/crawler.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/aug_11/django.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/docs/aug_11/django.gif -------------------------------------------------------------------------------- /docs/aug_26/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/docs/aug_26/readme.md -------------------------------------------------------------------------------- /docs/django_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/docs/django_release.md -------------------------------------------------------------------------------- /docs/docker_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/docs/docker_push.md -------------------------------------------------------------------------------- /llm-server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/.dockerignore -------------------------------------------------------------------------------- /llm-server/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /llm-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/.gitignore -------------------------------------------------------------------------------- /llm-server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/.prettierrc -------------------------------------------------------------------------------- /llm-server/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/.vscode/launch.json -------------------------------------------------------------------------------- /llm-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/Dockerfile -------------------------------------------------------------------------------- /llm-server/config/pinecone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/config/pinecone.ts -------------------------------------------------------------------------------- /llm-server/data-sources/codebaseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/data-sources/codebaseHandler.ts -------------------------------------------------------------------------------- /llm-server/data-sources/pdfHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/data-sources/pdfHandler.ts -------------------------------------------------------------------------------- /llm-server/data-sources/websiteHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/data-sources/websiteHandler.ts -------------------------------------------------------------------------------- /llm-server/declarations/pdf-parse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/declarations/pdf-parse.d.ts -------------------------------------------------------------------------------- /llm-server/interfaces/storeOptions.interface.ts: -------------------------------------------------------------------------------- 1 | export interface StoreOptions { 2 | namespace?: string; 3 | } -------------------------------------------------------------------------------- /llm-server/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/next.config.js -------------------------------------------------------------------------------- /llm-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/package.json -------------------------------------------------------------------------------- /llm-server/pages/api/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/pages/api/chat.ts -------------------------------------------------------------------------------- /llm-server/pages/api/ingest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/pages/api/ingest.ts -------------------------------------------------------------------------------- /llm-server/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/postcss.config.cjs -------------------------------------------------------------------------------- /llm-server/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/tailwind.config.cjs -------------------------------------------------------------------------------- /llm-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/tsconfig.json -------------------------------------------------------------------------------- /llm-server/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/types/chat.ts -------------------------------------------------------------------------------- /llm-server/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/utils/cn.ts -------------------------------------------------------------------------------- /llm-server/utils/customPDFLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/utils/customPDFLoader.ts -------------------------------------------------------------------------------- /llm-server/utils/getVectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/utils/getVectorStore.ts -------------------------------------------------------------------------------- /llm-server/utils/initVectorStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/utils/initVectorStore.ts -------------------------------------------------------------------------------- /llm-server/utils/makechain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/utils/makechain.ts -------------------------------------------------------------------------------- /llm-server/utils/pinecone-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/utils/pinecone-client.ts -------------------------------------------------------------------------------- /llm-server/utils/store.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/utils/store.enum.ts -------------------------------------------------------------------------------- /llm-server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/llm-server/yarn.lock -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/make.bat -------------------------------------------------------------------------------- /update_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/update_repo.sh -------------------------------------------------------------------------------- /widgets/search/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/.eslintrc.cjs -------------------------------------------------------------------------------- /widgets/search/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/.gitignore -------------------------------------------------------------------------------- /widgets/search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/index.html -------------------------------------------------------------------------------- /widgets/search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/package.json -------------------------------------------------------------------------------- /widgets/search/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/postcss.config.js -------------------------------------------------------------------------------- /widgets/search/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/App.tsx -------------------------------------------------------------------------------- /widgets/search/src/components/InputComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/components/InputComponent.tsx -------------------------------------------------------------------------------- /widgets/search/src/components/MarkDown.Hilight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/components/MarkDown.Hilight.tsx -------------------------------------------------------------------------------- /widgets/search/src/components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/components/Message.tsx -------------------------------------------------------------------------------- /widgets/search/src/components/ModalTrigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/components/ModalTrigger.tsx -------------------------------------------------------------------------------- /widgets/search/src/hooks/useBoolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/hooks/useBoolean.ts -------------------------------------------------------------------------------- /widgets/search/src/hooks/useClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/hooks/useClipboard.ts -------------------------------------------------------------------------------- /widgets/search/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/index.css -------------------------------------------------------------------------------- /widgets/search/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/main.tsx -------------------------------------------------------------------------------- /widgets/search/src/utils/axios_instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/utils/axios_instance.ts -------------------------------------------------------------------------------- /widgets/search/src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/src/utils/cn.ts -------------------------------------------------------------------------------- /widgets/search/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /widgets/search/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/tailwind.config.js -------------------------------------------------------------------------------- /widgets/search/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/tsconfig.json -------------------------------------------------------------------------------- /widgets/search/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/tsconfig.node.json -------------------------------------------------------------------------------- /widgets/search/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/vite.config.ts -------------------------------------------------------------------------------- /widgets/search/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openchatai/OpenChat/HEAD/widgets/search/yarn.lock --------------------------------------------------------------------------------