TUnit.Playwright 1.2.11

Prefix Reserved
dotnet add package TUnit.Playwright --version 1.2.11
                    
NuGet\Install-Package TUnit.Playwright -Version 1.2.11
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TUnit.Playwright" Version="1.2.11" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TUnit.Playwright" Version="1.2.11" />
                    
Directory.Packages.props
<PackageReference Include="TUnit.Playwright" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TUnit.Playwright --version 1.2.11
                    
#r "nuget: TUnit.Playwright, 1.2.11"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package TUnit.Playwright@1.2.11
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TUnit.Playwright&version=1.2.11
                    
Install as a Cake Addin
#tool nuget:?package=TUnit.Playwright&version=1.2.11
                    
Install as a Cake Tool

alternate text is missing from this package README image

🚀 The Modern Testing Framework for .NET

TUnit is a modern testing framework for .NET that uses source-generated tests, parallel execution by default, and Native AOT support. Built on Microsoft.Testing.Platform, it's faster than traditional reflection-based frameworks and gives you more control over how your tests run.

<div align="center">

thomhurst%2FTUnit | Trendshift

Codacy BadgeGitHub Repo stars GitHub Issues or Pull Requests GitHub Sponsors nuget NuGet Downloads GitHub Workflow Status (with event) GitHub last commit (branch) License

</div>

Why TUnit?

Feature Traditional Frameworks TUnit
Test Discovery ❌ Runtime reflection Compile-time generation
Execution Speed ❌ Sequential by default Parallel by default
Modern .NET ⚠️ Limited AOT support Native AOT & trimming
Test Dependencies ❌ Not supported [DependsOn] chains
Resource Management ❌ Manual lifecycle Automatic cleanup

Parallel by Default - Tests run concurrently with dependency management

Compile-Time Discovery - Test structure is known before runtime

Modern .NET Ready - Native AOT, trimming, and latest .NET features

Extensible - Customize data sources, attributes, and test behavior


<div align="center">

Documentation

New to TUnit? Start with the Getting Started Guide

Migrating? See the Migration Guides

Learn more: Data-Driven Testing, Test Dependencies, Parallelism Control

</div>


Quick Start

dotnet new install TUnit.Templates
dotnet new TUnit -n "MyTestProject"

Manual Installation

dotnet add package TUnit --prerelease

📖 Complete Documentation & Guides

Key Features

<table> <tr> <td width="50%">

Performance

  • Source-generated tests (no reflection)
  • Parallel execution by default
  • Native AOT & trimming support
  • Optimized for speed

</td> <td width="50%">

Test Control

  • Test dependencies with [DependsOn]
  • Parallel limits & custom scheduling
  • Built-in analyzers & compile-time checks
  • Custom attributes & extensible conditions

</td> </tr> <tr> <td>

Data & Assertions

  • Multiple data sources ([Arguments], [Matrix], [ClassData])
  • Fluent async assertions
  • Retry logic & conditional execution
  • Test metadata & context

</td> <td>

Developer Tools

  • Full dependency injection support
  • Lifecycle hooks
  • IDE integration (VS, Rider, VS Code)
  • Documentation & examples

</td> </tr> </table>

Simple Test Example

[Test]
public async Task User_Creation_Should_Set_Timestamp()
{
    // Arrange
    var userService = new UserService();

    // Act
    var user = await userService.CreateUserAsync("john.doe@example.com");

    // Assert - TUnit's fluent assertions
    await Assert.That(user.CreatedAt)
        .IsEqualTo(DateTime.Now)
        .Within(TimeSpan.FromMinutes(1));

    await Assert.That(user.Email)
        .IsEqualTo("john.doe@example.com");
}

Data-Driven Testing

[Test]
[Arguments("user1@test.com", "ValidPassword123")]
[Arguments("user2@test.com", "AnotherPassword456")]
[Arguments("admin@test.com", "AdminPass789")]
public async Task User_Login_Should_Succeed(string email, string password)
{
    var result = await authService.LoginAsync(email, password);
    await Assert.That(result.IsSuccess).IsTrue();
}

// Matrix testing - tests all combinations
[Test]
[MatrixDataSource]
public async Task Database_Operations_Work(
    [Matrix("Create", "Update", "Delete")] string operation,
    [Matrix("User", "Product", "Order")] string entity)
{
    await Assert.That(await ExecuteOperation(operation, entity))
        .IsTrue();
}

Advanced Test Orchestration

[Before(Class)]
public static async Task SetupDatabase(ClassHookContext context)
{
    await DatabaseHelper.InitializeAsync();
}

[Test, DisplayName("Register a new account")]
[MethodDataSource(nameof(GetTestUsers))]
public async Task Register_User(string username, string password)
{
    // Test implementation
}

[Test, DependsOn(nameof(Register_User))]
[Retry(3)] // Retry on failure
public async Task Login_With_Registered_User(string username, string password)
{
    // This test runs after Register_User completes
}

[Test]
[ParallelLimit<LoadTestParallelLimit>] // Custom parallel control
[Repeat(100)] // Run 100 times
public async Task Load_Test_Homepage()
{
    // Performance testing
}

// Custom attributes
[Test, WindowsOnly, RetryOnHttpError(5)]
public async Task Windows_Specific_Feature()
{
    // Platform-specific test with custom retry logic
}

public class LoadTestParallelLimit : IParallelLimit
{
    public int Limit => 10; // Limit to 10 concurrent executions
}

Custom Test Control

// Custom conditional execution
public class WindowsOnlyAttribute : SkipAttribute
{
    public WindowsOnlyAttribute() : base("Windows only test") { }

    public override Task<bool> ShouldSkip(TestContext testContext)
        => Task.FromResult(!OperatingSystem.IsWindows());
}

// Custom retry logic
public class RetryOnHttpErrorAttribute : RetryAttribute
{
    public RetryOnHttpErrorAttribute(int times) : base(times) { }

    public override Task<bool> ShouldRetry(TestInformation testInformation,
        Exception exception, int currentRetryCount)
        => Task.FromResult(exception is HttpRequestException { StatusCode: HttpStatusCode.ServiceUnavailable });
}

Common Use Cases

<table> <tr> <td width="33%">

Unit Testing

[Test]
[Arguments(1, 2, 3)]
[Arguments(5, 10, 15)]
public async Task Calculate_Sum(int a, int b, int expected)
{
    await Assert.That(Calculator.Add(a, b))
        .IsEqualTo(expected);
}

</td> <td width="33%">

Integration Testing

[Test, DependsOn(nameof(CreateUser))]
public async Task Login_After_Registration()
{
    // Runs after CreateUser completes
    var result = await authService.Login(user);
    await Assert.That(result.IsSuccess).IsTrue();
}

</td> <td width="33%">

Load Testing

[Test]
[ParallelLimit<LoadTestLimit>]
[Repeat(1000)]
public async Task API_Handles_Concurrent_Requests()
{
    await Assert.That(await httpClient.GetAsync("/api/health"))
        .HasStatusCode(HttpStatusCode.OK);
}

</td> </tr> </table>

What Makes TUnit Different?

Compile-Time Test Discovery

Tests are discovered at build time, not runtime. This means faster discovery, better IDE integration, and more predictable resource management.

Parallel by Default

Tests run in parallel by default. Use [DependsOn] to chain tests together, and [ParallelLimit] to control resource usage.

Extensible

The DataSourceGenerator<T> pattern and custom attribute system let you extend TUnit without modifying the framework.

Community & Ecosystem

<div align="center">

Downloads Contributors Discussions

</div>

Resources

IDE Support

TUnit works with all major .NET IDEs:

Visual Studio (2022 17.13+)

Fully supported - No additional configuration needed for latest versions

⚙️ Earlier versions: Enable "Use testing platform server mode" in Tools > Manage Preview Features

JetBrains Rider

Fully supported

⚙️ Setup: Enable "Testing Platform support" in Settings > Build, Execution, Deployment > Unit Testing > Testing Platform

Visual Studio Code

Fully supported

⚙️ Setup: Install C# Dev Kit and enable "Use Testing Platform Protocol"

Command Line

Full CLI support - Works with dotnet test, dotnet run, and direct executable execution

Package Options

Package Use Case
TUnit Start here - Complete testing framework (includes Core + Engine + Assertions)
TUnit.Core Test libraries and shared components (no execution engine)
TUnit.Engine Test execution engine and adapter (for test projects)
TUnit.Assertions Standalone assertions (works with any test framework)
TUnit.Playwright Playwright integration with automatic lifecycle management

Migration from Other Frameworks

Coming from NUnit or xUnit? TUnit uses familiar syntax with some additions:

// TUnit test with dependency management and retries
[Test]
[Arguments("value1")]
[Arguments("value2")]
[Retry(3)]
[ParallelLimit<CustomLimit>]
public async Task Modern_TUnit_Test(string value) { }

📖 Need help migrating? Check our Migration Guides for xUnit, NUnit, and MSTest.


<div align="center">

Getting Started

# Create a new test project
dotnet new install TUnit.Templates && dotnet new TUnit -n "MyTestProject"

# Or add to existing project
dotnet add package TUnit --prerelease

Learn More: tunit.dev | Get Help: GitHub Discussions | Star on GitHub: github.com/thomhurst/TUnit

</div>

Performance Benchmark

Scenario: Building the test project


BenchmarkDotNet v0.15.6, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.45GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]     : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  Job-GVKUBM : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Runtime=.NET 10.0  

Method Version Mean Error StdDev Median
Build_TUnit 1.0.48 1.798 s 0.0345 s 0.0424 s 1.785 s
Build_NUnit 4.4.0 1.575 s 0.0169 s 0.0158 s 1.573 s
Build_MSTest 4.0.1 1.659 s 0.0150 s 0.0140 s 1.658 s
Build_xUnit3 3.2.0 1.579 s 0.0182 s 0.0170 s 1.575 s

Scenario: Tests running asynchronous operations and async/await patterns


BenchmarkDotNet v0.15.6, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.45GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]     : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  Job-GVKUBM : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Runtime=.NET 10.0  

Method Version Mean Error StdDev Median
TUnit 1.0.48 562.4 ms 4.18 ms 3.91 ms 561.0 ms
NUnit 4.4.0 679.2 ms 7.24 ms 6.41 ms 679.6 ms
MSTest 4.0.1 647.7 ms 8.63 ms 7.65 ms 647.8 ms
xUnit3 3.2.0 744.4 ms 11.90 ms 10.55 ms 741.5 ms
TUnit_AOT 1.0.48 127.6 ms 0.45 ms 0.42 ms 127.6 ms

Scenario: Parameterized tests with multiple test cases using data attributes


BenchmarkDotNet v0.15.6, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.45GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]     : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  Job-GVKUBM : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Runtime=.NET 10.0  

Method Version Mean Error StdDev Median
TUnit 1.0.48 476.97 ms 5.430 ms 5.080 ms 478.26 ms
NUnit 4.4.0 537.80 ms 6.692 ms 6.260 ms 537.55 ms
MSTest 4.0.1 496.84 ms 9.188 ms 8.145 ms 496.37 ms
xUnit3 3.2.0 584.15 ms 10.733 ms 10.039 ms 582.13 ms
TUnit_AOT 1.0.48 24.65 ms 0.177 ms 0.157 ms 24.68 ms

Scenario: Tests executing massively parallel workloads with CPU-bound, I/O-bound, and mixed operations


BenchmarkDotNet v0.15.6, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.45GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]     : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  Job-GVKUBM : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Runtime=.NET 10.0  

Method Version Mean Error StdDev Median
TUnit 1.0.48 578.1 ms 5.79 ms 5.13 ms 577.3 ms
NUnit 4.4.0 1,220.5 ms 7.43 ms 6.20 ms 1,220.9 ms
MSTest 4.0.1 3,005.3 ms 13.91 ms 12.33 ms 3,003.4 ms
xUnit3 3.2.0 3,096.0 ms 11.11 ms 10.40 ms 3,094.6 ms
TUnit_AOT 1.0.48 130.6 ms 0.39 ms 0.36 ms 130.7 ms

Scenario: Tests with complex parameter combinations creating 25-125 test variations


BenchmarkDotNet v0.15.6, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.45GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]     : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  Job-GVKUBM : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Runtime=.NET 10.0  

Method Version Mean Error StdDev Median
TUnit 1.0.48 544.97 ms 5.561 ms 4.930 ms 544.99 ms
NUnit 4.4.0 1,540.60 ms 5.644 ms 4.713 ms 1,540.91 ms
MSTest 4.0.1 1,499.17 ms 4.590 ms 3.833 ms 1,499.42 ms
xUnit3 3.2.0 1,591.72 ms 6.560 ms 6.136 ms 1,592.55 ms
TUnit_AOT 1.0.48 79.41 ms 0.252 ms 0.236 ms 79.48 ms

Scenario: Large-scale parameterized tests with 100+ test cases testing framework scalability


BenchmarkDotNet v0.15.6, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.45GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]     : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  Job-GVKUBM : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Runtime=.NET 10.0  

Method Version Mean Error StdDev Median
TUnit 1.0.48 498.22 ms 7.188 ms 6.723 ms 496.45 ms
NUnit 4.4.0 584.65 ms 11.669 ms 11.461 ms 582.38 ms
MSTest 4.0.1 580.53 ms 11.233 ms 15.747 ms 583.58 ms
xUnit3 3.2.0 587.89 ms 8.750 ms 7.757 ms 586.15 ms
TUnit_AOT 1.0.48 46.75 ms 1.442 ms 4.253 ms 47.33 ms
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.11 1,244 11/18/2025
1.2.3 606 11/16/2025
1.2.0 261 11/15/2025
1.1.27 238 11/15/2025
1.1.10 575 11/12/2025
1.1.0 353 11/12/2025
1.0.78 601 11/11/2025
1.0.48 713 11/10/2025
1.0.39 347 11/9/2025
1.0.30 300 11/8/2025
1.0.27 173 11/8/2025
1.0.0 666 11/5/2025
0.90.45 312 11/5/2025
0.90.42 199 11/4/2025
0.90.38 218 11/4/2025
0.90.35 208 11/4/2025
0.90.32 215 11/4/2025
0.90.28 226 11/4/2025
0.90.19 250 11/3/2025
0.90.17 200 11/3/2025
0.90.6 252 11/2/2025
0.90.0 180 11/2/2025
0.89.2 128 11/2/2025
0.89.0 156 11/1/2025
0.88.0 210 11/1/2025
0.87.8 251 10/31/2025
0.86.10 235 10/30/2025
0.86.5 273 10/30/2025
0.86.0 236 10/30/2025
0.85.1 207 10/29/2025
0.85.0 177 10/29/2025
0.81.7 231 10/29/2025
0.81.0 214 10/29/2025
0.80.0 290 10/28/2025
0.79.0 209 10/28/2025
0.78.0 339 10/28/2025
0.77.10 299 10/27/2025
0.77.3 290 10/27/2025
0.77.0 211 10/26/2025
0.76.26 222 10/26/2025
0.76.18 237 10/25/2025
0.76.11 268 10/25/2025
0.76.7 269 10/24/2025
0.76.0 162 10/24/2025
0.75.30 745 10/23/2025
0.75.11 461 10/22/2025
0.75.5 212 10/22/2025
0.75.4 212 10/22/2025
0.75.0 273 10/21/2025
0.74.2 518 10/20/2025
0.74.0 187 10/20/2025
0.73.19 346 10/18/2025
0.73.14 185 10/17/2025
0.73.11 174 10/17/2025
0.73.4 415 10/16/2025
0.73.0 231 10/16/2025
0.72.0 335 10/15/2025
0.71.4 229 10/14/2025
0.71.0 192 10/14/2025
0.70.7 305 10/14/2025
0.70.4 222 10/14/2025
0.70.2 272 10/13/2025
0.70.0 194 10/13/2025
0.67.19 1,076 10/10/2025
0.67.10 736 10/8/2025
0.67.9 181 10/8/2025
0.67.4 328 10/7/2025
0.67.0 275 10/6/2025
0.66.13 286 10/6/2025
0.66.6 253 10/6/2025
0.66.0 226 10/5/2025
0.64.0 314 10/5/2025
0.63.3 561 10/2/2025
0.63.0 245 10/2/2025
0.61.58 767 9/29/2025
0.61.39 666 9/25/2025
0.61.38 208 9/25/2025
0.61.31 329 9/24/2025
0.61.25 273 9/23/2025
0.61.22 298 9/22/2025
0.61.13 502 9/21/2025
0.61.6 290 9/21/2025
0.61.2 250 9/20/2025
0.60.15 239 9/20/2025
0.60.1 478 9/19/2025
0.59.0 344 9/19/2025
0.58.3 506 9/18/2025
0.58.0 342 9/18/2025
0.57.65 1,078 9/10/2025
0.57.63 269 9/10/2025
0.57.24 1,221 8/30/2025
0.57.1 857 8/21/2025
0.57.0 195 8/21/2025
0.56.50 342 8/20/2025
0.56.44 489 8/18/2025
0.56.35 289 8/17/2025
0.56.5 1,048 8/14/2025
0.55.23 575 8/13/2025
0.55.21 280 8/13/2025
0.55.6 560 8/12/2025
0.55.0 312 8/11/2025
0.53.0 758 8/8/2025
0.52.64 339 8/7/2025
0.52.60 277 8/7/2025
0.52.56 328 8/7/2025
0.52.51 265 8/7/2025
0.52.49 323 8/7/2025
0.52.47 245 8/7/2025
0.52.30 408 8/6/2025
0.52.25 442 8/6/2025
0.52.24 266 8/6/2025
0.52.22 339 8/6/2025
0.52.8 348 8/6/2025
0.52.2 255 8/6/2025
0.52.0 252 8/6/2025
0.50.0 627 8/3/2025
0.25.21 4,269 6/10/2025
0.25.6 377 6/5/2025
0.25.0 297 6/5/2025
0.24.0 2,978 6/1/2025
0.23.5 243 6/1/2025
0.23.0 168 5/31/2025
0.22.31 173 5/30/2025
0.22.24 373 5/28/2025
0.22.20 314 5/27/2025
0.22.12 411 5/25/2025
0.22.10 277 5/25/2025
0.22.6 180 5/24/2025
0.22.0 408 5/22/2025
0.21.16 555 5/21/2025
0.21.13 291 5/20/2025
0.21.7 701 5/20/2025
0.21.1 345 5/19/2025
0.20.18 844 5/19/2025
0.20.16 293 5/18/2025
0.20.11 236 5/18/2025
0.20.4 199 5/17/2025
0.20.0 302 5/15/2025
0.19.148 1,084 5/12/2025
0.19.143 360 5/11/2025
0.19.140 287 5/10/2025
0.19.136 302 5/9/2025
0.19.116 947 5/2/2025
0.19.112 350 5/1/2025
0.19.86 1,422 4/18/2025
0.19.84 274 4/18/2025
0.19.82 394 4/16/2025
0.19.81 285 4/16/2025
0.19.74 617 4/13/2025
0.19.64 528 4/9/2025
0.19.52 460 4/7/2025
0.19.32 925 3/31/2025
0.19.24 408 3/27/2025
0.19.17 337 3/27/2025
0.19.14 257 3/27/2025
0.19.10 239 3/26/2025
0.19.6 532 3/26/2025
0.19.4 624 3/25/2025
0.19.2 606 3/25/2025
0.19.0 550 3/25/2025
0.18.60 403 3/22/2025
0.18.52 347 3/19/2025
0.18.45 328 3/18/2025
0.18.40 405 3/17/2025
0.18.33 387 3/16/2025
0.18.26 322 3/13/2025
0.18.24 238 3/13/2025
0.18.23 207 3/13/2025
0.18.21 264 3/13/2025
0.18.17 292 3/12/2025
0.18.16 226 3/12/2025
0.18.9 407 3/11/2025
0.18.0 308 3/11/2025
0.17.14 438 3/10/2025
0.17.11 288 3/10/2025
0.17.8 299 3/10/2025
0.17.3 368 3/9/2025
0.17.0 262 3/9/2025
0.16.56 352 3/8/2025
0.16.54 272 3/8/2025
0.16.50 283 3/8/2025
0.16.49 172 3/8/2025
0.16.47 274 3/8/2025
0.16.45 249 3/8/2025
0.16.42 238 3/8/2025
0.16.36 447 3/7/2025
0.16.28 491 3/6/2025
0.16.23 430 3/5/2025
0.16.22 301 3/5/2025
0.16.13 549 3/4/2025
0.16.11 333 3/4/2025
0.16.8 355 3/3/2025
0.16.6 272 3/3/2025
0.16.4 243 3/3/2025
0.16.3 192 3/3/2025
0.16.1 222 3/2/2025
0.15.30 431 2/28/2025
0.15.18 213 2/27/2025
0.15.3 405 2/27/2025
0.15.1 167 2/27/2025
0.14.17 190 2/26/2025
0.14.14 165 2/26/2025
0.14.13 167 2/26/2025
0.14.10 1,428 2/24/2025
0.14.6 916 2/22/2025
0.14.0 862 2/21/2025
0.13.25 166 2/20/2025
0.13.23 358 2/20/2025
0.13.20 284 2/19/2025
0.13.18 412 2/18/2025
0.13.15 355 2/18/2025
0.13.13 142 2/18/2025
0.13.9 382 2/17/2025
0.13.3 868 2/16/2025
0.13.0 269 2/15/2025
0.12.25 677 2/15/2025
0.12.23 315 2/14/2025
0.12.21 332 2/14/2025
0.12.17 334 2/13/2025
0.12.14 250 2/13/2025
0.12.13 223 2/13/2025
0.12.11 216 2/13/2025
0.12.6 532 2/12/2025
0.12.0 362 2/11/2025
0.11.0 704 2/8/2025
0.10.33 712 2/8/2025
0.10.28 711 2/6/2025
0.10.26 234 2/5/2025
0.10.24 376 2/5/2025
0.10.19 472 2/4/2025
0.10.6 535 2/3/2025
0.10.4 298 2/3/2025
0.10.1 280 2/2/2025
0.9.11 346 2/1/2025
0.9.8 476 2/1/2025
0.9.6 283 2/1/2025
0.9.2 599 1/31/2025
0.9.0 301 1/30/2025
0.8.12 245 1/29/2025
0.8.8 239 1/29/2025
0.8.7 158 1/29/2025
0.8.4 723 1/28/2025
0.8.2 238 1/28/2025
0.8.0 197 1/27/2025
0.7.24 275 1/27/2025
0.7.22 302 1/27/2025
0.7.19 246 1/26/2025
0.7.15 393 1/26/2025
0.7.9 449 1/24/2025
0.7.3 416 1/23/2025
0.7.0 574 1/23/2025
0.6.159 258 1/21/2025
0.6.156 209 1/21/2025
0.6.154 703 1/20/2025
0.6.151 508 1/19/2025
0.6.145 153 1/19/2025
0.6.143 144 1/19/2025
0.6.139 139 1/19/2025
0.6.137 153 1/18/2025
0.6.131 141 1/18/2025
0.6.127 242 1/18/2025
0.6.123 156 1/18/2025
0.6.121 166 1/17/2025
0.6.119 273 1/17/2025
0.6.117 155 1/16/2025
0.6.100 602 1/14/2025
0.6.89 797 1/12/2025
0.6.86 309 1/11/2025
0.6.81 376 1/10/2025
0.6.76 389 1/10/2025
0.6.72 264 1/10/2025
0.6.71 143 1/10/2025
0.6.62 449 1/9/2025
0.6.60 221 1/9/2025
0.6.59 141 1/9/2025
0.6.57 196 1/9/2025
0.6.55 307 1/9/2025
0.6.52 195 1/9/2025
0.6.51 141 1/9/2025
0.6.48 141 1/9/2025
0.6.43 523 1/8/2025
0.6.33 500 1/5/2025
0.6.15 239 12/30/2024
0.6.14 145 12/30/2024
0.6.11 157 12/29/2024
0.6.0 163 12/26/2024
0.5.32 139 12/24/2024
0.5.28 138 12/23/2024
0.5.22 153 12/20/2024
0.5.18 161 12/20/2024
0.5.15 157 12/19/2024
0.5.14 151 12/19/2024
0.5.6 436 12/16/2024
0.5.4 150 12/16/2024
0.5.1 152 12/16/2024
0.5.0 170 12/16/2024
0.4.105 169 12/12/2024
0.4.99 181 12/11/2024
0.4.95 273 12/10/2024
0.4.92 152 12/9/2024
0.4.86 163 12/7/2024
0.4.83 167 12/7/2024
0.4.74 676 12/4/2024
0.4.73 159 12/4/2024
0.4.71 154 12/4/2024
0.4.63 535 12/3/2024
0.4.60 289 12/3/2024
0.4.59 160 12/3/2024
0.4.56 152 12/2/2024
0.4.54 170 12/2/2024
0.4.51 164 12/2/2024
0.4.49 141 12/2/2024
0.4.45 142 12/1/2024
0.4.43 174 12/1/2024
0.4.31 144 11/30/2024
0.4.26 159 11/30/2024
0.4.14 136 11/29/2024
0.4.10 161 11/28/2024
0.4.1 224 11/24/2024
0.4.0 133 11/24/2024
0.3.43 167 11/22/2024
0.3.34 241 11/19/2024
0.3.31 224 11/18/2024
0.3.30 176 11/18/2024
0.3.29 161 11/18/2024
0.3.25 156 11/17/2024
0.3.20 156 11/17/2024
0.3.14 144 11/17/2024
0.3.12 161 11/16/2024
0.3.3 152 11/16/2024
0.3.0 164 11/16/2024
0.2.212 230 11/11/2024
0.2.210 166 11/11/2024
0.2.208 172 11/11/2024
0.2.206 167 11/11/2024
0.2.202 142 11/9/2024
0.2.195 154 11/6/2024
0.2.193 156 11/5/2024
0.2.191 138 11/5/2024
0.2.187 1,384 11/4/2024
0.2.185 136 11/4/2024
0.2.181 175 11/2/2024
0.2.180 153 11/2/2024
0.2.176 459 11/1/2024
0.2.175 196 11/1/2024
0.2.169 413 10/31/2024
0.2.168 194 10/31/2024
0.2.167 277 10/31/2024
0.2.164 325 10/31/2024
0.2.161 244 10/31/2024
0.2.145 405 10/30/2024
0.2.141 160 10/30/2024
0.2.131 192 10/29/2024
0.2.128 164 10/29/2024
0.2.126 168 10/29/2024
0.2.120 168 10/29/2024
0.2.119 156 10/29/2024
0.2.112 237 10/29/2024
0.2.107 207 10/29/2024
0.2.106 174 10/29/2024
0.2.105 184 10/29/2024
0.2.103 180 10/29/2024
0.2.100 185 10/29/2024
0.2.86 163 10/29/2024
0.2.85 156 10/28/2024
0.2.82 157 10/28/2024
0.2.80 203 10/28/2024