TUnit.Playwright 0.89.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package TUnit.Playwright --version 0.89.0
                    
NuGet\Install-Package TUnit.Playwright -Version 0.89.0
                    
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="0.89.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TUnit.Playwright" Version="0.89.0" />
                    
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 0.89.0
                    
#r "nuget: TUnit.Playwright, 0.89.0"
                    
#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@0.89.0
                    
#: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=0.89.0
                    
Install as a Cake Addin
#tool nuget:?package=TUnit.Playwright&version=0.89.0
                    
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.

Current Status

The API is mostly stable, but may have some changes based on feedback before the v1.0 release.


<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.5, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
Intel Xeon Platinum 8370C CPU 2.80GHz (Max: 2.79GHz), 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-v4
  Job-GVKUBM : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v4

Runtime=.NET 10.0  

Method Version Mean Error StdDev Median
Build_TUnit 0.86.10 1.745 s 0.0348 s 0.0326 s 1.746 s
Build_NUnit 4.4.0 1.543 s 0.0158 s 0.0148 s 1.538 s
Build_MSTest 4.0.1 1.613 s 0.0197 s 0.0184 s 1.616 s
Build_xUnit3 3.1.0 1.513 s 0.0157 s 0.0147 s 1.518 s

Scenario: Tests running asynchronous operations and async/await patterns


BenchmarkDotNet v0.15.5, 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 0.86.10 550.3 ms 5.18 ms 4.84 ms 549.2 ms
NUnit 4.4.0 699.9 ms 6.28 ms 5.88 ms 700.4 ms
MSTest 4.0.1 667.9 ms 7.47 ms 6.23 ms 666.9 ms
xUnit3 3.1.0 641.9 ms 3.04 ms 2.84 ms 641.9 ms
TUnit_AOT 0.86.10 173.8 ms 0.58 ms 0.54 ms 173.9 ms

Scenario: Parameterized tests with multiple test cases using data attributes


BenchmarkDotNet v0.15.5, 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 0.86.10 519.03 ms 5.999 ms 5.611 ms 519.52 ms
NUnit 4.4.0 619.54 ms 12.145 ms 17.025 ms 614.65 ms
MSTest 4.0.1 632.36 ms 12.544 ms 12.319 ms 631.28 ms
xUnit3 3.1.0 507.74 ms 4.370 ms 4.087 ms 506.88 ms
TUnit_AOT 0.86.10 74.88 ms 0.324 ms 0.303 ms 74.93 ms

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


BenchmarkDotNet v0.15.5, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
Intel Xeon Platinum 8370C CPU 2.80GHz (Max: 2.79GHz), 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-v4
  Job-GVKUBM : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v4

Runtime=.NET 10.0  

Method Version Mean Error StdDev Median
TUnit 0.86.10 696.8 ms 5.14 ms 4.81 ms 696.1 ms
NUnit 4.4.0 1,202.2 ms 6.87 ms 6.09 ms 1,202.2 ms
MSTest 4.0.1 3,001.0 ms 5.96 ms 5.28 ms 3,001.6 ms
xUnit3 3.1.0 2,966.4 ms 8.21 ms 7.28 ms 2,964.4 ms
TUnit_AOT 0.86.10 279.2 ms 0.66 ms 0.62 ms 279.1 ms

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


BenchmarkDotNet v0.15.5, 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 0.86.10 626.5 ms 6.15 ms 5.75 ms 624.8 ms
NUnit 4.4.0 1,535.8 ms 10.02 ms 8.37 ms 1,533.9 ms
MSTest 4.0.1 1,499.8 ms 9.65 ms 9.03 ms 1,499.5 ms
xUnit3 3.1.0 1,517.8 ms 5.74 ms 5.37 ms 1,516.8 ms
TUnit_AOT 0.86.10 177.0 ms 0.49 ms 0.43 ms 177.0 ms

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


BenchmarkDotNet v0.15.5, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.62GHz, 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 0.86.10 520.12 ms 6.200 ms 5.496 ms 519.39 ms
NUnit 4.4.0 688.25 ms 8.293 ms 7.757 ms 686.78 ms
MSTest 4.0.1 686.01 ms 11.597 ms 10.280 ms 687.04 ms
xUnit3 3.1.0 492.65 ms 3.582 ms 3.176 ms 492.63 ms
TUnit_AOT 0.86.10 80.02 ms 0.194 ms 0.162 ms 79.99 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.0 100 11/15/2025
1.1.27 154 11/15/2025
1.1.10 509 11/12/2025
1.1.0 312 11/12/2025
1.0.78 571 11/11/2025
1.0.48 678 11/10/2025
1.0.39 317 11/9/2025
1.0.30 291 11/8/2025
1.0.27 167 11/8/2025
1.0.0 657 11/5/2025
0.90.45 298 11/5/2025
0.90.42 194 11/4/2025
0.90.38 212 11/4/2025
0.90.35 200 11/4/2025
0.90.32 208 11/4/2025
0.90.28 220 11/4/2025
0.90.19 244 11/3/2025
0.90.17 193 11/3/2025
0.90.6 244 11/2/2025
0.90.0 172 11/2/2025
0.89.2 121 11/2/2025
0.89.0 149 11/1/2025
0.88.0 202 11/1/2025
0.87.8 242 10/31/2025
0.86.10 230 10/30/2025
0.86.5 263 10/30/2025
0.86.0 230 10/30/2025
0.85.1 197 10/29/2025
0.85.0 170 10/29/2025
0.81.7 223 10/29/2025
0.81.0 206 10/29/2025
0.80.0 284 10/28/2025
0.79.0 200 10/28/2025
0.78.0 332 10/28/2025
0.77.10 292 10/27/2025
0.77.3 281 10/27/2025
0.77.0 205 10/26/2025
0.76.26 216 10/26/2025
0.76.18 233 10/25/2025
0.76.11 260 10/25/2025
0.76.7 264 10/24/2025
0.76.0 158 10/24/2025
0.75.30 726 10/23/2025
0.75.11 456 10/22/2025
0.75.5 208 10/22/2025
0.75.4 205 10/22/2025
0.75.0 270 10/21/2025
0.74.2 479 10/20/2025
0.74.0 183 10/20/2025
0.73.19 342 10/18/2025
0.73.14 181 10/17/2025
0.73.11 169 10/17/2025
0.73.4 406 10/16/2025
0.73.0 228 10/16/2025
0.72.0 326 10/15/2025
0.71.4 222 10/14/2025
0.71.0 188 10/14/2025
0.70.7 301 10/14/2025
0.70.4 218 10/14/2025
0.70.2 268 10/13/2025
0.70.0 190 10/13/2025
0.67.19 1,068 10/10/2025
0.67.10 727 10/8/2025
0.67.9 177 10/8/2025
0.67.4 321 10/7/2025
0.67.0 271 10/6/2025
0.66.13 282 10/6/2025
0.66.6 250 10/6/2025
0.66.0 224 10/5/2025
0.64.0 307 10/5/2025
0.63.3 556 10/2/2025
0.63.0 239 10/2/2025
0.61.58 763 9/29/2025
0.61.39 664 9/25/2025
0.61.38 202 9/25/2025
0.61.31 326 9/24/2025
0.61.25 270 9/23/2025
0.61.22 294 9/22/2025
0.61.13 498 9/21/2025
0.61.6 285 9/21/2025
0.61.2 247 9/20/2025
0.60.15 233 9/20/2025
0.60.1 473 9/19/2025
0.59.0 338 9/19/2025
0.58.3 498 9/18/2025
0.58.0 339 9/18/2025
0.57.65 1,075 9/10/2025
0.57.63 267 9/10/2025
0.57.24 1,218 8/30/2025
0.57.1 844 8/21/2025
0.57.0 192 8/21/2025
0.56.50 339 8/20/2025
0.56.44 456 8/18/2025
0.56.35 287 8/17/2025
0.56.5 1,042 8/14/2025
0.55.23 572 8/13/2025
0.55.21 276 8/13/2025
0.55.6 551 8/12/2025
0.55.0 299 8/11/2025
0.53.0 755 8/8/2025
0.52.64 335 8/7/2025
0.52.60 272 8/7/2025
0.52.56 323 8/7/2025
0.52.51 263 8/7/2025
0.52.49 319 8/7/2025
0.52.47 241 8/7/2025
0.52.30 400 8/6/2025
0.52.25 441 8/6/2025
0.52.24 261 8/6/2025
0.52.22 337 8/6/2025
0.52.8 346 8/6/2025
0.52.2 252 8/6/2025
0.52.0 250 8/6/2025
0.50.0 618 8/3/2025
0.25.21 4,251 6/10/2025
0.25.6 373 6/5/2025
0.25.0 294 6/5/2025
0.24.0 2,974 6/1/2025
0.23.5 238 6/1/2025
0.23.0 165 5/31/2025
0.22.31 171 5/30/2025
0.22.24 371 5/28/2025
0.22.20 313 5/27/2025
0.22.12 410 5/25/2025
0.22.10 275 5/25/2025
0.22.6 178 5/24/2025
0.22.0 408 5/22/2025
0.21.16 553 5/21/2025
0.21.13 291 5/20/2025
0.21.7 699 5/20/2025
0.21.1 344 5/19/2025
0.20.18 744 5/19/2025
0.20.16 291 5/18/2025
0.20.11 235 5/18/2025
0.20.4 188 5/17/2025
0.20.0 302 5/15/2025
0.19.148 1,077 5/12/2025
0.19.143 359 5/11/2025
0.19.140 287 5/10/2025
0.19.136 299 5/9/2025
0.19.116 941 5/2/2025
0.19.112 348 5/1/2025
0.19.86 1,422 4/18/2025
0.19.84 269 4/18/2025
0.19.82 392 4/16/2025
0.19.81 284 4/16/2025
0.19.74 614 4/13/2025
0.19.64 518 4/9/2025
0.19.52 459 4/7/2025
0.19.32 924 3/31/2025
0.19.24 407 3/27/2025
0.19.17 335 3/27/2025
0.19.14 253 3/27/2025
0.19.10 237 3/26/2025
0.19.6 532 3/26/2025
0.19.4 622 3/25/2025
0.19.2 585 3/25/2025
0.19.0 549 3/25/2025
0.18.60 372 3/22/2025
0.18.52 344 3/19/2025
0.18.45 313 3/18/2025
0.18.40 393 3/17/2025
0.18.33 385 3/16/2025
0.18.26 320 3/13/2025
0.18.24 237 3/13/2025
0.18.23 205 3/13/2025
0.18.21 259 3/13/2025
0.18.17 289 3/12/2025
0.18.16 222 3/12/2025
0.18.9 407 3/11/2025
0.18.0 297 3/11/2025
0.17.14 438 3/10/2025
0.17.11 287 3/10/2025
0.17.8 298 3/10/2025
0.17.3 367 3/9/2025
0.17.0 259 3/9/2025
0.16.56 348 3/8/2025
0.16.54 272 3/8/2025
0.16.50 282 3/8/2025
0.16.49 170 3/8/2025
0.16.47 272 3/8/2025
0.16.45 248 3/8/2025
0.16.42 238 3/8/2025
0.16.36 437 3/7/2025
0.16.28 489 3/6/2025
0.16.23 428 3/5/2025
0.16.22 298 3/5/2025
0.16.13 547 3/4/2025
0.16.11 331 3/4/2025
0.16.8 351 3/3/2025
0.16.6 271 3/3/2025
0.16.4 240 3/3/2025
0.16.3 191 3/3/2025
0.16.1 219 3/2/2025
0.15.30 431 2/28/2025
0.15.18 212 2/27/2025
0.15.3 405 2/27/2025
0.15.1 166 2/27/2025
0.14.17 187 2/26/2025
0.14.14 163 2/26/2025
0.14.13 164 2/26/2025
0.14.10 1,427 2/24/2025
0.14.6 916 2/22/2025
0.14.0 851 2/21/2025
0.13.25 165 2/20/2025
0.13.23 355 2/20/2025
0.13.20 284 2/19/2025
0.13.18 410 2/18/2025
0.13.15 352 2/18/2025
0.13.13 141 2/18/2025
0.13.9 380 2/17/2025
0.13.3 867 2/16/2025
0.13.0 268 2/15/2025
0.12.25 673 2/15/2025
0.12.23 313 2/14/2025
0.12.21 329 2/14/2025
0.12.17 333 2/13/2025
0.12.14 250 2/13/2025
0.12.13 220 2/13/2025
0.12.11 212 2/13/2025
0.12.6 528 2/12/2025
0.12.0 361 2/11/2025
0.11.0 702 2/8/2025
0.10.33 711 2/8/2025
0.10.28 709 2/6/2025
0.10.26 231 2/5/2025
0.10.24 374 2/5/2025
0.10.19 472 2/4/2025
0.10.6 533 2/3/2025
0.10.4 292 2/3/2025
0.10.1 279 2/2/2025
0.9.11 342 2/1/2025
0.9.8 474 2/1/2025
0.9.6 280 2/1/2025
0.9.2 597 1/31/2025
0.9.0 300 1/30/2025
0.8.12 245 1/29/2025
0.8.8 237 1/29/2025
0.8.7 156 1/29/2025
0.8.4 720 1/28/2025
0.8.2 233 1/28/2025
0.8.0 196 1/27/2025
0.7.24 270 1/27/2025
0.7.22 299 1/27/2025
0.7.19 245 1/26/2025
0.7.15 371 1/26/2025
0.7.9 447 1/24/2025
0.7.3 413 1/23/2025
0.7.0 574 1/23/2025
0.6.159 254 1/21/2025
0.6.156 206 1/21/2025
0.6.154 701 1/20/2025
0.6.151 506 1/19/2025
0.6.145 148 1/19/2025
0.6.143 142 1/19/2025
0.6.139 137 1/19/2025
0.6.137 151 1/18/2025
0.6.131 140 1/18/2025
0.6.127 239 1/18/2025
0.6.123 155 1/18/2025
0.6.121 165 1/17/2025
0.6.119 270 1/17/2025
0.6.117 150 1/16/2025
0.6.100 601 1/14/2025
0.6.89 796 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 261 1/10/2025
0.6.71 143 1/10/2025
0.6.62 445 1/9/2025
0.6.60 220 1/9/2025
0.6.59 140 1/9/2025
0.6.57 194 1/9/2025
0.6.55 307 1/9/2025
0.6.52 193 1/9/2025
0.6.51 140 1/9/2025
0.6.48 139 1/9/2025
0.6.43 522 1/8/2025
0.6.33 500 1/5/2025
0.6.15 237 12/30/2024
0.6.14 143 12/30/2024
0.6.11 156 12/29/2024
0.6.0 160 12/26/2024
0.5.32 135 12/24/2024
0.5.28 138 12/23/2024
0.5.22 151 12/20/2024
0.5.18 160 12/20/2024
0.5.15 155 12/19/2024
0.5.14 149 12/19/2024
0.5.6 435 12/16/2024
0.5.4 150 12/16/2024
0.5.1 151 12/16/2024
0.5.0 167 12/16/2024
0.4.105 168 12/12/2024
0.4.99 181 12/11/2024
0.4.95 269 12/10/2024
0.4.92 149 12/9/2024
0.4.86 162 12/7/2024
0.4.83 165 12/7/2024
0.4.74 672 12/4/2024
0.4.73 155 12/4/2024
0.4.71 153 12/4/2024
0.4.63 534 12/3/2024
0.4.60 287 12/3/2024
0.4.59 159 12/3/2024
0.4.56 151 12/2/2024
0.4.54 167 12/2/2024
0.4.51 163 12/2/2024
0.4.49 141 12/2/2024
0.4.45 140 12/1/2024
0.4.43 173 12/1/2024
0.4.31 142 11/30/2024
0.4.26 156 11/30/2024
0.4.14 135 11/29/2024
0.4.10 158 11/28/2024
0.4.1 221 11/24/2024
0.4.0 132 11/24/2024
0.3.43 166 11/22/2024
0.3.34 237 11/19/2024
0.3.31 222 11/18/2024
0.3.30 175 11/18/2024
0.3.29 160 11/18/2024
0.3.25 154 11/17/2024
0.3.20 156 11/17/2024
0.3.14 143 11/17/2024
0.3.12 159 11/16/2024
0.3.3 151 11/16/2024
0.3.0 161 11/16/2024
0.2.212 228 11/11/2024
0.2.210 163 11/11/2024
0.2.208 170 11/11/2024
0.2.206 166 11/11/2024
0.2.202 142 11/9/2024
0.2.195 151 11/6/2024
0.2.193 155 11/5/2024
0.2.191 135 11/5/2024
0.2.187 1,383 11/4/2024
0.2.185 135 11/4/2024
0.2.181 173 11/2/2024
0.2.180 152 11/2/2024
0.2.176 456 11/1/2024
0.2.175 192 11/1/2024
0.2.169 413 10/31/2024
0.2.168 191 10/31/2024
0.2.167 274 10/31/2024
0.2.164 322 10/31/2024
0.2.161 241 10/31/2024
0.2.145 402 10/30/2024
0.2.141 158 10/30/2024
0.2.131 190 10/29/2024
0.2.128 161 10/29/2024
0.2.126 164 10/29/2024
0.2.120 168 10/29/2024
0.2.119 155 10/29/2024
0.2.112 237 10/29/2024
0.2.107 206 10/29/2024
0.2.106 172 10/29/2024
0.2.105 181 10/29/2024
0.2.103 179 10/29/2024
0.2.100 184 10/29/2024
0.2.86 160 10/29/2024
0.2.85 156 10/28/2024
0.2.82 156 10/28/2024
0.2.80 201 10/28/2024