gitextract_xvb6op_9/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── cloudscribe-develop.yml │ ├── cloudscribe-master.yml │ └── nuget-push-to-production.yml ├── .gitignore ├── .travis.yml ├── .vscode/ │ ├── launch.json │ └── tasks.json ├── CONTRIBUTING.md ├── LICENSE ├── NuGet.Config ├── README.md ├── appveyor-cake-backup.yml ├── appveyor.yml ├── build.cake ├── build.ps1 ├── build.sh ├── cake/ │ └── paths.cake ├── cloudscribe.SimpleContent.code-workspace ├── cloudscribe.SimpleContent.sln ├── package.json ├── samples/ │ └── README.md ├── src/ │ ├── cloudscribe.ContentUtils/ │ │ ├── ExcerptHelper.cs │ │ ├── ExcerptResult.cs │ │ ├── MarkdownHelper.cs │ │ ├── README.md │ │ ├── SlugHelper.cs │ │ ├── Truncation.cs │ │ └── cloudscribe.ContentUtils.csproj │ ├── cloudscribe.Core.SimpleContent/ │ │ ├── AuthorNameResolver.cs │ │ ├── ClaimsPrincipalExtensions.cs │ │ ├── ContentSettingsUIConfig.cs │ │ ├── Controllers/ │ │ │ ├── ContentCloningController.cs │ │ │ ├── ContentSettingsController.cs │ │ │ ├── CultureMetaweblogController.cs │ │ │ ├── CultureRssController.cs │ │ │ ├── CultureSiteMapController.cs │ │ │ ├── FolderMetaweblogController.cs │ │ │ └── FolderRssController.cs │ │ ├── CoreProjectEmailService.cs │ │ ├── CustomClaimProvider.cs │ │ ├── EventHandlers/ │ │ │ ├── HandleRoleDeletred.cs │ │ │ └── HandleRoleUpdated.cs │ │ ├── MultiTenantBlogRoutes.cs │ │ ├── MultiTenantPageRoutes.cs │ │ ├── ProjectSecurityResolver.cs │ │ ├── README.md │ │ ├── Resources.cs │ │ ├── SiteFileSystemMediaProcessor.cs │ │ ├── SiteNavigationCacheKeyResolver.cs │ │ ├── SiteProjectSettingsResolver.cs │ │ ├── SiteRoleSelectorProperties.cs │ │ ├── SiteSimpleContentThemeHelper.cs │ │ ├── StartupExtenstions.cs │ │ ├── VersionProvider.cs │ │ ├── ViewModels/ │ │ │ ├── ContentCloningViewModel.cs │ │ │ ├── ContentSettingsViewModel.cs │ │ │ └── CoreCommentNotificationModel.cs │ │ └── cloudscribe.Core.SimpleContent.csproj │ ├── cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5/ │ │ ├── README.md │ │ ├── VersionProvider.cs │ │ ├── Views/ │ │ │ ├── Blog/ │ │ │ │ └── BlogMetaPartial.cshtml │ │ │ ├── ContentCloning/ │ │ │ │ └── Index.cshtml │ │ │ ├── ContentSettings/ │ │ │ │ ├── CdnUrlPartial.cshtml │ │ │ │ ├── CommentSystemSettings.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── MediaPathPartial.cshtml │ │ │ ├── Page/ │ │ │ │ └── Tree.cshtml │ │ │ ├── Shared/ │ │ │ │ ├── CmsSiteLogoPartial.cshtml │ │ │ │ ├── CmsSiteTitlePartial.cshtml │ │ │ │ └── CommentNotificationEmail.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── cloudscribe.Core.SimpleContent.CompiledViews.Bootstrap5.csproj │ ├── cloudscribe.MetaWeblog/ │ │ ├── Controllers/ │ │ │ └── MetaWeblogController.cs │ │ ├── IMetaWeblogRequestParser.cs │ │ ├── IMetaWeblogRequestProcessor.cs │ │ ├── IMetaWeblogRequestValidator.cs │ │ ├── IMetaWeblogResultFormatter.cs │ │ ├── IMetaWeblogSecurity.cs │ │ ├── IMetaWeblogService.cs │ │ ├── MetaWeblogRequest.cs │ │ ├── MetaWeblogRequestParser.cs │ │ ├── MetaWeblogRequestProcessor.cs │ │ ├── MetaWeblogRequestValidator.cs │ │ ├── MetaWeblogResult.cs │ │ ├── MetaWeblogResultExtensions.cs │ │ ├── MetaWeblogResultFormatter.cs │ │ ├── MetaWeblogSecurityResult.cs │ │ ├── Models/ │ │ │ ├── ApiOptions.cs │ │ │ ├── AuthorStruct.cs │ │ │ ├── BlogInfoStruct.cs │ │ │ ├── CategoryStruct.cs │ │ │ ├── FaultStruct.cs │ │ │ ├── MediaInfoStruct.cs │ │ │ ├── MediaObjectStruct.cs │ │ │ ├── MetaWeblogException.cs │ │ │ ├── PageStruct.cs │ │ │ ├── PostStruct.cs │ │ │ └── UserInfoStruct.cs │ │ ├── README.md │ │ ├── ServiceCollectionExtensions.cs │ │ ├── Utils.cs │ │ ├── XmlResult.cs │ │ └── cloudscribe.MetaWeblog.csproj │ ├── cloudscribe.SimpleContent.CompiledViews.Bootstrap5/ │ │ ├── README.md │ │ ├── VersionProvider.cs │ │ ├── Views/ │ │ │ ├── Blog/ │ │ │ │ ├── AboutPartial.cshtml │ │ │ │ ├── Archive.cshtml │ │ │ │ ├── ArchiveListPartial.cshtml │ │ │ │ ├── BlogHeaderPartial.cshtml │ │ │ │ ├── BlogMetaPartial.cshtml │ │ │ │ ├── BlogScriptsPartial.cshtml │ │ │ │ ├── BlogStylePartial.cshtml │ │ │ │ ├── CategoryListPartial.cshtml │ │ │ │ ├── CommentLinkDetail.cshtml │ │ │ │ ├── CommentLinkList.cshtml │ │ │ │ ├── CommentWrapperPartial.cshtml │ │ │ │ ├── DisqusCommentsPartial.cshtml │ │ │ │ ├── DraftInfoPartial.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── EditContentHtmlPartial.cshtml │ │ │ │ ├── EditContentMarkdownPartial.cshtml │ │ │ │ ├── EditCorrelationKeyPartial.cshtml │ │ │ │ ├── EditDraftPubDatePartial.cshtml │ │ │ │ ├── EditHistoryInfoPartial.cshtml │ │ │ │ ├── EditImageUrlPartial.cshtml │ │ │ │ ├── EditPubDate.cshtml │ │ │ │ ├── EditScriptsPartial.cshtml │ │ │ │ ├── EditSlugPartial.cshtml │ │ │ │ ├── EditStylesPartial.cshtml │ │ │ │ ├── EditTeaserDisabledPartial.cshtml │ │ │ │ ├── EditTeaserHtmlPartial.cshtml │ │ │ │ ├── EditTeaserMarkdownPartial.cshtml │ │ │ │ ├── EditWithTemplate.cshtml │ │ │ │ ├── EditWithTemplateCorrelationKeyPartial.cshtml │ │ │ │ ├── EditWithTemplateDraftPubDatePartial.cshtml │ │ │ │ ├── EditWithTemplateHistoryInfoPartial.cshtml │ │ │ │ ├── EditWithTemplateImageUrlPartial.cshtml │ │ │ │ ├── EditWithTemplatePubDate.cshtml │ │ │ │ ├── EditWithTemplateScriptsPartial.cshtml │ │ │ │ ├── EditWithTemplateSlugPartial.cshtml │ │ │ │ ├── EditWithTemplateStylesPartial.cshtml │ │ │ │ ├── EditWithTemplateTeaserHtmlPartial.cshtml │ │ │ │ ├── History.cshtml │ │ │ │ ├── HistoryInfoPartial.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── NewPost.cshtml │ │ │ │ ├── NextPreviousPartial.cshtml │ │ │ │ ├── Post.cshtml │ │ │ │ ├── PostContentBodyPartial.cshtml │ │ │ │ ├── PostDetailPartial.cshtml │ │ │ │ ├── PostListPartial.cshtml │ │ │ │ ├── PostPartial.cshtml │ │ │ │ ├── RelatedPostsPartial.cshtml │ │ │ │ ├── SideBarPartial.cshtml │ │ │ │ └── ToolsPartial.cshtml │ │ │ ├── ContentHistory/ │ │ │ │ └── Index.cshtml │ │ │ ├── Page/ │ │ │ │ ├── AddCssPartial.cshtml │ │ │ │ ├── AddJsPartial.cshtml │ │ │ │ ├── ChildMenu.cshtml │ │ │ │ ├── CommentWrapperPartial.cshtml │ │ │ │ ├── Development.cshtml │ │ │ │ ├── DisqusCommentsPartial.cshtml │ │ │ │ ├── DraftInfoPartial.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── EditCommentsEnabledPartial.cshtml │ │ │ │ ├── EditCorrelationKeyPartial.cshtml │ │ │ │ ├── EditDraftPubDatePartial.cshtml │ │ │ │ ├── EditHistoryInfoPartial.cshtml │ │ │ │ ├── EditPubDate.cshtml │ │ │ │ ├── EditScriptsPartial.cshtml │ │ │ │ ├── EditStylesPartial.cshtml │ │ │ │ ├── EditWithTemplate.cshtml │ │ │ │ ├── EditWithTemplateCommentsEnabledPartial.cshtml │ │ │ │ ├── EditWithTemplateCorrelationKeyPartial.cshtml │ │ │ │ ├── EditWithTemplateDraftPubDatePartial.cshtml │ │ │ │ ├── EditWithTemplateHistoryInfoPartial.cshtml │ │ │ │ ├── EditWithTemplatePubDate.cshtml │ │ │ │ ├── EditWithTemplateScriptsPartial.cshtml │ │ │ │ ├── EditWithTemplateStylesPartial.cshtml │ │ │ │ ├── EditorPartial.cshtml │ │ │ │ ├── EditorialDetailsPartial.cshtml │ │ │ │ ├── EditorialShowHidePartial.cshtml │ │ │ │ ├── EditorialShowHidePartialTemplates.cshtml │ │ │ │ ├── FeaturedPostsPartial.cshtml │ │ │ │ ├── History.cshtml │ │ │ │ ├── HistoryInfoPartial.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── IndexMenu.cshtml │ │ │ │ ├── MetaPartial.cshtml │ │ │ │ ├── NewPage.cshtml │ │ │ │ ├── NoPages.cshtml │ │ │ │ ├── NotFound.cshtml │ │ │ │ ├── PageBottomPartial.cshtml │ │ │ │ ├── PageContentBodyPartial.cshtml │ │ │ │ ├── PageDetailPartial.cshtml │ │ │ │ ├── PageScriptsPartial.cshtml │ │ │ │ ├── PageTopPartial.cshtml │ │ │ │ ├── RecentPostsPartial.cshtml │ │ │ │ ├── SiteMapIndex.cshtml │ │ │ │ ├── StylePartial.cshtml │ │ │ │ ├── ToolsPartial.cshtml │ │ │ │ ├── Tree.cshtml │ │ │ │ ├── TreeMainPartial.cshtml │ │ │ │ ├── TreeScriptsPartial.cshtml │ │ │ │ └── TreeStylePartial.cshtml │ │ │ ├── Shared/ │ │ │ │ ├── AdSpacePartial.cshtml │ │ │ │ ├── CommentEmail.cshtml │ │ │ │ ├── CommentFormPartial.cshtml │ │ │ │ ├── CommentPartial.cshtml │ │ │ │ ├── CommentScriptsPartial.cshtml │ │ │ │ ├── CommentStylePartial.cshtml │ │ │ │ ├── Components/ │ │ │ │ │ ├── FeaturedPosts/ │ │ │ │ │ │ └── FeaturedPosts.cshtml │ │ │ │ │ ├── RecentPosts/ │ │ │ │ │ │ └── RecentPosts.cshtml │ │ │ │ │ └── RelatedPosts/ │ │ │ │ │ └── RelatedPosts.cshtml │ │ │ │ ├── HistoryGridPartial.cshtml │ │ │ │ ├── NewContentPartial.cshtml │ │ │ │ ├── _LayoutEmailCommentNotification.cshtml │ │ │ │ └── _LayoutEmpty.cshtml │ │ │ └── _ViewImports.cshtml │ │ └── cloudscribe.SimpleContent.CompiledViews.Bootstrap5.csproj │ ├── cloudscribe.SimpleContent.ContentTemplates.Bootstrap5/ │ │ ├── Configuration/ │ │ │ ├── Columns/ │ │ │ │ ├── ColumnTemplateOptions.cs │ │ │ │ ├── ConfigColumnTemplateOptionsProvider.cs │ │ │ │ └── IColumnTemplateOptionsProvider.cs │ │ │ ├── Gallery/ │ │ │ │ ├── ConfigGalleryOptionsProvider.cs │ │ │ │ ├── GalleryOptions.cs │ │ │ │ └── IGalleryOptionsProvider.cs │ │ │ ├── Image/ │ │ │ │ ├── ConfigImageWithContentOptionsProvider.cs │ │ │ │ ├── IImageWithContentOptionsProvider.cs │ │ │ │ └── ImageWithContentOptions.cs │ │ │ └── LinkList/ │ │ │ ├── ConfigLinkListOptionsProvider.cs │ │ │ ├── ILinkListOptionsProvider.cs │ │ │ └── LinkListOptions.cs │ │ ├── ContentTemplateResources.cs │ │ ├── Controllers/ │ │ │ └── SctrController.cs │ │ ├── README.md │ │ ├── Services/ │ │ │ └── ContentTemplateProvider.cs │ │ ├── StartupExtensions.cs │ │ ├── VersionProvider.cs │ │ ├── ViewModels/ │ │ │ ├── BingMapViewModel.cs │ │ │ ├── EverythingModel.cs │ │ │ ├── ImageWithContentViewModel.cs │ │ │ ├── ListWithContentModel.cs │ │ │ ├── RoleBasedContentViewModel.cs │ │ │ ├── SectionsWithImageViewModel.cs │ │ │ └── SimpleGalleryViewModel.cs │ │ ├── Views/ │ │ │ ├── Shared/ │ │ │ │ ├── ContentTemplates/ │ │ │ │ │ ├── BingMapEdit.cshtml │ │ │ │ │ ├── BingMapRender.cshtml │ │ │ │ │ ├── EverythingEdit.cshtml │ │ │ │ │ ├── EverythingRender.cshtml │ │ │ │ │ ├── GalleryWithContentEdit.cshtml │ │ │ │ │ ├── GalleryWithContentRender.cshtml │ │ │ │ │ ├── ImageWithContentEdit.cshtml │ │ │ │ │ ├── ImageWithContentRender.cshtml │ │ │ │ │ ├── ListOfLinksEdit.cshtml │ │ │ │ │ ├── ListOfLinksRender.cshtml │ │ │ │ │ ├── RoleBasedContentEdit.cshtml │ │ │ │ │ ├── RoleBasedContentRender.cshtml │ │ │ │ │ ├── SectionsWithImageEdit.cshtml │ │ │ │ │ ├── SectionsWithImageRender.cshtml │ │ │ │ │ ├── TwoSectionsWithImageEdit.cshtml │ │ │ │ │ └── TwoSectionsWithImageRender.cshtml │ │ │ │ ├── EverythingBottomColumnsPartial.cshtml │ │ │ │ ├── EverythingBottomFloatedImagesPartial.cshtml │ │ │ │ ├── EverythingBottomSectionsLayoutSelector.cshtml │ │ │ │ ├── EverythingCardsPartial.cshtml │ │ │ │ ├── EverythingCarouselFullPartial.cshtml │ │ │ │ ├── EverythingCarouselLeftPartial.cshtml │ │ │ │ ├── EverythingCarouselRightPartial.cshtml │ │ │ │ ├── EverythingCompactPartial.cshtml │ │ │ │ ├── EverythingGalleryLayoutSelector.cshtml │ │ │ │ ├── EverythingGridPartial.cshtml │ │ │ │ ├── EverythingRenderPartial.cshtml │ │ │ │ ├── EverythingTopColumnsPartial.cshtml │ │ │ │ ├── EverythingTopFloatedImagesPartial.cshtml │ │ │ │ ├── EverythingTopSectionsLayoutSelector.cshtml │ │ │ │ ├── GalleryWithContentEditLayoutSelector.cshtml │ │ │ │ ├── GalleryWithContentRenderCardsPartial.cshtml │ │ │ │ ├── GalleryWithContentRenderCarouselFullPartial.cshtml │ │ │ │ ├── GalleryWithContentRenderCarouselLeftPartial.cshtml │ │ │ │ ├── GalleryWithContentRenderCarouselRightPartial.cshtml │ │ │ │ ├── GalleryWithContentRenderCompactPartial.cshtml │ │ │ │ ├── GalleryWithContentRenderGridPartial.cshtml │ │ │ │ ├── LinksRenderPartial.cshtml │ │ │ │ ├── RoleBasedContentRenderPartial.cshtml │ │ │ │ ├── SectionsWithImageEditLayoutSelector.cshtml │ │ │ │ ├── SectionsWithImageRenderColumnsPartial.cshtml │ │ │ │ ├── SectionsWithImageRenderFloatedImagesPartial.cshtml │ │ │ │ ├── TwoSectionsWithImageEditLayoutSelector.cshtml │ │ │ │ ├── TwoSectionsWithImageRenderColumnsLeftPartial.cshtml │ │ │ │ └── TwoSectionsWithImageRenderColumnsRightPartial.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── cloudscribe.SimpleContent.ContentTemplates.Bootstrap5.csproj │ │ ├── css/ │ │ │ ├── simple-gallery.css │ │ │ └── simple-image.css │ │ └── js/ │ │ ├── cst-basic-list.js │ │ ├── cst-link-list.js │ │ └── simple-gallery.js │ ├── cloudscribe.SimpleContent.MetaWeblog/ │ │ ├── MetaWeblogModelMapper.cs │ │ ├── MetaWeblogSecurity.cs │ │ ├── MetaWeblogService.cs │ │ ├── README.md │ │ ├── ServiceCollectionExtensions.cs │ │ ├── VersionProvider.cs │ │ └── cloudscribe.SimpleContent.MetaWeblog.csproj │ ├── cloudscribe.SimpleContent.Models/ │ │ ├── Blog/ │ │ │ ├── BlogEditOptions.cs │ │ │ ├── DefaultBlogRoutes.cs │ │ │ ├── IBlogRoutes.cs │ │ │ ├── IBlogService.cs │ │ │ ├── IBlogUrlResolver.cs │ │ │ ├── IPost.cs │ │ │ ├── IPostCommands.cs │ │ │ ├── IPostQueries.cs │ │ │ ├── ITeaserService.cs │ │ │ ├── NotImplementedBlogService.cs │ │ │ ├── PagedPostResult.cs │ │ │ ├── Post.cs │ │ │ ├── PostResult.cs │ │ │ ├── TeaserCacheOptions.cs │ │ │ ├── TeaserMode.cs │ │ │ ├── TeaserResult.cs │ │ │ └── TeaserTruncationMode.cs │ │ ├── CommandResult.cs │ │ ├── Comment/ │ │ │ ├── Comment.cs │ │ │ ├── CommentNotificationModel.cs │ │ │ └── IComment.cs │ │ ├── ContentFilterResult.cs │ │ ├── ContentLocalizationOptions.cs │ │ ├── ContentUtils.cs │ │ ├── EventHandlers/ │ │ │ ├── IHandlePageCreated.cs │ │ │ ├── IHandlePageMoved.cs │ │ │ ├── IHandlePagePreDelete.cs │ │ │ ├── IHandlePagePreUpdate.cs │ │ │ ├── IHandlePagePublished.cs │ │ │ ├── IHandlePageUnPublished.cs │ │ │ ├── IHandlePageUpdated.cs │ │ │ ├── IHandlePostCreated.cs │ │ │ ├── IHandlePostPreDelete.cs │ │ │ ├── IHandlePostPreUpdate.cs │ │ │ ├── IHandlePostPublished.cs │ │ │ ├── IHandlePostUnPublished.cs │ │ │ └── IHandlePostUpdated.cs │ │ ├── IAuthorNameResolver.cs │ │ ├── IContentItem.cs │ │ ├── IMarkdownProcessor.cs │ │ ├── IMediaProcessor.cs │ │ ├── IStorageInfo.cs │ │ ├── ImageSizeResult.cs │ │ ├── ModelExtensions.cs │ │ ├── Page/ │ │ │ ├── DefaultPageRoutes.cs │ │ │ ├── IPage.cs │ │ │ ├── IPageCommands.cs │ │ │ ├── IPageQueries.cs │ │ │ ├── IPageRoutes.cs │ │ │ ├── IPageService.cs │ │ │ ├── IPageUrlResolver.cs │ │ │ ├── NotImplementedPageService.cs │ │ │ ├── Page.cs │ │ │ ├── PageActionResult.cs │ │ │ ├── PageEditOptions.cs │ │ │ ├── PageMoveModel.cs │ │ │ └── PageResource.cs │ │ ├── Project/ │ │ │ ├── IProjectCommands.cs │ │ │ ├── IProjectEmailService.cs │ │ │ ├── IProjectQueries.cs │ │ │ ├── IProjectSecurityResolver.cs │ │ │ ├── IProjectService.cs │ │ │ ├── IProjectSettings.cs │ │ │ ├── IProjectSettingsResolver.cs │ │ │ ├── ProjectSecurityResult.cs │ │ │ └── ProjectSettings.cs │ │ ├── ProjectConstants.cs │ │ ├── README.md │ │ ├── Templating/ │ │ │ ├── ContentTemplate.cs │ │ │ ├── ContentTemplateConfig.cs │ │ │ ├── CssFile.cs │ │ │ ├── IContentTemplateProvider.cs │ │ │ ├── IContentTemplateService.cs │ │ │ ├── IModelSerializer.cs │ │ │ └── ScriptFile.cs │ │ ├── Versioning/ │ │ │ ├── ContentHistory.cs │ │ │ ├── IContentHistoryCommands.cs │ │ │ ├── IContentHistoryQueries.cs │ │ │ └── SaveMode.cs │ │ └── cloudscribe.SimpleContent.Models.csproj │ ├── cloudscribe.SimpleContent.Security.SimpleAuth/ │ │ ├── ProjectSecurityResolver.cs │ │ ├── README.md │ │ └── cloudscribe.SimpleContent.Security.SimpleAuth.csproj │ ├── cloudscribe.SimpleContent.Storage.EFCore.Common/ │ │ ├── ContentHistoryCommands.cs │ │ ├── ContentHistoryQueries.cs │ │ ├── ISimpleContentDbContext.cs │ │ ├── ISimpleContentDbContextFactory.cs │ │ ├── Models/ │ │ │ ├── PageCategory.cs │ │ │ ├── PageComment.cs │ │ │ ├── PageEntity.cs │ │ │ ├── PageResourceEntity.cs │ │ │ ├── PostCategory.cs │ │ │ ├── PostComment.cs │ │ │ └── PostEntity.cs │ │ ├── PageCommands.cs │ │ ├── PageQueries.cs │ │ ├── PostCommands.cs │ │ ├── PostQueries.cs │ │ ├── ProjectCommands.cs │ │ ├── ProjectQueries.cs │ │ ├── README.md │ │ ├── ServiceCollectionExtensions.cs │ │ ├── SimpleContentDbContextBase.cs │ │ ├── SimpleContentEFStartup.cs │ │ └── cloudscribe.SimpleContent.Storage.EFCore.Common.csproj │ ├── cloudscribe.SimpleContent.Storage.EFCore.MSSQL/ │ │ ├── BlankTriggerAddingConvention.cs │ │ ├── Migrations/ │ │ │ ├── 20161118134254_Initial.Designer.cs │ │ │ ├── 20161118134254_Initial.cs │ │ │ ├── 20170108141354_AddMenuOnlyProp.Designer.cs │ │ │ ├── 20170108141354_AddMenuOnlyProp.cs │ │ │ ├── 20170301144919_changes20170301.Designer.cs │ │ │ ├── 20170301144919_changes20170301.cs │ │ │ ├── 20170308205858_changes20170308.Designer.cs │ │ │ ├── 20170308205858_changes20170308.cs │ │ │ ├── 20170309130025_changes20170309.Designer.cs │ │ │ ├── 20170309130025_changes20170309.cs │ │ │ ├── 20170310190036_changes20170310.Designer.cs │ │ │ ├── 20170310190036_changes20170310.cs │ │ │ ├── 20170418142644_changes20170417.Designer.cs │ │ │ ├── 20170418142644_changes20170417.cs │ │ │ ├── 20170514122601_changes20170514.Designer.cs │ │ │ ├── 20170514122601_changes20170514.cs │ │ │ ├── 20170724195300_changes20170724.Designer.cs │ │ │ ├── 20170724195300_changes20170724.cs │ │ │ ├── 20170801140952_changes20170731.Designer.cs │ │ │ ├── 20170801140952_changes20170731.cs │ │ │ ├── 20170801141349_changes20170801.Designer.cs │ │ │ ├── 20170801141349_changes20170801.cs │ │ │ ├── 20171005175655_changes20171005.Designer.cs │ │ │ ├── 20171005175655_changes20171005.cs │ │ │ ├── 20171016103054_changes20171016.Designer.cs │ │ │ ├── 20171016103054_changes20171016.cs │ │ │ ├── 20171118193027_changes20171118.Designer.cs │ │ │ ├── 20171118193027_changes20171118.cs │ │ │ ├── 20180103204131_changes20180103.Designer.cs │ │ │ ├── 20180103204131_changes20180103.cs │ │ │ ├── 20180206125759_simplecontentchanges20180206.Designer.cs │ │ │ ├── 20180206125759_simplecontentchanges20180206.cs │ │ │ ├── 20180223151637_simplecontent_changes20180223.Designer.cs │ │ │ ├── 20180223151637_simplecontent_changes20180223.cs │ │ │ ├── 20180315174300_simplecontent_changes20180315.Designer.cs │ │ │ ├── 20180315174300_simplecontent_changes20180315.cs │ │ │ ├── 20180704183112_simplecontent-20180704.Designer.cs │ │ │ ├── 20180704183112_simplecontent-20180704.cs │ │ │ ├── 20180705124637_simplecontent-20180705.Designer.cs │ │ │ ├── 20180705124637_simplecontent-20180705.cs │ │ │ ├── 20180710113039_simplecontent-20180710.Designer.cs │ │ │ ├── 20180710113039_simplecontent-20180710.cs │ │ │ ├── 20180820133027_simplecontent-20180819.Designer.cs │ │ │ ├── 20180820133027_simplecontent-20180819.cs │ │ │ ├── 20180908121615_simplecontent-20180908.Designer.cs │ │ │ ├── 20180908121615_simplecontent-20180908.cs │ │ │ ├── 20190210160956_simplecontent-20190210.Designer.cs │ │ │ ├── 20190210160956_simplecontent-20190210.cs │ │ │ ├── 20190213120620_simplecontent-20190212.Designer.cs │ │ │ ├── 20190213120620_simplecontent-20190212.cs │ │ │ ├── 20190213120720_simplecontent-20190213.Designer.cs │ │ │ ├── 20190213120720_simplecontent-20190213.cs │ │ │ ├── 20190304161740_simplecontent-20190304.Designer.cs │ │ │ ├── 20190304161740_simplecontent-20190304.cs │ │ │ ├── 20190312154938_simplecontent-20190312.Designer.cs │ │ │ ├── 20190312154938_simplecontent-20190312.cs │ │ │ ├── 20200723185114_AddPostShowCommentsSwitch.Designer.cs │ │ │ ├── 20200723185114_AddPostShowCommentsSwitch.cs │ │ │ ├── 20240918131738_ShowArchivedAndBlogCategories-20240918.Designer.cs │ │ │ ├── 20240918131738_ShowArchivedAndBlogCategories-20240918.cs │ │ │ ├── 20241001103518_SetShowArchiveAboutRelatedBlogToTrue020241001.Designer.cs │ │ │ ├── 20241001103518_SetShowArchiveAboutRelatedBlogToTrue020241001.cs │ │ │ ├── 20241108094100_simplecontent-20241108.Designer.cs │ │ │ ├── 20241108094100_simplecontent-20241108.cs │ │ │ ├── 20250423093650_user-script-20250423.Designer.cs │ │ │ ├── 20250423093650_user-script-20250423.cs │ │ │ ├── 20250818152838_remove-pageresource-script.Designer.cs │ │ │ ├── 20250818152838_remove-pageresource-script.cs │ │ │ └── SimpleContentDbContextModelSnapshot.cs │ │ ├── README.md │ │ ├── ServiceCollectionExtensions.cs │ │ ├── SimpleContentDbContext.cs │ │ ├── SimpleContentDbContextDesignTimeFactory.cs │ │ ├── SimpleContentDbContextFactory.cs │ │ ├── StorageInfo.cs │ │ └── cloudscribe.SimpleContent.Storage.EFCore.MSSQL.csproj │ ├── cloudscribe.SimpleContent.Storage.EFCore.MySQL/ │ │ ├── Migrations/ │ │ │ ├── 20161111152256_Initial.Designer.cs │ │ │ ├── 20161111152256_Initial.cs │ │ │ ├── 20170108141502_AddMenuOnlyProp.Designer.cs │ │ │ ├── 20170108141502_AddMenuOnlyProp.cs │ │ │ ├── 20170301145042_changes20170301.Designer.cs │ │ │ ├── 20170301145042_changes20170301.cs │ │ │ ├── 20170308205943_changes20170308.Designer.cs │ │ │ ├── 20170308205943_changes20170308.cs │ │ │ ├── 20170309130101_changes20170309.Designer.cs │ │ │ ├── 20170309130101_changes20170309.cs │ │ │ ├── 20170310190111_changes20170310.Designer.cs │ │ │ ├── 20170310190111_changes20170310.cs │ │ │ ├── 20170418142722_changes20170417.Designer.cs │ │ │ ├── 20170418142722_changes20170417.cs │ │ │ ├── 20170514135058_changes20170514.Designer.cs │ │ │ ├── 20170514135058_changes20170514.cs │ │ │ ├── 20170724195817_changes20170724.Designer.cs │ │ │ ├── 20170724195817_changes20170724.cs │ │ │ ├── 20170801190433_changes20170731.Designer.cs │ │ │ ├── 20170801190433_changes20170731.cs │ │ │ ├── 20170801190833_changes20170801.Designer.cs │ │ │ ├── 20170801190833_changes20170801.cs │ │ │ ├── 20170801191031_changes20170801b.Designer.cs │ │ │ ├── 20170801191031_changes20170801b.cs │ │ │ ├── 20171005175519_changes20171005.Designer.cs │ │ │ ├── 20171005175519_changes20171005.cs │ │ │ ├── 20171016103020_changes20171016.Designer.cs │ │ │ ├── 20171016103020_changes20171016.cs │ │ │ ├── 20171118201035_changes20171118.Designer.cs │ │ │ ├── 20171118201035_changes20171118.cs │ │ │ ├── 20180122125337_changes20180122.Designer.cs │ │ │ ├── 20180122125337_changes20180122.cs │ │ │ ├── 20180206125859_simplecontentchanges20180206.Designer.cs │ │ │ ├── 20180206125859_simplecontentchanges20180206.cs │ │ │ ├── 20180315174230_simplecontent_changes20180315.Designer.cs │ │ │ ├── 20180315174230_simplecontent_changes20180315.cs │ │ │ ├── 20180704183709_simplecontent-20180704.Designer.cs │ │ │ ├── 20180704183709_simplecontent-20180704.cs │ │ │ ├── 20180705124549_simplecontent-20180705.Designer.cs │ │ │ ├── 20180705124549_simplecontent-20180705.cs │ │ │ ├── 20180710112927_simplecontent-20180710.Designer.cs │ │ │ ├── 20180710112927_simplecontent-20180710.cs │ │ │ ├── 20180820133148_simplecontent-20180819.Designer.cs │ │ │ ├── 20180820133148_simplecontent-20180819.cs │ │ │ ├── 20180908121712_simplecontent-20180908.Designer.cs │ │ │ ├── 20180908121712_simplecontent-20180908.cs │ │ │ ├── 20190210161111_simplecontent-20190210.Designer.cs │ │ │ ├── 20190210161111_simplecontent-20190210.cs │ │ │ ├── 20190213120841_simplecontent-20190212.Designer.cs │ │ │ ├── 20190213120841_simplecontent-20190212.cs │ │ │ ├── 20190213120911_simplecontent-20190213.Designer.cs │ │ │ ├── 20190213120911_simplecontent-20190213.cs │ │ │ ├── 20190304161922_simplecontent-20190304.Designer.cs │ │ │ ├── 20190304161922_simplecontent-20190304.cs │ │ │ ├── 20190312155536_simplecontent-20190312.Designer.cs │ │ │ ├── 20190312155536_simplecontent-20190312.cs │ │ │ ├── 20200723185158_AddPostShowCommentsSwitch.Designer.cs │ │ │ ├── 20200723185158_AddPostShowCommentsSwitch.cs │ │ │ ├── 20240918132058_ShowArchivedAndBlogCategories-20240918.Designer.cs │ │ │ ├── 20240918132058_ShowArchivedAndBlogCategories-20240918.cs │ │ │ ├── 20241001104452_SetShowArchiveAboutRelatedBlogToTrue-20241001.Designer.cs │ │ │ ├── 20241001104452_SetShowArchiveAboutRelatedBlogToTrue-20241001.cs │ │ │ ├── 20241108094512_simplecontent-20241108.Designer.cs │ │ │ ├── 20241108094512_simplecontent-20241108.cs │ │ │ ├── 20250423093954_user-script-20250423.Designer.cs │ │ │ ├── 20250423093954_user-script-20250423.cs │ │ │ ├── 20250818153349_remove-pageresource-script.Designer.cs │ │ │ ├── 20250818153349_remove-pageresource-script.cs │ │ │ └── SimpleContentDbContextModelSnapshot.cs │ │ ├── README.md │ │ ├── ServiceCollectionExtensions.cs │ │ ├── SimpleContentDbContext.cs │ │ ├── SimpleContentDbContextDesignTimeFactory.cs │ │ ├── SimpleContentDbContextFactory.cs │ │ ├── StorageInfo.cs │ │ └── cloudscribe.SimpleContent.Storage.EFCore.MySQL.csproj │ ├── cloudscribe.SimpleContent.Storage.EFCore.PostgreSql/ │ │ ├── DesignTimeFactory.cs │ │ ├── Migrations/ │ │ │ ├── 20181009120713_simplecontent-initial.Designer.cs │ │ │ ├── 20181009120713_simplecontent-initial.cs │ │ │ ├── 20190210161250_simplecontent-20190210.Designer.cs │ │ │ ├── 20190210161250_simplecontent-20190210.cs │ │ │ ├── 20190213121205_simplecontent-20190212.Designer.cs │ │ │ ├── 20190213121205_simplecontent-20190212.cs │ │ │ ├── 20190213121232_simplecontent-20190213.Designer.cs │ │ │ ├── 20190213121232_simplecontent-20190213.cs │ │ │ ├── 20190304162045_simplecontent-20190304.Designer.cs │ │ │ ├── 20190304162045_simplecontent-20190304.cs │ │ │ ├── 20190312155722_simplecontent-20190312.Designer.cs │ │ │ ├── 20190312155722_simplecontent-20190312.cs │ │ │ ├── 20200723185336_AddPostShowCommentsSwitch.Designer.cs │ │ │ ├── 20200723185336_AddPostShowCommentsSwitch.cs │ │ │ ├── 20220420182545_simplecontent-20220420.Designer.cs │ │ │ ├── 20220420182545_simplecontent-20220420.cs │ │ │ ├── 20240918132310_ShowArchiveAndBlogCategories-20240918.Designer.cs │ │ │ ├── 20240918132310_ShowArchiveAndBlogCategories-20240918.cs │ │ │ ├── 20241001104647_SetShowArchiveAboutRelatedBlogToTrue-20241001.Designer.cs │ │ │ ├── 20241001104647_SetShowArchiveAboutRelatedBlogToTrue-20241001.cs │ │ │ ├── 20241108094644_simplecontent-20241108.Designer.cs │ │ │ ├── 20241108094644_simplecontent-20241108.cs │ │ │ ├── 20250423094338_user-script-20250423.Designer.cs │ │ │ ├── 20250423094338_user-script-20250423.cs │ │ │ ├── 20250818153117_remove-pageresource-script.Designer.cs │ │ │ ├── 20250818153117_remove-pageresource-script.cs │ │ │ └── SimpleContentDbContextModelSnapshot.cs │ │ ├── README.md │ │ ├── ServiceCollectionExtensions.cs │ │ ├── SimpleContentDbContext.cs │ │ ├── SimpleContentDbContextFactory.cs │ │ ├── StorageInfo.cs │ │ └── cloudscribe.SimpleContent.Storage.EFCore.PostgreSql.csproj │ ├── cloudscribe.SimpleContent.Storage.EFCore.SQLite/ │ │ ├── DesignTimeFactory.cs │ │ ├── Migrations/ │ │ │ ├── 20171222135806_Initial.Designer.cs │ │ │ ├── 20171222135806_Initial.cs │ │ │ ├── 20180122125428_changes20180122.Designer.cs │ │ │ ├── 20180122125428_changes20180122.cs │ │ │ ├── 20180206125939_simplecontentchanges20180206.Designer.cs │ │ │ ├── 20180206125939_simplecontentchanges20180206.cs │ │ │ ├── 20180315174340_simplecontent_changes20180315.Designer.cs │ │ │ ├── 20180315174340_simplecontent_changes20180315.cs │ │ │ ├── 20180704183840_simplecontent-20180704.Designer.cs │ │ │ ├── 20180704183840_simplecontent-20180704.cs │ │ │ ├── 20180705124759_simplecontent-20180705.Designer.cs │ │ │ ├── 20180705124759_simplecontent-20180705.cs │ │ │ ├── 20180710113211_simplecontent-20180710.Designer.cs │ │ │ ├── 20180710113211_simplecontent-20180710.cs │ │ │ ├── 20180820133304_simplecontent-20180819.Designer.cs │ │ │ ├── 20180820133304_simplecontent-20180819.cs │ │ │ ├── 20180908121905_simplecontent-20180908.Designer.cs │ │ │ ├── 20180908121905_simplecontent-20180908.cs │ │ │ ├── 20190210161404_simplecontent-20190210.Designer.cs │ │ │ ├── 20190210161404_simplecontent-20190210.cs │ │ │ ├── 20190213121319_simplecontent-20190212.Designer.cs │ │ │ ├── 20190213121319_simplecontent-20190212.cs │ │ │ ├── 20190304162117_simplecontent-20190304.Designer.cs │ │ │ ├── 20190304162117_simplecontent-20190304.cs │ │ │ ├── 20190312155759_simplecontent-20190312.Designer.cs │ │ │ ├── 20190312155759_simplecontent-20190312.cs │ │ │ ├── 20200723185404_AddPostShowCommentsSwitch.Designer.cs │ │ │ ├── 20200723185404_AddPostShowCommentsSwitch.cs │ │ │ ├── 20240920125304_ShowArchiveAndBlogCategories-20240920.Designer.cs │ │ │ ├── 20240920125304_ShowArchiveAndBlogCategories-20240920.cs │ │ │ ├── 20241001104814_SetShowArchiveAboutRelatedBlogToTrue-20241001.Designer.cs │ │ │ ├── 20241001104814_SetShowArchiveAboutRelatedBlogToTrue-20241001.cs │ │ │ ├── 20241108094744_simplecontent-20241108.Designer.cs │ │ │ ├── 20241108094744_simplecontent-20241108.cs │ │ │ ├── 20250815092116_simplecontent-userscript.Designer.cs │ │ │ ├── 20250815092116_simplecontent-userscript.cs │ │ │ ├── 20250818153135_remove-pageresource-script.Designer.cs │ │ │ ├── 20250818153135_remove-pageresource-script.cs │ │ │ └── SimpleContentDbContextModelSnapshot.cs │ │ ├── README.md │ │ ├── SimpleContentDbContext.cs │ │ ├── SimpleContentDbContextFactory.cs │ │ ├── StartupExtensions.cs │ │ ├── StorageInfo.cs │ │ └── cloudscribe.SimpleContent.Storage.EFCore.SQLite.csproj │ ├── cloudscribe.SimpleContent.Storage.NoDb/ │ │ ├── ConfigProjectQueries.cs │ │ ├── ContentHistoryCommands.cs │ │ ├── ContentHistoryQueries.cs │ │ ├── KeyGenerators/ │ │ │ ├── DefaultKeyGenerator.cs │ │ │ ├── GuidKeyGenerator.cs │ │ │ └── IKeyGenerator.cs │ │ ├── PageCommands.cs │ │ ├── PageCompositeSerializer.cs │ │ ├── PageJsonSerializer.cs │ │ ├── PageMarkdownSerializer.cs │ │ ├── PageQueries.cs │ │ ├── PageStoragePathResolver.cs │ │ ├── PostCache.cs │ │ ├── PostCacheOptions.cs │ │ ├── PostCommands.cs │ │ ├── PostCompositeSerializer.cs │ │ ├── PostMarkdownSerializer.cs │ │ ├── PostQueries.cs │ │ ├── PostStoragePathResolver.cs │ │ ├── PostXmlSerializer.cs │ │ ├── ProjectCommands.cs │ │ ├── ProjectQueries.cs │ │ ├── README.md │ │ ├── ServiceCollectionExtensions.cs │ │ ├── StorageInfo.cs │ │ ├── YamlHelper.cs │ │ ├── YamlPage.cs │ │ ├── YamlPost.cs │ │ └── cloudscribe.SimpleContent.Storage.NoDb.csproj │ ├── cloudscribe.SimpleContent.Syndication/ │ │ ├── README.md │ │ ├── RssChannelProvider.cs │ │ ├── ServiceCollectionExtensions.cs │ │ ├── VersionProvider.cs │ │ └── cloudscribe.SimpleContent.Syndication.csproj │ ├── cloudscribe.SimpleContent.Web/ │ │ ├── ClaimsPrincipalExtensions.cs │ │ ├── Controllers/ │ │ │ ├── BlogController.cs │ │ │ ├── ContentHistoryController.cs │ │ │ ├── PageController.cs │ │ │ └── csscsrController.cs │ │ ├── Design/ │ │ │ ├── DefaultSimpleContentThemeHelper.cs │ │ │ ├── ISimpleContentThemeHelper.cs │ │ │ ├── IconCssClasses.cs │ │ │ ├── SimpleContentIconConfig.cs │ │ │ ├── SimpleContentThemeConfig.cs │ │ │ └── SimpleContentThemeSettings.cs │ │ ├── README.md │ │ ├── Routes.cs │ │ ├── Routes2x.cs │ │ ├── Services/ │ │ │ ├── Blog/ │ │ │ │ ├── BlogService.cs │ │ │ │ ├── BlogSiteMapNodeService.cs │ │ │ │ ├── BlogUrlResolver.cs │ │ │ │ ├── CreateOrUpdatePostHandler.cs │ │ │ │ ├── CreateOrUpdatePostRequest.cs │ │ │ │ ├── InitTemplatedPostHandler.cs │ │ │ │ ├── InitTemplatedPostRequest.cs │ │ │ │ ├── NavigationBlogNodeFinder.cs │ │ │ │ ├── PostEvents.cs │ │ │ │ ├── TeaserCache.cs │ │ │ │ ├── TeaserService.cs │ │ │ │ ├── TeaserServiceDisabled.cs │ │ │ │ ├── UpdateTemplatedPostHandler.cs │ │ │ │ └── UpdateTemplatedPostRequest.cs │ │ │ ├── ContentProcessor.cs │ │ │ ├── CultureHelper.cs │ │ │ ├── DefaultAuthorNameResolver.cs │ │ │ ├── DefaultProjectSettingsResolver.cs │ │ │ ├── DefaultTimeZoneIdResolver.cs │ │ │ ├── FileSystemMediaProcessor.cs │ │ │ ├── HttpRequestExtensions.cs │ │ │ ├── IContentProcessor.cs │ │ │ ├── JsonModelSerializer.cs │ │ │ ├── MarkdownProcessor.cs │ │ │ ├── Page/ │ │ │ │ ├── CreateOrUpdatePageHandler.cs │ │ │ │ ├── CreateOrUpdatePageRequest.cs │ │ │ │ ├── DraftPublishService.cs │ │ │ │ ├── InitTemplatedPageHandler.cs │ │ │ │ ├── InitTemplatedPageRequest.cs │ │ │ │ ├── JsSecuritySanitizer.cs │ │ │ │ ├── PageEditContext.cs │ │ │ │ ├── PageEditContextRequest.cs │ │ │ │ ├── PageEditContextRequestHandler.cs │ │ │ │ ├── PageEvents.cs │ │ │ │ ├── PageService.cs │ │ │ │ ├── PageUrlResolver.cs │ │ │ │ ├── PageViewContext.cs │ │ │ │ ├── PageViewContextRequest.cs │ │ │ │ ├── PageViewContextRequestHandler.cs │ │ │ │ ├── PagesNavigationNodePermissionResolver.cs │ │ │ │ ├── PagesNavigationTreeBuilder.cs │ │ │ │ ├── UpdateTemplatedPageHandler.cs │ │ │ │ └── UpdateTemplatedPageRequest.cs │ │ │ ├── ProjectEmailService.cs │ │ │ ├── ProjectEmailServiceFake.cs │ │ │ ├── ProjectService.cs │ │ │ ├── Resources.cs │ │ │ └── Truncation/ │ │ │ ├── FixedLengthTruncator.cs │ │ │ ├── FixedNumberOfCharactersTruncator.cs │ │ │ ├── FixedNumberOfWordsTruncator.cs │ │ │ ├── ITruncator.cs │ │ │ ├── TruncateExtensions.cs │ │ │ └── Truncator.cs │ │ ├── StartupExtensions.cs │ │ ├── TagHelpers/ │ │ │ ├── IRoleSelectorProperties.cs │ │ │ ├── NotImplementedRoleSelectorProperties.cs │ │ │ ├── RoleSelectorTagHelper.cs │ │ │ └── SchemaOrgMetaTagHelper.cs │ │ ├── Templating/ │ │ │ ├── ConfigContentTemplateProvider.cs │ │ │ ├── ContentTemplateService.cs │ │ │ ├── DefaultModelFormParser.cs │ │ │ ├── DefaultTemplateModelValidator.cs │ │ │ ├── IParseModelFromForm.cs │ │ │ └── IValidateTemplateModel.cs │ │ ├── VersionInfo.cs │ │ ├── ViewComponents/ │ │ │ ├── FeaturedPostsViewComponent.cs │ │ │ ├── RecentPostsViewComponent.cs │ │ │ └── RelatedPostsViewComponent.cs │ │ ├── ViewModels/ │ │ │ ├── AddPageResourceViewModel.cs │ │ │ ├── BlogViewModel.cs │ │ │ ├── CommentViewModel.cs │ │ │ ├── ContentHistoryViewModel.cs │ │ │ ├── NewContentViewModel.cs │ │ │ ├── PageDevelopmentViewModel.cs │ │ │ ├── PageEditViewModel.cs │ │ │ ├── PageEditWithTemplateViewModel.cs │ │ │ ├── PageTreeViewModel.cs │ │ │ ├── PageViewModel.cs │ │ │ ├── PostEditViewModel.cs │ │ │ ├── PostEditWithTemplateViewModel.cs │ │ │ ├── PostViewModel.cs │ │ │ └── RecentPostsViewModel.cs │ │ ├── cloudscribe.SimpleContent.Web.csproj │ │ ├── css/ │ │ │ ├── blog-common.css │ │ │ └── editing-side-menu.css │ │ └── js/ │ │ ├── blog-comments.js │ │ ├── edit-script.js │ │ ├── pagetree.js │ │ ├── sc-simple-gallery-init.js │ │ └── unsaved-changes-warning.js │ └── sourceDev.WebApp/ │ ├── Config/ │ │ ├── Authorization.cs │ │ ├── CloudscribeFeatures.cs │ │ ├── DataProtection.cs │ │ ├── Localization.cs │ │ ├── RoutingAndMvc copy.cs.old │ │ └── RoutingAndMvc.cs │ ├── Controllers/ │ │ └── HomeController.cs │ ├── GlobalResources/ │ │ ├── CloudscribeCore.en-US.resx │ │ ├── CloudscribeCore.fr-FR.resx │ │ ├── CloudscribeCore.it-IT.resx │ │ ├── CloudscribeIds4Resources.en-US.resx │ │ ├── CloudscribeIds4Resources.fr-FR.resx │ │ ├── MenuResources.fr-FR.resx │ │ ├── MenuResources.it-IT.resx │ │ ├── QueryToolResources.cy.resx │ │ ├── QueryToolResources.de.resx │ │ ├── QueryToolResources.en.resx │ │ ├── QueryToolResources.fr.resx │ │ ├── QueryToolResources.it.resx │ │ ├── SimpleContent.cy.resx │ │ ├── SimpleContent.en-US.resx │ │ ├── SimpleContent.it-IT.resx │ │ └── SimpleContent.resx │ ├── Program.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── SharedThemes/ │ │ ├── _ViewImports.cshtml │ │ ├── _ViewStart.cshtml │ │ ├── cerulean/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── cosmo/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── cyborg/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── darkly/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── flatly/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── journal/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── litera/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── lumen/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── lux/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── materia/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── minty/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── pulse/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── sandstone/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── simplex/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── slate/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── solar/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── spacelab/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── superhero/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ ├── united/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ └── site.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── jquery.js │ │ └── yeti/ │ │ ├── Shared/ │ │ │ └── _Layout.cshtml │ │ └── wwwroot/ │ │ ├── css/ │ │ │ ├── _bootswatch.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap.css │ │ │ ├── fontawesome-all.css │ │ │ └── site.css │ │ └── js/ │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.esm.js │ │ └── jquery.js │ ├── Startup.cs │ ├── Views/ │ │ ├── Home/ │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared/ │ │ │ ├── AlertsPartial.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _CookieConsentRevokePartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── app-scss/ │ │ ├── _bs5.scss │ │ ├── _font-awesome.scss │ │ ├── _icons.scss │ │ ├── _jquery-smartmenu-bootstrap.scss │ │ ├── _variables.scss │ │ └── style.scss │ ├── appsettings.json │ ├── gulpfile.js │ ├── navigation.xml │ ├── nodb_storage/ │ │ └── projects/ │ │ ├── 5a6edd1f-6bb3-4e86-b434-4b33e309056a/ │ │ │ ├── page/ │ │ │ │ ├── 466fd5c6-72bb-4ff4-844a-ffa57b301eeb.json │ │ │ │ ├── 9a102c56-ed87-464b-b1f6-2df43229f2be.json │ │ │ │ └── efff35fa-4198-49af-a30f-638a801cc66f.json │ │ │ ├── post/ │ │ │ │ ├── 2016/ │ │ │ │ │ └── 02/ │ │ │ │ │ └── c94b5121-358f-4e76-853a-4249a3b56392.xml │ │ │ │ ├── 2017/ │ │ │ │ │ └── 09/ │ │ │ │ │ └── b87bf10b-dc9f-434b-af79-f0a0ecb4579b.xml │ │ │ │ └── 2018/ │ │ │ │ └── 06/ │ │ │ │ └── its-been-a-long-time.xml │ │ │ ├── projectsettings/ │ │ │ │ └── 5a6edd1f-6bb3-4e86-b434-4b33e309056a.json │ │ │ ├── siterole/ │ │ │ │ ├── 805da7c0-0506-474e-9038-bb0b594a1728.json │ │ │ │ ├── 8ded2209-f22f-4436-8207-386e0141a197.json │ │ │ │ ├── 8ffb27e5-e7e0-4b4e-8a5d-8e23dfda689b.json │ │ │ │ └── abb5e05a-2cf8-4ffd-9244-f02d14a7acbe.json │ │ │ ├── sitesettings/ │ │ │ │ └── 5a6edd1f-6bb3-4e86-b434-4b33e309056a.json │ │ │ ├── siteuser/ │ │ │ │ └── 006cf1b5-fa84-4a14-addc-7d0c24e84694.json │ │ │ └── userrole/ │ │ │ └── 006cf1b5-fa84-4a14-addc-7d0c24e84694~805da7c0-0506-474e-9038-bb0b594a1728.json │ │ ├── default/ │ │ │ ├── geocountry/ │ │ │ │ ├── 000da5ad-296a-4698-a21b-7d9c23feea14.json │ │ │ │ ├── 0055471a-7993-42a1-897c-e5daf92e7c0e.json │ │ │ │ ├── 01261d1a-74d6-4e02-86c5-bed1a192f67d.json │ │ │ │ ├── 01ca292d-86ca-4fa5-9205-2b0a37e7353b.json │ │ │ │ ├── 0416e2fc-c902-4452-8de9-29a2b453e685.json │ │ │ │ ├── 045a6098-a4a5-457a-aef0-6cc57cc4a813.json │ │ │ │ ├── 04724868-0448-48ef-840b-7d5da12495ec.json │ │ │ │ ├── 056f6ed6-8f6d-4366-a755-2d6b8fb2b7ad.json │ │ │ │ ├── 0589489d-a413-47c6-a90a-600520a8c52d.json │ │ │ │ ├── 05b98ddc-f36b-4daf-9459-0717fde9b38e.json │ │ │ │ ├── 061e11a1-33a2-42f0-8f8d-27e65fc47076.json │ │ │ │ ├── 06bb7816-9ad4-47dc-b1cd-6e206afdfcca.json │ │ │ │ ├── 0758cf79-94eb-4fa3-bd2c-8213034fb66c.json │ │ │ │ ├── 0789d8a8-59d0-4d2f-8e26-5d917e55550c.json │ │ │ │ ├── 07e1de2f-b11e-4f3b-a342-964f72d24371.json │ │ │ │ ├── 085d9357-416b-48d6-8c9e-ec3e9e2582d0.json │ │ │ │ ├── 0b182ee0-0cc0-4844-9cf0-ba15f47682e8.json │ │ │ │ ├── 0bd0e1a0-ea93-4883-b0a0-9f3c8668c68c.json │ │ │ │ ├── 0c356c5a-ca44-4301-8212-1826ccdadc42.json │ │ │ │ ├── 0d074a4f-df7f-49f3-8375-d35bdc934ae0.json │ │ │ │ ├── 10d4d58e-d0c2-4a4e-8fdd-b99d68c0bd22.json │ │ │ │ ├── 10fdc2bb-f3a6-4a9d-a6e9-f4c781e8dbff.json │ │ │ │ ├── 13faa99e-18f2-4e6f-b275-1e785b3383f3.json │ │ │ │ ├── 14962add-4536-4854-bea3-a5a904932e1c.json │ │ │ │ ├── 1583045c-5a80-4850-ac32-f177956fbd6a.json │ │ │ │ ├── 167838f1-3fdd-4fb6-9268-4beafeecea4b.json │ │ │ │ ├── 171a3e3e-cc78-4d4a-93ee-ace870dcb4c4.json │ │ │ │ ├── 18160966-4eeb-4c6b-a526-5022042fe1e4.json │ │ │ │ ├── 19f2da98-fefd-4b45-a260-8d9392c35a24.json │ │ │ │ ├── 1a07c0b8-eb6d-4153-8cb1-be6e31feb566.json │ │ │ │ ├── 1a6a2db1-d162-4fea-b660-b88fc25f558e.json │ │ │ │ ├── 1b8fbde0-e709-4f7b-838d-b09def73de8f.json │ │ │ │ ├── 1c7ff578-f079-4b5b-9993-2e0253b8cc14.json │ │ │ │ ├── 1d0dae21-cd07-4022-b86a-7780c5ea0264.json │ │ │ │ ├── 1d925a47-3902-462a-ba2e-c58e5cb24f2f.json │ │ │ │ ├── 1e64910a-bce3-402c-9035-9cb1f820b195.json │ │ │ │ ├── 1fcc4a89-0e8f-4fa2-b8d0-4ff5ec2277df.json │ │ │ │ ├── 20a15881-215b-4c4c-9512-80e55abbb5ba.json │ │ │ │ ├── 216d38d9-5eeb-42b7-8d2d-0757409dc5fb.json │ │ │ │ ├── 2391213f-fcbf-479a-9ab9-af1d6deb9e11.json │ │ │ │ ├── 23ba8dce-c784-4712-a6a0-0271f175d4e5.json │ │ │ │ ├── 24045513-0cd8-4fb9-9cf6-78bf717f6a7e.json │ │ │ │ ├── 25ed463d-21f5-412c-9bdb-6d76073ea790.json │ │ │ │ ├── 267865b1-e8da-432d-be45-63933f18a40f.json │ │ │ │ ├── 278ab63a-9c7e-4cad-9c99-984f8810d151.json │ │ │ │ ├── 27a6a985-3a89-4309-ac40-d1f0a94646ce.json │ │ │ │ ├── 28218639-6094-4aa2-ae88-9206630bb930.json │ │ │ │ ├── 2afe5a06-2692-4b96-a385-f299e469d196.json │ │ │ │ ├── 2bad76b2-20f3-4568-96bb-d60c39cfec37.json │ │ │ │ ├── 2d5b53a8-8341-4da4-a296-e516fe5bb953.json │ │ │ │ ├── 2dd32741-d7e9-49c9-b3d3-b58c4a913e60.json │ │ │ │ ├── 2ebce3a9-660a-4c1d-ac8f-0e899b34a987.json │ │ │ │ ├── 31f9b05e-e21d-41d5-8753-7cdd3bfa917b.json │ │ │ │ ├── 3220b426-8251-4f95-85c8-3f7821ecc932.json │ │ │ │ ├── 32eb5d85-1283-4586-bb16-b2b978b6537f.json │ │ │ │ ├── 333ed823-0e19-4bcc-a74e-c6c66fe76834.json │ │ │ │ ├── 356d4b6e-9ccb-4dc6-9c82-837433178275.json │ │ │ │ ├── 3664546f-14f2-4561-9b77-67e8be6a9b1f.json │ │ │ │ ├── 36f89c06-1509-42d2-aea6-7b4ce3bbc4f5.json │ │ │ │ ├── 386812d8-e983-4d3a-b7f0-1fa0bbe5919f.json │ │ │ │ ├── 38dc01c3-48d8-4ff8-a78a-2c35d4fbfa7b.json │ │ │ │ ├── 391ebafd-7689-41e5-a785-df6a3280528d.json │ │ │ │ ├── 392616f8-1b24-489f-8600-bae22ef478cc.json │ │ │ │ ├── 3a733002-9223-4bd7-b2a9-62fa359c4cbd.json │ │ │ │ ├── 3c864692-824c-4593-a739-d1309d4cd75e.json │ │ │ │ ├── 3d3a06a0-0853-4d01-b273-af7b7cd7002c.json │ │ │ │ ├── 3e57398a-0006-4e48-8cb4-f9f143dfcf22.json │ │ │ │ ├── 3e747b23-543f-4ad0-80a9-5e421651f3b4.json │ │ │ │ ├── 3f677556-1c9c-4315-9cfc-210a54f1f41d.json │ │ │ │ ├── 3fbd7371-510a-45b4-813a-88373d19a5a4.json │ │ │ │ ├── 4448e7b7-4e4d-4f19-b64d-e649d0f76cc1.json │ │ │ │ ├── 44577b6a-6918-4508-ade4-b6c2adb25000.json │ │ │ │ ├── 468dca85-484a-4529-8753-b26dbc316a71.json │ │ │ │ ├── 48cd745a-4c47-4282-b60a-cb4b4639c6ee.json │ │ │ │ ├── 48e5e925-6d98-4039-af6e-36d676059b85.json │ │ │ │ ├── 4cc52ce2-0a6c-4564-8fe6-2eeb347a9429.json │ │ │ │ ├── 4ce3df16-4d00-4f4d-a5d6-675020fa117d.json │ │ │ │ ├── 4dbe5363-aad6-4019-b445-472d6e1e49bd.json │ │ │ │ ├── 4dcd6ecf-af6c-4c76-95db-a0efac63f3de.json │ │ │ │ ├── 4e6d9507-9fb0-4290-80af-e98aabaccedb.json │ │ │ │ ├── 4eb5bcbe-13aa-45f0-afdf-77b379347509.json │ │ │ │ ├── 4f660961-0aff-4539-9c0b-3bb2662b7a99.json │ │ │ │ ├── 52316192-6328-4e45-a39c-37fc96cad138.json │ │ │ │ ├── 54d227b4-1f3e-4f20-b16c-6428b77f5252.json │ │ │ │ ├── 574e1b06-4332-4a1c-9b30-5daf2cce6b10.json │ │ │ │ ├── 579fbee3-0be0-4884-b7c5-658c23c4e7d3.json │ │ │ │ ├── 58c5c312-85d2-47a3-87a7-1549ec0ccd44.json │ │ │ │ ├── 5aac5aa6-8bc0-4be5-a4de-76a5917dd2b2.json │ │ │ │ ├── 5c3d7f0e-1900-4d73-acf6-69459d70d616.json │ │ │ │ ├── 5dc77e2b-df39-475b-99da-c9756cabb5b6.json │ │ │ │ ├── 5edc9ddf-242c-4533-9c38-cbf41709ef60.json │ │ │ │ ├── 5f6df4ff-ef4b-43d9-98f5-d66ef9d27c67.json │ │ │ │ ├── 60ce9ab1-945d-4fef-aba8-a1bb640165be.json │ │ │ │ ├── 612c5585-4e93-4f4f-9735-ec9ab7f2aab9.json │ │ │ │ ├── 61ef876b-9508-48e9-afbf-2d4386c38127.json │ │ │ │ ├── 63404c30-266d-47b6-beda-fd252283e4e5.json │ │ │ │ ├── 63aecd7a-9b3f-4732-bf8c-1702ad3a49dc.json │ │ │ │ ├── 65223343-756c-4083-a20f-cf3cf98efbdc.json │ │ │ │ ├── 6599493d-ead6-41ce-ae9c-2a47ea74c1a8.json │ │ │ │ ├── 666699cd-7460-44b1-afa9-adc363778ff4.json │ │ │ │ ├── 66c2bfb0-11c9-4191-8e91-1a0314726cc6.json │ │ │ │ ├── 66d1d01b-a1a5-4634-9c15-4cd382a44147.json │ │ │ │ ├── 66d7e3d5-f89c-42c5-82d5-9e6869ab9775.json │ │ │ │ ├── 66f06c44-26ff-4015-b0ce-d241a39def8b.json │ │ │ │ ├── 6717be36-81c1-4df3-a6f8-0f5eef45cec9.json │ │ │ │ ├── 67497e93-c793-4134-915e-e04f5adae5d0.json │ │ │ │ ├── 68abefdb-27f4-4cb8-840c-afee8510c249.json │ │ │ │ ├── 6f101294-0433-492b-99f7-d59105a9970b.json │ │ │ │ ├── 70a106ca-3a82-4e37-aea3-4a0bf8d50afa.json │ │ │ │ ├── 70e9ef51-b838-461b-a1d8-2b32ee49855b.json │ │ │ │ ├── 72bbbb80-ea6c-43c9-8ccd-99d26290f560.json │ │ │ │ ├── 73355d89-317a-43a5-8ebb-fa60dd738c5b.json │ │ │ │ ├── 7376c282-b5a3-4898-a342-c45f1c18b609.json │ │ │ │ ├── 73fbc893-331d-4e67-9753-ab988ac005c7.json │ │ │ │ ├── 74dfb95b-515d-4561-938d-169ac3782280.json │ │ │ │ ├── 75f88974-01ac-47d7-bcee-6ce1f0c0d0fc.json │ │ │ │ ├── 7756aa70-f22a-4f42-b8f4-e56ca9746064.json │ │ │ │ ├── 776102b6-3d75-4570-8215-484367ea2a80.json │ │ │ │ ├── 77bbfb67-9d1d-41f9-8626-b327aa90a584.json │ │ │ │ ├── 77dce560-3d53-4483-963e-37d5f72e219e.json │ │ │ │ ├── 78a78abb-31d9-4e2a-aea5-6744f27a6519.json │ │ │ │ ├── 7b3b0b11-b3cf-4e69-b4c2-c414bb7bd78d.json │ │ │ │ ├── 7b534a1e-e06d-4a2c-8ea6-85c128201834.json │ │ │ │ ├── 7c0ba316-c6d9-48dc-919e-76e0ee0cf0fb.json │ │ │ │ ├── 7c2c1e29-9e58-45eb-b512-5894496cd4dd.json │ │ │ │ ├── 7e11e0dc-0a4e-4db9-9673-84600c8035c4.json │ │ │ │ ├── 7e83ba7d-1c8f-465c-87d3-9bd86256031a.json │ │ │ │ ├── 7f2e9d46-f5db-48bf-8e07-d6d12e77d857.json │ │ │ │ ├── 7fe147d0-fd91-4119-83ad-4e7ebccdfd89.json │ │ │ │ ├── 83c5561e-e4be-40b0-ae56-28a371680af8.json │ │ │ │ ├── 844686ba-57c3-4c91-8b33-c1e1889a44c0.json │ │ │ │ ├── 880f29a2-e51c-4016-ab18-ca09275673c3.json │ │ │ │ ├── 88592f8b-1d15-4aa0-9115-4a28b67e1753.json │ │ │ │ ├── 8af11a89-1487-4b21-aabf-6af57ead8474.json │ │ │ │ ├── 8c982139-3609-48d3-b145-b5ceb484c414.json │ │ │ │ ├── 8c9d27f2-fe77-4653-9696-b046d6536bfa.json │ │ │ │ ├── 8f5124fa-cb2a-4cc9-87bb-bc155dc9791a.json │ │ │ │ ├── 8fe152e5-b58c-4d3c-b143-358d5c54ba06.json │ │ │ │ ├── 90255d75-af44-4b5d-bcfd-77cd27dce782.json │ │ │ │ ├── 90684e6e-2b34-4f18-bbd1-f610f76179b7.json │ │ │ │ ├── 9151aaf1-a75b-4a2c-bf2b-c823e2586db2.json │ │ │ │ ├── 92a52065-32b0-42c6-a0aa-e8b8a341f79c.json │ │ │ │ ├── 931ee133-2b60-4b82-8889-7c9855ca030a.json │ │ │ │ ├── 96dbb697-3d7e-49bf-ac9b-0ea5cc014a6f.json │ │ │ │ ├── 972b8208-c88d-47bb-9e79-1574fab34dfb.json │ │ │ │ ├── 99c347f1-1427-4d41-bc12-945d38f92a94.json │ │ │ │ ├── 99f791e7-7343-42e8-8c19-3c41068b5f8d.json │ │ │ │ ├── 9ab1ee28-b81f-4b89-ae6b-3c6e5322e269.json │ │ │ │ ├── 9b5a87f8-f024-4b76-b230-95913e474b57.json │ │ │ │ ├── 9c035e40-a5dc-406b-a83a-559f940eb355.json │ │ │ │ ├── 9ca410f0-eb75-4105-90a1-09fc8d2873b8.json │ │ │ │ ├── 9d2c4779-1608-4d2a-b157-f5c4bb334eed.json │ │ │ │ ├── 9dcf0a16-db7f-4b63-bad7-30f80bcd9901.json │ │ │ │ ├── 9f9ac0e3-f689-4e98-b1bb-0f5f01f20fad.json │ │ │ │ ├── a141ab0d-7e2c-48b1-9963-ba8685bcdfe3.json │ │ │ │ ├── a4f1d01a-ebfc-4bd3-9521-be6d73f79fac.json │ │ │ │ ├── a566ac8d-4a81-4a11-9cfb-979517440ce2.json │ │ │ │ ├── a642097b-cc0a-430d-9425-9f8385fc6aa4.json │ │ │ │ ├── a71d6727-61e7-4282-9fcb-526d1e7bc24f.json │ │ │ │ ├── aa393972-1604-47d2-a533-81b41199ccf0.json │ │ │ │ ├── aae223c8-6330-4641-b12b-f231866de4c6.json │ │ │ │ ├── ae094b3e-a8b8-4e29-9853-3bd464efd247.json │ │ │ │ ├── aea2f438-77bc-43f5-84fc-c781141a1d47.json │ │ │ │ ├── aebd8175-fffe-4ee2-b208-c0bbbd049664.json │ │ │ │ ├── b0fc7899-9c6f-4b80-838f-692a7a0aa83b.json │ │ │ │ ├── b10c1efc-5341-4ec4-be12-a70dbb1c41cc.json │ │ │ │ ├── b14e1447-0bca-4dd5-87e1-60c0b5d2988b.json │ │ │ │ ├── b225d445-6884-4232-97e4-b33499982104.json │ │ │ │ ├── b32a6fe3-f534-4c42-bd2d-8e2307476ba2.json │ │ │ │ ├── b3732bd9-c3d6-4861-8dbe-eb2884557f34.json │ │ │ │ ├── b47e2eec-62a0-440c-9f20-af9c5c75d57b.json │ │ │ │ ├── b4a3405b-1293-4e98-9b11-777f666b25d4.json │ │ │ │ ├── b50f640f-0ae9-4d63-acb2-2abd94b6271b.json │ │ │ │ ├── b5133b5b-1687-447a-b88a-ef21f7599eda.json │ │ │ │ ├── b5946ea8-b8a8-45b9-827d-86fa13e034cd.json │ │ │ │ ├── b5ee8da7-5cc3-44f3-bd63-094cb93b4674.json │ │ │ │ ├── b85aa3d6-d923-438c-aad7-2063f6bfbd3c.json │ │ │ │ ├── baf7d87c-f09b-42cc-becd-49c2b3426226.json │ │ │ │ ├── bb176526-f5c6-4871-9e75-cfeef799ad48.json │ │ │ │ ├── bbaaa327-f8cc-43ae-8b0e-fc054eeda968.json │ │ │ │ ├── bd2c67c0-26a4-46d5-b58a-f26dcfa8f34b.json │ │ │ │ ├── bdb52e20-8f5c-4a6c-a8d5-2b4dc060cc13.json │ │ │ │ ├── bec3af5b-d2d4-4dfb-aca5-cf87059469d4.json │ │ │ │ ├── bf3b8cd7-679e-4546-81fc-85652653fe8f.json │ │ │ │ ├── c03527d6-1936-4fdb-ab72-93ae7cb571ed.json │ │ │ │ ├── c046ca0b-6dd9-459c-bf76-bd024363aaac.json │ │ │ │ ├── c10d2e3a-af21-4bad-9b18-fbf3fb659eae.json │ │ │ │ ├── c1ec594f-4b56-436d-aa28-ce3004de2803.json │ │ │ │ ├── c1f503a3-c6b4-4eee-9fea-1f656f3b0825.json │ │ │ │ ├── c23969d4-e195-4e53-bf7e-d3d041184325.json │ │ │ │ ├── c43b2a01-933b-4021-896f-fcd27f3820da.json │ │ │ │ ├── c47bf5ea-dfe4-4c9f-8bbc-067bd15fa6d2.json │ │ │ │ ├── c63d51d8-b319-4a48-a6f1-81671b28ef07.json │ │ │ │ ├── c7c9f73a-f4be-4c59-9278-524d6069d9dc.json │ │ │ │ ├── c87d4cae-84ee-4336-bc57-69c4ea33a6bc.json │ │ │ │ ├── cd85035d-3901-4d07-a254-90750cd57c90.json │ │ │ │ ├── cda35e7b-29b0-4d34-b925-bf753d16af7e.json │ │ │ │ ├── ce737f29-05a4-4a9a-b5dc-f1876f409334.json │ │ │ │ ├── d42bd5b7-9f7e-4cb2-a295-e37471cdb1c2.json │ │ │ │ ├── d61f7a82-85c5-45e1-a23c-60edae497459.json │ │ │ │ ├── d7a96dd1-66f4-49b4-9085-53a12facac98.json │ │ │ │ ├── d9510667-ae8b-4066-811c-08c6834efadf.json │ │ │ │ ├── da19b4e1-dfea-43c9-ad8b-19e7036f0da4.json │ │ │ │ ├── da8e07c2-7b3d-46af-bcc5-fef0a68b11d1.json │ │ │ │ ├── dac6366f-295f-4ddc-b08c-5a521c70774d.json │ │ │ │ ├── dd3d7458-318b-4c6b-891c-766a6d7ac265.json │ │ │ │ ├── e0274040-ef54-4b6e-b572-af65a948d8c4.json │ │ │ │ ├── e04ed9c1-face-4ee6-bade-7e522c0d210e.json │ │ │ │ ├── e1aa65e1-d524-48ba-91ef-39570b9984d7.json │ │ │ │ ├── e399424a-a86a-4c61-b92b-450106831b4c.json │ │ │ │ ├── e55c6a3a-a5e9-4575-b24f-6da0fd4115cd.json │ │ │ │ ├── e6471bf0-4692-4b7a-b104-94b12b30a284.json │ │ │ │ ├── e691ac69-a14d-4cca-86ed-82978614283e.json │ │ │ │ ├── e82e9dc1-7d00-47c0-9476-10eaf259967d.json │ │ │ │ ├── e8f03eaa-ddd2-4ff2-8b66-da69ff074ccd.json │ │ │ │ ├── eadabf25-0fa0-4e8e-aa1e-26d02eb70653.json │ │ │ │ ├── eafeb25d-265a-4899-be24-bb0f4bf64480.json │ │ │ │ ├── eb692475-f7af-402f-bb0d-cd420f670b88.json │ │ │ │ ├── ec0d252b-7ba6-4ac4-ad41-6158a10e9ccf.json │ │ │ │ ├── ec4d278f-0d96-478f-b023-0fdc7520c56c.json │ │ │ │ ├── f015e45e-d93a-4d3a-a010-648ca65b47be.json │ │ │ │ ├── f2f258d7-b650-45f9-a0e1-58687c08f4e4.json │ │ │ │ ├── f321b513-8164-4882-bae0-f3657a1a98fb.json │ │ │ │ ├── f3418c04-e3a8-4826-a41f-dcdbb5e4613e.json │ │ │ │ ├── f3b7f86f-3165-4430-b263-87e1222b5bb1.json │ │ │ │ ├── f5548ac2-958f-4b3d-8669-38b58735c517.json │ │ │ │ ├── f63ce832-2c8d-4c43-a4d8-134fc4311098.json │ │ │ │ ├── f6e6e602-468a-4dd7-ace4-3da5fefc165a.json │ │ │ │ ├── f74a81fa-3d6a-415c-88fd-5458ed8c45c2.json │ │ │ │ ├── f909c4c1-5fa9-4188-b848-ecd37e3dbf64.json │ │ │ │ ├── f95a5bb1-59a5-4125-b803-a278b13b3d3b.json │ │ │ │ ├── f9c72583-e1f8-4f13-bfb5-ddf68bcd656a.json │ │ │ │ ├── fa26ae74-5404-4aaf-bd54-9b78266ccf03.json │ │ │ │ ├── fbea6604-4e57-46b6-a3f2-e5de8514c7b0.json │ │ │ │ ├── fbff9784-d58c-4c86-a7f2-2f8ce68d10e7.json │ │ │ │ ├── fd70fe71-1429-4c6e-b399-90318ed9ddcb.json │ │ │ │ ├── fdc8539a-82a7-4d29-bd5c-67fb9769a5ac.json │ │ │ │ └── fe0e585e-fc54-4fa2-80c0-6fbfe5397e8c.json │ │ │ └── geozone/ │ │ │ ├── 01ee03b8-3ea2-4de4-8656-ec10138f95ea.json │ │ │ ├── 02be94a5-3c10-4f83-858b-812796e714ae.json │ │ │ ├── 02c10c0f-3f09-4d0a-a6ef-ad40ae0a007b.json │ │ │ ├── 043a0d4a-f1f5-430d-906d-ebd3d219485f.json │ │ │ ├── 04e066be-2254-44c5-ab1f-41afe5267ce3.json │ │ │ ├── 053fab61-2eff-446b-a29b-e9be91e195c9.json │ │ │ ├── 05963d51-677f-4f3b-b210-5103a1036506.json │ │ │ ├── 05974280-a62d-4fc3-be15-f16ab9e0f2d1.json │ │ │ ├── 070dd166-bdc9-4732-8da0-48bd318d3d9e.json │ │ │ ├── 076814fc-7422-40d5-80e0-b6978589ccdc.json │ │ │ ├── 07c1030f-fa7e-4b1c-ba21-c6acd092b676.json │ │ │ ├── 0971f796-ed73-46d7-9acf-38cd54ef7f54.json │ │ │ ├── 09d1a93d-64ba-4205-9b93-81ba8eb8feca.json │ │ │ ├── 0b525a39-59ce-40f3-91ca-8676a5404e23.json │ │ │ ├── 0b6e3041-4368-4476-a697-a8bafc77a9e0.json │ │ │ ├── 0db04a9e-352b-46d6-88bc-b5416b31756d.json │ │ │ ├── 0df27c73-a612-491f-8b74-c4e384317fb8.json │ │ │ ├── 0f115386-3220-49f1-b0f2-eaf6c78a2edd.json │ │ │ ├── 10185a2b-6af7-4735-b1e3-8c46aac842fd.json │ │ │ ├── 1026b90d-61be-4434-ab6d-ebfd92082dfe.json │ │ │ ├── 10adee5d-3ec5-4c70-a0d0-9c399a785dd2.json │ │ │ ├── 152f8dc5-5caa-44b7-89a8-6469042dc865.json │ │ │ ├── 155ddc67-1e74-4791-995d-2eddb0658293.json │ │ │ ├── 15b3d139-d927-43eb-8705-84df9122999f.json │ │ │ ├── 15c350c0-058c-474d-a7c2-e3bd359b7895.json │ │ │ ├── 19b7cd11-15b7-48c0-918d-73fe64eaae26.json │ │ │ ├── 1aa7127a-8c53-4840-a2da-120f8c6607bd.json │ │ │ ├── 1ac6bd1b-6b0c-4857-8243-bca4ba6eeb5e.json │ │ │ ├── 1b4bdc9d-5d38-43c4-97aa-bad370a18fb4.json │ │ │ ├── 1ba313de-0690-42db-97bb-ecba89aec4c7.json │ │ │ ├── 1c5d3479-59fc-4c77-8d4e-cfc5c33422e7.json │ │ │ ├── 1d049867-dc28-4ae1-b8a6-d44aecb4aa0b.json │ │ │ ├── 1d4eabb2-d6f1-44ad-be62-52ef66e5b04b.json │ │ │ ├── 1d91f9f6-0d62-479a-91a7-62d04fe1fdef.json │ │ │ ├── 1d996ba4-1906-44c3-9c51-399fd382d278.json │ │ │ ├── 1da58a0a-d0f7-48b1-9d48-102f65819773.json │ │ │ ├── 1ddfca11-3848-4945-848c-ae5cb67e0e8b.json │ │ │ ├── 1e1ba070-f44b-4dfb-8fc2-55c541f4943f.json │ │ │ ├── 1f6d4673-67a2-4313-8837-569b6b671685.json │ │ │ ├── 2022f303-2481-4b44-ba3d-d261b002c9c1.json │ │ │ ├── 21287450-809e-4662-9742-9380159d3c90.json │ │ │ ├── 2135d11f-4b63-46a5-b4c0-c62e130ce021.json │ │ │ ├── 2189b5a8-167f-425d-949c-b3858179003e.json │ │ │ ├── 2282df69-bcf5-49fe-a6eb-c8c9dec87a52.json │ │ │ ├── 25459871-1694-4d08-9e7c-6d06f2edc7ae.json │ │ │ ├── 2546d1ab-d4f5-4087-9b78-ea3badfafa12.json │ │ │ ├── 27129dc0-1dd2-497f-b724-65d93e0050be.json │ │ │ ├── 28061e80-5d1c-4d47-9e99-a72525b63f85.json │ │ │ ├── 294f2e9c-49d1-4094-b558-dd2d4219b0e9.json │ │ │ ├── 29f5ce90-8999-4a8e-91a5-fcf67b4fd8ab.json │ │ │ ├── 2a20cf43-8d55-4732-b810-641886f2aed4.json │ │ │ ├── 2a9b8ffe-91f5-4944-983d-37f52491dde6.json │ │ │ ├── 2ab44c64-8419-45a1-a78f-83894d679ea9.json │ │ │ ├── 2b0707ff-ef1a-498f-af98-facb2bd9f9c1.json │ │ │ ├── 2b350062-eaf4-4f05-ab04-a8ccec353eb5.json │ │ │ ├── 2d04de9b-525d-4623-a368-b29dd82dbbd0.json │ │ │ ├── 2df783c9-e527-4105-819e-181af57e7cec.json │ │ │ ├── 2dfe6223-5a2b-4dbc-b77c-9af80e973a20.json │ │ │ ├── 2f20005e-7efc-4186-9144-6996b68ee6e3.json │ │ │ ├── 3008a1b3-1188-4f4d-a2ef-b71b4f54233e.json │ │ │ ├── 30a0e005-a523-4301-b924-8a4651f54e90.json │ │ │ ├── 30fa3416-9fb1-43c1-999d-23a115218324.json │ │ │ ├── 31265516-54af-4551-af1b-a0900faa3028.json │ │ │ ├── 3249c886-3b1e-426a-8cd7-efc3922a964a.json │ │ │ ├── 335c6ba3-37e5-4cca-b466-6927658ee92e.json │ │ │ ├── 33cd3650-d80e-4157-b145-5d8d404628e4.json │ │ │ ├── 34141474-337e-4e28-9180-23620558ba1d.json │ │ │ ├── 347629b4-0c74-4e80-84c9-785fb45fb8d7.json │ │ │ ├── 356bd975-9775-40d4-9678-fc49098f0a02.json │ │ │ ├── 36b807a9-f496-430d-91bc-e8b1ac738736.json │ │ │ ├── 36f88c25-7a6a-41d4-abac-ce05cd5ecfa1.json │ │ │ ├── 37a4b316-853a-40b1-8203-b8c27d07917e.json │ │ │ ├── 37cf9d44-030d-48be-97f0-5b3dab24f48f.json │ │ │ ├── 38885962-564a-4686-9099-aa06570e00bd.json │ │ │ ├── 388a4219-a89a-4bf0-960f-f58936288a0a.json │ │ │ ├── 3933e77a-10f0-47e2-bb60-02de2ad724df.json │ │ │ ├── 3c173b83-5149-4fec-b000-64a65832c455.json │ │ │ ├── 3cb3ef7b-b000-41fa-bfd2-405f29bd646f.json │ │ │ ├── 3d11ee42-f2d3-4c0d-81b9-44394a3a5409.json │ │ │ ├── 3dab4424-efa5-409a-b96c-40daf5ee4b6c.json │ │ │ ├── 3deda5e5-10bb-41cd-87ff-f91688b5b7ed.json │ │ │ ├── 3e256c55-177f-459c-97cf-a77fb3729494.json │ │ │ ├── 3ebf7ceb-8e24-40af-801c-feccd6d780ee.json │ │ │ ├── 3ee49ff8-a56a-451a-a999-067915c8dd75.json │ │ │ ├── 3f030f3b-0a0a-464e-b86e-9cd9e7a97b8b.json │ │ │ ├── 3f05459f-5453-4aa1-9565-56b05080181d.json │ │ │ ├── 3fcf9ee7-66bc-4cf6-aef3-d8c70948ecde.json │ │ │ ├── 3ff66466-e523-492e-80c1-be19af171364.json │ │ │ ├── 40f760f8-531f-4fea-9773-a513a7b58af8.json │ │ │ ├── 4182cebc-5177-48ae-81f7-0c356139494b.json │ │ │ ├── 41898a0b-a26c-44ce-9568-cfb75f1a2856.json │ │ │ ├── 42e55b19-e977-4e00-830c-a1655cf8a072.json │ │ │ ├── 4308f7f6-1f1d-4248-8995-3af588c55976.json │ │ │ ├── 4344c1dd-e866-4683-9c90-22c9db369eae.json │ │ │ ├── 43830082-5772-47f2-8216-8a48c872e337.json │ │ │ ├── 440e892d-693c-493b-ba14-81919c3fb091.json │ │ │ ├── 4445eb1e-0888-4b11-bf7b-0bb9a701936d.json │ │ │ ├── 446cb079-fc60-478a-b8cb-d8b7ece3383d.json │ │ │ ├── 46d3633d-8db5-4cc8-b42e-76dd3d48458d.json │ │ │ ├── 46f46bef-20b8-4315-8bf1-f816bcb06b8e.json │ │ │ ├── 473bbc63-7d8c-4587-945c-32f943091ff4.json │ │ │ ├── 48184d25-0757-405d-934d-74d96f9745df.json │ │ │ ├── 481f03a2-a3fe-41d9-a938-920720c1f446.json │ │ │ ├── 48d12a99-bf3c-4fc7-86c5-c266424973eb.json │ │ │ ├── 49025d80-75ee-4367-a06c-88427507642b.json │ │ │ ├── 49ec50be-2751-443e-acf8-4c497633267d.json │ │ │ ├── 49fffe3b-61f4-433d-b9bc-4044398283cf.json │ │ │ ├── 4ab74396-fb33-4276-a518-ad05f28375d0.json │ │ │ ├── 4bc9f931-f1ed-489f-99bc-59f42bd77eec.json │ │ │ ├── 4bd4724c-2e5e-4df4-8b1c-3a679c30398f.json │ │ │ ├── 4d238397-af29-4dbc-a349-7f650a5d8d67.json │ │ │ ├── 4da1dac0-6c99-4a28-9d94-6a3df5507727.json │ │ │ ├── 4e0bc53a-62fe-4dfc-9d1d-8b928e40b22e.json │ │ │ ├── 4fa42d2c-b375-41d4-98ef-4d1442bccb1a.json │ │ │ ├── 5006ff54-aa63-4e57-8414-30d51598be60.json │ │ │ ├── 504d426d-cd02-446d-910c-5e4e36518879.json │ │ │ ├── 507e831c-8d74-44bf-a251-496b945faed9.json │ │ │ ├── 510c1204-13c5-4f0e-a746-5d1c5f843dfb.json │ │ │ ├── 517f1242-fe90-4322-969e-353c5dbfd061.json │ │ │ ├── 5241e330-b255-4ffa-833c-4964f13a0f7b.json │ │ │ ├── 5399df4c-92d4-4c59-9bfb-7dc2a575a3d3.json │ │ │ ├── 540233b4-a7c9-4e61-b54d-186763a2c65d.json │ │ │ ├── 5469ca74-b57e-41c1-b3e6-5ab725e7f423.json │ │ │ ├── 56259f37-af84-4215-ac73-259fa74c7c8d.json │ │ │ ├── 56faba9f-b482-4421-87cc-1ee320da22cd.json │ │ │ ├── 570fe94c-f226-4701-8c10-13dab9e59625.json │ │ │ ├── 584cf595-c117-4d7e-9a0b-6dadd748eda8.json │ │ │ ├── 58c1e282-cffa-4b49-b268-5356ba47aa19.json │ │ │ ├── 59997515-5699-4571-8c69-b91328b65a3f.json │ │ │ ├── 5bbd88d1-5023-43df-91f0-0fdd4f3878eb.json │ │ │ ├── 5bd4a551-46ba-465a-b3f9-e15ed70a083f.json │ │ │ ├── 60d9d569-7d0d-448f-b567-b4bb6c518140.json │ │ │ ├── 611023eb-d4f2-4831-812e-c3984a125310.json │ │ │ ├── 61952dad-6b28-4ba8-8580-5012a48accdc.json │ │ │ ├── 61d891a3-e620-46d8-aada-6c9c1944340c.json │ │ │ ├── 62202fa8-db98-40f9-9a26-446aee191cdd.json │ │ │ ├── 6243f71b-d89b-4fdc-bc01-fcf46aeb1f29.json │ │ │ ├── 628f9f88-55ef-4eef-bcb6-b866ec05838d.json │ │ │ ├── 6352d079-20ea-42da-9377-7a09e6b764ae.json │ │ │ ├── 63c099a8-5537-4c80-8654-a6128ee1b203.json │ │ │ ├── 640cef26-1b10-4eac-a4ae-2f3491c38376.json │ │ │ ├── 64d687fc-1908-4323-ab47-991ea4371186.json │ │ │ ├── 66cc8a10-4dfb-4e8a-b5f0-b935d22a18f9.json │ │ │ ├── 6743c28c-580d-4705-9b01-aa4380d65ce9.json │ │ │ ├── 67e1633f-7405-451d-a772-eb4119c13b2c.json │ │ │ ├── 67f56be1-88c8-474d-beb9-5e75cd3b6062.json │ │ │ ├── 69a0494d-f8c3-434b-b8d4-c18ca5af5a4e.json │ │ │ ├── 6ac7bea2-d4ba-4c48-b0d0-f784af781587.json │ │ │ ├── 6c342c68-690a-4967-97c6-e6408ca1ea59.json │ │ │ ├── 6cc5cf7e-df8f-4c30-8b75-3c7d7750a4c0.json │ │ │ ├── 6e0eb9ac-76a2-434d-ae13-18dbe56212bf.json │ │ │ ├── 6e54cc16-2a7d-4662-9f2b-1f7808318412.json │ │ │ ├── 6e9d7937-3614-465e-8534-aa9a52f2c69b.json │ │ │ ├── 71366f2a-e8b5-469f-a995-a0410dc33fd8.json │ │ │ ├── 71682c43-e9c4-4d96-89e7-b06d47caa053.json │ │ │ ├── 7190e292-34cf-49f3-8367-a5fafb749cd3.json │ │ │ ├── 72c87c62-5656-4811-84cd-0c5ce4b7d19f.json │ │ │ ├── 730f58d1-9129-4f25-a94c-1a0f2f373bcd.json │ │ │ ├── 74062d11-8784-40bc-a95d-43b785ef8196.json │ │ │ ├── 74532861-c62d-49d2-a8ed-e99f401ea768.json │ │ │ ├── 7566d0a5-7394-4947-b4d7-a76a94746a23.json │ │ │ ├── 7759c9e9-43bc-4570-a9bb-c578564a0951.json │ │ │ ├── 7783e2f6-ded1-4703-aa2b-9fc844f28018.json │ │ │ ├── 7786d5ce-a4f9-4cf0-82fd-25a7ebe39fc5.json │ │ │ ├── 780d9ddb-38a2-47c8-a162-1231bea2e54d.json │ │ │ ├── 79b41943-7a78-4cec-857d-1fb89d34d301.json │ │ │ ├── 7a2ade5f-8353-4326-a46d-a42d31370d2c.json │ │ │ ├── 7ace8e48-a0c5-48ee-b992-ae6eb7142408.json │ │ │ ├── 7bf366d4-e9fc-4715-b7f9-1af37cc97386.json │ │ │ ├── 7c68c309-608d-4089-adbc-f5289d67aa57.json │ │ │ ├── 7ce436e6-349d-4f41-9053-5d7666662bb8.json │ │ │ ├── 7dc834f4-c490-4986-bfbc-10dfc94e235c.json │ │ │ ├── 7fcce82b-7828-40c9-a860-a21a787780c2.json │ │ │ ├── 80717ff0-5218-4119-9128-cef942826edc.json │ │ │ ├── 843c2659-d2bf-4af0-a0aa-ee8c268bede7.json │ │ │ ├── 849c05f0-9448-4013-8566-88ff891d1f6e.json │ │ │ ├── 84bf6b91-f9ff-4203-bad1-b5cf01239b77.json │ │ │ ├── 8587e33e-25fc-4c19-b504-0c93c027dd93.json │ │ │ ├── 85f3b62e-d3e7-4dec-b13b-dd494ad7b2cc.json │ │ │ ├── 86bdbe5d-4085-4916-984c-94c191c48c67.json │ │ │ ├── 87268168-cf40-442f-a526-06ddaeb1befd.json │ │ │ ├── 87c1483d-e471-4166-87cb-44f9c4459aa8.json │ │ │ ├── 87ceb5af-d6c0-4189-88f2-f0b38e2223a6.json │ │ │ ├── 87e6c0a9-ac01-457a-b759-0c10fc63605d.json │ │ │ ├── 883b8625-3130-4aac-b239-e57cf79c020b.json │ │ │ ├── 8a4e0e4c-2727-42cd-86d6-ed27a6a6b74b.json │ │ │ ├── 8a6db145-7ff4-4dfa-ac88-ea161924ea03.json │ │ │ ├── 8b1fe477-db16-4dcb-92f0-dcbf2f1de8cb.json │ │ │ ├── 8b3c48fd-9e7e-4653-a711-6dac6971cb32.json │ │ │ ├── 8bc664a9-b12c-4f48-af34-a7f68384a76a.json │ │ │ ├── 8bd9d2b9-67db-4fd6-90c7-52d0426e2007.json │ │ │ ├── 8ee2f892-4ee6-44f5-938a-b553e885161a.json │ │ │ ├── 8fab7d36-b885-46cd-9dc8-41e40c8683c4.json │ │ │ ├── 8ff34a94-016c-4046-9c39-99f1887c4cb9.json │ │ │ ├── 9013454d-1873-4be6-8fb1-b503ae1ed652.json │ │ │ ├── 91bf4254-f418-404a-8cb2-5449d498991e.json │ │ │ ├── 93215e73-4df8-4609-ac37-9da1b9bfe1c9.json │ │ │ ├── 933cd9ef-c021-48ed-8260-6c013685970f.json │ │ │ ├── 93cdd758-cc83-4f5a-94c0-9a3d13c7fa44.json │ │ │ ├── 9451f5b9-3dbc-4c17-83b9-8966350d26ca.json │ │ │ ├── 956b1071-d4c1-4676-be0c-e8834e47b674.json │ │ │ ├── 958cf4dd-04be-48e3-93e1-3bea8b80edcf.json │ │ │ ├── 95f80d75-23bc-4710-a106-bb98204059de.json │ │ │ ├── 962d2729-cc0c-4052-abc9-c696307f3f26.json │ │ │ ├── 968a394f-7764-4dfc-adb3-bf881644eddf.json │ │ │ ├── 978ecaab-c462-4d66-80b6-a65eb83b86a5.json │ │ │ ├── 981b0264-12a2-43be-b0c6-54e81c960138.json │ │ │ ├── 98f9db63-a224-462b-8765-240953489cbb.json │ │ │ ├── 993207ec-34a5-4896-88b0-3c43ccd11ab2.json │ │ │ ├── 9958d966-7824-4dea-94a4-725fcf96f0d0.json │ │ │ ├── 997fd24b-e5c6-474a-8c70-dbe6652b9267.json │ │ │ ├── 9bc8834b-01ce-40a2-8be1-8e20c24d1f11.json │ │ │ ├── 9c24162b-10de-47c1-b55f-0dcaaa24f86e.json │ │ │ ├── 9c9951d7-68d2-438a-a702-4289cbc1720e.json │ │ │ ├── 9d10e877-aaec-4913-bc99-b9815af76bf2.json │ │ │ ├── 9d62722c-7fcc-432c-8587-c7953e440e18.json │ │ │ ├── 9fb374c6-b87c-4096-a43c-d3d9ff2fd04c.json │ │ │ ├── a0984f35-6af2-493d-be85-903d453193c2.json │ │ │ ├── a1b99e38-1a7f-4b2f-927b-fcbdfccbc198.json │ │ │ ├── a1eaba97-8f4f-4149-b1e3-25cb19b145b7.json │ │ │ ├── a2ee590a-0b2e-4688-8c87-83011d5d2d3b.json │ │ │ ├── a34df017-1334-4f1f-aab8-f650425f937d.json │ │ │ ├── a39f8a9a-6586-41fb-9d5f-f84bd5161333.json │ │ │ ├── a3a183ae-8117-46c0-93b7-3940c7e5694f.json │ │ │ ├── a3cb237b-a940-418f-8368-fa6e35263e22.json │ │ │ ├── a540b300-1715-4677-aa6a-9ee79e6fef2e.json │ │ │ ├── a63a1dff-8f61-4159-9bc5-f005f8bcc19f.json │ │ │ ├── a67bbf90-32f8-45d0-8c9a-1af135ea6225.json │ │ │ ├── a6ed9918-44c7-4975-b680-95b4abcfb7ac.json │ │ │ ├── a91bf8c6-0f2b-4ea8-8b98-3f70cd240bc2.json │ │ │ ├── aa492ac6-e3b1-4408-b503-81480b57f008.json │ │ │ ├── ab47df32-c57d-412b-b04d-67378c120ae7.json │ │ │ ├── ac353aac-e2b7-4899-94f9-0bad7418ace9.json │ │ │ ├── ad9e0130-b735-4be0-9338-99e20bb9410d.json │ │ │ ├── ae1faeaf-d3f8-484e-b5a8-4548441ae758.json │ │ │ ├── afa207c7-e69d-46f0-8242-2a67a06c42e3.json │ │ │ ├── b009fd08-9cb2-4cd4-85cc-ed7c3e413f59.json │ │ │ ├── b00a500e-73d6-4229-93cc-99a255266c86.json │ │ │ ├── b0720a71-450b-4912-810e-871c8ef518e2.json │ │ │ ├── b11a9785-c227-47ed-a14e-402a4b5360c7.json │ │ │ ├── b299cad1-f84c-4aa7-b63a-2746b25baaaa.json │ │ │ ├── b2b175a4-09ba-4e25-919c-9de52109bf4d.json │ │ │ ├── b411f228-7677-4203-8696-df1a65e1651f.json │ │ │ ├── b519aaaf-7e2c-421f-88b8-bf7853a8de4f.json │ │ │ ├── b5812090-e7e1-492b-b9bc-04fec3ec9492.json │ │ │ ├── b588e3f6-0078-454c-809a-480c575e5200.json │ │ │ ├── b5ebabd8-7a23-4006-8044-5049fcf8a762.json │ │ │ ├── b5feb85c-2dc0-4776-ba5c-8c2d1b688e89.json │ │ │ ├── b716403c-6b15-488b-9cd0-f60b1aa1ba41.json │ │ │ ├── b7500c17-30c7-4d87-bb47-bb35d8b1d3a6.json │ │ │ ├── b7aed2ab-9e68-45d1-b535-fe6c1ec2d892.json │ │ │ ├── b8029f8e-0a19-41a5-a2f0-cf8f0e1a69c6.json │ │ │ ├── b8bf0b26-2f14-49e4-bfda-2d01eafa364b.json │ │ │ ├── b9032648-36dc-4903-a5e6-30abd7519754.json │ │ │ ├── b9093677-f26a-4b47-ad98-12caed313044.json │ │ │ ├── b9720a4e-9ca0-4120-a7cf-f81138b1db63.json │ │ │ ├── b9f64887-ed6d-4ddc-a142-7eb8898ca47e.json │ │ │ ├── b9f911eb-f762-4da4-a81f-9bc967cd3c4b.json │ │ │ ├── ba3c2043-cc3e-4225-b28e-bdb18c1a79ef.json │ │ │ ├── ba5a801b-11c6-4408-b097-08aac22e739e.json │ │ │ ├── baa695ab-a67a-409f-9f74-189ab212260c.json │ │ │ ├── baf9725f-0d57-4c84-b018-d6d55d00a647.json │ │ │ ├── bb090ce7-e0ca-4d0d-96eb-1b8e044fbca8.json │ │ │ ├── bb607ecb-df31-427b-88bb-4f53959b3e0c.json │ │ │ ├── bbd4704a-100a-4533-9ac9-37c228711dae.json │ │ │ ├── bcea3dbc-debb-483e-85b9-a3e47ff68dbf.json │ │ │ ├── bec44d04-ec8e-45a8-af09-21468ad9994f.json │ │ │ ├── c1983f1d-353a-4042-b097-f0e8237f7fcd.json │ │ │ ├── c26cfb75-5e44-4156-b660-a18a2a487fec.json │ │ │ ├── c2ba8e9e-d370-4639-b168-c51057e2397e.json │ │ │ ├── c2c00caa-3c72-4b5e-a07f-6f605926ef8e.json │ │ │ ├── c3e70597-e8dd-4277-b7fc-e9b4206da073.json │ │ │ ├── c427a41a-2fd0-4621-a7b1-090ee19f2eba.json │ │ │ ├── c4fa438d-7130-4ae0-9f5d-fb533afc3139.json │ │ │ ├── c5b34c76-5bf8-423f-a56f-985cc545ade8.json │ │ │ ├── c5d128d8-353a-43dc-ba0a-d0c35e33de17.json │ │ │ ├── c6cf9405-369e-41f4-a5e6-435469596c08.json │ │ │ ├── c7330896-bd61-4282-b3bf-8713a28d3b50.json │ │ │ ├── c7547571-7cda-427a-a8f2-259e9c587e84.json │ │ │ ├── c7a02c1c-3076-43b3-9538-b513bab8a243.json │ │ │ ├── ca553819-434a-408f-a2a4-92a7df9a2618.json │ │ │ ├── ca5c0c52-e8ae-4ccd-9a45-565e352c4e2b.json │ │ │ ├── ca7ce68d-465a-4c6e-ad75-6f9ade467f1e.json │ │ │ ├── cb47cc62-5d26-4b17-b01f-25e5432f913c.json │ │ │ ├── cb6d309d-ed20-48d0-8a5d-cd1d7fd1aad6.json │ │ │ ├── cbc4121c-d62d-410c-b699-60b08b67711f.json │ │ │ ├── cbd2718f-dd60-4151-a24d-437ff37605c6.json │ │ │ ├── cc6b7a8e-4275-4e4e-8d62-34b5480f3995.json │ │ │ ├── ccd7968c-7e80-4381-958b-ab72be0d6c35.json │ │ │ ├── cd1579c0-c471-4095-867a-3e2af11e1f35.json │ │ │ ├── cd98173e-507e-4a92-9eef-2de1d8e7a61f.json │ │ │ ├── cf6e4b72-5f4f-4cc4-add3-eb0964892f7b.json │ │ │ ├── cf75931a-d86f-43a0-8bd9-3942d5945ff7.json │ │ │ ├── cfa0c0e5-b478-41bd-9029-49bd04c68871.json │ │ │ ├── d0c79bd1-3688-4ed3-9b65-0cb24a1e8b43.json │ │ │ ├── d1562c4d-3163-4e92-a361-05c2b9541772.json │ │ │ ├── d20875cc-8572-453c-b5e0-53b49742debb.json │ │ │ ├── d21905c5-6ee9-4072-9618-8447d9c4390e.json │ │ │ ├── d21e2732-779d-406a-b1b9-cf44ff280dfe.json │ │ │ ├── d226235d-0eb0-49c5-9e7a-55cc91c57100.json │ │ │ ├── d256f9b7-8a33-4d04-9e19-95c12c967719.json │ │ │ ├── d284266a-559d-42f3-a881-0136ea080c12.json │ │ │ ├── d2880e75-e454-41a1-a73d-b2cff71197e2.json │ │ │ ├── d2c0e797-781a-4d5d-a87c-5c16de2063cb.json │ │ │ ├── d2e5ba25-d3d3-4113-b599-7456755da29e.json │ │ │ ├── d318e32e-41b6-4ca6-905d-23714709f38f.json │ │ │ ├── d46dc54c-28f5-4efe-a2bf-f5a814096736.json │ │ │ ├── d4f8133e-5580-4a66-94dd-096d295723a0.json │ │ │ ├── d52cedac-fcc2-4b9c-8f9e-09dcda91974c.json │ │ │ ├── d55b4820-1ccd-44ad-8fbe-60b750abc2dd.json │ │ │ ├── d698a1b6-68d7-480e-8137-421c684f251d.json │ │ │ ├── d6ebad0e-4c95-4ec8-8d0e-2543acc6ad11.json │ │ │ ├── d799b8c1-cac7-4933-aa6d-29acf7fd9d91.json │ │ │ ├── d85b7129-d009-4747-9748-b116739ba660.json │ │ │ ├── d892ea50-fccf-477a-bbdf-418e32dc5b98.json │ │ │ ├── d8de090a-d496-42ea-a1e0-f457dab41f14.json │ │ │ ├── d907d2a6-4caa-4687-898a-58bd5f978d03.json │ │ │ ├── d96d5675-f3e2-42fe-b581-bd2367dc5012.json │ │ │ ├── da7fc721-b375-4b51-afe1-1cb11328c7a8.json │ │ │ ├── dad6586a-c504-4117-b116-4c80a0d1bf52.json │ │ │ ├── dada271d-2656-4c17-b570-72bb748eb7dc.json │ │ │ ├── db9ccccf-9e20-4224-88a7-067e5238960d.json │ │ │ ├── dcc28b9c-8d2f-4569-ad0a-ad5717da3bb7.json │ │ │ ├── dcc2ab57-48e6-4c14-bf14-e8d72c389863.json │ │ │ ├── ddb0ca67-8635-4f40-a01d-06ccb266ef56.json │ │ │ ├── dec30815-883a-45a2-9318-bfb111b383d6.json │ │ │ ├── df964122-964e-4067-8386-45bcb548e39d.json │ │ │ ├── e026bf9d-66a9-49bf-ba77-860b8c60871d.json │ │ │ ├── e2a9ae21-97d6-4e4c-ac55-7fe75a298f6c.json │ │ │ ├── e314e827-9b3a-4282-954f-b3f46ba92f07.json │ │ │ ├── e3835a5d-1eca-4b9c-8c76-f52f4fc17553.json │ │ │ ├── e4da2345-e459-4b6a-982a-337a8ae84e1b.json │ │ │ ├── e5f56833-0ea5-40d8-acc0-0d0f48197a78.json │ │ │ ├── e6322365-8cbc-4d69-9515-341c4b038781.json │ │ │ ├── e663aef7-a697-4164-8ce4-141ac5cef6a9.json │ │ │ ├── e6c0d492-93fc-4798-b6fa-0180f08204f6.json │ │ │ ├── e7b4f7cb-cb36-4795-bfeb-dbd14bf2d520.json │ │ │ ├── e83159f2-abe3-4f94-80de-a149bcf83428.json │ │ │ ├── e8426499-9214-41c8-9717-44f2a4d6d14e.json │ │ │ ├── e885e0ce-a268-4db0-aff2-a0205353e7e4.json │ │ │ ├── ea553c01-9023-41ef-9068-849a054775f6.json │ │ │ ├── ea73c8eb-cac2-4b28-bb9a-d923f32c17ef.json │ │ │ ├── eb8efd2d-b9fa-4f99-9c49-9def24ccc5b5.json │ │ │ ├── ebc9105f-1f6e-44be-b4f2-6d23908278d6.json │ │ │ ├── ec2a6fed-19c2-4364-99cb-a59e8e0929fe.json │ │ │ ├── edd15e05-a785-47d0-9936-8489858f1d89.json │ │ │ ├── edfb040f-bb1e-47d7-8a16-14ac9d2f2f2f.json │ │ │ ├── ef661a83-6355-44d2-aea4-89f7a7c7bd21.json │ │ │ ├── f086728a-8077-4ced-8889-6d9a6e0ab147.json │ │ │ ├── f1bbc9fc-4b0a-4065-843e-f428f1c20346.json │ │ │ ├── f1c315b6-8573-4641-85b1-e9bf76502968.json │ │ │ ├── f23bab33-cad9-4d9c-9ced-a66b3ff4969f.json │ │ │ ├── f2e5ffce-bf2a-4f21-9696-fd948c07d6ae.json │ │ │ ├── f44ac5b9-b998-46ef-b335-9fb42f97fe27.json │ │ │ ├── f5315bf8-0dc2-49e7-abeb-0d7348492e6b.json │ │ │ ├── f6a35c2c-ab10-4531-afea-2cdbdf40f5c1.json │ │ │ ├── f6b97ed0-d090-4c68-a590-8fe743ee6d43.json │ │ │ ├── f80a1747-3d1a-4758-b74a-ba2b54844b8b.json │ │ │ ├── f894c6bf-2f76-4b42-85f4-b89581cee97f.json │ │ │ ├── f92a3196-5c67-4fec-8877-78b28803b8d6.json │ │ │ ├── f93295d1-7501-487d-93ad-6bd019e82cc2.json │ │ │ ├── fb63f22d-2a32-484e-a3e8-41bbae13891b.json │ │ │ ├── fbe69225-8cad-4e54-b4e5-03d6e404bc3f.json │ │ │ ├── fca86c53-d823-41f7-a28d-2146f23e93ef.json │ │ │ ├── fcd4595b-4b67-4b73-84c6-29706a57af38.json │ │ │ ├── fd19f293-d0ca-43d2-8274-810eddf75d21.json │ │ │ ├── fd809ed1-732f-4886-9bbc-f96984329b60.json │ │ │ ├── fe29ffdb-5e1c-44bd-bb9a-2e2e43c1b206.json │ │ │ ├── fea24d8c-ca6b-4643-8f8b-d5133ac40b18.json │ │ │ ├── fea759da-4280-46a8-af3f-ec2cc03b436a.json │ │ │ └── fec3a4f7-e3b5-44d3-bbde-62628489b459.json │ │ ├── f83067b4-919d-4910-acd1-4b3b1c210ecf/ │ │ │ ├── page/ │ │ │ │ ├── 078eb367-e0d1-41ae-921a-e9d76e6a3e3f.json │ │ │ │ ├── 0d890ed8-cfd5-4dcd-9fb5-885582fbb473.json │ │ │ │ ├── 0fe39377-57a9-4d42-a9f1-22fc0c5ba18c.json │ │ │ │ ├── 2a223bf8-9d41-4357-bf2c-673893b25d9f.json │ │ │ │ ├── 2c945759-1c3b-43ac-bf4b-241082ee6166.json │ │ │ │ ├── 65f4f88c-e9ea-4351-954a-f828b3f8229b.json │ │ │ │ ├── 796036f8-ee91-4c3c-8c5a-bb339a704ae0.json │ │ │ │ ├── 869cf304-6409-4b4d-880a-a6aa00c37075.json │ │ │ │ ├── a490fed8-a889-4c1a-be5a-df0ca09e99c6.json │ │ │ │ ├── ac4051c3-064a-4e7b-a2a3-c34f4c6ca7a6.json │ │ │ │ ├── another-child.json │ │ │ │ ├── first-draft.json │ │ │ │ ├── level-4.json │ │ │ │ ├── level-5.json │ │ │ │ ├── level-6.json │ │ │ │ ├── links.json │ │ │ │ ├── list-of-links.json │ │ │ │ ├── my-templated-page.json │ │ │ │ ├── new-page-test.json │ │ │ │ ├── ol-import.json │ │ │ │ ├── our-staff.json │ │ │ │ ├── react-demo.json │ │ │ │ ├── template-page.json │ │ │ │ ├── test-2.json │ │ │ │ └── test-gallery.json │ │ │ ├── post/ │ │ │ │ ├── 2016/ │ │ │ │ │ ├── 02/ │ │ │ │ │ │ └── 19c2a553-1e89-4aec-83ac-aede1931009a.xml │ │ │ │ │ └── 03/ │ │ │ │ │ └── 19a9ee38-3f62-4096-8250-c0eeb7b51e07.xml │ │ │ │ ├── 2017/ │ │ │ │ │ └── 11/ │ │ │ │ │ └── mark-diggety-down.md │ │ │ │ ├── 2018/ │ │ │ │ │ ├── 07/ │ │ │ │ │ │ ├── fresh-draft.xml │ │ │ │ │ │ └── second-draft.xml │ │ │ │ │ └── 10/ │ │ │ │ │ ├── 380c6e5c-f455-4c16-9b4b-c2e6bcdbc8ad.xml │ │ │ │ │ └── 95878177-d5a7-47ce-b8f9-a898bd252e0d.xml │ │ │ │ ├── 2019/ │ │ │ │ │ ├── 02/ │ │ │ │ │ │ └── futurama-.xml │ │ │ │ │ └── 08/ │ │ │ │ │ ├── beer-its-great.xml │ │ │ │ │ └── template-post.xml │ │ │ │ ├── 2020/ │ │ │ │ │ ├── 01/ │ │ │ │ │ │ ├── 3a700a91-0477-4edf-be76-06b5c43e5acf.xml │ │ │ │ │ │ └── 5b01238e-9aa7-4f06-a2b5-6a769ecfbb8f.xml │ │ │ │ │ └── 07/ │ │ │ │ │ └── mike-test.xml │ │ │ │ └── 2023/ │ │ │ │ └── 10/ │ │ │ │ └── new-post.xml │ │ │ ├── projectsettings/ │ │ │ │ └── f83067b4-919d-4910-acd1-4b3b1c210ecf.json │ │ │ ├── siterole/ │ │ │ │ ├── 14a776fd-769e-4f56-a509-f343022dfd70.json │ │ │ │ ├── 42883d65-a3cc-4cb8-9f70-b55189c6c663.json │ │ │ │ ├── 4e98344d-8ef0-4de3-986e-7b5011c29c04.json │ │ │ │ ├── 991131e8-561c-4aa9-a8d7-154526e2f2ab.json │ │ │ │ └── e4967cee-7778-4c79-a1da-91b403045d7a.json │ │ │ ├── sitesettings/ │ │ │ │ └── f83067b4-919d-4910-acd1-4b3b1c210ecf.json │ │ │ ├── siteuser/ │ │ │ │ ├── 17595de8-d27a-4304-bded-76b61a16ad19.json │ │ │ │ └── 32e43f7a-be53-47d1-8442-457865587eba.json │ │ │ ├── userclaim/ │ │ │ │ └── 6221cb09-1c03-47c2-9cc0-92b03a1409a4.json │ │ │ └── userrole/ │ │ │ ├── 17595de8-d27a-4304-bded-76b61a16ad19~4e98344d-8ef0-4de3-986e-7b5011c29c04.json │ │ │ ├── 17595de8-d27a-4304-bded-76b61a16ad19~991131e8-561c-4aa9-a8d7-154526e2f2ab.json │ │ │ └── 32e43f7a-be53-47d1-8442-457865587eba~4e98344d-8ef0-4de3-986e-7b5011c29c04.json │ │ ├── f83067b4-919d-4910-acd1-4b3b1c210ecf~en-GB/ │ │ │ └── projectsettings/ │ │ │ └── f83067b4-919d-4910-acd1-4b3b1c210ecf~en-GB.json │ │ └── f83067b4-919d-4910-acd1-4b3b1c210ecf~fr-FR/ │ │ ├── page/ │ │ │ └── home.json │ │ ├── post/ │ │ │ └── 2019/ │ │ │ └── 03/ │ │ │ └── post-un.xml │ │ └── projectsettings/ │ │ └── f83067b4-919d-4910-acd1-4b3b1c210ecf~fr-FR.json │ ├── package.json │ ├── readme.html │ ├── sitefiles/ │ │ └── s1/ │ │ ├── themes/ │ │ │ ├── _ViewImports.cshtml │ │ │ ├── _ViewStart.cshtml │ │ │ └── custom1/ │ │ │ ├── Shared/ │ │ │ │ └── _Layout.cshtml │ │ │ └── wwwroot/ │ │ │ ├── css/ │ │ │ │ └── style.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ └── bootstrap.esm.js │ │ └── wwwroot/ │ │ └── manifest.json │ ├── sourceDev.WebApp.csproj │ └── wwwroot/ │ ├── css/ │ │ ├── bootstrap.css │ │ ├── fontawesome-all.css │ │ ├── ie11.css │ │ └── site.css │ ├── js/ │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.esm.js │ │ └── jquery.js │ └── wlwmanifest.xml ├── test/ │ ├── cloudscribe.MetaWeblog.Tests/ │ │ ├── MetaWeblogRequestParserTests.cs │ │ ├── cloudscribe.MetaWeblog.Tests.csproj │ │ └── testfiles/ │ │ ├── delete-post-request.xml │ │ ├── get-categories-request-1.xml │ │ ├── get-recent-posts-request-1.xml │ │ ├── get-user-blogs-request-1.xml │ │ ├── new-media-request-1.xml │ │ ├── new-post-request-1.xml │ │ ├── wp-editPage-request1.xml │ │ ├── wp-getPage-request1.xml │ │ ├── wp-getPageList-request.xml │ │ └── wp-newPage-request1.xml │ └── cloudscribe.SimpleContent.Web.Tests/ │ ├── Services/ │ │ └── TeaserServiceTests.cs │ ├── Web/ │ │ └── csscsrControllerShould.cs │ └── cloudscribe.SimpleContent.Web.Tests.csproj ├── tools/ │ └── packages.config ├── update_version.ps1 └── xglobal.json