Soenneker.Utils.AsyncSingleton 2.1.47

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

Install-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 95,978 9/3/2025
3.0.715 180 9/3/2025
3.0.714 60,272 8/11/2025
3.0.713 167 8/11/2025
3.0.712 108,605 7/1/2025
3.0.711 12,456 6/27/2025
3.0.710 1,635 6/27/2025
3.0.709 66,410 5/27/2025
3.0.708 1,162 5/27/2025
3.0.707 25,441 5/22/2025
3.0.705 39,076 5/7/2025
3.0.704 635 5/7/2025
3.0.703 23,903 5/5/2025
3.0.702 693 5/5/2025
3.0.701 206 5/5/2025
3.0.700 29,982 4/8/2025
3.0.699 7,428 4/8/2025
3.0.698 3,787 4/8/2025
3.0.697 5,275 4/8/2025
3.0.696 13,922 4/7/2025
3.0.695 4,941 4/7/2025
3.0.694 13,036 4/7/2025
3.0.693 11,986 4/7/2025
3.0.692 3,533 4/7/2025
3.0.691 3,337 4/6/2025
3.0.690 1,869 4/6/2025
3.0.689 335 4/6/2025
3.0.688 231 4/6/2025
3.0.687 4,842 4/6/2025
3.0.686 2,894 4/6/2025
3.0.685 177 4/6/2025
3.0.684 12,279 4/5/2025
3.0.683 2,005 4/5/2025
3.0.682 616 4/5/2025
3.0.681 185 4/5/2025
3.0.680 947 4/4/2025
3.0.679 341 4/4/2025
3.0.678 63,322 4/1/2025
3.0.677 16,918 3/31/2025
3.0.676 12,623 3/29/2025
3.0.675 16,671 3/25/2025
3.0.674 12,864 3/21/2025
3.0.673 23,566 3/15/2025
3.0.672 13,261 3/12/2025
3.0.671 1,212 3/12/2025
3.0.670 6,594 3/11/2025
3.0.669 322 3/11/2025
3.0.668 8,909 3/11/2025
3.0.667 8,376 3/11/2025
3.0.666 27,718 3/2/2025
3.0.665 3,019 3/2/2025
3.0.664 3,168 3/1/2025
3.0.663 5,231 3/1/2025
3.0.662 4,618 3/1/2025
3.0.661 3,308 3/1/2025
3.0.660 163 3/1/2025
3.0.659 5,081 3/1/2025
3.0.658 19,668 2/25/2025
3.0.657 4,469 2/25/2025
3.0.656 4,004 2/25/2025
3.0.655 4,986 2/24/2025
3.0.654 11,586 2/22/2025
3.0.653 18,728 2/22/2025
3.0.652 532 2/22/2025
3.0.651 5,288 2/21/2025
3.0.650 11,364 2/21/2025
3.0.649 14,883 2/19/2025
3.0.648 782 2/18/2025
3.0.647 2,825 2/18/2025
3.0.646 3,263 2/18/2025
3.0.645 8,398 2/18/2025
3.0.644 14,831 2/13/2025
3.0.643 16,796 2/12/2025
3.0.642 1,683 2/12/2025
3.0.641 2,902 2/12/2025
3.0.640 3,197 2/11/2025
3.0.639 3,262 2/11/2025
3.0.638 4,069 2/11/2025
3.0.637 6,137 2/11/2025
3.0.636 7,595 2/11/2025
3.0.635 9,971 2/10/2025
3.0.634 186 2/10/2025
3.0.633 12,841 2/9/2025
3.0.632 9,779 2/8/2025
3.0.631 1,836 2/8/2025
3.0.630 3,931 2/7/2025
3.0.629 4,860 2/7/2025
3.0.628 5,084 2/7/2025
3.0.627 439 2/7/2025
3.0.626 4,827 2/7/2025
3.0.625 172 2/7/2025
3.0.624 1,063 2/7/2025
3.0.623 26,214 2/5/2025
3.0.622 2,202 2/5/2025
3.0.621 3,946 2/5/2025
3.0.620 3,027 2/5/2025
3.0.619 30,002 1/28/2025
3.0.618 8,429 1/28/2025
3.0.617 462 1/27/2025
3.0.616 30,144 1/26/2025
3.0.615 2,794 1/26/2025
3.0.614 6,714 1/25/2025
3.0.613 9,248 1/25/2025
3.0.612 5,693 1/25/2025
3.0.611 3,195 1/24/2025
3.0.610 22,931 1/24/2025
3.0.609 7,552 1/24/2025
3.0.608 7,353 1/24/2025
3.0.607 6,059 1/23/2025
3.0.606 5,982 1/23/2025
3.0.605 17,514 1/21/2025
3.0.604 3,788 1/21/2025
3.0.603 8,719 1/21/2025
3.0.602 5,773 1/21/2025
3.0.601 8,337 1/21/2025
3.0.600 8,411 1/20/2025
3.0.599 611 1/20/2025
3.0.598 1,112 1/20/2025
3.0.597 8,309 1/20/2025
3.0.596 10,091 1/20/2025
3.0.595 1,211 1/20/2025
3.0.594 180 1/20/2025
3.0.593 1,135 1/20/2025
3.0.592 165 1/20/2025
3.0.591 26,250 1/19/2025
3.0.590 4,080 1/19/2025
3.0.589 4,122 1/18/2025
3.0.588 6,796 1/18/2025
3.0.587 2,657 1/18/2025
3.0.586 11,129 1/17/2025
3.0.585 2,046 1/17/2025
3.0.584 5,511 1/17/2025
3.0.583 4,961 1/16/2025
3.0.582 29,793 1/16/2025
3.0.581 2,643 1/16/2025
3.0.580 5,341 1/16/2025
3.0.579 6,694 1/15/2025
3.0.578 3,987 1/15/2025
3.0.577 7,371 1/15/2025
3.0.576 11,689 1/15/2025
3.0.575 2,028 1/15/2025
3.0.574 6,290 1/15/2025
3.0.573 587 1/15/2025
3.0.572 5,898 1/14/2025
3.0.571 2,779 1/14/2025
3.0.570 6,387 1/14/2025
3.0.569 25,224 1/13/2025
3.0.568 8,836 1/12/2025
3.0.567 13,283 1/11/2025
3.0.566 3,668 1/11/2025
3.0.565 1,727 1/11/2025
3.0.564 1,471 1/10/2025
3.0.563 7,500 1/10/2025
3.0.562 671 1/10/2025
3.0.561 1,575 1/10/2025
3.0.560 156 1/10/2025
3.0.559 155 1/10/2025
3.0.558 16,315 1/8/2025
3.0.557 486 1/8/2025
3.0.556 6,667 1/3/2025
3.0.555 5,284 1/3/2025
3.0.554 7,220 1/2/2025
3.0.553 1,204 1/2/2025
3.0.552 209 1/2/2025
3.0.551 4,185 1/2/2025
3.0.550 9,099 1/1/2025
3.0.549 1,289 1/1/2025
3.0.548 2,050 1/1/2025
3.0.547 2,365 1/1/2025
3.0.546 179 1/1/2025
3.0.545 1,037 12/31/2024
3.0.544 174 12/31/2024
3.0.543 376 12/31/2024
3.0.542 12,821 12/31/2024
3.0.541 13,778 12/31/2024
3.0.540 5,473 12/31/2024
3.0.539 6,796 12/31/2024
3.0.538 4,956 12/31/2024
3.0.537 2,099 12/31/2024
3.0.536 176 12/31/2024
3.0.535 8,405 12/31/2024
3.0.534 26,037 12/27/2024
3.0.533 4,835 12/27/2024
3.0.532 17,552 12/24/2024
3.0.531 1,087 12/24/2024
3.0.530 2,463 12/24/2024
3.0.529 437 12/24/2024
3.0.528 485 12/24/2024
3.0.527 3,013 12/23/2024
3.0.526 6,243 12/23/2024
3.0.525 2,981 12/23/2024
3.0.524 2,814 12/23/2024
3.0.523 3,904 12/23/2024
3.0.522 2,009 12/23/2024
3.0.521 5,023 12/22/2024
3.0.520 184 12/22/2024
3.0.519 21,141 12/22/2024
3.0.518 200 12/22/2024
3.0.517 16,371 12/22/2024
3.0.516 167 12/22/2024
3.0.515 7,643 12/22/2024
3.0.514 185 12/22/2024
3.0.513 1,493 12/21/2024
3.0.512 473 12/21/2024
3.0.511 164 12/21/2024
3.0.510 14,068 12/21/2024
3.0.509 1,479 12/21/2024
3.0.508 157 12/21/2024
3.0.507 2,381 12/21/2024
3.0.506 176 12/21/2024
3.0.505 7,951 12/21/2024
3.0.504 2,610 12/21/2024
3.0.503 6,300 12/21/2024
3.0.502 172 12/21/2024
3.0.501 3,907 12/20/2024
3.0.500 3,824 12/20/2024
3.0.499 7,592 12/20/2024
3.0.498 2,306 12/20/2024
3.0.497 1,081 12/20/2024
3.0.496 13,259 12/19/2024
3.0.495 1,034 12/19/2024
3.0.494 1,774 12/18/2024
3.0.493 949 12/18/2024
3.0.492 18,733 12/17/2024
3.0.491 557 12/17/2024
3.0.490 1,247 12/17/2024
3.0.489 1,609 12/17/2024
3.0.488 1,809 12/16/2024
3.0.487 577 12/16/2024
3.0.486 148 12/16/2024
3.0.485 16,535 12/9/2024
3.0.484 4,036 12/9/2024
3.0.483 8,714 12/9/2024
3.0.482 1,632 12/9/2024
3.0.480 17,677 12/6/2024
3.0.479 9,294 12/6/2024
3.0.478 3,061 12/6/2024
3.0.477 1,676 12/6/2024
3.0.476 1,124 12/6/2024
3.0.475 3,689 12/6/2024
3.0.474 11,211 12/6/2024
3.0.473 14,432 12/5/2024
3.0.472 1,717 12/5/2024
3.0.471 8,689 12/5/2024
3.0.470 3,966 12/5/2024
3.0.469 1,136 12/5/2024
3.0.468 7,999 12/4/2024
3.0.467 4,553 12/4/2024
3.0.466 4,755 12/4/2024
3.0.465 12,152 12/3/2024
3.0.464 510 12/3/2024
3.0.463 2,749 12/3/2024
3.0.462 10,545 12/3/2024
3.0.461 2,019 12/3/2024
3.0.460 6,553 12/3/2024
3.0.459 162 12/3/2024
3.0.458 1,326 12/3/2024
3.0.457 14,086 12/2/2024
3.0.456 6,307 12/2/2024
3.0.455 1,866 12/2/2024
3.0.454 1,599 12/1/2024
3.0.453 8,579 12/1/2024
3.0.452 8,936 12/1/2024
3.0.451 9,361 11/29/2024
3.0.450 14,713 11/20/2024
3.0.449 9,702 11/20/2024
3.0.448 720 11/20/2024
3.0.447 3,353 11/20/2024
3.0.445 4,227 11/19/2024
3.0.444 3,519 11/19/2024
3.0.443 9,730 11/19/2024
3.0.442 7,031 11/19/2024
3.0.441 165 11/19/2024
3.0.439 19,720 11/14/2024
3.0.438 7,581 11/14/2024
3.0.437 3,160 11/14/2024
3.0.436 5,784 11/14/2024
3.0.435 556 11/14/2024
3.0.434 186 11/14/2024
3.0.433 2,042 11/14/2024
3.0.432 163 11/14/2024
2.1.431 28,095 11/13/2024
2.1.430 5,444 11/13/2024
2.1.429 4,256 11/12/2024
2.1.428 19,611 11/9/2024
2.1.427 4,169 11/9/2024
2.1.426 4,352 11/8/2024
2.1.425 2,012 11/8/2024
2.1.424 2,241 11/8/2024
2.1.423 2,598 11/8/2024
2.1.422 2,971 11/8/2024
2.1.421 7,917 11/8/2024
2.1.420 30,854 11/1/2024
2.1.419 14,249 10/29/2024
2.1.418 5,424 10/29/2024
2.1.417 7,421 10/29/2024
2.1.416 13,921 10/28/2024
2.1.415 13,842 10/26/2024
2.1.414 15,629 10/22/2024
2.1.413 5,181 10/22/2024
2.1.412 2,893 10/22/2024
2.1.411 15,687 10/17/2024
2.1.410 13,969 10/15/2024
2.1.409 2,573 10/14/2024
2.1.408 14,366 10/11/2024
2.1.407 4,019 10/11/2024
2.1.406 2,626 10/11/2024
2.1.404 21,358 10/8/2024
2.1.403 8,528 10/8/2024
2.1.402 26,381 10/3/2024
2.1.401 1,893 10/3/2024
2.1.400 4,430 10/3/2024
2.1.399 17,141 10/2/2024
2.1.398 5,648 10/2/2024
2.1.397 17,575 10/1/2024
2.1.396 1,594 10/1/2024
2.1.395 8,697 9/30/2024
2.1.394 13,694 9/29/2024
2.1.393 4,473 9/29/2024
2.1.392 4,171 9/29/2024
2.1.391 11,793 9/27/2024
2.1.390 8,054 9/27/2024
2.1.389 267 9/27/2024
2.1.388 1,200 9/27/2024
2.1.387 3,093 9/27/2024
2.1.386 181 9/27/2024
2.1.385 17,892 9/26/2024
2.1.384 15,751 9/26/2024
2.1.383 6,863 9/26/2024
2.1.382 19,537 9/23/2024
2.1.381 4,764 9/23/2024
2.1.380 8,455 9/23/2024
2.1.379 8,322 9/23/2024
2.1.378 6,405 9/23/2024
2.1.377 1,246 9/23/2024
2.1.376 3,279 9/23/2024
2.1.375 172 9/23/2024
2.1.374 23,337 9/17/2024
2.1.373 1,066 9/17/2024
2.1.372 4,373 9/17/2024
2.1.371 4,627 9/17/2024
2.1.370 5,044 9/17/2024
2.1.369 7,055 9/17/2024
2.1.368 7,727 9/17/2024
2.1.367 25,443 9/16/2024
2.1.366 13,034 9/12/2024
2.1.365 4,988 9/11/2024
2.1.363 13,936 9/11/2024
2.1.362 27,171 9/10/2024
2.1.361 1,136 9/10/2024
2.1.360 1,659 9/10/2024
2.1.359 1,465 9/10/2024
2.1.358 5,778 9/9/2024
2.1.357 2,363 9/9/2024
2.1.356 9,677 9/9/2024
2.1.355 2,711 9/9/2024
2.1.354 11,024 9/9/2024
2.1.353 21,343 9/7/2024
2.1.352 16,015 9/6/2024
2.1.351 8,309 9/5/2024
2.1.350 8,313 9/5/2024
2.1.349 864 9/5/2024
2.1.348 211 9/5/2024
2.1.347 14,429 9/5/2024
2.1.346 1,631 9/4/2024
2.1.345 22,003 9/3/2024
2.1.344 10,003 9/3/2024
2.1.343 7,490 9/3/2024
2.1.342 14,267 8/29/2024
2.1.341 11,944 8/26/2024
2.1.340 12,672 8/21/2024
2.1.339 4,709 8/21/2024
2.1.338 2,740 8/20/2024
2.1.337 9,569 8/20/2024
2.1.336 201 8/20/2024
2.1.335 191 8/20/2024
2.1.334 16,073 8/19/2024
2.1.333 15,490 8/15/2024
2.1.332 15,509 8/13/2024
2.1.331 12,811 8/6/2024
2.1.330 7,432 8/6/2024
2.1.329 11,336 8/1/2024
2.1.328 2,344 8/1/2024
2.1.327 1,070 8/1/2024
2.1.326 16,345 7/25/2024
2.1.325 3,424 7/25/2024
2.1.324 2,953 7/25/2024
2.1.323 445 7/24/2024
2.1.322 1,294 7/24/2024
2.1.321 619 7/24/2024
2.1.320 16,587 7/20/2024
2.1.319 20,689 7/14/2024
2.1.318 7,677 7/14/2024
2.1.317 11,207 7/10/2024
2.1.316 4,911 7/10/2024
2.1.315 4,402 7/10/2024
2.1.314 2,503 7/10/2024
2.1.313 1,746 7/10/2024
2.1.312 543 7/10/2024
2.1.311 4,404 7/10/2024
2.1.310 2,137 7/9/2024
2.1.308 4,424 7/9/2024
2.1.307 177 7/9/2024
2.1.306 4,905 7/9/2024
2.1.305 11,192 7/9/2024
2.1.304 9,754 7/9/2024
2.1.303 4,577 7/9/2024
2.1.302 175 7/9/2024
2.1.301 12,486 7/9/2024
2.1.300 10,348 7/8/2024
2.1.299 592 7/8/2024
2.1.298 169 7/8/2024
2.1.297 185 7/8/2024
2.1.296 14,077 7/8/2024
2.1.295 2,760 7/7/2024
2.1.294 8,954 7/7/2024
2.1.293 195 7/7/2024
2.1.292 2,400 7/7/2024
2.1.291 5,141 7/7/2024
2.1.290 17,562 7/3/2024
2.1.289 5,675 7/3/2024
2.1.288 5,010 7/3/2024
2.1.287 1,478 7/3/2024
2.1.286 9,849 7/2/2024
2.1.283 6,032 6/30/2024
2.1.282 4,025 6/28/2024
2.1.281 413 6/28/2024
2.1.279 12,768 6/22/2024
2.1.278 14,609 6/15/2024
2.1.277 1,882 6/15/2024
2.1.276 11,128 6/14/2024
2.1.275 17,847 6/1/2024
2.1.274 2,910 6/1/2024
2.1.273 1,786 6/1/2024
2.1.272 15,758 5/31/2024
2.1.271 9,710 5/29/2024
2.1.270 11,067 5/28/2024
2.1.269 6,300 5/27/2024
2.1.268 11,491 5/26/2024
2.1.267 11,451 5/26/2024
2.1.266 545 5/26/2024
2.1.265 4,182 5/25/2024
2.1.264 2,939 5/25/2024
2.1.263 2,752 5/25/2024
2.1.262 183 5/25/2024
2.1.261 2,263 5/25/2024
2.1.260 185 5/25/2024
2.1.259 8,067 5/25/2024
2.1.258 177 5/25/2024
2.1.257 14,213 5/23/2024
2.1.256 5,803 5/23/2024
2.1.255 4,115 5/22/2024
2.1.254 3,028 5/22/2024
2.1.253 1,226 5/22/2024
2.1.252 182 5/22/2024
2.1.251 182 5/22/2024
2.1.250 6,018 5/22/2024
2.1.249 15,298 5/18/2024
2.1.248 3,174 5/17/2024
2.1.247 5,622 5/17/2024
2.1.246 8,556 5/16/2024
2.1.245 2,236 5/15/2024
2.1.244 6,348 5/15/2024
2.1.243 13,284 5/12/2024
2.1.242 7,111 5/3/2024
2.1.241 7,931 4/29/2024
2.1.240 4,377 4/29/2024
2.1.239 8,575 4/28/2024
2.1.238 1,390 4/28/2024
2.1.237 1,622 4/28/2024
2.1.236 6,513 4/28/2024
2.1.235 911 4/28/2024
2.1.234 8,436 4/28/2024
2.1.233 1,811 4/28/2024
2.1.232 7,978 4/27/2024
2.1.231 192 4/27/2024
2.1.230 16,026 4/19/2024
2.1.229 9,979 4/18/2024
2.1.228 10,344 4/12/2024
2.1.227 1,626 4/12/2024
2.1.226 2,619 4/12/2024
2.1.225 2,139 4/12/2024
2.1.224 1,516 4/12/2024
2.1.223 2,205 4/12/2024
2.1.222 822 4/12/2024
2.1.221 199 4/12/2024
2.1.220 5,786 4/10/2024
2.1.219 24,712 4/10/2024
2.1.218 1,054 4/10/2024
2.1.217 12,402 4/2/2024
2.1.216 2,196 4/1/2024
2.1.215 11,873 3/29/2024
2.1.214 8,663 3/25/2024
2.1.213 972 3/25/2024
2.1.212 11,948 3/20/2024
2.1.211 8,163 3/19/2024
2.1.210 5,021 3/19/2024
2.1.209 5,446 3/18/2024
2.1.208 11,718 3/15/2024
2.1.207 8,054 3/13/2024
2.1.206 3,098 3/13/2024
2.1.205 4,033 3/13/2024
2.1.204 251 3/13/2024
2.1.203 238 3/13/2024
2.1.202 2,664 3/13/2024
2.1.201 232 3/13/2024
2.1.200 5,754 3/12/2024
2.1.199 7,395 3/12/2024
2.1.198 9,656 3/11/2024
2.1.197 6,742 3/11/2024
2.1.196 7,324 3/10/2024
2.1.195 9,302 3/8/2024
2.1.194 844 3/8/2024
2.1.193 6,622 3/8/2024
2.1.192 8,628 3/6/2024
2.1.191 8,537 3/4/2024
2.1.190 4,735 3/4/2024
2.1.189 9,485 3/2/2024
2.1.188 2,397 3/2/2024
2.1.187 3,079 3/2/2024
2.1.186 1,726 3/2/2024
2.1.185 1,173 3/2/2024
2.1.184 6,523 2/29/2024
2.1.183 2,104 2/29/2024
2.1.182 3,241 2/29/2024
2.1.181 6,131 2/26/2024
2.1.180 23,520 2/25/2024
2.1.179 2,778 2/25/2024
2.1.178 9,308 2/23/2024
2.1.177 9,013 2/22/2024
2.1.176 2,520 2/22/2024
2.1.175 3,074 2/21/2024
2.1.174 4,926 2/21/2024
2.1.173 4,412 2/21/2024
2.1.172 5,595 2/21/2024
2.1.171 2,382 2/21/2024
2.1.170 457 2/21/2024
2.1.169 4,971 2/21/2024
2.1.168 1,651 2/20/2024
2.1.167 292 2/20/2024
2.1.166 292 2/20/2024
2.1.165 6,682 2/20/2024
2.1.164 5,186 2/20/2024
2.1.163 4,876 2/20/2024
2.1.162 10,289 2/19/2024
2.1.161 8,048 2/17/2024
2.1.160 3,301 2/17/2024
2.1.159 2,467 2/16/2024
2.1.158 1,752 2/16/2024
2.1.157 3,029 2/16/2024
2.1.156 4,419 2/16/2024
2.1.155 5,265 2/16/2024
2.1.154 341 2/16/2024
2.1.153 2,645 2/16/2024
2.1.152 323 2/16/2024
2.1.151 321 2/16/2024
2.1.150 8,961 2/14/2024
2.1.149 3,688 2/13/2024
2.1.148 4,442 2/13/2024
2.1.147 5,624 2/13/2024
2.1.146 5,418 2/13/2024
2.1.145 7,429 2/12/2024
2.1.144 1,150 2/11/2024
2.1.143 7,932 2/11/2024
2.1.142 4,381 2/11/2024
2.1.141 9,261 2/10/2024
2.1.140 1,169 2/9/2024
2.1.139 8,362 2/9/2024
2.1.138 5,509 2/9/2024
2.1.137 1,401 2/8/2024
2.1.136 6,793 2/8/2024
2.1.135 2,761 2/8/2024
2.1.134 15,955 2/8/2024
2.1.133 401 2/8/2024
2.1.132 334 2/8/2024
2.1.131 7,647 2/7/2024
2.1.130 3,112 2/7/2024
2.1.129 5,274 2/7/2024
2.1.128 1,698 2/7/2024
2.1.127 1,463 2/6/2024
2.1.126 4,279 2/6/2024
2.1.125 365 2/6/2024
2.1.124 11,169 2/5/2024
2.1.123 7,176 2/4/2024
2.1.122 7,657 2/2/2024
2.1.121 8,975 1/31/2024
2.1.120 8,771 1/29/2024
2.1.119 5,488 1/29/2024
2.1.118 3,691 1/29/2024
2.1.117 5,594 1/28/2024
2.1.116 7,638 1/28/2024
2.1.115 4,303 1/28/2024
2.1.114 2,660 1/28/2024
2.1.113 3,241 1/27/2024
2.1.112 3,067 1/27/2024
2.1.111 7,904 1/27/2024
2.1.110 4,182 1/27/2024
2.1.109 9,272 1/27/2024
2.1.108 2,576 1/26/2024
2.1.107 3,167 1/26/2024
2.1.106 3,851 1/26/2024
2.1.105 7,245 1/26/2024
2.1.104 3,427 1/26/2024
2.1.103 2,000 1/26/2024
2.1.102 6,689 1/25/2024
2.1.101 5,296 1/25/2024
2.1.100 2,619 1/25/2024
2.1.99 8,121 1/25/2024
2.1.98 8,317 1/19/2024
2.1.97 8,134 1/15/2024
2.1.96 3,647 1/15/2024
2.1.95 2,999 1/15/2024
2.1.94 7,398 1/15/2024
2.1.93 7,610 1/15/2024
2.1.92 7,288 1/14/2024
2.1.91 8,987 1/13/2024
2.1.90 7,350 1/12/2024
2.1.89 7,368 1/11/2024
2.1.88 10,109 1/7/2024
2.1.87 8,117 1/5/2024
2.1.86 3,542 1/5/2024
2.1.85 4,781 1/5/2024
2.1.84 8,687 1/3/2024
2.1.83 5,269 1/1/2024
2.1.82 7,172 12/28/2023
2.1.81 2,822 12/28/2023
2.1.80 3,031 12/28/2023
2.1.79 6,438 12/27/2023
2.1.78 3,064 12/27/2023
2.1.77 384 12/27/2023
2.1.76 12,380 12/25/2023
2.1.75 6,690 12/25/2023
2.1.74 3,546 12/25/2023
2.1.73 1,047 12/25/2023
2.1.72 407 12/25/2023
2.1.71 9,815 12/24/2023
2.1.70 7,652 12/23/2023
2.1.69 4,109 12/23/2023
2.1.68 2,553 12/23/2023
2.1.67 5,216 12/23/2023
2.1.66 376 12/23/2023
2.1.65 11,794 12/19/2023
2.1.64 3,093 12/19/2023
2.1.63 7,776 12/12/2023
2.1.62 648 12/12/2023
2.1.61 3,773 12/11/2023
2.1.60 3,009 12/11/2023
2.1.59 1,577 12/11/2023
2.1.58 2,321 12/11/2023
2.1.57 1,216 12/10/2023
2.1.56 1,178 12/10/2023
2.1.55 2,434 12/10/2023
2.1.54 1,516 12/10/2023
2.1.53 11,075 12/10/2023
2.1.52 2,580 12/9/2023
2.1.51 1,452 12/9/2023
2.1.50 2,217 12/9/2023
2.1.49 3,389 12/9/2023
2.1.48 345 12/9/2023
2.1.47 1,907 12/9/2023
2.1.46 416 12/9/2023
2.1.45 3,748 12/9/2023
2.1.44 377 12/9/2023
2.1.43 6,328 12/9/2023
2.1.42 9,279 12/6/2023
2.1.41 1,624 12/6/2023
2.1.40 2,441 12/6/2023
2.1.39 5,536 12/5/2023
2.1.38 2,789 12/5/2023
2.1.37 1,580 12/5/2023
2.1.36 4,006 12/5/2023
2.1.35 356 12/5/2023
2.1.34 3,405 12/5/2023
2.1.33 357 12/5/2023
2.1.32 2,344 12/4/2023
2.1.31 1,998 12/4/2023
2.1.30 387 12/4/2023
2.1.29 12,273 12/4/2023
2.1.28 4,400 11/27/2023
2.1.27 1,938 11/26/2023
2.1.26 4,799 11/23/2023
2.1.25 4,158 11/23/2023
2.1.24 5,162 11/23/2023
2.1.23 358 11/23/2023
2.1.22 9,964 11/20/2023
2.1.21 4,810 11/20/2023
2.1.20 8,185 11/19/2023
2.1.19 4,245 11/19/2023
2.1.18 5,794 11/19/2023
2.1.17 1,554 11/18/2023
2.1.16 7,906 11/18/2023
2.1.15 1,662 11/18/2023
2.1.14 4,830 11/18/2023
2.1.13 891 11/18/2023
2.1.12 5,047 11/17/2023
2.1.11 4,243 11/17/2023
2.1.10 3,306 11/17/2023
2.1.9 580 11/17/2023
2.1.8 4,644 11/17/2023
2.1.7 2,948 11/17/2023
2.1.6 3,690 11/17/2023
2.1.5 2,836 11/17/2023
2.1.4 878 11/17/2023
2.1.3 4,700 11/16/2023
2.0.78 1,606 11/15/2023
2.0.77 384 11/15/2023
2.0.76 4,293 11/15/2023
2.0.2 368 11/16/2023
2.0.1 353 11/16/2023
1.0.75 6,169 11/13/2023
1.0.74 8,704 11/10/2023
1.0.73 6,425 11/9/2023
1.0.72 4,459 11/8/2023
1.0.71 6,648 11/7/2023
1.0.70 3,453 11/6/2023
1.0.69 4,271 11/3/2023
1.0.68 7,249 11/2/2023
1.0.67 5,015 11/1/2023
1.0.66 14,944 10/26/2023
1.0.65 8,994 10/19/2023
1.0.64 3,787 10/18/2023
1.0.63 3,898 10/17/2023
1.0.62 4,753 10/16/2023
1.0.61 7,793 10/13/2023
1.0.60 4,831 10/12/2023
1.0.59 15,749 9/18/2023
1.0.58 375 9/18/2023
1.0.57 10,205 9/14/2023
1.0.56 9,758 8/31/2023
1.0.55 4,741 8/30/2023
1.0.54 4,302 8/29/2023
1.0.53 4,180 8/28/2023
1.0.52 7,530 8/25/2023
1.0.51 4,477 8/24/2023
1.0.50 10,642 8/21/2023
1.0.49 4,437 8/18/2023
1.0.48 4,090 8/17/2023
1.0.47 6,897 8/16/2023
1.0.46 11,876 8/10/2023
1.0.45 4,147 8/9/2023
1.0.44 6,529 8/8/2023
1.0.43 5,888 8/7/2023
1.0.42 6,073 8/4/2023
1.0.41 11,356 7/13/2023
1.0.40 7,306 7/11/2023
1.0.39 4,798 7/10/2023
1.0.38 5,580 7/7/2023
1.0.37 467 7/7/2023
1.0.36 15,416 6/30/2023
1.0.35 7,961 6/28/2023
1.0.34 7,895 6/27/2023
1.0.33 8,998 6/26/2023
1.0.32 5,672 6/23/2023
1.0.31 11,113 6/21/2023
1.0.30 11,803 6/15/2023
1.0.29 4,746 6/14/2023
1.0.28 12,601 6/9/2023
1.0.27 5,332 6/8/2023
1.0.26 6,366 6/7/2023
1.0.25 7,287 6/6/2023
1.0.24 483 6/6/2023
1.0.23 6,266 6/5/2023
1.0.22 21,651 5/30/2023
1.0.21 23,498 5/29/2023
1.0.20 8,426 5/26/2023
1.0.19 9,623 5/25/2023
1.0.18 10,029 5/24/2023
1.0.17 6,932 5/24/2023
1.0.16 2,176 5/23/2023
1.0.15 1,964 5/23/2023
1.0.12 4,000 5/22/2023
1.0.11 23,368 5/16/2023
1.0.10 19,328 4/20/2023
1.0.9 18,429 4/3/2023
1.0.8 1,462 4/3/2023
1.0.7 2,881 3/23/2023
1.0.5 934 3/13/2023
1.0.4 661 3/11/2023
1.0.3 548 3/11/2023
1.0.2 547 3/11/2023
1.0.1 618 3/11/2023