Soenneker.Utils.SingletonDictionary 3.0.689

Prefix Reserved
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.689                
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.689                
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.689" />                
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.689                
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.689"                
#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.689

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

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.689 0 12/22/2024
3.0.688 0 12/22/2024
3.0.687 0 12/22/2024
3.0.686 0 12/22/2024
3.0.685 0 12/22/2024
3.0.684 0 12/22/2024
3.0.683 0 12/22/2024
3.0.682 4 12/21/2024
3.0.681 26 12/21/2024
3.0.680 23 12/21/2024
3.0.679 71 12/21/2024
3.0.678 157 12/21/2024
3.0.677 29 12/21/2024
3.0.676 577 12/21/2024
3.0.675 135 12/21/2024
3.0.674 28 12/21/2024
3.0.673 990 12/21/2024
3.0.672 205 12/21/2024
3.0.671 33 12/21/2024
3.0.670 660 12/20/2024
3.0.669 43 12/20/2024
3.0.668 34 12/20/2024
3.0.667 1,465 12/20/2024
3.0.666 466 12/20/2024
3.0.665 85 12/20/2024
3.0.664 1,395 12/19/2024
3.0.663 173 12/19/2024
3.0.662 890 12/18/2024
3.0.661 72 12/18/2024
3.0.660 2,975 12/17/2024
3.0.659 169 12/17/2024
3.0.658 588 12/16/2024
3.0.657 75 12/16/2024
3.0.656 105 12/16/2024
3.0.655 64 12/16/2024
3.0.654 5,754 12/10/2024
3.0.653 959 12/10/2024
3.0.652 341 12/9/2024
3.0.651 71 12/9/2024
3.0.650 2,630 12/9/2024
3.0.649 1,329 12/9/2024
3.0.648 64 12/9/2024
3.0.647 3,590 12/9/2024
3.0.646 2,684 12/6/2024
3.0.645 393 12/6/2024
3.0.644 75 12/6/2024
3.0.643 648 12/6/2024
3.0.641 3,826 12/6/2024
3.0.640 2,408 12/6/2024
3.0.639 5,234 12/6/2024
3.0.637 328 12/6/2024
3.0.636 2,479 12/5/2024
3.0.635 3,527 12/5/2024
3.0.634 3,127 12/5/2024
3.0.633 69 12/5/2024
3.0.632 1,701 12/5/2024
3.0.631 993 12/5/2024
3.0.630 74 12/5/2024
3.0.629 344 12/5/2024
3.0.628 67 12/5/2024
3.0.627 109 12/5/2024
3.0.626 65 12/5/2024
3.0.625 3,322 12/4/2024
3.0.624 65 12/4/2024
3.0.623 76 12/4/2024
3.0.622 73 12/4/2024
3.0.621 1,679 12/4/2024
3.0.620 258 12/4/2024
3.0.619 371 12/4/2024
3.0.618 3,307 12/3/2024
3.0.617 72 12/3/2024
3.0.616 1,086 12/3/2024
3.0.615 406 12/3/2024
3.0.614 79 12/3/2024
3.0.613 70 12/3/2024
3.0.612 3,895 12/3/2024
3.0.611 71 12/3/2024
3.0.610 3,254 12/3/2024
3.0.609 63 12/3/2024
3.0.608 3,020 12/2/2024
3.0.607 2,607 12/2/2024
3.0.606 1,584 12/2/2024
3.0.605 236 12/2/2024
3.0.604 72 12/2/2024
3.0.603 361 12/2/2024
3.0.602 3,404 12/1/2024
3.0.601 75 12/1/2024
3.0.600 1,828 12/1/2024
3.0.599 159 12/1/2024
3.0.598 3,415 12/1/2024
3.0.597 70 12/1/2024
3.0.596 3,525 11/29/2024
3.0.595 1,018 11/29/2024
3.0.594 4,479 11/21/2024
3.0.593 261 11/21/2024
3.0.592 4,457 11/20/2024
3.0.591 301 11/20/2024
3.0.590 76 11/20/2024
3.0.589 83 11/20/2024
3.0.588 387 11/20/2024
3.0.587 125 11/20/2024
3.0.586 71 11/20/2024
3.0.585 1,996 11/20/2024
3.0.584 2,716 11/19/2024
3.0.583 72 11/19/2024
3.0.582 608 11/19/2024
3.0.581 70 11/19/2024
3.0.580 2,645 11/19/2024
3.0.579 68 11/19/2024
3.0.578 1,280 11/19/2024
3.0.577 74 11/19/2024
3.0.576 8,460 11/14/2024
3.0.575 105 11/14/2024
3.0.574 478 11/14/2024
3.0.573 2,334 11/14/2024
3.0.572 687 11/14/2024
3.0.571 81 11/14/2024
3.0.570 76 11/14/2024
3.0.569 4,100 11/14/2024
3.0.568 86 11/14/2024
3.0.567 80 11/14/2024
3.0.566 3,450 11/14/2024
3.0.565 80 11/14/2024
3.0.564 76 11/14/2024
3.0.563 82 11/14/2024
2.1.562 7,637 11/13/2024
2.1.561 1,295 11/13/2024
2.1.560 3,016 11/13/2024
2.1.559 83 11/13/2024
2.1.558 1,303 11/12/2024
2.1.557 373 11/12/2024
2.1.556 8,201 11/9/2024
2.1.555 333 11/9/2024
2.1.554 78 11/9/2024
2.1.553 1,700 11/9/2024
2.1.552 78 11/9/2024
2.1.551 921 11/8/2024
2.1.550 81 11/8/2024
2.1.549 81 11/8/2024
2.1.548 78 11/8/2024
2.1.547 394 11/8/2024
2.1.546 1,854 11/8/2024
2.1.545 77 11/8/2024
2.1.544 5,420 11/8/2024
2.1.543 73 11/8/2024
2.1.542 11,525 11/1/2024
2.1.541 429 11/1/2024
2.1.540 6,729 10/29/2024
2.1.539 702 10/29/2024
2.1.538 2,803 10/29/2024
2.1.537 598 10/29/2024
2.1.536 5,517 10/28/2024
2.1.535 1,812 10/28/2024
2.1.534 3,979 10/26/2024
2.1.533 678 10/26/2024
2.1.532 7,277 10/22/2024
2.1.531 227 10/22/2024
2.1.530 522 10/22/2024
2.1.529 851 10/22/2024
2.1.528 64 10/22/2024
2.1.527 456 10/22/2024
2.1.526 6,454 10/18/2024
2.1.525 1,062 10/17/2024
2.1.524 4,117 10/15/2024
2.1.523 1,572 10/15/2024
2.1.522 78 10/14/2024
2.1.521 5,090 10/12/2024
2.1.520 626 10/11/2024
2.1.519 80 10/11/2024
2.1.518 450 10/11/2024
2.1.517 2,891 10/11/2024
2.1.516 6,307 10/9/2024
2.1.515 358 10/9/2024
2.1.514 76 10/9/2024
2.1.513 1,941 10/8/2024
2.1.512 116 10/8/2024
2.1.511 2,192 10/8/2024
2.1.510 121 10/8/2024
2.1.509 73 10/8/2024
2.1.508 3,903 10/8/2024
2.1.507 6,115 10/3/2024
2.1.506 84 10/3/2024
2.1.505 1,077 10/3/2024
2.1.504 1,886 10/3/2024
2.1.503 1,380 10/3/2024
2.1.502 5,691 10/2/2024
2.1.501 80 10/2/2024
2.1.500 1,788 10/2/2024
2.1.499 975 10/2/2024
2.1.498 4,145 10/1/2024
2.1.497 670 10/1/2024
2.1.496 84 10/1/2024
2.1.495 2,595 10/1/2024
2.1.494 81 10/1/2024
2.1.493 122 10/1/2024
2.1.492 5,287 9/29/2024
2.1.491 1,350 9/29/2024
2.1.490 81 9/29/2024
2.1.489 1,191 9/29/2024
2.1.488 79 9/29/2024
2.1.487 2,483 9/29/2024
2.1.486 4,921 9/27/2024
2.1.485 752 9/27/2024
2.1.484 3,095 9/27/2024
2.1.483 89 9/27/2024
2.1.482 421 9/27/2024
2.1.481 2,134 9/27/2024
2.1.480 3,129 9/26/2024
2.1.479 3,440 9/26/2024
2.1.478 2,325 9/26/2024
2.1.477 2,132 9/26/2024
2.1.476 3,756 9/26/2024
2.1.475 84 9/26/2024
2.1.474 5,504 9/23/2024
2.1.473 1,274 9/23/2024
2.1.472 929 9/23/2024
2.1.471 1,103 9/23/2024
2.1.470 79 9/23/2024
2.1.469 1,519 9/23/2024
2.1.468 77 9/23/2024
2.1.467 4,619 9/23/2024
2.1.466 83 9/23/2024
2.1.465 694 9/23/2024
2.1.464 92 9/23/2024
2.1.463 81 9/23/2024
2.1.462 853 9/23/2024
2.1.461 9,022 9/18/2024
2.1.460 229 9/17/2024
2.1.459 1,177 9/17/2024
2.1.458 1,684 9/17/2024
2.1.457 84 9/17/2024
2.1.456 1,772 9/17/2024
2.1.455 435 9/17/2024
2.1.454 3,225 9/17/2024
2.1.453 513 9/17/2024
2.1.452 173 9/17/2024
2.1.451 2,618 9/17/2024
2.1.450 7,415 9/16/2024
2.1.449 694 9/16/2024
2.1.448 4,931 9/12/2024
2.1.447 2,893 9/12/2024
2.1.446 1,285 9/11/2024
2.1.445 1,508 9/11/2024
2.1.443 3,694 9/11/2024
2.1.442 968 9/11/2024
2.1.441 936 9/11/2024
2.1.440 2,268 9/11/2024
2.1.439 8,043 9/10/2024
2.1.438 106 9/10/2024
2.1.437 1,128 9/10/2024
2.1.436 100 9/10/2024
2.1.434 2,886 9/10/2024
2.1.433 578 9/9/2024
2.1.432 1,977 9/9/2024
2.1.430 1,519 9/9/2024
2.1.428 124 9/9/2024
2.1.427 443 9/9/2024
2.1.426 13,202 9/7/2024
2.1.425 114 9/7/2024
2.1.424 4,952 9/6/2024
2.1.423 345 9/6/2024
2.1.422 2,181 9/6/2024
2.1.421 98 9/5/2024
2.1.420 109 9/5/2024
2.1.419 2,359 9/5/2024
2.1.418 1,120 9/5/2024
2.1.417 100 9/5/2024
2.1.416 1,123 9/5/2024
2.1.415 412 9/5/2024
2.1.414 100 9/5/2024
2.1.413 5,000 9/5/2024
2.1.412 178 9/5/2024
2.1.411 106 9/5/2024
2.1.410 2,229 9/4/2024
2.1.409 7,942 9/3/2024
2.1.408 93 9/3/2024
2.1.407 85 9/3/2024
2.1.406 3,974 9/3/2024
2.1.405 137 9/3/2024
2.1.404 2,450 9/3/2024
2.1.403 5,239 8/29/2024
2.1.402 2,506 8/29/2024
2.1.401 2,851 8/26/2024
2.1.400 91 8/26/2024
2.1.399 4,901 8/21/2024
2.1.398 594 8/21/2024
2.1.397 115 8/21/2024
2.1.396 2,532 8/21/2024
2.1.395 129 8/20/2024
2.1.394 117 8/20/2024
2.1.393 451 8/20/2024
2.1.392 2,937 8/20/2024
2.1.391 400 8/20/2024
2.1.390 103 8/20/2024
2.1.389 2,624 8/20/2024
2.1.388 107 8/20/2024
2.1.387 1,184 8/20/2024
2.1.386 2,863 8/19/2024
2.1.385 4,726 8/15/2024
2.1.384 2,085 8/15/2024
2.1.383 4,769 8/14/2024
2.1.382 142 8/13/2024
2.1.381 5,618 8/7/2024
2.1.380 260 8/6/2024
2.1.379 2,656 8/6/2024
2.1.378 4,893 8/1/2024
2.1.377 313 8/1/2024
2.1.376 84 8/1/2024
2.1.374 1,117 8/1/2024
2.1.373 5,761 7/25/2024
2.1.372 80 7/25/2024
2.1.371 707 7/25/2024
2.1.370 292 7/25/2024
2.1.369 343 7/25/2024
2.1.368 168 7/25/2024
2.1.367 369 7/24/2024
2.1.366 125 7/24/2024
2.1.365 192 7/24/2024
2.1.364 295 7/24/2024
2.1.363 7,888 7/20/2024
2.1.362 1,426 7/20/2024
2.1.361 4,947 7/14/2024
2.1.360 1,513 7/14/2024
2.1.359 89 7/14/2024
2.1.358 1,477 7/14/2024
2.1.357 4,265 7/10/2024
2.1.355 771 7/10/2024
2.1.354 1,163 7/10/2024
2.1.353 106 7/10/2024
2.1.352 1,884 7/10/2024
2.1.351 107 7/10/2024
2.1.350 87 7/10/2024
2.1.349 147 7/10/2024
2.1.348 90 7/10/2024
2.1.347 2,020 7/10/2024
2.1.346 106 7/10/2024
2.1.345 796 7/10/2024
2.1.344 94 7/10/2024
2.1.343 192 7/9/2024
2.1.342 84 7/9/2024
2.1.339 1,940 7/9/2024
2.1.338 471 7/9/2024
2.1.337 3,972 7/9/2024
2.1.336 1,054 7/9/2024
2.1.335 97 7/9/2024
2.1.334 2,549 7/9/2024
2.1.333 101 7/9/2024
2.1.332 4,212 7/9/2024
2.1.331 90 7/9/2024
2.1.330 2,482 7/9/2024
2.1.329 78 7/9/2024
2.1.328 1,045 7/9/2024
2.1.327 693 7/8/2024
2.1.326 943 7/8/2024
2.1.325 107 7/8/2024
2.1.324 102 7/8/2024
2.1.323 4,801 7/8/2024
2.1.322 1,592 7/8/2024
2.1.321 109 7/8/2024
2.1.320 2,254 7/7/2024
2.1.319 102 7/7/2024
2.1.318 112 7/7/2024
2.1.317 93 7/7/2024
2.1.316 1,106 7/7/2024
2.1.315 2,130 7/7/2024
2.1.314 1,824 7/7/2024
2.1.313 196 7/7/2024
2.1.312 3,332 7/5/2024
2.1.311 3,833 7/3/2024
2.1.310 3,001 7/3/2024
2.1.309 363 7/3/2024
2.1.308 3,854 7/2/2024
2.1.307 1,817 6/30/2024
2.1.306 2,213 6/28/2024
2.1.305 5,343 6/22/2024
2.1.304 4,822 6/15/2024
2.1.303 4,045 6/14/2024
2.1.302 5,823 6/1/2024
2.1.301 1,548 6/1/2024
2.1.300 565 6/1/2024
2.1.299 5,766 5/31/2024
2.1.298 3,656 5/29/2024
2.1.297 2,985 5/28/2024
2.1.296 2,404 5/27/2024
2.1.295 4,769 5/26/2024
2.1.294 1,988 5/26/2024
2.1.293 463 5/26/2024
2.1.292 2,472 5/25/2024
2.1.291 1,343 5/25/2024
2.1.290 111 5/25/2024
2.1.289 104 5/25/2024
2.1.288 655 5/25/2024
2.1.287 105 5/25/2024
2.1.286 380 5/25/2024
2.1.285 115 5/25/2024
2.1.284 105 5/25/2024
2.1.283 7,320 5/23/2024
2.1.282 508 5/23/2024
2.1.281 245 5/22/2024
2.1.280 3,585 5/22/2024
2.1.279 99 5/22/2024
2.1.278 111 5/22/2024
2.1.277 114 5/22/2024
2.1.276 2,086 5/22/2024
2.1.275 3,343 5/18/2024
2.1.274 1,867 5/18/2024
2.1.273 1,775 5/17/2024
2.1.272 94 5/17/2024
2.1.271 2,689 5/16/2024
2.1.270 410 5/15/2024
2.1.269 2,696 5/15/2024
2.1.268 4,395 5/12/2024
2.1.267 2,693 5/3/2024
2.1.266 1,112 4/30/2024
2.1.265 1,717 4/29/2024
2.1.264 1,861 4/29/2024
2.1.263 2,602 4/28/2024
2.1.262 1,437 4/28/2024
2.1.261 1,066 4/28/2024
2.1.260 1,717 4/28/2024
2.1.259 864 4/28/2024
2.1.258 96 4/28/2024
2.1.257 4,097 4/27/2024
2.1.256 109 4/27/2024
2.1.255 4,333 4/19/2024
2.1.254 4,008 4/18/2024
2.1.253 3,379 4/12/2024
2.1.252 1,115 4/12/2024
2.1.251 701 4/12/2024
2.1.250 832 4/12/2024
2.1.249 172 4/12/2024
2.1.248 92 4/12/2024
2.1.247 964 4/12/2024
2.1.246 283 4/12/2024
2.1.245 1,616 4/11/2024
2.1.244 3,651 4/10/2024
2.1.243 1,092 4/9/2024
2.1.242 3,102 4/2/2024
2.1.241 870 4/1/2024
2.1.240 2,038 3/29/2024
2.1.239 1,785 3/25/2024
2.1.238 273 3/25/2024
2.1.237 3,263 3/20/2024
2.1.236 2,110 3/19/2024
2.1.235 499 3/19/2024
2.1.234 2,279 3/18/2024
2.1.233 1,367 3/18/2024
2.1.232 1,352 3/15/2024
2.1.231 2,306 3/13/2024
2.1.230 1,065 3/13/2024
2.1.229 630 3/13/2024
2.1.228 727 3/13/2024
2.1.227 117 3/13/2024
2.1.226 518 3/13/2024
2.1.225 122 3/13/2024
2.1.224 127 3/13/2024
2.1.223 1,622 3/12/2024
2.1.222 2,784 3/11/2024
2.1.221 2,414 3/11/2024
2.1.220 1,575 3/10/2024
2.1.219 1,838 3/8/2024
2.1.218 1,026 3/8/2024
2.1.217 1,520 3/8/2024
2.1.216 2,047 3/6/2024
2.1.215 1,964 3/4/2024
2.1.214 1,366 3/4/2024
2.1.213 2,515 3/2/2024
2.1.212 1,173 3/2/2024
2.1.211 384 3/2/2024
2.1.210 328 3/2/2024
2.1.209 449 3/2/2024
2.1.208 3,372 2/29/2024
2.1.207 617 2/29/2024
2.1.206 316 2/29/2024
2.1.205 3,254 2/26/2024
2.1.204 1,460 2/25/2024
2.1.203 2,554 2/23/2024
2.1.202 1,859 2/22/2024
2.1.201 917 2/22/2024
2.1.200 398 2/21/2024
2.1.199 1,160 2/21/2024
2.1.198 269 2/21/2024
2.1.197 736 2/21/2024
2.1.196 108 2/21/2024
2.1.195 1,202 2/21/2024
2.1.194 383 2/21/2024
2.1.193 116 2/21/2024
2.1.192 115 2/21/2024
2.1.191 570 2/21/2024
2.1.190 93 2/21/2024
2.1.189 2,586 2/20/2024
2.1.188 681 2/20/2024
2.1.187 615 2/20/2024
2.1.186 723 2/20/2024
2.1.185 2,058 2/19/2024
2.1.184 1,837 2/17/2024
2.1.183 862 2/16/2024
2.1.182 828 2/16/2024
2.1.181 1,299 2/16/2024
2.1.180 98 2/16/2024
2.1.179 605 2/16/2024
2.1.178 109 2/16/2024
2.1.177 110 2/16/2024
2.1.176 518 2/16/2024
2.1.175 94 2/16/2024
2.1.174 3,245 2/13/2024
2.1.173 1,337 2/13/2024
2.1.172 1,058 2/13/2024
2.1.171 433 2/13/2024
2.1.170 604 2/13/2024
2.1.169 1,903 2/12/2024
2.1.168 489 2/11/2024
2.1.167 1,484 2/11/2024
2.1.166 819 2/11/2024
2.1.165 2,701 2/10/2024
2.1.164 525 2/9/2024
2.1.163 123 2/9/2024
2.1.162 1,525 2/9/2024
2.1.161 1,629 2/9/2024
2.1.160 367 2/8/2024
2.1.159 1,162 2/8/2024
2.1.158 815 2/8/2024
2.1.157 1,413 2/8/2024
2.1.156 110 2/8/2024
2.1.155 1,824 2/7/2024
2.1.154 423 2/7/2024
2.1.153 579 2/7/2024
2.1.152 1,238 2/7/2024
2.1.151 361 2/6/2024
2.1.150 119 2/6/2024
2.1.149 112 2/6/2024
2.1.148 2,714 2/5/2024
2.1.147 1,500 2/4/2024
2.1.146 2,046 2/2/2024
2.1.145 1,883 1/31/2024
2.1.144 2,103 1/29/2024
2.1.143 1,328 1/29/2024
2.1.142 329 1/29/2024
2.1.141 1,451 1/28/2024
2.1.140 434 1/28/2024
2.1.139 288 1/28/2024
2.1.138 522 1/28/2024
2.1.137 1,890 1/28/2024
2.1.136 906 1/28/2024
2.1.135 271 1/27/2024
2.1.134 895 1/27/2024
2.1.133 1,137 1/27/2024
2.1.132 1,154 1/27/2024
2.1.131 139 1/27/2024
2.1.130 679 1/27/2024
2.1.129 1,032 1/26/2024
2.1.128 204 1/26/2024
2.1.127 852 1/26/2024
2.1.126 1,101 1/26/2024
2.1.125 1,605 1/26/2024
2.1.124 859 1/25/2024
2.1.123 1,076 1/25/2024
2.1.122 437 1/25/2024
2.1.121 892 1/25/2024
2.1.120 501 1/25/2024
2.1.119 2,542 1/19/2024
2.1.118 2,182 1/15/2024
2.1.117 481 1/15/2024
2.1.116 1,189 1/15/2024
2.1.115 116 1/15/2024
2.1.114 543 1/15/2024
2.1.113 1,347 1/15/2024
2.1.112 2,513 1/14/2024
2.1.111 1,577 1/13/2024
2.1.110 1,801 1/12/2024
2.1.109 2,015 1/11/2024
2.1.108 2,596 1/7/2024
2.1.107 2,069 1/5/2024
2.1.106 468 1/5/2024
2.1.105 125 1/5/2024
2.1.104 130 1/5/2024
2.1.103 1,457 1/5/2024
2.1.102 130 1/5/2024
2.1.101 2,725 1/1/2024
2.1.100 2,187 12/28/2023
2.1.99 723 12/28/2023
2.1.98 481 12/28/2023
2.1.97 121 12/28/2023
2.1.96 117 12/28/2023
2.1.95 698 12/27/2023
2.1.94 127 12/27/2023
2.1.93 453 12/27/2023
2.1.92 123 12/27/2023
2.1.91 125 12/27/2023
2.1.90 2,184 12/25/2023
2.1.89 338 12/25/2023
2.1.88 759 12/25/2023
2.1.87 126 12/25/2023
2.1.86 604 12/25/2023
2.1.85 117 12/25/2023
2.1.84 552 12/25/2023
2.1.83 123 12/25/2023
2.1.82 1,618 12/24/2023
2.1.81 1,051 12/23/2023
2.1.80 845 12/23/2023
2.1.79 293 12/23/2023
2.1.78 528 12/23/2023
2.1.77 117 12/23/2023
2.1.76 109 12/23/2023
2.1.75 1,057 12/23/2023
2.1.74 108 12/23/2023
2.1.73 1,374 12/19/2023
2.1.72 206 12/19/2023
2.1.71 3,035 12/11/2023
2.1.70 707 12/10/2023
2.1.69 106 12/10/2023
2.1.68 472 12/10/2023
2.1.67 1,387 12/10/2023
2.1.66 357 12/9/2023
2.1.65 348 12/9/2023
2.1.64 281 12/9/2023
2.1.63 120 12/9/2023
2.1.62 251 12/9/2023
2.1.61 186 12/9/2023
2.1.60 118 12/9/2023
2.1.59 1,054 12/9/2023
2.1.58 113 12/9/2023
2.1.57 1,483 12/6/2023
2.1.56 379 12/6/2023
2.1.55 232 12/6/2023
2.1.54 259 12/6/2023
2.1.53 905 12/5/2023
2.1.52 370 12/5/2023
2.1.51 335 12/5/2023
2.1.50 372 12/5/2023
2.1.49 122 12/5/2023
2.1.48 330 12/5/2023
2.1.47 267 12/5/2023
2.1.46 120 12/4/2023
2.1.45 123 12/4/2023
2.1.44 319 12/4/2023
2.1.43 133 12/4/2023
2.1.42 986 12/4/2023
2.1.41 103 12/4/2023
2.1.40 1,152 11/27/2023
2.1.39 500 11/26/2023
2.1.38 205 11/26/2023
2.1.37 615 11/23/2023
2.1.36 671 11/23/2023
2.1.35 623 11/23/2023
2.1.34 121 11/23/2023
2.1.33 384 11/23/2023
2.1.32 128 11/23/2023
2.1.31 1,061 11/20/2023
2.1.30 1,026 11/20/2023
2.1.29 774 11/19/2023
2.1.28 246 11/19/2023
2.1.27 444 11/19/2023
2.1.26 482 11/19/2023
2.1.25 479 11/19/2023
2.1.24 110 11/19/2023
2.1.23 210 11/18/2023
2.1.22 963 11/18/2023
2.1.21 366 11/18/2023
2.1.20 521 11/18/2023
2.1.19 120 11/18/2023
2.1.18 295 11/18/2023
2.1.17 117 11/18/2023
2.1.16 579 11/17/2023
2.1.15 503 11/17/2023
2.1.14 115 11/17/2023
2.1.13 409 11/17/2023
2.1.12 286 11/17/2023
2.1.11 476 11/17/2023
2.1.10 116 11/17/2023
2.1.9 499 11/17/2023
2.1.8 115 11/17/2023
2.1.7 133 11/17/2023
2.1.6 310 11/17/2023
2.1.5 360 11/16/2023
2.0.101 2,051 11/15/2023
2.0.100 111 11/15/2023
2.0.99 121 11/15/2023
2.0.4 121 11/16/2023
2.0.3 125 11/16/2023
2.0.2 116 11/16/2023
2.0.1 112 11/16/2023
1.0.98 599 11/14/2023
1.0.97 740 11/13/2023
1.0.96 107 11/13/2023
1.0.95 560 11/10/2023
1.0.94 110 11/10/2023
1.0.93 910 11/9/2023
1.0.92 116 11/9/2023
1.0.91 1,007 11/7/2023
1.0.90 108 11/7/2023
1.0.89 493 11/6/2023
1.0.88 116 11/6/2023
1.0.87 586 11/3/2023
1.0.86 122 11/3/2023
1.0.85 870 11/2/2023
1.0.84 115 11/2/2023
1.0.83 589 11/1/2023
1.0.82 1,432 10/26/2023
1.0.81 1,281 10/19/2023
1.0.80 130 10/19/2023
1.0.79 765 10/18/2023
1.0.78 149 10/18/2023
1.0.77 718 10/17/2023
1.0.76 136 10/17/2023
1.0.75 625 10/16/2023
1.0.74 141 10/16/2023
1.0.73 686 10/13/2023
1.0.72 326 10/12/2023
1.0.71 1,713 9/20/2023
1.0.70 649 9/19/2023
1.0.69 664 9/18/2023
1.0.68 127 9/18/2023
1.0.67 876 9/14/2023
1.0.66 1,481 8/31/2023
1.0.65 138 8/31/2023
1.0.64 775 8/30/2023
1.0.63 143 8/30/2023
1.0.62 146 8/30/2023
1.0.61 823 8/28/2023
1.0.60 671 8/25/2023
1.0.59 136 8/25/2023
1.0.58 468 8/24/2023
1.0.57 1,426 8/21/2023
1.0.56 779 8/18/2023
1.0.55 730 8/17/2023
1.0.54 141 8/17/2023
1.0.53 1,883 8/10/2023
1.0.52 550 8/9/2023
1.0.51 657 8/8/2023
1.0.50 629 8/7/2023
1.0.49 163 8/7/2023
1.0.48 2,424 7/13/2023
1.0.47 859 7/11/2023
1.0.46 708 7/10/2023
1.0.45 671 7/7/2023
1.0.44 157 7/7/2023
1.0.43 2,085 6/30/2023
1.0.42 1,040 6/29/2023
1.0.41 582 6/28/2023
1.0.40 1,488 6/26/2023
1.0.39 754 6/23/2023
1.0.38 1,063 6/21/2023
1.0.37 1,391 6/15/2023
1.0.36 457 6/14/2023
1.0.35 1,727 6/9/2023
1.0.34 798 6/8/2023
1.0.33 1,568 6/7/2023
1.0.32 156 6/7/2023
1.0.31 1,186 6/6/2023
1.0.30 1,121 6/5/2023
1.0.29 1,322 6/2/2023
1.0.28 140 6/2/2023
1.0.27 1,210 6/1/2023
1.0.26 585 5/31/2023
1.0.25 469 5/31/2023
1.0.24 151 5/31/2023
1.0.23 1,440 5/30/2023
1.0.22 1,505 5/26/2023
1.0.21 659 5/25/2023
1.0.20 138 5/25/2023
1.0.19 816 5/24/2023
1.0.18 146 5/24/2023
1.0.17 432 5/23/2023
1.0.13 1,452 5/22/2023
1.0.12 1,173 5/18/2023
1.0.11 577 5/17/2023
1.0.10 1,535 5/1/2023
1.0.9 1,010 4/25/2023
1.0.8 461 4/24/2023
1.0.7 985 4/21/2023
1.0.6 1,944 4/13/2023
1.0.5 576 4/12/2023
1.0.4 1,002 4/8/2023
1.0.3 176 4/8/2023
1.0.2 574 4/8/2023
1.0.1 179 4/8/2023