├── .gitignore ├── BL ├── AssemblyInfo.cs ├── ForumGuiHelper.cs ├── ForumManager.cs ├── Globals.cs ├── GuiHelper.cs ├── LICENSE.txt ├── MessageGuiHelper.cs ├── MessageManager.cs ├── SD.HnD.BL.csproj ├── Searcher.cs ├── SectionGuiHelper.cs ├── SectionManager.cs ├── SecurityGuiHelper.cs ├── SecurityManager.cs ├── SupportQueueGuiHelper.cs ├── SupportQueueManager.cs ├── SystemGuiHelper.cs ├── SystemManager.cs ├── ThreadGuiHelper.cs ├── ThreadManager.cs ├── TypedDataClasses │ ├── AggregatedForumRow.cs │ ├── AggregatedSupportQueueContentsRow.cs │ ├── AggregatedThreadRow.cs │ └── AggregatedUnapprovedAttachmentRow.cs ├── UserGuiHelper.cs └── UserManager.cs ├── DALAdapter ├── DatabaseGeneric │ ├── AssemblyInfo.cs │ ├── ConstantsEnums.cs │ ├── EntityClasses │ │ ├── ActionRightEntity.cs │ │ ├── AttachmentEntity.cs │ │ ├── AuditActionEntity.cs │ │ ├── AuditDataCoreEntity.cs │ │ ├── AuditDataMessageRelatedEntity.cs │ │ ├── AuditDataThreadRelatedEntity.cs │ │ ├── BookmarkEntity.cs │ │ ├── CommonEntityBase.cs │ │ ├── ForumEntity.cs │ │ ├── ForumRoleForumActionRightEntity.cs │ │ ├── IPBanEntity.cs │ │ ├── MessageEntity.cs │ │ ├── PasswordResetTokenEntity.cs │ │ ├── RoleAuditActionEntity.cs │ │ ├── RoleEntity.cs │ │ ├── RoleSystemActionRightEntity.cs │ │ ├── RoleUserEntity.cs │ │ ├── SectionEntity.cs │ │ ├── SupportQueueEntity.cs │ │ ├── SupportQueueThreadEntity.cs │ │ ├── SystemDataEntity.cs │ │ ├── ThreadEntity.cs │ │ ├── ThreadStatisticsEntity.cs │ │ ├── ThreadSubscriptionEntity.cs │ │ ├── UserEntity.cs │ │ └── UserTitleEntity.cs │ ├── FactoryClasses │ │ ├── EntityFactories.cs │ │ └── QueryFactory.cs │ ├── HelperClasses │ │ ├── DynamicRelation.cs │ │ ├── EntityCollection.cs │ │ ├── FieldCreationClasses.cs │ │ ├── LinqMetaData.cs │ │ ├── ModelInfoProvider.cs │ │ ├── ResultsetFields.cs │ │ └── TypeDefaultValue.cs │ ├── SD.HnD.DALAdapter.csproj │ └── TypedListClasses │ │ ├── ForumMessagesRow.cs │ │ ├── ForumsWithSectionNameRow.cs │ │ ├── SearchResultRow.cs │ │ └── UserProfileInfoRow.cs ├── DatabaseSpecific │ ├── ActionProcedures.cs │ ├── App.config │ ├── DataAccessAdapter.cs │ ├── PersistenceInfoProvider.cs │ ├── RetrievalProcedures.cs │ └── SD.HnD.DALAdapterDBSpecific.csproj ├── LICENSE.txt └── packages.config ├── DTOs ├── SD.HnD.DTOs.Persistence │ ├── IPBanDtoPersistence.cs │ ├── MessageInThreadDtoPersistence.cs │ ├── RoleDtoPersistence.cs │ ├── SD.HnD.DTOs.Persistence.csproj │ ├── SectionDtoPersistence.cs │ ├── SupportQueueDtoPersistence.cs │ └── UserInRoleDtoPersistence.cs └── SD.HnD.DTOs │ ├── Extensions │ └── IPBanDtoExtension.cs │ ├── IPBanDto.cs │ ├── MessageInThreadDto.cs │ ├── RoleDto.cs │ ├── SD.HnD.DTOs.csproj │ ├── SectionDto.cs │ ├── SupportQueueDto.cs │ └── UserInRoleDto.cs ├── Docs ├── Markdown │ ├── DTOs │ │ ├── IPBan.md │ │ ├── MessageInThread.md │ │ ├── Role.md │ │ ├── Section.md │ │ ├── SupportQueue.md │ │ ├── UserInRole.md │ │ └── generalinformation.md │ ├── EntityModel │ │ ├── _DefaultGroup │ │ │ ├── Entities │ │ │ │ ├── ActionRight.md │ │ │ │ ├── Attachment.md │ │ │ │ ├── AuditAction.md │ │ │ │ ├── AuditDataCore.md │ │ │ │ ├── AuditDataMessageRelated.md │ │ │ │ ├── AuditDataThreadRelated.md │ │ │ │ ├── Bookmark.md │ │ │ │ ├── Forum.md │ │ │ │ ├── ForumRoleForumActionRight.md │ │ │ │ ├── IPBan.md │ │ │ │ ├── Message.md │ │ │ │ ├── PasswordResetToken.md │ │ │ │ ├── Role.md │ │ │ │ ├── RoleAuditAction.md │ │ │ │ ├── RoleSystemActionRight.md │ │ │ │ ├── RoleUser.md │ │ │ │ ├── Section.md │ │ │ │ ├── SupportQueue.md │ │ │ │ ├── SupportQueueThread.md │ │ │ │ ├── SystemData.md │ │ │ │ ├── Thread.md │ │ │ │ ├── ThreadStatistics.md │ │ │ │ ├── ThreadSubscription.md │ │ │ │ ├── User.md │ │ │ │ └── UserTitle.md │ │ │ ├── SPCalls │ │ │ │ └── Install.md │ │ │ └── TypedLists │ │ │ │ ├── ForumMessages.md │ │ │ │ ├── ForumsWithSectionName.md │ │ │ │ ├── SearchResult.md │ │ │ │ └── UserProfileInfo.md │ │ └── generalinformation.md │ ├── SQL_Server_SqlClient │ │ ├── HnD │ │ │ ├── dbo │ │ │ │ ├── ActionRight.md │ │ │ │ ├── Attachment.md │ │ │ │ ├── AuditAction.md │ │ │ │ ├── AuditDataCore.md │ │ │ │ ├── AuditDataMessageRelated.md │ │ │ │ ├── AuditDataThreadRelated.md │ │ │ │ ├── Bookmark.md │ │ │ │ ├── Forum.md │ │ │ │ ├── ForumRoleForumActionRight.md │ │ │ │ ├── IPBan.md │ │ │ │ ├── Message.md │ │ │ │ ├── PasswordResetToken.md │ │ │ │ ├── Role.md │ │ │ │ ├── RoleAuditAction.md │ │ │ │ ├── RoleSystemActionRight.md │ │ │ │ ├── RoleUser.md │ │ │ │ ├── Section.md │ │ │ │ ├── SupportQueue.md │ │ │ │ ├── SupportQueueThread.md │ │ │ │ ├── SystemData.md │ │ │ │ ├── Thread.md │ │ │ │ ├── ThreadStatistics.md │ │ │ │ ├── ThreadSubscription.md │ │ │ │ ├── User.md │ │ │ │ ├── UserTitle.md │ │ │ │ ├── generalinformation.md │ │ │ │ └── prInstall.md │ │ │ └── generalinformation.md │ │ └── generalinformation.md │ ├── docnet.json │ ├── generalinformation.md │ └── index.md └── Site │ ├── 404.htm │ ├── DTOs.htm │ ├── DTOs │ ├── IPBan.htm │ ├── MessageInThread.htm │ ├── Role.htm │ ├── Section.htm │ ├── SupportQueue.htm │ ├── UserInRole.htm │ ├── __index.htm │ └── generalinformation.htm │ ├── Derivedmodels.htm │ ├── Docnet_search.htm │ ├── EntityModel │ ├── _DefaultGroup │ │ ├── Entities │ │ │ ├── ActionRight.htm │ │ │ ├── Attachment.htm │ │ │ ├── AuditAction.htm │ │ │ ├── AuditDataCore.htm │ │ │ ├── AuditDataMessageRelated.htm │ │ │ ├── AuditDataThreadRelated.htm │ │ │ ├── Bookmark.htm │ │ │ ├── Forum.htm │ │ │ ├── ForumRoleForumActionRight.htm │ │ │ ├── IPBan.htm │ │ │ ├── Message.htm │ │ │ ├── PasswordResetToken.htm │ │ │ ├── Role.htm │ │ │ ├── RoleAuditAction.htm │ │ │ ├── RoleSystemActionRight.htm │ │ │ ├── RoleUser.htm │ │ │ ├── Section.htm │ │ │ ├── SupportQueue.htm │ │ │ ├── SupportQueueThread.htm │ │ │ ├── SystemData.htm │ │ │ ├── Thread.htm │ │ │ ├── ThreadStatistics.htm │ │ │ ├── ThreadSubscription.htm │ │ │ ├── User.htm │ │ │ ├── UserTitle.htm │ │ │ └── __index.htm │ │ ├── SPCalls │ │ │ ├── Install.htm │ │ │ └── __index.htm │ │ └── TypedLists │ │ │ ├── ForumMessages.htm │ │ │ ├── ForumsWithSectionName.htm │ │ │ ├── SearchResult.htm │ │ │ ├── UserProfileInfo.htm │ │ │ └── __index.htm │ └── generalinformation.htm │ ├── Entitymodel.htm │ ├── Metadata.htm │ ├── SQL_Server_SqlClient │ ├── HnD │ │ ├── __index.htm │ │ ├── dbo │ │ │ ├── ActionRight.htm │ │ │ ├── Attachment.htm │ │ │ ├── AuditAction.htm │ │ │ ├── AuditDataCore.htm │ │ │ ├── AuditDataMessageRelated.htm │ │ │ ├── AuditDataThreadRelated.htm │ │ │ ├── Bookmark.htm │ │ │ ├── Forum.htm │ │ │ ├── ForumRoleForumActionRight.htm │ │ │ ├── IPBan.htm │ │ │ ├── Message.htm │ │ │ ├── PasswordResetToken.htm │ │ │ ├── Role.htm │ │ │ ├── RoleAuditAction.htm │ │ │ ├── RoleSystemActionRight.htm │ │ │ ├── RoleUser.htm │ │ │ ├── Section.htm │ │ │ ├── SupportQueue.htm │ │ │ ├── SupportQueueThread.htm │ │ │ ├── SystemData.htm │ │ │ ├── Thread.htm │ │ │ ├── ThreadStatistics.htm │ │ │ ├── ThreadSubscription.htm │ │ │ ├── User.htm │ │ │ ├── UserTitle.htm │ │ │ ├── __index.htm │ │ │ ├── generalinformation.htm │ │ │ └── prInstall.htm │ │ ├── dboStoredprocedures.htm │ │ ├── dboTables.htm │ │ └── generalinformation.htm │ ├── __index.htm │ └── generalinformation.htm │ ├── css │ ├── font-awesome.4.5.0.min.css │ ├── highlight.css │ ├── styles │ │ ├── agate.css │ │ ├── androidstudio.css │ │ ├── arduino-light.css │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── codepen-embed.css │ │ ├── color-brewer.css │ │ ├── dark.css │ │ ├── darkula.css │ │ ├── default.css │ │ ├── docco.css │ │ ├── far.css │ │ ├── foundation.css │ │ ├── github-gist.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── grayscale.css │ │ ├── hopscotch.css │ │ ├── hybrid.css │ │ ├── idea.css │ │ ├── ir-black.css │ │ ├── kimbie.dark.css │ │ ├── kimbie.light.css │ │ ├── magula.css │ │ ├── mono-blue.css │ │ ├── monokai-sublime.css │ │ ├── monokai.css │ │ ├── obsidian.css │ │ ├── paraiso-dark.css │ │ ├── paraiso-light.css │ │ ├── railscasts.css │ │ ├── rainbow.css │ │ ├── solarized-dark.css │ │ ├── solarized-light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── xcode.css │ │ └── zenburn.css │ ├── theme.css │ └── theme_colors.css │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── source-sans-pro-v9-latin-ext_latin-300.eot │ ├── source-sans-pro-v9-latin-ext_latin-300.svg │ ├── source-sans-pro-v9-latin-ext_latin-300.ttf │ ├── source-sans-pro-v9-latin-ext_latin-300.woff │ ├── source-sans-pro-v9-latin-ext_latin-300.woff2 │ ├── source-sans-pro-v9-latin-ext_latin-300italic.eot │ ├── source-sans-pro-v9-latin-ext_latin-300italic.svg │ ├── source-sans-pro-v9-latin-ext_latin-300italic.ttf │ ├── source-sans-pro-v9-latin-ext_latin-300italic.woff │ ├── source-sans-pro-v9-latin-ext_latin-300italic.woff2 │ ├── source-sans-pro-v9-latin-ext_latin-600.eot │ ├── source-sans-pro-v9-latin-ext_latin-600.svg │ ├── source-sans-pro-v9-latin-ext_latin-600.ttf │ ├── source-sans-pro-v9-latin-ext_latin-600.woff │ ├── source-sans-pro-v9-latin-ext_latin-600.woff2 │ ├── source-sans-pro-v9-latin-ext_latin-700.eot │ ├── source-sans-pro-v9-latin-ext_latin-700.svg │ ├── source-sans-pro-v9-latin-ext_latin-700.ttf │ ├── source-sans-pro-v9-latin-ext_latin-700.woff │ ├── source-sans-pro-v9-latin-ext_latin-700.woff2 │ ├── source-sans-pro-v9-latin-ext_latin-900.eot │ ├── source-sans-pro-v9-latin-ext_latin-900.svg │ ├── source-sans-pro-v9-latin-ext_latin-900.ttf │ ├── source-sans-pro-v9-latin-ext_latin-900.woff │ ├── source-sans-pro-v9-latin-ext_latin-900.woff2 │ ├── source-sans-pro-v9-latin-ext_latin-italic.eot │ ├── source-sans-pro-v9-latin-ext_latin-italic.svg │ ├── source-sans-pro-v9-latin-ext_latin-italic.ttf │ ├── source-sans-pro-v9-latin-ext_latin-italic.woff │ ├── source-sans-pro-v9-latin-ext_latin-italic.woff2 │ ├── source-sans-pro-v9-latin-ext_latin-regular.eot │ ├── source-sans-pro-v9-latin-ext_latin-regular.svg │ ├── source-sans-pro-v9-latin-ext_latin-regular.ttf │ ├── source-sans-pro-v9-latin-ext_latin-regular.woff │ └── source-sans-pro-v9-latin-ext_latin-regular.woff2 │ ├── generalinformation.htm │ ├── index.htm │ ├── js │ ├── highlight.pack.js │ ├── jquery-2.1.1.min.js │ ├── lunr-0.5.7.min.js │ ├── modernizr-2.8.3.min.js │ ├── mustache.min.js │ ├── require.js │ ├── search-results-template.mustache │ ├── search.js │ ├── text.js │ └── theme.js │ └── search_index.json ├── GuiCore ├── Caching │ ├── CacheKeyStore.cs │ └── MemoryCachedResultsetCache.cs ├── Classes │ ├── ApplicationAdapter.cs │ ├── AuditingAdapter.cs │ ├── CacheManager.cs │ ├── ConstantsEnums.cs │ ├── FromToMapping.cs │ ├── HnDConfiguration.cs │ ├── IPFilter.cs │ ├── LLBLGenProConfiguration.cs │ ├── LoggedInUserAdapter.cs │ ├── MiddlewareExtensions.cs │ ├── SearchResultsWrapper.cs │ └── SessionAdapter.cs ├── Controllers │ ├── AccountController.cs │ ├── Admin │ │ ├── ForumAdminController.cs │ │ ├── SectionAdminController.cs │ │ ├── SecurityAdminController.cs │ │ ├── SupportQueueAdminController.cs │ │ ├── SystemAdminController.cs │ │ └── UserAdminController.cs │ ├── AttachmentController.cs │ ├── ErrorController.cs │ ├── ForumController.cs │ ├── HomeController.cs │ ├── MessageController.cs │ ├── RssForumController.cs │ ├── SearchController.cs │ ├── SectionController.cs │ ├── SupportQueueController.cs │ ├── ThreadController.cs │ └── UserController.cs ├── DataFiles │ ├── Noise.txt │ ├── RegistrationReplyMail.template │ ├── ResetPasswordLink.template │ ├── ThreadUpdatedNotification.template │ ├── ubb_message.xsl │ └── ubb_signature.xsl ├── GuiCore.csproj ├── LICENSE.txt ├── Models │ ├── Admin │ │ ├── ActionWithUserSearchData.cs │ │ ├── AddEditForumData.cs │ │ ├── AddEditRoleData.cs │ │ ├── AddUsersToRoleData.cs │ │ ├── EditUserInfoData.cs │ │ ├── FindUserData.cs │ │ ├── InitData.cs │ │ ├── ManageForumRoleRightsData.cs │ │ ├── RemoveUserFromRoleData.cs │ │ ├── ReparsingMessageData.cs │ │ ├── ShowAuditInfoUserData.cs │ │ ├── SystemParametersData.cs │ │ └── UsersInRolesData.cs │ ├── AdvancedSearchModel.cs │ ├── AdvancedSearchUIData.cs │ ├── EditProfileData.cs │ ├── ErrorData.cs │ ├── ForumData.cs │ ├── ForumSelectorData.cs │ ├── HomeData.cs │ ├── IgnoredSearchWordsData.cs │ ├── LoginData.cs │ ├── MemoData.cs │ ├── MessageData.cs │ ├── MyThreadsData.cs │ ├── NewPasswordData.cs │ ├── NewProfileData.cs │ ├── NewThreadData.cs │ ├── ResetPasswordData.cs │ ├── RssForumData.cs │ ├── SearchResultsData.cs │ ├── SupportQueuesData.cs │ ├── ThreadData.cs │ ├── ThreadPropertiesModel.cs │ ├── ThreadsData.cs │ ├── UnapprovedAttachmentsData.cs │ └── UserProfileData.cs ├── Program.cs ├── Properties │ ├── launchSettings.json │ ├── serviceDependencies.json │ └── serviceDependencies.local.json ├── Startup.cs ├── Views │ ├── Account │ │ ├── Bookmarks.cshtml │ │ ├── EditProfile.cshtml │ │ ├── Login.cshtml │ │ ├── Register.cshtml │ │ ├── ResetPassword.cshtml │ │ ├── SpecifyNewPassword.cshtml │ │ └── Threads.cshtml │ ├── Admin │ │ ├── AddForum.cshtml │ │ ├── AddRole.cshtml │ │ ├── AddUsersToRole.cshtml │ │ ├── BanUnbanUser.cshtml │ │ ├── DeleteUser.cshtml │ │ ├── EditForum.cshtml │ │ ├── EditRole.cshtml │ │ ├── EditUserInfo.cshtml │ │ ├── EditUserInfo_Search.cshtml │ │ ├── Forums.cshtml │ │ ├── IPBans.cshtml │ │ ├── Init.cshtml │ │ ├── ManageRightsPerForum.cshtml │ │ ├── ManageUsersPerRole.cshtml │ │ ├── ReparseMessages.cshtml │ │ ├── Roles.cshtml │ │ ├── Sections.cshtml │ │ ├── ShowAuditInfoUser.cshtml │ │ ├── SupportQueues.cshtml │ │ └── SystemParameters.cshtml │ ├── Attachment │ │ └── Unapproved.cshtml │ ├── Error │ │ └── HandleErrorCode.cshtml │ ├── Forum │ │ └── Index.cshtml │ ├── Home │ │ ├── Help.cshtml │ │ ├── Index.cshtml │ │ └── TermsOfUsage.cshtml │ ├── Message │ │ ├── Add.cshtml │ │ └── Edit.cshtml │ ├── RssForum │ │ └── Index.cshtml │ ├── Search │ │ ├── AdvancedSearch.cshtml │ │ ├── IgnoredSearchWords.cshtml │ │ └── Results.cshtml │ ├── Shared │ │ ├── Admin │ │ │ └── FindUser.cshtml │ │ ├── Error.cshtml │ │ ├── ForumSelector.cshtml │ │ ├── MarkdownEditor.cshtml │ │ ├── MarkdownEditor_CSS.cshtml │ │ ├── MarkdownEditor_JS.cshtml │ │ ├── MemoEditor.cshtml │ │ ├── MessagePager.cshtml │ │ ├── MyThreadsPager.cshtml │ │ ├── SearchResultsPager.cshtml │ │ ├── SimpleThreadLister.cshtml │ │ ├── ThreadPager.cshtml │ │ └── _Layout.cshtml │ ├── SupportQueue │ │ ├── EditMemo.cshtml │ │ └── ListQueues.cshtml │ ├── Thread │ │ ├── Active.cshtml │ │ ├── Add.cshtml │ │ └── Index.cshtml │ ├── User │ │ └── ViewProfile.cshtml │ └── _ViewStart.cshtml ├── appsettings.json └── wwwroot │ ├── banned.html │ ├── css │ ├── bootstrap.3.3.7.min.css │ ├── general_colors.css │ ├── general_colors.css.map │ ├── general_colors.less │ ├── general_colors.min.css │ ├── general_styles.css │ └── styles │ │ ├── agate.css │ │ ├── androidstudio.css │ │ ├── arduino-light.css │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── codepen-embed.css │ │ ├── color-brewer.css │ │ ├── dark.css │ │ ├── darkula.css │ │ ├── default.css │ │ ├── docco.css │ │ ├── far.css │ │ ├── foundation.css │ │ ├── github-gist.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── grayscale.css │ │ ├── hopscotch.css │ │ ├── hybrid.css │ │ ├── idea.css │ │ ├── ir-black.css │ │ ├── kimbie.dark.css │ │ ├── kimbie.light.css │ │ ├── magula.css │ │ ├── mono-blue.css │ │ ├── monokai-sublime.css │ │ ├── monokai.css │ │ ├── obsidian.css │ │ ├── paraiso-dark.css │ │ ├── paraiso-light.css │ │ ├── railscasts.css │ │ ├── rainbow.css │ │ ├── solarized-dark.css │ │ ├── solarized-light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── xcode.css │ │ └── zenburn.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── js │ ├── bootstrap.3.3.7.min.es5.js │ ├── bootstrap.3.3.7.min.es5.min.js │ ├── bootstrap.3.3.7.min.js │ ├── general.js │ ├── highlight.9.7.pack.js │ └── jquery.validate.unobtrusive.min.js │ └── pics │ ├── emojis │ ├── +1.png │ ├── -1.png │ ├── 100.png │ ├── 1234.png │ ├── 8ball.png │ ├── a.png │ ├── ab.png │ ├── abc.png │ ├── abcd.png │ ├── accept.png │ ├── aerial_tramway.png │ ├── airplane.png │ ├── alarm_clock.png │ ├── alien.png │ ├── ambulance.png │ ├── anchor.png │ ├── angel.png │ ├── anger.png │ ├── angry.png │ ├── anguished.png │ ├── ant.png │ ├── apple.png │ ├── aquarius.png │ ├── aries.png │ ├── arrow_backward.png │ ├── arrow_double_down.png │ ├── arrow_double_up.png │ ├── arrow_down.png │ ├── arrow_down_small.png │ ├── arrow_forward.png │ ├── arrow_heading_down.png │ ├── arrow_heading_up.png │ ├── arrow_left.png │ ├── arrow_lower_left.png │ ├── arrow_lower_right.png │ ├── arrow_right.png │ ├── arrow_right_hook.png │ ├── arrow_up.png │ ├── arrow_up_down.png │ ├── arrow_up_small.png │ ├── arrow_upper_left.png │ ├── arrow_upper_right.png │ ├── arrows_clockwise.png │ ├── arrows_counterclockwise.png │ ├── art.png │ ├── articulated_lorry.png │ ├── astonished.png │ ├── atm.png │ ├── b.png │ ├── baby.png │ ├── baby_bottle.png │ ├── baby_chick.png │ ├── baby_symbol.png │ ├── back.png │ ├── baggage_claim.png │ ├── balloon.png │ ├── ballot_box_with_check.png │ ├── bamboo.png │ ├── banana.png │ ├── bangbang.png │ ├── bank.png │ ├── bar_chart.png │ ├── barber.png │ ├── baseball.png │ ├── basketball.png │ ├── bath.png │ ├── bathtub.png │ ├── battery.png │ ├── bear.png │ ├── bee.png │ ├── beer.png │ ├── beers.png │ ├── beetle.png │ ├── beginner.png │ ├── bell.png │ ├── bento.png │ ├── bicyclist.png │ ├── bike.png │ ├── bikini.png │ ├── bird.png │ ├── birthday.png │ ├── black_circle.png │ ├── black_joker.png │ ├── black_medium_small_square.png │ ├── black_medium_square.png │ ├── black_nib.png │ ├── black_small_square.png │ ├── black_square.png │ ├── black_square_button.png │ ├── blossom.png │ ├── blowfish.png │ ├── blue_book.png │ ├── blue_car.png │ ├── blue_heart.png │ ├── blush.png │ ├── boar.png │ ├── boat.png │ ├── bomb.png │ ├── book.png │ ├── bookmark.png │ ├── bookmark_tabs.png │ ├── books.png │ ├── boom.png │ ├── boot.png │ ├── bouquet.png │ ├── bow.png │ ├── bowling.png │ ├── bowtie.png │ ├── boy.png │ ├── bread.png │ ├── bride_with_veil.png │ ├── bridge_at_night.png │ ├── briefcase.png │ ├── broken_heart.png │ ├── bug.png │ ├── bulb.png │ ├── bullettrain_front.png │ ├── bullettrain_side.png │ ├── bus.png │ ├── busstop.png │ ├── bust_in_silhouette.png │ ├── busts_in_silhouette.png │ ├── cactus.png │ ├── cake.png │ ├── calendar.png │ ├── calling.png │ ├── camel.png │ ├── camera.png │ ├── cancer.png │ ├── candy.png │ ├── capital_abcd.png │ ├── capricorn.png │ ├── car.png │ ├── card_index.png │ ├── carousel_horse.png │ ├── cat.png │ ├── cat2.png │ ├── cd.png │ ├── chart.png │ ├── chart_with_downwards_trend.png │ ├── chart_with_upwards_trend.png │ ├── checkered_flag.png │ ├── cherries.png │ ├── cherry_blossom.png │ ├── chestnut.png │ ├── chicken.png │ ├── children_crossing.png │ ├── chocolate_bar.png │ ├── christmas_tree.png │ ├── church.png │ ├── cinema.png │ ├── circus_tent.png │ ├── city_sunrise.png │ ├── city_sunset.png │ ├── cl.png │ ├── clap.png │ ├── clapper.png │ ├── clipboard.png │ ├── clock1.png │ ├── clock10.png │ ├── clock1030.png │ ├── clock11.png │ ├── clock1130.png │ ├── clock12.png │ ├── clock1230.png │ ├── clock130.png │ ├── clock2.png │ ├── clock230.png │ ├── clock3.png │ ├── clock330.png │ ├── clock4.png │ ├── clock430.png │ ├── clock5.png │ ├── clock530.png │ ├── clock6.png │ ├── clock630.png │ ├── clock7.png │ ├── clock730.png │ ├── clock8.png │ ├── clock830.png │ ├── clock9.png │ ├── clock930.png │ ├── closed_book.png │ ├── closed_lock_with_key.png │ ├── closed_umbrella.png │ ├── cloud.png │ ├── clubs.png │ ├── cn.png │ ├── cocktail.png │ ├── coffee.png │ ├── cold_sweat.png │ ├── collision.png │ ├── computer.png │ ├── confetti_ball.png │ ├── confounded.png │ ├── confused.png │ ├── congratulations.png │ ├── construction.png │ ├── construction_worker.png │ ├── convenience_store.png │ ├── cookie.png │ ├── cool.png │ ├── cop.png │ ├── copyright.png │ ├── corn.png │ ├── couple.png │ ├── couple_with_heart.png │ ├── couplekiss.png │ ├── cow.png │ ├── cow2.png │ ├── credit_card.png │ ├── crescent_moon.png │ ├── crocodile.png │ ├── crossed_flags.png │ ├── crown.png │ ├── cry.png │ ├── crying_cat_face.png │ ├── crystal_ball.png │ ├── cupid.png │ ├── curly_loop.png │ ├── currency_exchange.png │ ├── curry.png │ ├── custard.png │ ├── customs.png │ ├── cyclone.png │ ├── dancer.png │ ├── dancers.png │ ├── dango.png │ ├── dart.png │ ├── dash.png │ ├── date.png │ ├── de.png │ ├── deciduous_tree.png │ ├── department_store.png │ ├── diamond_shape_with_a_dot_inside.png │ ├── diamonds.png │ ├── disappointed.png │ ├── disappointed_relieved.png │ ├── dizzy.png │ ├── dizzy_face.png │ ├── do_not_litter.png │ ├── dog.png │ ├── dog2.png │ ├── dollar.png │ ├── dolls.png │ ├── dolphin.png │ ├── donut.png │ ├── door.png │ ├── doughnut.png │ ├── dragon.png │ ├── dragon_face.png │ ├── dress.png │ ├── dromedary_camel.png │ ├── droplet.png │ ├── dvd.png │ ├── e-mail.png │ ├── ear.png │ ├── ear_of_rice.png │ ├── earth_africa.png │ ├── earth_americas.png │ ├── earth_asia.png │ ├── egg.png │ ├── eggplant.png │ ├── eight.png │ ├── eight_pointed_black_star.png │ ├── eight_spoked_asterisk.png │ ├── electric_plug.png │ ├── elephant.png │ ├── email.png │ ├── end.png │ ├── envelope.png │ ├── es.png │ ├── euro.png │ ├── european_castle.png │ ├── european_post_office.png │ ├── evergreen_tree.png │ ├── exclamation.png │ ├── expressionless.png │ ├── eyeglasses.png │ ├── eyes.png │ ├── facepunch.png │ ├── factory.png │ ├── fallen_leaf.png │ ├── family.png │ ├── fast_forward.png │ ├── fax.png │ ├── fearful.png │ ├── feelsgood.png │ ├── feet.png │ ├── ferris_wheel.png │ ├── file_folder.png │ ├── finnadie.png │ ├── fire.png │ ├── fire_engine.png │ ├── fireworks.png │ ├── first_quarter_moon.png │ ├── first_quarter_moon_with_face.png │ ├── fish.png │ ├── fish_cake.png │ ├── fishing_pole_and_fish.png │ ├── fist.png │ ├── five.png │ ├── flags.png │ ├── flashlight.png │ ├── floppy_disk.png │ ├── flower_playing_cards.png │ ├── flushed.png │ ├── foggy.png │ ├── football.png │ ├── fork_and_knife.png │ ├── fountain.png │ ├── four.png │ ├── four_leaf_clover.png │ ├── fr.png │ ├── free.png │ ├── fried_shrimp.png │ ├── fries.png │ ├── frog.png │ ├── frowning.png │ ├── fu.png │ ├── fuelpump.png │ ├── full_moon.png │ ├── full_moon_with_face.png │ ├── game_die.png │ ├── gb.png │ ├── gem.png │ ├── gemini.png │ ├── ghost.png │ ├── gift.png │ ├── gift_heart.png │ ├── girl.png │ ├── globe_with_meridians.png │ ├── goat.png │ ├── goberserk.png │ ├── godmode.png │ ├── golf.png │ ├── grapes.png │ ├── green_apple.png │ ├── green_book.png │ ├── green_heart.png │ ├── grey_exclamation.png │ ├── grey_question.png │ ├── grimacing.png │ ├── grin.png │ ├── grinning.png │ ├── guardsman.png │ ├── guitar.png │ ├── gun.png │ ├── haircut.png │ ├── hamburger.png │ ├── hammer.png │ ├── hamster.png │ ├── hand.png │ ├── handbag.png │ ├── hankey.png │ ├── hash.png │ ├── hatched_chick.png │ ├── hatching_chick.png │ ├── headphones.png │ ├── hear_no_evil.png │ ├── heart.png │ ├── heart_decoration.png │ ├── heart_eyes.png │ ├── heart_eyes_cat.png │ ├── heartbeat.png │ ├── heartpulse.png │ ├── hearts.png │ ├── heavy_check_mark.png │ ├── heavy_division_sign.png │ ├── heavy_dollar_sign.png │ ├── heavy_exclamation_mark.png │ ├── heavy_minus_sign.png │ ├── heavy_multiplication_x.png │ ├── heavy_plus_sign.png │ ├── helicopter.png │ ├── herb.png │ ├── hibiscus.png │ ├── high_brightness.png │ ├── high_heel.png │ ├── hocho.png │ ├── honey_pot.png │ ├── honeybee.png │ ├── horse.png │ ├── horse_racing.png │ ├── hospital.png │ ├── hotel.png │ ├── hotsprings.png │ ├── hourglass.png │ ├── hourglass_flowing_sand.png │ ├── house.png │ ├── house_with_garden.png │ ├── hurtrealbad.png │ ├── hushed.png │ ├── ice_cream.png │ ├── icecream.png │ ├── id.png │ ├── ideograph_advantage.png │ ├── imp.png │ ├── inbox_tray.png │ ├── incoming_envelope.png │ ├── information_desk_person.png │ ├── information_source.png │ ├── innocent.png │ ├── interrobang.png │ ├── iphone.png │ ├── it.png │ ├── izakaya_lantern.png │ ├── jack_o_lantern.png │ ├── japan.png │ ├── japanese_castle.png │ ├── japanese_goblin.png │ ├── japanese_ogre.png │ ├── jeans.png │ ├── joy.png │ ├── joy_cat.png │ ├── jp.png │ ├── key.png │ ├── keycap_ten.png │ ├── kimono.png │ ├── kiss.png │ ├── kissing.png │ ├── kissing_cat.png │ ├── kissing_closed_eyes.png │ ├── kissing_face.png │ ├── kissing_heart.png │ ├── kissing_smiling_eyes.png │ ├── koala.png │ ├── koko.png │ ├── kr.png │ ├── large_blue_circle.png │ ├── large_blue_diamond.png │ ├── large_orange_diamond.png │ ├── last_quarter_moon.png │ ├── last_quarter_moon_with_face.png │ ├── laughing.png │ ├── leaves.png │ ├── ledger.png │ ├── left_luggage.png │ ├── left_right_arrow.png │ ├── leftwards_arrow_with_hook.png │ ├── lemon.png │ ├── leo.png │ ├── leopard.png │ ├── libra.png │ ├── light_rail.png │ ├── link.png │ ├── lips.png │ ├── lipstick.png │ ├── lock.png │ ├── lock_with_ink_pen.png │ ├── lollipop.png │ ├── loop.png │ ├── loudspeaker.png │ ├── love_hotel.png │ ├── love_letter.png │ ├── low_brightness.png │ ├── m.png │ ├── mag.png │ ├── mag_right.png │ ├── mahjong.png │ ├── mailbox.png │ ├── mailbox_closed.png │ ├── mailbox_with_mail.png │ ├── mailbox_with_no_mail.png │ ├── man.png │ ├── man_with_gua_pi_mao.png │ ├── man_with_turban.png │ ├── mans_shoe.png │ ├── maple_leaf.png │ ├── mask.png │ ├── massage.png │ ├── meat_on_bone.png │ ├── mega.png │ ├── melon.png │ ├── memo.png │ ├── mens.png │ ├── metal.png │ ├── metro.png │ ├── microphone.png │ ├── microscope.png │ ├── milky_way.png │ ├── minibus.png │ ├── minidisc.png │ ├── mobile_phone_off.png │ ├── money_with_wings.png │ ├── moneybag.png │ ├── monkey.png │ ├── monkey_face.png │ ├── monorail.png │ ├── mortar_board.png │ ├── mount_fuji.png │ ├── mountain_bicyclist.png │ ├── mountain_cableway.png │ ├── mountain_railway.png │ ├── mouse.png │ ├── mouse2.png │ ├── movie_camera.png │ ├── moyai.png │ ├── muscle.png │ ├── mushroom.png │ ├── musical_keyboard.png │ ├── musical_note.png │ ├── musical_score.png │ ├── mute.png │ ├── nail_care.png │ ├── name_badge.png │ ├── neckbeard.png │ ├── necktie.png │ ├── negative_squared_cross_mark.png │ ├── neutral_face.png │ ├── new.png │ ├── new_moon.png │ ├── new_moon_with_face.png │ ├── newspaper.png │ ├── ng.png │ ├── nine.png │ ├── no_bell.png │ ├── no_bicycles.png │ ├── no_entry.png │ ├── no_entry_sign.png │ ├── no_good.png │ ├── no_mobile_phones.png │ ├── no_mouth.png │ ├── no_pedestrians.png │ ├── no_smoking.png │ ├── non-potable_water.png │ ├── nose.png │ ├── notebook.png │ ├── notebook_with_decorative_cover.png │ ├── notes.png │ ├── nut_and_bolt.png │ ├── o.png │ ├── o2.png │ ├── ocean.png │ ├── octocat.png │ ├── octopus.png │ ├── oden.png │ ├── office.png │ ├── ok.png │ ├── ok_hand.png │ ├── ok_woman.png │ ├── older_man.png │ ├── older_woman.png │ ├── on.png │ ├── oncoming_automobile.png │ ├── oncoming_bus.png │ ├── oncoming_police_car.png │ ├── oncoming_taxi.png │ ├── one.png │ ├── open_file_folder.png │ ├── open_hands.png │ ├── open_mouth.png │ ├── ophiuchus.png │ ├── orange_book.png │ ├── outbox_tray.png │ ├── ox.png │ ├── package.png │ ├── page_facing_up.png │ ├── page_with_curl.png │ ├── pager.png │ ├── palm_tree.png │ ├── panda_face.png │ ├── paperclip.png │ ├── parking.png │ ├── part_alternation_mark.png │ ├── partly_sunny.png │ ├── passport_control.png │ ├── paw_prints.png │ ├── peach.png │ ├── pear.png │ ├── pencil.png │ ├── pencil2.png │ ├── penguin.png │ ├── pensive.png │ ├── performing_arts.png │ ├── persevere.png │ ├── person_frowning.png │ ├── person_with_blond_hair.png │ ├── person_with_pouting_face.png │ ├── phone.png │ ├── pig.png │ ├── pig2.png │ ├── pig_nose.png │ ├── pill.png │ ├── pineapple.png │ ├── pisces.png │ ├── pizza.png │ ├── plus1.png │ ├── point_down.png │ ├── point_left.png │ ├── point_right.png │ ├── point_up.png │ ├── point_up_2.png │ ├── police_car.png │ ├── poodle.png │ ├── poop.png │ ├── post_office.png │ ├── postal_horn.png │ ├── postbox.png │ ├── potable_water.png │ ├── pouch.png │ ├── poultry_leg.png │ ├── pound.png │ ├── pouting_cat.png │ ├── pray.png │ ├── princess.png │ ├── punch.png │ ├── purple_heart.png │ ├── purse.png │ ├── pushpin.png │ ├── put_litter_in_its_place.png │ ├── question.png │ ├── rabbit.png │ ├── rabbit2.png │ ├── racehorse.png │ ├── radio.png │ ├── radio_button.png │ ├── rage.png │ ├── rage1.png │ ├── rage2.png │ ├── rage3.png │ ├── rage4.png │ ├── railway_car.png │ ├── rainbow.png │ ├── raised_hand.png │ ├── raised_hands.png │ ├── raising_hand.png │ ├── ram.png │ ├── ramen.png │ ├── rat.png │ ├── recycle.png │ ├── red_car.png │ ├── red_circle.png │ ├── registered.png │ ├── relaxed.png │ ├── relieved.png │ ├── repeat.png │ ├── repeat_one.png │ ├── restroom.png │ ├── revolving_hearts.png │ ├── rewind.png │ ├── ribbon.png │ ├── rice.png │ ├── rice_ball.png │ ├── rice_cracker.png │ ├── rice_scene.png │ ├── ring.png │ ├── rocket.png │ ├── roller_coaster.png │ ├── rooster.png │ ├── rose.png │ ├── rotating_light.png │ ├── round_pushpin.png │ ├── rowboat.png │ ├── ru.png │ ├── rugby_football.png │ ├── runner.png │ ├── running.png │ ├── running_shirt_with_sash.png │ ├── sa.png │ ├── sagittarius.png │ ├── sailboat.png │ ├── sake.png │ ├── sandal.png │ ├── santa.png │ ├── satellite.png │ ├── satisfied.png │ ├── saxophone.png │ ├── school.png │ ├── school_satchel.png │ ├── scissors.png │ ├── scorpius.png │ ├── scream.png │ ├── scream_cat.png │ ├── scroll.png │ ├── seat.png │ ├── secret.png │ ├── see_no_evil.png │ ├── seedling.png │ ├── seven.png │ ├── shaved_ice.png │ ├── sheep.png │ ├── shell.png │ ├── ship.png │ ├── shipit.png │ ├── shirt.png │ ├── shit.png │ ├── shoe.png │ ├── shower.png │ ├── signal_strength.png │ ├── simple_smile.png │ ├── six.png │ ├── six_pointed_star.png │ ├── ski.png │ ├── skull.png │ ├── sleeping.png │ ├── sleepy.png │ ├── slot_machine.png │ ├── small_blue_diamond.png │ ├── small_orange_diamond.png │ ├── small_red_triangle.png │ ├── small_red_triangle_down.png │ ├── smile.png │ ├── smile_cat.png │ ├── smiley.png │ ├── smiley_cat.png │ ├── smiling_imp.png │ ├── smirk.png │ ├── smirk_cat.png │ ├── smoking.png │ ├── snail.png │ ├── snake.png │ ├── snowboarder.png │ ├── snowflake.png │ ├── snowman.png │ ├── sob.png │ ├── soccer.png │ ├── soon.png │ ├── sos.png │ ├── sound.png │ ├── space_invader.png │ ├── spades.png │ ├── spaghetti.png │ ├── sparkle.png │ ├── sparkler.png │ ├── sparkles.png │ ├── sparkling_heart.png │ ├── speak_no_evil.png │ ├── speaker.png │ ├── speech_balloon.png │ ├── speedboat.png │ ├── squirrel.png │ ├── star.png │ ├── star2.png │ ├── stars.png │ ├── station.png │ ├── statue_of_liberty.png │ ├── steam_locomotive.png │ ├── stew.png │ ├── straight_ruler.png │ ├── strawberry.png │ ├── stuck_out_tongue.png │ ├── stuck_out_tongue_closed_eyes.png │ ├── stuck_out_tongue_winking_eye.png │ ├── sun_with_face.png │ ├── sunflower.png │ ├── sunglasses.png │ ├── sunny.png │ ├── sunrise.png │ ├── sunrise_over_mountains.png │ ├── surfer.png │ ├── sushi.png │ ├── suspect.png │ ├── suspension_railway.png │ ├── sweat.png │ ├── sweat_drops.png │ ├── sweat_smile.png │ ├── sweet_potato.png │ ├── swimmer.png │ ├── symbols.png │ ├── syringe.png │ ├── tada.png │ ├── tanabata_tree.png │ ├── tangerine.png │ ├── taurus.png │ ├── taxi.png │ ├── tea.png │ ├── telephone.png │ ├── telephone_receiver.png │ ├── telescope.png │ ├── tennis.png │ ├── tent.png │ ├── thought_balloon.png │ ├── three.png │ ├── thumbsdown.png │ ├── thumbsup.png │ ├── ticket.png │ ├── tiger.png │ ├── tiger2.png │ ├── tired_face.png │ ├── tm.png │ ├── toilet.png │ ├── tokyo_tower.png │ ├── tomato.png │ ├── tongue.png │ ├── top.png │ ├── tophat.png │ ├── tractor.png │ ├── traffic_light.png │ ├── train.png │ ├── train2.png │ ├── tram.png │ ├── triangular_flag_on_post.png │ ├── triangular_ruler.png │ ├── trident.png │ ├── triumph.png │ ├── trolleybus.png │ ├── trollface.png │ ├── trophy.png │ ├── tropical_drink.png │ ├── tropical_fish.png │ ├── truck.png │ ├── trumpet.png │ ├── tshirt.png │ ├── tulip.png │ ├── turtle.png │ ├── tv.png │ ├── twisted_rightwards_arrows.png │ ├── two.png │ ├── two_hearts.png │ ├── two_men_holding_hands.png │ ├── two_women_holding_hands.png │ ├── u5272.png │ ├── u5408.png │ ├── u55b6.png │ ├── u6307.png │ ├── u6708.png │ ├── u6709.png │ ├── u6e80.png │ ├── u7121.png │ ├── u7533.png │ ├── u7981.png │ ├── u7a7a.png │ ├── uk.png │ ├── umbrella.png │ ├── unamused.png │ ├── underage.png │ ├── unlock.png │ ├── up.png │ ├── us.png │ ├── v.png │ ├── vertical_traffic_light.png │ ├── vhs.png │ ├── vibration_mode.png │ ├── video_camera.png │ ├── video_game.png │ ├── violin.png │ ├── virgo.png │ ├── volcano.png │ ├── vs.png │ ├── walking.png │ ├── waning_crescent_moon.png │ ├── waning_gibbous_moon.png │ ├── warning.png │ ├── watch.png │ ├── water_buffalo.png │ ├── watermelon.png │ ├── wave.png │ ├── wavy_dash.png │ ├── waxing_crescent_moon.png │ ├── waxing_gibbous_moon.png │ ├── wc.png │ ├── weary.png │ ├── wedding.png │ ├── whale.png │ ├── whale2.png │ ├── wheelchair.png │ ├── white_check_mark.png │ ├── white_circle.png │ ├── white_flower.png │ ├── white_large_square.png │ ├── white_medium_small_square.png │ ├── white_medium_square.png │ ├── white_small_square.png │ ├── white_square_button.png │ ├── wind_chime.png │ ├── wine_glass.png │ ├── wink.png │ ├── wolf.png │ ├── woman.png │ ├── womans_clothes.png │ ├── womans_hat.png │ ├── womens.png │ ├── worried.png │ ├── wrench.png │ ├── x.png │ ├── yellow_heart.png │ ├── yen.png │ ├── yum.png │ ├── zap.png │ ├── zero.png │ └── zzz.png │ ├── logo.png │ └── logo@2x.png ├── HnD.sln ├── LICENSE.txt ├── LLBLGenPro Projects ├── HnD.llblgenproj └── HnD.llblgenproj.layout ├── MarkdownParser ├── MarkdownDeep │ ├── Abbreviation.cs │ ├── Block.cs │ ├── BlockProcessor.cs │ ├── FootnoteReference.cs │ ├── HtmlTag.cs │ ├── LinkDefinition.cs │ ├── LinkInfo.cs │ ├── MardownDeep.cs │ ├── MarkdownDeep.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SDTokenPairFinder.cs │ ├── SpanFormatter.cs │ ├── StringScanner.cs │ ├── TableSpec.cs │ ├── Token.cs │ └── Utils.cs ├── MarkdownDeepTests │ ├── AutoHeaderIDTests.cs │ ├── AutoLinkTests.cs │ ├── BlockLevelTests.cs │ ├── BlockProcessorTests.cs │ ├── CodeSpanTests.cs │ ├── DocNetMode.cs │ ├── EmphasisTests.cs │ ├── EscapeCharacterTests.cs │ ├── ExtraMode.cs │ ├── GithubMode.cs │ ├── HnDMode.cs │ ├── HtmlTagTests.cs │ ├── LinkAndImgTests.cs │ ├── LinkDefinitionTests.cs │ ├── MarkdownDeepTests.csproj │ ├── MoreTestFiles.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SafeModeTests.cs │ ├── SpanLevelTests.cs │ ├── SpecialCharacterTests.cs │ ├── StringScannerTests.cs │ ├── TableSpecTests.cs │ ├── Utils.cs │ ├── XssAttackTests.cs │ ├── app.config │ └── testfiles │ │ ├── blocktests │ │ ├── AtxHeadings.html │ │ ├── AtxHeadings.txt │ │ ├── CodeBlocks.html │ │ ├── CodeBlocks.txt │ │ ├── ComplexListItems.html │ │ ├── ComplexListItems.txt │ │ ├── HardWrappedListItems.html │ │ ├── HardWrappedListItems.txt │ │ ├── HardWrappedParagraph.html │ │ ├── HardWrappedParagraph.txt │ │ ├── HardWrappedParagraphInListItem.html │ │ ├── HardWrappedParagraphInListItem.txt │ │ ├── HardWrappedParagraphWithListLikeLine.html │ │ ├── HardWrappedParagraphWithListLikeLine.txt │ │ ├── HtmlAttributeWithoutValue.html │ │ ├── HtmlAttributeWithoutValue.txt │ │ ├── HtmlBlock.html │ │ ├── HtmlBlock.txt │ │ ├── HtmlComments.html │ │ ├── HtmlComments.txt │ │ ├── InsTypes.html │ │ ├── InsTypes.txt │ │ ├── MultipleParagraphs.html │ │ ├── MultipleParagraphs.txt │ │ ├── NestedListItems.html │ │ ├── NestedListItems.txt │ │ ├── ParagraphBreaks.html │ │ ├── ParagraphBreaks.txt │ │ ├── PartiallyIndentedLists.html │ │ ├── PartiallyIndentedLists.txt │ │ ├── QuoteBlocks.html │ │ ├── QuoteBlocks.txt │ │ ├── QuoteBlocksNested.html │ │ ├── QuoteBlocksNested.txt │ │ ├── SetExtHeadings.html │ │ ├── SetExtHeadings.txt │ │ ├── SimpleOrderedList.html │ │ ├── SimpleOrderedList.txt │ │ ├── SimpleParagraph.html │ │ ├── SimpleParagraph.txt │ │ ├── SimpleUnorderedList.html │ │ └── SimpleUnorderedList.txt │ │ ├── docnetmode │ │ ├── Alert(DocNetMode).html │ │ ├── Alert(DocNetMode).txt │ │ ├── FontAwesome(DocNetMode).html │ │ ├── FontAwesome(DocNetMode).txt │ │ ├── Tabs(DocNetMode).html │ │ └── Tabs(DocNetMode).txt │ │ ├── extramode │ │ ├── Abbreviations(ExtraMode).html │ │ ├── Abbreviations(ExtraMode).txt │ │ ├── BackslashEscapes(ExtraMode).html │ │ ├── BackslashEscapes(ExtraMode).txt │ │ ├── DefinitionLists(ExtraMode).html │ │ ├── DefinitionLists(ExtraMode).txt │ │ ├── Emphasis(ExtraMode).html │ │ ├── Emphasis(ExtraMode).txt │ │ ├── FencedCodeBlocks(ExtraMode).html │ │ ├── FencedCodeBlocks(ExtraMode).txt │ │ ├── FencedCodeBlocksAlt(ExtraMode).html │ │ ├── FencedCodeBlocksAlt(ExtraMode).txt │ │ ├── Footnotes(ExtraMode).html │ │ ├── Footnotes(ExtraMode).txt │ │ ├── HeaderIDs(ExtraMode)(AutoHeadingIDs).html │ │ ├── HeaderIDs(ExtraMode)(AutoHeadingIDs).txt │ │ ├── HeaderIDs(ExtraMode).html │ │ ├── HeaderIDs(ExtraMode).txt │ │ ├── Issue12(ExtraMode).html │ │ ├── Issue12(ExtraMode).txt │ │ ├── Issue26(ExtraMode).html │ │ ├── Issue26(ExtraMode).txt │ │ ├── Issue30(ExtraMode).html │ │ ├── Issue30(ExtraMode).txt │ │ ├── MarkdownInHtml(ExtraMode).html │ │ ├── MarkdownInHtml(ExtraMode).txt │ │ ├── MarkdownInHtml-DeepNested(ExtraMode)(MarkdownInHtml).html │ │ ├── MarkdownInHtml-DeepNested(ExtraMode)(MarkdownInHtml).txt │ │ ├── MarkdownInHtml-DeepNested(ExtraMode).html │ │ ├── MarkdownInHtml-DeepNested(ExtraMode).txt │ │ ├── MarkdownInHtml-Nested(ExtraMode).html │ │ ├── MarkdownInHtml-Nested(ExtraMode).txt │ │ ├── TableAlignment(ExtraMode).html │ │ ├── TableAlignment(ExtraMode).txt │ │ ├── TableFormatting(ExtraMode).html │ │ ├── TableFormatting(ExtraMode).txt │ │ ├── Tables(ExtraMode).html │ │ └── Tables(ExtraMode).txt │ │ ├── githubmode │ │ ├── FencedCodeBlocksAlt(GitHubMode).html │ │ └── FencedCodeBlocksAlt(GitHubMode).txt │ │ ├── hndmode │ │ ├── Emoji(HnDMode).html │ │ ├── Emoji(HnDMode).txt │ │ ├── Offtopic(HnDMode).html │ │ ├── Offtopic(HnDMode).txt │ │ ├── Quote(HnDMode).html │ │ ├── Quote(HnDMode).txt │ │ ├── SmileyMappings(HnDMode).html │ │ ├── SmileyMappings(HnDMode).txt │ │ ├── StrikeThrough(HnDMode).html │ │ └── StrikeThrough(HnDMode).txt │ │ ├── mdtest01 │ │ ├── code-inside-list.html │ │ ├── code-inside-list.text │ │ ├── line-endings-cr.html │ │ ├── line-endings-cr.text │ │ ├── line-endings-crlf.html │ │ ├── line-endings-crlf.text │ │ ├── line-endings-lf.html │ │ ├── line-endings-lf.text │ │ ├── markdown-readme.html │ │ └── markdown-readme.text │ │ ├── mdtest11 │ │ ├── Amps_and_angle_encoding.html │ │ ├── Amps_and_angle_encoding.text │ │ ├── Auto_links.html │ │ ├── Auto_links.text │ │ ├── Backslash_escapes.html │ │ ├── Backslash_escapes.text │ │ ├── Blockquotes_with_code_blocks.html │ │ ├── Blockquotes_with_code_blocks.text │ │ ├── Code_Blocks.html │ │ ├── Code_Blocks.text │ │ ├── Code_Spans.html │ │ ├── Code_Spans.text │ │ ├── Hard_wrapped_paragraphs_with_list_like_lines.html │ │ ├── Hard_wrapped_paragraphs_with_list_like_lines.text │ │ ├── Horizontal_rules.html │ │ ├── Horizontal_rules.text │ │ ├── Images(Titled).html │ │ ├── Images(Titled).text │ │ ├── Images.html │ │ ├── Images.text │ │ ├── Inline_HTML_Advanced.html │ │ ├── Inline_HTML_Advanced.text │ │ ├── Inline_HTML_Simple.html │ │ ├── Inline_HTML_Simple.text │ │ ├── Inline_HTML_comments.html │ │ ├── Inline_HTML_comments.text │ │ ├── Links_inline_style.html │ │ ├── Links_inline_style.text │ │ ├── Links_reference_style.html │ │ ├── Links_reference_style.text │ │ ├── Links_shortcut_references.html │ │ ├── Links_shortcut_references.text │ │ ├── Literal_quotes_in_titles.html │ │ ├── Literal_quotes_in_titles.text │ │ ├── Markdown_Documentation_Basics.html │ │ ├── Markdown_Documentation_Basics.text │ │ ├── Markdown_Documentation_Syntax.html │ │ ├── Markdown_Documentation_Syntax.text │ │ ├── Nested_blockquotes.html │ │ ├── Nested_blockquotes.text │ │ ├── Ordered_and_unordered_lists.html │ │ ├── Ordered_and_unordered_lists.text │ │ ├── Strong_and_em_together.html │ │ ├── Strong_and_em_together.text │ │ ├── Tabs.html │ │ ├── Tabs.text │ │ ├── Tidyness.html │ │ └── Tidyness.text │ │ ├── pandoc │ │ ├── failure-to-escape-less-than.html │ │ ├── failure-to-escape-less-than.text │ │ ├── indented-code-in-list-item.html │ │ ├── indented-code-in-list-item.text │ │ ├── nested-divs.html │ │ ├── nested-divs.text │ │ ├── nested-emphasis.html │ │ ├── nested-emphasis.text │ │ ├── unordered-list-and-horizontal-rules.html │ │ ├── unordered-list-and-horizontal-rules.text │ │ ├── unordered-list-followed-by-ordered-list.html │ │ ├── unordered-list-followed-by-ordered-list.text │ │ ├── unpredictable-sublists.html │ │ └── unpredictable-sublists.text │ │ ├── phpmarkdown │ │ ├── Backslash escapes.html │ │ ├── Backslash escapes.text │ │ ├── Code Spans.html │ │ ├── Code Spans.text │ │ ├── Code block in a list item.html │ │ ├── Code block in a list item.text │ │ ├── Email auto links.html │ │ ├── Email auto links.text │ │ ├── Emphasis.html │ │ ├── Emphasis.text │ │ ├── Headers.html │ │ ├── Headers.text │ │ ├── Horizontal Rules.html │ │ ├── Horizontal Rules.text │ │ ├── Inline HTML (Simple).html │ │ ├── Inline HTML (Simple).text │ │ ├── Inline HTML (Span).html │ │ ├── Inline HTML (Span).text │ │ ├── Inline HTML comments.html │ │ ├── Inline HTML comments.text │ │ ├── Ins & del.html │ │ ├── Ins & del.text │ │ ├── Links, inline style.html │ │ ├── Links, inline style.text │ │ ├── MD5 Hashes.html │ │ ├── MD5 Hashes.text │ │ ├── Nesting.html │ │ ├── Nesting.text │ │ ├── PHP-Specific Bugs.html │ │ ├── PHP-Specific Bugs.text │ │ ├── Parens in URL.html │ │ ├── Parens in URL.text │ │ ├── Tight blocks.html │ │ └── Tight blocks.text │ │ ├── safemode │ │ ├── Basic(SafeMode).html │ │ └── Basic(SafeMode).txt │ │ ├── spantests │ │ ├── BackslashEscapes.html │ │ ├── BackslashEscapes.txt │ │ ├── Emphasis.html │ │ ├── Emphasis.txt │ │ ├── EscapesInUrls.html │ │ ├── EscapesInUrls.txt │ │ ├── ExplicitReferenceLinkWithTitle.html │ │ ├── ExplicitReferenceLinkWithTitle.txt │ │ ├── ExplicitReferenceLinkWithoutTitle.html │ │ ├── ExplicitReferenceLinkWithoutTitle.txt │ │ ├── FormattingInLinkText.html │ │ ├── FormattingInLinkText.txt │ │ ├── HtmlEncodeLinks.html │ │ ├── HtmlEncodeLinks.txt │ │ ├── ImplicitReferenceLinkWithTitle.html │ │ ├── ImplicitReferenceLinkWithTitle.txt │ │ ├── ImplicitReferenceLinkWithoutTitle.html │ │ ├── ImplicitReferenceLinkWithoutTitle.txt │ │ ├── InlineLinkWithTitle.html │ │ ├── InlineLinkWithTitle.txt │ │ ├── LinkTitlesWithEmbeddedQuotes.html │ │ ├── LinkTitlesWithEmbeddedQuotes.txt │ │ ├── LinkedImage.html │ │ ├── LinkedImage.txt │ │ ├── ReferenceLinkWithIDOnNextLine.html │ │ └── ReferenceLinkWithIDOnNextLine.txt │ │ └── xsstests │ │ ├── non_attacks.txt │ │ └── xss_attacks.txt ├── MarkdownParser.sln └── Readme.md ├── ParserAssemblies └── SD.HnD.UBBParser.dll ├── README.md ├── SQLScripts ├── FullInstall_HnD.sql ├── LICENSE.txt ├── Migration_2.0_to_2.1.sql ├── Migration_2.1_to_3.0_script1.sql └── Migration_3.0_to_3.0.1.sql ├── UBBParser ├── ParserTester │ ├── ExceptionViewer.cs │ ├── ExceptionViewer.resx │ ├── LICENSE.txt │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Tester.csproj ├── UBBParser │ ├── AssemblyInfo.cs │ ├── Converter.cs │ ├── EnumsConstants.cs │ ├── Exceptions.cs │ ├── Interfaces.cs │ ├── Interpreter.cs │ ├── LICENSE.txt │ ├── LexicalAnalyzer.cs │ ├── NonTerminal.cs │ ├── Parser.cs │ ├── Tokenizer.cs │ ├── UBBParser.csproj │ ├── UBBSyntax.txt │ ├── UBBToken.cs │ └── UBBTokenDefinition.cs ├── UBBtoXMLConverter.sln └── readme.md ├── Utility ├── HnDGeneralUtils.cs ├── LICENSE.txt ├── SD.HnD.Utility.csproj └── StringBuilderCache.cs ├── V1ToV3Converter ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── TextParser.cs ├── V1ToV3Converter.csproj ├── V1ToV3Converter.sln ├── app.config ├── packages.config ├── readme.md └── ubb_message.xsl ├── WebEssentials2015-Settings.json ├── hnd_in_action_shot.png └── publish.cmd /Docs/Site/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/Docs/Site/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Docs/Site/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/Docs/Site/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Docs/Site/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/Docs/Site/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Docs/Site/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/Docs/Site/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Docs/Site/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/Docs/Site/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /Docs/Site/js/search-results-template.mustache: -------------------------------------------------------------------------------- 1 |

{{title}}

2 |

In: {{breadcrumbs}}

3 | -------------------------------------------------------------------------------- /GuiCore/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "secrets1": { 4 | "type": "secrets" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /GuiCore/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "secrets1": { 4 | "type": "secrets.user" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /GuiCore/Views/Shared/MarkdownEditor_CSS.cshtml: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /GuiCore/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /GuiCore/wwwroot/banned.html: -------------------------------------------------------------------------------- 1 | You are banned as your IP address matches an IP ban -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/+1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/+1.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/-1.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/100.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/1234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/1234.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/8ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/8ball.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/a.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ab.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/abc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/abc.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/abcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/abcd.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/accept.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/aerial_tramway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/aerial_tramway.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/airplane.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/alarm_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/alarm_clock.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/alien.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ambulance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ambulance.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/anchor.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/angel.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/anger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/anger.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/angry.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/anguished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/anguished.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ant.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/apple.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/aquarius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/aquarius.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/aries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/aries.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/arrow_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/arrow_backward.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/arrow_down.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/arrow_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/arrow_forward.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/arrow_left.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/arrow_right.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/arrow_up.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/arrow_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/arrow_up_down.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/arrow_up_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/arrow_up_small.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/art.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/astonished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/astonished.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/atm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/atm.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/b.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/baby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/baby.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/baby_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/baby_bottle.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/baby_chick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/baby_chick.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/baby_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/baby_symbol.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/back.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/baggage_claim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/baggage_claim.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/balloon.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bamboo.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/banana.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bangbang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bangbang.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bank.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bar_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bar_chart.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/barber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/barber.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/baseball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/baseball.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/basketball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/basketball.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bath.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bathtub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bathtub.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/battery.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bear.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bee.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/beer.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/beers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/beers.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/beetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/beetle.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/beginner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/beginner.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bell.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bento.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bicyclist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bicyclist.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bike.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bikini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bikini.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bird.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/birthday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/birthday.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/black_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/black_circle.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/black_joker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/black_joker.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/black_nib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/black_nib.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/black_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/black_square.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/blossom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/blossom.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/blowfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/blowfish.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/blue_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/blue_book.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/blue_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/blue_car.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/blue_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/blue_heart.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/blush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/blush.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/boar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/boar.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/boat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bomb.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/book.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bookmark.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bookmark_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bookmark_tabs.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/books.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/boom.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/boot.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bouquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bouquet.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bow.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bowling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bowling.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bowtie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bowtie.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/boy.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bread.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/briefcase.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/broken_heart.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bug.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bulb.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/bus.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/busstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/busstop.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cactus.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cake.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/calendar.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/calling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/calling.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/camel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/camel.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/camera.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cancer.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/candy.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/capital_abcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/capital_abcd.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/capricorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/capricorn.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/car.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/card_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/card_index.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/carousel_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/carousel_horse.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cat2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cd.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/chart.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/checkered_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/checkered_flag.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cherries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cherries.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cherry_blossom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cherry_blossom.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/chestnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/chestnut.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/chicken.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/chocolate_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/chocolate_bar.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/church.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/church.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cinema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cinema.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/circus_tent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/circus_tent.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/city_sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/city_sunset.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cl.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clap.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clapper.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clipboard.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock1.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock10.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock1030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock1030.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock11.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock1130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock1130.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock12.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock1230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock1230.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock130.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock230.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock3.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock330.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock330.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock4.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock430.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock5.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock530.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock6.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock630.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock630.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock7.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock730.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock8.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock830.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock830.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock9.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clock930.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clock930.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/closed_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/closed_book.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cloud.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/clubs.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cn.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cocktail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cocktail.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/coffee.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cold_sweat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cold_sweat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/collision.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/computer.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/confounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/confounded.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/confused.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cookie.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cool.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cop.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/copyright.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/corn.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/couple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/couple.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/couplekiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/couplekiss.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cow.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cow2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/credit_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/credit_card.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/crocodile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/crocodile.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/crown.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cry.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cupid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cupid.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/curly_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/curly_loop.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/curry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/curry.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/custard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/custard.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/customs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/customs.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/cyclone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/cyclone.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dancer.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dancers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dancers.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dango.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dart.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dash.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/date.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/de.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/diamonds.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dizzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dizzy.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dizzy_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dizzy_face.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dog.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dog2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dog2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dollar.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dolls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dolls.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dolphin.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/donut.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/door.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/doughnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/doughnut.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dragon.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dragon_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dragon_face.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dress.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/droplet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/droplet.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/dvd.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/e-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/e-mail.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ear.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ear_of_rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ear_of_rice.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/earth_asia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/earth_asia.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/egg.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/eggplant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/eggplant.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/eight.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/elephant.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/email.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/end.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/envelope.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/es.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/euro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/euro.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/exclamation.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/eyeglasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/eyeglasses.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/eyes.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/facepunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/facepunch.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/factory.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fallen_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fallen_leaf.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/family.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/family.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fax.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fearful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fearful.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/feelsgood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/feelsgood.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/feet.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/file_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/file_folder.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/finnadie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/finnadie.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fire.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fire_engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fire_engine.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fireworks.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fish.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fish_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fish_cake.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fist.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/five.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/flags.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/flashlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/flashlight.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/floppy_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/floppy_disk.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/flushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/flushed.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/foggy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/foggy.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/football.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/football.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fountain.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/four.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fr.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/free.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fries.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/frog.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/frowning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/frowning.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fu.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/fuelpump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/fuelpump.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/full_moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/full_moon.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/game_die.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/game_die.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/gb.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/gem.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/gemini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/gemini.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ghost.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/gift.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/gift_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/gift_heart.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/girl.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/goat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/goat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/goberserk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/goberserk.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/godmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/godmode.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/golf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/golf.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/grapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/grapes.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/green_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/green_apple.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/green_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/green_book.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/green_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/green_heart.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/grimacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/grimacing.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/grin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/grin.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/grinning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/grinning.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/guardsman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/guardsman.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/guitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/guitar.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/gun.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/haircut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/haircut.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hamburger.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hammer.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hamster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hamster.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hand.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/handbag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/handbag.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hankey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hankey.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hash.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/headphones.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/heart.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/heart_eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/heart_eyes.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/heartbeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/heartbeat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/heartpulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/heartpulse.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hearts.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/helicopter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/helicopter.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/herb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/herb.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hibiscus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hibiscus.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/high_heel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/high_heel.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hocho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hocho.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/honey_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/honey_pot.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/honeybee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/honeybee.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/horse.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hospital.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hotel.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hotsprings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hotsprings.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hourglass.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/house.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hurtrealbad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hurtrealbad.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/hushed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/hushed.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ice_cream.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/icecream.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/id.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/imp.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/inbox_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/inbox_tray.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/innocent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/innocent.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/interrobang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/interrobang.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/iphone.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/it.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/japan.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/jeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/jeans.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/joy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/joy.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/joy_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/joy_cat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/jp.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/key.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/keycap_ten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/keycap_ten.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/kimono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/kimono.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/kiss.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/kissing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/kissing.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/kissing_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/kissing_cat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/koala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/koala.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/koko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/koko.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/kr.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/laughing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/laughing.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/leaves.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ledger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ledger.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/lemon.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/leo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/leo.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/leopard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/leopard.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/libra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/libra.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/light_rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/light_rail.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/link.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/lips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/lips.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/lipstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/lipstick.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/lock.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/lollipop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/lollipop.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/loop.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/loudspeaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/loudspeaker.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/love_hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/love_hotel.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/love_letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/love_letter.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/m.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mag.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mag_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mag_right.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mahjong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mahjong.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mailbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mailbox.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/man.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mans_shoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mans_shoe.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/maple_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/maple_leaf.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mask.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/massage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/massage.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mega.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/melon.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/memo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/memo.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mens.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/metal.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/metro.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/microphone.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/microscope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/microscope.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/milky_way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/milky_way.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/minibus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/minibus.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/minidisc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/minidisc.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/moneybag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/moneybag.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/monkey.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/monkey_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/monkey_face.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/monorail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/monorail.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mount_fuji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mount_fuji.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mouse.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mouse2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mouse2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/moyai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/moyai.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/muscle.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mushroom.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/mute.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/nail_care.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/nail_care.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/name_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/name_badge.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/neckbeard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/neckbeard.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/necktie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/necktie.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/new.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/new_moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/new_moon.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/newspaper.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ng.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/nine.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/no_bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/no_bell.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/no_bicycles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/no_bicycles.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/no_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/no_entry.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/no_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/no_good.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/no_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/no_mouth.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/no_smoking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/no_smoking.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/nose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/nose.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/notebook.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/notes.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/o.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/o2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/o2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ocean.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/octocat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/octopus.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/oden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/oden.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/office.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ok.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ok_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ok_hand.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ok_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ok_woman.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/older_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/older_man.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/older_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/older_woman.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/on.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/one.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/open_hands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/open_hands.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/open_mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/open_mouth.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ophiuchus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ophiuchus.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/orange_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/orange_book.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/outbox_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/outbox_tray.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ox.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/package.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pager.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/palm_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/palm_tree.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/panda_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/panda_face.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/paperclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/paperclip.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/parking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/parking.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/paw_prints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/paw_prints.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/peach.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pear.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pencil.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pencil2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pencil2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/penguin.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pensive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pensive.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/persevere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/persevere.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/phone.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pig.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pig2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pig_nose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pig_nose.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pill.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pineapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pineapple.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pisces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pisces.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pizza.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/plus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/plus1.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/point_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/point_down.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/point_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/point_left.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/point_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/point_right.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/point_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/point_up.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/point_up_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/point_up_2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/police_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/police_car.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/poodle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/poodle.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/poop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/poop.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/post_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/post_office.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/postal_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/postal_horn.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/postbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/postbox.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pouch.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/poultry_leg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/poultry_leg.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pound.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pouting_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pouting_cat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pray.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/princess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/princess.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/punch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/punch.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/purse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/purse.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/pushpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/pushpin.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/question.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rabbit.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rabbit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rabbit2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/racehorse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/racehorse.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/radio.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rage.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rage1.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rage2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rage3.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rage4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rage4.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/railway_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/railway_car.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rainbow.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/raised_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/raised_hand.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ram.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ramen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ramen.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/recycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/recycle.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/red_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/red_car.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/red_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/red_circle.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/registered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/registered.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/relaxed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/relaxed.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/relieved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/relieved.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/repeat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/repeat_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/repeat_one.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/restroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/restroom.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rewind.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ribbon.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rice.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rice_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rice_ball.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rice_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rice_scene.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ring.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rocket.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rooster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rooster.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rose.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/rowboat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/rowboat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ru.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/runner.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/running.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sa.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sagittarius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sagittarius.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sailboat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sailboat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sake.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sandal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sandal.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/santa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/santa.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/satellite.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/satisfied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/satisfied.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/saxophone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/saxophone.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/school.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/school.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/scissors.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/scorpius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/scorpius.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/scream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/scream.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/scream_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/scream_cat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/scroll.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/seat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/seat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/secret.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/see_no_evil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/see_no_evil.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/seedling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/seedling.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/seven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/seven.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/shaved_ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/shaved_ice.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sheep.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/shell.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ship.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/shipit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/shipit.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/shirt.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/shit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/shit.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/shoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/shoe.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/shower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/shower.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/six.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ski.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ski.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/skull.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sleeping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sleeping.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sleepy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sleepy.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/smile.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/smile_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/smile_cat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/smiley.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/smiley_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/smiley_cat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/smiling_imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/smiling_imp.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/smirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/smirk.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/smirk_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/smirk_cat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/smoking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/smoking.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/snail.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/snake.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/snowboarder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/snowboarder.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/snowflake.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/snowman.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sob.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/soccer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/soccer.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/soon.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sos.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sound.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/spades.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/spaghetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/spaghetti.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sparkle.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sparkler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sparkler.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sparkles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sparkles.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/speaker.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/speedboat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/speedboat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/squirrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/squirrel.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/star.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/star2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/stars.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/station.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/stew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/stew.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/strawberry.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sunflower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sunflower.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sunglasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sunglasses.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sunny.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sunrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sunrise.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/surfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/surfer.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sushi.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/suspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/suspect.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sweat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sweat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sweat_drops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sweat_drops.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/sweat_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/sweat_smile.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/swimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/swimmer.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/symbols.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/syringe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/syringe.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tada.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tangerine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tangerine.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/taurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/taurus.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/taxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/taxi.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tea.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/telephone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/telephone.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/telescope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/telescope.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tennis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tennis.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tent.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/three.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/thumbsdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/thumbsdown.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/thumbsup.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/ticket.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tiger.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tiger2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tiger2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tired_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tired_face.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tm.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/toilet.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tokyo_tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tokyo_tower.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tomato.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tongue.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/top.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tophat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tophat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tractor.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/train.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/train2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/train2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tram.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/trident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/trident.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/triumph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/triumph.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/trolleybus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/trolleybus.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/trollface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/trollface.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/trophy.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/truck.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/trumpet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/trumpet.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tshirt.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tulip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tulip.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/turtle.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/tv.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/two.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/two_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/two_hearts.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u5272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u5272.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u5408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u5408.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u55b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u55b6.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u6307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u6307.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u6708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u6708.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u6709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u6709.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u6e80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u6e80.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u7121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u7121.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u7533.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u7533.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u7981.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u7981.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/u7a7a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/u7a7a.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/uk.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/umbrella.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/unamused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/unamused.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/underage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/underage.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/unlock.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/up.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/us.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/v.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/vhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/vhs.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/video_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/video_game.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/violin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/violin.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/virgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/virgo.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/volcano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/volcano.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/vs.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/walking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/walking.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/warning.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/watch.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/watermelon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/watermelon.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/wave.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/wavy_dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/wavy_dash.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/wc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/wc.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/weary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/weary.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/wedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/wedding.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/whale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/whale.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/whale2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/whale2.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/wheelchair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/wheelchair.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/wind_chime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/wind_chime.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/wine_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/wine_glass.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/wink.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/wolf.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/woman.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/womans_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/womans_hat.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/womens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/womens.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/worried.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/worried.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/wrench.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/x.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/yen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/yen.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/yum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/yum.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/zap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/zap.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/zero.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/emojis/zzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/emojis/zzz.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/logo.png -------------------------------------------------------------------------------- /GuiCore/wwwroot/pics/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolutionsDesign/HnD/642aaf144ffb530f093630016e92c814dc7b7128/GuiCore/wwwroot/pics/logo@2x.png -------------------------------------------------------------------------------- /MarkdownParser/MarkdownDeepTests/testfiles/blocktests/HardWrappedParagraph.html: -------------------------------------------------------------------------------- 1 | 

p1 2 | p2 3 | p3 4 |

5 | -------------------------------------------------------------------------------- /MarkdownParser/MarkdownDeepTests/testfiles/blocktests/HardWrappedParagraph.txt: -------------------------------------------------------------------------------- 1 | p1 2 | p2 3 | p3 4 | -------------------------------------------------------------------------------- /MarkdownParser/MarkdownDeepTests/testfiles/blocktests/HtmlAttributeWithoutValue.html: -------------------------------------------------------------------------------- 1 |