Soenneker.Utils.SingletonDictionary 3.0.755

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.755                
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.755                
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.755" />                
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.755                
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.755"                
#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.755

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

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. 
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 378 1/3/2025
3.0.758 182 1/3/2025
3.0.757 395 1/3/2025
3.0.756 47 1/3/2025
3.0.755 509 1/3/2025
3.0.754 41 1/3/2025
3.0.753 389 1/3/2025
3.0.752 385 1/2/2025
3.0.751 36 1/2/2025
3.0.750 606 1/2/2025
3.0.749 43 1/2/2025
3.0.748 1,085 1/2/2025
3.0.747 37 1/2/2025
3.0.746 43 1/2/2025
3.0.745 1,849 1/1/2025
3.0.744 473 1/1/2025
3.0.743 143 1/1/2025
3.0.742 72 1/1/2025
3.0.741 782 1/1/2025
3.0.740 65 1/1/2025
3.0.739 72 1/1/2025
3.0.738 70 1/1/2025
3.0.737 198 12/31/2024
3.0.736 73 12/31/2024
3.0.735 77 12/31/2024
3.0.734 379 12/31/2024
3.0.733 71 12/31/2024
3.0.732 2,638 12/31/2024
3.0.731 66 12/31/2024
3.0.730 2,951 12/31/2024
3.0.729 70 12/31/2024
3.0.728 1,864 12/31/2024
3.0.727 218 12/31/2024
3.0.726 71 12/31/2024
3.0.725 1,097 12/31/2024
3.0.724 70 12/31/2024
3.0.723 7,630 12/28/2024
3.0.722 1,092 12/28/2024
3.0.721 1,188 12/27/2024
3.0.720 80 12/27/2024
3.0.719 2,650 12/27/2024
3.0.718 4,851 12/24/2024
3.0.717 1,216 12/24/2024
3.0.716 909 12/24/2024
3.0.715 774 12/24/2024
3.0.714 1,349 12/24/2024
3.0.713 65 12/24/2024
3.0.712 2,213 12/24/2024
3.0.711 612 12/24/2024
3.0.710 74 12/24/2024
3.0.709 429 12/24/2024
3.0.708 943 12/24/2024
3.0.707 225 12/24/2024
3.0.706 95 12/24/2024
3.0.705 1,016 12/24/2024
3.0.704 75 12/24/2024
3.0.703 1,751 12/23/2024
3.0.702 2,717 12/23/2024
3.0.701 81 12/23/2024
3.0.700 637 12/23/2024
3.0.699 73 12/23/2024
3.0.698 1,794 12/23/2024
3.0.697 79 12/23/2024
3.0.696 1,414 12/23/2024
3.0.695 82 12/23/2024
3.0.694 404 12/22/2024
3.0.693 1,365 12/22/2024
3.0.692 3,966 12/22/2024
3.0.691 78 12/22/2024
3.0.690 1,507 12/22/2024
3.0.689 131 12/22/2024
3.0.688 442 12/22/2024
3.0.687 76 12/22/2024
3.0.686 237 12/22/2024
3.0.685 75 12/22/2024
3.0.684 6,722 12/22/2024
3.0.683 75 12/22/2024
3.0.682 1,036 12/21/2024
3.0.681 233 12/21/2024
3.0.680 81 12/21/2024
3.0.679 457 12/21/2024
3.0.678 743 12/21/2024
3.0.677 75 12/21/2024
3.0.676 3,739 12/21/2024
3.0.675 354 12/21/2024
3.0.674 73 12/21/2024
3.0.673 2,502 12/21/2024
3.0.672 649 12/21/2024
3.0.671 77 12/21/2024
3.0.670 1,549 12/20/2024
3.0.669 82 12/20/2024
3.0.668 75 12/20/2024
3.0.667 3,643 12/20/2024
3.0.666 1,110 12/20/2024
3.0.665 189 12/20/2024
3.0.664 3,417 12/19/2024
3.0.663 400 12/19/2024
3.0.662 1,987 12/18/2024
3.0.661 82 12/18/2024
3.0.660 6,522 12/17/2024
3.0.659 179 12/17/2024
3.0.658 658 12/16/2024
3.0.657 85 12/16/2024
3.0.656 115 12/16/2024
3.0.655 74 12/16/2024
3.0.654 6,438 12/10/2024
3.0.653 969 12/10/2024
3.0.652 351 12/9/2024
3.0.651 81 12/9/2024
3.0.650 2,640 12/9/2024
3.0.649 1,339 12/9/2024
3.0.648 74 12/9/2024
3.0.647 3,600 12/9/2024
3.0.646 2,699 12/6/2024
3.0.645 403 12/6/2024
3.0.644 85 12/6/2024
3.0.643 658 12/6/2024
3.0.641 3,836 12/6/2024
3.0.640 2,418 12/6/2024
3.0.639 5,244 12/6/2024
3.0.637 338 12/6/2024
3.0.636 2,489 12/5/2024
3.0.635 3,537 12/5/2024
3.0.634 3,139 12/5/2024
3.0.633 79 12/5/2024
3.0.632 1,710 12/5/2024
3.0.631 1,003 12/5/2024
3.0.630 84 12/5/2024
3.0.629 354 12/5/2024
3.0.628 77 12/5/2024
3.0.627 121 12/5/2024
3.0.626 77 12/5/2024
3.0.625 3,332 12/4/2024
3.0.624 75 12/4/2024
3.0.623 86 12/4/2024
3.0.622 83 12/4/2024
3.0.621 1,689 12/4/2024
3.0.620 270 12/4/2024
3.0.619 383 12/4/2024
3.0.618 3,322 12/3/2024
3.0.617 85 12/3/2024
3.0.616 1,096 12/3/2024
3.0.615 416 12/3/2024
3.0.614 89 12/3/2024
3.0.613 80 12/3/2024
3.0.612 3,982 12/3/2024
3.0.611 82 12/3/2024
3.0.610 3,267 12/3/2024
3.0.609 73 12/3/2024
3.0.608 3,030 12/2/2024
3.0.607 2,619 12/2/2024
3.0.606 1,596 12/2/2024
3.0.605 246 12/2/2024
3.0.604 82 12/2/2024
3.0.603 371 12/2/2024
3.0.602 3,414 12/1/2024
3.0.601 85 12/1/2024
3.0.600 1,838 12/1/2024
3.0.599 169 12/1/2024
3.0.598 3,425 12/1/2024
3.0.597 88 12/1/2024
3.0.596 3,537 11/29/2024
3.0.595 1,025 11/29/2024
3.0.594 4,501 11/21/2024
3.0.593 267 11/21/2024
3.0.592 4,465 11/20/2024
3.0.591 309 11/20/2024
3.0.590 84 11/20/2024
3.0.589 89 11/20/2024
3.0.588 393 11/20/2024
3.0.587 131 11/20/2024
3.0.586 77 11/20/2024
3.0.585 2,002 11/20/2024
3.0.584 2,722 11/19/2024
3.0.583 78 11/19/2024
3.0.582 614 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,465 11/14/2024
3.0.575 110 11/14/2024
3.0.574 485 11/14/2024
3.0.573 2,340 11/14/2024
3.0.572 692 11/14/2024
3.0.571 86 11/14/2024
3.0.570 83 11/14/2024
3.0.569 4,108 11/14/2024
3.0.568 91 11/14/2024
3.0.567 87 11/14/2024
3.0.566 3,457 11/14/2024
3.0.565 85 11/14/2024
3.0.564 82 11/14/2024
3.0.563 88 11/14/2024
2.1.562 7,712 11/13/2024
2.1.561 1,303 11/13/2024
2.1.560 3,024 11/13/2024
2.1.559 89 11/13/2024
2.1.558 1,309 11/12/2024
2.1.557 379 11/12/2024
2.1.556 8,208 11/9/2024
2.1.555 341 11/9/2024
2.1.554 84 11/9/2024
2.1.553 1,706 11/9/2024
2.1.552 84 11/9/2024
2.1.551 927 11/8/2024
2.1.550 87 11/8/2024
2.1.549 87 11/8/2024
2.1.548 86 11/8/2024
2.1.547 400 11/8/2024
2.1.546 1,860 11/8/2024
2.1.545 83 11/8/2024
2.1.544 5,428 11/8/2024
2.1.543 81 11/8/2024
2.1.542 11,532 11/1/2024
2.1.541 434 11/1/2024
2.1.540 6,734 10/29/2024
2.1.539 709 10/29/2024
2.1.538 2,808 10/29/2024
2.1.537 605 10/29/2024
2.1.536 5,522 10/28/2024
2.1.535 1,817 10/28/2024
2.1.534 3,984 10/26/2024
2.1.533 683 10/26/2024
2.1.532 7,324 10/22/2024
2.1.531 232 10/22/2024
2.1.530 529 10/22/2024
2.1.529 856 10/22/2024
2.1.528 69 10/22/2024
2.1.527 461 10/22/2024
2.1.526 6,462 10/18/2024
2.1.525 1,065 10/17/2024
2.1.524 4,120 10/15/2024
2.1.523 1,575 10/15/2024
2.1.522 83 10/14/2024
2.1.521 5,093 10/12/2024
2.1.520 629 10/11/2024
2.1.519 83 10/11/2024
2.1.518 453 10/11/2024
2.1.517 2,894 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 119 10/8/2024
2.1.511 2,197 10/8/2024
2.1.510 126 10/8/2024
2.1.509 76 10/8/2024
2.1.508 3,906 10/8/2024
2.1.507 6,119 10/3/2024
2.1.506 87 10/3/2024
2.1.505 1,082 10/3/2024
2.1.504 1,888 10/3/2024
2.1.503 1,383 10/3/2024
2.1.502 5,694 10/2/2024
2.1.501 85 10/2/2024
2.1.500 1,790 10/2/2024
2.1.499 980 10/2/2024
2.1.498 4,148 10/1/2024
2.1.497 672 10/1/2024
2.1.496 87 10/1/2024
2.1.495 2,598 10/1/2024
2.1.494 84 10/1/2024
2.1.493 127 10/1/2024
2.1.492 5,306 9/29/2024
2.1.491 1,355 9/29/2024
2.1.490 84 9/29/2024
2.1.489 1,196 9/29/2024
2.1.488 82 9/29/2024
2.1.487 2,493 9/29/2024
2.1.486 4,964 9/27/2024
2.1.485 757 9/27/2024
2.1.484 3,100 9/27/2024
2.1.483 92 9/27/2024
2.1.482 424 9/27/2024
2.1.481 2,137 9/27/2024
2.1.480 3,132 9/26/2024
2.1.479 3,448 9/26/2024
2.1.478 2,330 9/26/2024
2.1.477 2,135 9/26/2024
2.1.476 3,759 9/26/2024
2.1.475 87 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,114 9/23/2024
2.1.470 82 9/23/2024
2.1.469 1,524 9/23/2024
2.1.468 80 9/23/2024
2.1.467 4,622 9/23/2024
2.1.466 88 9/23/2024
2.1.465 697 9/23/2024
2.1.464 94 9/23/2024
2.1.463 83 9/23/2024
2.1.462 856 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 516 9/17/2024
2.1.452 177 9/17/2024
2.1.451 2,621 9/17/2024
2.1.450 7,419 9/16/2024
2.1.449 697 9/16/2024
2.1.448 4,934 9/12/2024
2.1.447 2,896 9/12/2024
2.1.446 1,288 9/11/2024
2.1.445 1,511 9/11/2024
2.1.443 3,697 9/11/2024
2.1.442 973 9/11/2024
2.1.441 940 9/11/2024
2.1.440 2,270 9/11/2024
2.1.439 8,046 9/10/2024
2.1.438 109 9/10/2024
2.1.437 1,131 9/10/2024
2.1.436 103 9/10/2024
2.1.434 2,889 9/10/2024
2.1.433 581 9/9/2024
2.1.432 1,980 9/9/2024
2.1.430 1,522 9/9/2024
2.1.428 127 9/9/2024
2.1.427 446 9/9/2024
2.1.426 13,205 9/7/2024
2.1.425 119 9/7/2024
2.1.424 4,960 9/6/2024
2.1.423 348 9/6/2024
2.1.422 2,184 9/6/2024
2.1.421 103 9/5/2024
2.1.420 112 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,003 9/5/2024
2.1.412 183 9/5/2024
2.1.411 109 9/5/2024
2.1.410 2,234 9/4/2024
2.1.409 7,947 9/3/2024
2.1.408 96 9/3/2024
2.1.407 90 9/3/2024
2.1.406 3,977 9/3/2024
2.1.405 140 9/3/2024
2.1.404 2,455 9/3/2024
2.1.403 5,243 8/29/2024
2.1.402 2,510 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 597 8/21/2024
2.1.397 119 8/21/2024
2.1.396 2,534 8/21/2024
2.1.395 131 8/20/2024
2.1.394 121 8/20/2024
2.1.393 455 8/20/2024
2.1.392 2,939 8/20/2024
2.1.391 404 8/20/2024
2.1.390 107 8/20/2024
2.1.389 2,626 8/20/2024
2.1.388 109 8/20/2024
2.1.387 1,186 8/20/2024
2.1.386 2,867 8/19/2024
2.1.385 4,733 8/15/2024
2.1.384 2,089 8/15/2024
2.1.383 4,771 8/14/2024
2.1.382 144 8/13/2024
2.1.381 5,625 8/7/2024
2.1.380 262 8/6/2024
2.1.379 2,658 8/6/2024
2.1.378 4,895 8/1/2024
2.1.377 315 8/1/2024
2.1.376 86 8/1/2024
2.1.374 1,119 8/1/2024
2.1.373 5,763 7/25/2024
2.1.372 82 7/25/2024
2.1.371 709 7/25/2024
2.1.370 294 7/25/2024
2.1.369 345 7/25/2024
2.1.368 170 7/25/2024
2.1.367 371 7/24/2024
2.1.366 127 7/24/2024
2.1.365 194 7/24/2024
2.1.364 297 7/24/2024
2.1.363 7,912 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,479 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,886 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,319 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 104 7/8/2024
2.1.323 4,803 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,108 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,003 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,215 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 114 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,115 4/30/2024
2.1.265 1,720 4/29/2024
2.1.264 1,864 4/29/2024
2.1.263 2,605 4/28/2024
2.1.262 1,440 4/28/2024
2.1.261 1,069 4/28/2024
2.1.260 1,720 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 112 4/27/2024
2.1.255 4,336 4/19/2024
2.1.254 4,011 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 175 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,095 4/9/2024
2.1.242 3,110 4/2/2024
2.1.241 873 4/1/2024
2.1.240 2,040 3/29/2024
2.1.239 1,789 3/25/2024
2.1.238 275 3/25/2024
2.1.237 3,265 3/20/2024
2.1.236 2,112 3/19/2024
2.1.235 501 3/19/2024
2.1.234 2,288 3/18/2024
2.1.233 1,369 3/18/2024
2.1.232 1,356 3/15/2024
2.1.231 2,308 3/13/2024
2.1.230 1,067 3/13/2024
2.1.229 632 3/13/2024
2.1.228 734 3/13/2024
2.1.227 119 3/13/2024
2.1.226 522 3/13/2024
2.1.225 124 3/13/2024
2.1.224 131 3/13/2024
2.1.223 1,624 3/12/2024
2.1.222 2,786 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,028 3/8/2024
2.1.217 1,522 3/8/2024
2.1.216 2,049 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,177 3/2/2024
2.1.211 386 3/2/2024
2.1.210 332 3/2/2024
2.1.209 453 3/2/2024
2.1.208 3,374 2/29/2024
2.1.207 619 2/29/2024
2.1.206 320 2/29/2024
2.1.205 3,256 2/26/2024
2.1.204 1,462 2/25/2024
2.1.203 2,556 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,164 2/21/2024
2.1.198 271 2/21/2024
2.1.197 738 2/21/2024
2.1.196 112 2/21/2024
2.1.195 1,204 2/21/2024
2.1.194 385 2/21/2024
2.1.193 118 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,590 2/20/2024
2.1.188 685 2/20/2024
2.1.187 617 2/20/2024
2.1.186 725 2/20/2024
2.1.185 2,062 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 106 2/16/2024
2.1.179 611 2/16/2024
2.1.178 115 2/16/2024
2.1.177 116 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 493 2/11/2024
2.1.167 1,491 2/11/2024
2.1.166 833 2/11/2024
2.1.165 2,713 2/10/2024
2.1.164 527 2/9/2024
2.1.163 125 2/9/2024
2.1.162 1,527 2/9/2024
2.1.161 1,633 2/9/2024
2.1.160 369 2/8/2024
2.1.159 1,191 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,826 2/7/2024
2.1.154 425 2/7/2024
2.1.153 581 2/7/2024
2.1.152 1,240 2/7/2024
2.1.151 363 2/6/2024
2.1.150 121 2/6/2024
2.1.149 114 2/6/2024
2.1.148 2,716 2/5/2024
2.1.147 1,503 2/4/2024
2.1.146 2,049 2/2/2024
2.1.145 1,886 1/31/2024
2.1.144 2,106 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 291 1/28/2024
2.1.138 525 1/28/2024
2.1.137 1,892 1/28/2024
2.1.136 908 1/28/2024
2.1.135 273 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,034 1/26/2024
2.1.128 206 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,078 1/25/2024
2.1.122 439 1/25/2024
2.1.121 894 1/25/2024
2.1.120 503 1/25/2024
2.1.119 2,546 1/19/2024
2.1.118 2,184 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 547 1/15/2024
2.1.113 1,356 1/15/2024
2.1.112 2,517 1/14/2024
2.1.111 1,579 1/13/2024
2.1.110 1,808 1/12/2024
2.1.109 2,017 1/11/2024
2.1.108 2,600 1/7/2024
2.1.107 2,071 1/5/2024
2.1.106 470 1/5/2024
2.1.105 127 1/5/2024
2.1.104 132 1/5/2024
2.1.103 1,461 1/5/2024
2.1.102 132 1/5/2024
2.1.101 2,727 1/1/2024
2.1.100 2,189 12/28/2023
2.1.99 725 12/28/2023
2.1.98 483 12/28/2023
2.1.97 123 12/28/2023
2.1.96 121 12/28/2023
2.1.95 700 12/27/2023
2.1.94 131 12/27/2023
2.1.93 455 12/27/2023
2.1.92 125 12/27/2023
2.1.91 127 12/27/2023
2.1.90 2,186 12/25/2023
2.1.89 340 12/25/2023
2.1.88 761 12/25/2023
2.1.87 128 12/25/2023
2.1.86 608 12/25/2023
2.1.85 119 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 531 12/23/2023
2.1.77 119 12/23/2023
2.1.76 111 12/23/2023
2.1.75 1,059 12/23/2023
2.1.74 112 12/23/2023
2.1.73 1,378 12/19/2023
2.1.72 208 12/19/2023
2.1.71 3,040 12/11/2023
2.1.70 709 12/10/2023
2.1.69 108 12/10/2023
2.1.68 476 12/10/2023
2.1.67 1,389 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 253 12/9/2023
2.1.61 188 12/9/2023
2.1.60 122 12/9/2023
2.1.59 1,056 12/9/2023
2.1.58 117 12/9/2023
2.1.57 1,485 12/6/2023
2.1.56 381 12/6/2023
2.1.55 234 12/6/2023
2.1.54 263 12/6/2023
2.1.53 907 12/5/2023
2.1.52 372 12/5/2023
2.1.51 337 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 988 12/4/2023
2.1.41 105 12/4/2023
2.1.40 1,156 11/27/2023
2.1.39 505 11/26/2023
2.1.38 209 11/26/2023
2.1.37 617 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 386 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 781 11/19/2023
2.1.28 248 11/19/2023
2.1.27 448 11/19/2023
2.1.26 484 11/19/2023
2.1.25 483 11/19/2023
2.1.24 112 11/19/2023
2.1.23 212 11/18/2023
2.1.22 967 11/18/2023
2.1.21 368 11/18/2023
2.1.20 525 11/18/2023
2.1.19 124 11/18/2023
2.1.18 297 11/18/2023
2.1.17 119 11/18/2023
2.1.16 581 11/17/2023
2.1.15 505 11/17/2023
2.1.14 117 11/17/2023
2.1.13 413 11/17/2023
2.1.12 288 11/17/2023
2.1.11 478 11/17/2023
2.1.10 118 11/17/2023
2.1.9 502 11/17/2023
2.1.8 117 11/17/2023
2.1.7 135 11/17/2023
2.1.6 312 11/17/2023
2.1.5 362 11/16/2023
2.0.101 2,055 11/15/2023
2.0.100 113 11/15/2023
2.0.99 123 11/15/2023
2.0.4 123 11/16/2023
2.0.3 127 11/16/2023
2.0.2 120 11/16/2023
2.0.1 114 11/16/2023
1.0.98 603 11/14/2023
1.0.97 742 11/13/2023
1.0.96 109 11/13/2023
1.0.95 562 11/10/2023
1.0.94 112 11/10/2023
1.0.93 912 11/9/2023
1.0.92 120 11/9/2023
1.0.91 1,017 11/7/2023
1.0.90 110 11/7/2023
1.0.89 497 11/6/2023
1.0.88 120 11/6/2023
1.0.87 588 11/3/2023
1.0.86 124 11/3/2023
1.0.85 875 11/2/2023
1.0.84 117 11/2/2023
1.0.83 593 11/1/2023
1.0.82 1,434 10/26/2023
1.0.81 1,283 10/19/2023
1.0.80 132 10/19/2023
1.0.79 767 10/18/2023
1.0.78 151 10/18/2023
1.0.77 720 10/17/2023
1.0.76 138 10/17/2023
1.0.75 627 10/16/2023
1.0.74 143 10/16/2023
1.0.73 690 10/13/2023
1.0.72 328 10/12/2023
1.0.71 1,715 9/20/2023
1.0.70 651 9/19/2023
1.0.69 666 9/18/2023
1.0.68 131 9/18/2023
1.0.67 878 9/14/2023
1.0.66 1,492 8/31/2023
1.0.65 140 8/31/2023
1.0.64 777 8/30/2023
1.0.63 147 8/30/2023
1.0.62 148 8/30/2023
1.0.61 827 8/28/2023
1.0.60 673 8/25/2023
1.0.59 140 8/25/2023
1.0.58 472 8/24/2023
1.0.57 1,428 8/21/2023
1.0.56 783 8/18/2023
1.0.55 734 8/17/2023
1.0.54 143 8/17/2023
1.0.53 1,885 8/10/2023
1.0.52 552 8/9/2023
1.0.51 659 8/8/2023
1.0.50 631 8/7/2023
1.0.49 165 8/7/2023
1.0.48 2,426 7/13/2023
1.0.47 863 7/11/2023
1.0.46 710 7/10/2023
1.0.45 673 7/7/2023
1.0.44 159 7/7/2023
1.0.43 2,087 6/30/2023
1.0.42 1,042 6/29/2023
1.0.41 584 6/28/2023
1.0.40 1,490 6/26/2023
1.0.39 756 6/23/2023
1.0.38 1,065 6/21/2023
1.0.37 1,393 6/15/2023
1.0.36 459 6/14/2023
1.0.35 1,729 6/9/2023
1.0.34 800 6/8/2023
1.0.33 1,570 6/7/2023
1.0.32 158 6/7/2023
1.0.31 1,188 6/6/2023
1.0.30 1,123 6/5/2023
1.0.29 1,324 6/2/2023
1.0.28 144 6/2/2023
1.0.27 1,212 6/1/2023
1.0.26 587 5/31/2023
1.0.25 471 5/31/2023
1.0.24 153 5/31/2023
1.0.23 1,442 5/30/2023
1.0.22 1,507 5/26/2023
1.0.21 661 5/25/2023
1.0.20 140 5/25/2023
1.0.19 818 5/24/2023
1.0.18 148 5/24/2023
1.0.17 434 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,012 4/25/2023
1.0.8 463 4/24/2023
1.0.7 987 4/21/2023
1.0.6 1,946 4/13/2023
1.0.5 578 4/12/2023
1.0.4 1,004 4/8/2023
1.0.3 178 4/8/2023
1.0.2 576 4/8/2023
1.0.1 181 4/8/2023