Soenneker.Utils.AsyncSingleton 2.1.257

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.257
                    
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 2.1.257
                    
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.257" />
                    
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.257" />
                    
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.257
                    
#r "nuget: Soenneker.Utils.AsyncSingleton, 2.1.257"
                    
#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.257
                    
#: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.257
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.257
                    
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 60,447 9/3/2025
3.0.715 177 9/3/2025
3.0.714 49,476 8/11/2025
3.0.713 165 8/11/2025
3.0.712 89,239 7/1/2025
3.0.711 10,342 6/27/2025
3.0.710 1,362 6/27/2025
3.0.709 54,851 5/27/2025
3.0.708 989 5/27/2025
3.0.707 21,023 5/22/2025
3.0.705 32,768 5/7/2025
3.0.704 559 5/7/2025
3.0.703 19,926 5/5/2025
3.0.702 604 5/5/2025
3.0.701 202 5/5/2025
3.0.700 25,061 4/8/2025
3.0.699 6,180 4/8/2025
3.0.698 3,101 4/8/2025
3.0.697 4,358 4/8/2025
3.0.696 11,531 4/7/2025
3.0.695 4,077 4/7/2025
3.0.694 10,651 4/7/2025
3.0.693 9,756 4/7/2025
3.0.692 2,823 4/7/2025
3.0.691 2,804 4/6/2025
3.0.690 1,585 4/6/2025
3.0.689 314 4/6/2025
3.0.688 225 4/6/2025
3.0.687 4,022 4/6/2025
3.0.686 2,397 4/6/2025
3.0.685 175 4/6/2025
3.0.684 10,136 4/5/2025
3.0.683 1,685 4/5/2025
3.0.682 534 4/5/2025
3.0.681 180 4/5/2025
3.0.680 827 4/4/2025
3.0.679 330 4/4/2025
3.0.678 51,719 4/1/2025
3.0.677 13,734 3/31/2025
3.0.676 10,239 3/29/2025
3.0.675 13,620 3/25/2025
3.0.674 10,563 3/21/2025
3.0.673 19,285 3/15/2025
3.0.672 10,870 3/12/2025
3.0.671 1,015 3/12/2025
3.0.670 5,454 3/11/2025
3.0.669 309 3/11/2025
3.0.668 7,293 3/11/2025
3.0.667 6,783 3/11/2025
3.0.666 22,871 3/2/2025
3.0.665 2,493 3/2/2025
3.0.664 2,691 3/1/2025
3.0.663 4,241 3/1/2025
3.0.662 3,832 3/1/2025
3.0.661 2,745 3/1/2025
3.0.660 159 3/1/2025
3.0.659 4,227 3/1/2025
3.0.658 16,160 2/25/2025
3.0.657 3,653 2/25/2025
3.0.656 3,275 2/25/2025
3.0.655 4,099 2/24/2025
3.0.654 9,543 2/22/2025
3.0.653 15,295 2/22/2025
3.0.652 466 2/22/2025
3.0.651 4,295 2/21/2025
3.0.650 9,314 2/21/2025
3.0.649 12,111 2/19/2025
3.0.648 699 2/18/2025
3.0.647 2,349 2/18/2025
3.0.646 2,648 2/18/2025
3.0.645 6,829 2/18/2025
3.0.644 12,241 2/13/2025
3.0.643 13,728 2/12/2025
3.0.642 1,395 2/12/2025
3.0.641 2,362 2/12/2025
3.0.640 2,695 2/11/2025
3.0.639 2,665 2/11/2025
3.0.638 3,371 2/11/2025
3.0.637 4,916 2/11/2025
3.0.636 6,138 2/11/2025
3.0.635 8,305 2/10/2025
3.0.634 177 2/10/2025
3.0.633 10,432 2/9/2025
3.0.632 7,801 2/8/2025
3.0.631 1,547 2/8/2025
3.0.630 3,149 2/7/2025
3.0.629 3,906 2/7/2025
3.0.628 4,305 2/7/2025
3.0.627 382 2/7/2025
3.0.626 3,831 2/7/2025
3.0.625 167 2/7/2025
3.0.624 929 2/7/2025
3.0.623 21,063 2/5/2025
3.0.622 1,793 2/5/2025
3.0.621 3,204 2/5/2025
3.0.620 2,481 2/5/2025
3.0.619 24,547 1/28/2025
3.0.618 6,648 1/28/2025
3.0.617 400 1/27/2025
3.0.616 24,047 1/26/2025
3.0.615 2,250 1/26/2025
3.0.614 5,381 1/25/2025
3.0.613 7,263 1/25/2025
3.0.612 4,516 1/25/2025
3.0.611 2,560 1/24/2025
3.0.610 18,402 1/24/2025
3.0.609 6,040 1/24/2025
3.0.608 5,856 1/24/2025
3.0.607 4,746 1/23/2025
3.0.606 4,691 1/23/2025
3.0.605 14,012 1/21/2025
3.0.604 3,020 1/21/2025
3.0.603 7,106 1/21/2025
3.0.602 4,743 1/21/2025
3.0.601 6,762 1/21/2025
3.0.600 6,730 1/20/2025
3.0.599 507 1/20/2025
3.0.598 909 1/20/2025
3.0.597 6,631 1/20/2025
3.0.596 8,125 1/20/2025
3.0.595 1,014 1/20/2025
3.0.594 174 1/20/2025
3.0.593 946 1/20/2025
3.0.592 157 1/20/2025
3.0.591 20,887 1/19/2025
3.0.590 3,308 1/19/2025
3.0.589 3,349 1/18/2025
3.0.588 5,429 1/18/2025
3.0.587 2,146 1/18/2025
3.0.586 9,078 1/17/2025
3.0.585 1,643 1/17/2025
3.0.584 4,411 1/17/2025
3.0.583 3,905 1/16/2025
3.0.582 23,928 1/16/2025
3.0.581 2,120 1/16/2025
3.0.580 4,240 1/16/2025
3.0.579 5,367 1/15/2025
3.0.578 3,172 1/15/2025
3.0.577 5,909 1/15/2025
3.0.576 9,381 1/15/2025
3.0.575 1,636 1/15/2025
3.0.574 4,886 1/15/2025
3.0.573 490 1/15/2025
3.0.572 4,562 1/14/2025
3.0.571 2,128 1/14/2025
3.0.570 4,957 1/14/2025
3.0.569 19,470 1/13/2025
3.0.568 6,970 1/12/2025
3.0.567 10,499 1/11/2025
3.0.566 2,883 1/11/2025
3.0.565 1,425 1/11/2025
3.0.564 1,163 1/10/2025
3.0.563 5,956 1/10/2025
3.0.562 558 1/10/2025
3.0.561 1,246 1/10/2025
3.0.560 151 1/10/2025
3.0.559 150 1/10/2025
3.0.558 12,786 1/8/2025
3.0.557 399 1/8/2025
3.0.556 5,338 1/3/2025
3.0.555 4,239 1/3/2025
3.0.554 5,819 1/2/2025
3.0.553 971 1/2/2025
3.0.552 197 1/2/2025
3.0.551 3,407 1/2/2025
3.0.550 7,186 1/1/2025
3.0.549 1,025 1/1/2025
3.0.548 1,686 1/1/2025
3.0.547 1,924 1/1/2025
3.0.546 176 1/1/2025
3.0.545 895 12/31/2024
3.0.544 167 12/31/2024
3.0.543 336 12/31/2024
3.0.542 10,244 12/31/2024
3.0.541 10,772 12/31/2024
3.0.540 4,356 12/31/2024
3.0.539 5,389 12/31/2024
3.0.538 3,945 12/31/2024
3.0.537 1,734 12/31/2024
3.0.536 171 12/31/2024
3.0.535 6,686 12/31/2024
3.0.534 20,604 12/27/2024
3.0.533 3,856 12/27/2024
3.0.532 14,062 12/24/2024
3.0.531 944 12/24/2024
3.0.530 2,006 12/24/2024
3.0.529 398 12/24/2024
3.0.528 451 12/24/2024
3.0.527 2,490 12/23/2024
3.0.526 5,013 12/23/2024
3.0.525 2,345 12/23/2024
3.0.524 2,313 12/23/2024
3.0.523 3,170 12/23/2024
3.0.522 1,624 12/23/2024
3.0.521 4,001 12/22/2024
3.0.520 179 12/22/2024
3.0.519 17,093 12/22/2024
3.0.518 192 12/22/2024
3.0.517 12,888 12/22/2024
3.0.516 162 12/22/2024
3.0.515 6,095 12/22/2024
3.0.514 180 12/22/2024
3.0.513 1,237 12/21/2024
3.0.512 435 12/21/2024
3.0.511 156 12/21/2024
3.0.510 11,215 12/21/2024
3.0.509 1,203 12/21/2024
3.0.508 152 12/21/2024
3.0.507 1,910 12/21/2024
3.0.506 172 12/21/2024
3.0.505 6,313 12/21/2024
3.0.504 2,078 12/21/2024
3.0.503 5,052 12/21/2024
3.0.502 169 12/21/2024
3.0.501 3,181 12/20/2024
3.0.500 3,087 12/20/2024
3.0.499 6,050 12/20/2024
3.0.498 1,894 12/20/2024
3.0.497 885 12/20/2024
3.0.496 10,160 12/19/2024
3.0.495 847 12/19/2024
3.0.494 1,427 12/18/2024
3.0.493 793 12/18/2024
3.0.492 15,038 12/17/2024
3.0.491 484 12/17/2024
3.0.490 1,049 12/17/2024
3.0.489 1,359 12/17/2024
3.0.488 1,537 12/16/2024
3.0.487 506 12/16/2024
3.0.486 146 12/16/2024
3.0.485 13,274 12/9/2024
3.0.484 3,223 12/9/2024
3.0.483 7,023 12/9/2024
3.0.482 1,301 12/9/2024
3.0.480 14,071 12/6/2024
3.0.479 7,471 12/6/2024
3.0.478 2,435 12/6/2024
3.0.477 1,394 12/6/2024
3.0.476 920 12/6/2024
3.0.475 2,960 12/6/2024
3.0.474 9,025 12/6/2024
3.0.473 11,693 12/5/2024
3.0.472 1,416 12/5/2024
3.0.471 7,130 12/5/2024
3.0.470 3,084 12/5/2024
3.0.469 942 12/5/2024
3.0.468 6,419 12/4/2024
3.0.467 3,596 12/4/2024
3.0.466 3,811 12/4/2024
3.0.465 9,817 12/3/2024
3.0.464 424 12/3/2024
3.0.463 2,277 12/3/2024
3.0.462 8,288 12/3/2024
3.0.461 1,636 12/3/2024
3.0.460 5,160 12/3/2024
3.0.459 159 12/3/2024
3.0.458 1,054 12/3/2024
3.0.457 11,233 12/2/2024
3.0.456 4,982 12/2/2024
3.0.455 1,547 12/2/2024
3.0.454 1,297 12/1/2024
3.0.453 6,767 12/1/2024
3.0.452 7,111 12/1/2024
3.0.451 7,453 11/29/2024
3.0.450 11,981 11/20/2024
3.0.449 7,813 11/20/2024
3.0.448 607 11/20/2024
3.0.447 2,716 11/20/2024
3.0.445 3,445 11/19/2024
3.0.444 2,856 11/19/2024
3.0.443 7,997 11/19/2024
3.0.442 5,726 11/19/2024
3.0.441 158 11/19/2024
3.0.439 15,785 11/14/2024
3.0.438 6,147 11/14/2024
3.0.437 2,573 11/14/2024
3.0.436 4,799 11/14/2024
3.0.435 483 11/14/2024
3.0.434 182 11/14/2024
3.0.433 1,672 11/14/2024
3.0.432 161 11/14/2024
2.1.431 22,989 11/13/2024
2.1.430 4,372 11/13/2024
2.1.429 3,557 11/12/2024
2.1.428 15,999 11/9/2024
2.1.427 3,369 11/9/2024
2.1.426 3,593 11/8/2024
2.1.425 1,607 11/8/2024
2.1.424 1,839 11/8/2024
2.1.423 2,179 11/8/2024
2.1.422 2,433 11/8/2024
2.1.421 6,405 11/8/2024
2.1.420 25,177 11/1/2024
2.1.419 11,480 10/29/2024
2.1.418 4,449 10/29/2024
2.1.417 6,047 10/29/2024
2.1.416 11,399 10/28/2024
2.1.415 11,323 10/26/2024
2.1.414 13,339 10/22/2024
2.1.413 4,224 10/22/2024
2.1.412 2,400 10/22/2024
2.1.411 12,690 10/17/2024
2.1.410 11,270 10/15/2024
2.1.409 2,124 10/14/2024
2.1.408 11,621 10/11/2024
2.1.407 3,275 10/11/2024
2.1.406 2,070 10/11/2024
2.1.404 17,293 10/8/2024
2.1.403 7,030 10/8/2024
2.1.402 21,498 10/3/2024
2.1.401 1,579 10/3/2024
2.1.400 3,672 10/3/2024
2.1.399 13,838 10/2/2024
2.1.398 4,534 10/2/2024
2.1.397 14,352 10/1/2024
2.1.396 1,307 10/1/2024
2.1.395 7,066 9/30/2024
2.1.394 11,133 9/29/2024
2.1.393 3,640 9/29/2024
2.1.392 3,482 9/29/2024
2.1.391 9,641 9/27/2024
2.1.390 6,586 9/27/2024
2.1.389 243 9/27/2024
2.1.388 1,004 9/27/2024
2.1.387 2,491 9/27/2024
2.1.386 177 9/27/2024
2.1.385 14,563 9/26/2024
2.1.384 12,790 9/26/2024
2.1.383 5,552 9/26/2024
2.1.382 16,096 9/23/2024
2.1.381 3,946 9/23/2024
2.1.380 7,001 9/23/2024
2.1.379 6,974 9/23/2024
2.1.378 5,243 9/23/2024
2.1.377 1,066 9/23/2024
2.1.376 2,630 9/23/2024
2.1.375 163 9/23/2024
2.1.374 19,194 9/17/2024
2.1.373 921 9/17/2024
2.1.372 3,679 9/17/2024
2.1.371 3,836 9/17/2024
2.1.370 4,146 9/17/2024
2.1.369 5,805 9/17/2024
2.1.368 6,573 9/17/2024
2.1.367 21,140 9/16/2024
2.1.366 10,866 9/12/2024
2.1.365 4,138 9/11/2024
2.1.363 11,690 9/11/2024
2.1.362 22,918 9/10/2024
2.1.361 1,000 9/10/2024
2.1.360 1,406 9/10/2024
2.1.359 1,266 9/10/2024
2.1.358 4,835 9/9/2024
2.1.357 1,979 9/9/2024
2.1.356 8,297 9/9/2024
2.1.355 2,299 9/9/2024
2.1.354 9,273 9/9/2024
2.1.353 17,760 9/7/2024
2.1.352 13,337 9/6/2024
2.1.351 6,940 9/5/2024
2.1.350 7,024 9/5/2024
2.1.349 743 9/5/2024
2.1.348 206 9/5/2024
2.1.347 12,027 9/5/2024
2.1.346 1,392 9/4/2024
2.1.345 18,341 9/3/2024
2.1.344 8,278 9/3/2024
2.1.343 6,155 9/3/2024
2.1.342 11,769 8/29/2024
2.1.341 9,864 8/26/2024
2.1.340 10,508 8/21/2024
2.1.339 3,884 8/21/2024
2.1.338 2,326 8/20/2024
2.1.337 8,088 8/20/2024
2.1.336 196 8/20/2024
2.1.335 186 8/20/2024
2.1.334 13,355 8/19/2024
2.1.333 12,918 8/15/2024
2.1.332 12,807 8/13/2024
2.1.331 10,676 8/6/2024
2.1.330 6,148 8/6/2024
2.1.329 9,312 8/1/2024
2.1.328 1,928 8/1/2024
2.1.327 898 8/1/2024
2.1.326 13,299 7/25/2024
2.1.325 2,781 7/25/2024
2.1.324 2,398 7/25/2024
2.1.323 411 7/24/2024
2.1.322 1,081 7/24/2024
2.1.321 531 7/24/2024
2.1.320 13,621 7/20/2024
2.1.319 17,034 7/14/2024
2.1.318 6,287 7/14/2024
2.1.317 9,394 7/10/2024
2.1.316 4,043 7/10/2024
2.1.315 3,670 7/10/2024
2.1.314 2,112 7/10/2024
2.1.313 1,442 7/10/2024
2.1.312 470 7/10/2024
2.1.311 3,716 7/10/2024
2.1.310 1,762 7/9/2024
2.1.308 3,692 7/9/2024
2.1.307 172 7/9/2024
2.1.306 4,190 7/9/2024
2.1.305 9,291 7/9/2024
2.1.304 8,059 7/9/2024
2.1.303 3,783 7/9/2024
2.1.302 172 7/9/2024
2.1.301 11,570 7/9/2024
2.1.300 8,480 7/8/2024
2.1.299 513 7/8/2024
2.1.298 167 7/8/2024
2.1.297 182 7/8/2024
2.1.296 11,643 7/8/2024
2.1.295 2,287 7/7/2024
2.1.294 7,257 7/7/2024
2.1.293 190 7/7/2024
2.1.292 1,987 7/7/2024
2.1.291 4,228 7/7/2024
2.1.290 14,390 7/3/2024
2.1.289 4,605 7/3/2024
2.1.288 4,137 7/3/2024
2.1.287 1,276 7/3/2024
2.1.286 8,033 7/2/2024
2.1.283 4,900 6/30/2024
2.1.282 3,306 6/28/2024
2.1.281 376 6/28/2024
2.1.279 10,528 6/22/2024
2.1.278 12,196 6/15/2024
2.1.277 1,625 6/15/2024
2.1.276 9,332 6/14/2024
2.1.275 14,827 6/1/2024
2.1.274 2,444 6/1/2024
2.1.273 1,479 6/1/2024
2.1.272 13,058 5/31/2024
2.1.271 8,070 5/29/2024
2.1.270 9,179 5/28/2024
2.1.269 5,266 5/27/2024
2.1.268 9,559 5/26/2024
2.1.267 9,526 5/26/2024
2.1.266 477 5/26/2024
2.1.265 3,601 5/25/2024
2.1.264 2,462 5/25/2024
2.1.263 2,326 5/25/2024
2.1.262 177 5/25/2024
2.1.261 1,888 5/25/2024
2.1.260 182 5/25/2024
2.1.259 6,810 5/25/2024
2.1.258 174 5/25/2024
2.1.257 11,961 5/23/2024
2.1.256 4,838 5/23/2024
2.1.255 3,492 5/22/2024
2.1.254 2,584 5/22/2024
2.1.253 1,060 5/22/2024
2.1.252 178 5/22/2024
2.1.251 176 5/22/2024
2.1.250 5,003 5/22/2024
2.1.249 12,755 5/18/2024
2.1.248 2,631 5/17/2024
2.1.247 4,750 5/17/2024
2.1.246 7,165 5/16/2024
2.1.245 1,932 5/15/2024
2.1.244 5,297 5/15/2024
2.1.243 11,066 5/12/2024
2.1.242 5,962 5/3/2024
2.1.241 6,611 4/29/2024
2.1.240 3,761 4/29/2024
2.1.239 7,230 4/28/2024
2.1.238 1,151 4/28/2024
2.1.237 1,403 4/28/2024
2.1.236 5,413 4/28/2024
2.1.235 790 4/28/2024
2.1.234 7,203 4/28/2024
2.1.233 1,566 4/28/2024
2.1.232 6,768 4/27/2024
2.1.231 188 4/27/2024
2.1.230 13,441 4/19/2024
2.1.229 8,411 4/18/2024
2.1.228 8,784 4/12/2024
2.1.227 1,415 4/12/2024
2.1.226 2,214 4/12/2024
2.1.225 1,883 4/12/2024
2.1.224 1,294 4/12/2024
2.1.223 1,902 4/12/2024
2.1.222 741 4/12/2024
2.1.221 194 4/12/2024
2.1.220 4,835 4/10/2024
2.1.219 21,156 4/10/2024
2.1.218 897 4/10/2024
2.1.217 10,410 4/2/2024
2.1.216 1,865 4/1/2024
2.1.215 10,003 3/29/2024
2.1.214 7,291 3/25/2024
2.1.213 862 3/25/2024
2.1.212 10,086 3/20/2024
2.1.211 6,956 3/19/2024
2.1.210 4,262 3/19/2024
2.1.209 4,624 3/18/2024
2.1.208 9,947 3/15/2024
2.1.207 6,799 3/13/2024
2.1.206 2,589 3/13/2024
2.1.205 3,479 3/13/2024
2.1.204 246 3/13/2024
2.1.203 233 3/13/2024
2.1.202 2,274 3/13/2024
2.1.201 227 3/13/2024
2.1.200 4,912 3/12/2024
2.1.199 6,316 3/12/2024
2.1.198 8,230 3/11/2024
2.1.197 5,705 3/11/2024
2.1.196 6,183 3/10/2024
2.1.195 7,927 3/8/2024
2.1.194 727 3/8/2024
2.1.193 5,662 3/8/2024
2.1.192 7,294 3/6/2024
2.1.191 7,245 3/4/2024
2.1.190 4,058 3/4/2024
2.1.189 8,176 3/2/2024
2.1.188 2,063 3/2/2024
2.1.187 2,691 3/2/2024
2.1.186 1,507 3/2/2024
2.1.185 1,006 3/2/2024
2.1.184 5,669 2/29/2024
2.1.183 1,811 2/29/2024
2.1.182 2,780 2/29/2024
2.1.181 5,326 2/26/2024
2.1.180 20,464 2/25/2024
2.1.179 2,436 2/25/2024
2.1.178 7,996 2/23/2024
2.1.177 7,733 2/22/2024
2.1.176 2,163 2/22/2024
2.1.175 2,617 2/21/2024
2.1.174 4,256 2/21/2024
2.1.173 3,800 2/21/2024
2.1.172 4,804 2/21/2024
2.1.171 2,072 2/21/2024
2.1.170 433 2/21/2024
2.1.169 4,316 2/21/2024
2.1.168 1,415 2/20/2024
2.1.167 286 2/20/2024
2.1.166 285 2/20/2024
2.1.165 5,813 2/20/2024
2.1.164 4,440 2/20/2024
2.1.163 4,219 2/20/2024
2.1.162 8,858 2/19/2024
2.1.161 7,058 2/17/2024
2.1.160 2,843 2/17/2024
2.1.159 2,145 2/16/2024
2.1.158 1,563 2/16/2024
2.1.157 2,609 2/16/2024
2.1.156 3,873 2/16/2024
2.1.155 4,647 2/16/2024
2.1.154 336 2/16/2024
2.1.153 2,240 2/16/2024
2.1.152 319 2/16/2024
2.1.151 316 2/16/2024
2.1.150 7,752 2/14/2024
2.1.149 3,230 2/13/2024
2.1.148 3,884 2/13/2024
2.1.147 4,883 2/13/2024
2.1.146 4,623 2/13/2024
2.1.145 6,437 2/12/2024
2.1.144 984 2/11/2024
2.1.143 6,849 2/11/2024
2.1.142 3,852 2/11/2024
2.1.141 8,032 2/10/2024
2.1.140 1,012 2/9/2024
2.1.139 7,295 2/9/2024
2.1.138 4,781 2/9/2024
2.1.137 1,222 2/8/2024
2.1.136 5,902 2/8/2024
2.1.135 2,441 2/8/2024
2.1.134 14,025 2/8/2024
2.1.133 392 2/8/2024
2.1.132 327 2/8/2024
2.1.131 6,716 2/7/2024
2.1.130 2,689 2/7/2024
2.1.129 4,606 2/7/2024
2.1.128 1,488 2/7/2024
2.1.127 1,283 2/6/2024
2.1.126 3,656 2/6/2024
2.1.125 361 2/6/2024
2.1.124 9,698 2/5/2024
2.1.123 6,269 2/4/2024
2.1.122 6,632 2/2/2024
2.1.121 7,858 1/31/2024
2.1.120 7,664 1/29/2024
2.1.119 4,802 1/29/2024
2.1.118 3,166 1/29/2024
2.1.117 4,932 1/28/2024
2.1.116 6,725 1/28/2024
2.1.115 3,764 1/28/2024
2.1.114 2,276 1/28/2024
2.1.113 2,894 1/27/2024
2.1.112 2,662 1/27/2024
2.1.111 6,999 1/27/2024
2.1.110 3,613 1/27/2024
2.1.109 8,204 1/27/2024
2.1.108 2,233 1/26/2024
2.1.107 2,683 1/26/2024
2.1.106 3,479 1/26/2024
2.1.105 6,426 1/26/2024
2.1.104 3,011 1/26/2024
2.1.103 1,702 1/26/2024
2.1.102 5,820 1/25/2024
2.1.101 4,587 1/25/2024
2.1.100 2,259 1/25/2024
2.1.99 7,167 1/25/2024
2.1.98 7,202 1/19/2024
2.1.97 7,172 1/15/2024
2.1.96 3,263 1/15/2024
2.1.95 2,583 1/15/2024
2.1.94 6,529 1/15/2024
2.1.93 6,730 1/15/2024
2.1.92 6,494 1/14/2024
2.1.91 7,898 1/13/2024
2.1.90 6,584 1/12/2024
2.1.89 6,518 1/11/2024
2.1.88 8,906 1/7/2024
2.1.87 7,141 1/5/2024
2.1.86 3,135 1/5/2024
2.1.85 4,155 1/5/2024
2.1.84 7,669 1/3/2024
2.1.83 4,704 1/1/2024
2.1.82 6,357 12/28/2023
2.1.81 2,541 12/28/2023
2.1.80 2,634 12/28/2023
2.1.79 5,749 12/27/2023
2.1.78 2,772 12/27/2023
2.1.77 382 12/27/2023
2.1.76 10,957 12/25/2023
2.1.75 5,964 12/25/2023
2.1.74 3,162 12/25/2023
2.1.73 917 12/25/2023
2.1.72 402 12/25/2023
2.1.71 8,753 12/24/2023
2.1.70 6,767 12/23/2023
2.1.69 3,667 12/23/2023
2.1.68 2,194 12/23/2023
2.1.67 4,702 12/23/2023
2.1.66 371 12/23/2023
2.1.65 10,443 12/19/2023
2.1.64 2,741 12/19/2023
2.1.63 6,932 12/12/2023
2.1.62 588 12/12/2023
2.1.61 3,394 12/11/2023
2.1.60 2,737 12/11/2023
2.1.59 1,483 12/11/2023
2.1.58 2,086 12/11/2023
2.1.57 1,069 12/10/2023
2.1.56 1,044 12/10/2023
2.1.55 2,252 12/10/2023
2.1.54 1,383 12/10/2023
2.1.53 10,067 12/10/2023
2.1.52 2,311 12/9/2023
2.1.51 1,304 12/9/2023
2.1.50 2,005 12/9/2023
2.1.49 3,042 12/9/2023
2.1.48 341 12/9/2023
2.1.47 1,648 12/9/2023
2.1.46 410 12/9/2023
2.1.45 3,491 12/9/2023
2.1.44 374 12/9/2023
2.1.43 5,662 12/9/2023
2.1.42 8,280 12/6/2023
2.1.41 1,485 12/6/2023
2.1.40 2,213 12/6/2023
2.1.39 4,958 12/5/2023
2.1.38 2,474 12/5/2023
2.1.37 1,392 12/5/2023
2.1.36 3,601 12/5/2023
2.1.35 348 12/5/2023
2.1.34 2,993 12/5/2023
2.1.33 352 12/5/2023
2.1.32 2,044 12/4/2023
2.1.31 1,854 12/4/2023
2.1.30 383 12/4/2023
2.1.29 10,921 12/4/2023
2.1.28 3,771 11/27/2023
2.1.27 1,718 11/26/2023
2.1.26 4,271 11/23/2023
2.1.25 3,681 11/23/2023
2.1.24 4,604 11/23/2023
2.1.23 355 11/23/2023
2.1.22 8,809 11/20/2023
2.1.21 4,247 11/20/2023
2.1.20 7,139 11/19/2023
2.1.19 3,760 11/19/2023
2.1.18 5,203 11/19/2023
2.1.17 1,399 11/18/2023
2.1.16 6,934 11/18/2023
2.1.15 1,571 11/18/2023
2.1.14 4,320 11/18/2023
2.1.13 844 11/18/2023
2.1.12 4,546 11/17/2023
2.1.11 3,785 11/17/2023
2.1.10 2,926 11/17/2023
2.1.9 518 11/17/2023
2.1.8 4,207 11/17/2023
2.1.7 2,560 11/17/2023
2.1.6 3,255 11/17/2023
2.1.5 2,411 11/17/2023
2.1.4 777 11/17/2023
2.1.3 4,147 11/16/2023
2.0.78 1,394 11/15/2023
2.0.77 380 11/15/2023
2.0.76 3,766 11/15/2023
2.0.2 365 11/16/2023
2.0.1 345 11/16/2023
1.0.75 5,363 11/13/2023
1.0.74 7,542 11/10/2023
1.0.73 5,797 11/9/2023
1.0.72 3,965 11/8/2023
1.0.71 6,045 11/7/2023
1.0.70 3,029 11/6/2023
1.0.69 3,785 11/3/2023
1.0.68 6,716 11/2/2023
1.0.67 4,294 11/1/2023
1.0.66 13,501 10/26/2023
1.0.65 8,189 10/19/2023
1.0.64 3,465 10/18/2023
1.0.63 3,454 10/17/2023
1.0.62 4,232 10/16/2023
1.0.61 7,231 10/13/2023
1.0.60 4,355 10/12/2023
1.0.59 14,008 9/18/2023
1.0.58 369 9/18/2023
1.0.57 9,207 9/14/2023
1.0.56 8,719 8/31/2023
1.0.55 4,315 8/30/2023
1.0.54 3,856 8/29/2023
1.0.53 3,689 8/28/2023
1.0.52 6,883 8/25/2023
1.0.51 3,969 8/24/2023
1.0.50 9,516 8/21/2023
1.0.49 4,030 8/18/2023
1.0.48 3,651 8/17/2023
1.0.47 6,337 8/16/2023
1.0.46 10,804 8/10/2023
1.0.45 3,763 8/9/2023
1.0.44 6,071 8/8/2023
1.0.43 5,327 8/7/2023
1.0.42 5,466 8/4/2023
1.0.41 10,330 7/13/2023
1.0.40 6,649 7/11/2023
1.0.39 4,296 7/10/2023
1.0.38 5,057 7/7/2023
1.0.37 460 7/7/2023
1.0.36 14,096 6/30/2023
1.0.35 7,272 6/28/2023
1.0.34 7,311 6/27/2023
1.0.33 8,384 6/26/2023
1.0.32 5,143 6/23/2023
1.0.31 10,322 6/21/2023
1.0.30 10,792 6/15/2023
1.0.29 4,363 6/14/2023
1.0.28 11,613 6/9/2023
1.0.27 4,900 6/8/2023
1.0.26 5,970 6/7/2023
1.0.25 6,731 6/6/2023
1.0.24 475 6/6/2023
1.0.23 5,797 6/5/2023
1.0.22 19,737 5/30/2023
1.0.21 22,103 5/29/2023
1.0.20 7,748 5/26/2023
1.0.19 8,954 5/25/2023
1.0.18 9,408 5/24/2023
1.0.17 6,460 5/24/2023
1.0.16 1,934 5/23/2023
1.0.15 1,912 5/23/2023
1.0.12 3,608 5/22/2023
1.0.11 21,612 5/16/2023
1.0.10 17,833 4/20/2023
1.0.9 16,880 4/3/2023
1.0.8 1,400 4/3/2023
1.0.7 2,735 3/23/2023
1.0.5 912 3/13/2023
1.0.4 641 3/11/2023
1.0.3 539 3/11/2023
1.0.2 535 3/11/2023
1.0.1 607 3/11/2023