Soenneker.Utils.AsyncSingleton 2.1.263

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.263
                    
NuGet\Install-Package Soenneker.Utils.AsyncSingleton -Version 2.1.263
                    
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.263" />
                    
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.263" />
                    
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.263
                    
#r "nuget: Soenneker.Utils.AsyncSingleton, 2.1.263"
                    
#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.263
                    
#: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.263
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.AsyncSingleton&version=2.1.263
                    
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.ServiceBus.Admin

A utility library for Azure Service Bus Administration client accessibility

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.716 44,651 9/3/2025
3.0.715 165 9/3/2025
3.0.714 39,362 8/11/2025
3.0.713 155 8/11/2025
3.0.712 73,685 7/1/2025
3.0.711 8,930 6/27/2025
3.0.710 1,143 6/27/2025
3.0.709 47,517 5/27/2025
3.0.708 841 5/27/2025
3.0.707 18,167 5/22/2025
3.0.705 28,527 5/7/2025
3.0.704 494 5/7/2025
3.0.703 17,147 5/5/2025
3.0.702 540 5/5/2025
3.0.701 191 5/5/2025
3.0.700 21,736 4/8/2025
3.0.699 5,323 4/8/2025
3.0.698 2,695 4/8/2025
3.0.697 3,711 4/8/2025
3.0.696 9,728 4/7/2025
3.0.695 3,488 4/7/2025
3.0.694 9,157 4/7/2025
3.0.693 8,149 4/7/2025
3.0.692 2,387 4/7/2025
3.0.691 2,426 4/6/2025
3.0.690 1,419 4/6/2025
3.0.689 293 4/6/2025
3.0.688 214 4/6/2025
3.0.687 3,531 4/6/2025
3.0.686 2,110 4/6/2025
3.0.685 163 4/6/2025
3.0.684 8,700 4/5/2025
3.0.683 1,472 4/5/2025
3.0.682 462 4/5/2025
3.0.681 169 4/5/2025
3.0.680 760 4/4/2025
3.0.679 295 4/4/2025
3.0.678 44,543 4/1/2025
3.0.677 11,530 3/31/2025
3.0.676 8,652 3/29/2025
3.0.675 11,327 3/25/2025
3.0.674 8,911 3/21/2025
3.0.673 16,254 3/15/2025
3.0.672 9,176 3/12/2025
3.0.671 879 3/12/2025
3.0.670 4,652 3/11/2025
3.0.669 286 3/11/2025
3.0.668 6,272 3/11/2025
3.0.667 5,802 3/11/2025
3.0.666 19,168 3/2/2025
3.0.665 2,103 3/2/2025
3.0.664 2,255 3/1/2025
3.0.663 3,506 3/1/2025
3.0.662 3,323 3/1/2025
3.0.661 2,322 3/1/2025
3.0.660 146 3/1/2025
3.0.659 3,522 3/1/2025
3.0.658 13,610 2/25/2025
3.0.657 3,095 2/25/2025
3.0.656 2,728 2/25/2025
3.0.655 3,412 2/24/2025
3.0.654 8,061 2/22/2025
3.0.653 12,929 2/22/2025
3.0.652 419 2/22/2025
3.0.651 3,602 2/21/2025
3.0.650 7,881 2/21/2025
3.0.649 10,425 2/19/2025
3.0.648 595 2/18/2025
3.0.647 2,046 2/18/2025
3.0.646 2,313 2/18/2025
3.0.645 5,803 2/18/2025
3.0.644 10,429 2/13/2025
3.0.643 11,783 2/12/2025
3.0.642 1,229 2/12/2025
3.0.641 2,056 2/12/2025
3.0.640 2,344 2/11/2025
3.0.639 2,313 2/11/2025
3.0.638 2,818 2/11/2025
3.0.637 4,144 2/11/2025
3.0.636 5,463 2/11/2025
3.0.635 7,072 2/10/2025
3.0.634 165 2/10/2025
3.0.633 8,983 2/9/2025
3.0.632 6,625 2/8/2025
3.0.631 1,308 2/8/2025
3.0.630 2,665 2/7/2025
3.0.629 3,270 2/7/2025
3.0.628 3,704 2/7/2025
3.0.627 372 2/7/2025
3.0.626 3,271 2/7/2025
3.0.625 156 2/7/2025
3.0.624 776 2/7/2025
3.0.623 17,927 2/5/2025
3.0.622 1,545 2/5/2025
3.0.621 2,716 2/5/2025
3.0.620 2,117 2/5/2025
3.0.619 21,101 1/28/2025
3.0.618 5,507 1/28/2025
3.0.617 351 1/27/2025
3.0.616 20,206 1/26/2025
3.0.615 1,887 1/26/2025
3.0.614 4,591 1/25/2025
3.0.613 6,113 1/25/2025
3.0.612 3,827 1/25/2025
3.0.611 2,064 1/24/2025
3.0.610 15,496 1/24/2025
3.0.609 5,091 1/24/2025
3.0.608 4,920 1/24/2025
3.0.607 4,015 1/23/2025
3.0.606 3,877 1/23/2025
3.0.605 11,756 1/21/2025
3.0.604 2,551 1/21/2025
3.0.603 5,965 1/21/2025
3.0.602 3,996 1/21/2025
3.0.601 5,678 1/21/2025
3.0.600 5,601 1/20/2025
3.0.599 447 1/20/2025
3.0.598 751 1/20/2025
3.0.597 5,833 1/20/2025
3.0.596 7,015 1/20/2025
3.0.595 873 1/20/2025
3.0.594 163 1/20/2025
3.0.593 820 1/20/2025
3.0.592 145 1/20/2025
3.0.591 17,558 1/19/2025
3.0.590 2,827 1/19/2025
3.0.589 2,820 1/18/2025
3.0.588 4,529 1/18/2025
3.0.587 1,812 1/18/2025
3.0.586 7,436 1/17/2025
3.0.585 1,388 1/17/2025
3.0.584 3,828 1/17/2025
3.0.583 3,334 1/16/2025
3.0.582 19,806 1/16/2025
3.0.581 1,750 1/16/2025
3.0.580 3,656 1/16/2025
3.0.579 4,515 1/15/2025
3.0.578 2,700 1/15/2025
3.0.577 4,878 1/15/2025
3.0.576 7,974 1/15/2025
3.0.575 1,367 1/15/2025
3.0.574 3,981 1/15/2025
3.0.573 435 1/15/2025
3.0.572 3,693 1/14/2025
3.0.571 1,734 1/14/2025
3.0.570 4,024 1/14/2025
3.0.569 16,317 1/13/2025
3.0.568 5,811 1/12/2025
3.0.567 8,642 1/11/2025
3.0.566 2,407 1/11/2025
3.0.565 1,155 1/11/2025
3.0.564 1,014 1/10/2025
3.0.563 5,226 1/10/2025
3.0.562 495 1/10/2025
3.0.561 978 1/10/2025
3.0.560 144 1/10/2025
3.0.559 139 1/10/2025
3.0.558 10,619 1/8/2025
3.0.557 327 1/8/2025
3.0.556 4,507 1/3/2025
3.0.555 3,558 1/3/2025
3.0.554 4,866 1/2/2025
3.0.553 895 1/2/2025
3.0.552 186 1/2/2025
3.0.551 2,735 1/2/2025
3.0.550 5,978 1/1/2025
3.0.549 854 1/1/2025
3.0.548 1,392 1/1/2025
3.0.547 1,591 1/1/2025
3.0.546 163 1/1/2025
3.0.545 786 12/31/2024
3.0.544 156 12/31/2024
3.0.543 286 12/31/2024
3.0.542 8,659 12/31/2024
3.0.541 9,057 12/31/2024
3.0.540 3,667 12/31/2024
3.0.539 4,609 12/31/2024
3.0.538 3,327 12/31/2024
3.0.537 1,415 12/31/2024
3.0.536 159 12/31/2024
3.0.535 5,628 12/31/2024
3.0.534 17,206 12/27/2024
3.0.533 3,215 12/27/2024
3.0.532 11,836 12/24/2024
3.0.531 815 12/24/2024
3.0.530 1,692 12/24/2024
3.0.529 344 12/24/2024
3.0.528 401 12/24/2024
3.0.527 2,040 12/23/2024
3.0.526 4,178 12/23/2024
3.0.525 2,003 12/23/2024
3.0.524 1,921 12/23/2024
3.0.523 2,626 12/23/2024
3.0.522 1,405 12/23/2024
3.0.521 3,365 12/22/2024
3.0.520 166 12/22/2024
3.0.519 14,335 12/22/2024
3.0.518 179 12/22/2024
3.0.517 10,849 12/22/2024
3.0.516 151 12/22/2024
3.0.515 4,910 12/22/2024
3.0.514 170 12/22/2024
3.0.513 1,065 12/21/2024
3.0.512 378 12/21/2024
3.0.511 144 12/21/2024
3.0.510 9,223 12/21/2024
3.0.509 998 12/21/2024
3.0.508 142 12/21/2024
3.0.507 1,531 12/21/2024
3.0.506 161 12/21/2024
3.0.505 5,541 12/21/2024
3.0.504 1,757 12/21/2024
3.0.503 4,275 12/21/2024
3.0.502 158 12/21/2024
3.0.501 2,598 12/20/2024
3.0.500 2,645 12/20/2024
3.0.499 5,199 12/20/2024
3.0.498 1,593 12/20/2024
3.0.497 771 12/20/2024
3.0.496 8,264 12/19/2024
3.0.495 738 12/19/2024
3.0.494 1,216 12/18/2024
3.0.493 664 12/18/2024
3.0.492 12,660 12/17/2024
3.0.491 441 12/17/2024
3.0.490 937 12/17/2024
3.0.489 1,231 12/17/2024
3.0.488 1,320 12/16/2024
3.0.487 433 12/16/2024
3.0.486 136 12/16/2024
3.0.485 11,248 12/9/2024
3.0.484 2,710 12/9/2024
3.0.483 5,883 12/9/2024
3.0.482 1,103 12/9/2024
3.0.480 11,835 12/6/2024
3.0.479 6,348 12/6/2024
3.0.478 2,069 12/6/2024
3.0.477 1,202 12/6/2024
3.0.476 811 12/6/2024
3.0.475 2,491 12/6/2024
3.0.474 7,689 12/6/2024
3.0.473 9,965 12/5/2024
3.0.472 1,188 12/5/2024
3.0.471 5,818 12/5/2024
3.0.470 2,541 12/5/2024
3.0.469 817 12/5/2024
3.0.468 5,519 12/4/2024
3.0.467 2,977 12/4/2024
3.0.466 3,136 12/4/2024
3.0.465 8,318 12/3/2024
3.0.464 358 12/3/2024
3.0.463 1,961 12/3/2024
3.0.462 6,766 12/3/2024
3.0.461 1,382 12/3/2024
3.0.460 4,267 12/3/2024
3.0.459 148 12/3/2024
3.0.458 923 12/3/2024
3.0.457 9,466 12/2/2024
3.0.456 4,142 12/2/2024
3.0.455 1,281 12/2/2024
3.0.454 1,107 12/1/2024
3.0.453 5,566 12/1/2024
3.0.452 6,021 12/1/2024
3.0.451 6,265 11/29/2024
3.0.450 10,368 11/20/2024
3.0.449 6,671 11/20/2024
3.0.448 540 11/20/2024
3.0.447 2,330 11/20/2024
3.0.445 2,935 11/19/2024
3.0.444 2,476 11/19/2024
3.0.443 6,830 11/19/2024
3.0.442 4,972 11/19/2024
3.0.441 145 11/19/2024
3.0.439 13,426 11/14/2024
3.0.438 5,256 11/14/2024
3.0.437 2,215 11/14/2024
3.0.436 4,150 11/14/2024
3.0.435 439 11/14/2024
3.0.434 170 11/14/2024
3.0.433 1,481 11/14/2024
3.0.432 148 11/14/2024
2.1.431 19,872 11/13/2024
2.1.430 3,793 11/13/2024
2.1.429 3,015 11/12/2024
2.1.428 13,830 11/9/2024
2.1.427 2,924 11/9/2024
2.1.426 3,169 11/8/2024
2.1.425 1,416 11/8/2024
2.1.424 1,607 11/8/2024
2.1.423 1,887 11/8/2024
2.1.422 2,128 11/8/2024
2.1.421 5,638 11/8/2024
2.1.420 21,573 11/1/2024
2.1.419 9,911 10/29/2024
2.1.418 3,903 10/29/2024
2.1.417 5,185 10/29/2024
2.1.416 9,753 10/28/2024
2.1.415 9,828 10/26/2024
2.1.414 11,814 10/22/2024
2.1.413 3,541 10/22/2024
2.1.412 2,102 10/22/2024
2.1.411 10,875 10/17/2024
2.1.410 9,624 10/15/2024
2.1.409 1,861 10/14/2024
2.1.408 9,968 10/11/2024
2.1.407 2,794 10/11/2024
2.1.406 1,812 10/11/2024
2.1.404 14,861 10/8/2024
2.1.403 6,148 10/8/2024
2.1.402 18,667 10/3/2024
2.1.401 1,391 10/3/2024
2.1.400 3,159 10/3/2024
2.1.399 11,867 10/2/2024
2.1.398 3,976 10/2/2024
2.1.397 12,366 10/1/2024
2.1.396 1,110 10/1/2024
2.1.395 6,127 9/30/2024
2.1.394 9,554 9/29/2024
2.1.393 3,143 9/29/2024
2.1.392 2,979 9/29/2024
2.1.391 8,437 9/27/2024
2.1.390 5,714 9/27/2024
2.1.389 229 9/27/2024
2.1.388 906 9/27/2024
2.1.387 2,178 9/27/2024
2.1.386 165 9/27/2024
2.1.385 12,641 9/26/2024
2.1.384 11,009 9/26/2024
2.1.383 4,882 9/26/2024
2.1.382 13,945 9/23/2024
2.1.381 3,437 9/23/2024
2.1.380 5,988 9/23/2024
2.1.379 6,016 9/23/2024
2.1.378 4,533 9/23/2024
2.1.377 940 9/23/2024
2.1.376 2,282 9/23/2024
2.1.375 150 9/23/2024
2.1.374 16,869 9/17/2024
2.1.373 834 9/17/2024
2.1.372 3,273 9/17/2024
2.1.371 3,371 9/17/2024
2.1.370 3,737 9/17/2024
2.1.369 5,053 9/17/2024
2.1.368 5,706 9/17/2024
2.1.367 18,577 9/16/2024
2.1.366 9,595 9/12/2024
2.1.365 3,576 9/11/2024
2.1.363 10,256 9/11/2024
2.1.362 20,137 9/10/2024
2.1.361 928 9/10/2024
2.1.360 1,221 9/10/2024
2.1.359 1,135 9/10/2024
2.1.358 4,324 9/9/2024
2.1.357 1,731 9/9/2024
2.1.356 7,292 9/9/2024
2.1.355 2,079 9/9/2024
2.1.354 8,180 9/9/2024
2.1.353 15,777 9/7/2024
2.1.352 11,776 9/6/2024
2.1.351 6,071 9/5/2024
2.1.350 6,265 9/5/2024
2.1.349 659 9/5/2024
2.1.348 196 9/5/2024
2.1.347 10,714 9/5/2024
2.1.346 1,222 9/4/2024
2.1.345 16,118 9/3/2024
2.1.344 7,181 9/3/2024
2.1.343 5,336 9/3/2024
2.1.342 10,228 8/29/2024
2.1.341 8,653 8/26/2024
2.1.340 9,128 8/21/2024
2.1.339 3,434 8/21/2024
2.1.338 1,936 8/20/2024
2.1.337 7,070 8/20/2024
2.1.336 184 8/20/2024
2.1.335 175 8/20/2024
2.1.334 11,601 8/19/2024
2.1.333 11,266 8/15/2024
2.1.332 11,197 8/13/2024
2.1.331 9,322 8/6/2024
2.1.330 5,285 8/6/2024
2.1.329 7,963 8/1/2024
2.1.328 1,649 8/1/2024
2.1.327 785 8/1/2024
2.1.326 11,533 7/25/2024
2.1.325 2,411 7/25/2024
2.1.324 2,072 7/25/2024
2.1.323 362 7/24/2024
2.1.322 925 7/24/2024
2.1.321 486 7/24/2024
2.1.320 11,746 7/20/2024
2.1.319 14,735 7/14/2024
2.1.318 5,417 7/14/2024
2.1.317 8,177 7/10/2024
2.1.316 3,595 7/10/2024
2.1.315 3,125 7/10/2024
2.1.314 1,837 7/10/2024
2.1.313 1,290 7/10/2024
2.1.312 427 7/10/2024
2.1.311 3,226 7/10/2024
2.1.310 1,539 7/9/2024
2.1.308 3,257 7/9/2024
2.1.307 159 7/9/2024
2.1.306 3,577 7/9/2024
2.1.305 8,400 7/9/2024
2.1.304 6,759 7/9/2024
2.1.303 3,317 7/9/2024
2.1.302 160 7/9/2024
2.1.301 11,380 7/9/2024
2.1.300 7,351 7/8/2024
2.1.299 482 7/8/2024
2.1.298 157 7/8/2024
2.1.297 170 7/8/2024
2.1.296 10,066 7/8/2024
2.1.295 1,959 7/7/2024
2.1.294 6,072 7/7/2024
2.1.293 179 7/7/2024
2.1.292 1,761 7/7/2024
2.1.291 3,640 7/7/2024
2.1.290 12,256 7/3/2024
2.1.289 3,939 7/3/2024
2.1.288 3,534 7/3/2024
2.1.287 1,105 7/3/2024
2.1.286 6,899 7/2/2024
2.1.283 4,181 6/30/2024
2.1.282 2,838 6/28/2024
2.1.281 329 6/28/2024
2.1.279 9,169 6/22/2024
2.1.278 10,624 6/15/2024
2.1.277 1,406 6/15/2024
2.1.276 8,083 6/14/2024
2.1.275 12,787 6/1/2024
2.1.274 2,139 6/1/2024
2.1.273 1,320 6/1/2024
2.1.272 11,291 5/31/2024
2.1.271 7,063 5/29/2024
2.1.270 8,046 5/28/2024
2.1.269 4,544 5/27/2024
2.1.268 8,324 5/26/2024
2.1.267 8,344 5/26/2024
2.1.266 430 5/26/2024
2.1.265 3,111 5/25/2024
2.1.264 2,177 5/25/2024
2.1.263 2,043 5/25/2024
2.1.262 167 5/25/2024
2.1.261 1,648 5/25/2024
2.1.260 172 5/25/2024
2.1.259 5,894 5/25/2024
2.1.258 164 5/25/2024
2.1.257 10,422 5/23/2024
2.1.256 4,222 5/23/2024
2.1.255 3,078 5/22/2024
2.1.254 2,246 5/22/2024
2.1.253 1,001 5/22/2024
2.1.252 166 5/22/2024
2.1.251 165 5/22/2024
2.1.250 4,358 5/22/2024
2.1.249 11,073 5/18/2024
2.1.248 2,330 5/17/2024
2.1.247 4,069 5/17/2024
2.1.246 6,294 5/16/2024
2.1.245 1,643 5/15/2024
2.1.244 4,689 5/15/2024
2.1.243 9,466 5/12/2024
2.1.242 5,173 5/3/2024
2.1.241 5,741 4/29/2024
2.1.240 3,300 4/29/2024
2.1.239 6,304 4/28/2024
2.1.238 1,059 4/28/2024
2.1.237 1,230 4/28/2024
2.1.236 4,767 4/28/2024
2.1.235 735 4/28/2024
2.1.234 6,310 4/28/2024
2.1.233 1,423 4/28/2024
2.1.232 5,993 4/27/2024
2.1.231 175 4/27/2024
2.1.230 11,894 4/19/2024
2.1.229 7,368 4/18/2024
2.1.228 7,638 4/12/2024
2.1.227 1,243 4/12/2024
2.1.226 1,978 4/12/2024
2.1.225 1,621 4/12/2024
2.1.224 1,107 4/12/2024
2.1.223 1,641 4/12/2024
2.1.222 713 4/12/2024
2.1.221 180 4/12/2024
2.1.220 4,170 4/10/2024
2.1.219 18,891 4/10/2024
2.1.218 825 4/10/2024
2.1.217 9,151 4/2/2024
2.1.216 1,609 4/1/2024
2.1.215 8,824 3/29/2024
2.1.214 6,420 3/25/2024
2.1.213 763 3/25/2024
2.1.212 8,896 3/20/2024
2.1.211 6,147 3/19/2024
2.1.210 3,682 3/19/2024
2.1.209 4,006 3/18/2024
2.1.208 8,874 3/15/2024
2.1.207 6,020 3/13/2024
2.1.206 2,285 3/13/2024
2.1.205 3,099 3/13/2024
2.1.204 231 3/13/2024
2.1.203 220 3/13/2024
2.1.202 1,970 3/13/2024
2.1.201 215 3/13/2024
2.1.200 4,317 3/12/2024
2.1.199 5,660 3/12/2024
2.1.198 7,166 3/11/2024
2.1.197 5,089 3/11/2024
2.1.196 5,455 3/10/2024
2.1.195 7,051 3/8/2024
2.1.194 637 3/8/2024
2.1.193 5,016 3/8/2024
2.1.192 6,446 3/6/2024
2.1.191 6,433 3/4/2024
2.1.190 3,576 3/4/2024
2.1.189 7,219 3/2/2024
2.1.188 1,863 3/2/2024
2.1.187 2,358 3/2/2024
2.1.186 1,319 3/2/2024
2.1.185 913 3/2/2024
2.1.184 4,933 2/29/2024
2.1.183 1,617 2/29/2024
2.1.182 2,435 2/29/2024
2.1.181 4,642 2/26/2024
2.1.180 17,845 2/25/2024
2.1.179 2,202 2/25/2024
2.1.178 6,922 2/23/2024
2.1.177 6,777 2/22/2024
2.1.176 1,944 2/22/2024
2.1.175 2,318 2/21/2024
2.1.174 3,775 2/21/2024
2.1.173 3,316 2/21/2024
2.1.172 4,226 2/21/2024
2.1.171 1,775 2/21/2024
2.1.170 418 2/21/2024
2.1.169 3,791 2/21/2024
2.1.168 1,201 2/20/2024
2.1.167 274 2/20/2024
2.1.166 274 2/20/2024
2.1.165 5,129 2/20/2024
2.1.164 3,958 2/20/2024
2.1.163 3,719 2/20/2024
2.1.162 7,861 2/19/2024
2.1.161 6,167 2/17/2024
2.1.160 2,582 2/17/2024
2.1.159 1,847 2/16/2024
2.1.158 1,365 2/16/2024
2.1.157 2,241 2/16/2024
2.1.156 3,520 2/16/2024
2.1.155 4,111 2/16/2024
2.1.154 324 2/16/2024
2.1.153 1,975 2/16/2024
2.1.152 309 2/16/2024
2.1.151 303 2/16/2024
2.1.150 6,896 2/14/2024
2.1.149 2,913 2/13/2024
2.1.148 3,482 2/13/2024
2.1.147 4,252 2/13/2024
2.1.146 4,127 2/13/2024
2.1.145 5,639 2/12/2024
2.1.144 899 2/11/2024
2.1.143 6,131 2/11/2024
2.1.142 3,456 2/11/2024
2.1.141 7,234 2/10/2024
2.1.140 930 2/9/2024
2.1.139 6,504 2/9/2024
2.1.138 4,227 2/9/2024
2.1.137 1,120 2/8/2024
2.1.136 5,221 2/8/2024
2.1.135 2,141 2/8/2024
2.1.134 13,396 2/8/2024
2.1.133 381 2/8/2024
2.1.132 316 2/8/2024
2.1.131 5,994 2/7/2024
2.1.130 2,448 2/7/2024
2.1.129 4,134 2/7/2024
2.1.128 1,313 2/7/2024
2.1.127 1,222 2/6/2024
2.1.126 3,261 2/6/2024
2.1.125 349 2/6/2024
2.1.124 8,778 2/5/2024
2.1.123 5,614 2/4/2024
2.1.122 6,005 2/2/2024
2.1.121 7,071 1/31/2024
2.1.120 6,918 1/29/2024
2.1.119 4,296 1/29/2024
2.1.118 2,847 1/29/2024
2.1.117 4,491 1/28/2024
2.1.116 6,016 1/28/2024
2.1.115 3,390 1/28/2024
2.1.114 2,042 1/28/2024
2.1.113 2,683 1/27/2024
2.1.112 2,394 1/27/2024
2.1.111 6,298 1/27/2024
2.1.110 3,179 1/27/2024
2.1.109 7,481 1/27/2024
2.1.108 2,026 1/26/2024
2.1.107 2,492 1/26/2024
2.1.106 3,085 1/26/2024
2.1.105 5,813 1/26/2024
2.1.104 2,747 1/26/2024
2.1.103 1,581 1/26/2024
2.1.102 5,232 1/25/2024
2.1.101 4,066 1/25/2024
2.1.100 2,024 1/25/2024
2.1.99 6,559 1/25/2024
2.1.98 6,459 1/19/2024
2.1.97 6,562 1/15/2024
2.1.96 2,987 1/15/2024
2.1.95 2,330 1/15/2024
2.1.94 5,918 1/15/2024
2.1.93 6,066 1/15/2024
2.1.92 5,848 1/14/2024
2.1.91 7,158 1/13/2024
2.1.90 5,980 1/12/2024
2.1.89 5,878 1/11/2024
2.1.88 8,141 1/7/2024
2.1.87 6,485 1/5/2024
2.1.86 2,864 1/5/2024
2.1.85 3,787 1/5/2024
2.1.84 6,947 1/3/2024
2.1.83 4,246 1/1/2024
2.1.82 5,793 12/28/2023
2.1.81 2,293 12/28/2023
2.1.80 2,372 12/28/2023
2.1.79 5,184 12/27/2023
2.1.78 2,460 12/27/2023
2.1.77 372 12/27/2023
2.1.76 9,964 12/25/2023
2.1.75 5,447 12/25/2023
2.1.74 2,861 12/25/2023
2.1.73 832 12/25/2023
2.1.72 391 12/25/2023
2.1.71 7,971 12/24/2023
2.1.70 6,152 12/23/2023
2.1.69 3,343 12/23/2023
2.1.68 1,965 12/23/2023
2.1.67 4,319 12/23/2023
2.1.66 361 12/23/2023
2.1.65 9,446 12/19/2023
2.1.64 2,529 12/19/2023
2.1.63 6,302 12/12/2023
2.1.62 571 12/12/2023
2.1.61 3,090 12/11/2023
2.1.60 2,500 12/11/2023
2.1.59 1,365 12/11/2023
2.1.58 1,902 12/11/2023
2.1.57 997 12/10/2023
2.1.56 962 12/10/2023
2.1.55 2,033 12/10/2023
2.1.54 1,292 12/10/2023
2.1.53 9,249 12/10/2023
2.1.52 2,119 12/9/2023
2.1.51 1,199 12/9/2023
2.1.50 1,829 12/9/2023
2.1.49 2,770 12/9/2023
2.1.48 330 12/9/2023
2.1.47 1,470 12/9/2023
2.1.46 399 12/9/2023
2.1.45 3,183 12/9/2023
2.1.44 362 12/9/2023
2.1.43 5,172 12/9/2023
2.1.42 7,562 12/6/2023
2.1.41 1,359 12/6/2023
2.1.40 2,005 12/6/2023
2.1.39 4,477 12/5/2023
2.1.38 2,277 12/5/2023
2.1.37 1,274 12/5/2023
2.1.36 3,219 12/5/2023
2.1.35 337 12/5/2023
2.1.34 2,709 12/5/2023
2.1.33 341 12/5/2023
2.1.32 1,829 12/4/2023
2.1.31 1,708 12/4/2023
2.1.30 371 12/4/2023
2.1.29 9,864 12/4/2023
2.1.28 3,426 11/27/2023
2.1.27 1,556 11/26/2023
2.1.26 3,845 11/23/2023
2.1.25 3,300 11/23/2023
2.1.24 4,142 11/23/2023
2.1.23 345 11/23/2023
2.1.22 7,977 11/20/2023
2.1.21 3,851 11/20/2023
2.1.20 6,317 11/19/2023
2.1.19 3,354 11/19/2023
2.1.18 4,603 11/19/2023
2.1.17 1,245 11/18/2023
2.1.16 6,107 11/18/2023
2.1.15 1,418 11/18/2023
2.1.14 3,815 11/18/2023
2.1.13 809 11/18/2023
2.1.12 3,990 11/17/2023
2.1.11 3,360 11/17/2023
2.1.10 2,526 11/17/2023
2.1.9 500 11/17/2023
2.1.8 3,757 11/17/2023
2.1.7 2,310 11/17/2023
2.1.6 2,854 11/17/2023
2.1.5 2,055 11/17/2023
2.1.4 695 11/17/2023
2.1.3 3,728 11/16/2023
2.0.78 1,248 11/15/2023
2.0.77 370 11/15/2023
2.0.76 3,410 11/15/2023
2.0.2 355 11/16/2023
2.0.1 333 11/16/2023
1.0.75 4,766 11/13/2023
1.0.74 6,812 11/10/2023
1.0.73 5,212 11/9/2023
1.0.72 3,617 11/8/2023
1.0.71 5,469 11/7/2023
1.0.70 2,798 11/6/2023
1.0.69 3,410 11/3/2023
1.0.68 6,062 11/2/2023
1.0.67 3,990 11/1/2023
1.0.66 12,133 10/26/2023
1.0.65 7,387 10/19/2023
1.0.64 3,185 10/18/2023
1.0.63 3,165 10/17/2023
1.0.62 3,833 10/16/2023
1.0.61 6,617 10/13/2023
1.0.60 3,991 10/12/2023
1.0.59 12,627 9/18/2023
1.0.58 358 9/18/2023
1.0.57 8,475 9/14/2023
1.0.56 7,913 8/31/2023
1.0.55 3,938 8/30/2023
1.0.54 3,525 8/29/2023
1.0.53 3,428 8/28/2023
1.0.52 6,279 8/25/2023
1.0.51 3,660 8/24/2023
1.0.50 8,721 8/21/2023
1.0.49 3,626 8/18/2023
1.0.48 3,369 8/17/2023
1.0.47 5,881 8/16/2023
1.0.46 9,887 8/10/2023
1.0.45 3,470 8/9/2023
1.0.44 5,618 8/8/2023
1.0.43 4,851 8/7/2023
1.0.42 5,090 8/4/2023
1.0.41 9,456 7/13/2023
1.0.40 6,160 7/11/2023
1.0.39 3,928 7/10/2023
1.0.38 4,749 7/7/2023
1.0.37 448 7/7/2023
1.0.36 12,987 6/30/2023
1.0.35 6,741 6/28/2023
1.0.34 6,769 6/27/2023
1.0.33 7,831 6/26/2023
1.0.32 4,763 6/23/2023
1.0.31 9,614 6/21/2023
1.0.30 9,945 6/15/2023
1.0.29 4,056 6/14/2023
1.0.28 10,724 6/9/2023
1.0.27 4,578 6/8/2023
1.0.26 5,613 6/7/2023
1.0.25 6,328 6/6/2023
1.0.24 464 6/6/2023
1.0.23 5,428 6/5/2023
1.0.22 18,378 5/30/2023
1.0.21 21,007 5/29/2023
1.0.20 7,345 5/26/2023
1.0.19 8,505 5/25/2023
1.0.18 8,913 5/24/2023
1.0.17 6,119 5/24/2023
1.0.16 1,853 5/23/2023
1.0.15 1,786 5/23/2023
1.0.12 3,403 5/22/2023
1.0.11 20,488 5/16/2023
1.0.10 16,894 4/20/2023
1.0.9 16,320 4/3/2023
1.0.8 1,378 4/3/2023
1.0.7 2,681 3/23/2023
1.0.5 889 3/13/2023
1.0.4 621 3/11/2023
1.0.3 525 3/11/2023
1.0.2 522 3/11/2023
1.0.1 589 3/11/2023