-
Notifications
You must be signed in to change notification settings - Fork 365
Add migrate-dotnet10-to-dotnet11 skill #181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
danmoseley
merged 17 commits into
dotnet:main
from
danmoseley:migrate-dotnet10-to-dotnet11
Mar 11, 2026
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
57c3805
Add migrate-dotnet10-to-dotnet11 skill (Preview 1 coverage)
aa78acf
Add SYSLIB0063 NamedPipeClientStream breaking change to 10→11 skill
2e33585
Tune skill description and eval prompts for activation
f20cabe
Update plugins/dotnet/skills/migrate-dotnet10-to-dotnet11/references/…
8e60562
Split nameof(this.) example into before/after code blocks
e9e3c13
Address PR review feedback: fix code examples and global.json guidance
917ff01
Address PR feedback: add second CODEOWNER, add preview version to EF …
35c2533
Suffix reference filenames with -dotnet10to11 to avoid collisions
ebd3fa3
Remove explicit skill name from eval prompts to reduce overfitting
681160d
Address review feedback: fix with/when label, add exit_success assert…
6387fcd
Move Japanese Calendar breaking change to core-libraries reference
1bce91b
Merge branch 'main' into migrate-dotnet10-to-dotnet11
85a3be0
Clarify workflow note: allow local repo inspection, forbid only exter…
eb18b46
Shorten skill description to fit 1,024-char limit (762 chars)
638b133
Update CODEOWNERS to use @dotnet/compat team instead of individual
d1a18a0
Move 'when' parsing change from Step 4 to Step 3
f304622
Merge branch 'main' into migrate-dotnet10-to-dotnet11
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
193 changes: 193 additions & 0 deletions
193
plugins/dotnet-upgrade/skills/migrate-dotnet10-to-dotnet11/SKILL.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,193 @@ | ||
| --- | ||
| name: migrate-dotnet10-to-dotnet11 | ||
| description: > | ||
| Migrate a .NET 10 project or solution to .NET 11 and resolve all breaking changes. | ||
| This is a MIGRATION skill — use it when upgrading from .NET 10 to .NET 11, | ||
| NOT for writing new programs. | ||
| USE FOR: upgrading TargetFramework from net10.0 to net11.0, fixing build errors | ||
| after updating the .NET 11 SDK, resolving source-breaking and behavioral changes | ||
| in .NET 11 runtime, C# 15 compiler, and EF Core 11, adapting to updated minimum | ||
| hardware requirements (x86-64-v2, Arm64 LSE), and updating CI/CD pipelines and | ||
| Dockerfiles for .NET 11. | ||
| DO NOT USE FOR: .NET Framework migrations, upgrading from .NET 9 or earlier, | ||
| greenfield .NET 11 projects, or cosmetic modernization unrelated to the upgrade. | ||
| NOTE: .NET 11 is in preview. Covers breaking changes through Preview 1. | ||
| --- | ||
|
|
||
| # .NET 10 → .NET 11 Migration | ||
|
|
||
| Migrate a .NET 10 project or solution to .NET 11, systematically resolving all breaking changes. The outcome is a project targeting `net11.0` that builds cleanly, passes tests, and accounts for every behavioral, source-incompatible, and binary-incompatible change introduced in .NET 11. | ||
|
|
||
| > **Note:** .NET 11 is currently in preview. This skill covers breaking changes documented through Preview 1. It will be updated as additional previews ship. | ||
|
|
||
| ## When to Use | ||
|
|
||
| - Upgrading `TargetFramework` from `net10.0` to `net11.0` | ||
| - Resolving build errors or new warnings after updating the .NET 11 SDK | ||
| - Adapting to behavioral changes in .NET 11 runtime, ASP.NET Core 11, or EF Core 11 | ||
| - Updating CI/CD pipelines, Dockerfiles, or deployment scripts for .NET 11 | ||
| - Fixing C# 15 compiler breaking changes after SDK upgrade | ||
|
|
||
| ## When Not to Use | ||
|
|
||
| - The project already targets `net11.0` and builds cleanly — migration is done | ||
| - Upgrading from .NET 9 or earlier — address the .NET 9→10 breaking changes first | ||
| - Migrating from .NET Framework — that is a separate, larger effort | ||
| - Greenfield projects that start on .NET 11 (no migration needed) | ||
|
|
||
| ## Inputs | ||
|
|
||
| | Input | Required | Description | | ||
| |-------|----------|-------------| | ||
| | Project or solution path | Yes | The `.csproj`, `.sln`, or `.slnx` entry point to migrate | | ||
| | Build command | No | How to build (e.g., `dotnet build`, a repo build script). Auto-detect if not provided | | ||
| | Test command | No | How to run tests (e.g., `dotnet test`). Auto-detect if not provided | | ||
| | Project type hints | No | Whether the project uses ASP.NET Core, EF Core, Cosmos DB, etc. Auto-detect from PackageReferences and SDK attributes if not provided | | ||
|
|
||
|
danmoseley marked this conversation as resolved.
|
||
| ## Workflow | ||
|
|
||
| > **Answer directly from the loaded reference documents for information about .NET 11 breaking changes.** You may inspect the local repository (project/solution files, source code, configuration, build/test scripts) as needed to determine which changes apply. Do not fetch web pages or other external sources for breaking change information — the loaded references are the authoritative source. Focus on identifying which breaking changes apply and providing concrete fixes. | ||
| > | ||
| > **Commit strategy:** Commit at each logical boundary — after updating the TFM (Step 2), after resolving build errors (Step 3), after addressing behavioral changes (Step 4), and after updating infrastructure (Step 5). This keeps each commit focused and reviewable. | ||
|
|
||
| ### Step 1: Assess the project | ||
|
|
||
| 1. Identify how the project is built and tested. Look for build scripts, `.sln`/`.slnx` files, or individual `.csproj` files. | ||
| 2. Run `dotnet --version` to confirm the .NET 11 SDK is installed. If it is not, stop and inform the user. | ||
| 3. Determine which technology areas the project uses by examining: | ||
| - **SDK attribute**: `Microsoft.NET.Sdk.Web` → ASP.NET Core; `Microsoft.NET.Sdk.WindowsDesktop` with `<UseWPF>` or `<UseWindowsForms>` → WPF/WinForms | ||
| - **PackageReferences**: `Microsoft.EntityFrameworkCore.*` → EF Core; `Microsoft.EntityFrameworkCore.Cosmos` → Cosmos DB provider | ||
| - **Dockerfile presence** → Container changes relevant | ||
| - **Cryptography API usage** → DSA on macOS affected | ||
| - **Compression API usage** → DeflateStream/GZipStream/ZipArchive changes relevant | ||
| - **TAR API usage** → Header checksum validation change relevant | ||
| - **`NamedPipeClientStream` usage with `SafePipeHandle`** → SYSLIB0063 constructor obsoletion relevant | ||
| 4. Record which reference documents are relevant (see the reference loading table in Step 3). | ||
| 5. Do a **clean build** (`dotnet build --no-incremental` or delete `bin`/`obj`) on the current `net10.0` target to establish a clean baseline. Record any pre-existing warnings. | ||
|
|
||
| ### Step 2: Update the Target Framework | ||
|
|
||
| 1. In each `.csproj` (or `Directory.Build.props` if centralized), change: | ||
| ```xml | ||
| <TargetFramework>net10.0</TargetFramework> | ||
| ``` | ||
| to: | ||
| ```xml | ||
| <TargetFramework>net11.0</TargetFramework> | ||
| ``` | ||
| For multi-targeted projects, add `net11.0` to `<TargetFrameworks>` or replace `net10.0`. | ||
|
|
||
| 2. Update all `Microsoft.Extensions.*`, `Microsoft.AspNetCore.*`, `Microsoft.EntityFrameworkCore.*`, and other Microsoft package references to their 11.0.x versions. If using Central Package Management (`Directory.Packages.props`), update versions there. | ||
|
|
||
| 3. Run `dotnet restore`. Fix any restore errors before continuing. | ||
|
|
||
| 4. Run `dotnet build`. Capture all errors and warnings — these will be addressed in Step 3. | ||
|
|
||
| ### Step 3: Fix source-breaking and compilation changes | ||
|
|
||
| Load reference documents based on the project's technology areas: | ||
|
|
||
| | Reference file | When to load | | ||
| |----------------|-------------| | ||
| | `references/csharp-compiler-dotnet10to11.md` | Always (C# 15 compiler breaking changes) | | ||
| | `references/core-libraries-dotnet10to11.md` | Always (applies to all .NET 11 projects) | | ||
| | `references/sdk-msbuild-dotnet10to11.md` | Always (SDK and build tooling changes) | | ||
| | `references/efcore-dotnet10to11.md` | Project uses Entity Framework Core (especially Cosmos DB provider) | | ||
| | `references/cryptography-dotnet10to11.md` | Project uses cryptography APIs or targets macOS | | ||
| | `references/runtime-jit-dotnet10to11.md` | Deploying to older hardware or embedded devices | | ||
|
danmoseley marked this conversation as resolved.
|
||
|
|
||
|
danmoseley marked this conversation as resolved.
|
||
| Work through each build error systematically. Common patterns: | ||
|
|
||
| 1. **C# 15 Span collection expression safe-context** — Collection expressions of `Span<T>`/`ReadOnlySpan<T>` type now have `declaration-block` safe-context. Code assigning span collection expressions to variables in outer scopes will error. Use array type or move the expression to the correct scope. | ||
|
|
||
| 2. **`ref readonly` delegates/local functions need `InAttribute`** — If synthesizing delegates from `ref readonly`-returning methods or using `ref readonly` local functions, ensure `System.Runtime.InteropServices.InAttribute` is available. | ||
|
|
||
| 3. **`nameof(this.)` in attributes** — Remove `this.` qualifier; use `nameof(P)` instead of `nameof(this.P)`. | ||
|
|
||
| 4. **`with()` in collection expressions (C# 15)** — `with(...)` is now treated as constructor arguments, not a method call. Use `@with(...)` to call a method named `with`. | ||
|
|
||
| 5. **Dynamic `&&`/`||` with interface operand** — Interface types as left operand of `&&`/`||` with `dynamic` right operand now errors at compile time. Cast to concrete type or `dynamic`. | ||
|
|
||
| 6. **EF Core Cosmos sync I/O removal** — `ToList()`, `SaveChanges()`, etc. on Cosmos provider always throw. Convert to async equivalents. | ||
|
|
||
| 7. **SYSLIB0063: `NamedPipeClientStream` `isConnected` parameter obsoleted** — The constructor overload taking `bool isConnected` is obsoleted. Remove the `isConnected` argument and use the new 3-parameter constructor. Projects with `TreatWarningsAsErrors` will fail to build. | ||
|
|
||
| 8. **`when` switch-expression-arm parsing** — `(X.Y) when` is now parsed as a constant pattern with a `when` clause instead of a cast expression, which can cause existing code to fail to compile or change meaning. Review switch expressions using `when` and adjust syntax as needed. | ||
|
|
||
| ### Step 4: Address behavioral changes | ||
|
|
||
| These changes compile successfully but alter runtime behavior. Review each one and determine impact: | ||
|
|
||
| 1. **DeflateStream/GZipStream empty payload** — Now writes headers and footers even for empty payloads. If your code checks for zero-length output, update the check. | ||
|
|
||
| 2. **MemoryStream maximum capacity** — Maximum capacity updated and exception behavior changed. Review code that creates large MemoryStreams or relies on specific exception types. | ||
|
|
||
| 3. **TAR header checksum validation** — TAR-reading APIs now verify checksums. Corrupted or hand-crafted TAR files may now fail to read. | ||
|
|
||
| 4. **ZipArchive.CreateAsync eager loading** — `ZipArchive.CreateAsync` eagerly loads entries. May affect memory usage for large archives. | ||
|
|
||
| 5. **Environment.TickCount consistency** — Made consistent with Windows timeout behavior. Code relying on specific tick count behavior may need adjustment. | ||
|
|
||
| 6. **DSA removed from macOS** — DSA cryptographic operations throw on macOS. Use a different algorithm (RSA, ECDSA). | ||
|
|
||
| 7. **Japanese Calendar minimum date** — Minimum supported date corrected. Code using very early Japanese Calendar dates may be affected. | ||
|
|
||
| 8. **Minimum hardware requirements** — x86/x64 baseline moved to `x86-64-v2`; Windows Arm64 requires `LSE`. Verify deployment targets meet requirements. | ||
|
|
||
| 9. **Mono launch target for .NET Framework** — No longer set automatically. If using Mono for .NET Framework apps on Linux, specify explicitly. | ||
|
|
||
| ### Step 5: Update infrastructure | ||
|
|
||
| 1. **Dockerfiles**: Update base images from 10.0 to 11.0: | ||
| ```dockerfile | ||
| # Before | ||
| FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build | ||
| FROM mcr.microsoft.com/dotnet/aspnet:10.0 | ||
| # After | ||
| FROM mcr.microsoft.com/dotnet/sdk:11.0 AS build | ||
| FROM mcr.microsoft.com/dotnet/aspnet:11.0 | ||
| ``` | ||
|
|
||
| 2. **CI/CD pipelines**: Update SDK version references. If using `global.json`, update the `sdk.version` in your existing file while preserving other keys (such as `rollForward` and test configuration): | ||
| ```diff | ||
| { | ||
| "sdk": { | ||
| - "version": "10.0.100", | ||
| - "rollForward": "latestFeature" | ||
| + "version": "11.0.100-preview.1", | ||
| + "rollForward": "latestFeature" | ||
|
danmoseley marked this conversation as resolved.
|
||
| }, | ||
| "otherSettings": { | ||
| "...": "..." | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| 3. **Hardware deployment targets**: Verify all deployment targets meet the updated minimum hardware requirements (x86-64-v2 for x86/x64, LSE for Windows Arm64). | ||
|
|
||
| ### Step 6: Verify | ||
|
|
||
| 1. Run a full clean build: `dotnet build --no-incremental` | ||
| 2. Run all tests: `dotnet test` | ||
| 3. If the application is containerized, build and test the container image | ||
| 4. Smoke-test the application, paying special attention to: | ||
| - Compression behavior with empty streams | ||
| - TAR file reading | ||
| - EF Core Cosmos DB operations (must be async) | ||
| - DSA usage on macOS | ||
| - Memory-intensive MemoryStream usage | ||
| - Span collection expression assignments | ||
| 5. Review the diff and ensure no unintended behavioral changes were introduced | ||
|
|
||
| ## Reference Documents | ||
|
|
||
| The `references/` folder contains detailed breaking change information organized by technology area. Load only the references relevant to the project being migrated: | ||
|
|
||
| | Reference file | When to load | | ||
| |----------------|-------------| | ||
| | `references/csharp-compiler-dotnet10to11.md` | Always (C# 15 compiler breaking changes) | | ||
| | `references/core-libraries-dotnet10to11.md` | Always (applies to all .NET 11 projects) | | ||
| | `references/sdk-msbuild-dotnet10to11.md` | Always (SDK and build tooling changes) | | ||
| | `references/efcore-dotnet10to11.md` | Project uses Entity Framework Core (especially Cosmos DB provider) | | ||
| | `references/cryptography-dotnet10to11.md` | Project uses cryptography APIs or targets macOS | | ||
| | `references/runtime-jit-dotnet10to11.md` | Deploying to older hardware or embedded devices | | ||
87 changes: 87 additions & 0 deletions
87
...e/skills/migrate-dotnet10-to-dotnet11/references/core-libraries-dotnet10to11.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,87 @@ | ||
| # Core .NET Libraries Breaking Changes (.NET 11) | ||
|
|
||
| These breaking changes affect all .NET 11 projects regardless of application type. Source: https://learn.microsoft.com/en-us/dotnet/core/compatibility/11 | ||
|
|
||
| > **Note:** .NET 11 is in preview. Additional breaking changes are expected in later previews. | ||
|
|
||
| ## Obsoleted APIs | ||
|
|
||
| ### NamedPipeClientStream constructor with `isConnected` parameter obsoleted (SYSLIB0063) | ||
|
|
||
| **Impact: High (for projects using `TreatWarningsAsErrors`).** The `NamedPipeClientStream` constructor overload that accepts a `bool isConnected` parameter has been obsoleted. The `isConnected` argument never had any effect — pipes created from an existing `SafePipeHandle` are always connected. A new constructor without the parameter has been added. | ||
|
|
||
| ```csharp | ||
| // .NET 10: compiles without warning | ||
| var pipe = new NamedPipeClientStream(PipeDirection.InOut, isAsync: true, isConnected: true, safePipeHandle); | ||
|
|
||
| // .NET 11: SYSLIB0063 warning (error with TreatWarningsAsErrors) | ||
| // Fix: remove the isConnected parameter | ||
| var pipe = new NamedPipeClientStream(PipeDirection.InOut, isAsync: true, safePipeHandle); | ||
| ``` | ||
|
|
||
| **Fix:** Remove the `isConnected` argument and use the new 3-parameter constructor `NamedPipeClientStream(PipeDirection, bool isAsync, SafePipeHandle)`. | ||
|
|
||
| Source: https://github.com/dotnet/runtime/pull/120328 | ||
|
|
||
| ## Behavioral Changes | ||
|
|
||
| ### DeflateStream and GZipStream write headers and footers for empty payloads | ||
|
|
||
| **Impact: Medium.** `DeflateStream` and `GZipStream` now always write format headers and footers to the output stream, even when no data is written. Previously, these streams produced no output for empty payloads. | ||
|
|
||
| This ensures the output is a valid compressed stream per the Deflate and GZip specifications, but code that checks for zero-length output will need updating. | ||
|
|
||
| ```csharp | ||
| // .NET 10: output stream is empty (0 bytes) | ||
| // .NET 11: output stream contains valid headers/footers | ||
| using var ms = new MemoryStream(); | ||
| using (var gz = new GZipStream(ms, CompressionMode.Compress, leaveOpen: true)) | ||
| { | ||
| // write nothing | ||
| } | ||
| // ms.Length was 0 in .NET 10, now > 0 in .NET 11 | ||
| ``` | ||
|
|
||
| **Fix:** If your code checks for empty output to detect "no data was compressed," check the uncompressed byte count instead, or adjust the length check to account for headers/footers. | ||
|
|
||
| Source: https://learn.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/11/deflatestream-gzipstream-empty-payload | ||
|
|
||
| ### MemoryStream maximum capacity updated and exception behavior changed | ||
|
|
||
| **Impact: Medium.** The maximum capacity of `MemoryStream` has been updated and the exception behavior for exceeding capacity has changed. | ||
|
|
||
| **Fix:** Review code that creates very large `MemoryStream` instances or catches specific exception types related to capacity limits. | ||
|
|
||
| Source: https://learn.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/11/memorystream-max-capacity | ||
|
|
||
| ### TAR-reading APIs verify header checksums when reading | ||
|
|
||
| **Impact: Medium.** TAR-reading APIs now verify header checksums during reading. Previously, invalid checksums were silently ignored. | ||
|
|
||
| ```csharp | ||
| // .NET 11: throws if TAR header checksum is invalid | ||
| using var reader = new TarReader(stream); | ||
| var entry = reader.GetNextEntry(); // may throw for corrupted files | ||
| ``` | ||
|
|
||
| **Fix:** Ensure TAR files have valid checksums. If processing hand-crafted or legacy TAR files, add error handling for checksum validation failures. | ||
|
|
||
| Source: https://learn.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/11/tar-checksum-validation | ||
|
|
||
| ### ZipArchive.CreateAsync eagerly loads ZIP archive entries | ||
|
|
||
| **Impact: Low.** `ZipArchive.CreateAsync` now eagerly loads ZIP archive entries instead of lazy loading. This may affect memory usage for very large archives. | ||
|
|
||
| Source: https://learn.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/11/ziparchive-createasync-eager-load | ||
|
|
||
| ### Environment.TickCount made consistent with Windows timeout behavior | ||
|
|
||
| **Impact: Low.** `Environment.TickCount` behavior has been made consistent with Windows timeout behavior. Code that relies on specific tick count wrapping or comparison patterns may need adjustment. | ||
|
|
||
| Source: https://learn.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/11/environment-tickcount-windows-behavior | ||
|
|
||
| ### Globalization: Japanese Calendar minimum supported date corrected | ||
|
|
||
| **Impact: Low.** The minimum supported date for the Japanese Calendar has been corrected. Code using very early dates in the Japanese Calendar may be affected. | ||
|
|
||
| Source: https://learn.microsoft.com/en-us/dotnet/core/compatibility/globalization/11/japanese-calendar-min-date |
28 changes: 28 additions & 0 deletions
28
...ade/skills/migrate-dotnet10-to-dotnet11/references/cryptography-dotnet10to11.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| # Cryptography Breaking Changes (.NET 11) | ||
|
|
||
| These breaking changes affect projects using cryptography APIs. Source: https://learn.microsoft.com/en-us/dotnet/core/compatibility/11 | ||
|
|
||
| > **Note:** .NET 11 is in preview. Additional cryptography breaking changes are expected in later previews. | ||
|
|
||
| ## Behavioral Changes | ||
|
|
||
| ### DSA removed from macOS | ||
|
|
||
| **Impact: Medium (macOS only).** DSA (Digital Signature Algorithm) has been removed from macOS. Code that uses DSA for signing or verification will throw on macOS. | ||
|
|
||
| ```csharp | ||
| // BREAKS on macOS in .NET 11 | ||
| using var dsa = DSA.Create(); | ||
| var signature = dsa.SignData(data, HashAlgorithmName.SHA256); | ||
|
|
||
| // FIX: Use a different algorithm | ||
| using var ecdsa = ECDsa.Create(); | ||
| var signature = ecdsa.SignData(data, HashAlgorithmName.SHA256); | ||
| ``` | ||
|
|
||
| **Fix:** Migrate from DSA to a more modern algorithm: | ||
| - **ECDSA** — recommended replacement for digital signatures | ||
| - **RSA** — alternative if ECDSA is not suitable | ||
| - **Ed25519** — if available in your scenario | ||
|
|
||
| This change only affects macOS. DSA continues to work on Windows and Linux (though it is generally considered a legacy algorithm). |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.