diff options
| author | ivar <i@oiee.no> | 2025-10-06 12:06:46 +0200 |
|---|---|---|
| committer | ivar <i@oiee.no> | 2025-10-06 12:06:46 +0200 |
| commit | f18f3fee8844df98a30c2d248dfca04643dd4365 (patch) | |
| tree | 599c1b6a97777a84cdcd7fe8333f4718d2e55c85 | |
| download | vegadata-f18f3fee8844df98a30c2d248dfca04643dd4365.tar.xz vegadata-f18f3fee8844df98a30c2d248dfca04643dd4365.zip | |
Initial
188 files changed, 5490 insertions, 0 deletions
diff --git a/.DS_Store b/.DS_Store Binary files differnew file mode 100644 index 0000000..a025b65 --- /dev/null +++ b/.DS_Store diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..cd967fc --- /dev/null +++ b/.dockerignore @@ -0,0 +1,25 @@ +**/.dockerignore +**/.env +**/.git +**/.gitignore +**/.project +**/.settings +**/.toolstarget +**/.vs +**/.vscode +**/.idea +**/*.*proj.user +**/*.dbmdl +**/*.jfm +**/azds.yaml +**/bin +**/charts +**/docker-compose* +**/Dockerfile* +**/node_modules +**/npm-debug.log +**/obj +**/secrets.dev.yaml +**/values.dev.yaml +LICENSE +README.md
\ No newline at end of file diff --git a/.idea/.idea.VegaData/.idea/.gitignore b/.idea/.idea.VegaData/.idea/.gitignore new file mode 100644 index 0000000..c657fe5 --- /dev/null +++ b/.idea/.idea.VegaData/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/modules.xml +/contentModel.xml +/projectSettingsUpdater.xml +/.idea.VegaData.iml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.VegaData/.idea/encodings.xml b/.idea/.idea.VegaData/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.VegaData/.idea/encodings.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" /> +</project>
\ No newline at end of file diff --git a/.idea/.idea.VegaData/.idea/indexLayout.xml b/.idea/.idea.VegaData/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.VegaData/.idea/indexLayout.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="UserContentModel"> + <attachedFolders /> + <explicitIncludes /> + <explicitExcludes /> + </component> +</project>
\ No newline at end of file diff --git a/VegaData.sln b/VegaData.sln new file mode 100644 index 0000000..4bd82ae --- /dev/null +++ b/VegaData.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VegaData", "VegaData\VegaData.csproj", "{E87280D2-4158-4394-9D43-7BED29988922}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E87280D2-4158-4394-9D43-7BED29988922}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E87280D2-4158-4394-9D43-7BED29988922}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E87280D2-4158-4394-9D43-7BED29988922}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E87280D2-4158-4394-9D43-7BED29988922}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/VegaData.sln.DotSettings.user b/VegaData.sln.DotSettings.user new file mode 100644 index 0000000..fa9969e --- /dev/null +++ b/VegaData.sln.DotSettings.user @@ -0,0 +1,2 @@ +<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> + <s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AServiceProvider_002Ecs_002Fl_003A_002E_002E_003F_002E_002E_003FLibrary_003FApplication_0020Support_003FJetBrains_003FRider2025_002E2_003Fresharper_002Dhost_003FSourcesCache_003Fdb31f833b312bc92fbd376adfd43aa89f9abb4df5193b7ac4e9f3a4d064b798_003FServiceProvider_002Ecs/@EntryIndexedValue">ForceIncluded</s:String></wpf:ResourceDictionary>
\ No newline at end of file diff --git a/VegaData/.DS_Store b/VegaData/.DS_Store Binary files differnew file mode 100644 index 0000000..dda511b --- /dev/null +++ b/VegaData/.DS_Store diff --git a/VegaData/.version b/VegaData/.version new file mode 100644 index 0000000..626799f --- /dev/null +++ b/VegaData/.version @@ -0,0 +1 @@ +v1 diff --git a/VegaData/.version-dev b/VegaData/.version-dev new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/VegaData/.version-dev diff --git a/VegaData/Dockerfile b/VegaData/Dockerfile new file mode 100644 index 0000000..afb5c9e --- /dev/null +++ b/VegaData/Dockerfile @@ -0,0 +1,23 @@ +FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base +USER $APP_UID +WORKDIR /app +EXPOSE 8080 +EXPOSE 8081 + +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build +ARG BUILD_CONFIGURATION=Release +WORKDIR /src +COPY ["VegaData/VegaData.csproj", "VegaData/"] +RUN dotnet restore "VegaData/VegaData.csproj" +COPY . . +WORKDIR "/src/VegaData" +RUN dotnet build "./VegaData.csproj" -c $BUILD_CONFIGURATION -o /app/build + +FROM build AS publish +ARG BUILD_CONFIGURATION=Release +RUN dotnet publish "./VegaData.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false + +FROM base AS final +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "VegaData.dll"] diff --git a/VegaData/Program.cs b/VegaData/Program.cs new file mode 100644 index 0000000..ac15e62 --- /dev/null +++ b/VegaData/Program.cs @@ -0,0 +1,133 @@ +using System.Text.Json.Serialization; +using Microsoft.EntityFrameworkCore; + +var builder = WebApplication.CreateBuilder(args); + +builder.Services.AddHttpClient(); +builder.Services.AddDbContext<Database>(o => o.UseSqlite("Data Source=data/main.db")); +builder.Services.AddHostedService<DataWorker>(); + +var app = builder.Build(); +using var scope = app.Services.CreateScope(); +scope.ServiceProvider.GetRequiredService<Database>().Database.EnsureCreated(); +app.MapStaticAssets(); +app.MapGet("shows", (Database db) => db.Shows); +app.MapGet("/", () => Results.Redirect("/index.html")); +app.Run(); + +class Database(DbContextOptions<Database> options) : DbContext(options) +{ + public DbSet<Show> Shows { get; set; } + + protected override void OnModelCreating(ModelBuilder modelBuilder) { + modelBuilder.Entity<Show>().HasIndex(p => new { + p.Title, + p.StartDateTime + }) + .IsUnique(); + base.OnModelCreating(modelBuilder); + } +} + +class Show +{ + public int Id { get; set; } + public string Title { get; set; } + public string Scene { get; set; } + public DateTimeOffset StartDateTime { get; set; } + public string TicketUrl { get; set; } + public string Type { get; set; } + public string MovieVersion { get; set; } + public string MovieMainVersion { get; set; } + public string[] Tags { get; set; } +} + +class DataWorker(IServiceScopeFactory serviceScopeFactory) : BackgroundService +{ + protected override async Task ExecuteAsync(CancellationToken stoppingToken) { + const int hour = 3600 * 60; + while (!stoppingToken.IsCancellationRequested) { + await Work(stoppingToken); + await Task.Delay(hour, stoppingToken); + } + } + + async Task Work(CancellationToken ct) { + using var scope = serviceScopeFactory.CreateScope(); + var db = scope.ServiceProvider.GetRequiredService<Database>(); + var http = scope.ServiceProvider.GetRequiredService<HttpClient>(); + var logger = scope.ServiceProvider.GetRequiredService<ILogger<DataWorker>>(); + var refreshData = Environment.GetEnvironmentVariable("VEGADATA_REFRESH_DATA") == "1"; + logger.LogInformation("Syncing data. refresh:{refreshData}", refreshData); + var shows = await http.GetFromJsonAsync<ShowsResponse>("https://www.vegascene.no/api/program", ct); + var addedCount = 0; + + if (refreshData) { + db.Shows.RemoveRange(db.Shows); + await db.SaveChangesAsync(ct); + File.Copy("data/main.db", $"data/main-{DateTime.UnixEpoch}.db"); + } + + var count = await db.Shows.CountAsync(ct); + + foreach (var show in shows?.Shows ?? []) { + var existing = await db.Shows.AnyAsync(s => + s.Title == show.MovieTitle && s.StartDateTime == show.ShowStart, ct); + if (existing) continue; + db.Shows.Add(new Show() { + Title = show.MovieTitle, + Scene = show.ScreenName, + StartDateTime = show.ShowStart, + MovieMainVersion = show.MovieMainVersionId, + MovieVersion = show.MovieVersionId, + TicketUrl = show.TicketSaleUrl, + Type = show.ShowType, + Tags = show.VersionTags.Select(t => t.Tag).ToArray() + }); + addedCount++; + } + await db.SaveChangesAsync(ct); + logger.LogInformation("Synced data, old count:{count}, new count:{addedCount}", count, addedCount); + } + + class ShowsResponse + { + public List<VegaShow> Shows { get; set; } + } + + class VegaShow + { + [JsonPropertyName("screenName")] + public string ScreenName { get; set; } + + [JsonPropertyName("ticketSaleUrl")] + public string TicketSaleUrl { get; set; } + + [JsonPropertyName("showType")] + public string ShowType { get; set; } + + [JsonPropertyName("showStart")] + public DateTimeOffset ShowStart { get; set; } + + [JsonPropertyName("movieVersionId")] + public string MovieVersionId { get; set; } + + [JsonPropertyName("movieMainVersionId")] + public string MovieMainVersionId { get; set; } + + [JsonPropertyName("movieTitle")] + public string MovieTitle { get; set; } + + [JsonPropertyName("versionTags")] + public VersionTag[] VersionTags { get; set; } + } + + public class VersionTag + { + [JsonPropertyName("tag")] + public string Tag { get; set; } + + [JsonPropertyName("type")] + public string Type { get; set; } + } +}
\ No newline at end of file diff --git a/VegaData/Properties/launchSettings.json b/VegaData/Properties/launchSettings.json new file mode 100644 index 0000000..e579794 --- /dev/null +++ b/VegaData/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "http://localhost:5234", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "https://localhost:7097;http://localhost:5234", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/VegaData/VegaData.csproj b/VegaData/VegaData.csproj new file mode 100644 index 0000000..7555e31 --- /dev/null +++ b/VegaData/VegaData.csproj @@ -0,0 +1,29 @@ +<Project Sdk="Microsoft.NET.Sdk.Web"> + + <PropertyGroup> + <TargetFramework>net10.0</TargetFramework> + <Nullable>enable</Nullable> + <ImplicitUsings>enable</ImplicitUsings> + <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" /> + <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.9"> + <PrivateAssets>all</PrivateAssets> + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> + </PackageReference> + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.9" /> + </ItemGroup> + + <ItemGroup> + <Content Include="..\.dockerignore"> + <Link>.dockerignore</Link> + </Content> + </ItemGroup> + + <ItemGroup> + <Folder Include="data\" /> + </ItemGroup> + +</Project> diff --git a/VegaData/appsettings.Development.json b/VegaData/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/VegaData/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/VegaData/appsettings.json b/VegaData/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/VegaData/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/VegaData/bin/Debug/net10.0/Humanizer.dll b/VegaData/bin/Debug/net10.0/Humanizer.dll Binary files differnew file mode 100755 index 0000000..c9a7ef8 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Humanizer.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll b/VegaData/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll Binary files differnew file mode 100755 index 0000000..f5f1cee --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.Build.Locator.dll b/VegaData/bin/Debug/net10.0/Microsoft.Build.Locator.dll Binary files differnew file mode 100755 index 0000000..446d341 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.Build.Locator.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll Binary files differnew file mode 100755 index 0000000..2e99f76 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll Binary files differnew file mode 100755 index 0000000..8d56de1 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll Binary files differnew file mode 100755 index 0000000..a17c676 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll Binary files differnew file mode 100755 index 0000000..f70a016 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll Binary files differnew file mode 100755 index 0000000..7253875 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll Binary files differnew file mode 100755 index 0000000..7d537db --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.Data.Sqlite.dll b/VegaData/bin/Debug/net10.0/Microsoft.Data.Sqlite.dll Binary files differnew file mode 100755 index 0000000..64e0448 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.Data.Sqlite.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll Binary files differnew file mode 100755 index 0000000..69538cb --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll b/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll Binary files differnew file mode 100755 index 0000000..650dbdc --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll b/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll Binary files differnew file mode 100755 index 0000000..083c63b --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Sqlite.dll b/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Sqlite.dll Binary files differnew file mode 100755 index 0000000..aeacafb --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Sqlite.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll b/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll Binary files differnew file mode 100755 index 0000000..8face4d --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll diff --git a/VegaData/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll b/VegaData/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll Binary files differnew file mode 100755 index 0000000..0919f2c --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll diff --git a/VegaData/bin/Debug/net10.0/Mono.TextTemplating.dll b/VegaData/bin/Debug/net10.0/Mono.TextTemplating.dll Binary files differnew file mode 100755 index 0000000..4a76511 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/Mono.TextTemplating.dll diff --git a/VegaData/bin/Debug/net10.0/SQLitePCLRaw.batteries_v2.dll b/VegaData/bin/Debug/net10.0/SQLitePCLRaw.batteries_v2.dll Binary files differnew file mode 100755 index 0000000..53e53eb --- /dev/null +++ b/VegaData/bin/Debug/net10.0/SQLitePCLRaw.batteries_v2.dll diff --git a/VegaData/bin/Debug/net10.0/SQLitePCLRaw.core.dll b/VegaData/bin/Debug/net10.0/SQLitePCLRaw.core.dll Binary files differnew file mode 100755 index 0000000..b563677 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/SQLitePCLRaw.core.dll diff --git a/VegaData/bin/Debug/net10.0/SQLitePCLRaw.provider.e_sqlite3.dll b/VegaData/bin/Debug/net10.0/SQLitePCLRaw.provider.e_sqlite3.dll Binary files differnew file mode 100755 index 0000000..a06a782 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/SQLitePCLRaw.provider.e_sqlite3.dll diff --git a/VegaData/bin/Debug/net10.0/System.CodeDom.dll b/VegaData/bin/Debug/net10.0/System.CodeDom.dll Binary files differnew file mode 100755 index 0000000..54c82b6 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/System.CodeDom.dll diff --git a/VegaData/bin/Debug/net10.0/System.Composition.AttributedModel.dll b/VegaData/bin/Debug/net10.0/System.Composition.AttributedModel.dll Binary files differnew file mode 100755 index 0000000..1431751 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/System.Composition.AttributedModel.dll diff --git a/VegaData/bin/Debug/net10.0/System.Composition.Convention.dll b/VegaData/bin/Debug/net10.0/System.Composition.Convention.dll Binary files differnew file mode 100755 index 0000000..e9dacb1 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/System.Composition.Convention.dll diff --git a/VegaData/bin/Debug/net10.0/System.Composition.Hosting.dll b/VegaData/bin/Debug/net10.0/System.Composition.Hosting.dll Binary files differnew file mode 100755 index 0000000..8381202 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/System.Composition.Hosting.dll diff --git a/VegaData/bin/Debug/net10.0/System.Composition.Runtime.dll b/VegaData/bin/Debug/net10.0/System.Composition.Runtime.dll Binary files differnew file mode 100755 index 0000000..d583c3a --- /dev/null +++ b/VegaData/bin/Debug/net10.0/System.Composition.Runtime.dll diff --git a/VegaData/bin/Debug/net10.0/System.Composition.TypedParts.dll b/VegaData/bin/Debug/net10.0/System.Composition.TypedParts.dll Binary files differnew file mode 100755 index 0000000..2b278d7 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/System.Composition.TypedParts.dll diff --git a/VegaData/bin/Debug/net10.0/VegaData b/VegaData/bin/Debug/net10.0/VegaData Binary files differnew file mode 100755 index 0000000..6efd107 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/VegaData diff --git a/VegaData/bin/Debug/net10.0/VegaData.deps.json b/VegaData/bin/Debug/net10.0/VegaData.deps.json new file mode 100644 index 0000000..ae82e94 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/VegaData.deps.json @@ -0,0 +1,824 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "VegaData/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.9", + "Microsoft.EntityFrameworkCore.Design": "9.0.9", + "Microsoft.EntityFrameworkCore.Sqlite": "9.0.9" + }, + "runtime": { + "VegaData.dll": {} + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Sqlite.Core/9.0.9": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.9": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.9" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.9": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" + } + } + }, + "Microsoft.EntityFrameworkCore.Design/9.0.9": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", + "Microsoft.Extensions.DependencyModel": "9.0.9", + "Mono.TextTemplating": "3.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.9": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.9" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/9.0.9": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "9.0.9", + "Microsoft.Extensions.DependencyModel": "9.0.9", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10", + "SQLitePCLRaw.core": "2.1.10" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.9": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "9.0.9", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", + "Microsoft.Extensions.DependencyModel": "9.0.9", + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "9.0.9.0", + "fileVersion": "9.0.925.41909" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.9": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.9", + "fileVersion": "9.0.925.41916" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.10", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.10" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "SQLitePCLRaw.core/2.1.10": { + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-s390x/native/libe_sqlite3.so": { + "rid": "linux-musl-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.10.2445", + "fileVersion": "2.1.10.2445" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + } + } + }, + "libraries": { + "VegaData/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/9.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DjxZRueHp0qvZxhvW+H1IWYkSofZI8Chg710KYJjNP/6S4q3rt97pvR8AHOompkSwaN92VLKz5uw01iUt85cMg==", + "path": "microsoft.data.sqlite.core/9.0.9", + "hashPath": "microsoft.data.sqlite.core.9.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zkt5yQgnpWKX3rOxn+ZcV23Aj0296XCTqg4lx1hKY+wMXBgkn377UhBrY/A4H6kLpNT7wqZN98xCV0YHXu9VRA==", + "path": "microsoft.entityframeworkcore/9.0.9", + "hashPath": "microsoft.entityframeworkcore.9.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QdM2k3Mnip2QsaxJbCI95dc2SajRMENdmaMhVKj4jPC5dmkoRcu3eEdvZAgDbd4bFVV1jtPGdHtXewtoBMlZqA==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.9", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cFxH70tohWe3ugCjLhZB01mR7WHpg5dEK6zHsbkDFfpLxWT+HoZQKgchTJgF4bPWBPTyrlYlqfPY212fFtmJjg==", + "path": "microsoft.entityframeworkcore.design/9.0.9", + "hashPath": "microsoft.entityframeworkcore.design.9.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SonFU9a8x4jZIhIBtCw1hIE3QKjd4c7Y3mjptoh682dfQe7K9pUPGcEV/sk4n8AJdq4fkyJPCaOdYaObhae/Iw==", + "path": "microsoft.entityframeworkcore.relational/9.0.9", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/9.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SiAd32IMTAQDo+jQt5GAzCq+5qI/OEdsrbW0qEDr0hUEAh3jnRlt0gbZgDGDUtWk5SWITufB6AOZi0qet9dJIw==", + "path": "microsoft.entityframeworkcore.sqlite/9.0.9", + "hashPath": "microsoft.entityframeworkcore.sqlite.9.0.9.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eQVF8fBgDxjnjan3EB1ysdfDO7lKKfWKTT4VR0BInU4Mi6ADdgiOdm6qvZ/ufh04f3hhPL5lyknx5XotGzBh8A==", + "path": "microsoft.entityframeworkcore.sqlite.core/9.0.9", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.9.0.9.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fNGvKct2De8ghm0Bpfq0iWthtzIWabgOTi+gJhNOPhNJIowXNEUE2eZNW/zNCzrHVA3PXg2yZ+3cWZndC2IqYA==", + "path": "microsoft.extensions.dependencymodel/9.0.9", + "hashPath": "microsoft.extensions.dependencymodel.9.0.9.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==", + "path": "sqlitepclraw.core/2.1.10", + "hashPath": "sqlitepclraw.core.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.10", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + } + } +}
\ No newline at end of file diff --git a/VegaData/bin/Debug/net10.0/VegaData.dll b/VegaData/bin/Debug/net10.0/VegaData.dll Binary files differnew file mode 100644 index 0000000..8baae4a --- /dev/null +++ b/VegaData/bin/Debug/net10.0/VegaData.dll diff --git a/VegaData/bin/Debug/net10.0/VegaData.pdb b/VegaData/bin/Debug/net10.0/VegaData.pdb Binary files differnew file mode 100644 index 0000000..029a398 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/VegaData.pdb diff --git a/VegaData/bin/Debug/net10.0/VegaData.runtimeconfig.json b/VegaData/bin/Debug/net10.0/VegaData.runtimeconfig.json new file mode 100644 index 0000000..5319094 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/VegaData.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0-rc.1.25451.107" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0-rc.1.25451.107" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +}
\ No newline at end of file diff --git a/VegaData/bin/Debug/net10.0/VegaData.staticwebassets.endpoints.json b/VegaData/bin/Debug/net10.0/VegaData.staticwebassets.endpoints.json new file mode 100644 index 0000000..f1c9e9c --- /dev/null +++ b/VegaData/bin/Debug/net10.0/VegaData.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.7a0zyzwfwy.otf","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000052331362"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"ETag","Value":"W/\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7a0zyzwfwy"},{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="},{"Name":"label","Value":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf"}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.7a0zyzwfwy.otf","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33308"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Wed, 27 May 2020 13:20:54 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7a0zyzwfwy"},{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="},{"Name":"label","Value":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf"}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.7a0zyzwfwy.otf.gz","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7a0zyzwfwy"},{"Name":"integrity","Value":"sha256-JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU="},{"Name":"label","Value":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz"}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000052331362"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"ETag","Value":"W/\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"33308"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Wed, 27 May 2020 13:20:54 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU="}]},{"Route":"Baskerville No.2 Regular/readme.html","AssetFile":"Baskerville No.2 Regular/readme.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000641025641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"ETag","Value":"W/\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="}]},{"Route":"Baskerville No.2 Regular/readme.html","AssetFile":"Baskerville No.2 Regular/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4673"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 04:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="}]},{"Route":"Baskerville No.2 Regular/readme.html.gz","AssetFile":"Baskerville No.2 Regular/readme.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI="}]},{"Route":"Baskerville No.2 Regular/readme.yfy9ywpu3b.html","AssetFile":"Baskerville No.2 Regular/readme.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000641025641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"ETag","Value":"W/\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfy9ywpu3b"},{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="},{"Name":"label","Value":"Baskerville No.2 Regular/readme.html"}]},{"Route":"Baskerville No.2 Regular/readme.yfy9ywpu3b.html","AssetFile":"Baskerville No.2 Regular/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4673"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 04:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfy9ywpu3b"},{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="},{"Name":"label","Value":"Baskerville No.2 Regular/readme.html"}]},{"Route":"Baskerville No.2 Regular/readme.yfy9ywpu3b.html.gz","AssetFile":"Baskerville No.2 Regular/readme.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfy9ywpu3b"},{"Name":"integrity","Value":"sha256-1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI="},{"Name":"label","Value":"Baskerville No.2 Regular/readme.html.gz"}]},{"Route":"Broadsheet Italic/Broadsheet Italic.60keq2ltsu.ttf","AssetFile":"Broadsheet Italic/Broadsheet Italic.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"132156"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4=\""},{"Name":"Last-Modified","Value":"Thu, 28 May 2020 00:25:42 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"60keq2ltsu"},{"Name":"integrity","Value":"sha256-OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4="},{"Name":"label","Value":"Broadsheet Italic/Broadsheet Italic.ttf"}]},{"Route":"Broadsheet Italic/Broadsheet Italic.ttf","AssetFile":"Broadsheet Italic/Broadsheet Italic.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"132156"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4=\""},{"Name":"Last-Modified","Value":"Thu, 28 May 2020 00:25:42 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4="}]},{"Route":"Broadsheet Italic/readme.3khy7v971e.html","AssetFile":"Broadsheet Italic/readme.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000644745326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"ETag","Value":"W/\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3khy7v971e"},{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="},{"Name":"label","Value":"Broadsheet Italic/readme.html"}]},{"Route":"Broadsheet Italic/readme.3khy7v971e.html","AssetFile":"Broadsheet Italic/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4647"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 05:39:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3khy7v971e"},{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="},{"Name":"label","Value":"Broadsheet Italic/readme.html"}]},{"Route":"Broadsheet Italic/readme.3khy7v971e.html.gz","AssetFile":"Broadsheet Italic/readme.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3khy7v971e"},{"Name":"integrity","Value":"sha256-QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc="},{"Name":"label","Value":"Broadsheet Italic/readme.html.gz"}]},{"Route":"Broadsheet Italic/readme.html","AssetFile":"Broadsheet Italic/readme.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000644745326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"ETag","Value":"W/\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="}]},{"Route":"Broadsheet Italic/readme.html","AssetFile":"Broadsheet Italic/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4647"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 05:39:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="}]},{"Route":"Broadsheet Italic/readme.html.gz","AssetFile":"Broadsheet Italic/readme.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc="}]},{"Route":"framework.js","AssetFile":"framework.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000826446281"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"ETag","Value":"W/\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="}]},{"Route":"framework.js","AssetFile":"framework.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 20:03:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="}]},{"Route":"framework.js.gz","AssetFile":"framework.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4="}]},{"Route":"framework.qvqco1elc0.js","AssetFile":"framework.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000826446281"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"ETag","Value":"W/\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qvqco1elc0"},{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="},{"Name":"label","Value":"framework.js"}]},{"Route":"framework.qvqco1elc0.js","AssetFile":"framework.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 20:03:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qvqco1elc0"},{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="},{"Name":"label","Value":"framework.js"}]},{"Route":"framework.qvqco1elc0.js.gz","AssetFile":"framework.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qvqco1elc0"},{"Name":"integrity","Value":"sha256-CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4="},{"Name":"label","Value":"framework.js.gz"}]},{"Route":"index.a1q9nw6q71.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001111111111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"ETag","Value":"W/\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a1q9nw6q71"},{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="},{"Name":"label","Value":"index.html"}]},{"Route":"index.a1q9nw6q71.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2700"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:43:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a1q9nw6q71"},{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="},{"Name":"label","Value":"index.html"}]},{"Route":"index.a1q9nw6q71.html.gz","AssetFile":"index.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a1q9nw6q71"},{"Name":"integrity","Value":"sha256-vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA="},{"Name":"label","Value":"index.html.gz"}]},{"Route":"index.gtn5t02q4c.js","AssetFile":"index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000780640125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"ETag","Value":"W/\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gtn5t02q4c"},{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="},{"Name":"label","Value":"index.js"}]},{"Route":"index.gtn5t02q4c.js","AssetFile":"index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3378"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:37:59 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gtn5t02q4c"},{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="},{"Name":"label","Value":"index.js"}]},{"Route":"index.gtn5t02q4c.js.gz","AssetFile":"index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gtn5t02q4c"},{"Name":"integrity","Value":"sha256-KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4="},{"Name":"label","Value":"index.js.gz"}]},{"Route":"index.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001111111111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"ETag","Value":"W/\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="}]},{"Route":"index.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2700"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:43:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="}]},{"Route":"index.html.gz","AssetFile":"index.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA="}]},{"Route":"index.js","AssetFile":"index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000780640125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"ETag","Value":"W/\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="}]},{"Route":"index.js","AssetFile":"index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3378"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:37:59 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="}]},{"Route":"index.js.gz","AssetFile":"index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4="}]}]}
\ No newline at end of file diff --git a/VegaData/bin/Debug/net10.0/VegaData.staticwebassets.runtime.json b/VegaData/bin/Debug/net10.0/VegaData.staticwebassets.runtime.json new file mode 100644 index 0000000..4309a0d --- /dev/null +++ b/VegaData/bin/Debug/net10.0/VegaData.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"framework.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"framework.js"},"Patterns":null},"framework.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"index.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz"},"Patterns":null},"index.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.js"},"Patterns":null},"index.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz"},"Patterns":null},"Baskerville No.2 Regular":{"Children":{"Baskerville No.2 Regular.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf"},"Patterns":null},"Baskerville No.2 Regular.otf.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz"},"Patterns":null},"readme.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Baskerville No.2 Regular/readme.html"},"Patterns":null},"readme.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Broadsheet Italic":{"Children":{"Broadsheet Italic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Broadsheet Italic/Broadsheet Italic.ttf"},"Patterns":null},"readme.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Broadsheet Italic/readme.html"},"Patterns":null},"readme.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file diff --git a/VegaData/bin/Debug/net10.0/appsettings.Development.json b/VegaData/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/VegaData/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/VegaData/bin/Debug/net10.0/appsettings.json b/VegaData/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..4e90e20 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..8dcc1bd --- /dev/null +++ b/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..8ee4b4d --- /dev/null +++ b/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..62b0422 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..180a8d9 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..4b7bae7 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..05da79f --- /dev/null +++ b/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..bd0bb72 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..e128407 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..6a98feb --- /dev/null +++ b/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..8e8ced1 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..970399e --- /dev/null +++ b/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..9e6afdd --- /dev/null +++ b/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..6cb47ac --- /dev/null +++ b/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..76ddceb --- /dev/null +++ b/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..c41ed4c --- /dev/null +++ b/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..5fe6dd8 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..6eb37cb --- /dev/null +++ b/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..046c953 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..368bb7b --- /dev/null +++ b/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..72bb9d5 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..6051d99 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..ad0d2cd --- /dev/null +++ b/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..829ed5d --- /dev/null +++ b/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..9890df1 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..eaded8c --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..47f3fd5 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..28c43a1 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..203cc83 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..208b1d9 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..895ca11 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..c712a37 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..4d5b1a3 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..4790c29 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..05bc700 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..eb61aff --- /dev/null +++ b/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..ea192cc --- /dev/null +++ b/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..08eaeab --- /dev/null +++ b/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..fce2d36 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..e142029 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..7c20209 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..be86033 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..4be51d2 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..768264c --- /dev/null +++ b/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..0dc6fae --- /dev/null +++ b/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..85dd902 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..dfd0a6b --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..f5e6b57 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..cafdf21 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..ace0504 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a b/VegaData/bin/Debug/net10.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a Binary files differnew file mode 100755 index 0000000..5a5a2a3 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-arm/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-arm/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..a6a80a4 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-arm/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-arm64/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-arm64/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..a1030eb --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-arm64/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-armel/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-armel/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..56fc44d --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-armel/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-mips64/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-mips64/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..15883be --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-mips64/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-musl-arm/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-musl-arm/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..28eaa8b --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-musl-arm/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..5a6a8f7 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..c576551 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..980a4a6 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-ppc64le/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-ppc64le/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..3f7dca6 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-ppc64le/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-s390x/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-s390x/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..a4bb64d --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-s390x/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-x64/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-x64/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..705798a --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-x64/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/linux-x86/native/libe_sqlite3.so b/VegaData/bin/Debug/net10.0/runtimes/linux-x86/native/libe_sqlite3.so Binary files differnew file mode 100755 index 0000000..c32107b --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/linux-x86/native/libe_sqlite3.so diff --git a/VegaData/bin/Debug/net10.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/VegaData/bin/Debug/net10.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib Binary files differnew file mode 100755 index 0000000..f32c878 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib diff --git a/VegaData/bin/Debug/net10.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/VegaData/bin/Debug/net10.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib Binary files differnew file mode 100755 index 0000000..33a1c68 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib diff --git a/VegaData/bin/Debug/net10.0/runtimes/osx-arm64/native/libe_sqlite3.dylib b/VegaData/bin/Debug/net10.0/runtimes/osx-arm64/native/libe_sqlite3.dylib Binary files differnew file mode 100755 index 0000000..05932eb --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/osx-arm64/native/libe_sqlite3.dylib diff --git a/VegaData/bin/Debug/net10.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/VegaData/bin/Debug/net10.0/runtimes/osx-x64/native/libe_sqlite3.dylib Binary files differnew file mode 100755 index 0000000..0cd9a57 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/osx-x64/native/libe_sqlite3.dylib diff --git a/VegaData/bin/Debug/net10.0/runtimes/win-arm/native/e_sqlite3.dll b/VegaData/bin/Debug/net10.0/runtimes/win-arm/native/e_sqlite3.dll Binary files differnew file mode 100755 index 0000000..8294262 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/win-arm/native/e_sqlite3.dll diff --git a/VegaData/bin/Debug/net10.0/runtimes/win-arm64/native/e_sqlite3.dll b/VegaData/bin/Debug/net10.0/runtimes/win-arm64/native/e_sqlite3.dll Binary files differnew file mode 100755 index 0000000..4ac1f79 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/win-arm64/native/e_sqlite3.dll diff --git a/VegaData/bin/Debug/net10.0/runtimes/win-x64/native/e_sqlite3.dll b/VegaData/bin/Debug/net10.0/runtimes/win-x64/native/e_sqlite3.dll Binary files differnew file mode 100755 index 0000000..8c1c1d9 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/win-x64/native/e_sqlite3.dll diff --git a/VegaData/bin/Debug/net10.0/runtimes/win-x86/native/e_sqlite3.dll b/VegaData/bin/Debug/net10.0/runtimes/win-x86/native/e_sqlite3.dll Binary files differnew file mode 100755 index 0000000..0e05ac0 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/runtimes/win-x86/native/e_sqlite3.dll diff --git a/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..9867f6f --- /dev/null +++ b/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..2a4742e --- /dev/null +++ b/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..8977db0 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..8012969 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..9a06288 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..e4b3c7a --- /dev/null +++ b/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..b51ee57 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..d160925 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..e27e8be --- /dev/null +++ b/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..22b6e95 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..57e4d28 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll Binary files differnew file mode 100755 index 0000000..305dfbf --- /dev/null +++ b/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll diff --git a/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll Binary files differnew file mode 100755 index 0000000..28a5c18 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll diff --git a/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll Binary files differnew file mode 100755 index 0000000..cef3ebc --- /dev/null +++ b/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll diff --git a/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll Binary files differnew file mode 100755 index 0000000..dce3bc0 --- /dev/null +++ b/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll diff --git a/VegaData/build_and_push.sh b/VegaData/build_and_push.sh new file mode 100755 index 0000000..34b0ff1 --- /dev/null +++ b/VegaData/build_and_push.sh @@ -0,0 +1,87 @@ +#!/usr/bin/env bash + +set -Eueo pipefail + +CURRENT_DEV_VERSION=$(cat .version-dev) +CURRENT_DEV_VERSION_INT=${CURRENT_DEV_VERSION//[!0-9]/} +CURRENT_VERSION=$(cat .version) +CURRENT_VERSION_INT=${CURRENT_VERSION//[!0-9]/} +if [ ${1-prod} == "dev" ]; then + NEW_VERSION="v$((CURRENT_DEV_VERSION_INT + 1))-dev" +else + NEW_VERSION="v$((CURRENT_VERSION_INT + 1))" +fi +IMAGE_NAME="vegadata/server" +HUB_NAME="dr.ivar.systems/vegadata/server" + +# Check for uncommited changes and optionally commit them +if [ "$(git status --untracked-files=no --porcelain)" ]; then + echo "Unclean git tree! press CTRL+C to exit or press ENTER to commit and push to the default branch" + read -n 1 + + read -p "Enter commit message: " COMMIT_MESSAGE + git add .. + git commit --quiet -m "$COMMIT_MESSAGE" +fi + +if [ ${1-prod} == "dev" ]; then + echo $NEW_VERSION >|.version-dev + git add .version-dev +else + echo $NEW_VERSION >|.version + git add .version +fi + +echo "Starting build of $HUB_NAME:$NEW_VERSION at $(date -u)..." +echo + +# Put version.txt inside of server +pushd src/wwwroot +echo "$NEW_VERSION" >version.txt +git add version.txt +popd + +git commit --quiet -m "chore(release): Bump version" + +read -p "Do you want to tag this build? (y/n) " -n 1 -r +echo +if [[ $REPLY =~ ^[Yy]$ ]]; then + read -p "Enter tag message (can be empty): " TAG_MESSAGE + git tag -am "$TAG_MESSAGE" $NEW_VERSION +fi + +read -p "Do you want to push the latest commits and tags to origin? (y/n) " -n 1 -r +echo +if [[ $REPLY =~ ^[Yy]$ ]]; then + echo "Pushing latest changes to remotes..." + echo + git push --quiet --follow-tags +fi + +# Build podman image +echo "Building podman image" +echo + +podman build -t $IMAGE_NAME:$NEW_VERSION . + +podman tag $IMAGE_NAME:$NEW_VERSION $HUB_NAME:$NEW_VERSION + +if [ ${1-prod} == "dev" ]; then + podman tag $IMAGE_NAME:$NEW_VERSION $HUB_NAME:latest-dev +fi +if [ ${1-prod} == "prod" ]; then + podman tag $IMAGE_NAME:$NEW_VERSION $HUB_NAME:latest +fi + +# Optionally push images to podman registry +echo "Press CTRL+C to exit or press ENTER to push podman image to registry" +read -n 1 +podman push $HUB_NAME:$NEW_VERSION + +if [ ${1-prod} == "dev" ]; then + podman push $HUB_NAME:latest-dev +fi + +if [ ${1-prod} == "prod" ]; then + podman push $HUB_NAME:latest +fi diff --git a/VegaData/data/main.db b/VegaData/data/main.db Binary files differnew file mode 100644 index 0000000..950baf2 --- /dev/null +++ b/VegaData/data/main.db diff --git a/VegaData/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/VegaData/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/VegaData/obj/Debug/net10.0/VegaData.AssemblyInfo.cs b/VegaData/obj/Debug/net10.0/VegaData.AssemblyInfo.cs new file mode 100644 index 0000000..b6bef53 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// </auto-generated> +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("VegaData")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("VegaData")] +[assembly: System.Reflection.AssemblyTitleAttribute("VegaData")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/VegaData/obj/Debug/net10.0/VegaData.AssemblyInfoInputs.cache b/VegaData/obj/Debug/net10.0/VegaData.AssemblyInfoInputs.cache new file mode 100644 index 0000000..67adf66 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +12c6df6e04da5ab6cefd6ad4d22e4c951241ed16728a63fba4ec1852ebc30c75 diff --git a/VegaData/obj/Debug/net10.0/VegaData.GeneratedMSBuildEditorConfig.editorconfig b/VegaData/obj/Debug/net10.0/VegaData.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..83c5f92 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,31 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFramework = net10.0 +build_property.TargetPlatformMinVersion = +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.RootNamespace = VegaData +build_property.RootNamespace = VegaData +build_property.ProjectDir = /Users/ivarlovlie/RiderProjects/VegaData/VegaData/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /Users/ivarlovlie/RiderProjects/VegaData/VegaData +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/VegaData/obj/Debug/net10.0/VegaData.GlobalUsings.g.cs b/VegaData/obj/Debug/net10.0/VegaData.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// <auto-generated/> +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/VegaData/obj/Debug/net10.0/VegaData.MvcApplicationPartsAssemblyInfo.cache b/VegaData/obj/Debug/net10.0/VegaData.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.MvcApplicationPartsAssemblyInfo.cache diff --git a/VegaData/obj/Debug/net10.0/VegaData.assets.cache b/VegaData/obj/Debug/net10.0/VegaData.assets.cache Binary files differnew file mode 100644 index 0000000..b2bf6c9 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.assets.cache diff --git a/VegaData/obj/Debug/net10.0/VegaData.csproj.AssemblyReference.cache b/VegaData/obj/Debug/net10.0/VegaData.csproj.AssemblyReference.cache Binary files differnew file mode 100644 index 0000000..41782c8 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.csproj.AssemblyReference.cache diff --git a/VegaData/obj/Debug/net10.0/VegaData.csproj.CoreCompileInputs.cache b/VegaData/obj/Debug/net10.0/VegaData.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..52e93bd --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e65019639aa8bef456a93ad0f1ac3ba7f062d7c0e6cb8d1453577acbd07f196a diff --git a/VegaData/obj/Debug/net10.0/VegaData.csproj.FileListAbsolute.txt b/VegaData/obj/Debug/net10.0/VegaData.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..eba6177 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.csproj.FileListAbsolute.txt @@ -0,0 +1,149 @@ +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/appsettings.Development.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/appsettings.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/VegaData.staticwebassets.endpoints.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/VegaData +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/VegaData.deps.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/VegaData.runtimeconfig.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/VegaData.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/VegaData.pdb +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Humanizer.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.Build.Locator.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.Data.Sqlite.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Sqlite.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/Mono.TextTemplating.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/SQLitePCLRaw.batteries_v2.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/SQLitePCLRaw.core.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/SQLitePCLRaw.provider.e_sqlite3.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/System.CodeDom.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/System.Composition.AttributedModel.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/System.Composition.Convention.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/System.Composition.Hosting.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/System.Composition.Runtime.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/System.Composition.TypedParts.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-arm/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-arm64/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-armel/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-mips64/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-musl-arm/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-ppc64le/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-s390x/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-x64/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/linux-x86/native/libe_sqlite3.so +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/osx-arm64/native/libe_sqlite3.dylib +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/osx-x64/native/libe_sqlite3.dylib +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/win-arm/native/e_sqlite3.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/win-arm64/native/e_sqlite3.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/win-x64/native/e_sqlite3.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/runtimes/win-x86/native/e_sqlite3.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/VegaData.csproj.AssemblyReference.cache +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/rpswa.dswa.cache.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/VegaData.GeneratedMSBuildEditorConfig.editorconfig +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/VegaData.AssemblyInfoInputs.cache +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/VegaData.AssemblyInfo.cs +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/VegaData.csproj.CoreCompileInputs.cache +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/VegaData.MvcApplicationPartsAssemblyInfo.cache +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/rjimswa.dswa.cache.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/scopedcss/bundle/VegaData.styles.css +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/staticwebassets.build.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/staticwebassets.build.json.cache +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/staticwebassets.development.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/swae.build.ex.cache +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/VegaData.csproj.Up2Date +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/VegaData.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/refint/VegaData.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/VegaData.pdb +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/VegaData.genruntimeconfig.cache +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/ref/VegaData.dll +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/bin/Debug/net10.0/VegaData.staticwebassets.runtime.json +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz +/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz diff --git a/VegaData/obj/Debug/net10.0/VegaData.csproj.Up2Date b/VegaData/obj/Debug/net10.0/VegaData.csproj.Up2Date new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.csproj.Up2Date diff --git a/VegaData/obj/Debug/net10.0/VegaData.dll b/VegaData/obj/Debug/net10.0/VegaData.dll Binary files differnew file mode 100644 index 0000000..8baae4a --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.dll diff --git a/VegaData/obj/Debug/net10.0/VegaData.genruntimeconfig.cache b/VegaData/obj/Debug/net10.0/VegaData.genruntimeconfig.cache new file mode 100644 index 0000000..c5e92ee --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.genruntimeconfig.cache @@ -0,0 +1 @@ +a09863f5e0b1ff851aa4ef8e2f557f658bae59f7c8258d8d86f1ebcc57912328 diff --git a/VegaData/obj/Debug/net10.0/VegaData.pdb b/VegaData/obj/Debug/net10.0/VegaData.pdb Binary files differnew file mode 100644 index 0000000..029a398 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/VegaData.pdb diff --git a/VegaData/obj/Debug/net10.0/apphost b/VegaData/obj/Debug/net10.0/apphost Binary files differnew file mode 100755 index 0000000..6efd107 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/apphost diff --git a/VegaData/obj/Debug/net10.0/compressed/3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz b/VegaData/obj/Debug/net10.0/compressed/3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz Binary files differnew file mode 100644 index 0000000..a1edb2f --- /dev/null +++ b/VegaData/obj/Debug/net10.0/compressed/3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz diff --git a/VegaData/obj/Debug/net10.0/compressed/5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz b/VegaData/obj/Debug/net10.0/compressed/5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz Binary files differnew file mode 100644 index 0000000..365f53a --- /dev/null +++ b/VegaData/obj/Debug/net10.0/compressed/5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz diff --git a/VegaData/obj/Debug/net10.0/compressed/by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz b/VegaData/obj/Debug/net10.0/compressed/by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz Binary files differnew file mode 100644 index 0000000..ac1bc44 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/compressed/by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz diff --git a/VegaData/obj/Debug/net10.0/compressed/eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz b/VegaData/obj/Debug/net10.0/compressed/eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz Binary files differnew file mode 100644 index 0000000..5036140 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/compressed/eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz diff --git a/VegaData/obj/Debug/net10.0/compressed/yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz b/VegaData/obj/Debug/net10.0/compressed/yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz Binary files differnew file mode 100644 index 0000000..4ecb06c --- /dev/null +++ b/VegaData/obj/Debug/net10.0/compressed/yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz diff --git a/VegaData/obj/Debug/net10.0/compressed/zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz b/VegaData/obj/Debug/net10.0/compressed/zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz Binary files differnew file mode 100644 index 0000000..1a0adfc --- /dev/null +++ b/VegaData/obj/Debug/net10.0/compressed/zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz diff --git a/VegaData/obj/Debug/net10.0/rbcswa.dswa.cache.json b/VegaData/obj/Debug/net10.0/rbcswa.dswa.cache.json new file mode 100644 index 0000000..502cb25 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/rbcswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vKpf\u002BQLF0x3qKfqm1ijoBhu8l6pnLxO1InFJHE88J\u002B0=","VTaThgVwCOpqaLecBXm9ipf4R7qmZGw4JEeRs5ZagXA=","V9tHLuFAuVDEp5bm61G3VKZ4581EcWRBrSL5Eivoc7A=","q6JNSe7ucXNF8lDx8Zji8KlqoJjxA7ygD9WxtDOybls=","UppPLpietE/HyHDLvLDvFqhOaEW2vGAU5PWC9Gz1Af4=","ln8B/Xpz3YONS6keGke8EkJ3vdNl/nLG0RVr5wMKqSk="],"CachedAssets":{"VTaThgVwCOpqaLecBXm9ipf4R7qmZGw4JEeRs5ZagXA=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"Baskerville No.2 Regular/readme#[.{fingerprint=yfy9ywpu3b}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/readme.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wh5gxbg2p4","Integrity":"1Mw0U1j/IRlhwqdvGL/\u002BuPIAMdu20aIajiM1PEXcurI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/readme.html","FileLength":1559,"LastWriteTime":"2025-10-05T22:47:48.1690515+00:00"},"vKpf\u002BQLF0x3qKfqm1ijoBhu8l6pnLxO1InFJHE88J\u002B0=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"Baskerville No.2 Regular/Baskerville No.2 Regular#[.{fingerprint=7a0zyzwfwy}]?.otf.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9jb34z8q24","Integrity":"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf","FileLength":19108,"LastWriteTime":"2025-10-05T22:47:48.169154+00:00"},"V9tHLuFAuVDEp5bm61G3VKZ4581EcWRBrSL5Eivoc7A=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"Broadsheet Italic/readme#[.{fingerprint=3khy7v971e}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/readme.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ct694csexp","Integrity":"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/readme.html","FileLength":1550,"LastWriteTime":"2025-10-05T22:47:48.1688911+00:00"},"q6JNSe7ucXNF8lDx8Zji8KlqoJjxA7ygD9WxtDOybls=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"framework#[.{fingerprint=qvqco1elc0}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/framework.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1y4gy8ozra","Integrity":"CT\u002BHVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/framework.js","FileLength":1209,"LastWriteTime":"2025-10-05T22:47:48.1689143+00:00"},"UppPLpietE/HyHDLvLDvFqhOaEW2vGAU5PWC9Gz1Af4=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"index#[.{fingerprint=a1q9nw6q71}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7r7sawoh3m","Integrity":"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.html","FileLength":899,"LastWriteTime":"2025-10-05T22:47:48.1688923+00:00"},"ln8B/Xpz3YONS6keGke8EkJ3vdNl/nLG0RVr5wMKqSk=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"index#[.{fingerprint=gtn5t02q4c}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fu5pvd894r","Integrity":"KYNwfg3sRRr8LKHEAXQCDnLOviO\u002BPhUD2VAH8Y9TZJ4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.js","FileLength":1280,"LastWriteTime":"2025-10-05T22:47:48.1689078+00:00"}},"CachedCopyCandidates":{}}
\ No newline at end of file diff --git a/VegaData/obj/Debug/net10.0/ref/VegaData.dll b/VegaData/obj/Debug/net10.0/ref/VegaData.dll Binary files differnew file mode 100644 index 0000000..3ab9d30 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/ref/VegaData.dll diff --git a/VegaData/obj/Debug/net10.0/refint/VegaData.dll b/VegaData/obj/Debug/net10.0/refint/VegaData.dll Binary files differnew file mode 100644 index 0000000..3ab9d30 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/refint/VegaData.dll diff --git a/VegaData/obj/Debug/net10.0/rjimswa.dswa.cache.json b/VegaData/obj/Debug/net10.0/rjimswa.dswa.cache.json new file mode 100644 index 0000000..5e4e8a1 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/rjimswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"5U6tSW5AiU7qEfSv62UJXgFkYyv/5yjmGZXEr2MzHQw=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["gcDtZOKuOpKkmWSs4Lhg2fFc\u002BH/DZcW5lJW7U6l7BEo=","GenDNIvEpFKvXQ4ji8Fw8Jmpzbiide1B0Zx1yzBc3pU=","T0FTolYmY0BG3MdGLUckqDevRbXOt\u002BS2JC53BLSNNsU=","ihzlcaqCFUsmLZ3pwTvIfV2EqJZ7Y/8p9U\u002BFq/ECL\u002BA=","1DK/zaBs//EsjpGgAvgfWVik2diCrqxXjtTDNY7bZZc=","ueBg977WaeqQy0kJPCWDJOLJie80B0aJI3CiSiSjXhE=","7grVDvJUA8uv7LrHrOxBPlUyO8ecWScSJuMNzuHaX3E="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file diff --git a/VegaData/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/VegaData/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..d27a104 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"KqeqZuo39HCX1oIl4LefA5j9hRbkALsJSwX5A6bATes=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["1FaM66/HqAcPhuOSttMpQUhvhmEzBCra5TUmAMom0Ok=","HORyNqDrTuxw/bZeLICaYHf\u002BQIgjXF/uxxL0g0Wv4W4=","LSa3SdwrnAMaVWREq9lm7e80TcJ0tzCBb9DzTibdza8=","z/dDbEtZp2yGdYaYMTh9Z2i1xuv3XWqkXNH1DyO6zeI=","ltLXQO75LkiH0jRZx9y7IMZCjwppYkaLg/JezEK3IIk=","2LLowajQ0hdvyp1m229lgMSsXkTogx05h3edk\u002BaEMzs=","ar3kG4GMDHYlRcnyWiAf0q8SjyEFTi6aajLw96\u002B2o8Y=","rXp6y5o1R6YirTmSZ0nOW6pTnNgQ2ypfswI497DOWns=","8SEX3MU39VDVGijzExNuG0zj\u002BfVwLTC\u002BUchFrIKesFE=","VqZK41D1BthnKMxegRkyC/jesUD9RyMJrINE0TPsCoM=","xDUqG1\u002BEmUJPGU\u002Ba7n6mui8QaxJc7rnMYrf6Fp40ZSc=","nR6/mvnDmuD0jKPBybPBkrKBC889Y887VJMu\u002B8C/wPw=","FYzV7UGirOeaQfOnFSN61zsA8Wk9XbOJYnwnRxIBcko=","pERM6aCZMuExGqUi8InvtTZmwH5tJrm4k6yLuRSD054=","QUIRYz0b53yovDh0aLB4xUmJJ/Zy7nqXnA\u002Bt\u002BbhfSeE=","Ya0M/93PFj0AXDs7BughA6K7//CjM6qWdcbVU\u002BYZYyo="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file diff --git a/VegaData/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/VegaData/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..cc21198 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"POT/b6/NSHp9U5gBMfYZIzZ17NdN0j8dFWdP662AjNw=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["1FaM66/HqAcPhuOSttMpQUhvhmEzBCra5TUmAMom0Ok=","HORyNqDrTuxw/bZeLICaYHf\u002BQIgjXF/uxxL0g0Wv4W4=","LSa3SdwrnAMaVWREq9lm7e80TcJ0tzCBb9DzTibdza8=","z/dDbEtZp2yGdYaYMTh9Z2i1xuv3XWqkXNH1DyO6zeI=","ltLXQO75LkiH0jRZx9y7IMZCjwppYkaLg/JezEK3IIk=","2LLowajQ0hdvyp1m229lgMSsXkTogx05h3edk\u002BaEMzs=","ar3kG4GMDHYlRcnyWiAf0q8SjyEFTi6aajLw96\u002B2o8Y=","rXp6y5o1R6YirTmSZ0nOW6pTnNgQ2ypfswI497DOWns=","8SEX3MU39VDVGijzExNuG0zj\u002BfVwLTC\u002BUchFrIKesFE=","VqZK41D1BthnKMxegRkyC/jesUD9RyMJrINE0TPsCoM=","xDUqG1\u002BEmUJPGU\u002Ba7n6mui8QaxJc7rnMYrf6Fp40ZSc=","nR6/mvnDmuD0jKPBybPBkrKBC889Y887VJMu\u002B8C/wPw=","FYzV7UGirOeaQfOnFSN61zsA8Wk9XbOJYnwnRxIBcko=","pERM6aCZMuExGqUi8InvtTZmwH5tJrm4k6yLuRSD054=","QUIRYz0b53yovDh0aLB4xUmJJ/Zy7nqXnA\u002Bt\u002BbhfSeE=","Ya0M/93PFj0AXDs7BughA6K7//CjM6qWdcbVU\u002BYZYyo="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file diff --git a/VegaData/obj/Debug/net10.0/rpswa.dswa.cache.json b/VegaData/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..c08fbf2 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"Gsqef0eDiqWhAK4cWRNMfjfbTVxRLJVyohq2fPK9qxU=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["1FaM66/HqAcPhuOSttMpQUhvhmEzBCra5TUmAMom0Ok=","HORyNqDrTuxw/bZeLICaYHf\u002BQIgjXF/uxxL0g0Wv4W4=","LSa3SdwrnAMaVWREq9lm7e80TcJ0tzCBb9DzTibdza8=","z/dDbEtZp2yGdYaYMTh9Z2i1xuv3XWqkXNH1DyO6zeI=","ltLXQO75LkiH0jRZx9y7IMZCjwppYkaLg/JezEK3IIk=","2LLowajQ0hdvyp1m229lgMSsXkTogx05h3edk\u002BaEMzs=","ar3kG4GMDHYlRcnyWiAf0q8SjyEFTi6aajLw96\u002B2o8Y=","rXp6y5o1R6YirTmSZ0nOW6pTnNgQ2ypfswI497DOWns=","8SEX3MU39VDVGijzExNuG0zj\u002BfVwLTC\u002BUchFrIKesFE=","VqZK41D1BthnKMxegRkyC/jesUD9RyMJrINE0TPsCoM="],"CachedAssets":{"HORyNqDrTuxw/bZeLICaYHf\u002BQIgjXF/uxxL0g0Wv4W4=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/readme.html","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"Baskerville No.2 Regular/readme#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"yfy9ywpu3b","Integrity":"nghGB0nD\u002Bc9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Baskerville No.2 Regular/readme.html","FileLength":4673,"LastWriteTime":"2020-07-16T04:07:36+00:00"},"1FaM66/HqAcPhuOSttMpQUhvhmEzBCra5TUmAMom0Ok=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"Baskerville No.2 Regular/Baskerville No.2 Regular#[.{fingerprint}]?.otf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7a0zyzwfwy","Integrity":"0YVLStpUlsa2VKOYnliF8N1Y\u002BMPr87mdnI75zmjXH3c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf","FileLength":33308,"LastWriteTime":"2020-05-27T13:20:54+00:00"},"LSa3SdwrnAMaVWREq9lm7e80TcJ0tzCBb9DzTibdza8=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/Broadsheet Italic.ttf","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"Broadsheet Italic/Broadsheet Italic#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"60keq2ltsu","Integrity":"OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Broadsheet Italic/Broadsheet Italic.ttf","FileLength":132156,"LastWriteTime":"2020-05-28T00:25:42+00:00"},"z/dDbEtZp2yGdYaYMTh9Z2i1xuv3XWqkXNH1DyO6zeI=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/readme.html","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"Broadsheet Italic/readme#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"3khy7v971e","Integrity":"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Broadsheet Italic/readme.html","FileLength":4647,"LastWriteTime":"2020-07-16T05:39:44+00:00"},"ltLXQO75LkiH0jRZx9y7IMZCjwppYkaLg/JezEK3IIk=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/framework.js","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"framework#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"qvqco1elc0","Integrity":"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/framework.js","FileLength":3177,"LastWriteTime":"2025-10-05T20:03:31.7306391+00:00"},"2LLowajQ0hdvyp1m229lgMSsXkTogx05h3edk\u002BaEMzs=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.html","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"index#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"a1q9nw6q71","Integrity":"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE\u002BRYG0XaFXB4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/index.html","FileLength":2700,"LastWriteTime":"2025-10-05T22:43:49.0860843+00:00"},"ar3kG4GMDHYlRcnyWiAf0q8SjyEFTi6aajLw96\u002B2o8Y=":{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.js","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"index#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"gtn5t02q4c","Integrity":"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/\u002B/Sbw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/index.js","FileLength":3378,"LastWriteTime":"2025-10-05T22:37:59.1273056+00:00"}},"CachedCopyCandidates":{}}
\ No newline at end of file diff --git a/VegaData/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/VegaData/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..f1c9e9c --- /dev/null +++ b/VegaData/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.7a0zyzwfwy.otf","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000052331362"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"ETag","Value":"W/\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7a0zyzwfwy"},{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="},{"Name":"label","Value":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf"}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.7a0zyzwfwy.otf","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33308"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Wed, 27 May 2020 13:20:54 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7a0zyzwfwy"},{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="},{"Name":"label","Value":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf"}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.7a0zyzwfwy.otf.gz","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7a0zyzwfwy"},{"Name":"integrity","Value":"sha256-JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU="},{"Name":"label","Value":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz"}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000052331362"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"ETag","Value":"W/\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"33308"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Wed, 27 May 2020 13:20:54 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","AssetFile":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU="}]},{"Route":"Baskerville No.2 Regular/readme.html","AssetFile":"Baskerville No.2 Regular/readme.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000641025641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"ETag","Value":"W/\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="}]},{"Route":"Baskerville No.2 Regular/readme.html","AssetFile":"Baskerville No.2 Regular/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4673"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 04:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="}]},{"Route":"Baskerville No.2 Regular/readme.html.gz","AssetFile":"Baskerville No.2 Regular/readme.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI="}]},{"Route":"Baskerville No.2 Regular/readme.yfy9ywpu3b.html","AssetFile":"Baskerville No.2 Regular/readme.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000641025641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"ETag","Value":"W/\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfy9ywpu3b"},{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="},{"Name":"label","Value":"Baskerville No.2 Regular/readme.html"}]},{"Route":"Baskerville No.2 Regular/readme.yfy9ywpu3b.html","AssetFile":"Baskerville No.2 Regular/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4673"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 04:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfy9ywpu3b"},{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="},{"Name":"label","Value":"Baskerville No.2 Regular/readme.html"}]},{"Route":"Baskerville No.2 Regular/readme.yfy9ywpu3b.html.gz","AssetFile":"Baskerville No.2 Regular/readme.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfy9ywpu3b"},{"Name":"integrity","Value":"sha256-1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI="},{"Name":"label","Value":"Baskerville No.2 Regular/readme.html.gz"}]},{"Route":"Broadsheet Italic/Broadsheet Italic.60keq2ltsu.ttf","AssetFile":"Broadsheet Italic/Broadsheet Italic.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"132156"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4=\""},{"Name":"Last-Modified","Value":"Thu, 28 May 2020 00:25:42 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"60keq2ltsu"},{"Name":"integrity","Value":"sha256-OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4="},{"Name":"label","Value":"Broadsheet Italic/Broadsheet Italic.ttf"}]},{"Route":"Broadsheet Italic/Broadsheet Italic.ttf","AssetFile":"Broadsheet Italic/Broadsheet Italic.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"132156"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4=\""},{"Name":"Last-Modified","Value":"Thu, 28 May 2020 00:25:42 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4="}]},{"Route":"Broadsheet Italic/readme.3khy7v971e.html","AssetFile":"Broadsheet Italic/readme.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000644745326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"ETag","Value":"W/\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3khy7v971e"},{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="},{"Name":"label","Value":"Broadsheet Italic/readme.html"}]},{"Route":"Broadsheet Italic/readme.3khy7v971e.html","AssetFile":"Broadsheet Italic/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4647"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 05:39:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3khy7v971e"},{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="},{"Name":"label","Value":"Broadsheet Italic/readme.html"}]},{"Route":"Broadsheet Italic/readme.3khy7v971e.html.gz","AssetFile":"Broadsheet Italic/readme.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3khy7v971e"},{"Name":"integrity","Value":"sha256-QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc="},{"Name":"label","Value":"Broadsheet Italic/readme.html.gz"}]},{"Route":"Broadsheet Italic/readme.html","AssetFile":"Broadsheet Italic/readme.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000644745326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"ETag","Value":"W/\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="}]},{"Route":"Broadsheet Italic/readme.html","AssetFile":"Broadsheet Italic/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4647"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 05:39:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="}]},{"Route":"Broadsheet Italic/readme.html.gz","AssetFile":"Broadsheet Italic/readme.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc="}]},{"Route":"framework.js","AssetFile":"framework.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000826446281"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"ETag","Value":"W/\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="}]},{"Route":"framework.js","AssetFile":"framework.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 20:03:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="}]},{"Route":"framework.js.gz","AssetFile":"framework.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4="}]},{"Route":"framework.qvqco1elc0.js","AssetFile":"framework.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000826446281"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"ETag","Value":"W/\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qvqco1elc0"},{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="},{"Name":"label","Value":"framework.js"}]},{"Route":"framework.qvqco1elc0.js","AssetFile":"framework.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 20:03:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qvqco1elc0"},{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="},{"Name":"label","Value":"framework.js"}]},{"Route":"framework.qvqco1elc0.js.gz","AssetFile":"framework.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qvqco1elc0"},{"Name":"integrity","Value":"sha256-CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4="},{"Name":"label","Value":"framework.js.gz"}]},{"Route":"index.a1q9nw6q71.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001111111111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"ETag","Value":"W/\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a1q9nw6q71"},{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="},{"Name":"label","Value":"index.html"}]},{"Route":"index.a1q9nw6q71.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2700"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:43:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a1q9nw6q71"},{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="},{"Name":"label","Value":"index.html"}]},{"Route":"index.a1q9nw6q71.html.gz","AssetFile":"index.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a1q9nw6q71"},{"Name":"integrity","Value":"sha256-vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA="},{"Name":"label","Value":"index.html.gz"}]},{"Route":"index.gtn5t02q4c.js","AssetFile":"index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000780640125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"ETag","Value":"W/\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gtn5t02q4c"},{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="},{"Name":"label","Value":"index.js"}]},{"Route":"index.gtn5t02q4c.js","AssetFile":"index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3378"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:37:59 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gtn5t02q4c"},{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="},{"Name":"label","Value":"index.js"}]},{"Route":"index.gtn5t02q4c.js.gz","AssetFile":"index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gtn5t02q4c"},{"Name":"integrity","Value":"sha256-KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4="},{"Name":"label","Value":"index.js.gz"}]},{"Route":"index.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001111111111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"ETag","Value":"W/\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="}]},{"Route":"index.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2700"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:43:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="}]},{"Route":"index.html.gz","AssetFile":"index.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA="}]},{"Route":"index.js","AssetFile":"index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000780640125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"ETag","Value":"W/\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="}]},{"Route":"index.js","AssetFile":"index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3378"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:37:59 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="}]},{"Route":"index.js.gz","AssetFile":"index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4="}]}]}
\ No newline at end of file diff --git a/VegaData/obj/Debug/net10.0/staticwebassets.build.json b/VegaData/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..f8ce661 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"zjjVSPNQtkKbJU81VWRrIIpy6UyBh932UGOq3OfHFmg=","Source":"VegaData","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"VegaData/wwwroot","Source":"VegaData","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","Pattern":"**"}],"Assets":[{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"framework#[.{fingerprint=qvqco1elc0}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/framework.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"1y4gy8ozra","Integrity":"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/framework.js","FileLength":1209,"LastWriteTime":"2025-10-05T22:47:48+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"index#[.{fingerprint=a1q9nw6q71}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"7r7sawoh3m","Integrity":"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.html","FileLength":899,"LastWriteTime":"2025-10-05T22:47:48+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"index#[.{fingerprint=gtn5t02q4c}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"fu5pvd894r","Integrity":"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.js","FileLength":1280,"LastWriteTime":"2025-10-05T22:47:48+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"Baskerville No.2 Regular/Baskerville No.2 Regular#[.{fingerprint=7a0zyzwfwy}]?.otf.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"9jb34z8q24","Integrity":"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf","FileLength":19108,"LastWriteTime":"2025-10-05T22:47:48+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"Broadsheet Italic/readme#[.{fingerprint=3khy7v971e}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/readme.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ct694csexp","Integrity":"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/readme.html","FileLength":1550,"LastWriteTime":"2025-10-05T22:47:48+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"Baskerville No.2 Regular/readme#[.{fingerprint=yfy9ywpu3b}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/readme.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"wh5gxbg2p4","Integrity":"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/readme.html","FileLength":1559,"LastWriteTime":"2025-10-05T22:47:48+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"Baskerville No.2 Regular/Baskerville No.2 Regular#[.{fingerprint}]?.otf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"7a0zyzwfwy","Integrity":"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf","FileLength":33308,"LastWriteTime":"2020-05-27T13:20:54+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/readme.html","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"Baskerville No.2 Regular/readme#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"yfy9ywpu3b","Integrity":"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Baskerville No.2 Regular/readme.html","FileLength":4673,"LastWriteTime":"2020-07-16T04:07:36+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/Broadsheet Italic.ttf","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"Broadsheet Italic/Broadsheet Italic#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"60keq2ltsu","Integrity":"OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Broadsheet Italic/Broadsheet Italic.ttf","FileLength":132156,"LastWriteTime":"2020-05-28T00:25:42+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/readme.html","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"Broadsheet Italic/readme#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"3khy7v971e","Integrity":"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/Broadsheet Italic/readme.html","FileLength":4647,"LastWriteTime":"2020-07-16T05:39:44+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/framework.js","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"framework#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"qvqco1elc0","Integrity":"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/framework.js","FileLength":3177,"LastWriteTime":"2025-10-05T20:03:31+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.html","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"index#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"a1q9nw6q71","Integrity":"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/index.html","FileLength":2700,"LastWriteTime":"2025-10-05T22:43:49+00:00"},{"Identity":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.js","SourceId":"VegaData","SourceType":"Discovered","ContentRoot":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","BasePath":"/","RelativePath":"index#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"gtn5t02q4c","Integrity":"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/index.js","FileLength":3378,"LastWriteTime":"2025-10-05T22:37:59+00:00"}],"Endpoints":[{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.7a0zyzwfwy.otf","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000052331362"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"ETag","Value":"W/\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7a0zyzwfwy"},{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="},{"Name":"label","Value":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf"}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.7a0zyzwfwy.otf","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"33308"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Wed, 27 May 2020 13:20:54 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7a0zyzwfwy"},{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="},{"Name":"label","Value":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf"}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.7a0zyzwfwy.otf.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7a0zyzwfwy"},{"Name":"integrity","Value":"sha256-JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU="},{"Name":"label","Value":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz"}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000052331362"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"ETag","Value":"W/\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"33308"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c=\""},{"Name":"Last-Modified","Value":"Wed, 27 May 2020 13:20:54 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-0YVLStpUlsa2VKOYnliF8N1Y+MPr87mdnI75zmjXH3c="}]},{"Route":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"19108"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\"JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-JU2a199bvVBcxo3P926aT3jRzGinDR7h1BD4aLZ58xU="}]},{"Route":"Baskerville No.2 Regular/readme.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000641025641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"ETag","Value":"W/\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="}]},{"Route":"Baskerville No.2 Regular/readme.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4673"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 04:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="}]},{"Route":"Baskerville No.2 Regular/readme.html.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI="}]},{"Route":"Baskerville No.2 Regular/readme.yfy9ywpu3b.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000641025641"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"ETag","Value":"W/\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfy9ywpu3b"},{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="},{"Name":"label","Value":"Baskerville No.2 Regular/readme.html"}]},{"Route":"Baskerville No.2 Regular/readme.yfy9ywpu3b.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Baskerville No.2 Regular/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4673"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 04:07:36 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfy9ywpu3b"},{"Name":"integrity","Value":"sha256-nghGB0nD+c9gIARt4STGRptFOufJA5Y7Mnev27bAcVU="},{"Name":"label","Value":"Baskerville No.2 Regular/readme.html"}]},{"Route":"Baskerville No.2 Regular/readme.yfy9ywpu3b.html.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1559"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"yfy9ywpu3b"},{"Name":"integrity","Value":"sha256-1Mw0U1j/IRlhwqdvGL/+uPIAMdu20aIajiM1PEXcurI="},{"Name":"label","Value":"Baskerville No.2 Regular/readme.html.gz"}]},{"Route":"Broadsheet Italic/Broadsheet Italic.60keq2ltsu.ttf","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/Broadsheet Italic.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"132156"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4=\""},{"Name":"Last-Modified","Value":"Thu, 28 May 2020 00:25:42 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"60keq2ltsu"},{"Name":"integrity","Value":"sha256-OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4="},{"Name":"label","Value":"Broadsheet Italic/Broadsheet Italic.ttf"}]},{"Route":"Broadsheet Italic/Broadsheet Italic.ttf","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/Broadsheet Italic.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"132156"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4=\""},{"Name":"Last-Modified","Value":"Thu, 28 May 2020 00:25:42 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-OnFohifVlrnBqBXGaS/7w7IXTwba7DifOpmoSzEisY4="}]},{"Route":"Broadsheet Italic/readme.3khy7v971e.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000644745326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"ETag","Value":"W/\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3khy7v971e"},{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="},{"Name":"label","Value":"Broadsheet Italic/readme.html"}]},{"Route":"Broadsheet Italic/readme.3khy7v971e.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4647"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 05:39:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3khy7v971e"},{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="},{"Name":"label","Value":"Broadsheet Italic/readme.html"}]},{"Route":"Broadsheet Italic/readme.3khy7v971e.html.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"3khy7v971e"},{"Name":"integrity","Value":"sha256-QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc="},{"Name":"label","Value":"Broadsheet Italic/readme.html.gz"}]},{"Route":"Broadsheet Italic/readme.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000644745326"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"ETag","Value":"W/\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="}]},{"Route":"Broadsheet Italic/readme.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/Broadsheet Italic/readme.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4647"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY=\""},{"Name":"Last-Modified","Value":"Thu, 16 Jul 2020 05:39:44 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-YyCqBrg8d1JDYLopfXrwDmAmq0EBbtpafrRk6uhowVY="}]},{"Route":"Broadsheet Italic/readme.html.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1550"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QAGhUS/iBES6uB8WyjfFYNSuecvS8XshVi4RVnkEtNc="}]},{"Route":"framework.js","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000826446281"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"ETag","Value":"W/\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="}]},{"Route":"framework.js","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/framework.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 20:03:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="}]},{"Route":"framework.js.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4="}]},{"Route":"framework.qvqco1elc0.js","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000826446281"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"ETag","Value":"W/\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qvqco1elc0"},{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="},{"Name":"label","Value":"framework.js"}]},{"Route":"framework.qvqco1elc0.js","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/framework.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3177"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 20:03:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qvqco1elc0"},{"Name":"integrity","Value":"sha256-6hCLiHKSwviDfjt4SMyg11L5Ohq78yRgievFwFW79sg="},{"Name":"label","Value":"framework.js"}]},{"Route":"framework.qvqco1elc0.js.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1209"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"qvqco1elc0"},{"Name":"integrity","Value":"sha256-CT+HVatmioxJbNRON2Sf0i2r4sh10WWlj9Z/TKjOHl4="},{"Name":"label","Value":"framework.js.gz"}]},{"Route":"index.a1q9nw6q71.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001111111111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"ETag","Value":"W/\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a1q9nw6q71"},{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="},{"Name":"label","Value":"index.html"}]},{"Route":"index.a1q9nw6q71.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2700"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:43:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a1q9nw6q71"},{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="},{"Name":"label","Value":"index.html"}]},{"Route":"index.a1q9nw6q71.html.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"a1q9nw6q71"},{"Name":"integrity","Value":"sha256-vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA="},{"Name":"label","Value":"index.html.gz"}]},{"Route":"index.gtn5t02q4c.js","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000780640125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"ETag","Value":"W/\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gtn5t02q4c"},{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="},{"Name":"label","Value":"index.js"}]},{"Route":"index.gtn5t02q4c.js","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3378"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:37:59 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gtn5t02q4c"},{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="},{"Name":"label","Value":"index.js"}]},{"Route":"index.gtn5t02q4c.js.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gtn5t02q4c"},{"Name":"integrity","Value":"sha256-KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4="},{"Name":"label","Value":"index.js.gz"}]},{"Route":"index.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001111111111"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"ETag","Value":"W/\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="}]},{"Route":"index.html","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2700"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:43:49 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-8jz/vwTANbrp0ZjGtlVq5bZldUo0YNcE+RYG0XaFXB4="}]},{"Route":"index.html.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"899"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vV/QLnSDFfjFML6PMRUZZ8Fla6qezMBdR9dNrpnPkPA="}]},{"Route":"index.js","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000780640125"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"ETag","Value":"W/\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="}]},{"Route":"index.js","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3378"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:37:59 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1OQPhsh0BrdQAXDXK/b0d9E9CTVlzpUaBIQh9/+/Sbw="}]},{"Route":"index.js.gz","AssetFile":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1280"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4=\""},{"Name":"Last-Modified","Value":"Sun, 05 Oct 2025 22:47:48 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-KYNwfg3sRRr8LKHEAXQCDnLOviO+PhUD2VAH8Y9TZJ4="}]}]}
\ No newline at end of file diff --git a/VegaData/obj/Debug/net10.0/staticwebassets.build.json.cache b/VegaData/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..f495ee5 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +zjjVSPNQtkKbJU81VWRrIIpy6UyBh932UGOq3OfHFmg=
\ No newline at end of file diff --git a/VegaData/obj/Debug/net10.0/staticwebassets.development.json b/VegaData/obj/Debug/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..4309a0d --- /dev/null +++ b/VegaData/obj/Debug/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/Users/ivarlovlie/RiderProjects/VegaData/VegaData/wwwroot/","/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"framework.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"framework.js"},"Patterns":null},"framework.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3g6ojko77p-{0}-qvqco1elc0-qvqco1elc0.gz"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"index.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5k072xp252-{0}-a1q9nw6q71-a1q9nw6q71.gz"},"Patterns":null},"index.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.js"},"Patterns":null},"index.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"by5vxio1da-{0}-gtn5t02q4c-gtn5t02q4c.gz"},"Patterns":null},"Baskerville No.2 Regular":{"Children":{"Baskerville No.2 Regular.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Baskerville No.2 Regular/Baskerville No.2 Regular.otf"},"Patterns":null},"Baskerville No.2 Regular.otf.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"eplagh5su6-{0}-7a0zyzwfwy-7a0zyzwfwy.gz"},"Patterns":null},"readme.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Baskerville No.2 Regular/readme.html"},"Patterns":null},"readme.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"zht6ipl6xu-{0}-yfy9ywpu3b-yfy9ywpu3b.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Broadsheet Italic":{"Children":{"Broadsheet Italic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Broadsheet Italic/Broadsheet Italic.ttf"},"Patterns":null},"readme.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"Broadsheet Italic/readme.html"},"Patterns":null},"readme.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"yuccn17ska-{0}-3khy7v971e-3khy7v971e.gz"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file diff --git a/VegaData/obj/Debug/net10.0/swae.build.ex.cache b/VegaData/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/VegaData/obj/Debug/net10.0/swae.build.ex.cache diff --git a/VegaData/obj/VegaData.csproj.nuget.dgspec.json b/VegaData/obj/VegaData.csproj.nuget.dgspec.json new file mode 100644 index 0000000..5381911 --- /dev/null +++ b/VegaData/obj/VegaData.csproj.nuget.dgspec.json @@ -0,0 +1,501 @@ +{ + "format": 1, + "restore": { + "/Users/ivarlovlie/RiderProjects/VegaData/VegaData/VegaData.csproj": {} + }, + "projects": { + "/Users/ivarlovlie/RiderProjects/VegaData/VegaData/VegaData.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/ivarlovlie/RiderProjects/VegaData/VegaData/VegaData.csproj", + "projectName": "VegaData", + "projectPath": "/Users/ivarlovlie/RiderProjects/VegaData/VegaData/VegaData.csproj", + "packagesPath": "/Users/ivarlovlie/.nuget/packages/", + "outputPath": "/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/ivarlovlie/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "/usr/local/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.9, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.9, )" + }, + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[9.0.9, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.100-rc.1.25451.107/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Diagnostics": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.FileProviders.Embedded": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Hosting": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Http": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.Console": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Primitives": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.0-rc.1.25451.107]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.0-rc.1.25451.107]", + "System.Diagnostics.EventLog": "(,10.0.0-rc.1.25451.107]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.0-rc.1.25451.107]", + "System.Formats.Cbor": "(,10.0.0-rc.1.25451.107]", + "System.Formats.Tar": "(,10.0.0-rc.1.25451.107]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.0-rc.1.25451.107]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.0-rc.1.25451.107]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.0-rc.1.25451.107]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.0-rc.1.25451.107]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.0-rc.1.25451.107]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.0-rc.1.25451.107]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.0-rc.1.25451.107]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.0-rc.1.25451.107]", + "System.Text.Json": "(,10.0.0-rc.1.25451.107]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.Channels": "(,10.0.0-rc.1.25451.107]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.0-rc.1.25451.107]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.0-rc.1.25451.107]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +}
\ No newline at end of file diff --git a/VegaData/obj/VegaData.csproj.nuget.g.props b/VegaData/obj/VegaData.csproj.nuget.g.props new file mode 100644 index 0000000..668712f --- /dev/null +++ b/VegaData/obj/VegaData.csproj.nuget.g.props @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/ivarlovlie/.nuget/packages/</NuGetPackageRoot> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/ivarlovlie/.nuget/packages/</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion> + </PropertyGroup> + <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <SourceRoot Include="/Users/ivarlovlie/.nuget/packages/" /> + </ItemGroup> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore/9.0.9/buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore/9.0.9/buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.codeanalysis.analyzers/3.3.4/buildTransitive/Microsoft.CodeAnalysis.Analyzers.props" Condition="Exists('$(NuGetPackageRoot)microsoft.codeanalysis.analyzers/3.3.4/buildTransitive/Microsoft.CodeAnalysis.Analyzers.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design/9.0.9/build/net8.0/Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design/9.0.9/build/net8.0/Microsoft.EntityFrameworkCore.Design.props')" /> + </ImportGroup> + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/Users/ivarlovlie/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4</PkgMicrosoft_CodeAnalysis_Analyzers> + </PropertyGroup> +</Project>
\ No newline at end of file diff --git a/VegaData/obj/VegaData.csproj.nuget.g.targets b/VegaData/obj/VegaData.csproj.nuget.g.targets new file mode 100644 index 0000000..ea26461 --- /dev/null +++ b/VegaData/obj/VegaData.csproj.nuget.g.targets @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3/2.1.10/buildTransitive/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3/2.1.10/buildTransitive/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets')" /> + <Import Project="$(NuGetPackageRoot)mono.texttemplating/3.0.0/buildTransitive/Mono.TextTemplating.targets" Condition="Exists('$(NuGetPackageRoot)mono.texttemplating/3.0.0/buildTransitive/Mono.TextTemplating.targets')" /> + <Import Project="$(NuGetPackageRoot)microsoft.codeanalysis.analyzers/3.3.4/buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.codeanalysis.analyzers/3.3.4/buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets')" /> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/VegaData/obj/project.assets.json b/VegaData/obj/project.assets.json new file mode 100644 index 0000000..589ad24 --- /dev/null +++ b/VegaData/obj/project.assets.json @@ -0,0 +1,2725 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "compile": { + "ref/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/_._": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": {} + }, + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "build": { + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {}, + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.8.0]" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "[4.8.0]", + "Microsoft.CodeAnalysis.Common": "[4.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "[4.8.0]", + "System.Composition": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.Build.Framework": "16.10.0", + "Microsoft.CodeAnalysis.Common": "[4.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.runtimeconfig.json;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "related": ".pdb;.runtimeconfig.json;.xml" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "related": ".BuildHost.pdb;.BuildHost.runtimeconfig.json;.BuildHost.xml;.pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Sqlite.Core/9.0.9": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "compile": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.9": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.9", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.9" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.9": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.9": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.9": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", + "Microsoft.Extensions.DependencyModel": "9.0.9", + "Mono.TextTemplating": "3.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.9": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.9" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/9.0.9": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "9.0.9", + "Microsoft.Extensions.DependencyModel": "9.0.9", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10", + "SQLitePCLRaw.core": "2.1.10" + }, + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.9": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "9.0.9", + "Microsoft.EntityFrameworkCore.Relational": "9.0.9", + "Microsoft.Extensions.DependencyModel": "9.0.9", + "SQLitePCLRaw.core": "2.1.10" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.9": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": {} + }, + "build": { + "buildTransitive/Mono.TextTemplating.targets": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.10", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.10" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "buildTransitive/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + }, + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": { + "assetType": "native", + "rid": "browser-wasm" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-s390x" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-ppc64le" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-s390x" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-arm64" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-x64" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.10" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Composition/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + }, + "compile": { + "lib/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + } + } + }, + "libraries": { + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "sha512": "3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Build.Framework/17.8.3": { + "sha512": "NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "type": "package", + "path": "microsoft.build.framework/17.8.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "README.md", + "lib/net472/Microsoft.Build.Framework.dll", + "lib/net472/Microsoft.Build.Framework.pdb", + "lib/net472/Microsoft.Build.Framework.xml", + "lib/net8.0/Microsoft.Build.Framework.dll", + "lib/net8.0/Microsoft.Build.Framework.pdb", + "lib/net8.0/Microsoft.Build.Framework.xml", + "microsoft.build.framework.17.8.3.nupkg.sha512", + "microsoft.build.framework.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.Framework.dll", + "ref/net472/Microsoft.Build.Framework.xml", + "ref/net8.0/Microsoft.Build.Framework.dll", + "ref/net8.0/Microsoft.Build.Framework.xml", + "ref/netstandard2.0/Microsoft.Build.Framework.dll", + "ref/netstandard2.0/Microsoft.Build.Framework.xml" + ] + }, + "Microsoft.Build.Locator/1.7.8": { + "sha512": "sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "type": "package", + "path": "microsoft.build.locator/1.7.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "build/Microsoft.Build.Locator.props", + "build/Microsoft.Build.Locator.targets", + "lib/net46/Microsoft.Build.Locator.dll", + "lib/net6.0/Microsoft.Build.Locator.dll", + "microsoft.build.locator.1.7.8.nupkg.sha512", + "microsoft.build.locator.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "sha512": "AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets", + "buildTransitive/config/analysislevel_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_all.globalconfig", + "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_default.globalconfig", + "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_none.globalconfig", + "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "sha512": "/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.dll", + "lib/net6.0/Microsoft.CodeAnalysis.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.dll", + "lib/net7.0/Microsoft.CodeAnalysis.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "sha512": "+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "sha512": "3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "sha512": "LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "sha512": "IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.pdb", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.xml", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net472/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.xml", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.xml", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.msbuild.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/9.0.9": { + "sha512": "DjxZRueHp0qvZxhvW+H1IWYkSofZI8Chg710KYJjNP/6S4q3rt97pvR8AHOompkSwaN92VLKz5uw01iUt85cMg==", + "type": "package", + "path": "microsoft.data.sqlite.core/9.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net6.0/Microsoft.Data.Sqlite.dll", + "lib/net6.0/Microsoft.Data.Sqlite.xml", + "lib/net8.0/Microsoft.Data.Sqlite.dll", + "lib/net8.0/Microsoft.Data.Sqlite.xml", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.9.0.9.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/9.0.9": { + "sha512": "zkt5yQgnpWKX3rOxn+ZcV23Aj0296XCTqg4lx1hKY+wMXBgkn377UhBrY/A4H6kLpNT7wqZN98xCV0YHXu9VRA==", + "type": "package", + "path": "microsoft.entityframeworkcore/9.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.9.0.9.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.9": { + "sha512": "QdM2k3Mnip2QsaxJbCI95dc2SajRMENdmaMhVKj4jPC5dmkoRcu3eEdvZAgDbd4bFVV1jtPGdHtXewtoBMlZqA==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/9.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.9.0.9.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.9": { + "sha512": "uiKeU/qR0YpaDUa4+g0rAjKCuwfq8YWZGcpPptnFWIr1K7dXQTm/15D2HDwwU4ln3Uf66krYybymuY58ua4hhw==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/9.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.9.0.9.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/9.0.9": { + "sha512": "cFxH70tohWe3ugCjLhZB01mR7WHpg5dEK6zHsbkDFfpLxWT+HoZQKgchTJgF4bPWBPTyrlYlqfPY212fFtmJjg==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/9.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net8.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.9.0.9.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.9": { + "sha512": "SonFU9a8x4jZIhIBtCw1hIE3QKjd4c7Y3mjptoh682dfQe7K9pUPGcEV/sk4n8AJdq4fkyJPCaOdYaObhae/Iw==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/9.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.9.0.9.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite/9.0.9": { + "sha512": "SiAd32IMTAQDo+jQt5GAzCq+5qI/OEdsrbW0qEDr0hUEAh3jnRlt0gbZgDGDUtWk5SWITufB6AOZi0qet9dJIw==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite/9.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/_._", + "microsoft.entityframeworkcore.sqlite.9.0.9.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.9": { + "sha512": "eQVF8fBgDxjnjan3EB1ysdfDO7lKKfWKTT4VR0BInU4Mi6ADdgiOdm6qvZ/ufh04f3hhPL5lyknx5XotGzBh8A==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite.core/9.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.xml", + "microsoft.entityframeworkcore.sqlite.core.9.0.9.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/9.0.9": { + "sha512": "fNGvKct2De8ghm0Bpfq0iWthtzIWabgOTi+gJhNOPhNJIowXNEUE2eZNW/zNCzrHVA3PXg2yZ+3cWZndC2IqYA==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/9.0.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net9.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.9.0.9.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Mono.TextTemplating/3.0.0": { + "sha512": "YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "type": "package", + "path": "mono.texttemplating/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt/LICENSE", + "buildTransitive/Mono.TextTemplating.targets", + "lib/net472/Mono.TextTemplating.dll", + "lib/net6.0/Mono.TextTemplating.dll", + "lib/netstandard2.0/Mono.TextTemplating.dll", + "mono.texttemplating.3.0.0.nupkg.sha512", + "mono.texttemplating.nuspec", + "readme.md" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": { + "sha512": "UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", + "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.1.10": { + "sha512": "Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==", + "type": "package", + "path": "sqlitepclraw.core/2.1.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.1.10.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.10": { + "sha512": "mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-arm/native/libe_sqlite3.so", + "runtimes/linux-musl-arm64/native/libe_sqlite3.so", + "runtimes/linux-musl-s390x/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-ppc64le/native/libe_sqlite3.so", + "runtimes/linux-s390x/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib", + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib", + "runtimes/osx-arm64/native/libe_sqlite3.dylib", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.10": { + "sha512": "uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition/7.0.0": { + "sha512": "tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "type": "package", + "path": "system.composition/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.targets", + "lib/net461/_._", + "lib/netcoreapp2.0/_._", + "lib/netstandard2.0/_._", + "system.composition.7.0.0.nupkg.sha512", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/7.0.0": { + "sha512": "2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "type": "package", + "path": "system.composition.attributedmodel/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.AttributedModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", + "lib/net462/System.Composition.AttributedModel.dll", + "lib/net462/System.Composition.AttributedModel.xml", + "lib/net6.0/System.Composition.AttributedModel.dll", + "lib/net6.0/System.Composition.AttributedModel.xml", + "lib/net7.0/System.Composition.AttributedModel.dll", + "lib/net7.0/System.Composition.AttributedModel.xml", + "lib/netstandard2.0/System.Composition.AttributedModel.dll", + "lib/netstandard2.0/System.Composition.AttributedModel.xml", + "system.composition.attributedmodel.7.0.0.nupkg.sha512", + "system.composition.attributedmodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/7.0.0": { + "sha512": "IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "type": "package", + "path": "system.composition.convention/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Convention.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", + "lib/net462/System.Composition.Convention.dll", + "lib/net462/System.Composition.Convention.xml", + "lib/net6.0/System.Composition.Convention.dll", + "lib/net6.0/System.Composition.Convention.xml", + "lib/net7.0/System.Composition.Convention.dll", + "lib/net7.0/System.Composition.Convention.xml", + "lib/netstandard2.0/System.Composition.Convention.dll", + "lib/netstandard2.0/System.Composition.Convention.xml", + "system.composition.convention.7.0.0.nupkg.sha512", + "system.composition.convention.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/7.0.0": { + "sha512": "eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "type": "package", + "path": "system.composition.hosting/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", + "lib/net462/System.Composition.Hosting.dll", + "lib/net462/System.Composition.Hosting.xml", + "lib/net6.0/System.Composition.Hosting.dll", + "lib/net6.0/System.Composition.Hosting.xml", + "lib/net7.0/System.Composition.Hosting.dll", + "lib/net7.0/System.Composition.Hosting.xml", + "lib/netstandard2.0/System.Composition.Hosting.dll", + "lib/netstandard2.0/System.Composition.Hosting.xml", + "system.composition.hosting.7.0.0.nupkg.sha512", + "system.composition.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/7.0.0": { + "sha512": "aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "type": "package", + "path": "system.composition.runtime/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Runtime.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", + "lib/net462/System.Composition.Runtime.dll", + "lib/net462/System.Composition.Runtime.xml", + "lib/net6.0/System.Composition.Runtime.dll", + "lib/net6.0/System.Composition.Runtime.xml", + "lib/net7.0/System.Composition.Runtime.dll", + "lib/net7.0/System.Composition.Runtime.xml", + "lib/netstandard2.0/System.Composition.Runtime.dll", + "lib/netstandard2.0/System.Composition.Runtime.xml", + "system.composition.runtime.7.0.0.nupkg.sha512", + "system.composition.runtime.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/7.0.0": { + "sha512": "ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "type": "package", + "path": "system.composition.typedparts/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.TypedParts.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", + "lib/net462/System.Composition.TypedParts.dll", + "lib/net462/System.Composition.TypedParts.xml", + "lib/net6.0/System.Composition.TypedParts.dll", + "lib/net6.0/System.Composition.TypedParts.xml", + "lib/net7.0/System.Composition.TypedParts.dll", + "lib/net7.0/System.Composition.TypedParts.xml", + "lib/netstandard2.0/System.Composition.TypedParts.dll", + "lib/netstandard2.0/System.Composition.TypedParts.xml", + "system.composition.typedparts.7.0.0.nupkg.sha512", + "system.composition.typedparts.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Microsoft.EntityFrameworkCore >= 9.0.9", + "Microsoft.EntityFrameworkCore.Design >= 9.0.9", + "Microsoft.EntityFrameworkCore.Sqlite >= 9.0.9" + ] + }, + "packageFolders": { + "/Users/ivarlovlie/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/ivarlovlie/RiderProjects/VegaData/VegaData/VegaData.csproj", + "projectName": "VegaData", + "projectPath": "/Users/ivarlovlie/RiderProjects/VegaData/VegaData/VegaData.csproj", + "packagesPath": "/Users/ivarlovlie/.nuget/packages/", + "outputPath": "/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/ivarlovlie/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "/usr/local/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.9, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.9, )" + }, + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[9.0.9, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.100-rc.1.25451.107/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Diagnostics": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.FileProviders.Embedded": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Hosting": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Http": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.Console": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Primitives": "(,10.0.0-rc.1.25451.107]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.0-rc.1.25451.107]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.0-rc.1.25451.107]", + "System.Diagnostics.EventLog": "(,10.0.0-rc.1.25451.107]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.0-rc.1.25451.107]", + "System.Formats.Cbor": "(,10.0.0-rc.1.25451.107]", + "System.Formats.Tar": "(,10.0.0-rc.1.25451.107]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.0-rc.1.25451.107]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.0-rc.1.25451.107]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.0-rc.1.25451.107]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.0-rc.1.25451.107]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.0-rc.1.25451.107]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.0-rc.1.25451.107]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.0-rc.1.25451.107]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.0-rc.1.25451.107]", + "System.Text.Json": "(,10.0.0-rc.1.25451.107]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.Channels": "(,10.0.0-rc.1.25451.107]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.0-rc.1.25451.107]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.0-rc.1.25451.107]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +}
\ No newline at end of file diff --git a/VegaData/obj/project.nuget.cache b/VegaData/obj/project.nuget.cache new file mode 100644 index 0000000..95a6a9e --- /dev/null +++ b/VegaData/obj/project.nuget.cache @@ -0,0 +1,40 @@ +{ + "version": 2, + "dgSpecHash": "cBKsyv7lD5s=", + "success": true, + "projectFilePath": "/Users/ivarlovlie/RiderProjects/VegaData/VegaData/VegaData.csproj", + "expectedPackageFiles": [ + "/Users/ivarlovlie/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.bcl.asyncinterfaces/7.0.0/microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.build.framework/17.8.3/microsoft.build.framework.17.8.3.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.build.locator/1.7.8/microsoft.build.locator.1.7.8.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4/microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.codeanalysis.common/4.8.0/microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.codeanalysis.csharp/4.8.0/microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.8.0/microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.8.0/microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.codeanalysis.workspaces.msbuild/4.8.0/microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.data.sqlite.core/9.0.9/microsoft.data.sqlite.core.9.0.9.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.entityframeworkcore/9.0.9/microsoft.entityframeworkcore.9.0.9.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.9/microsoft.entityframeworkcore.abstractions.9.0.9.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.9/microsoft.entityframeworkcore.analyzers.9.0.9.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.entityframeworkcore.design/9.0.9/microsoft.entityframeworkcore.design.9.0.9.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.9/microsoft.entityframeworkcore.relational.9.0.9.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.entityframeworkcore.sqlite/9.0.9/microsoft.entityframeworkcore.sqlite.9.0.9.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.entityframeworkcore.sqlite.core/9.0.9/microsoft.entityframeworkcore.sqlite.core.9.0.9.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/microsoft.extensions.dependencymodel/9.0.9/microsoft.extensions.dependencymodel.9.0.9.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/mono.texttemplating/3.0.0/mono.texttemplating.3.0.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/sqlitepclraw.bundle_e_sqlite3/2.1.10/sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/sqlitepclraw.core/2.1.10/sqlitepclraw.core.2.1.10.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/sqlitepclraw.lib.e_sqlite3/2.1.10/sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/sqlitepclraw.provider.e_sqlite3/2.1.10/sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/system.codedom/6.0.0/system.codedom.6.0.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/system.composition/7.0.0/system.composition.7.0.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/system.composition.attributedmodel/7.0.0/system.composition.attributedmodel.7.0.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/system.composition.convention/7.0.0/system.composition.convention.7.0.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/system.composition.hosting/7.0.0/system.composition.hosting.7.0.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/system.composition.runtime/7.0.0/system.composition.runtime.7.0.0.nupkg.sha512", + "/Users/ivarlovlie/.nuget/packages/system.composition.typedparts/7.0.0/system.composition.typedparts.7.0.0.nupkg.sha512" + ], + "logs": [] +}
\ No newline at end of file diff --git a/VegaData/obj/project.packagespec.json b/VegaData/obj/project.packagespec.json new file mode 100644 index 0000000..0e505ab --- /dev/null +++ b/VegaData/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/VegaData.csproj","projectName":"VegaData","projectPath":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/VegaData.csproj","outputPath":"/Users/ivarlovlie/RiderProjects/VegaData/VegaData/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"/usr/local/share/dotnet/library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","dependencies":{"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[9.0.9, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[9.0.9, )"},"Microsoft.EntityFrameworkCore.Sqlite":{"target":"Package","version":"[9.0.9, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/10.0.100-rc.1.25451.107/PortableRuntimeIdentifierGraph.json"}}
\ No newline at end of file diff --git a/VegaData/obj/rider.project.model.nuget.info b/VegaData/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..b42e474 --- /dev/null +++ b/VegaData/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17596704661622915
\ No newline at end of file diff --git a/VegaData/obj/rider.project.restore.info b/VegaData/obj/rider.project.restore.info new file mode 100644 index 0000000..377aef5 --- /dev/null +++ b/VegaData/obj/rider.project.restore.info @@ -0,0 +1 @@ +17596704786656566
\ No newline at end of file diff --git a/VegaData/wwwroot/.DS_Store b/VegaData/wwwroot/.DS_Store Binary files differnew file mode 100644 index 0000000..0fb4e25 --- /dev/null +++ b/VegaData/wwwroot/.DS_Store diff --git a/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf b/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf Binary files differnew file mode 100644 index 0000000..35da359 --- /dev/null +++ b/VegaData/wwwroot/Baskerville No.2 Regular/Baskerville No.2 Regular.otf diff --git a/VegaData/wwwroot/Baskerville No.2 Regular/readme.html b/VegaData/wwwroot/Baskerville No.2 Regular/readme.html new file mode 100644 index 0000000..ce69521 --- /dev/null +++ b/VegaData/wwwroot/Baskerville No.2 Regular/readme.html @@ -0,0 +1,188 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="viewport" content="width=device-width" /> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="refresh" content="5;url=http://fontsgeek.com/fonts/baskerville-no2-regular?ref=readme"> + <title>Baskerville No.2 RegularFontsgeek</title> + <style> +/* ------------------------------------- + GLOBAL + ------------------------------------- */ + * { + margin:0; + padding:0; + font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; + font-size: 100%; + line-height: 1.6; + } + + img { + max-width: 100%; + } + + body { + -webkit-font-smoothing:antialiased; + -webkit-text-size-adjust:none; + width: 100%!important; + height: 100%; + background:#DDD; + } + + + /* ------------------------------------- + ELEMENTS + ------------------------------------- */ + a { + color: #348eda; + } + + .btn-primary, .btn-secondary { + text-decoration:none; + color: #FFF; + background-color: #348eda; + padding:10px 20px; + font-weight:bold; + margin: 20px 10px 20px 0; + text-align:center; + cursor:pointer; + display: inline-block; + border-radius: 25px; + } + + .btn-secondary{ + background: #aaa; + } + + .last { + margin-bottom: 0; + } + + .first{ + margin-top: 0; + } + + + /* ------------------------------------- + BODY + ------------------------------------- */ + table.body-wrap { + width: 100%; + padding: 20px; + } + + table.body-wrap .container{ + border: 1px solid #f0f0f0; + } + + + /* ------------------------------------- + FOOTER + ------------------------------------- */ + table.footer-wrap { + width: 100%; + clear:both!important; + } + + .footer-wrap .container p { + font-size:12px; + color:#666; + + } + + table.footer-wrap a{ + color: #999; + } + + + /* ------------------------------------- + TYPOGRAPHY + ------------------------------------- */ + h1,h2,h3{ + font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; line-height: 1.1; margin-bottom:15px; color:#000; + margin: 40px 0 10px; + line-height: 1.2; + font-weight:200; + } + + h1 { + font-size: 36px; + } + h2 { + font-size: 28px; + } + h3 { + font-size: 22px; + } + + p, ul { + margin-bottom: 10px; + font-weight: normal; + font-size:14px; + } + + ul li { + margin-left:5px; + list-style-position: inside; + } + + /* --------------------------------------------------- + RESPONSIVENESS + Nuke it from orbit. It's the only way to be sure. + ------------------------------------------------------ */ + + /* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */ + .container { + display:block!important; + max-width:600px!important; + margin:0 auto!important; /* makes it centered */ + clear:both!important; + } + + /* This should also be a block element, so that it will fill 100% of the .container */ + .content { + padding:20px; + max-width:600px; + margin:0 auto; + display:block; + } + + /* Let's make sure tables in the content area are 100% wide */ + .content table { + width: 100%; + } + + </style> + </head> + + <body bgcolor="#f6f6f6"> + + <!-- body --> + <table class="body-wrap"> + <tr> + <td></td> + <td class="container" bgcolor="#FFFFFF"> + + <!-- content --> + <div class="content"> + <table> + <tr> + <td> + <h1>Baskerville No.2 Regular</h1> + <p>This font was downloaded from <a href="http://fontsgeek.com?ref=readme">fontsgeek.com</a> . You can visit <a href="http://fontsgeek.com?ref=readme">fontsgeek.com</a> for thousands of free fonts.</p> + <p><a href="http://fontsgeek.com/fonts/baskerville-no2-regular?ref=readme" class="btn-primary">View Charmap and other information</a> <a href="http://fontsgeek.com?ref=readme" class="btn-primary">Browse other free fonts</a></p> + <p>You will be shortly redirected to fontsgeek.</p> + </td> + </tr> + </table> + </div> + <!-- /content --> + + </td> + <td></td> + </tr> + </table> + <!-- /body --> + + </body> +</html> diff --git a/VegaData/wwwroot/Broadsheet Italic/Broadsheet Italic.ttf b/VegaData/wwwroot/Broadsheet Italic/Broadsheet Italic.ttf Binary files differnew file mode 100644 index 0000000..443d2ab --- /dev/null +++ b/VegaData/wwwroot/Broadsheet Italic/Broadsheet Italic.ttf diff --git a/VegaData/wwwroot/Broadsheet Italic/readme.html b/VegaData/wwwroot/Broadsheet Italic/readme.html new file mode 100644 index 0000000..1fddb99 --- /dev/null +++ b/VegaData/wwwroot/Broadsheet Italic/readme.html @@ -0,0 +1,188 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta name="viewport" content="width=device-width" /> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="refresh" content="5;url=http://fontsgeek.com/fonts/broadsheet-italic?ref=readme"> + <title>Broadsheet ItalicFontsgeek</title> + <style> +/* ------------------------------------- + GLOBAL + ------------------------------------- */ + * { + margin:0; + padding:0; + font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; + font-size: 100%; + line-height: 1.6; + } + + img { + max-width: 100%; + } + + body { + -webkit-font-smoothing:antialiased; + -webkit-text-size-adjust:none; + width: 100%!important; + height: 100%; + background:#DDD; + } + + + /* ------------------------------------- + ELEMENTS + ------------------------------------- */ + a { + color: #348eda; + } + + .btn-primary, .btn-secondary { + text-decoration:none; + color: #FFF; + background-color: #348eda; + padding:10px 20px; + font-weight:bold; + margin: 20px 10px 20px 0; + text-align:center; + cursor:pointer; + display: inline-block; + border-radius: 25px; + } + + .btn-secondary{ + background: #aaa; + } + + .last { + margin-bottom: 0; + } + + .first{ + margin-top: 0; + } + + + /* ------------------------------------- + BODY + ------------------------------------- */ + table.body-wrap { + width: 100%; + padding: 20px; + } + + table.body-wrap .container{ + border: 1px solid #f0f0f0; + } + + + /* ------------------------------------- + FOOTER + ------------------------------------- */ + table.footer-wrap { + width: 100%; + clear:both!important; + } + + .footer-wrap .container p { + font-size:12px; + color:#666; + + } + + table.footer-wrap a{ + color: #999; + } + + + /* ------------------------------------- + TYPOGRAPHY + ------------------------------------- */ + h1,h2,h3{ + font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; line-height: 1.1; margin-bottom:15px; color:#000; + margin: 40px 0 10px; + line-height: 1.2; + font-weight:200; + } + + h1 { + font-size: 36px; + } + h2 { + font-size: 28px; + } + h3 { + font-size: 22px; + } + + p, ul { + margin-bottom: 10px; + font-weight: normal; + font-size:14px; + } + + ul li { + margin-left:5px; + list-style-position: inside; + } + + /* --------------------------------------------------- + RESPONSIVENESS + Nuke it from orbit. It's the only way to be sure. + ------------------------------------------------------ */ + + /* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */ + .container { + display:block!important; + max-width:600px!important; + margin:0 auto!important; /* makes it centered */ + clear:both!important; + } + + /* This should also be a block element, so that it will fill 100% of the .container */ + .content { + padding:20px; + max-width:600px; + margin:0 auto; + display:block; + } + + /* Let's make sure tables in the content area are 100% wide */ + .content table { + width: 100%; + } + + </style> + </head> + + <body bgcolor="#f6f6f6"> + + <!-- body --> + <table class="body-wrap"> + <tr> + <td></td> + <td class="container" bgcolor="#FFFFFF"> + + <!-- content --> + <div class="content"> + <table> + <tr> + <td> + <h1>Broadsheet Italic</h1> + <p>This font was downloaded from <a href="http://fontsgeek.com?ref=readme">fontsgeek.com</a> . You can visit <a href="http://fontsgeek.com?ref=readme">fontsgeek.com</a> for thousands of free fonts.</p> + <p><a href="http://fontsgeek.com/fonts/broadsheet-italic?ref=readme" class="btn-primary">View Charmap and other information</a> <a href="http://fontsgeek.com?ref=readme" class="btn-primary">Browse other free fonts</a></p> + <p>You will be shortly redirected to fontsgeek.</p> + </td> + </tr> + </table> + </div> + <!-- /content --> + + </td> + <td></td> + </tr> + </table> + <!-- /body --> + + </body> +</html> diff --git a/VegaData/wwwroot/framework.js b/VegaData/wwwroot/framework.js new file mode 100644 index 0000000..e1652d0 --- /dev/null +++ b/VegaData/wwwroot/framework.js @@ -0,0 +1,150 @@ +const targetMap = new WeakMap(); +let activeEffect = null; + +const root = document.getElementById("root"); + +function createElement(tagName, props = {}, children = []) { + const el = document.createElement(tagName); + + for (const [key, value] of Object.entries(props || {})) { + if (key.startsWith("on") && typeof value === "function") { + el.addEventListener(key.substring(2).toLowerCase(), value); + } else if (key === "style" && typeof value === "object") { + Object.assign(el.style, value); + } else { + el.setAttribute(key, value); + } + } + + const appendChild = (child) => { + if (Array.isArray(child)) { + child.forEach(appendChild); + } else if (typeof child === "function") { + const placeholder = document.createTextNode(""); + el.appendChild(placeholder); + e(() => { + placeholder.textContent = child() ?? ""; + }); + } else if (child instanceof Node) { + el.appendChild(child); + } else if (child != null) { + el.appendChild(document.createTextNode(String(child))); + } + }; + + children.forEach(appendChild); + return el; +} + +function track(target, key) { + if (!activeEffect) { + return; + } + let depsMap = targetMap.get(target); + if (!depsMap) { + depsMap = new Map(); + targetMap.set(target, depsMap); + } + + let dep = depsMap.get(key); + if (!dep) { + dep = new Set(); + depsMap.set(key, dep); + } + + dep.add(activeEffect); +} + +function trigger(target, key) { + const depsMap = targetMap.get(target); + if (!depsMap) { + return; + } + + const dep = depsMap.get(key); + if (dep) { + dep.forEach((effect) => effect()); + } +} + +//** +// Create a reactive value, the value is at .value. +// To use this in element props you need to supply the .value read as a function. +// */ +export function r(target) { + target = {value: target}; + return new Proxy(target, { + get(obj, key, receiver) { + track(obj, key); + return Reflect.get(obj, key, receiver); + }, + set(obj, key, value, receiver) { + const result = Reflect.set(obj, key, value, receiver); + trigger(obj, key); + return result; + }, + }); +} + +//** +// Run code when value changes +// */ +export function e(fn) { + let active = true; + + const runner = () => { + if (active) { + activeEffect = runner; + fn(); + activeEffect = null; + } + }; + + runner(); + + runner.stop = () => { + active = false; + }; + + return runner; +} + +//** +// Combine elements +// */ +export function c(a, b) { + const normalize = (x) => (x == null ? [] : Array.isArray(x) ? x : [x]); + + return [...normalize(a), ...normalize(b)]; +} + +//** +// Mount element to a target (target is #root by default) +// */ +export async function m(component, target = root) { + if (typeof component === "function") { + component = await component(); + } + if (Array.isArray(component)) { + target.append(...component); + } else { + target.appendChild(component); + } +} + +export function css(styleObject) { + return Object.entries(styleObject).map(([key, value]) => { + const kebabKey = key.replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase(); + return `${kebabKey}: ${value}`; + }).join("; "); +} + +//** +// Create element +// */ +export function t(name, props, ...children) { + if (typeof name === "function") { + return name({...props, children}); + } + return createElement(name, props, children); +} diff --git a/VegaData/wwwroot/index.html b/VegaData/wwwroot/index.html new file mode 100644 index 0000000..5ea2694 --- /dev/null +++ b/VegaData/wwwroot/index.html @@ -0,0 +1,113 @@ +<!doctype html> +<html lang="nb"> + +<head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <style> + @font-face { + font-family: 'Broadsheet Italic'; + src: url('./Broadsheet Italic/Broadsheet Italic.ttf') format('truetype'); + font-weight: normal; + font-style: italic; + } + + @font-face { + font-family: 'Baskerville No.2 Regular'; + src: url('./Baskerville No.2 Regular/Baskerville No.2 Regular.otf') format('opentype'); + font-weight: normal; + font-style: normal; + } + + .italic { + font-family: 'Broadsheet Italic', serif; + } + + .regular { + font-family: 'Baskerville No.2 Regular', serif; + } + + * { + box-sizing: border-box; + } + + html, + body { + margin: 0; + padding: 0; + background: beige; + } + + #ulShows { + padding-inline-start: 10px; + height: 80vh; + overflow: auto; + } + + .show { + margin-bottom: 1rem; + width: 100%; + + .title { + width: 100%; + display: inline-block; + font-size: 3rem; + font-weight: 600; + position: sticky; + top: 0; + background: beige; + } + } + + .time { + font-style: normal; + font-size: 1rem; + text-decoration: none; + font-weight: 400; + margin-bottom: 15px; + border-bottom: 2px dotted dodgerblue; + + div { + display: flex; + flex-direction: column; + + span:first-of-type { + font-size: 1.2rem; + } + } + + .actions { + display: flex; + flex-direction: row; + gap: 1rem; + } + } + + ul { + list-style: none; + margin: 0; + padding: 0; + margin-top: 10px; + } + </style> + <title>Vega eller</title> +</head> + +<body> + <h1>Bli med på vega</h1> + <main> + <button id="renderShowsBtn">last om</button> + <input type="search" name="q" id="search" placeholder="søk"> + <ul id="ulShows"></ul> + </main> + <script type="importmap"> + { + "imports": { + "temporal-polyfill": "https://esm.sh/temporal-polyfill@0.3.0" + } + } +</script> + <script type="module" src="index.js"></script> +</body> + +</html>
\ No newline at end of file diff --git a/VegaData/wwwroot/index.js b/VegaData/wwwroot/index.js new file mode 100644 index 0000000..deb9552 --- /dev/null +++ b/VegaData/wwwroot/index.js @@ -0,0 +1,72 @@ +import { Temporal } from "temporal-polyfill" +import { t } from "./framework.js"; + +let _ +async function getShows() { + if (_) return _ + const response = await fetch("/shows"); + _ = await response.json(); + return _ +} + +const ulShows = document.getElementById("ulShows"); +const search = document.getElementById("search"); +const renderShowsBtn = document.getElementById("renderShowsBtn"); +const { timeZoneId: tzId } = Temporal.Now.zonedDateTimeISO(); +renderShowsBtn.addEventListener("click", () => { + renderShows() + search.value = "" +}); + +function dateString(date, small = false) { + if (small) return Temporal.Instant.from(date).toZonedDateTimeISO(tzId).toPlainDateTime().toLocaleString('nb-NO', { weekday: "long", calendar: 'gregory', hour: "2-digit", minute: "2-digit", month: 'long', day: 'numeric' }) + return Temporal.Instant.from(date).toZonedDateTimeISO(tzId).toPlainDateTime().toLocaleString('nb-NO', { weekday: "long", calendar: 'gregory', hour: "2-digit", minute: "2-digit", era: 'long', year: 'numeric', month: 'long', day: 'numeric' }) +} + +search.addEventListener("input", e => renderShows(e.currentTarget.value)) + +async function renderShows(query) { + query = query?.trim() + const searchParams = new URLSearchParams(location.search); + if (!query && searchParams.has("q")) query = searchParams.get("q") + searchParams.set("q", query) + let lis = []; + + const shows = (await getShows()).reduce((acc, curr) => { + const key = curr.title; + if (!acc[key]) { + acc[key] = []; + } + acc[key].push(curr); + return acc; + }, {}); + + async function share(show) { + const shareData = { + title: `${show.title} ${dateString(show.startDateTime, true)} på vega`, + text: "", + url: `#${show.title}-${show.startDateTime}`, + }; + await navigator.share(shareData); + } + + for (const showKey of Object.keys(shows).sort((a, b) => a.localeCompare(b))) { + const times = shows[showKey].sort((a, b) => Temporal.PlainDate.compare(Temporal.PlainDate.from(a.startDateTime), Temporal.PlainDate.from(b.startDateTime))) + if (query && !showKey.toLowerCase().match(query.toLowerCase())) continue + if (times.every(e => e.ticketUrl === "")) continue + lis.push(t("li", { class: "show", id: showKey }, [t("span", { class: "title italic" }, showKey), t("ul", undefined, [t("li", undefined, + times.filter(e => e.ticketUrl !== "").map(e => t("li", { class: `time time-${e.id}`, id: `${showKey}-${e.startDateTime}` }, [t("a", undefined, [ + t("div", undefined, [ + t("span", undefined, dateString(e.startDateTime)), + t("span", undefined, `${e.scene} - ${e.tags.join(", ")}`), + t("div", { class: "actions" }, [ + t("a", { href: e.ticketUrl }, "Billetter"), + t("button", { onclick: () => share(e) }, "Del tid") + ]) + ]) + ])])))])])) + } + ulShows.replaceChildren(...lis); +} +renderShows() + |
