Soenneker.Utils.SingletonDictionary 3.0.629

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

// Install Soenneker.Utils.SingletonDictionary as a Cake Tool
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.629                

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.SingletonDictionary

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

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

Example

Below is a long-living HttpClient implementation using SingletonDictionary with different settings. It guarantees only one instance of a particular key is instantiated due to the locking.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly SingletonDictionary<HttpClient> _clients;

    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.
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            HttpClient client = new HttpClient(socketsHandler);
            client.Timeout = TimeSpan.FromSeconds((int)args[0]);

            return client;
        });
    }

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

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

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(false);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

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

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.Cosmos.Database

A utility library for storing Azure Cosmos databases

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.759 889 1/3/2025
3.0.758 351 1/3/2025
3.0.757 811 1/3/2025
3.0.756 69 1/3/2025
3.0.755 1,120 1/3/2025
3.0.754 50 1/3/2025
3.0.753 874 1/3/2025
3.0.752 836 1/2/2025
3.0.751 44 1/2/2025
3.0.750 1,426 1/2/2025
3.0.749 54 1/2/2025
3.0.748 2,462 1/2/2025
3.0.747 44 1/2/2025
3.0.746 50 1/2/2025
3.0.745 4,014 1/1/2025
3.0.744 903 1/1/2025
3.0.743 230 1/1/2025
3.0.742 81 1/1/2025
3.0.741 1,371 1/1/2025
3.0.740 74 1/1/2025
3.0.739 81 1/1/2025
3.0.738 83 1/1/2025
3.0.737 284 12/31/2024
3.0.736 86 12/31/2024
3.0.735 101 12/31/2024
3.0.734 581 12/31/2024
3.0.733 100 12/31/2024
3.0.732 4,434 12/31/2024
3.0.731 91 12/31/2024
3.0.730 4,265 12/31/2024
3.0.729 71 12/31/2024
3.0.728 2,540 12/31/2024
3.0.727 299 12/31/2024
3.0.726 72 12/31/2024
3.0.725 1,266 12/31/2024
3.0.724 71 12/31/2024
3.0.723 8,743 12/28/2024
3.0.722 1,093 12/28/2024
3.0.721 1,189 12/27/2024
3.0.720 81 12/27/2024
3.0.719 2,651 12/27/2024
3.0.718 4,852 12/24/2024
3.0.717 1,217 12/24/2024
3.0.716 910 12/24/2024
3.0.715 775 12/24/2024
3.0.714 1,350 12/24/2024
3.0.713 66 12/24/2024
3.0.712 2,214 12/24/2024
3.0.711 613 12/24/2024
3.0.710 75 12/24/2024
3.0.709 430 12/24/2024
3.0.708 944 12/24/2024
3.0.707 226 12/24/2024
3.0.706 96 12/24/2024
3.0.705 1,017 12/24/2024
3.0.704 76 12/24/2024
3.0.703 1,752 12/23/2024
3.0.702 2,718 12/23/2024
3.0.701 82 12/23/2024
3.0.700 638 12/23/2024
3.0.699 74 12/23/2024
3.0.698 1,795 12/23/2024
3.0.697 80 12/23/2024
3.0.696 1,415 12/23/2024
3.0.695 83 12/23/2024
3.0.694 405 12/22/2024
3.0.693 1,366 12/22/2024
3.0.692 3,967 12/22/2024
3.0.691 79 12/22/2024
3.0.690 1,508 12/22/2024
3.0.689 132 12/22/2024
3.0.688 443 12/22/2024
3.0.687 77 12/22/2024
3.0.686 238 12/22/2024
3.0.685 76 12/22/2024
3.0.684 6,723 12/22/2024
3.0.683 76 12/22/2024
3.0.682 1,037 12/21/2024
3.0.681 234 12/21/2024
3.0.680 82 12/21/2024
3.0.679 458 12/21/2024
3.0.678 744 12/21/2024
3.0.677 76 12/21/2024
3.0.676 3,740 12/21/2024
3.0.675 355 12/21/2024
3.0.674 74 12/21/2024
3.0.673 2,503 12/21/2024
3.0.672 650 12/21/2024
3.0.671 78 12/21/2024
3.0.670 1,550 12/20/2024
3.0.669 83 12/20/2024
3.0.668 76 12/20/2024
3.0.667 3,644 12/20/2024
3.0.666 1,111 12/20/2024
3.0.665 190 12/20/2024
3.0.664 3,418 12/19/2024
3.0.663 401 12/19/2024
3.0.662 1,988 12/18/2024
3.0.661 83 12/18/2024
3.0.660 6,523 12/17/2024
3.0.659 180 12/17/2024
3.0.658 659 12/16/2024
3.0.657 86 12/16/2024
3.0.656 116 12/16/2024
3.0.655 75 12/16/2024
3.0.654 6,441 12/10/2024
3.0.653 970 12/10/2024
3.0.652 352 12/9/2024
3.0.651 82 12/9/2024
3.0.650 2,641 12/9/2024
3.0.649 1,340 12/9/2024
3.0.648 75 12/9/2024
3.0.647 3,601 12/9/2024
3.0.646 2,700 12/6/2024
3.0.645 404 12/6/2024
3.0.644 87 12/6/2024
3.0.643 659 12/6/2024
3.0.641 3,837 12/6/2024
3.0.640 2,419 12/6/2024
3.0.639 5,245 12/6/2024
3.0.637 339 12/6/2024
3.0.636 2,492 12/5/2024
3.0.635 3,538 12/5/2024
3.0.634 3,140 12/5/2024
3.0.633 80 12/5/2024
3.0.632 1,711 12/5/2024
3.0.631 1,004 12/5/2024
3.0.630 85 12/5/2024
3.0.629 355 12/5/2024
3.0.628 78 12/5/2024
3.0.627 122 12/5/2024
3.0.626 78 12/5/2024
3.0.625 3,333 12/4/2024
3.0.624 76 12/4/2024
3.0.623 87 12/4/2024
3.0.622 84 12/4/2024
3.0.621 1,690 12/4/2024
3.0.620 273 12/4/2024
3.0.619 384 12/4/2024
3.0.618 3,323 12/3/2024
3.0.617 86 12/3/2024
3.0.616 1,097 12/3/2024
3.0.615 417 12/3/2024
3.0.614 90 12/3/2024
3.0.613 81 12/3/2024
3.0.612 3,991 12/3/2024
3.0.611 83 12/3/2024
3.0.610 3,268 12/3/2024
3.0.609 74 12/3/2024
3.0.608 3,031 12/2/2024
3.0.607 2,620 12/2/2024
3.0.606 1,597 12/2/2024
3.0.605 247 12/2/2024
3.0.604 85 12/2/2024
3.0.603 374 12/2/2024
3.0.602 3,417 12/1/2024
3.0.601 86 12/1/2024
3.0.600 1,839 12/1/2024
3.0.599 170 12/1/2024
3.0.598 3,426 12/1/2024
3.0.597 89 12/1/2024
3.0.596 3,538 11/29/2024
3.0.595 1,026 11/29/2024
3.0.594 4,538 11/21/2024
3.0.593 268 11/21/2024
3.0.592 4,466 11/20/2024
3.0.591 309 11/20/2024
3.0.590 85 11/20/2024
3.0.589 90 11/20/2024
3.0.588 393 11/20/2024
3.0.587 132 11/20/2024
3.0.586 78 11/20/2024
3.0.585 2,002 11/20/2024
3.0.584 2,726 11/19/2024
3.0.583 78 11/19/2024
3.0.582 615 11/19/2024
3.0.581 76 11/19/2024
3.0.580 2,651 11/19/2024
3.0.579 74 11/19/2024
3.0.578 1,286 11/19/2024
3.0.577 80 11/19/2024
3.0.576 8,469 11/14/2024
3.0.575 115 11/14/2024
3.0.574 486 11/14/2024
3.0.573 2,342 11/14/2024
3.0.572 694 11/14/2024
3.0.571 88 11/14/2024
3.0.570 85 11/14/2024
3.0.569 4,110 11/14/2024
3.0.568 93 11/14/2024
3.0.567 89 11/14/2024
3.0.566 3,460 11/14/2024
3.0.565 87 11/14/2024
3.0.564 85 11/14/2024
3.0.563 89 11/14/2024
2.1.562 7,738 11/13/2024
2.1.561 1,313 11/13/2024
2.1.560 3,025 11/13/2024
2.1.559 89 11/13/2024
2.1.558 1,309 11/12/2024
2.1.557 380 11/12/2024
2.1.556 8,209 11/9/2024
2.1.555 342 11/9/2024
2.1.554 85 11/9/2024
2.1.553 1,707 11/9/2024
2.1.552 84 11/9/2024
2.1.551 928 11/8/2024
2.1.550 88 11/8/2024
2.1.549 90 11/8/2024
2.1.548 86 11/8/2024
2.1.547 401 11/8/2024
2.1.546 1,860 11/8/2024
2.1.545 84 11/8/2024
2.1.544 5,429 11/8/2024
2.1.543 81 11/8/2024
2.1.542 11,532 11/1/2024
2.1.541 435 11/1/2024
2.1.540 6,736 10/29/2024
2.1.539 709 10/29/2024
2.1.538 2,809 10/29/2024
2.1.537 606 10/29/2024
2.1.536 5,523 10/28/2024
2.1.535 1,818 10/28/2024
2.1.534 3,985 10/26/2024
2.1.533 684 10/26/2024
2.1.532 7,362 10/22/2024
2.1.531 232 10/22/2024
2.1.530 529 10/22/2024
2.1.529 857 10/22/2024
2.1.528 70 10/22/2024
2.1.527 461 10/22/2024
2.1.526 6,463 10/18/2024
2.1.525 1,065 10/17/2024
2.1.524 4,121 10/15/2024
2.1.523 1,576 10/15/2024
2.1.522 84 10/14/2024
2.1.521 5,095 10/12/2024
2.1.520 630 10/11/2024
2.1.519 84 10/11/2024
2.1.518 454 10/11/2024
2.1.517 2,896 10/11/2024
2.1.516 6,312 10/9/2024
2.1.515 363 10/9/2024
2.1.514 79 10/9/2024
2.1.513 1,944 10/8/2024
2.1.512 121 10/8/2024
2.1.511 2,198 10/8/2024
2.1.510 127 10/8/2024
2.1.509 76 10/8/2024
2.1.508 3,907 10/8/2024
2.1.507 6,120 10/3/2024
2.1.506 88 10/3/2024
2.1.505 1,083 10/3/2024
2.1.504 1,889 10/3/2024
2.1.503 1,384 10/3/2024
2.1.502 5,695 10/2/2024
2.1.501 86 10/2/2024
2.1.500 1,793 10/2/2024
2.1.499 981 10/2/2024
2.1.498 4,149 10/1/2024
2.1.497 673 10/1/2024
2.1.496 88 10/1/2024
2.1.495 2,599 10/1/2024
2.1.494 87 10/1/2024
2.1.493 128 10/1/2024
2.1.492 5,310 9/29/2024
2.1.491 1,356 9/29/2024
2.1.490 86 9/29/2024
2.1.489 1,197 9/29/2024
2.1.488 83 9/29/2024
2.1.487 2,496 9/29/2024
2.1.486 4,968 9/27/2024
2.1.485 757 9/27/2024
2.1.484 3,101 9/27/2024
2.1.483 93 9/27/2024
2.1.482 425 9/27/2024
2.1.481 2,138 9/27/2024
2.1.480 3,133 9/26/2024
2.1.479 3,449 9/26/2024
2.1.478 2,331 9/26/2024
2.1.477 2,137 9/26/2024
2.1.476 3,765 9/26/2024
2.1.475 88 9/26/2024
2.1.474 5,516 9/23/2024
2.1.473 1,277 9/23/2024
2.1.472 932 9/23/2024
2.1.471 1,115 9/23/2024
2.1.470 83 9/23/2024
2.1.469 1,525 9/23/2024
2.1.468 81 9/23/2024
2.1.467 4,623 9/23/2024
2.1.466 89 9/23/2024
2.1.465 698 9/23/2024
2.1.464 95 9/23/2024
2.1.463 84 9/23/2024
2.1.462 857 9/23/2024
2.1.461 9,035 9/18/2024
2.1.460 232 9/17/2024
2.1.459 1,182 9/17/2024
2.1.458 1,687 9/17/2024
2.1.457 89 9/17/2024
2.1.456 1,777 9/17/2024
2.1.455 440 9/17/2024
2.1.454 3,228 9/17/2024
2.1.453 517 9/17/2024
2.1.452 178 9/17/2024
2.1.451 2,623 9/17/2024
2.1.450 7,420 9/16/2024
2.1.449 698 9/16/2024
2.1.448 4,935 9/12/2024
2.1.447 2,897 9/12/2024
2.1.446 1,289 9/11/2024
2.1.445 1,511 9/11/2024
2.1.443 3,698 9/11/2024
2.1.442 974 9/11/2024
2.1.441 941 9/11/2024
2.1.440 2,270 9/11/2024
2.1.439 8,047 9/10/2024
2.1.438 110 9/10/2024
2.1.437 1,132 9/10/2024
2.1.436 104 9/10/2024
2.1.434 2,892 9/10/2024
2.1.433 585 9/9/2024
2.1.432 1,981 9/9/2024
2.1.430 1,523 9/9/2024
2.1.428 128 9/9/2024
2.1.427 447 9/9/2024
2.1.426 13,207 9/7/2024
2.1.425 119 9/7/2024
2.1.424 4,961 9/6/2024
2.1.423 351 9/6/2024
2.1.422 2,184 9/6/2024
2.1.421 104 9/5/2024
2.1.420 113 9/5/2024
2.1.419 2,362 9/5/2024
2.1.418 1,123 9/5/2024
2.1.417 105 9/5/2024
2.1.416 1,126 9/5/2024
2.1.415 415 9/5/2024
2.1.414 103 9/5/2024
2.1.413 5,004 9/5/2024
2.1.412 184 9/5/2024
2.1.411 110 9/5/2024
2.1.410 2,235 9/4/2024
2.1.409 7,948 9/3/2024
2.1.408 97 9/3/2024
2.1.407 91 9/3/2024
2.1.406 3,977 9/3/2024
2.1.405 141 9/3/2024
2.1.404 2,456 9/3/2024
2.1.403 5,243 8/29/2024
2.1.402 2,516 8/29/2024
2.1.401 2,853 8/26/2024
2.1.400 93 8/26/2024
2.1.399 4,903 8/21/2024
2.1.398 598 8/21/2024
2.1.397 120 8/21/2024
2.1.396 2,534 8/21/2024
2.1.395 133 8/20/2024
2.1.394 122 8/20/2024
2.1.393 456 8/20/2024
2.1.392 2,940 8/20/2024
2.1.391 405 8/20/2024
2.1.390 108 8/20/2024
2.1.389 2,627 8/20/2024
2.1.388 110 8/20/2024
2.1.387 1,187 8/20/2024
2.1.386 2,868 8/19/2024
2.1.385 4,734 8/15/2024
2.1.384 2,090 8/15/2024
2.1.383 4,772 8/14/2024
2.1.382 145 8/13/2024
2.1.381 5,626 8/7/2024
2.1.380 262 8/6/2024
2.1.379 2,666 8/6/2024
2.1.378 4,895 8/1/2024
2.1.377 315 8/1/2024
2.1.376 87 8/1/2024
2.1.374 1,119 8/1/2024
2.1.373 5,764 7/25/2024
2.1.372 83 7/25/2024
2.1.371 710 7/25/2024
2.1.370 295 7/25/2024
2.1.369 346 7/25/2024
2.1.368 171 7/25/2024
2.1.367 372 7/24/2024
2.1.366 128 7/24/2024
2.1.365 195 7/24/2024
2.1.364 298 7/24/2024
2.1.363 7,923 7/20/2024
2.1.362 1,434 7/20/2024
2.1.361 4,949 7/14/2024
2.1.360 1,515 7/14/2024
2.1.359 91 7/14/2024
2.1.358 1,484 7/14/2024
2.1.357 4,267 7/10/2024
2.1.355 773 7/10/2024
2.1.354 1,165 7/10/2024
2.1.353 108 7/10/2024
2.1.352 1,888 7/10/2024
2.1.351 109 7/10/2024
2.1.350 89 7/10/2024
2.1.349 154 7/10/2024
2.1.348 92 7/10/2024
2.1.347 2,022 7/10/2024
2.1.346 108 7/10/2024
2.1.345 798 7/10/2024
2.1.344 96 7/10/2024
2.1.343 194 7/9/2024
2.1.342 86 7/9/2024
2.1.339 1,942 7/9/2024
2.1.338 473 7/9/2024
2.1.337 3,974 7/9/2024
2.1.336 1,056 7/9/2024
2.1.335 99 7/9/2024
2.1.334 2,551 7/9/2024
2.1.333 103 7/9/2024
2.1.332 4,417 7/9/2024
2.1.331 92 7/9/2024
2.1.330 2,484 7/9/2024
2.1.329 80 7/9/2024
2.1.328 1,047 7/9/2024
2.1.327 695 7/8/2024
2.1.326 945 7/8/2024
2.1.325 109 7/8/2024
2.1.324 105 7/8/2024
2.1.323 4,804 7/8/2024
2.1.322 1,594 7/8/2024
2.1.321 111 7/8/2024
2.1.320 2,256 7/7/2024
2.1.319 104 7/7/2024
2.1.318 114 7/7/2024
2.1.317 95 7/7/2024
2.1.316 1,115 7/7/2024
2.1.315 2,132 7/7/2024
2.1.314 1,826 7/7/2024
2.1.313 198 7/7/2024
2.1.312 3,334 7/5/2024
2.1.311 3,835 7/3/2024
2.1.310 3,004 7/3/2024
2.1.309 365 7/3/2024
2.1.308 3,856 7/2/2024
2.1.307 1,819 6/30/2024
2.1.306 2,216 6/28/2024
2.1.305 5,350 6/22/2024
2.1.304 4,824 6/15/2024
2.1.303 4,047 6/14/2024
2.1.302 5,825 6/1/2024
2.1.301 1,551 6/1/2024
2.1.300 567 6/1/2024
2.1.299 5,773 5/31/2024
2.1.298 3,658 5/29/2024
2.1.297 2,987 5/28/2024
2.1.296 2,406 5/27/2024
2.1.295 4,771 5/26/2024
2.1.294 1,990 5/26/2024
2.1.293 465 5/26/2024
2.1.292 2,477 5/25/2024
2.1.291 1,346 5/25/2024
2.1.290 114 5/25/2024
2.1.289 107 5/25/2024
2.1.288 658 5/25/2024
2.1.287 108 5/25/2024
2.1.286 388 5/25/2024
2.1.285 118 5/25/2024
2.1.284 108 5/25/2024
2.1.283 7,335 5/23/2024
2.1.282 511 5/23/2024
2.1.281 248 5/22/2024
2.1.280 3,588 5/22/2024
2.1.279 102 5/22/2024
2.1.278 115 5/22/2024
2.1.277 117 5/22/2024
2.1.276 2,089 5/22/2024
2.1.275 3,351 5/18/2024
2.1.274 1,870 5/18/2024
2.1.273 1,778 5/17/2024
2.1.272 97 5/17/2024
2.1.271 2,692 5/16/2024
2.1.270 413 5/15/2024
2.1.269 2,699 5/15/2024
2.1.268 4,398 5/12/2024
2.1.267 2,696 5/3/2024
2.1.266 1,116 4/30/2024
2.1.265 1,721 4/29/2024
2.1.264 1,864 4/29/2024
2.1.263 2,606 4/28/2024
2.1.262 1,441 4/28/2024
2.1.261 1,069 4/28/2024
2.1.260 1,726 4/28/2024
2.1.259 877 4/28/2024
2.1.258 99 4/28/2024
2.1.257 4,105 4/27/2024
2.1.256 113 4/27/2024
2.1.255 4,336 4/19/2024
2.1.254 4,013 4/18/2024
2.1.253 3,382 4/12/2024
2.1.252 1,118 4/12/2024
2.1.251 704 4/12/2024
2.1.250 835 4/12/2024
2.1.249 178 4/12/2024
2.1.248 95 4/12/2024
2.1.247 967 4/12/2024
2.1.246 286 4/12/2024
2.1.245 1,619 4/11/2024
2.1.244 3,654 4/10/2024
2.1.243 1,096 4/9/2024
2.1.242 3,110 4/2/2024
2.1.241 874 4/1/2024
2.1.240 2,045 3/29/2024
2.1.239 1,789 3/25/2024
2.1.238 276 3/25/2024
2.1.237 3,265 3/20/2024
2.1.236 2,112 3/19/2024
2.1.235 502 3/19/2024
2.1.234 2,288 3/18/2024
2.1.233 1,370 3/18/2024
2.1.232 1,356 3/15/2024
2.1.231 2,309 3/13/2024
2.1.230 1,068 3/13/2024
2.1.229 634 3/13/2024
2.1.228 736 3/13/2024
2.1.227 120 3/13/2024
2.1.226 523 3/13/2024
2.1.225 125 3/13/2024
2.1.224 132 3/13/2024
2.1.223 1,625 3/12/2024
2.1.222 2,787 3/11/2024
2.1.221 2,416 3/11/2024
2.1.220 1,585 3/10/2024
2.1.219 1,845 3/8/2024
2.1.218 1,029 3/8/2024
2.1.217 1,522 3/8/2024
2.1.216 2,050 3/6/2024
2.1.215 1,966 3/4/2024
2.1.214 1,381 3/4/2024
2.1.213 2,522 3/2/2024
2.1.212 1,185 3/2/2024
2.1.211 386 3/2/2024
2.1.210 332 3/2/2024
2.1.209 454 3/2/2024
2.1.208 3,374 2/29/2024
2.1.207 620 2/29/2024
2.1.206 321 2/29/2024
2.1.205 3,257 2/26/2024
2.1.204 1,462 2/25/2024
2.1.203 2,557 2/23/2024
2.1.202 1,861 2/22/2024
2.1.201 921 2/22/2024
2.1.200 400 2/21/2024
2.1.199 1,165 2/21/2024
2.1.198 272 2/21/2024
2.1.197 738 2/21/2024
2.1.196 112 2/21/2024
2.1.195 1,205 2/21/2024
2.1.194 387 2/21/2024
2.1.193 119 2/21/2024
2.1.192 117 2/21/2024
2.1.191 572 2/21/2024
2.1.190 97 2/21/2024
2.1.189 2,596 2/20/2024
2.1.188 685 2/20/2024
2.1.187 618 2/20/2024
2.1.186 725 2/20/2024
2.1.185 2,065 2/19/2024
2.1.184 1,839 2/17/2024
2.1.183 864 2/16/2024
2.1.182 834 2/16/2024
2.1.181 1,305 2/16/2024
2.1.180 107 2/16/2024
2.1.179 611 2/16/2024
2.1.178 116 2/16/2024
2.1.177 117 2/16/2024
2.1.176 526 2/16/2024
2.1.175 102 2/16/2024
2.1.174 3,251 2/13/2024
2.1.173 1,343 2/13/2024
2.1.172 1,060 2/13/2024
2.1.171 437 2/13/2024
2.1.170 606 2/13/2024
2.1.169 1,905 2/12/2024
2.1.168 494 2/11/2024
2.1.167 1,496 2/11/2024
2.1.166 834 2/11/2024
2.1.165 2,713 2/10/2024
2.1.164 528 2/9/2024
2.1.163 126 2/9/2024
2.1.162 1,527 2/9/2024
2.1.161 1,639 2/9/2024
2.1.160 369 2/8/2024
2.1.159 1,198 2/8/2024
2.1.158 819 2/8/2024
2.1.157 1,415 2/8/2024
2.1.156 112 2/8/2024
2.1.155 1,827 2/7/2024
2.1.154 425 2/7/2024
2.1.153 581 2/7/2024
2.1.152 1,241 2/7/2024
2.1.151 365 2/6/2024
2.1.150 122 2/6/2024
2.1.149 115 2/6/2024
2.1.148 2,718 2/5/2024
2.1.147 1,503 2/4/2024
2.1.146 2,054 2/2/2024
2.1.145 1,886 1/31/2024
2.1.144 2,107 1/29/2024
2.1.143 1,331 1/29/2024
2.1.142 332 1/29/2024
2.1.141 1,454 1/28/2024
2.1.140 437 1/28/2024
2.1.139 292 1/28/2024
2.1.138 525 1/28/2024
2.1.137 1,893 1/28/2024
2.1.136 908 1/28/2024
2.1.135 274 1/27/2024
2.1.134 897 1/27/2024
2.1.133 1,139 1/27/2024
2.1.132 1,156 1/27/2024
2.1.131 141 1/27/2024
2.1.130 681 1/27/2024
2.1.129 1,035 1/26/2024
2.1.128 207 1/26/2024
2.1.127 854 1/26/2024
2.1.126 1,103 1/26/2024
2.1.125 1,607 1/26/2024
2.1.124 863 1/25/2024
2.1.123 1,079 1/25/2024
2.1.122 439 1/25/2024
2.1.121 895 1/25/2024
2.1.120 504 1/25/2024
2.1.119 2,546 1/19/2024
2.1.118 2,187 1/15/2024
2.1.117 485 1/15/2024
2.1.116 1,193 1/15/2024
2.1.115 118 1/15/2024
2.1.114 548 1/15/2024
2.1.113 1,357 1/15/2024
2.1.112 2,517 1/14/2024
2.1.111 1,579 1/13/2024
2.1.110 1,811 1/12/2024
2.1.109 2,018 1/11/2024
2.1.108 2,601 1/7/2024
2.1.107 2,071 1/5/2024
2.1.106 471 1/5/2024
2.1.105 128 1/5/2024
2.1.104 133 1/5/2024
2.1.103 1,461 1/5/2024
2.1.102 133 1/5/2024
2.1.101 2,729 1/1/2024
2.1.100 2,190 12/28/2023
2.1.99 725 12/28/2023
2.1.98 483 12/28/2023
2.1.97 124 12/28/2023
2.1.96 121 12/28/2023
2.1.95 701 12/27/2023
2.1.94 132 12/27/2023
2.1.93 456 12/27/2023
2.1.92 126 12/27/2023
2.1.91 127 12/27/2023
2.1.90 2,187 12/25/2023
2.1.89 341 12/25/2023
2.1.88 761 12/25/2023
2.1.87 131 12/25/2023
2.1.86 608 12/25/2023
2.1.85 121 12/25/2023
2.1.84 554 12/25/2023
2.1.83 125 12/25/2023
2.1.82 1,622 12/24/2023
2.1.81 1,053 12/23/2023
2.1.80 849 12/23/2023
2.1.79 295 12/23/2023
2.1.78 532 12/23/2023
2.1.77 119 12/23/2023
2.1.76 111 12/23/2023
2.1.75 1,069 12/23/2023
2.1.74 112 12/23/2023
2.1.73 1,379 12/19/2023
2.1.72 208 12/19/2023
2.1.71 3,047 12/11/2023
2.1.70 709 12/10/2023
2.1.69 108 12/10/2023
2.1.68 477 12/10/2023
2.1.67 1,391 12/10/2023
2.1.66 359 12/9/2023
2.1.65 350 12/9/2023
2.1.64 283 12/9/2023
2.1.63 122 12/9/2023
2.1.62 254 12/9/2023
2.1.61 189 12/9/2023
2.1.60 123 12/9/2023
2.1.59 1,058 12/9/2023
2.1.58 117 12/9/2023
2.1.57 1,486 12/6/2023
2.1.56 382 12/6/2023
2.1.55 234 12/6/2023
2.1.54 264 12/6/2023
2.1.53 908 12/5/2023
2.1.52 372 12/5/2023
2.1.51 338 12/5/2023
2.1.50 376 12/5/2023
2.1.49 124 12/5/2023
2.1.48 332 12/5/2023
2.1.47 269 12/5/2023
2.1.46 124 12/4/2023
2.1.45 125 12/4/2023
2.1.44 321 12/4/2023
2.1.43 137 12/4/2023
2.1.42 990 12/4/2023
2.1.41 107 12/4/2023
2.1.40 1,156 11/27/2023
2.1.39 506 11/26/2023
2.1.38 209 11/26/2023
2.1.37 618 11/23/2023
2.1.36 674 11/23/2023
2.1.35 625 11/23/2023
2.1.34 125 11/23/2023
2.1.33 387 11/23/2023
2.1.32 131 11/23/2023
2.1.31 1,063 11/20/2023
2.1.30 1,030 11/20/2023
2.1.29 784 11/19/2023
2.1.28 250 11/19/2023
2.1.27 449 11/19/2023
2.1.26 485 11/19/2023
2.1.25 484 11/19/2023
2.1.24 113 11/19/2023
2.1.23 213 11/18/2023
2.1.22 967 11/18/2023
2.1.21 369 11/18/2023
2.1.20 525 11/18/2023
2.1.19 124 11/18/2023
2.1.18 298 11/18/2023
2.1.17 119 11/18/2023
2.1.16 582 11/17/2023
2.1.15 506 11/17/2023
2.1.14 117 11/17/2023
2.1.13 414 11/17/2023
2.1.12 288 11/17/2023
2.1.11 482 11/17/2023
2.1.10 118 11/17/2023
2.1.9 503 11/17/2023
2.1.8 118 11/17/2023
2.1.7 136 11/17/2023
2.1.6 312 11/17/2023
2.1.5 363 11/16/2023
2.0.101 2,056 11/15/2023
2.0.100 113 11/15/2023
2.0.99 124 11/15/2023
2.0.4 124 11/16/2023
2.0.3 128 11/16/2023
2.0.2 121 11/16/2023
2.0.1 115 11/16/2023
1.0.98 604 11/14/2023
1.0.97 742 11/13/2023
1.0.96 112 11/13/2023
1.0.95 563 11/10/2023
1.0.94 113 11/10/2023
1.0.93 913 11/9/2023
1.0.92 120 11/9/2023
1.0.91 1,018 11/7/2023
1.0.90 110 11/7/2023
1.0.89 498 11/6/2023
1.0.88 120 11/6/2023
1.0.87 589 11/3/2023
1.0.86 124 11/3/2023
1.0.85 875 11/2/2023
1.0.84 118 11/2/2023
1.0.83 594 11/1/2023
1.0.82 1,435 10/26/2023
1.0.81 1,284 10/19/2023
1.0.80 133 10/19/2023
1.0.79 769 10/18/2023
1.0.78 152 10/18/2023
1.0.77 720 10/17/2023
1.0.76 138 10/17/2023
1.0.75 629 10/16/2023
1.0.74 144 10/16/2023
1.0.73 691 10/13/2023
1.0.72 329 10/12/2023
1.0.71 1,716 9/20/2023
1.0.70 663 9/19/2023
1.0.69 667 9/18/2023
1.0.68 132 9/18/2023
1.0.67 878 9/14/2023
1.0.66 1,493 8/31/2023
1.0.65 141 8/31/2023
1.0.64 781 8/30/2023
1.0.63 148 8/30/2023
1.0.62 149 8/30/2023
1.0.61 827 8/28/2023
1.0.60 674 8/25/2023
1.0.59 141 8/25/2023
1.0.58 472 8/24/2023
1.0.57 1,430 8/21/2023
1.0.56 783 8/18/2023
1.0.55 734 8/17/2023
1.0.54 144 8/17/2023
1.0.53 1,886 8/10/2023
1.0.52 553 8/9/2023
1.0.51 660 8/8/2023
1.0.50 632 8/7/2023
1.0.49 167 8/7/2023
1.0.48 2,426 7/13/2023
1.0.47 864 7/11/2023
1.0.46 710 7/10/2023
1.0.45 674 7/7/2023
1.0.44 160 7/7/2023
1.0.43 2,087 6/30/2023
1.0.42 1,043 6/29/2023
1.0.41 585 6/28/2023
1.0.40 1,491 6/26/2023
1.0.39 759 6/23/2023
1.0.38 1,066 6/21/2023
1.0.37 1,394 6/15/2023
1.0.36 462 6/14/2023
1.0.35 1,730 6/9/2023
1.0.34 801 6/8/2023
1.0.33 1,570 6/7/2023
1.0.32 158 6/7/2023
1.0.31 1,189 6/6/2023
1.0.30 1,123 6/5/2023
1.0.29 1,324 6/2/2023
1.0.28 145 6/2/2023
1.0.27 1,213 6/1/2023
1.0.26 588 5/31/2023
1.0.25 472 5/31/2023
1.0.24 154 5/31/2023
1.0.23 1,442 5/30/2023
1.0.22 1,508 5/26/2023
1.0.21 662 5/25/2023
1.0.20 141 5/25/2023
1.0.19 819 5/24/2023
1.0.18 148 5/24/2023
1.0.17 436 5/23/2023
1.0.13 1,454 5/22/2023
1.0.12 1,175 5/18/2023
1.0.11 579 5/17/2023
1.0.10 1,537 5/1/2023
1.0.9 1,013 4/25/2023
1.0.8 464 4/24/2023
1.0.7 988 4/21/2023
1.0.6 1,947 4/13/2023
1.0.5 582 4/12/2023
1.0.4 1,004 4/8/2023
1.0.3 178 4/8/2023
1.0.2 577 4/8/2023
1.0.1 182 4/8/2023