Soenneker.Utils.AsyncSingleton 2.1.286

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

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Utils.AsyncSingleton

An externally initializing singleton that uses double-check asynchronous locking, with optional async and sync disposal

Installation

dotnet add package Soenneker.Utils.AsyncSingleton

Example

The example below is a long-living HttpClient implementation using AsyncSingleton. It avoids the additional overhead of IHttpClientFactory, and doesn't rely on short-lived clients.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly AsyncSingleton<HttpClient> _client;

    public HttpRequester()
    {
        // This func will lazily execute once it's retrieved the first time.
        // Other threads calling this at the same moment will asynchronously wait,
        // and then utilize the HttpClient that was created from the first caller.
        _client = new AsyncSingleton<HttpClient>(() =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            return new HttpClient(socketsHandler);
        });
    }

    public async ValueTask Get()
    {
        // retrieve the singleton async, thus not blocking the calling thread
        await (await _client.Get()).GetAsync("https://google.com");
    }

    // Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
    public ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(this);

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(this);
        
        _client.Dispose();
    }
}
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 was computed.  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 was computed.  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 was computed.  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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 (32)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.AsyncSingleton:

Package Downloads
Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Utils.Runtime

A collection of helpful runtime-based operations

Soenneker.Redis.Client

A utility library for Redis client accessibility

Soenneker.GitHub.Client

An async thread-safe singleton for Octokit's GitHubClient

Soenneker.Blazor.Utils.JsVariable

A Blazor interop library that checks (and waits) for the existence of a JS variable

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.716 78,066 9/3/2025
3.0.715 177 9/3/2025
3.0.714 55,455 8/11/2025
3.0.713 165 8/11/2025
3.0.712 99,481 7/1/2025
3.0.711 11,398 6/27/2025
3.0.710 1,476 6/27/2025
3.0.709 60,525 5/27/2025
3.0.708 1,039 5/27/2025
3.0.707 23,334 5/22/2025
3.0.705 36,159 5/7/2025
3.0.704 596 5/7/2025
3.0.703 22,000 5/5/2025
3.0.702 668 5/5/2025
3.0.701 202 5/5/2025
3.0.700 27,589 4/8/2025
3.0.699 6,871 4/8/2025
3.0.698 3,512 4/8/2025
3.0.697 4,848 4/8/2025
3.0.696 12,766 4/7/2025
3.0.695 4,449 4/7/2025
3.0.694 11,751 4/7/2025
3.0.693 10,930 4/7/2025
3.0.692 3,282 4/7/2025
3.0.691 3,088 4/6/2025
3.0.690 1,748 4/6/2025
3.0.689 320 4/6/2025
3.0.688 227 4/6/2025
3.0.687 4,501 4/6/2025
3.0.686 2,646 4/6/2025
3.0.685 175 4/6/2025
3.0.684 11,288 4/5/2025
3.0.683 1,845 4/5/2025
3.0.682 570 4/5/2025
3.0.681 180 4/5/2025
3.0.680 906 4/4/2025
3.0.679 337 4/4/2025
3.0.678 57,501 4/1/2025
3.0.677 15,362 3/31/2025
3.0.676 11,410 3/29/2025
3.0.675 15,150 3/25/2025
3.0.674 11,814 3/21/2025
3.0.673 21,486 3/15/2025
3.0.672 12,073 3/12/2025
3.0.671 1,107 3/12/2025
3.0.670 5,988 3/11/2025
3.0.669 313 3/11/2025
3.0.668 8,087 3/11/2025
3.0.667 7,565 3/11/2025
3.0.666 25,485 3/2/2025
3.0.665 2,771 3/2/2025
3.0.664 2,951 3/1/2025
3.0.663 4,783 3/1/2025
3.0.662 4,253 3/1/2025
3.0.661 3,094 3/1/2025
3.0.660 159 3/1/2025
3.0.659 4,652 3/1/2025
3.0.658 17,974 2/25/2025
3.0.657 4,128 2/25/2025
3.0.656 3,704 2/25/2025
3.0.655 4,499 2/24/2025
3.0.654 10,596 2/22/2025
3.0.653 17,055 2/22/2025
3.0.652 517 2/22/2025
3.0.651 4,892 2/21/2025
3.0.650 10,398 2/21/2025
3.0.649 13,573 2/19/2025
3.0.648 755 2/18/2025
3.0.647 2,613 2/18/2025
3.0.646 2,994 2/18/2025
3.0.645 7,622 2/18/2025
3.0.644 13,667 2/13/2025
3.0.643 15,354 2/12/2025
3.0.642 1,524 2/12/2025
3.0.641 2,696 2/12/2025
3.0.640 2,996 2/11/2025
3.0.639 3,003 2/11/2025
3.0.638 3,763 2/11/2025
3.0.637 5,486 2/11/2025
3.0.636 6,935 2/11/2025
3.0.635 9,387 2/10/2025
3.0.634 178 2/10/2025
3.0.633 11,650 2/9/2025
3.0.632 8,841 2/8/2025
3.0.631 1,734 2/8/2025
3.0.630 3,591 2/7/2025
3.0.629 4,289 2/7/2025
3.0.628 4,682 2/7/2025
3.0.627 413 2/7/2025
3.0.626 4,305 2/7/2025
3.0.625 167 2/7/2025
3.0.624 1,038 2/7/2025
3.0.623 23,747 2/5/2025
3.0.622 1,957 2/5/2025
3.0.621 3,573 2/5/2025
3.0.620 2,775 2/5/2025
3.0.619 27,294 1/28/2025
3.0.618 7,568 1/28/2025
3.0.617 439 1/27/2025
3.0.616 27,291 1/26/2025
3.0.615 2,498 1/26/2025
3.0.614 6,077 1/25/2025
3.0.613 8,317 1/25/2025
3.0.612 5,128 1/25/2025
3.0.611 2,891 1/24/2025
3.0.610 20,770 1/24/2025
3.0.609 6,915 1/24/2025
3.0.608 6,652 1/24/2025
3.0.607 5,366 1/23/2025
3.0.606 5,374 1/23/2025
3.0.605 15,952 1/21/2025
3.0.604 3,450 1/21/2025
3.0.603 8,064 1/21/2025
3.0.602 5,407 1/21/2025
3.0.601 7,635 1/21/2025
3.0.600 7,708 1/20/2025
3.0.599 559 1/20/2025
3.0.598 1,048 1/20/2025
3.0.597 7,474 1/20/2025
3.0.596 9,231 1/20/2025
3.0.595 1,106 1/20/2025
3.0.594 176 1/20/2025
3.0.593 1,068 1/20/2025
3.0.592 159 1/20/2025
3.0.591 23,793 1/19/2025
3.0.590 3,719 1/19/2025
3.0.589 3,780 1/18/2025
3.0.588 6,185 1/18/2025
3.0.587 2,401 1/18/2025
3.0.586 10,058 1/17/2025
3.0.585 1,868 1/17/2025
3.0.584 5,084 1/17/2025
3.0.583 4,413 1/16/2025
3.0.582 27,080 1/16/2025
3.0.581 2,390 1/16/2025
3.0.580 4,785 1/16/2025
3.0.579 6,060 1/15/2025
3.0.578 3,519 1/15/2025
3.0.577 6,713 1/15/2025
3.0.576 10,597 1/15/2025
3.0.575 1,885 1/15/2025
3.0.574 5,585 1/15/2025
3.0.573 558 1/15/2025
3.0.572 5,376 1/14/2025
3.0.571 2,560 1/14/2025
3.0.570 5,715 1/14/2025
3.0.569 22,440 1/13/2025
3.0.568 7,960 1/12/2025
3.0.567 12,016 1/11/2025
3.0.566 3,290 1/11/2025
3.0.565 1,638 1/11/2025
3.0.564 1,295 1/10/2025
3.0.563 6,797 1/10/2025
3.0.562 633 1/10/2025
3.0.561 1,396 1/10/2025
3.0.560 151 1/10/2025
3.0.559 151 1/10/2025
3.0.558 14,771 1/8/2025
3.0.557 436 1/8/2025
3.0.556 6,032 1/3/2025
3.0.555 4,803 1/3/2025
3.0.554 6,593 1/2/2025
3.0.553 1,111 1/2/2025
3.0.552 204 1/2/2025
3.0.551 3,811 1/2/2025
3.0.550 8,227 1/1/2025
3.0.549 1,142 1/1/2025
3.0.548 1,938 1/1/2025
3.0.547 2,160 1/1/2025
3.0.546 177 1/1/2025
3.0.545 949 12/31/2024
3.0.544 170 12/31/2024
3.0.543 373 12/31/2024
3.0.542 11,695 12/31/2024
3.0.541 12,229 12/31/2024
3.0.540 4,947 12/31/2024
3.0.539 6,283 12/31/2024
3.0.538 4,521 12/31/2024
3.0.537 1,971 12/31/2024
3.0.536 173 12/31/2024
3.0.535 7,502 12/31/2024
3.0.534 23,536 12/27/2024
3.0.533 4,403 12/27/2024
3.0.532 15,868 12/24/2024
3.0.531 1,038 12/24/2024
3.0.530 2,247 12/24/2024
3.0.529 419 12/24/2024
3.0.528 470 12/24/2024
3.0.527 2,710 12/23/2024
3.0.526 5,654 12/23/2024
3.0.525 2,726 12/23/2024
3.0.524 2,557 12/23/2024
3.0.523 3,531 12/23/2024
3.0.522 1,823 12/23/2024
3.0.521 4,500 12/22/2024
3.0.520 179 12/22/2024
3.0.519 19,148 12/22/2024
3.0.518 192 12/22/2024
3.0.517 14,669 12/22/2024
3.0.516 163 12/22/2024
3.0.515 7,041 12/22/2024
3.0.514 182 12/22/2024
3.0.513 1,380 12/21/2024
3.0.512 462 12/21/2024
3.0.511 160 12/21/2024
3.0.510 12,829 12/21/2024
3.0.509 1,299 12/21/2024
3.0.508 154 12/21/2024
3.0.507 2,178 12/21/2024
3.0.506 172 12/21/2024
3.0.505 7,094 12/21/2024
3.0.504 2,244 12/21/2024
3.0.503 5,705 12/21/2024
3.0.502 169 12/21/2024
3.0.501 3,642 12/20/2024
3.0.500 3,479 12/20/2024
3.0.499 6,880 12/20/2024
3.0.498 2,091 12/20/2024
3.0.497 975 12/20/2024
3.0.496 11,584 12/19/2024
3.0.495 952 12/19/2024
3.0.494 1,552 12/18/2024
3.0.493 877 12/18/2024
3.0.492 16,590 12/17/2024
3.0.491 539 12/17/2024
3.0.490 1,151 12/17/2024
3.0.489 1,534 12/17/2024
3.0.488 1,709 12/16/2024
3.0.487 531 12/16/2024
3.0.486 146 12/16/2024
3.0.485 14,815 12/9/2024
3.0.484 3,675 12/9/2024
3.0.483 7,881 12/9/2024
3.0.482 1,521 12/9/2024
3.0.480 15,886 12/6/2024
3.0.479 8,493 12/6/2024
3.0.478 2,805 12/6/2024
3.0.477 1,538 12/6/2024
3.0.476 1,038 12/6/2024
3.0.475 3,357 12/6/2024
3.0.474 10,242 12/6/2024
3.0.473 13,332 12/5/2024
3.0.472 1,560 12/5/2024
3.0.471 8,013 12/5/2024
3.0.470 3,485 12/5/2024
3.0.469 1,057 12/5/2024
3.0.468 7,080 12/4/2024
3.0.467 4,133 12/4/2024
3.0.466 4,410 12/4/2024
3.0.465 11,086 12/3/2024
3.0.464 468 12/3/2024
3.0.463 2,548 12/3/2024
3.0.462 9,128 12/3/2024
3.0.461 1,800 12/3/2024
3.0.460 5,723 12/3/2024
3.0.459 160 12/3/2024
3.0.458 1,240 12/3/2024
3.0.457 12,867 12/2/2024
3.0.456 5,654 12/2/2024
3.0.455 1,712 12/2/2024
3.0.454 1,486 12/1/2024
3.0.453 7,717 12/1/2024
3.0.452 8,103 12/1/2024
3.0.451 8,495 11/29/2024
3.0.450 13,430 11/20/2024
3.0.449 8,799 11/20/2024
3.0.448 669 11/20/2024
3.0.447 3,081 11/20/2024
3.0.445 3,864 11/19/2024
3.0.444 3,180 11/19/2024
3.0.443 9,029 11/19/2024
3.0.442 6,367 11/19/2024
3.0.441 162 11/19/2024
3.0.439 17,818 11/14/2024
3.0.438 6,959 11/14/2024
3.0.437 2,910 11/14/2024
3.0.436 5,390 11/14/2024
3.0.435 538 11/14/2024
3.0.434 184 11/14/2024
3.0.433 1,961 11/14/2024
3.0.432 161 11/14/2024
2.1.431 25,585 11/13/2024
2.1.430 4,966 11/13/2024
2.1.429 3,893 11/12/2024
2.1.428 17,942 11/9/2024
2.1.427 3,799 11/9/2024
2.1.426 4,070 11/8/2024
2.1.425 1,796 11/8/2024
2.1.424 2,021 11/8/2024
2.1.423 2,349 11/8/2024
2.1.422 2,736 11/8/2024
2.1.421 7,272 11/8/2024
2.1.420 28,112 11/1/2024
2.1.419 12,918 10/29/2024
2.1.418 5,049 10/29/2024
2.1.417 6,843 10/29/2024
2.1.416 12,692 10/28/2024
2.1.415 12,678 10/26/2024
2.1.414 14,612 10/22/2024
2.1.413 4,787 10/22/2024
2.1.412 2,586 10/22/2024
2.1.411 14,258 10/17/2024
2.1.410 12,629 10/15/2024
2.1.409 2,442 10/14/2024
2.1.408 13,022 10/11/2024
2.1.407 3,672 10/11/2024
2.1.406 2,446 10/11/2024
2.1.404 19,651 10/8/2024
2.1.403 7,885 10/8/2024
2.1.402 24,115 10/3/2024
2.1.401 1,767 10/3/2024
2.1.400 4,195 10/3/2024
2.1.399 15,705 10/2/2024
2.1.398 5,158 10/2/2024
2.1.397 16,100 10/1/2024
2.1.396 1,481 10/1/2024
2.1.395 7,971 9/30/2024
2.1.394 12,553 9/29/2024
2.1.393 4,125 9/29/2024
2.1.392 3,901 9/29/2024
2.1.391 10,835 9/27/2024
2.1.390 7,437 9/27/2024
2.1.389 243 9/27/2024
2.1.388 1,137 9/27/2024
2.1.387 2,835 9/27/2024
2.1.386 177 9/27/2024
2.1.385 16,431 9/26/2024
2.1.384 14,499 9/26/2024
2.1.383 6,261 9/26/2024
2.1.382 18,028 9/23/2024
2.1.381 4,423 9/23/2024
2.1.380 7,798 9/23/2024
2.1.379 7,687 9/23/2024
2.1.378 5,965 9/23/2024
2.1.377 1,200 9/23/2024
2.1.376 3,006 9/23/2024
2.1.375 165 9/23/2024
2.1.374 21,396 9/17/2024
2.1.373 997 9/17/2024
2.1.372 4,065 9/17/2024
2.1.371 4,249 9/17/2024
2.1.370 4,704 9/17/2024
2.1.369 6,354 9/17/2024
2.1.368 7,140 9/17/2024
2.1.367 23,408 9/16/2024
2.1.366 12,066 9/12/2024
2.1.365 4,599 9/11/2024
2.1.363 12,987 9/11/2024
2.1.362 25,189 9/10/2024
2.1.361 1,077 9/10/2024
2.1.360 1,549 9/10/2024
2.1.359 1,372 9/10/2024
2.1.358 5,360 9/9/2024
2.1.357 2,232 9/9/2024
2.1.356 9,170 9/9/2024
2.1.355 2,512 9/9/2024
2.1.354 10,347 9/9/2024
2.1.353 19,682 9/7/2024
2.1.352 14,837 9/6/2024
2.1.351 7,742 9/5/2024
2.1.350 7,795 9/5/2024
2.1.349 776 9/5/2024
2.1.348 208 9/5/2024
2.1.347 13,369 9/5/2024
2.1.346 1,533 9/4/2024
2.1.345 20,477 9/3/2024
2.1.344 9,400 9/3/2024
2.1.343 6,945 9/3/2024
2.1.342 13,300 8/29/2024
2.1.341 11,071 8/26/2024
2.1.340 11,784 8/21/2024
2.1.339 4,408 8/21/2024
2.1.338 2,616 8/20/2024
2.1.337 8,910 8/20/2024
2.1.336 198 8/20/2024
2.1.335 187 8/20/2024
2.1.334 14,887 8/19/2024
2.1.333 14,314 8/15/2024
2.1.332 14,261 8/13/2024
2.1.331 11,945 8/6/2024
2.1.330 6,851 8/6/2024
2.1.329 10,559 8/1/2024
2.1.328 2,125 8/1/2024
2.1.327 989 8/1/2024
2.1.326 15,054 7/25/2024
2.1.325 3,179 7/25/2024
2.1.324 2,765 7/25/2024
2.1.323 436 7/24/2024
2.1.322 1,197 7/24/2024
2.1.321 575 7/24/2024
2.1.320 15,355 7/20/2024
2.1.319 18,999 7/14/2024
2.1.318 7,071 7/14/2024
2.1.317 10,487 7/10/2024
2.1.316 4,500 7/10/2024
2.1.315 4,134 7/10/2024
2.1.314 2,342 7/10/2024
2.1.313 1,655 7/10/2024
2.1.312 515 7/10/2024
2.1.311 4,096 7/10/2024
2.1.310 2,048 7/9/2024
2.1.308 4,127 7/9/2024
2.1.307 172 7/9/2024
2.1.306 4,649 7/9/2024
2.1.305 10,416 7/9/2024
2.1.304 9,009 7/9/2024
2.1.303 4,288 7/9/2024
2.1.302 172 7/9/2024
2.1.301 11,917 7/9/2024
2.1.300 9,663 7/8/2024
2.1.299 573 7/8/2024
2.1.298 167 7/8/2024
2.1.297 182 7/8/2024
2.1.296 13,044 7/8/2024
2.1.295 2,564 7/7/2024
2.1.294 8,313 7/7/2024
2.1.293 191 7/7/2024
2.1.292 2,280 7/7/2024
2.1.291 4,825 7/7/2024
2.1.290 16,370 7/3/2024
2.1.289 5,260 7/3/2024
2.1.288 4,701 7/3/2024
2.1.287 1,352 7/3/2024
2.1.286 9,205 7/2/2024
2.1.283 5,638 6/30/2024
2.1.282 3,715 6/28/2024
2.1.281 401 6/28/2024
2.1.279 11,875 6/22/2024
2.1.278 13,673 6/15/2024
2.1.277 1,780 6/15/2024
2.1.276 10,374 6/14/2024
2.1.275 16,685 6/1/2024
2.1.274 2,777 6/1/2024
2.1.273 1,670 6/1/2024
2.1.272 14,750 5/31/2024
2.1.271 9,078 5/29/2024
2.1.270 10,324 5/28/2024
2.1.269 5,906 5/27/2024
2.1.268 10,784 5/26/2024
2.1.267 10,710 5/26/2024
2.1.266 533 5/26/2024
2.1.265 3,967 5/25/2024
2.1.264 2,731 5/25/2024
2.1.263 2,652 5/25/2024
2.1.262 178 5/25/2024
2.1.261 2,118 5/25/2024
2.1.260 182 5/25/2024
2.1.259 7,608 5/25/2024
2.1.258 174 5/25/2024
2.1.257 13,336 5/23/2024
2.1.256 5,367 5/23/2024
2.1.255 3,965 5/22/2024
2.1.254 2,829 5/22/2024
2.1.253 1,200 5/22/2024
2.1.252 179 5/22/2024
2.1.251 178 5/22/2024
2.1.250 5,644 5/22/2024
2.1.249 14,217 5/18/2024
2.1.248 3,014 5/17/2024
2.1.247 5,351 5/17/2024
2.1.246 7,917 5/16/2024
2.1.245 2,102 5/15/2024
2.1.244 5,975 5/15/2024
2.1.243 12,396 5/12/2024
2.1.242 6,679 5/3/2024
2.1.241 7,398 4/29/2024
2.1.240 4,160 4/29/2024
2.1.239 8,119 4/28/2024
2.1.238 1,309 4/28/2024
2.1.237 1,578 4/28/2024
2.1.236 6,104 4/28/2024
2.1.235 876 4/28/2024
2.1.234 7,869 4/28/2024
2.1.233 1,730 4/28/2024
2.1.232 7,424 4/27/2024
2.1.231 190 4/27/2024
2.1.230 14,977 4/19/2024
2.1.229 9,319 4/18/2024
2.1.228 9,703 4/12/2024
2.1.227 1,562 4/12/2024
2.1.226 2,464 4/12/2024
2.1.225 2,071 4/12/2024
2.1.224 1,442 4/12/2024
2.1.223 2,106 4/12/2024
2.1.222 789 4/12/2024
2.1.221 195 4/12/2024
2.1.220 5,442 4/10/2024
2.1.219 23,455 4/10/2024
2.1.218 980 4/10/2024
2.1.217 11,579 4/2/2024
2.1.216 2,072 4/1/2024
2.1.215 11,134 3/29/2024
2.1.214 8,158 3/25/2024
2.1.213 924 3/25/2024
2.1.212 11,227 3/20/2024
2.1.211 7,746 3/19/2024
2.1.210 4,808 3/19/2024
2.1.209 5,180 3/18/2024
2.1.208 11,064 3/15/2024
2.1.207 7,578 3/13/2024
2.1.206 2,931 3/13/2024
2.1.205 3,869 3/13/2024
2.1.204 247 3/13/2024
2.1.203 234 3/13/2024
2.1.202 2,484 3/13/2024
2.1.201 227 3/13/2024
2.1.200 5,517 3/12/2024
2.1.199 6,999 3/12/2024
2.1.198 9,157 3/11/2024
2.1.197 6,338 3/11/2024
2.1.196 6,914 3/10/2024
2.1.195 8,853 3/8/2024
2.1.194 805 3/8/2024
2.1.193 6,347 3/8/2024
2.1.192 8,106 3/6/2024
2.1.191 8,106 3/4/2024
2.1.190 4,511 3/4/2024
2.1.189 9,083 3/2/2024
2.1.188 2,268 3/2/2024
2.1.187 2,927 3/2/2024
2.1.186 1,609 3/2/2024
2.1.185 1,097 3/2/2024
2.1.184 6,172 2/29/2024
2.1.183 1,989 2/29/2024
2.1.182 3,025 2/29/2024
2.1.181 5,813 2/26/2024
2.1.180 22,759 2/25/2024
2.1.179 2,681 2/25/2024
2.1.178 8,923 2/23/2024
2.1.177 8,660 2/22/2024
2.1.176 2,413 2/22/2024
2.1.175 2,906 2/21/2024
2.1.174 4,728 2/21/2024
2.1.173 4,255 2/21/2024
2.1.172 5,368 2/21/2024
2.1.171 2,274 2/21/2024
2.1.170 433 2/21/2024
2.1.169 4,838 2/21/2024
2.1.168 1,585 2/20/2024
2.1.167 287 2/20/2024
2.1.166 287 2/20/2024
2.1.165 6,398 2/20/2024
2.1.164 4,983 2/20/2024
2.1.163 4,678 2/20/2024
2.1.162 9,848 2/19/2024
2.1.161 7,761 2/17/2024
2.1.160 3,151 2/17/2024
2.1.159 2,384 2/16/2024
2.1.158 1,704 2/16/2024
2.1.157 2,879 2/16/2024
2.1.156 4,245 2/16/2024
2.1.155 5,075 2/16/2024
2.1.154 337 2/16/2024
2.1.153 2,535 2/16/2024
2.1.152 319 2/16/2024
2.1.151 316 2/16/2024
2.1.150 8,587 2/14/2024
2.1.149 3,522 2/13/2024
2.1.148 4,248 2/13/2024
2.1.147 5,415 2/13/2024
2.1.146 5,186 2/13/2024
2.1.145 7,071 2/12/2024
2.1.144 1,101 2/11/2024
2.1.143 7,615 2/11/2024
2.1.142 4,226 2/11/2024
2.1.141 8,838 2/10/2024
2.1.140 1,106 2/9/2024
2.1.139 8,059 2/9/2024
2.1.138 5,288 2/9/2024
2.1.137 1,343 2/8/2024
2.1.136 6,545 2/8/2024
2.1.135 2,629 2/8/2024
2.1.134 14,720 2/8/2024
2.1.133 394 2/8/2024
2.1.132 328 2/8/2024
2.1.131 7,365 2/7/2024
2.1.130 2,971 2/7/2024
2.1.129 5,094 2/7/2024
2.1.128 1,633 2/7/2024
2.1.127 1,392 2/6/2024
2.1.126 4,125 2/6/2024
2.1.125 362 2/6/2024
2.1.124 10,677 2/5/2024
2.1.123 6,871 2/4/2024
2.1.122 7,349 2/2/2024
2.1.121 8,570 1/31/2024
2.1.120 8,372 1/29/2024
2.1.119 5,255 1/29/2024
2.1.118 3,503 1/29/2024
2.1.117 5,395 1/28/2024
2.1.116 7,318 1/28/2024
2.1.115 4,170 1/28/2024
2.1.114 2,555 1/28/2024
2.1.113 3,113 1/27/2024
2.1.112 2,936 1/27/2024
2.1.111 7,663 1/27/2024
2.1.110 3,980 1/27/2024
2.1.109 8,926 1/27/2024
2.1.108 2,509 1/26/2024
2.1.107 3,007 1/26/2024
2.1.106 3,727 1/26/2024
2.1.105 7,009 1/26/2024
2.1.104 3,313 1/26/2024
2.1.103 1,925 1/26/2024
2.1.102 6,418 1/25/2024
2.1.101 5,059 1/25/2024
2.1.100 2,511 1/25/2024
2.1.99 7,805 1/25/2024
2.1.98 8,026 1/19/2024
2.1.97 7,768 1/15/2024
2.1.96 3,533 1/15/2024
2.1.95 2,865 1/15/2024
2.1.94 7,132 1/15/2024
2.1.93 7,373 1/15/2024
2.1.92 7,023 1/14/2024
2.1.91 8,639 1/13/2024
2.1.90 7,099 1/12/2024
2.1.89 7,119 1/11/2024
2.1.88 9,760 1/7/2024
2.1.87 7,821 1/5/2024
2.1.86 3,428 1/5/2024
2.1.85 4,582 1/5/2024
2.1.84 8,393 1/3/2024
2.1.83 5,090 1/1/2024
2.1.82 6,952 12/28/2023
2.1.81 2,742 12/28/2023
2.1.80 2,932 12/28/2023
2.1.79 6,290 12/27/2023
2.1.78 2,964 12/27/2023
2.1.77 382 12/27/2023
2.1.76 11,955 12/25/2023
2.1.75 6,483 12/25/2023
2.1.74 3,438 12/25/2023
2.1.73 1,019 12/25/2023
2.1.72 402 12/25/2023
2.1.71 9,518 12/24/2023
2.1.70 7,419 12/23/2023
2.1.69 3,976 12/23/2023
2.1.68 2,478 12/23/2023
2.1.67 5,080 12/23/2023
2.1.66 371 12/23/2023
2.1.65 11,391 12/19/2023
2.1.64 2,990 12/19/2023
2.1.63 7,517 12/12/2023
2.1.62 625 12/12/2023
2.1.61 3,669 12/11/2023
2.1.60 2,944 12/11/2023
2.1.59 1,559 12/11/2023
2.1.58 2,271 12/11/2023
2.1.57 1,166 12/10/2023
2.1.56 1,168 12/10/2023
2.1.55 2,346 12/10/2023
2.1.54 1,490 12/10/2023
2.1.53 10,822 12/10/2023
2.1.52 2,507 12/9/2023
2.1.51 1,428 12/9/2023
2.1.50 2,155 12/9/2023
2.1.49 3,298 12/9/2023
2.1.48 342 12/9/2023
2.1.47 1,788 12/9/2023
2.1.46 411 12/9/2023
2.1.45 3,677 12/9/2023
2.1.44 374 12/9/2023
2.1.43 6,157 12/9/2023
2.1.42 9,043 12/6/2023
2.1.41 1,594 12/6/2023
2.1.40 2,379 12/6/2023
2.1.39 5,374 12/5/2023
2.1.38 2,709 12/5/2023
2.1.37 1,537 12/5/2023
2.1.36 3,894 12/5/2023
2.1.35 351 12/5/2023
2.1.34 3,298 12/5/2023
2.1.33 355 12/5/2023
2.1.32 2,270 12/4/2023
2.1.31 1,948 12/4/2023
2.1.30 383 12/4/2023
2.1.29 11,912 12/4/2023
2.1.28 4,241 11/27/2023
2.1.27 1,868 11/26/2023
2.1.26 4,638 11/23/2023
2.1.25 3,974 11/23/2023
2.1.24 4,981 11/23/2023
2.1.23 355 11/23/2023
2.1.22 9,566 11/20/2023
2.1.21 4,648 11/20/2023
2.1.20 7,895 11/19/2023
2.1.19 4,092 11/19/2023
2.1.18 5,623 11/19/2023
2.1.17 1,510 11/18/2023
2.1.16 7,611 11/18/2023
2.1.15 1,606 11/18/2023
2.1.14 4,687 11/18/2023
2.1.13 870 11/18/2023
2.1.12 4,884 11/17/2023
2.1.11 4,137 11/17/2023
2.1.10 3,157 11/17/2023
2.1.9 555 11/17/2023
2.1.8 4,495 11/17/2023
2.1.7 2,873 11/17/2023
2.1.6 3,530 11/17/2023
2.1.5 2,724 11/17/2023
2.1.4 874 11/17/2023
2.1.3 4,539 11/16/2023
2.0.78 1,531 11/15/2023
2.0.77 381 11/15/2023
2.0.76 4,217 11/15/2023
2.0.2 365 11/16/2023
2.0.1 347 11/16/2023
1.0.75 5,911 11/13/2023
1.0.74 8,394 11/10/2023
1.0.73 6,234 11/9/2023
1.0.72 4,348 11/8/2023
1.0.71 6,460 11/7/2023
1.0.70 3,369 11/6/2023
1.0.69 4,112 11/3/2023
1.0.68 7,096 11/2/2023
1.0.67 4,916 11/1/2023
1.0.66 14,342 10/26/2023
1.0.65 8,779 10/19/2023
1.0.64 3,699 10/18/2023
1.0.63 3,785 10/17/2023
1.0.62 4,619 10/16/2023
1.0.61 7,634 10/13/2023
1.0.60 4,746 10/12/2023
1.0.59 15,207 9/18/2023
1.0.58 373 9/18/2023
1.0.57 9,940 9/14/2023
1.0.56 9,487 8/31/2023
1.0.55 4,609 8/30/2023
1.0.54 4,178 8/29/2023
1.0.53 4,076 8/28/2023
1.0.52 7,355 8/25/2023
1.0.51 4,344 8/24/2023
1.0.50 10,364 8/21/2023
1.0.49 4,296 8/18/2023
1.0.48 3,975 8/17/2023
1.0.47 6,757 8/16/2023
1.0.46 11,557 8/10/2023
1.0.45 4,027 8/9/2023
1.0.44 6,422 8/8/2023
1.0.43 5,716 8/7/2023
1.0.42 5,897 8/4/2023
1.0.41 11,056 7/13/2023
1.0.40 7,133 7/11/2023
1.0.39 4,652 7/10/2023
1.0.38 5,426 7/7/2023
1.0.37 464 7/7/2023
1.0.36 15,013 6/30/2023
1.0.35 7,725 6/28/2023
1.0.34 7,724 6/27/2023
1.0.33 8,777 6/26/2023
1.0.32 5,512 6/23/2023
1.0.31 10,911 6/21/2023
1.0.30 11,501 6/15/2023
1.0.29 4,641 6/14/2023
1.0.28 12,334 6/9/2023
1.0.27 5,170 6/8/2023
1.0.26 6,258 6/7/2023
1.0.25 7,137 6/6/2023
1.0.24 479 6/6/2023
1.0.23 6,102 6/5/2023
1.0.22 20,918 5/30/2023
1.0.21 23,210 5/29/2023
1.0.20 8,223 5/26/2023
1.0.19 9,450 5/25/2023
1.0.18 9,892 5/24/2023
1.0.17 6,826 5/24/2023
1.0.16 2,029 5/23/2023
1.0.15 1,943 5/23/2023
1.0.12 3,826 5/22/2023
1.0.11 22,814 5/16/2023
1.0.10 18,798 4/20/2023
1.0.9 17,909 4/3/2023
1.0.8 1,452 4/3/2023
1.0.7 2,868 3/23/2023
1.0.5 928 3/13/2023
1.0.4 654 3/11/2023
1.0.3 542 3/11/2023
1.0.2 541 3/11/2023
1.0.1 614 3/11/2023