diff --git a/CMakeLists.txt b/CMakeLists.txt
deleted file mode 100644
index cedac79..0000000
--- a/CMakeLists.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-# Specify the minimum required version of CMake
-cmake_minimum_required(VERSION 3.10)
-
-# Set the name of the project
-project(douwco_web)
-
-# Find required packages
-find_package(Crow)
-find_package(OpenSSL REQUIRED)
-find_package(ZLIB REQUIRED)
-
-# Set C++ standard to C++17
-set(CMAKE_CXX_STANDARD 17)
-
-# Add the executable
-add_executable(douwco_web
- src/main.cpp
- src/server.cpp
-)
-
-# Specify include directories
-target_include_directories(douwco_web PRIVATE
- ${PROJECT_SOURCE_DIR}/include
- ${OPENSSL_INCLUDE_DIR}
-)
-
-target_link_libraries(douwco_web PUBLIC
- Crow::Crow
- ${OPENSSL_LIBRARIES} ${ZLIB_LIBRARIES}
-)
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 5e5147c..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,32 +0,0 @@
-# Use an official Ubuntu as a parent image
-FROM ubuntu:latest
-
-# Set the working directory in the container to /app
-WORKDIR /server
-
-# Install necessary packages, including CMake, a C++ compiler, and wget
-RUN apt-get update && \
- apt-get install -y cmake g++ make wget zlib1g-dev && \
- apt-get clean;
-
-# Download Crow library
-RUN wget https://github.com/CrowCpp/Crow/releases/download/v1.2.1.2/Crow-1.2.1-Linux.deb && \
- apt-get install -y ./Crow-1.2.1-Linux.deb
-
-# Copy the current directory contents into the container at /app
-COPY . /server
-
-# Make the build directory
-RUN mkdir -p build && cd build
-
-# Run CMake to configure the build
-RUN cmake .
-
-# Build the project
-RUN cmake --build .
-
-# Expose port 8888 for the web server
-EXPOSE 8888
-
-# Command to run the executable
-CMD ["./douwco_web"]
diff --git a/DouwcoWebsite.sln b/DouwcoWebsite.sln
new file mode 100644
index 0000000..1b64bc7
--- /dev/null
+++ b/DouwcoWebsite.sln
@@ -0,0 +1,21 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DouwcoWebsite", "DouwcoWebsite\DouwcoWebsite.csproj", "{CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{694925D6-4EC4-41C4-A53D-E2EB3B80A0F7}"
+ ProjectSection(SolutionItems) = preProject
+ compose.yaml = compose.yaml
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {CCF6B1B7-9CEB-485C-BDE4-BB6A2D1BC9A5}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+EndGlobal
diff --git a/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/.gitignore b/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/.gitignore
new file mode 100644
index 0000000..4b22880
--- /dev/null
+++ b/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/.gitignore
@@ -0,0 +1,15 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/contentModel.xml
+/projectSettingsUpdater.xml
+/modules.xml
+/.idea.DouwcoWebsite.iml
+# Ignored default folder with query files
+/queries/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/encodings.xml b/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/encodings.xml
new file mode 100644
index 0000000..df87cf9
--- /dev/null
+++ b/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/indexLayout.xml b/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/indexLayout.xml
new file mode 100644
index 0000000..7b08163
--- /dev/null
+++ b/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/indexLayout.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/vcs.xml b/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/vcs.xml
new file mode 100644
index 0000000..b2bdec2
--- /dev/null
+++ b/DouwcoWebsite/.idea/.idea.DouwcoWebsite.dir/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DouwcoWebsite/Dockerfile b/DouwcoWebsite/Dockerfile
new file mode 100644
index 0000000..3552c45
--- /dev/null
+++ b/DouwcoWebsite/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 ["DouwcoWebsite/DouwcoWebsite.csproj", "DouwcoWebsite/"]
+RUN dotnet restore "DouwcoWebsite/DouwcoWebsite.csproj"
+COPY . .
+WORKDIR "/src/DouwcoWebsite"
+RUN dotnet build "./DouwcoWebsite.csproj" -c $BUILD_CONFIGURATION -o /app/build
+
+FROM build AS publish
+ARG BUILD_CONFIGURATION=Release
+RUN dotnet publish "./DouwcoWebsite.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
+
+FROM base AS final
+WORKDIR /app
+COPY --from=publish /app/publish .
+ENTRYPOINT ["dotnet", "DouwcoWebsite.dll"]
diff --git a/DouwcoWebsite/DouwcoWebsite.csproj b/DouwcoWebsite/DouwcoWebsite.csproj
new file mode 100644
index 0000000..e6a0424
--- /dev/null
+++ b/DouwcoWebsite/DouwcoWebsite.csproj
@@ -0,0 +1,91 @@
+
+
+
+ net10.0
+ enable
+ enable
+ Linux
+
+
+
+
+ .dockerignore
+
+
+
+
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.min.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.js.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.js.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.esm.min.js.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.js.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\dist\js\bootstrap.min.js.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\bootstrap\LICENSE" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\dist\jquery.validate.unobtrusive.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\dist\jquery.validate.unobtrusive.min.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\additional-methods.min.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\dist\jquery.validate.min.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery-validation\LICENSE.md" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.min.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.min.js" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\dist\jquery.slim.min.map" />
+ <_ContentIncludedByDefault Remove="wwwroot\lib\jquery\LICENSE.txt" />
+ <_ContentIncludedByDefault Remove="Pages\AboutMe.cshtml" />
+ <_ContentIncludedByDefault Remove="Pages\DouwcoApps.cshtml" />
+ <_ContentIncludedByDefault Remove="Pages\Error.cshtml" />
+ <_ContentIncludedByDefault Remove="Pages\MyGames.cshtml" />
+ <_ContentIncludedByDefault Remove="Pages\Shared\_Layout.cshtml" />
+ <_ContentIncludedByDefault Remove="Pages\Shared\_ValidationScriptsPartial.cshtml" />
+ <_ContentIncludedByDefault Remove="Pages\_ViewImports.cshtml" />
+ <_ContentIncludedByDefault Remove="Pages\_ViewStart.cshtml" />
+
+
+
+
+
+
+
diff --git a/DouwcoWebsite/Program.cs b/DouwcoWebsite/Program.cs
new file mode 100644
index 0000000..d986a05
--- /dev/null
+++ b/DouwcoWebsite/Program.cs
@@ -0,0 +1,18 @@
+var builder = WebApplication.CreateBuilder(args);
+
+// Add services to the container.
+builder.Services.AddControllers(); // For API controllers
+
+var app = builder.Build();
+app.MapGet("/api/test", () => "test works!");
+
+// Configure the HTTP request pipeline.
+// No need for UseHttpsRedirection or UseHsts, as Nginx handles SSL.
+app.UseDefaultFiles(); // Enable default file serving
+app.UseStaticFiles(); // Serve static files from wwwroot
+app.UseRouting();
+app.UseAuthorization();
+
+app.MapControllers(); // Map API controllers
+
+app.Run();
\ No newline at end of file
diff --git a/DouwcoWebsite/Properties/launchSettings.json b/DouwcoWebsite/Properties/launchSettings.json
new file mode 100644
index 0000000..47212ce
--- /dev/null
+++ b/DouwcoWebsite/Properties/launchSettings.json
@@ -0,0 +1,14 @@
+{
+ "$schema": "https://json.schemastore.org/launchsettings.json",
+ "profiles": {
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "applicationUrl": "http://localhost:8080",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/DouwcoWebsite/appsettings.Development.json b/DouwcoWebsite/appsettings.Development.json
new file mode 100644
index 0000000..770d3e9
--- /dev/null
+++ b/DouwcoWebsite/appsettings.Development.json
@@ -0,0 +1,9 @@
+{
+ "DetailedErrors": true,
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/DouwcoWebsite/appsettings.json b/DouwcoWebsite/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/DouwcoWebsite/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite
new file mode 100755
index 0000000..2648568
Binary files /dev/null and b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite differ
diff --git a/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.deps.json b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.deps.json
new file mode 100644
index 0000000..2cb0b95
--- /dev/null
+++ b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v10.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v10.0": {
+ "DouwcoWebsite/1.0.0": {
+ "runtime": {
+ "DouwcoWebsite.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "DouwcoWebsite/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.dll b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.dll
new file mode 100644
index 0000000..f523855
Binary files /dev/null and b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.dll differ
diff --git a/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.pdb b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.pdb
new file mode 100644
index 0000000..7b68f01
Binary files /dev/null and b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.pdb differ
diff --git a/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
new file mode 100644
index 0000000..ed5401a
--- /dev/null
+++ b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
@@ -0,0 +1,19 @@
+{
+ "runtimeOptions": {
+ "tfm": "net10.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "10.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "10.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.GC.Server": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
new file mode 100644
index 0000000..b89386c
--- /dev/null
+++ b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
@@ -0,0 +1 @@
+{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"css/douwco.css","AssetFile":"css/douwco.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.css","AssetFile":"css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="}]},{"Route":"css/douwco.css.gz","AssetFile":"css/douwco.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"css/douwco.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"}]},{"Route":"css/douwco.hj6z4y4hul.css.gz","AssetFile":"css/douwco.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="},{"Name":"label","Value":"css/douwco.css.gz"}]},{"Route":"css/style.css","AssetFile":"css/style.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.css","AssetFile":"css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:55:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="}]},{"Route":"css/style.css.gz","AssetFile":"css/style.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"css/style.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:55:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"}]},{"Route":"css/style.zht5oisgp4.css.gz","AssetFile":"css/style.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="},{"Name":"label","Value":"css/style.css.gz"}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.ad5rsjjdyd.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="}]},{"Route":"fonts/Montserrat-Bold.0f68wwysiu.ttf","AssetFile":"fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0f68wwysiu"},{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="},{"Name":"label","Value":"fonts/Montserrat-Bold.ttf"}]},{"Route":"fonts/Montserrat-Bold.ttf","AssetFile":"fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="}]},{"Route":"fonts/Montserrat-Regular.ttf","AssetFile":"fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="}]},{"Route":"fonts/Montserrat-Regular.x1juw6fwdo.ttf","AssetFile":"fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x1juw6fwdo"},{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="},{"Name":"label","Value":"fonts/Montserrat-Regular.ttf"}]},{"Route":"fonts/Righteous-Regular.ttf","AssetFile":"fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="}]},{"Route":"fonts/Righteous-Regular.vov7vgyq3c.ttf","AssetFile":"fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vov7vgyq3c"},{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="},{"Name":"label","Value":"fonts/Righteous-Regular.ttf"}]},{"Route":"img/alcove.l353dch9cq.png","AssetFile":"img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:02:53 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l353dch9cq"},{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="},{"Name":"label","Value":"img/alcove.png"}]},{"Route":"img/alcove.png","AssetFile":"img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:02:53 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="}]},{"Route":"img/douwco_logo.1uvsuil67c.png","AssetFile":"img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1uvsuil67c"},{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="},{"Name":"label","Value":"img/douwco_logo.png"}]},{"Route":"img/douwco_logo.png","AssetFile":"img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="}]},{"Route":"img/godot_addons.51o0o1kej0.png","AssetFile":"img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:42:41 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"51o0o1kej0"},{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="},{"Name":"label","Value":"img/godot_addons.png"}]},{"Route":"img/godot_addons.png","AssetFile":"img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:42:41 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="}]},{"Route":"img/icons/devicegamepad2.oag7kgbssd.png","AssetFile":"img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oag7kgbssd"},{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="},{"Name":"label","Value":"img/icons/devicegamepad2.png"}]},{"Route":"img/icons/devicegamepad2.png","AssetFile":"img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="}]},{"Route":"img/icons/europe.emyxcyr7lm.png","AssetFile":"img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"emyxcyr7lm"},{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="},{"Name":"label","Value":"img/icons/europe.png"}]},{"Route":"img/icons/europe.png","AssetFile":"img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="}]},{"Route":"img/icons/projects_icon.7ny7t6og73.png","AssetFile":"img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ny7t6og73"},{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="},{"Name":"label","Value":"img/icons/projects_icon.png"}]},{"Route":"img/icons/projects_icon.png","AssetFile":"img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="}]},{"Route":"img/icons/user.png","AssetFile":"img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="}]},{"Route":"img/icons/user.sd1j8sitba.png","AssetFile":"img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sd1j8sitba"},{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="},{"Name":"label","Value":"img/icons/user.png"}]},{"Route":"img/me_img.bosvnkg9xk.png","AssetFile":"img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bosvnkg9xk"},{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="},{"Name":"label","Value":"img/me_img.png"}]},{"Route":"img/me_img.png","AssetFile":"img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="}]},{"Route":"img/rollability.98ow7jrzxd.png","AssetFile":"img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:57:30 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"98ow7jrzxd"},{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="},{"Name":"label","Value":"img/rollability.png"}]},{"Route":"img/rollability.png","AssetFile":"img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:57:30 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="}]},{"Route":"img/server_image.aekh8pde6e.png","AssetFile":"img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aekh8pde6e"},{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="},{"Name":"label","Value":"img/server_image.png"}]},{"Route":"img/server_image.png","AssetFile":"img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="}]},{"Route":"includes/about_me.html","AssetFile":"includes/about_me.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000482625483"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="},{"Name":"original-resource","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""}]},{"Route":"includes/about_me.html","AssetFile":"includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5919"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:21 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="}]},{"Route":"includes/about_me.html.gz","AssetFile":"includes/about_me.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8="}]},{"Route":"includes/about_me.uc8ei42wrd.html","AssetFile":"includes/about_me.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000482625483"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uc8ei42wrd"},{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="},{"Name":"label","Value":"includes/about_me.html"},{"Name":"original-resource","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""}]},{"Route":"includes/about_me.uc8ei42wrd.html","AssetFile":"includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5919"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:21 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uc8ei42wrd"},{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="},{"Name":"label","Value":"includes/about_me.html"}]},{"Route":"includes/about_me.uc8ei42wrd.html.gz","AssetFile":"includes/about_me.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uc8ei42wrd"},{"Name":"integrity","Value":"sha256-UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8="},{"Name":"label","Value":"includes/about_me.html.gz"}]},{"Route":"includes/apps.html","AssetFile":"includes/apps.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.html","AssetFile":"includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="}]},{"Route":"includes/apps.html.gz","AssetFile":"includes/apps.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"includes/apps.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"}]},{"Route":"includes/apps.lzakhpjgbx.html.gz","AssetFile":"includes/apps.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="},{"Name":"label","Value":"includes/apps.html.gz"}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"includes/games.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:22 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"}]},{"Route":"includes/games.4rnn98hyqz.html.gz","AssetFile":"includes/games.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="},{"Name":"label","Value":"includes/games.html.gz"}]},{"Route":"includes/games.html","AssetFile":"includes/games.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.html","AssetFile":"includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:22 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="}]},{"Route":"includes/games.html.gz","AssetFile":"includes/games.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"includes/home.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 16:20:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"}]},{"Route":"includes/home.1tkatawvq4.html.gz","AssetFile":"includes/home.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="},{"Name":"label","Value":"includes/home.html.gz"}]},{"Route":"includes/home.html","AssetFile":"includes/home.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.html","AssetFile":"includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 16:20:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="}]},{"Route":"includes/home.html.gz","AssetFile":"includes/home.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="}]},{"Route":"index.ew1mknl83p.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.ew1mknl83p.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:06:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"}]},{"Route":"index.ew1mknl83p.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":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="},{"Name":"label","Value":"index.html.gz"}]},{"Route":"index.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:06:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="}]},{"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":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"js/index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:03:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"}]},{"Route":"js/index.ga1fkhapv2.js.gz","AssetFile":"js/index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="},{"Name":"label","Value":"js/index.js.gz"}]},{"Route":"js/index.js","AssetFile":"js/index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.js","AssetFile":"js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:03:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="}]},{"Route":"js/index.js.gz","AssetFile":"js/index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"js/main.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"}]},{"Route":"js/main.gapopd6iwt.js.gz","AssetFile":"js/main.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="},{"Name":"label","Value":"js/main.js.gz"}]},{"Route":"js/main.js","AssetFile":"js/main.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.js","AssetFile":"js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="}]},{"Route":"js/main.js.gz","AssetFile":"js/main.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="}]},{"Route":"vid/procedural_streets.7zwzofruh3.mp4","AssetFile":"vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:11:01 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7zwzofruh3"},{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="},{"Name":"label","Value":"vid/procedural_streets.mp4"}]},{"Route":"vid/procedural_streets.mp4","AssetFile":"vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:11:01 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="}]}]}
\ No newline at end of file
diff --git a/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
new file mode 100644
index 0000000..7b77e33
--- /dev/null
+++ b/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
@@ -0,0 +1 @@
+{"ContentRoots":["/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"index.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz"},"Patterns":null},"css":{"Children":{"douwco.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/douwco.css"},"Patterns":null},"douwco.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz"},"Patterns":null},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/style.css"},"Patterns":null},"style.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"Montserrat-Bold.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Bold.ttf"},"Patterns":null},"Montserrat-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Regular.ttf"},"Patterns":null},"Righteous-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Righteous-Regular.ttf"},"Patterns":null}},"Asset":null,"Patterns":null},"img":{"Children":{"alcove.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/alcove.png"},"Patterns":null},"douwco_logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.png"},"Patterns":null},"godot_addons.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/godot_addons.png"},"Patterns":null},"me_img.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/me_img.png"},"Patterns":null},"rollability.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/rollability.png"},"Patterns":null},"server_image.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/server_image.png"},"Patterns":null},"icons":{"Children":{"devicegamepad2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/devicegamepad2.png"},"Patterns":null},"europe.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/europe.png"},"Patterns":null},"projects_icon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/projects_icon.png"},"Patterns":null},"user.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/user.png"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"includes":{"Children":{"about_me.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/about_me.html"},"Patterns":null},"about_me.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz"},"Patterns":null},"apps.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/apps.html"},"Patterns":null},"apps.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz"},"Patterns":null},"games.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/games.html"},"Patterns":null},"games.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz"},"Patterns":null},"home.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/home.html"},"Patterns":null},"home.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"index.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/index.js"},"Patterns":null},"index.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz"},"Patterns":null},"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null},"main.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"vid":{"Children":{"procedural_streets.mp4":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"vid/procedural_streets.mp4"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/DouwcoWebsite/bin/Debug/net10.0/appsettings.Development.json b/DouwcoWebsite/bin/Debug/net10.0/appsettings.Development.json
new file mode 100644
index 0000000..770d3e9
--- /dev/null
+++ b/DouwcoWebsite/bin/Debug/net10.0/appsettings.Development.json
@@ -0,0 +1,9 @@
+{
+ "DetailedErrors": true,
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/DouwcoWebsite/bin/Debug/net10.0/appsettings.json b/DouwcoWebsite/bin/Debug/net10.0/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/DouwcoWebsite/bin/Debug/net10.0/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/DouwcoWebsite/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/DouwcoWebsite/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..925b135
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
diff --git a/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
new file mode 100644
index 0000000..ef32e9b
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("DouwcoWebsite")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+124c97e6ccd0fd8ef0164f0b2d0819c86413c47d")]
+[assembly: System.Reflection.AssemblyProductAttribute("DouwcoWebsite")]
+[assembly: System.Reflection.AssemblyTitleAttribute("DouwcoWebsite")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..19586af
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+fdbaf8500e6eb7a2b9a6f73968667501e6723693d7a4495e4dddf56f8eed4aa1
diff --git a/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..04343cf
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,23 @@
+is_global = true
+build_property.TargetFramework = net10.0
+build_property.TargetFrameworkIdentifier = .NETCoreApp
+build_property.TargetFrameworkVersion = v10.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb = true
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = DouwcoWebsite
+build_property.RootNamespace = DouwcoWebsite
+build_property.ProjectDir = /home/douwe/Projects/douwco_website/DouwcoWebsite/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.RazorLangVersion = 9.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = /home/douwe/Projects/douwco_website/DouwcoWebsite
+build_property._RazorSourceGeneratorDebug =
+build_property.EffectiveAnalysisLevelStyle = 10.0
+build_property.EnableCodeStyleSeverity =
diff --git a/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GlobalUsings.g.cs b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GlobalUsings.g.cs
new file mode 100644
index 0000000..5e6145d
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GlobalUsings.g.cs
@@ -0,0 +1,17 @@
+//
+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/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 0000000..e69de29
diff --git a/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.assets.cache b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.assets.cache
new file mode 100644
index 0000000..e4f161f
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.assets.cache differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..0589de3
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+74b9bd496c05eb2a4046e1b4fb88f5712da3bff33d1379765a5a99db2c3ed771
diff --git a/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.FileListAbsolute.txt b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..fb8b70c
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.FileListAbsolute.txt
@@ -0,0 +1,174 @@
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/appsettings.Development.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/appsettings.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.deps.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.dll
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.pdb
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/rpswa.dswa.cache.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.RazorAssemblyInfo.cache
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.RazorAssemblyInfo.cs
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/rjimswa.dswa.cache.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/lpy6u1e1e8-{0}-fr7q2aak1r-fr7q2aak1r.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/0emknxxut5-{0}-bqjiyaj88i-bqjiyaj88i.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/e5gpx79cxs-{0}-c2jlpeoesf-c2jlpeoesf.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/bsev5l1mto-{0}-erw9l3u2r3-erw9l3u2r3.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/bpoai94h6e-{0}-aexeepp0ev-aexeepp0ev.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/a85xz5z9rm-{0}-d7shbmvgxk-d7shbmvgxk.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/grnu1j994i-{0}-ausgxo2sd3-ausgxo2sd3.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/4y3srgojh1-{0}-k8d9w2qqmf-k8d9w2qqmf.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/deag4cc0ep-{0}-cosvhxvwiu-cosvhxvwiu.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/9a5zwgiaan-{0}-ub07r2b239-ub07r2b239.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/01soszrv00-{0}-fvhpjtyr6v-fvhpjtyr6v.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/h9z74ivryz-{0}-b7pk76d08c-b7pk76d08c.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/ialw4fnwcx-{0}-fsbi9cje9m-fsbi9cje9m.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/7mqlyvocgv-{0}-rzd6atqjts-rzd6atqjts.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/yl0mb51nsp-{0}-ee0r1s7dh0-ee0r1s7dh0.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/25dfnmbb9u-{0}-dxx9fxp4il-dxx9fxp4il.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/vzhbtdq8xa-{0}-jd9uben2k1-jd9uben2k1.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/dx9516ijn1-{0}-khv3u5hwcm-khv3u5hwcm.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/ivsf1pbtfl-{0}-r4e9w2rdcm-r4e9w2rdcm.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/vxd3kdoo5x-{0}-lcd1t2u6c8-lcd1t2u6c8.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/yyjat4wjps-{0}-c2oey78nd0-c2oey78nd0.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/g5jhhye44c-{0}-tdbxkamptv-tdbxkamptv.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/9j3o2w23du-{0}-j5mq2jizvt-j5mq2jizvt.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/nr5a3tbycd-{0}-06098lyss8-06098lyss8.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/he9jdx7oc3-{0}-nvvlpmu67g-nvvlpmu67g.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/z6isr2ofmm-{0}-s35ty4nyc5-s35ty4nyc5.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/zqxz5f6lhb-{0}-pj5nd1wqec-pj5nd1wqec.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/2c31mlx7tu-{0}-46ein0sx1k-46ein0sx1k.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/bby8wuls4f-{0}-v0zj4ognzu-v0zj4ognzu.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/te1t2p9he8-{0}-37tfw0ft22-37tfw0ft22.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/4wa4ad0sdm-{0}-hrwsygsryq-hrwsygsryq.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/5sm1pp01cd-{0}-pk9g2wxc8p-pk9g2wxc8p.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/wb0sojefje-{0}-ft3s53vfgj-ft3s53vfgj.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/ubh9t1cx6q-{0}-6cfz1n2cew-6cfz1n2cew.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/qaeeoxk0w3-{0}-6pdc2jztkx-6pdc2jztkx.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/fpeg47kp7z-{0}-493y06b0oq-493y06b0oq.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/x5ahjtjje6-{0}-iovd86k7lj-iovd86k7lj.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/y9rqwmg4kz-{0}-vr1egmr9el-vr1egmr9el.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/026ua00u9b-{0}-kbrnm935zg-kbrnm935zg.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/mukneu3cqb-{0}-jj8uyg4cgr-jj8uyg4cgr.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/soncbspue2-{0}-y7v9cxd14o-y7v9cxd14o.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/0dzmcr9vpm-{0}-notf2xhcfb-notf2xhcfb.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/3459n4ftmb-{0}-h1s4sie4z3-h1s4sie4z3.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/g7oxkujd5k-{0}-63fj8s7r0e-63fj8s7r0e.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/b9q6ycmmkx-{0}-0j3bgjxly4-0j3bgjxly4.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/grxt8kcu5w-{0}-47otxtyo56-47otxtyo56.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/awtwnwk9dt-{0}-4v8eqarkd7-4v8eqarkd7.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/lg4oyc8jfo-{0}-l3n5xuwxn8-l3n5xuwxn8.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/8g7trbycx9-{0}-ilo7uva0vt-ilo7uva0vt.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/g31fkeao1k-{0}-qlccset4i1-qlccset4i1.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/r0b9o2kz6p-{0}-lzl9nlhx6b-lzl9nlhx6b.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/larezwyena-{0}-ag7o75518u-ag7o75518u.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/c8jtyoy6mk-{0}-xzw0cte36n-xzw0cte36n.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/56t7cuiogq-{0}-0i3buxo5is-0i3buxo5is.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/2xoqamp7xs-{0}-o1o13a6vjx-o1o13a6vjx.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/koklc8j1re-{0}-ttgo8qnofa-ttgo8qnofa.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/p9fv74w3uc-{0}-2z0ns9nrw6-2z0ns9nrw6.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/fu8mzylu3u-{0}-muycvpuwrr-muycvpuwrr.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/tpaos3gjet-{0}-87fc7y1x7t-87fc7y1x7t.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/p36ukouwlr-{0}-jfsiqqwiad-jfsiqqwiad.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json.cache
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.development.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.endpoints.json
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/swae.build.ex.cache
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.dll
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/refint/DouwcoWebsite.dll
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.pdb
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/ref/DouwcoWebsite.dll
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-w4zorqzbn3-w4zorqzbn3.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/rbmw2odb2q-{0}-f18obfo6d0-f18obfo6d0.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz
+/mnt/douwe/hdd/Projects/DouwcoWebsite/DouwcoWebsite/obj/Debug/net10.0/compressed/a7k0gmwsrx-{0}-p1gf7i41uv-p1gf7i41uv.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/appsettings.Development.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/appsettings.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.deps.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.dll
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.pdb
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/rpswa.dswa.cache.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/rjimswa.dswa.cache.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json.cache
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.development.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.endpoints.json
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/swae.build.ex.cache
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.dll
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/refint/DouwcoWebsite.dll
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.pdb
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/ref/DouwcoWebsite.dll
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-83k5mynxz9-83k5mynxz9.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/zzt9de8h98-{0}-lzrvpymso3-lzrvpymso3.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-mev0rr53vv-mev0rr53vv.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-iag5vy4gy9-iag5vy4gy9.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-a5uo9hlh1v-a5uo9hlh1v.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-jsinze90k8-jsinze90k8.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-wr1co08aqt-wr1co08aqt.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz
+/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz
+/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/appsettings.Development.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/appsettings.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.runtime.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.staticwebassets.endpoints.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite
+/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.deps.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.runtimeconfig.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.dll
+/home/douwe/Projects/douwco_website/DouwcoWebsite/bin/Debug/net10.0/DouwcoWebsite.pdb
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/rpswa.dswa.cache.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.GeneratedMSBuildEditorConfig.editorconfig
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfoInputs.cache
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.AssemblyInfo.cs
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.csproj.CoreCompileInputs.cache
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.MvcApplicationPartsAssemblyInfo.cache
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/rjimswa.dswa.cache.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json.cache
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.development.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.endpoints.json
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/swae.build.ex.cache
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.dll
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/refint/DouwcoWebsite.dll
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.pdb
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/ref/DouwcoWebsite.dll
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz
+/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz
diff --git a/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.dll b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.dll
new file mode 100644
index 0000000..f523855
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.dll differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
new file mode 100644
index 0000000..f80704c
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.genruntimeconfig.cache
@@ -0,0 +1 @@
+db5c921ffb768eee4f2d71d03fb6a6b5cee32f87f18d7687180c50f2d437b7f4
diff --git a/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.pdb b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.pdb
new file mode 100644
index 0000000..7b68f01
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/DouwcoWebsite.pdb differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/apphost b/DouwcoWebsite/obj/Debug/net10.0/apphost
new file mode 100755
index 0000000..2648568
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/apphost differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz
new file mode 100644
index 0000000..16d1369
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz
new file mode 100644
index 0000000..bb4b639
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-wr1co08aqt-wr1co08aqt.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-wr1co08aqt-wr1co08aqt.gz
new file mode 100644
index 0000000..9ddfc9c
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-wr1co08aqt-wr1co08aqt.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-iag5vy4gy9-iag5vy4gy9.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-iag5vy4gy9-iag5vy4gy9.gz
new file mode 100644
index 0000000..690d27d
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-iag5vy4gy9-iag5vy4gy9.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz
new file mode 100644
index 0000000..a0e1708
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz
new file mode 100644
index 0000000..2e97f42
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-a5uo9hlh1v-a5uo9hlh1v.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-a5uo9hlh1v-a5uo9hlh1v.gz
new file mode 100644
index 0000000..dc297ca
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-a5uo9hlh1v-a5uo9hlh1v.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz
new file mode 100644
index 0000000..dc1731e
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-mev0rr53vv-mev0rr53vv.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-mev0rr53vv-mev0rr53vv.gz
new file mode 100644
index 0000000..ce7a878
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-mev0rr53vv-mev0rr53vv.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz
new file mode 100644
index 0000000..6e9b342
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz
new file mode 100644
index 0000000..c6433df
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz
new file mode 100644
index 0000000..9534aba
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-jsinze90k8-jsinze90k8.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-jsinze90k8-jsinze90k8.gz
new file mode 100644
index 0000000..9cbf252
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-jsinze90k8-jsinze90k8.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz
new file mode 100644
index 0000000..8260d02
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz
new file mode 100644
index 0000000..0ff0ff3
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/compressed/zzt9de8h98-{0}-lzrvpymso3-lzrvpymso3.gz b/DouwcoWebsite/obj/Debug/net10.0/compressed/zzt9de8h98-{0}-lzrvpymso3-lzrvpymso3.gz
new file mode 100644
index 0000000..35161d8
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/compressed/zzt9de8h98-{0}-lzrvpymso3-lzrvpymso3.gz differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/rbcswa.dswa.cache.json b/DouwcoWebsite/obj/Debug/net10.0/rbcswa.dswa.cache.json
new file mode 100644
index 0000000..53f0862
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/rbcswa.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"2ilJ2M8+ZdH0swl4cXFj9Ji8kay0R08ISE/fEc+OL0o=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["mZDQ3R8ID6M0\u002BGFTAo4IgnJJQwZLGER6PEGNVkFx6ow=","rDYAfiHAhUMbHWsNiXukKoLsGfoJgm24C25pMHdKLnM=","LIB3xW\u002BKqM0sSexybyOnzG\u002BJmo7SPJ8FS8GAcCb3oG4=","VNOmcLpiS1FC9P3Iebq3xo5d4jvnkbIbggPDhJ/tttE=","M7Zo6\u002BAsEJJUBKrysVOS9WWPANiWnOC50qj9lYFv0KQ=","PwBt5hxFLJ0KuCm/00JvJLwGxrMANpUpXT8IggsRGyA=","Wb6eoGNVJ0q8hy/\u002Bsw5Jej3hIm1FZfxIhnrqS\u002Bf/P9k=","yYxDYJ2NP8B7Wst1hhBGaGuvLP5HapdZ24ae2Q5Mb0Y=","lM5R8YgZuIOAeukWL/HGTNgIPRbO\u002BWOK5DGWHLMs3vc=","u2/Fi5f3nvvO2\u002BYaqjcBWEDPw2DJr/x0/he806DJ1bg="],"CachedAssets":{"PwBt5hxFLJ0KuCm/00JvJLwGxrMANpUpXT8IggsRGyA=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"index#[.{fingerprint=ew1mknl83p}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/index.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3xvpvanmv5","Integrity":"10Ru5\u002B15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/index.html","FileLength":596,"LastWriteTime":"2026-02-12T15:19:58.946706+00:00"},"VNOmcLpiS1FC9P3Iebq3xo5d4jvnkbIbggPDhJ/tttE=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/games#[.{fingerprint=4rnn98hyqz}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/games.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e935t8w10j","Integrity":"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/games.html","FileLength":100,"LastWriteTime":"2026-02-12T15:19:58.9448947+00:00"},"LIB3xW\u002BKqM0sSexybyOnzG\u002BJmo7SPJ8FS8GAcCb3oG4=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/apps#[.{fingerprint=lzakhpjgbx}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/apps.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hr48aknd23","Integrity":"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/apps.html","FileLength":103,"LastWriteTime":"2026-02-12T15:19:58.9448947+00:00"},"rDYAfiHAhUMbHWsNiXukKoLsGfoJgm24C25pMHdKLnM=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"favicon#[.{fingerprint=ad5rsjjdyd}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"62ils0f8i2","Integrity":"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/favicon.ico","FileLength":7695,"LastWriteTime":"2026-02-12T09:35:23.0672477+00:00"},"M7Zo6\u002BAsEJJUBKrysVOS9WWPANiWnOC50qj9lYFv0KQ=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/home#[.{fingerprint=1tkatawvq4}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/home.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j2hs9dheop","Integrity":"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/home.html","FileLength":553,"LastWriteTime":"2026-02-12T20:48:31.318528+00:00"},"Wb6eoGNVJ0q8hy/\u002Bsw5Jej3hIm1FZfxIhnrqS\u002Bf/P9k=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"js/index#[.{fingerprint=ga1fkhapv2}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/index.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ursli8r5s7","Integrity":"Fhk4WIP\u002BSxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/index.js","FileLength":597,"LastWriteTime":"2026-02-12T15:19:58.943706+00:00"},"lM5R8YgZuIOAeukWL/HGTNgIPRbO\u002BWOK5DGWHLMs3vc=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"css/style#[.{fingerprint=zht5oisgp4}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/style.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"34cb359oqg","Integrity":"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/style.css","FileLength":1033,"LastWriteTime":"2026-02-12T22:13:35.0744881+00:00"},"u2/Fi5f3nvvO2\u002BYaqjcBWEDPw2DJr/x0/he806DJ1bg=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/about_me#[.{fingerprint=uc8ei42wrd}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/about_me.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cp2wdxmg5d","Integrity":"UHnULGLs\u002BOyar1iEwNWrs\u002B5JH/QuZkcpmiyN4WiHPd8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/about_me.html","FileLength":2071,"LastWriteTime":"2026-02-12T22:13:35.0734881+00:00"},"mZDQ3R8ID6M0\u002BGFTAo4IgnJJQwZLGER6PEGNVkFx6ow=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"css/douwco#[.{fingerprint=hj6z4y4hul}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/douwco.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mawhswpgfr","Integrity":"vmnGZZfnN69bKJVreZrEMGzf9\u002BxOich0puFhBlgjx/w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/douwco.css","FileLength":281,"LastWriteTime":"2026-02-12T09:35:23.0538548+00:00"},"yYxDYJ2NP8B7Wst1hhBGaGuvLP5HapdZ24ae2Q5Mb0Y=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"js/main#[.{fingerprint=gapopd6iwt}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/main.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"eoqnh43yw3","Integrity":"MihTryr289Oy29v2leLCPpDzNGmjii\u002BJZz7EtTc8L\u002BE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/main.js","FileLength":499,"LastWriteTime":"2026-02-12T09:35:23.0549+00:00"}},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/Debug/net10.0/ref/DouwcoWebsite.dll b/DouwcoWebsite/obj/Debug/net10.0/ref/DouwcoWebsite.dll
new file mode 100644
index 0000000..7e91128
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/ref/DouwcoWebsite.dll differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/refint/DouwcoWebsite.dll b/DouwcoWebsite/obj/Debug/net10.0/refint/DouwcoWebsite.dll
new file mode 100644
index 0000000..7e91128
Binary files /dev/null and b/DouwcoWebsite/obj/Debug/net10.0/refint/DouwcoWebsite.dll differ
diff --git a/DouwcoWebsite/obj/Debug/net10.0/rjimswa.dswa.cache.json b/DouwcoWebsite/obj/Debug/net10.0/rjimswa.dswa.cache.json
new file mode 100644
index 0000000..ba24cf7
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/rjimswa.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"vYuNcIjVKzyGW75+DqTgUAgYEp5dCBwjSmrFeRU5PjE=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"R7Rea/YQmcweqCbKffD9oUelggfpJQX85r65aYZsas0=","InputHashes":["v\u002Bo2mhWLDG03FfiAbou8Te6Lrwgj36oDgPGTMm2nDyE=","FhRrOD5xqohyGWjBJ3tOdgO2MGhQHRVOwIhTFhMsiMk=","TjkBVlDp0ZF3g8KkR6QZ1ZHbho7p7ItqffADc7r\u002B0AI=","8Y0vF7kBRyxYvRZsjL3GEa8kNCwpH5wggh0VZEyUoko=","yxmB7E3tsOyUgBwdepBhi9A6ueupjUcivjUDuOWQGEw=","N6mbhuzEIXWF6\u002B0pCvxxFDtIPwiY2UNfhxFRkFyyh4U=","vpi1uVWCSPSePypeXM3fToATY8TrZWpvR97G/uXR9S0=","w0DCFdFCrCgqXSPKGM3to8EY0\u002BQz08XOEr0cBo0F2vA=","Ip6zHOdgfYJrCSOyhqsV8CzUopR7fLdlALUjkjbWho8=","xdVlCnTJ4ZzBOt0pC69xxSRg1/5yk0oD1XnzBu2DhYc=","BeGRDgDMeQfAiMNyRt/i3GUSyhNc6d0NQc9wf6Wq0Uo=","OCvYmhSkzX3uC30ZHNLO7L27I74BSPE6DC5mgKalUuI=","8ulTQ/ddgjbgzHd7zXLCB6UsEXujuIL/ZwzGFO/KzQ8=","mfceTJYFMqWmCvoPn/5K\u002BRnq9/Ri0ZN6wngL9SmZ2qQ=","7hYFGrv191vFMtv53DTHBlF8lycJQTdrfUGZFiDL21A=","bE9BNZXJ9B7q5BXZ/IMNBi5VmmJdDq9LunF2zwZqs2M=","doN36Q7fI74U5n/3mpjDLnZVHtxMpHTlYCRBqmdXKqc=","Mlpbk6z\u002Ba5DSVhB5p6AWJCiz2T/oRGx9m4vi\u002B/xgzII=","\u002B4cuQmueAoM8XgGeOs6d6DiHo8BQmw5cZ6/1DH2D\u002Biw=","tFvODVkYe/0yW5rNbbEfARp/Dy68F24mUsSx/xx0BhE=","BDR6DztpRON/ryNVV\u002BT3F9dMciwClGL/gIxCxuGhsYo=","EDYZ2X8EDAcsa8fjHoUhrej7hz90bzlJczgEmvuRz8g=","IM8XKmagIRs6aMlEhwQOfDchBc65CJw3JQP6LDYSQfc=","BbTi1tey3IUOxVIH8YY9PbEkTw5ZPzU\u002BmvFxn3HNtqw="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/DouwcoWebsite/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
new file mode 100644
index 0000000..62117d8
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"MqxQd64z6x2eUmxK/THSn08vihXnagFKFrx550uG3uA=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["eqj3BkSmNNtzDOXXdOCTZP5nLa/Nhv6C0q9KhaDq4kc=","2CjTuSY1PaZeNmgayiDNDZJYtfB7rjCfB5zDMwN2JhQ=","zalfTX/PnTLvN1TAem0k6U2Euy5jNm6gfPzmG\u002BYwTuE=","RbVPzhynvrhCv0JzQB5/lMfoYeRaKCKo\u002B1WbJNGhBJY=","VprACyXd2tc8/wDdYWcbkLWiAy7XO1xxmXVkd8zpMZ4=","GPRc0gEVmJcyiK0km7VvXpNuUJqgxUVbbimYBnSI918=","pL1wcj5xMsnHinwp\u002BwQMG4ZxrE7NAum40gSrfMyuFLc=","HEKEwPy59c9r7b97kDoN1ZRySB0fhIj5ZFnDeKn\u002BMRo=","kKChJexLOwFVGJNQV7EfvwHf0PdcyTkv/bjrPtu7uBU=","kFzR9pFkfx8tAmERvVRIu6MnGttzQHWg5ly18y7qFNM=","85Wny3cNmf3Svc311JAJXt/TIy7MwnLsTGp0AvuShhM=","Rh3o4F64FuB2ApYvLzLuVb\u002B/qdxzcl7T\u002BBTcuISWdM4=","zErDrB8L6spkZS2eEIR4gSfLcGjUjr2dM2k5apzCK5s=","CC52YYjAX5oBVBbPu5mhO0en7KY30BZ8WVKRHNqlMcg=","TeS8bo2WB6wSOxGKsHGHH5qPWDkkqd9wmTD403VMQx8=","kboK8CreABqi4uqnVKZGx3wnZ\u002BqQbHUJGs0eIaYBpYE=","8ZdBW7W6tpdaZAZUI5HtSeRmFV7rtqAgfMhRluV2y/I=","OgBjPGDTkvh\u002BA/HmuiYDM4FFTO6fd4uZ/a1wLn/3c1Q=","UM0mByikTca3T33V8e7idF53cgK1KYYmSOUuCdan5A0=","Dm89jJq86MYL65yTkLq06eZ\u002BgDFRjfPfb2SrmAHii\u002BY=","WJF/mj\u002BJufI/D4OzIVaYr5Wh3ng\u002B/8/LCLoKHcW3p\u002BU=","f/S2CJi3rgVQ5fNay3NT9v94uhX0wDO\u002B1VEcZd8oXDU=","KKoPyQDtHnoWtc4wi0I3ur2ls\u002BR/xOx2VXQ\u002BZfPE94w=","8cgEdyyLHXyxRFtIlkERSZeGIketmNmxNPLhxVdqC3g=","UpyEIGne\u002BKdzUM1SJTMEoQaJW51LpYU1s4f5SMVFnIA=","7kf\u002B59PYSCBfcZrGQBj7mU9XQB6qTFVppC1GNwR0kqw=","HYvhKEohNfesTaF1fiI3XRgDPNzDKqa9VOii5HBiguA=","AzowSDZZqtBtsvXW4Mn\u002BPanbJ9JREqnrt1aQTh8UavQ=","ZBbW3G\u002BFSytjj0Mk3vpaxPHEhWpKWkyW5H9Mb9Bh1Ec=","6KAjbZnUYnbKEl6dbrUi0mBjlqY23ftsVOgdtLt63kE="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/DouwcoWebsite/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
new file mode 100644
index 0000000..144b053
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"1dqn5RKZv78rpdpskS9EMrPENaMsbMoeW1nD08PVwsQ=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["eqj3BkSmNNtzDOXXdOCTZP5nLa/Nhv6C0q9KhaDq4kc=","2CjTuSY1PaZeNmgayiDNDZJYtfB7rjCfB5zDMwN2JhQ=","zalfTX/PnTLvN1TAem0k6U2Euy5jNm6gfPzmG\u002BYwTuE=","RbVPzhynvrhCv0JzQB5/lMfoYeRaKCKo\u002B1WbJNGhBJY=","VprACyXd2tc8/wDdYWcbkLWiAy7XO1xxmXVkd8zpMZ4=","GPRc0gEVmJcyiK0km7VvXpNuUJqgxUVbbimYBnSI918=","pL1wcj5xMsnHinwp\u002BwQMG4ZxrE7NAum40gSrfMyuFLc=","HEKEwPy59c9r7b97kDoN1ZRySB0fhIj5ZFnDeKn\u002BMRo=","kKChJexLOwFVGJNQV7EfvwHf0PdcyTkv/bjrPtu7uBU=","kFzR9pFkfx8tAmERvVRIu6MnGttzQHWg5ly18y7qFNM=","85Wny3cNmf3Svc311JAJXt/TIy7MwnLsTGp0AvuShhM=","Rh3o4F64FuB2ApYvLzLuVb\u002B/qdxzcl7T\u002BBTcuISWdM4=","zErDrB8L6spkZS2eEIR4gSfLcGjUjr2dM2k5apzCK5s=","CC52YYjAX5oBVBbPu5mhO0en7KY30BZ8WVKRHNqlMcg=","TeS8bo2WB6wSOxGKsHGHH5qPWDkkqd9wmTD403VMQx8=","kboK8CreABqi4uqnVKZGx3wnZ\u002BqQbHUJGs0eIaYBpYE=","8ZdBW7W6tpdaZAZUI5HtSeRmFV7rtqAgfMhRluV2y/I=","OgBjPGDTkvh\u002BA/HmuiYDM4FFTO6fd4uZ/a1wLn/3c1Q=","UM0mByikTca3T33V8e7idF53cgK1KYYmSOUuCdan5A0=","Dm89jJq86MYL65yTkLq06eZ\u002BgDFRjfPfb2SrmAHii\u002BY=","WJF/mj\u002BJufI/D4OzIVaYr5Wh3ng\u002B/8/LCLoKHcW3p\u002BU=","f/S2CJi3rgVQ5fNay3NT9v94uhX0wDO\u002B1VEcZd8oXDU=","KKoPyQDtHnoWtc4wi0I3ur2ls\u002BR/xOx2VXQ\u002BZfPE94w=","8cgEdyyLHXyxRFtIlkERSZeGIketmNmxNPLhxVdqC3g=","UpyEIGne\u002BKdzUM1SJTMEoQaJW51LpYU1s4f5SMVFnIA=","7kf\u002B59PYSCBfcZrGQBj7mU9XQB6qTFVppC1GNwR0kqw=","HYvhKEohNfesTaF1fiI3XRgDPNzDKqa9VOii5HBiguA=","AzowSDZZqtBtsvXW4Mn\u002BPanbJ9JREqnrt1aQTh8UavQ=","ZBbW3G\u002BFSytjj0Mk3vpaxPHEhWpKWkyW5H9Mb9Bh1Ec=","6KAjbZnUYnbKEl6dbrUi0mBjlqY23ftsVOgdtLt63kE="],"CachedAssets":{},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/Debug/net10.0/rpswa.dswa.cache.json b/DouwcoWebsite/obj/Debug/net10.0/rpswa.dswa.cache.json
new file mode 100644
index 0000000..1d90dd2
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/rpswa.dswa.cache.json
@@ -0,0 +1 @@
+{"GlobalPropertiesHash":"d7zGw4R0yVh9GyKlx3TmsL69uhITnrr7NdbyFZcwTGE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["eqj3BkSmNNtzDOXXdOCTZP5nLa/Nhv6C0q9KhaDq4kc=","2CjTuSY1PaZeNmgayiDNDZJYtfB7rjCfB5zDMwN2JhQ=","zalfTX/PnTLvN1TAem0k6U2Euy5jNm6gfPzmG\u002BYwTuE=","RbVPzhynvrhCv0JzQB5/lMfoYeRaKCKo\u002B1WbJNGhBJY=","VprACyXd2tc8/wDdYWcbkLWiAy7XO1xxmXVkd8zpMZ4=","GPRc0gEVmJcyiK0km7VvXpNuUJqgxUVbbimYBnSI918=","pL1wcj5xMsnHinwp\u002BwQMG4ZxrE7NAum40gSrfMyuFLc=","HEKEwPy59c9r7b97kDoN1ZRySB0fhIj5ZFnDeKn\u002BMRo=","kKChJexLOwFVGJNQV7EfvwHf0PdcyTkv/bjrPtu7uBU=","kFzR9pFkfx8tAmERvVRIu6MnGttzQHWg5ly18y7qFNM=","85Wny3cNmf3Svc311JAJXt/TIy7MwnLsTGp0AvuShhM=","Rh3o4F64FuB2ApYvLzLuVb\u002B/qdxzcl7T\u002BBTcuISWdM4=","zErDrB8L6spkZS2eEIR4gSfLcGjUjr2dM2k5apzCK5s=","CC52YYjAX5oBVBbPu5mhO0en7KY30BZ8WVKRHNqlMcg=","TeS8bo2WB6wSOxGKsHGHH5qPWDkkqd9wmTD403VMQx8=","kboK8CreABqi4uqnVKZGx3wnZ\u002BqQbHUJGs0eIaYBpYE=","8ZdBW7W6tpdaZAZUI5HtSeRmFV7rtqAgfMhRluV2y/I=","OgBjPGDTkvh\u002BA/HmuiYDM4FFTO6fd4uZ/a1wLn/3c1Q=","UM0mByikTca3T33V8e7idF53cgK1KYYmSOUuCdan5A0=","Dm89jJq86MYL65yTkLq06eZ\u002BgDFRjfPfb2SrmAHii\u002BY=","WJF/mj\u002BJufI/D4OzIVaYr5Wh3ng\u002B/8/LCLoKHcW3p\u002BU=","f/S2CJi3rgVQ5fNay3NT9v94uhX0wDO\u002B1VEcZd8oXDU=","KKoPyQDtHnoWtc4wi0I3ur2ls\u002BR/xOx2VXQ\u002BZfPE94w=","8cgEdyyLHXyxRFtIlkERSZeGIketmNmxNPLhxVdqC3g=","UpyEIGne\u002BKdzUM1SJTMEoQaJW51LpYU1s4f5SMVFnIA=","7kf\u002B59PYSCBfcZrGQBj7mU9XQB6qTFVppC1GNwR0kqw=","HYvhKEohNfesTaF1fiI3XRgDPNzDKqa9VOii5HBiguA="],"CachedAssets":{"eqj3BkSmNNtzDOXXdOCTZP5nLa/Nhv6C0q9KhaDq4kc=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/douwco.css","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"css/douwco#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"hj6z4y4hul","Integrity":"IygmdqnBdiHmN\u002BNt7OdvhI5st7fdzFBnOCsskFp7bfk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/douwco.css","FileLength":719,"LastWriteTime":"2026-02-12T09:27:12.0799341+00:00"},"2CjTuSY1PaZeNmgayiDNDZJYtfB7rjCfB5zDMwN2JhQ=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/style.css","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"css/style#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"zht5oisgp4","Integrity":"l4QNnp9ZvLNhprLgFvi8Nzd\u002BXdOZNnkCr9Tc0GiECRk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/style.css","FileLength":3410,"LastWriteTime":"2026-02-12T20:55:31.6661198+00:00"},"pL1wcj5xMsnHinwp\u002BwQMG4ZxrE7NAum40gSrfMyuFLc=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/alcove.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/alcove#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"l353dch9cq","Integrity":"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/alcove.png","FileLength":175803,"LastWriteTime":"2026-02-12T21:02:53.351034+00:00"},"zalfTX/PnTLvN1TAem0k6U2Euy5jNm6gfPzmG\u002BYwTuE=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/favicon.ico","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ad5rsjjdyd","Integrity":"EnTXPLPYUsDa7NarMnxBKy1saAq\u002BouSItBMTlsFlzcs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/favicon.ico","FileLength":15406,"LastWriteTime":"2026-02-12T09:27:12.0800037+00:00"},"RbVPzhynvrhCv0JzQB5/lMfoYeRaKCKo\u002B1WbJNGhBJY=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Montserrat-Bold.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"fonts/Montserrat-Bold#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"0f68wwysiu","Integrity":"hG1YI\u002BXJCaWq1J771x3V8zIKhkD/\u002BGhAv31SnI2GYKU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Montserrat-Bold.ttf","FileLength":335788,"LastWriteTime":"2026-02-12T09:27:12.0812884+00:00"},"VprACyXd2tc8/wDdYWcbkLWiAy7XO1xxmXVkd8zpMZ4=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Montserrat-Regular.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"fonts/Montserrat-Regular#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"x1juw6fwdo","Integrity":"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Montserrat-Regular.ttf","FileLength":330948,"LastWriteTime":"2026-02-12T09:27:12.0832884+00:00"},"GPRc0gEVmJcyiK0km7VvXpNuUJqgxUVbbimYBnSI918=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Righteous-Regular.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"fonts/Righteous-Regular#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"vov7vgyq3c","Integrity":"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Righteous-Regular.ttf","FileLength":43104,"LastWriteTime":"2026-02-12T09:27:12.0832884+00:00"},"HEKEwPy59c9r7b97kDoN1ZRySB0fhIj5ZFnDeKn\u002BMRo=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/douwco_logo.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/douwco_logo#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"1uvsuil67c","Integrity":"1zmSVbUeJ9\u002Bb7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/douwco_logo.png","FileLength":55552,"LastWriteTime":"2026-02-12T09:27:12.0832884+00:00"},"kFzR9pFkfx8tAmERvVRIu6MnGttzQHWg5ly18y7qFNM=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/devicegamepad2.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/icons/devicegamepad2#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"oag7kgbssd","Integrity":"QNJkP\u002BocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/devicegamepad2.png","FileLength":3405,"LastWriteTime":"2026-02-12T09:27:12.0847081+00:00"},"85Wny3cNmf3Svc311JAJXt/TIy7MwnLsTGp0AvuShhM=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/europe.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/icons/europe#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"emyxcyr7lm","Integrity":"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/europe.png","FileLength":3968,"LastWriteTime":"2026-02-12T09:27:12.0847621+00:00"},"Rh3o4F64FuB2ApYvLzLuVb\u002B/qdxzcl7T\u002BBTcuISWdM4=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/projects_icon.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/icons/projects_icon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7ny7t6og73","Integrity":"3b8C/TTK24DQIM9B\u002BGScSeJzu\u002BpIjKNW8dZ39YNWoMQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/projects_icon.png","FileLength":8443,"LastWriteTime":"2026-02-12T09:27:12.0847621+00:00"},"zErDrB8L6spkZS2eEIR4gSfLcGjUjr2dM2k5apzCK5s=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/user.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/icons/user#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"sd1j8sitba","Integrity":"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/user.png","FileLength":9241,"LastWriteTime":"2026-02-12T09:27:12.0847621+00:00"},"CC52YYjAX5oBVBbPu5mhO0en7KY30BZ8WVKRHNqlMcg=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/me_img.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/me_img#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"bosvnkg9xk","Integrity":"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/me_img.png","FileLength":334660,"LastWriteTime":"2026-02-12T09:27:12.0852883+00:00"},"kboK8CreABqi4uqnVKZGx3wnZ\u002BqQbHUJGs0eIaYBpYE=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/server_image.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/server_image#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"aekh8pde6e","Integrity":"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/server_image.png","FileLength":1007708,"LastWriteTime":"2026-02-12T09:27:12.0912883+00:00"},"WJF/mj\u002BJufI/D4OzIVaYr5Wh3ng\u002B/8/LCLoKHcW3p\u002BU=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/index.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"index#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ew1mknl83p","Integrity":"4qxlm2n74C2pbdgeJooqN1jOf\u002B9gt\u002BeF\u002BHvKtrnHwVQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/index.html","FileLength":1779,"LastWriteTime":"2026-02-12T12:06:31.4000157+00:00"},"UM0mByikTca3T33V8e7idF53cgK1KYYmSOUuCdan5A0=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/games.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"includes/games#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"4rnn98hyqz","Integrity":"AM\u002BYysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA\u002B4WVk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/games.html","FileLength":97,"LastWriteTime":"2026-02-12T11:50:22.1555309+00:00"},"OgBjPGDTkvh\u002BA/HmuiYDM4FFTO6fd4uZ/a1wLn/3c1Q=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/apps.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"includes/apps#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"lzakhpjgbx","Integrity":"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/apps.html","FileLength":100,"LastWriteTime":"2026-02-12T11:50:02.8743069+00:00"},"f/S2CJi3rgVQ5fNay3NT9v94uhX0wDO\u002B1VEcZd8oXDU=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/index.js","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"js/index#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"ga1fkhapv2","Integrity":"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/index.js","FileLength":1596,"LastWriteTime":"2026-02-12T12:03:14.7093735+00:00"},"Dm89jJq86MYL65yTkLq06eZ\u002BgDFRjfPfb2SrmAHii\u002BY=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/home.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"includes/home#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"1tkatawvq4","Integrity":"1ez\u002B3n49vWtm6NPs2oCpqp4FM7\u002Bbcg4siOWjkk/qwy0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/home.html","FileLength":1257,"LastWriteTime":"2026-02-12T16:20:24.1841202+00:00"},"KKoPyQDtHnoWtc4wi0I3ur2ls\u002BR/xOx2VXQ\u002BZfPE94w=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/main.js","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"js/main#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"gapopd6iwt","Integrity":"\u002BHzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/main.js","FileLength":1087,"LastWriteTime":"2026-02-12T09:27:12.0927622+00:00"},"kKChJexLOwFVGJNQV7EfvwHf0PdcyTkv/bjrPtu7uBU=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/godot_addons.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/godot_addons#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"51o0o1kej0","Integrity":"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/godot_addons.png","FileLength":5770,"LastWriteTime":"2026-02-12T21:42:41.892031+00:00"},"TeS8bo2WB6wSOxGKsHGHH5qPWDkkqd9wmTD403VMQx8=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/rollability.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/rollability#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"98ow7jrzxd","Integrity":"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/rollability.png","FileLength":8471959,"LastWriteTime":"2026-02-12T20:57:30.0280083+00:00"},"8ZdBW7W6tpdaZAZUI5HtSeRmFV7rtqAgfMhRluV2y/I=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/about_me.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"includes/about_me#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"uc8ei42wrd","Integrity":"MtzocDwB60DIDMyrzOg9ev\u002BgL4wVHaKAI/BRCOd6K5Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/about_me.html","FileLength":5919,"LastWriteTime":"2026-02-12T22:13:21.9253997+00:00"},"8cgEdyyLHXyxRFtIlkERSZeGIketmNmxNPLhxVdqC3g=":{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/vid/procedural_streets.mp4","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"vid/procedural_streets#[.{fingerprint}]?.mp4","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":null,"AssetMergeSource":"","RelatedAsset":null,"AssetTraitName":null,"AssetTraitValue":null,"Fingerprint":"7zwzofruh3","Integrity":"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/vid/procedural_streets.mp4","FileLength":6792833,"LastWriteTime":"2026-02-12T22:11:01.1074532+00:00"}},"CachedCopyCandidates":{}}
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css b/DouwcoWebsite/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css
new file mode 100644
index 0000000..d6f67d1
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/scopedcss/bundle/DouwcoWebsite.styles.css
@@ -0,0 +1,49 @@
+/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
+/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
+for details on configuring this project to bundle and minify static web assets. */
+
+a.navbar-brand[b-ne5ffaaxii] {
+ white-space: normal;
+ text-align: center;
+ word-break: break-all;
+}
+
+a[b-ne5ffaaxii] {
+ color: #0077cc;
+}
+
+.btn-primary[b-ne5ffaaxii] {
+ color: #fff;
+ background-color: #1b6ec2;
+ border-color: #1861ac;
+}
+
+.nav-pills .nav-link.active[b-ne5ffaaxii], .nav-pills .show > .nav-link[b-ne5ffaaxii] {
+ color: #fff;
+ background-color: #1b6ec2;
+ border-color: #1861ac;
+}
+
+.border-top[b-ne5ffaaxii] {
+ border-top: 1px solid #e5e5e5;
+}
+.border-bottom[b-ne5ffaaxii] {
+ border-bottom: 1px solid #e5e5e5;
+}
+
+.box-shadow[b-ne5ffaaxii] {
+ box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
+}
+
+button.accept-policy[b-ne5ffaaxii] {
+ font-size: 1rem;
+ line-height: inherit;
+}
+
+.footer[b-ne5ffaaxii] {
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ white-space: nowrap;
+ line-height: 60px;
+}
diff --git a/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.endpoints.json
new file mode 100644
index 0000000..b89386c
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.endpoints.json
@@ -0,0 +1 @@
+{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"css/douwco.css","AssetFile":"css/douwco.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.css","AssetFile":"css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="}]},{"Route":"css/douwco.css.gz","AssetFile":"css/douwco.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"css/douwco.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"}]},{"Route":"css/douwco.hj6z4y4hul.css.gz","AssetFile":"css/douwco.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="},{"Name":"label","Value":"css/douwco.css.gz"}]},{"Route":"css/style.css","AssetFile":"css/style.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.css","AssetFile":"css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:55:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="}]},{"Route":"css/style.css.gz","AssetFile":"css/style.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"css/style.css.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:55:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"}]},{"Route":"css/style.zht5oisgp4.css.gz","AssetFile":"css/style.css.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="},{"Name":"label","Value":"css/style.css.gz"}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.ad5rsjjdyd.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"favicon.ico.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ico","AssetFile":"favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="}]},{"Route":"favicon.ico.gz","AssetFile":"favicon.ico.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="}]},{"Route":"fonts/Montserrat-Bold.0f68wwysiu.ttf","AssetFile":"fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0f68wwysiu"},{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="},{"Name":"label","Value":"fonts/Montserrat-Bold.ttf"}]},{"Route":"fonts/Montserrat-Bold.ttf","AssetFile":"fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="}]},{"Route":"fonts/Montserrat-Regular.ttf","AssetFile":"fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="}]},{"Route":"fonts/Montserrat-Regular.x1juw6fwdo.ttf","AssetFile":"fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x1juw6fwdo"},{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="},{"Name":"label","Value":"fonts/Montserrat-Regular.ttf"}]},{"Route":"fonts/Righteous-Regular.ttf","AssetFile":"fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="}]},{"Route":"fonts/Righteous-Regular.vov7vgyq3c.ttf","AssetFile":"fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vov7vgyq3c"},{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="},{"Name":"label","Value":"fonts/Righteous-Regular.ttf"}]},{"Route":"img/alcove.l353dch9cq.png","AssetFile":"img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:02:53 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l353dch9cq"},{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="},{"Name":"label","Value":"img/alcove.png"}]},{"Route":"img/alcove.png","AssetFile":"img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:02:53 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="}]},{"Route":"img/douwco_logo.1uvsuil67c.png","AssetFile":"img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1uvsuil67c"},{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="},{"Name":"label","Value":"img/douwco_logo.png"}]},{"Route":"img/douwco_logo.png","AssetFile":"img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="}]},{"Route":"img/godot_addons.51o0o1kej0.png","AssetFile":"img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:42:41 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"51o0o1kej0"},{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="},{"Name":"label","Value":"img/godot_addons.png"}]},{"Route":"img/godot_addons.png","AssetFile":"img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:42:41 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="}]},{"Route":"img/icons/devicegamepad2.oag7kgbssd.png","AssetFile":"img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oag7kgbssd"},{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="},{"Name":"label","Value":"img/icons/devicegamepad2.png"}]},{"Route":"img/icons/devicegamepad2.png","AssetFile":"img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="}]},{"Route":"img/icons/europe.emyxcyr7lm.png","AssetFile":"img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"emyxcyr7lm"},{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="},{"Name":"label","Value":"img/icons/europe.png"}]},{"Route":"img/icons/europe.png","AssetFile":"img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="}]},{"Route":"img/icons/projects_icon.7ny7t6og73.png","AssetFile":"img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ny7t6og73"},{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="},{"Name":"label","Value":"img/icons/projects_icon.png"}]},{"Route":"img/icons/projects_icon.png","AssetFile":"img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="}]},{"Route":"img/icons/user.png","AssetFile":"img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="}]},{"Route":"img/icons/user.sd1j8sitba.png","AssetFile":"img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sd1j8sitba"},{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="},{"Name":"label","Value":"img/icons/user.png"}]},{"Route":"img/me_img.bosvnkg9xk.png","AssetFile":"img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bosvnkg9xk"},{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="},{"Name":"label","Value":"img/me_img.png"}]},{"Route":"img/me_img.png","AssetFile":"img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="}]},{"Route":"img/rollability.98ow7jrzxd.png","AssetFile":"img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:57:30 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"98ow7jrzxd"},{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="},{"Name":"label","Value":"img/rollability.png"}]},{"Route":"img/rollability.png","AssetFile":"img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:57:30 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="}]},{"Route":"img/server_image.aekh8pde6e.png","AssetFile":"img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aekh8pde6e"},{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="},{"Name":"label","Value":"img/server_image.png"}]},{"Route":"img/server_image.png","AssetFile":"img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="}]},{"Route":"includes/about_me.html","AssetFile":"includes/about_me.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000482625483"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="},{"Name":"original-resource","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""}]},{"Route":"includes/about_me.html","AssetFile":"includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5919"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:21 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="}]},{"Route":"includes/about_me.html.gz","AssetFile":"includes/about_me.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8="}]},{"Route":"includes/about_me.uc8ei42wrd.html","AssetFile":"includes/about_me.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000482625483"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uc8ei42wrd"},{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="},{"Name":"label","Value":"includes/about_me.html"},{"Name":"original-resource","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""}]},{"Route":"includes/about_me.uc8ei42wrd.html","AssetFile":"includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5919"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:21 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uc8ei42wrd"},{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="},{"Name":"label","Value":"includes/about_me.html"}]},{"Route":"includes/about_me.uc8ei42wrd.html.gz","AssetFile":"includes/about_me.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uc8ei42wrd"},{"Name":"integrity","Value":"sha256-UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8="},{"Name":"label","Value":"includes/about_me.html.gz"}]},{"Route":"includes/apps.html","AssetFile":"includes/apps.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.html","AssetFile":"includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="}]},{"Route":"includes/apps.html.gz","AssetFile":"includes/apps.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"includes/apps.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"}]},{"Route":"includes/apps.lzakhpjgbx.html.gz","AssetFile":"includes/apps.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="},{"Name":"label","Value":"includes/apps.html.gz"}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"includes/games.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:22 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"}]},{"Route":"includes/games.4rnn98hyqz.html.gz","AssetFile":"includes/games.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="},{"Name":"label","Value":"includes/games.html.gz"}]},{"Route":"includes/games.html","AssetFile":"includes/games.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.html","AssetFile":"includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:22 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="}]},{"Route":"includes/games.html.gz","AssetFile":"includes/games.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"includes/home.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 16:20:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"}]},{"Route":"includes/home.1tkatawvq4.html.gz","AssetFile":"includes/home.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="},{"Name":"label","Value":"includes/home.html.gz"}]},{"Route":"includes/home.html","AssetFile":"includes/home.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.html","AssetFile":"includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 16:20:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="}]},{"Route":"includes/home.html.gz","AssetFile":"includes/home.html.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="}]},{"Route":"index.ew1mknl83p.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.ew1mknl83p.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:06:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"}]},{"Route":"index.ew1mknl83p.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":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="},{"Name":"label","Value":"index.html.gz"}]},{"Route":"index.html","AssetFile":"index.html.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.html","AssetFile":"index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:06:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="}]},{"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":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"js/index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:03:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"}]},{"Route":"js/index.ga1fkhapv2.js.gz","AssetFile":"js/index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="},{"Name":"label","Value":"js/index.js.gz"}]},{"Route":"js/index.js","AssetFile":"js/index.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.js","AssetFile":"js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:03:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="}]},{"Route":"js/index.js.gz","AssetFile":"js/index.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"js/main.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"}]},{"Route":"js/main.gapopd6iwt.js.gz","AssetFile":"js/main.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="},{"Name":"label","Value":"js/main.js.gz"}]},{"Route":"js/main.js","AssetFile":"js/main.js.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.js","AssetFile":"js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="}]},{"Route":"js/main.js.gz","AssetFile":"js/main.js.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="}]},{"Route":"vid/procedural_streets.7zwzofruh3.mp4","AssetFile":"vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:11:01 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7zwzofruh3"},{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="},{"Name":"label","Value":"vid/procedural_streets.mp4"}]},{"Route":"vid/procedural_streets.mp4","AssetFile":"vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:11:01 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="}]}]}
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json b/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json
new file mode 100644
index 0000000..332d142
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json
@@ -0,0 +1 @@
+{"Version":1,"Hash":"HvSqvSpZRZcPkdhcYVQMx5y5PqjZejWpyLowUtiFubo=","Source":"DouwcoWebsite","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"DouwcoWebsite/wwwroot","Source":"DouwcoWebsite","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","Pattern":"**"}],"Assets":[{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"favicon#[.{fingerprint=ad5rsjjdyd}]?.ico.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/favicon.ico","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"62ils0f8i2","Integrity":"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/favicon.ico","FileLength":7695,"LastWriteTime":"2026-02-12T09:35:23+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"index#[.{fingerprint=ew1mknl83p}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/index.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"3xvpvanmv5","Integrity":"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/index.html","FileLength":596,"LastWriteTime":"2026-02-12T15:19:58+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/apps#[.{fingerprint=lzakhpjgbx}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/apps.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"hr48aknd23","Integrity":"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/apps.html","FileLength":103,"LastWriteTime":"2026-02-12T15:19:58+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/games#[.{fingerprint=4rnn98hyqz}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/games.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"e935t8w10j","Integrity":"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/games.html","FileLength":100,"LastWriteTime":"2026-02-12T15:19:58+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"css/douwco#[.{fingerprint=hj6z4y4hul}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/douwco.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"mawhswpgfr","Integrity":"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/douwco.css","FileLength":281,"LastWriteTime":"2026-02-12T09:35:23+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/about_me#[.{fingerprint=uc8ei42wrd}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/about_me.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"cp2wdxmg5d","Integrity":"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/about_me.html","FileLength":2071,"LastWriteTime":"2026-02-12T22:13:35+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"js/index#[.{fingerprint=ga1fkhapv2}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/index.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"ursli8r5s7","Integrity":"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/index.js","FileLength":597,"LastWriteTime":"2026-02-12T15:19:58+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"includes/home#[.{fingerprint=1tkatawvq4}]?.html.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/home.html","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"j2hs9dheop","Integrity":"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/home.html","FileLength":553,"LastWriteTime":"2026-02-12T20:48:31+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"js/main#[.{fingerprint=gapopd6iwt}]?.js.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/main.js","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"eoqnh43yw3","Integrity":"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/main.js","FileLength":499,"LastWriteTime":"2026-02-12T09:35:23+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/","BasePath":"/","RelativePath":"css/style#[.{fingerprint=zht5oisgp4}]?.css.gz","AssetKind":"All","AssetMode":"All","AssetRole":"Alternative","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/style.css","AssetTraitName":"Content-Encoding","AssetTraitValue":"gzip","Fingerprint":"34cb359oqg","Integrity":"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/style.css","FileLength":1033,"LastWriteTime":"2026-02-12T22:13:35+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/douwco.css","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"css/douwco#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"hj6z4y4hul","Integrity":"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/douwco.css","FileLength":719,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/style.css","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"css/style#[.{fingerprint}]?.css","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"zht5oisgp4","Integrity":"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/css/style.css","FileLength":3410,"LastWriteTime":"2026-02-12T20:55:31+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/favicon.ico","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"favicon#[.{fingerprint}]?.ico","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ad5rsjjdyd","Integrity":"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/favicon.ico","FileLength":15406,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Montserrat-Bold.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"fonts/Montserrat-Bold#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"0f68wwysiu","Integrity":"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Montserrat-Bold.ttf","FileLength":335788,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Montserrat-Regular.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"fonts/Montserrat-Regular#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"x1juw6fwdo","Integrity":"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Montserrat-Regular.ttf","FileLength":330948,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Righteous-Regular.ttf","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"fonts/Righteous-Regular#[.{fingerprint}]?.ttf","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"vov7vgyq3c","Integrity":"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/fonts/Righteous-Regular.ttf","FileLength":43104,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/alcove.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/alcove#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"l353dch9cq","Integrity":"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/alcove.png","FileLength":175803,"LastWriteTime":"2026-02-12T21:02:53+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/douwco_logo.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/douwco_logo#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"1uvsuil67c","Integrity":"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/douwco_logo.png","FileLength":55552,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/godot_addons.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/godot_addons#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"51o0o1kej0","Integrity":"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/godot_addons.png","FileLength":5770,"LastWriteTime":"2026-02-12T21:42:41+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/devicegamepad2.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/icons/devicegamepad2#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"oag7kgbssd","Integrity":"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/devicegamepad2.png","FileLength":3405,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/europe.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/icons/europe#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"emyxcyr7lm","Integrity":"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/europe.png","FileLength":3968,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/projects_icon.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/icons/projects_icon#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"7ny7t6og73","Integrity":"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/projects_icon.png","FileLength":8443,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/user.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/icons/user#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"sd1j8sitba","Integrity":"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/icons/user.png","FileLength":9241,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/me_img.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/me_img#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"bosvnkg9xk","Integrity":"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/me_img.png","FileLength":334660,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/rollability.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/rollability#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"98ow7jrzxd","Integrity":"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/rollability.png","FileLength":8471959,"LastWriteTime":"2026-02-12T20:57:30+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/server_image.png","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"img/server_image#[.{fingerprint}]?.png","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"aekh8pde6e","Integrity":"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/img/server_image.png","FileLength":1007708,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/about_me.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"includes/about_me#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"uc8ei42wrd","Integrity":"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/about_me.html","FileLength":5919,"LastWriteTime":"2026-02-12T22:13:21+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/apps.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"includes/apps#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"lzakhpjgbx","Integrity":"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/apps.html","FileLength":100,"LastWriteTime":"2026-02-12T11:50:02+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/games.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"includes/games#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"4rnn98hyqz","Integrity":"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/games.html","FileLength":97,"LastWriteTime":"2026-02-12T11:50:22+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/home.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"includes/home#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"1tkatawvq4","Integrity":"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/includes/home.html","FileLength":1257,"LastWriteTime":"2026-02-12T16:20:24+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/index.html","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"index#[.{fingerprint}]?.html","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ew1mknl83p","Integrity":"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/index.html","FileLength":1779,"LastWriteTime":"2026-02-12T12:06:31+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/index.js","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"js/index#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"ga1fkhapv2","Integrity":"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/index.js","FileLength":1596,"LastWriteTime":"2026-02-12T12:03:14+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/main.js","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"js/main#[.{fingerprint}]?.js","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"gapopd6iwt","Integrity":"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/js/main.js","FileLength":1087,"LastWriteTime":"2026-02-12T09:27:12+00:00"},{"Identity":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/vid/procedural_streets.mp4","SourceId":"DouwcoWebsite","SourceType":"Discovered","ContentRoot":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","BasePath":"/","RelativePath":"vid/procedural_streets#[.{fingerprint}]?.mp4","AssetKind":"All","AssetMode":"All","AssetRole":"Primary","AssetMergeBehavior":"","AssetMergeSource":"","RelatedAsset":"","AssetTraitName":"","AssetTraitValue":"","Fingerprint":"7zwzofruh3","Integrity":"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=","CopyToOutputDirectory":"Never","CopyToPublishDirectory":"PreserveNewest","OriginalItemSpec":"wwwroot/vid/procedural_streets.mp4","FileLength":6792833,"LastWriteTime":"2026-02-12T22:11:01+00:00"}],"Endpoints":[{"Route":"css/douwco.css","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.css","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="}]},{"Route":"css/douwco.css.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.003546099291"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"},{"Name":"original-resource","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""}]},{"Route":"css/douwco.hj6z4y4hul.css","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/douwco.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"719"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-IygmdqnBdiHmN+Nt7OdvhI5st7fdzFBnOCsskFp7bfk="},{"Name":"label","Value":"css/douwco.css"}]},{"Route":"css/douwco.hj6z4y4hul.css.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"281"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hj6z4y4hul"},{"Name":"integrity","Value":"sha256-vmnGZZfnN69bKJVreZrEMGzf9+xOich0puFhBlgjx/w="},{"Name":"label","Value":"css/douwco.css.gz"}]},{"Route":"css/style.css","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.css","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:55:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="}]},{"Route":"css/style.css.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000967117988"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"},{"Name":"original-resource","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""}]},{"Route":"css/style.zht5oisgp4.css","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/css/style.css","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3410"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:55:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-l4QNnp9ZvLNhprLgFvi8Nzd+XdOZNnkCr9Tc0GiECRk="},{"Name":"label","Value":"css/style.css"}]},{"Route":"css/style.zht5oisgp4.css.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"1033"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"zht5oisgp4"},{"Name":"integrity","Value":"sha256-7UYOrPjq6gP0Jjbg59PHopWwyFW0RWFO7vs46HVa2oI="},{"Name":"label","Value":"css/style.css.gz"}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ad5rsjjdyd.ico","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"label","Value":"favicon.ico"}]},{"Route":"favicon.ad5rsjjdyd.ico.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ad5rsjjdyd"},{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="},{"Name":"label","Value":"favicon.ico.gz"}]},{"Route":"favicon.ico","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000129937630"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="},{"Name":"original-resource","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""}]},{"Route":"favicon.ico","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/favicon.ico","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"15406"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-EnTXPLPYUsDa7NarMnxBKy1saAq+ouSItBMTlsFlzcs="}]},{"Route":"favicon.ico.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"7695"},{"Name":"Content-Type","Value":"image/x-icon"},{"Name":"ETag","Value":"\"UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UiV1cEOKyW/wINPw8JqF0vY0qzRPodcZZneZXzagZlk="}]},{"Route":"fonts/Montserrat-Bold.0f68wwysiu.ttf","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"0f68wwysiu"},{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="},{"Name":"label","Value":"fonts/Montserrat-Bold.ttf"}]},{"Route":"fonts/Montserrat-Bold.ttf","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Montserrat-Bold.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"335788"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hG1YI+XJCaWq1J771x3V8zIKhkD/+GhAv31SnI2GYKU="}]},{"Route":"fonts/Montserrat-Regular.ttf","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="}]},{"Route":"fonts/Montserrat-Regular.x1juw6fwdo.ttf","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Montserrat-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"330948"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"x1juw6fwdo"},{"Name":"integrity","Value":"sha256-9aPwLEpy8doRxtrfT9eMB7LxRaNO1G64de0Nooy9NIw="},{"Name":"label","Value":"fonts/Montserrat-Regular.ttf"}]},{"Route":"fonts/Righteous-Regular.ttf","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="}]},{"Route":"fonts/Righteous-Regular.vov7vgyq3c.ttf","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/fonts/Righteous-Regular.ttf","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"43104"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\"L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"vov7vgyq3c"},{"Name":"integrity","Value":"sha256-L/s/5cJ9fmVxIQuABEjE4jTmUbRsa0QmwbtWflNBNIo="},{"Name":"label","Value":"fonts/Righteous-Regular.ttf"}]},{"Route":"img/alcove.l353dch9cq.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:02:53 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"l353dch9cq"},{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="},{"Name":"label","Value":"img/alcove.png"}]},{"Route":"img/alcove.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/alcove.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"175803"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:02:53 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-kWljn/rPrW5gCm8y/npfok7AlZ4EZwfEqXQYUgjpAms="}]},{"Route":"img/douwco_logo.1uvsuil67c.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1uvsuil67c"},{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="},{"Name":"label","Value":"img/douwco_logo.png"}]},{"Route":"img/douwco_logo.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/douwco_logo.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"55552"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1zmSVbUeJ9+b7OPGnaRQNiHwsOxikVbrLvnU25xeP3w="}]},{"Route":"img/godot_addons.51o0o1kej0.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:42:41 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"51o0o1kej0"},{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="},{"Name":"label","Value":"img/godot_addons.png"}]},{"Route":"img/godot_addons.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/godot_addons.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"5770"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 21:42:41 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Vwp2BJ50FfPxhPCggiSz9W0LTeyCrdhdaIgmLTbDaUo="}]},{"Route":"img/icons/devicegamepad2.oag7kgbssd.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"oag7kgbssd"},{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="},{"Name":"label","Value":"img/icons/devicegamepad2.png"}]},{"Route":"img/icons/devicegamepad2.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/devicegamepad2.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3405"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-QNJkP+ocIA47Q026ETfJ8i333t9wHFHJEWNjS775i24="}]},{"Route":"img/icons/europe.emyxcyr7lm.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"emyxcyr7lm"},{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="},{"Name":"label","Value":"img/icons/europe.png"}]},{"Route":"img/icons/europe.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/europe.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"3968"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-hvHcNcp0c35bBakZG6di1CE/aEftKkUdrd3I2pasQ7s="}]},{"Route":"img/icons/projects_icon.7ny7t6og73.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7ny7t6og73"},{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="},{"Name":"label","Value":"img/icons/projects_icon.png"}]},{"Route":"img/icons/projects_icon.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/projects_icon.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8443"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-3b8C/TTK24DQIM9B+GScSeJzu+pIjKNW8dZ39YNWoMQ="}]},{"Route":"img/icons/user.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="}]},{"Route":"img/icons/user.sd1j8sitba.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/icons/user.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9241"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"sd1j8sitba"},{"Name":"integrity","Value":"sha256-wOUjJpF8TqYRrRigVtFhagycKQZVSWIyWxxLCyXRydE="},{"Name":"label","Value":"img/icons/user.png"}]},{"Route":"img/me_img.bosvnkg9xk.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"bosvnkg9xk"},{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="},{"Name":"label","Value":"img/me_img.png"}]},{"Route":"img/me_img.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/me_img.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"334660"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-6ynbeb4fdX4L5BdhcYGB5VVO1zk45LBef5y0NSS/P5M="}]},{"Route":"img/rollability.98ow7jrzxd.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:57:30 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"98ow7jrzxd"},{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="},{"Name":"label","Value":"img/rollability.png"}]},{"Route":"img/rollability.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/rollability.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"8471959"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:57:30 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-qUVDI1EzHqQhvXp5LJrI674c3IRi5uPeQzF7pNoRyaw="}]},{"Route":"img/server_image.aekh8pde6e.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"aekh8pde6e"},{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="},{"Name":"label","Value":"img/server_image.png"}]},{"Route":"img/server_image.png","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/img/server_image.png","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1007708"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\"fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-fiIj2si/iROlf3wVQiXFNxY8DslPdD3mM0WKiUDMpYs="}]},{"Route":"includes/about_me.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000482625483"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="},{"Name":"original-resource","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""}]},{"Route":"includes/about_me.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5919"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:21 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="}]},{"Route":"includes/about_me.html.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8="}]},{"Route":"includes/about_me.uc8ei42wrd.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.000482625483"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uc8ei42wrd"},{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="},{"Name":"label","Value":"includes/about_me.html"},{"Name":"original-resource","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""}]},{"Route":"includes/about_me.uc8ei42wrd.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/about_me.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5919"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:21 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uc8ei42wrd"},{"Name":"integrity","Value":"sha256-MtzocDwB60DIDMyrzOg9ev+gL4wVHaKAI/BRCOd6K5Y="},{"Name":"label","Value":"includes/about_me.html"}]},{"Route":"includes/about_me.uc8ei42wrd.html.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"2071"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:13:35 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"uc8ei42wrd"},{"Name":"integrity","Value":"sha256-UHnULGLs+Oyar1iEwNWrs+5JH/QuZkcpmiyN4WiHPd8="},{"Name":"label","Value":"includes/about_me.html.gz"}]},{"Route":"includes/apps.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="}]},{"Route":"includes/apps.html.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009615384615"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"},{"Name":"original-resource","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""}]},{"Route":"includes/apps.lzakhpjgbx.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/apps.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:02 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-X6biZ8pjU9T8eaJnd4Qu/wD3leYdyYosEPgGnl7Rbkk="},{"Name":"label","Value":"includes/apps.html"}]},{"Route":"includes/apps.lzakhpjgbx.html.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"103"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"lzakhpjgbx"},{"Name":"integrity","Value":"sha256-42tjbuVFWcqUB/NdSfXzqID7WDth7ztKLPG9yuJZYm0="},{"Name":"label","Value":"includes/apps.html.gz"}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.4rnn98hyqz.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:22 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"label","Value":"includes/games.html"}]},{"Route":"includes/games.4rnn98hyqz.html.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"4rnn98hyqz"},{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="},{"Name":"label","Value":"includes/games.html.gz"}]},{"Route":"includes/games.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.009900990099"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="},{"Name":"original-resource","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""}]},{"Route":"includes/games.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/games.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"97"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 11:50:22 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-AM+Yysj4rYK8MZycLyZW8RTp74o/9um/UEFmpA+4WVk="}]},{"Route":"includes/games.html.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"100"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-PsNjMsDZ6ea8rGAeP5botjCqVbN8BSAkxvGwFlmF4ZQ="}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.1tkatawvq4.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 16:20:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"label","Value":"includes/home.html"}]},{"Route":"includes/home.1tkatawvq4.html.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"1tkatawvq4"},{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="},{"Name":"label","Value":"includes/home.html.gz"}]},{"Route":"includes/home.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001805054152"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="},{"Name":"original-resource","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""}]},{"Route":"includes/home.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/includes/home.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1257"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 16:20:24 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-1ez+3n49vWtm6NPs2oCpqp4FM7+bcg4siOWjkk/qwy0="}]},{"Route":"includes/home.html.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"553"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 20:48:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-a9I4T7igJBhFftjsnKwn6hjiUT4dWTP83RYP9hHLd8g="}]},{"Route":"index.ew1mknl83p.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.ew1mknl83p.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:06:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"label","Value":"index.html"}]},{"Route":"index.ew1mknl83p.html.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ew1mknl83p"},{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="},{"Name":"label","Value":"index.html.gz"}]},{"Route":"index.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001675041876"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="},{"Name":"original-resource","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""}]},{"Route":"index.html","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/index.html","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1779"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:06:31 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-4qxlm2n74C2pbdgeJooqN1jOf+9gt+eF+HvKtrnHwVQ="}]},{"Route":"index.html.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"596"},{"Name":"Content-Type","Value":"text/html"},{"Name":"ETag","Value":"\"10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-10Ru5+15sUgyzug0XO0toFMUN/4TX70l3P2vXqDmF60="}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.ga1fkhapv2.js","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:03:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"label","Value":"js/index.js"}]},{"Route":"js/index.ga1fkhapv2.js.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"ga1fkhapv2"},{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="},{"Name":"label","Value":"js/index.js.gz"}]},{"Route":"js/index.js","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.001672240803"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="},{"Name":"original-resource","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""}]},{"Route":"js/index.js","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/index.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1596"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 12:03:14 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-uPOdX6No2Zm1RiB/1rC2Axz6L4Q3GN7Pu1SKGsf5wP4="}]},{"Route":"js/index.js.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"597"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 15:19:58 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-Fhk4WIP+SxvZ6mLsgK0MHWjYHqOxMB058MX2ubO7SqE="}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.gapopd6iwt.js","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"label","Value":"js/main.js"}]},{"Route":"js/main.gapopd6iwt.js.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"fingerprint","Value":"gapopd6iwt"},{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="},{"Name":"label","Value":"js/main.js.gz"}]},{"Route":"js/main.js","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","Selectors":[{"Name":"Content-Encoding","Value":"gzip","Quality":"0.002000000000"}],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="},{"Name":"original-resource","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""}]},{"Route":"js/main.js","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/js/main.js","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1087"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:27:12 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-+HzEE/9wpTH1xnfLgqAw3e3i0UzRKVIdVVbulTD9dHI="}]},{"Route":"js/main.js.gz","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Encoding","Value":"gzip"},{"Name":"Content-Length","Value":"499"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 09:35:23 GMT"},{"Name":"Vary","Value":"Accept-Encoding"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-MihTryr289Oy29v2leLCPpDzNGmjii+JZz7EtTc8L+E="}]},{"Route":"vid/procedural_streets.7zwzofruh3.mp4","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:11:01 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"7zwzofruh3"},{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="},{"Name":"label","Value":"vid/procedural_streets.mp4"}]},{"Route":"vid/procedural_streets.mp4","AssetFile":"/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/vid/procedural_streets.mp4","Selectors":[],"ResponseHeaders":[{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"6792833"},{"Name":"Content-Type","Value":"video/mp4"},{"Name":"ETag","Value":"\"TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI=\""},{"Name":"Last-Modified","Value":"Thu, 12 Feb 2026 22:11:01 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-TYpQtNvvUPDE9O86ZgTFTt9ZcVX4WnX8l6VbengNKZI="}]}]}
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json.cache b/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json.cache
new file mode 100644
index 0000000..8d4c03c
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.build.json.cache
@@ -0,0 +1 @@
+HvSqvSpZRZcPkdhcYVQMx5y5PqjZejWpyLowUtiFubo=
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.development.json b/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.development.json
new file mode 100644
index 0000000..7b77e33
--- /dev/null
+++ b/DouwcoWebsite/obj/Debug/net10.0/staticwebassets.development.json
@@ -0,0 +1 @@
+{"ContentRoots":["/home/douwe/Projects/douwco_website/DouwcoWebsite/wwwroot/","/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/Debug/net10.0/compressed/"],"Root":{"Children":{"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"favicon.ico.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"3fe14md6js-{0}-ad5rsjjdyd-ad5rsjjdyd.gz"},"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"index.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"5pgf5y6ixc-{0}-ew1mknl83p-ew1mknl83p.gz"},"Patterns":null},"css":{"Children":{"douwco.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/douwco.css"},"Patterns":null},"douwco.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"gihkos5oja-{0}-hj6z4y4hul-hj6z4y4hul.gz"},"Patterns":null},"style.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/style.css"},"Patterns":null},"style.css.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"y4abnvwn9e-{0}-zht5oisgp4-zht5oisgp4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"Montserrat-Bold.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Bold.ttf"},"Patterns":null},"Montserrat-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Montserrat-Regular.ttf"},"Patterns":null},"Righteous-Regular.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"fonts/Righteous-Regular.ttf"},"Patterns":null}},"Asset":null,"Patterns":null},"img":{"Children":{"alcove.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/alcove.png"},"Patterns":null},"douwco_logo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/douwco_logo.png"},"Patterns":null},"godot_addons.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/godot_addons.png"},"Patterns":null},"me_img.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/me_img.png"},"Patterns":null},"rollability.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/rollability.png"},"Patterns":null},"server_image.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/server_image.png"},"Patterns":null},"icons":{"Children":{"devicegamepad2.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/devicegamepad2.png"},"Patterns":null},"europe.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/europe.png"},"Patterns":null},"projects_icon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/projects_icon.png"},"Patterns":null},"user.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/icons/user.png"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"includes":{"Children":{"about_me.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/about_me.html"},"Patterns":null},"about_me.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"rqvxc4n2h7-{0}-uc8ei42wrd-uc8ei42wrd.gz"},"Patterns":null},"apps.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/apps.html"},"Patterns":null},"apps.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"7kp535os10-{0}-lzakhpjgbx-lzakhpjgbx.gz"},"Patterns":null},"games.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/games.html"},"Patterns":null},"games.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"ghqq3f4wla-{0}-4rnn98hyqz-4rnn98hyqz.gz"},"Patterns":null},"home.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"includes/home.html"},"Patterns":null},"home.html.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u37b8dra09-{0}-1tkatawvq4-1tkatawvq4.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"index.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/index.js"},"Patterns":null},"index.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"t56gjpiflg-{0}-ga1fkhapv2-ga1fkhapv2.gz"},"Patterns":null},"main.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/main.js"},"Patterns":null},"main.js.gz":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"u8wak7zjry-{0}-gapopd6iwt-gapopd6iwt.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"vid":{"Children":{"procedural_streets.mp4":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"vid/procedural_streets.mp4"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/Debug/net10.0/swae.build.ex.cache b/DouwcoWebsite/obj/Debug/net10.0/swae.build.ex.cache
new file mode 100644
index 0000000..e69de29
diff --git a/DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.dgspec.json b/DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..708a6e8
--- /dev/null
+++ b/DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.dgspec.json
@@ -0,0 +1,485 @@
+{
+ "format": 1,
+ "restore": {
+ "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj": {}
+ },
+ "projects": {
+ "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj",
+ "projectName": "DouwcoWebsite",
+ "projectPath": "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj",
+ "packagesPath": "/home/douwe/.nuget/packages/",
+ "outputPath": "/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/douwe/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net10.0"
+ ],
+ "sources": {
+ "/usr/lib/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",
+ "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/lib/dotnet/sdk/10.0.100/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.32767]",
+ "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
+ "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
+ "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.32767]",
+ "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
+ "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
+ "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
+ "Microsoft.Extensions.Hosting": "(,10.0.32767]",
+ "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Http": "(,10.0.32767]",
+ "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.32767]",
+ "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
+ "Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
+ "Microsoft.Extensions.Options": "(,10.0.32767]",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
+ "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
+ "Microsoft.Extensions.Primitives": "(,10.0.32767]",
+ "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.32767]",
+ "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.32767]",
+ "System.Diagnostics.EventLog": "(,10.0.32767]",
+ "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.32767]",
+ "System.Formats.Cbor": "(,10.0.32767]",
+ "System.Formats.Tar": "(,10.0.32767]",
+ "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.32767]",
+ "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.32767]",
+ "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.32767]",
+ "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.32767]",
+ "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.32767]",
+ "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.32767]",
+ "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.32767]",
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "System.Text.Encodings.Web": "(,10.0.32767]",
+ "System.Text.Json": "(,10.0.32767]",
+ "System.Text.RegularExpressions": "(,4.3.32767]",
+ "System.Threading": "(,4.3.32767]",
+ "System.Threading.AccessControl": "(,10.0.32767]",
+ "System.Threading.Channels": "(,10.0.32767]",
+ "System.Threading.Overlapped": "(,4.3.32767]",
+ "System.Threading.RateLimiting": "(,10.0.32767]",
+ "System.Threading.Tasks": "(,4.3.32767]",
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
+ "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/DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.g.props b/DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.g.props
new file mode 100644
index 0000000..f21d13c
--- /dev/null
+++ b/DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ /home/douwe/.nuget/packages/
+ /home/douwe/.nuget/packages/
+ PackageReference
+ 7.0.0
+
+
+
+
+
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.g.targets b/DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/DouwcoWebsite/obj/DouwcoWebsite.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/project.assets.json b/DouwcoWebsite/obj/project.assets.json
new file mode 100644
index 0000000..6becb11
--- /dev/null
+++ b/DouwcoWebsite/obj/project.assets.json
@@ -0,0 +1,490 @@
+{
+ "version": 3,
+ "targets": {
+ "net10.0": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ "net10.0": []
+ },
+ "packageFolders": {
+ "/home/douwe/.nuget/packages/": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj",
+ "projectName": "DouwcoWebsite",
+ "projectPath": "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj",
+ "packagesPath": "/home/douwe/.nuget/packages/",
+ "outputPath": "/home/douwe/Projects/douwco_website/DouwcoWebsite/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/douwe/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net10.0"
+ ],
+ "sources": {
+ "/usr/lib/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",
+ "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/lib/dotnet/sdk/10.0.100/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.32767]",
+ "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
+ "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
+ "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
+ "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
+ "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.32767]",
+ "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
+ "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
+ "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
+ "Microsoft.Extensions.Hosting": "(,10.0.32767]",
+ "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Http": "(,10.0.32767]",
+ "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.32767]",
+ "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
+ "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
+ "Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
+ "Microsoft.Extensions.Options": "(,10.0.32767]",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
+ "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
+ "Microsoft.Extensions.Primitives": "(,10.0.32767]",
+ "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.32767]",
+ "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.32767]",
+ "System.Diagnostics.EventLog": "(,10.0.32767]",
+ "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.32767]",
+ "System.Formats.Cbor": "(,10.0.32767]",
+ "System.Formats.Tar": "(,10.0.32767]",
+ "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.32767]",
+ "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.32767]",
+ "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.32767]",
+ "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.32767]",
+ "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.32767]",
+ "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.32767]",
+ "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.32767]",
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
+ "System.Text.Encodings.Web": "(,10.0.32767]",
+ "System.Text.Json": "(,10.0.32767]",
+ "System.Text.RegularExpressions": "(,4.3.32767]",
+ "System.Threading": "(,4.3.32767]",
+ "System.Threading.AccessControl": "(,10.0.32767]",
+ "System.Threading.Channels": "(,10.0.32767]",
+ "System.Threading.Overlapped": "(,4.3.32767]",
+ "System.Threading.RateLimiting": "(,10.0.32767]",
+ "System.Threading.Tasks": "(,4.3.32767]",
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
+ "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/DouwcoWebsite/obj/project.nuget.cache b/DouwcoWebsite/obj/project.nuget.cache
new file mode 100644
index 0000000..95bf130
--- /dev/null
+++ b/DouwcoWebsite/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "gSlcj6s/jNk=",
+ "success": true,
+ "projectFilePath": "/home/douwe/Projects/douwco_website/DouwcoWebsite/DouwcoWebsite.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/project.packagespec.json b/DouwcoWebsite/obj/project.packagespec.json
new file mode 100644
index 0000000..fd0f9c1
--- /dev/null
+++ b/DouwcoWebsite/obj/project.packagespec.json
@@ -0,0 +1 @@
+"restore":{"projectUniqueName":"/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/DouwcoWebsite.csproj","projectName":"DouwcoWebsite","projectPath":"/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/DouwcoWebsite.csproj","outputPath":"/mnt/douwe/hdd/Projects/douwco_website/DouwcoWebsite.NET/DouwcoWebsite/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"/usr/lib/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","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/lib/dotnet/sdk/10.0.103/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.32767]","Microsoft.Extensions.Caching.Memory":"(,10.0.32767]","Microsoft.Extensions.Configuration":"(,10.0.32767]","Microsoft.Extensions.Configuration.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Binder":"(,10.0.32767]","Microsoft.Extensions.Configuration.CommandLine":"(,10.0.32767]","Microsoft.Extensions.Configuration.EnvironmentVariables":"(,10.0.32767]","Microsoft.Extensions.Configuration.FileExtensions":"(,10.0.32767]","Microsoft.Extensions.Configuration.Ini":"(,10.0.32767]","Microsoft.Extensions.Configuration.Json":"(,10.0.32767]","Microsoft.Extensions.Configuration.KeyPerFile":"(,10.0.32767]","Microsoft.Extensions.Configuration.UserSecrets":"(,10.0.32767]","Microsoft.Extensions.Configuration.Xml":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection":"(,10.0.32767]","Microsoft.Extensions.DependencyInjection.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Diagnostics":"(,10.0.32767]","Microsoft.Extensions.Diagnostics.Abstractions":"(,10.0.32767]","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.32767]","Microsoft.Extensions.FileProviders.Composite":"(,10.0.32767]","Microsoft.Extensions.FileProviders.Physical":"(,10.0.32767]","Microsoft.Extensions.FileSystemGlobbing":"(,10.0.32767]","Microsoft.Extensions.Hosting":"(,10.0.32767]","Microsoft.Extensions.Hosting.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Http":"(,10.0.32767]","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.32767]","Microsoft.Extensions.Logging.Abstractions":"(,10.0.32767]","Microsoft.Extensions.Logging.Configuration":"(,10.0.32767]","Microsoft.Extensions.Logging.Console":"(,10.0.32767]","Microsoft.Extensions.Logging.Debug":"(,10.0.32767]","Microsoft.Extensions.Logging.EventLog":"(,10.0.32767]","Microsoft.Extensions.Logging.EventSource":"(,10.0.32767]","Microsoft.Extensions.Logging.TraceSource":"(,10.0.32767]","Microsoft.Extensions.ObjectPool":"(,10.0.32767]","Microsoft.Extensions.Options":"(,10.0.32767]","Microsoft.Extensions.Options.ConfigurationExtensions":"(,10.0.32767]","Microsoft.Extensions.Options.DataAnnotations":"(,10.0.32767]","Microsoft.Extensions.Primitives":"(,10.0.32767]","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.32767]","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.32767]","System.Diagnostics.EventLog":"(,10.0.32767]","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.32767]","System.Formats.Cbor":"(,10.0.32767]","System.Formats.Tar":"(,10.0.32767]","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.32767]","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.32767]","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.32767]","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.32767]","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.32767]","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.32767]","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.32767]","System.Text.Encoding.Extensions":"(,4.3.32767]","System.Text.Encodings.Web":"(,10.0.32767]","System.Text.Json":"(,10.0.32767]","System.Text.RegularExpressions":"(,4.3.32767]","System.Threading":"(,4.3.32767]","System.Threading.AccessControl":"(,10.0.32767]","System.Threading.Channels":"(,10.0.32767]","System.Threading.Overlapped":"(,4.3.32767]","System.Threading.RateLimiting":"(,10.0.32767]","System.Threading.Tasks":"(,4.3.32767]","System.Threading.Tasks.Dataflow":"(,10.0.32767]","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/DouwcoWebsite/obj/rider.project.model.nuget.info b/DouwcoWebsite/obj/rider.project.model.nuget.info
new file mode 100644
index 0000000..6974424
--- /dev/null
+++ b/DouwcoWebsite/obj/rider.project.model.nuget.info
@@ -0,0 +1 @@
+17708425022428427
\ No newline at end of file
diff --git a/DouwcoWebsite/obj/rider.project.restore.info b/DouwcoWebsite/obj/rider.project.restore.info
new file mode 100644
index 0000000..6974424
--- /dev/null
+++ b/DouwcoWebsite/obj/rider.project.restore.info
@@ -0,0 +1 @@
+17708425022428427
\ No newline at end of file
diff --git a/DouwcoWebsite/wwwroot/css/douwco.css b/DouwcoWebsite/wwwroot/css/douwco.css
new file mode 100644
index 0000000..12fd5fd
--- /dev/null
+++ b/DouwcoWebsite/wwwroot/css/douwco.css
@@ -0,0 +1,37 @@
+@font-face {
+ font-family: righteous;
+ src: url(/fonts/Righteous-Regular.ttf);
+ format('truetype');
+}
+
+@font-face {
+ font-family: monsterrat_regular;
+ src: url(/fonts/Montserrat-Regular.ttf);
+ format('truetype');
+}
+
+@font-face {
+ font-family: monsterrat_bold;
+ src: url(/fonts/Montserrat-Bold.ttf);
+ format('truetype');
+}
+
+:root {
+ --background-clr: #283e3e;
+ --background-accent-clr: #324f4f;
+ --blue-clr: #47bcdf;
+ --green-clr: #6ede9a;
+ --purple-clr: #a48da;
+ --orange-clr: #e2a661;
+ --white-clr: #ffffff;
+}
+
+body {
+ font-family: monsterrat_regular;
+ background-color: var(--background-clr);
+ color: var(--white-clr);;
+}
+
+.title{
+ font-family: righteous;
+}
\ No newline at end of file
diff --git a/DouwcoWebsite/wwwroot/css/style.css b/DouwcoWebsite/wwwroot/css/style.css
new file mode 100644
index 0000000..0be196e
--- /dev/null
+++ b/DouwcoWebsite/wwwroot/css/style.css
@@ -0,0 +1,243 @@
+/* ===== Base Styles ===== */
+
+html, body{
+ height: 100%;
+ margin: 0;
+ padding: 0;
+ font-size: 25px;
+}
+
+body{
+ display: flex;
+ flex-direction: column;
+}
+
+main {
+ flex: 1;
+ margin: 20px;
+ overflow-y: auto;
+ overflow-x: hidden;
+ scroll-behavior: smooth;
+}
+
+a {
+ color: var(--blue-clr)
+}
+
+footer {
+ flex-shrink: 0;
+ background: var(--background-clr);
+ width: 100%;
+}
+
+footer > Div {
+ justify-content: space-between
+}
+
+footer > Div > p {
+ font-size: 16px;
+ margin: 10px 25px 10px 25px;
+}
+
+/* ===== Container Layouts ===== */
+
+.vert_container {
+ display: flex;
+}
+
+@media (max-width: 1000px) {
+ .vert_container.revert {
+ display: inherit;
+ }
+}
+
+.vert_container.centered{
+ align-items: center;
+ justify-content: space-around;
+}
+
+.vert_container.start{
+ align-items: flex-start;
+ justify-content: space-around;
+}
+
+.scroll_container {
+ overflow-y: auto;
+ scroll-snap-type: y mandatory;
+}
+
+.scroll_section {
+ min-height: 100vh;
+ scroll-snap-align: start;
+}
+
+/* ===== Navigationbar ===== */
+
+.nav_option {
+ font-family: monsterrat_bold;
+ color: var(--white-clr);
+ text-decoration: none;
+ font-size: 36px;
+
+ border: none;
+ border-radius: 20px;
+ background-color: transparent;
+
+ display: flex;
+ align-items: center;
+ margin: 10px;
+ padding-right: 10px;
+}
+
+.nav_option:hover{
+ background-color: var(--background-accent-clr);
+}
+
+.nav_option.active {
+ background-color: var(--background-accent-clr);
+}
+
+.nav_option span {
+ color: var(--green-clr);
+}
+
+@media (max-width: 1100px) {
+ .nav_option p {
+ display: none;
+ }
+}
+
+/* ===== Layout ===== */
+.panel {
+ width: 60%;
+}
+
+@media (max-width: 1000px) {
+ .panel {
+ width: 100%;
+ }
+}
+
+.section-title {
+ display: flex;
+ align-items: flex-start;
+ justify-content: space-around;
+}
+
+.text-section {
+ margin-left: 50px;
+}
+
+.title {
+ font-size: 128px;
+ margin: 0;
+ line-height: 1;
+ text-wrap: balance;
+}
+
+@media (max-width: 1200px) {
+ .title {
+ font-size: 100px;
+ }
+}
+
+.tagline {
+ display: flex;
+ font-size: 36px;
+ font-weight: bold;
+ width: 500px;
+}
+
+.tagline .green-text {
+ color: var(--green-clr);
+}
+
+.tagline .normal-text {
+ margin-left: 7px;
+}
+
+@media (max-width: 1200px) {
+ .title {
+ font-size: 100px;
+ }
+
+ .tagline {
+ font-size: 26px;
+ width: 400px;
+ }
+}
+
+.content-box {
+ background-color: var(--background-accent-clr);
+ margin: 50px 20px 20px;
+ padding: 20px;
+ border-radius: 20px;
+}
+
+.content-box p {
+ margin: 0;
+}
+
+.content-box .intro-text {
+ font-weight: bolder;
+ font-size: 28px;
+ color: var(--green-clr)
+}
+
+.project-thumb {
+ width: 150px;
+ height: 150px;
+ object-fit: cover;
+ margin-right: 15px;
+ border-radius: 75x;
+ float: left;
+}
+
+
+/* ===== Images ===== */
+
+.icon {
+ vertical-align: middle;
+ padding: 10px;
+}
+.icon.small {
+ height: 45px;
+}
+.icon.medium {
+ height: 100px;
+}
+.icon.large {
+ height: 250px;
+}
+@media (max-width: 1200px) {
+ .icon.large.toggle {
+ height: 150px;
+ }
+}
+
+
+.image{
+ margin: 30px;
+}
+.image.large{
+ width: 40%;
+}
+.image.small{
+ width: 25%;
+}
+
+@media (max-width: 1000px) {
+ .image.large {
+ width: 80%;
+ }
+ .image.small{
+ width: 50%;
+ }
+}
+
+.image.stick {
+ position: sticky;
+ top: 20px
+}
+
+
\ No newline at end of file
diff --git a/DouwcoWebsite/wwwroot/favicon.ico b/DouwcoWebsite/wwwroot/favicon.ico
new file mode 100644
index 0000000..59039b0
Binary files /dev/null and b/DouwcoWebsite/wwwroot/favicon.ico differ
diff --git a/static/font/Montserrat-Bold.ttf b/DouwcoWebsite/wwwroot/fonts/Montserrat-Bold.ttf
similarity index 100%
rename from static/font/Montserrat-Bold.ttf
rename to DouwcoWebsite/wwwroot/fonts/Montserrat-Bold.ttf
diff --git a/static/font/Montserrat-Regular.ttf b/DouwcoWebsite/wwwroot/fonts/Montserrat-Regular.ttf
similarity index 100%
rename from static/font/Montserrat-Regular.ttf
rename to DouwcoWebsite/wwwroot/fonts/Montserrat-Regular.ttf
diff --git a/static/font/Righteous-Regular.ttf b/DouwcoWebsite/wwwroot/fonts/Righteous-Regular.ttf
similarity index 100%
rename from static/font/Righteous-Regular.ttf
rename to DouwcoWebsite/wwwroot/fonts/Righteous-Regular.ttf
diff --git a/DouwcoWebsite/wwwroot/img/alcove.png b/DouwcoWebsite/wwwroot/img/alcove.png
new file mode 100644
index 0000000..3760734
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/alcove.png differ
diff --git a/static/img/douwco_logo.png b/DouwcoWebsite/wwwroot/img/douwco_logo.png
similarity index 100%
rename from static/img/douwco_logo.png
rename to DouwcoWebsite/wwwroot/img/douwco_logo.png
diff --git a/DouwcoWebsite/wwwroot/img/godot_addons.png b/DouwcoWebsite/wwwroot/img/godot_addons.png
new file mode 100644
index 0000000..281434e
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/godot_addons.png differ
diff --git a/DouwcoWebsite/wwwroot/img/icons/devicegamepad2.png b/DouwcoWebsite/wwwroot/img/icons/devicegamepad2.png
new file mode 100644
index 0000000..4da5aae
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/icons/devicegamepad2.png differ
diff --git a/DouwcoWebsite/wwwroot/img/icons/europe.png b/DouwcoWebsite/wwwroot/img/icons/europe.png
new file mode 100644
index 0000000..2271448
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/icons/europe.png differ
diff --git a/DouwcoWebsite/wwwroot/img/icons/projects_icon.png b/DouwcoWebsite/wwwroot/img/icons/projects_icon.png
new file mode 100644
index 0000000..6b246e5
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/icons/projects_icon.png differ
diff --git a/DouwcoWebsite/wwwroot/img/icons/user.png b/DouwcoWebsite/wwwroot/img/icons/user.png
new file mode 100644
index 0000000..7804056
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/icons/user.png differ
diff --git a/DouwcoWebsite/wwwroot/img/kingfisher.png b/DouwcoWebsite/wwwroot/img/kingfisher.png
new file mode 100644
index 0000000..a0c33bb
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/kingfisher.png differ
diff --git a/DouwcoWebsite/wwwroot/img/ludum_dare.png b/DouwcoWebsite/wwwroot/img/ludum_dare.png
new file mode 100644
index 0000000..480bdea
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/ludum_dare.png differ
diff --git a/DouwcoWebsite/wwwroot/img/me_img.png b/DouwcoWebsite/wwwroot/img/me_img.png
new file mode 100644
index 0000000..65c50eb
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/me_img.png differ
diff --git a/DouwcoWebsite/wwwroot/img/rollability.png b/DouwcoWebsite/wwwroot/img/rollability.png
new file mode 100644
index 0000000..8f26803
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/rollability.png differ
diff --git a/DouwcoWebsite/wwwroot/img/server_image.png b/DouwcoWebsite/wwwroot/img/server_image.png
new file mode 100644
index 0000000..6a98138
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/server_image.png differ
diff --git a/DouwcoWebsite/wwwroot/img/thesis_tool.png b/DouwcoWebsite/wwwroot/img/thesis_tool.png
new file mode 100644
index 0000000..7ddb957
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/thesis_tool.png differ
diff --git a/DouwcoWebsite/wwwroot/img/wizard_gloves.png b/DouwcoWebsite/wwwroot/img/wizard_gloves.png
new file mode 100644
index 0000000..669fade
Binary files /dev/null and b/DouwcoWebsite/wwwroot/img/wizard_gloves.png differ
diff --git a/DouwcoWebsite/wwwroot/includes/about_me.html b/DouwcoWebsite/wwwroot/includes/about_me.html
new file mode 100644
index 0000000..b6596f6
--- /dev/null
+++ b/DouwcoWebsite/wwwroot/includes/about_me.html
@@ -0,0 +1,82 @@
+
+
+
+
Hi, I'm Douwe
+
+ A PhD student at KU Leuven with a passion for game development and software independence.
+
+ Currently I'm working on:
+
+
+
+
+ RollAbility
+ For my PhD research at KU Leuven, I'm developing RollAbility a therapeutic exergame that bridges player autonomy with clinical guidelines to enhance wheelchair training.
+ Developed in collaboration with therapists, RollAbility is a game build onto a clinical protocol
+ and controlled by an actual powered wheelchair. The game connects to the RollAbility App which allows therapists
+ to control the training session in real-time.
+ Read the paper or Watch the video .
+
+
+
+
+
+ Alcove
+ Alcove is a interreg project between Flemish, Walloon and French universities and hospitals that aims to build a device that detects lung cancer through a breath test.
+ My role is to create a user interface for the device. This UI has to work on both android phones as on embedded linux devices.
+ Read more about Alcove .
+
+
+
+
However in the past I also worked on:
+
+
+
+
+ Godot Addons
+ I published two small addons to the godot asset library.
+ One addon called Godot Visual Studio Debugger which allows you to dynammicaly run the current scene open in the Godot editor directly in Visual Studio Debugger.
+ The second addons called Godot Test Scenes extends the Godot editor with an additional run mode, this mode runs a associated test scene to the currently open one in the editor.
+ They are both open source:
+ Godot Test Scenes and Godot Visual Studio Debugger
+
+
+
+
+
+ Kingfisher
+ The project Kingfisher is a game build by PossilbyPixels that rises awareness about Autism. It is a storybased action / puzzle game for PC and mobile.
+ My role in the project was to build minigames that occur throughout the story and also to develop tools to help development.
+ One of the tools I made for this project was a suburban neigborhood generator. This tool allowed us to draw streets in the editor which then were automaticly filled with procedural generated houses and gardens. You can see a demo in this video .
+ You can wishlist the game on Steam !
+
+
+
+
+
+ Ludum Dare
+ Between 2019 and 2024, I participated regulary into the Ludum Dare Event. This event was all about creating games under tight deadlines of 48 hours and with no external resources such as audio or 3D art.
+ After each event I published my game on Itch.io where they are still availble for play. In the future I want to migrate them to this website.
+ I want to especially highlight Cobor goes farming and Windy the Indy
+
+
+
+
+
+ Masterthesis: Planet Tool
+ For my Masterthesis at Group T KU Leuven I made a tool for Unity that creates a procedural planet terrain.
+ The main challenge of this project was to optimize the algorithm to work as fast as possible. For this I leveraged GPU compute shaders to process large chunks of data at once.
+ You can find the tool and my thesis paper here .
+
+
+
+
+
+ Masterproject: Wizard Gloves
+ In another project during my masters we explored gesture-based interactions in virtual environments.
+ For this project we developed a prototype using Unity and custom wearable hardware to enable magic-like hand gestures for interfacing with a story game.
+ See the game here or you can find the game and paper here
+
+
+
+
diff --git a/DouwcoWebsite/wwwroot/includes/apps.html b/DouwcoWebsite/wwwroot/includes/apps.html
new file mode 100644
index 0000000..b978f62
--- /dev/null
+++ b/DouwcoWebsite/wwwroot/includes/apps.html
@@ -0,0 +1,6 @@
+Douwco Apps
+
+
+ Under construction...
+
+
\ No newline at end of file
diff --git a/DouwcoWebsite/wwwroot/includes/games.html b/DouwcoWebsite/wwwroot/includes/games.html
new file mode 100644
index 0000000..80266e9
--- /dev/null
+++ b/DouwcoWebsite/wwwroot/includes/games.html
@@ -0,0 +1,6 @@
+My Games
+
+
+ Under construction...
+
+
\ No newline at end of file
diff --git a/DouwcoWebsite/wwwroot/includes/home.html b/DouwcoWebsite/wwwroot/includes/home.html
new file mode 100644
index 0000000..eb4c996
--- /dev/null
+++ b/DouwcoWebsite/wwwroot/includes/home.html
@@ -0,0 +1,25 @@
+
+
+
+
+
+
Douwco
+
+
Because
+
nerds build their own homeserver.
+
+
+
+
+
+ Welcome to the Douwco website.
+ Ever wondered what machine the website you are visiting is run on? Well this time you know, just look to the image.
+ This small homeserver hosts several open-source services like Nextcloud, Gitea, Overleaf community and ofcourse this
+ website.
+ Here I showcase my portfolio and all the games I've created over the years. If you are
+ a family member you can also find the different services in the Douwco Apps tab.
+
+
+
+
+
diff --git a/DouwcoWebsite/wwwroot/index.html b/DouwcoWebsite/wwwroot/index.html
new file mode 100644
index 0000000..f59d1a1
--- /dev/null
+++ b/DouwcoWebsite/wwwroot/index.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+ Douwco
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Made and hosted in 🇪🇺
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DouwcoWebsite/wwwroot/js/index.js b/DouwcoWebsite/wwwroot/js/index.js
new file mode 100644
index 0000000..2526fb6
--- /dev/null
+++ b/DouwcoWebsite/wwwroot/js/index.js
@@ -0,0 +1,47 @@
+// Setup the navigation bar
+function setupNavigationHighlight(){
+ const sections = document.querySelectorAll('.scroll_section');
+ const navOptions = document.querySelectorAll('.nav_option');
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ const sectionId = entry.target.id;
+ window.history.pushState(null, null, `#${sectionId}`);
+ navOptions.forEach(link => {
+ link.classList.remove('active');
+ if (link.getAttribute('href') === `#${sectionId}`) {
+ link.classList.add('active');
+ }
+ });
+ }
+ }), {threshold: 0.5};
+ })
+
+ sections.forEach(section => {
+ observer.observe(section);
+ });
+}
+
+function setupNavigationClickObserver() {
+ const navLinks = document.querySelectorAll('.nav_option');
+ navLinks.forEach(link => {
+ link.addEventListener('click', (event) => {
+ event.preventDefault();
+
+ const targetId = link.getAttribute('href');
+ const targetSection = document.querySelector(targetId);
+ if (targetSection) {
+ targetSection.scrollIntoView({
+ behavior: 'smooth'
+ });
+ }
+ });
+ });
+}
+
+setupNavigationHighlight();
+setupNavigationClickObserver();
+
+// Set copyright year
+const currentYear = new Date().getFullYear();
+document.getElementById('copyright').textContent = `© ${currentYear} - douwco.be`;
diff --git a/DouwcoWebsite/wwwroot/js/main.js b/DouwcoWebsite/wwwroot/js/main.js
new file mode 100644
index 0000000..c7d5f62
--- /dev/null
+++ b/DouwcoWebsite/wwwroot/js/main.js
@@ -0,0 +1,32 @@
+// JIT file loading
+function include_file(filename, id) {
+ fetch(`includes/${filename}.html`)
+ .then(response => response.text())
+ .then(html => { document.getElementById(id).innerHTML = html; })
+ .catch(err => console.error('Error loading include:', err));
+}
+
+function setupIntersectionObserver() {
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ const element = entry.target;
+ const name = element.getAttribute('data-section-name');
+ include_file(name, element.id);
+ observer.unobserve(element);
+ }
+ });
+ }, {
+ threshold: 0.05,
+ rootMargin: "0px 0px -50px 0px"
+ });
+
+ const observedSections = document.querySelectorAll('.observed');
+ if (observedSections.length === 0) {
+ console.error('No elements with class "observed" found!');
+ } else {
+ observedSections.forEach(section => { observer.observe(section); });
+ }
+}
+
+setupIntersectionObserver();
\ No newline at end of file
diff --git a/DouwcoWebsite/wwwroot/vid/procedural_streets.mp4 b/DouwcoWebsite/wwwroot/vid/procedural_streets.mp4
new file mode 100644
index 0000000..b1329dc
Binary files /dev/null and b/DouwcoWebsite/wwwroot/vid/procedural_streets.mp4 differ
diff --git a/DouwcoWebsite/wwwroot/vid/wizard_gloves.mp4 b/DouwcoWebsite/wwwroot/vid/wizard_gloves.mp4
new file mode 100644
index 0000000..20e38df
Binary files /dev/null and b/DouwcoWebsite/wwwroot/vid/wizard_gloves.mp4 differ
diff --git a/README.md b/README.md
index 9bf1534..e98eba6 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,2 @@
# douwco.be
-My personal website
-
-## Instructions
-Here are some instructions on how to deploy it using docker.
-
-### build
-`sudo docker build -t douwco_website .`
-
-### run
-`sudo docker run -d --name douwco_website -p 8888:8888 douwco_website`
-
-### replace
-```
-sudo docker stop douwco_website
-sudo docker rm douwco_website
-sudo docker run -d --name douwco_website -p 8888:8888 douwco_website
-```
\ No newline at end of file
+My personal website
\ No newline at end of file
diff --git a/compose.yaml b/compose.yaml
index eb148fe..dfaff9d 100644
--- a/compose.yaml
+++ b/compose.yaml
@@ -1,6 +1,9 @@
-services:
- frontend:
- build: .
+services:
+ douwcowebsite:
+ image: douwcowebsite
+ build:
+ context: .
+ dockerfile: DouwcoWebsite/Dockerfile
ports:
- - "8888:8888"
- restart: always
+ - 8080:8080
+
diff --git a/include/server.hpp b/include/server.hpp
deleted file mode 100644
index bea82a9..0000000
--- a/include/server.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef DOUWCO_SERVER_HPP
-#define DOUWCO_SERVER_HPP
-
-#include
-
-namespace Douwco {
-
- class Server {
-
- private:
- static constexpr int port = 8888;
- crow::SimpleApp crowApp;
-
- public:
- Server() = default;
- ~Server() = default;
-
- void setup();
- void start();
- };
-
-}
-
-#endif // DOUWCO_SERVER_HPP
diff --git a/lib/crow-1.2.1.deb b/lib/crow-1.2.1.deb
deleted file mode 100644
index ff50f45..0000000
Binary files a/lib/crow-1.2.1.deb and /dev/null differ
diff --git a/src/main.cpp b/src/main.cpp
deleted file mode 100644
index 947852a..0000000
--- a/src/main.cpp
+++ /dev/null
@@ -1,8 +0,0 @@
-#include "server.hpp"
-
-int main() {
- Douwco::Server server;
- server.setup();
- server.start();
- return 0;
-}
diff --git a/src/server.cpp b/src/server.cpp
deleted file mode 100644
index eb401a7..0000000
--- a/src/server.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#include
-
-#include "server.hpp"
-
-#define CREATE_ROUTE(route_path, html_path) \
- CROW_ROUTE(this->crowApp, route_path) \
- ([]() { \
- std::string page = crow::mustache::load(html_path).render_string(); \
- return page; \
- });
-
-void Douwco::Server::setup() {
- CREATE_ROUTE("/", "home.html");
- CREATE_ROUTE("/about_me", "about_me.html");
- CREATE_ROUTE("/about_douwco", "about_douwco.html");
- CREATE_ROUTE("/games", "games.html");
-}
-
-void Douwco::Server::start() {
- crowApp
- .port(port)
- .multithreaded()
-// .ssl_file("dev_cert/certificate.pem","dev_cert/private.key")
- .run();
-}
\ No newline at end of file
diff --git a/static/css/douwco_styling.css b/static/css/douwco_styling.css
deleted file mode 100644
index 1137544..0000000
--- a/static/css/douwco_styling.css
+++ /dev/null
@@ -1,167 +0,0 @@
-@font-face {
- font-family: righteous;
- src: url(../font/Righteous-Regular.ttf);
-}
-
-@font-face {
- font-family: monsterrat_regular;
- src: url(../font/Montserrat-Regular.ttf);
-}
-
-@font-face {
- font-family: monsterrat_bold;
- src: url(../font/Montserrat-Bold.ttf);
-}
-
-
-body {
- font-family: monsterrat_regular;
- font-size: 24px;
- background-color: #283e3e;
- color: white;
-}
-
-.root_div{
- display: flex;
- flex-direction: column;
-}
-.root_div > .side_panel_div{
- width: 100%;
-}
-
-.title_div{
- margin-left: 50px;
- display: flex;
- align-items: center;
- flex-direction: row;
- align-content: center;
-}
-.title_div > img {
- width:150px;
- height: 150px;
- margin-right: 50px;
-}
-.title_div > h1 {
- font-family: righteous;
- font-size: 120px;
-}
-
-.apps_title_div {
- margin-top: 100px;
-}
-.apps_title_div > h2 {
- font-family: monsterrat_bold;
- font-size: 48px;
- text-align: center;
-}
-.apps_title_div > hr {
- height: 6px;
- width:75%;
- background-color: white;
- border-width: 0px;
- border-radius: 3px;
- align-self: center;
-}
-
-.app_option_div {
- position: relative;
- display: flex;
- flex-direction: row;
- margin: 25px;
- border-radius: 25px;
- background-color: #304b4bFF;
-}
-.app_option_div > img {
- height: 200px;
- width: 200px;
- margin: 25px;
-}
-.app_option_div > div > h3 {
- font-family: monsterrat_bold;
- font-size: 36px;
-}
-.app_option_div > div > p {
- font-family: monsterrat_regular;
- font-size: 24px;
-}
-.app_option_div > div > p > a {
- color: #6dde99;
- font-family: monsterrat_bold;
-}
-.app_option_div > a {
- position: absolute;
- height: 50px;
- width: 125px;
- bottom: 25px;
- right: 25px;
- align-self: flex-end;
- display: flex;
- align-items: center;
- border-radius: 10px;
- border: none;
- background-color: #6dde99;
-}
-.app_option_div > a > p {
- font-family: monsterrat_bold;
- font-size: 18px;
- width: 100%;
- color: white;
- text-align: center;
-}
-
-
-a {
- font-family: monsterrat_regular;
- color: white;
- text-decoration:none;
- cursor: pointer;
-}
-.menu_option_a {
- font-family: monsterrat_bold;
- font-size: 48px;
-
- border: none;
- border-radius: 20px;
- background-color: transparent;
-
- display: flex;
- align-items: center;
-
- margin-left: 50px;
- padding-left: 50px;
- padding-right: 50px;
-}
-.menu_option_a:hover{
- background-color: #304b4bFF;;
-}
-.menu_option_a > img {
- width:100px;
- height:75px;
- margin-right: 50px;
-}
-.menu_option_a > p > span {
- color: #88d4d4;
-}
-
-
-@media (min-width: 1300px) {
- html, body {
- margin: 0;
- padding: 0;
- height: 100%;
- width: 100%;
- }
-
- .root_div{
- display: flex;
- flex-direction: row;
- }
- .root_div > .side_panel_div{
- width: 50%;
- }
-
- .apps_selection_div {
- max-height: 75vh;
- overflow-y: auto;
- }
-}
\ No newline at end of file
diff --git a/static/img/cloud_img.png b/static/img/cloud_img.png
deleted file mode 100644
index bd48f7f..0000000
Binary files a/static/img/cloud_img.png and /dev/null differ
diff --git a/static/img/device-gamepad.png b/static/img/device-gamepad.png
deleted file mode 100644
index c896921..0000000
Binary files a/static/img/device-gamepad.png and /dev/null differ
diff --git a/static/img/info-hexagon.png b/static/img/info-hexagon.png
deleted file mode 100644
index f24b52d..0000000
Binary files a/static/img/info-hexagon.png and /dev/null differ
diff --git a/static/img/penpot_img.png b/static/img/penpot_img.png
deleted file mode 100644
index 5740803..0000000
Binary files a/static/img/penpot_img.png and /dev/null differ
diff --git a/static/img/user.png b/static/img/user.png
deleted file mode 100644
index e55960d..0000000
Binary files a/static/img/user.png and /dev/null differ
diff --git a/templates/about_douwco.html b/templates/about_douwco.html
deleted file mode 100644
index ff0d721..0000000
--- a/templates/about_douwco.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
douwco
-
-
-
-
\ No newline at end of file
diff --git a/templates/about_me.html b/templates/about_me.html
deleted file mode 100644
index ff0d721..0000000
--- a/templates/about_me.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
douwco
-
-
-
-
\ No newline at end of file
diff --git a/templates/games.html b/templates/games.html
deleted file mode 100644
index ff0d721..0000000
--- a/templates/games.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
douwco
-
-
-
-
\ No newline at end of file
diff --git a/templates/home.html b/templates/home.html
deleted file mode 100644
index 1a0405c..0000000
--- a/templates/home.html
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
douwco
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file