Soenneker.Utils.SingletonDictionary 3.0.1010

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.1010
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1010
                    
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.1010" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="3.0.1010" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.SingletonDictionary" />
                    
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.SingletonDictionary --version 3.0.1010
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1010"
                    
#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.
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1010
                    
Install Soenneker.Utils.SingletonDictionary as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1010
                    
Install Soenneker.Utils.SingletonDictionary 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.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 (9)

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.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1018 1,442 4/1/2025
3.0.1017 1,906 4/1/2025
3.0.1016 28 4/1/2025
3.0.1015 4,032 4/1/2025
3.0.1014 1,952 3/31/2025
3.0.1013 238 3/31/2025
3.0.1012 3,387 3/31/2025
3.0.1011 6,089 3/29/2025
3.0.1010 980 3/29/2025
3.0.1009 1,308 3/29/2025
3.0.1008 46 3/29/2025
3.0.1007 4,157 3/27/2025
3.0.1006 3,793 3/25/2025
3.0.1005 570 3/25/2025
3.0.1004 3,050 3/25/2025
3.0.1003 5,906 3/21/2025
3.0.1002 2,510 3/21/2025
3.0.1001 5,986 3/18/2025
3.0.1000 3,347 3/18/2025
3.0.999 6,286 3/15/2025
3.0.998 1,734 3/15/2025
3.0.997 49 3/15/2025
3.0.996 5,994 3/12/2025
3.0.995 2,123 3/12/2025
3.0.994 147 3/12/2025
3.0.993 367 3/12/2025
3.0.992 132 3/12/2025
3.0.991 2,654 3/11/2025
3.0.990 144 3/11/2025
3.0.989 1,240 3/11/2025
3.0.988 145 3/11/2025
3.0.987 2,528 3/11/2025
3.0.986 150 3/11/2025
3.0.985 2,613 3/11/2025
3.0.984 138 3/11/2025
3.0.983 1,588 3/11/2025
3.0.982 140 3/11/2025
3.0.981 8,802 3/7/2025
3.0.980 2,567 3/7/2025
3.0.979 6,070 3/2/2025
3.0.978 1,010 3/2/2025
3.0.977 621 3/2/2025
3.0.976 92 3/2/2025
3.0.975 4,270 3/2/2025
3.0.974 81 3/2/2025
3.0.973 3,136 3/1/2025
3.0.972 78 3/1/2025
3.0.971 4,237 3/1/2025
3.0.970 99 3/1/2025
3.0.969 80 3/1/2025
3.0.968 380 3/1/2025
3.0.967 78 3/1/2025
3.0.966 5,756 3/1/2025
3.0.965 4,731 2/26/2025
3.0.964 795 2/26/2025
3.0.963 2,289 2/25/2025
3.0.962 74 2/25/2025
3.0.961 819 2/25/2025
3.0.960 76 2/25/2025
3.0.959 103 2/25/2025
3.0.958 1,799 2/25/2025
3.0.957 4,792 2/24/2025
3.0.956 4,433 2/23/2025
3.0.955 1,054 2/22/2025
3.0.954 78 2/22/2025
3.0.953 7,499 2/22/2025
3.0.952 2,155 2/22/2025
3.0.951 1,016 2/22/2025
3.0.950 734 2/22/2025
3.0.949 116 2/22/2025
3.0.948 93 2/22/2025
3.0.947 78 2/22/2025
3.0.946 4,580 2/21/2025
3.0.945 81 2/21/2025
3.0.944 5,442 2/21/2025
3.0.943 4,500 2/19/2025
3.0.942 1,584 2/19/2025
3.0.941 697 2/19/2025
3.0.940 84 2/19/2025
3.0.939 377 2/18/2025
3.0.938 82 2/18/2025
3.0.937 5,406 2/18/2025
3.0.936 81 2/18/2025
3.0.935 2,768 2/18/2025
3.0.934 6,354 2/16/2025
3.0.933 1,498 2/14/2025
3.0.932 782 2/14/2025
3.0.931 680 2/13/2025
3.0.930 2,348 2/13/2025
3.0.929 247 2/13/2025
3.0.928 3,631 2/13/2025
3.0.927 3,606 2/12/2025
3.0.926 1,431 2/12/2025
3.0.925 127 2/12/2025
3.0.924 83 2/12/2025
3.0.923 1,946 2/12/2025
3.0.922 315 2/12/2025
3.0.921 92 2/12/2025
3.0.920 164 2/12/2025
3.0.919 163 2/12/2025
3.0.918 86 2/12/2025
3.0.917 144 2/11/2025
3.0.916 3,346 2/11/2025
3.0.915 3,629 2/11/2025
3.0.914 2,146 2/11/2025
3.0.913 90 2/11/2025
3.0.912 371 2/11/2025
3.0.911 1,691 2/10/2025
3.0.910 91 2/10/2025
3.0.909 755 2/10/2025
3.0.908 89 2/10/2025
3.0.907 6,271 2/10/2025
3.0.906 90 2/10/2025
3.0.905 1,130 2/9/2025
3.0.904 5,560 2/9/2025
3.0.903 85 2/9/2025
3.0.902 7,063 2/8/2025
3.0.901 87 2/8/2025
3.0.900 1,646 2/7/2025
3.0.899 79 2/7/2025
3.0.898 1,547 2/7/2025
3.0.897 86 2/7/2025
3.0.896 615 2/7/2025
3.0.895 385 2/7/2025
3.0.894 91 2/7/2025
3.0.893 300 2/7/2025
3.0.892 85 2/7/2025
3.0.891 1,007 2/7/2025
3.0.890 82 2/7/2025
3.0.889 90 2/7/2025
3.0.888 10,524 2/7/2025
3.0.887 6,124 2/5/2025
3.0.886 569 2/5/2025
3.0.885 863 2/5/2025
3.0.884 261 2/5/2025
3.0.883 956 2/5/2025
3.0.882 629 2/5/2025
3.0.881 2,880 2/5/2025
3.0.880 91 2/5/2025
3.0.879 10,693 1/28/2025
3.0.878 611 1/28/2025
3.0.877 1,708 1/28/2025
3.0.876 195 1/28/2025
3.0.875 3,614 1/28/2025
3.0.874 602 1/27/2025
3.0.873 72 1/27/2025
3.0.872 155 1/27/2025
3.0.871 241 1/27/2025
3.0.870 77 1/27/2025
3.0.869 4,662 1/27/2025
3.0.868 4,329 1/26/2025
3.0.867 895 1/26/2025
3.0.866 152 1/26/2025
3.0.865 976 1/26/2025
3.0.864 1,284 1/25/2025
3.0.863 83 1/25/2025
3.0.862 5,483 1/25/2025
3.0.861 926 1/25/2025
3.0.860 271 1/25/2025
3.0.859 76 1/25/2025
3.0.858 1,757 1/25/2025
3.0.857 1,225 1/25/2025
3.0.856 6,345 1/24/2025
3.0.855 1,443 1/24/2025
3.0.854 73 1/24/2025
3.0.853 1,884 1/24/2025
3.0.852 292 1/24/2025
3.0.851 187 1/24/2025
3.0.850 2,975 1/24/2025
3.0.849 77 1/24/2025
3.0.848 456 1/23/2025
3.0.847 76 1/23/2025
3.0.846 535 1/23/2025
3.0.845 76 1/23/2025
3.0.844 7,525 1/22/2025
3.0.843 942 1/21/2025
3.0.842 922 1/21/2025
3.0.841 535 1/21/2025
3.0.840 80 1/21/2025
3.0.839 562 1/21/2025
3.0.838 693 1/21/2025
3.0.837 5,199 1/21/2025
3.0.836 508 1/21/2025
3.0.835 964 1/21/2025
3.0.834 83 1/21/2025
3.0.833 763 1/21/2025
3.0.832 73 1/21/2025
3.0.831 2,054 1/21/2025
3.0.830 72 1/21/2025
3.0.829 361 1/20/2025
3.0.828 2,661 1/20/2025
3.0.827 208 1/20/2025
3.0.826 1,940 1/20/2025
3.0.825 82 1/20/2025
3.0.824 1,021 1/20/2025
3.0.823 81 1/20/2025
3.0.822 88 1/20/2025
3.0.821 74 1/20/2025
3.0.820 327 1/20/2025
3.0.819 81 1/20/2025
3.0.818 82 1/20/2025
3.0.817 5,355 1/19/2025
3.0.816 84 1/19/2025
3.0.815 4,951 1/19/2025
3.0.814 1,522 1/19/2025
3.0.813 97 1/19/2025
3.0.812 352 1/19/2025
3.0.811 71 1/19/2025
3.0.810 1,779 1/19/2025
3.0.809 78 1/19/2025
3.0.808 3,068 1/18/2025
3.0.807 80 1/18/2025
3.0.806 6,854 1/17/2025
3.0.805 91 1/17/2025
3.0.804 556 1/17/2025
3.0.803 875 1/17/2025
3.0.802 3,972 1/16/2025
3.0.801 1,370 1/16/2025
3.0.800 1,983 1/16/2025
3.0.799 515 1/16/2025
3.0.798 1,132 1/16/2025
3.0.797 965 1/16/2025
3.0.796 71 1/16/2025
3.0.795 4,348 1/15/2025
3.0.794 74 1/15/2025
3.0.793 2,674 1/15/2025
3.0.792 74 1/15/2025
3.0.791 118 1/15/2025
3.0.790 3,152 1/15/2025
3.0.789 66 1/15/2025
3.0.788 2,638 1/15/2025
3.0.787 51 1/15/2025
3.0.786 412 1/15/2025
3.0.785 51 1/15/2025
3.0.784 1,522 1/15/2025
3.0.783 50 1/15/2025
3.0.782 191 1/14/2025
3.0.781 60 1/14/2025
3.0.780 69 1/14/2025
3.0.779 2,919 1/14/2025
3.0.778 493 1/14/2025
3.0.777 61 1/14/2025
3.0.776 1,097 1/14/2025
3.0.775 67 1/14/2025
3.0.774 4,937 1/13/2025
3.0.773 1,509 1/13/2025
3.0.772 1,272 1/13/2025
3.0.771 66 1/13/2025
3.0.770 4,807 1/11/2025
3.0.769 1,920 1/11/2025
3.0.768 91 1/11/2025
3.0.767 2,035 1/11/2025
3.0.766 81 1/11/2025
3.0.765 1,643 1/10/2025
3.0.764 1,781 1/10/2025
3.0.763 79 1/10/2025
3.0.762 735 1/10/2025
3.0.761 83 1/10/2025
3.0.760 78 1/10/2025
3.0.759 6,216 1/3/2025
3.0.758 442 1/3/2025
3.0.757 961 1/3/2025
3.0.756 110 1/3/2025
3.0.755 1,392 1/3/2025
3.0.754 91 1/3/2025
3.0.753 1,037 1/3/2025
3.0.752 997 1/2/2025
3.0.751 85 1/2/2025
3.0.750 1,681 1/2/2025
3.0.749 101 1/2/2025
3.0.748 2,803 1/2/2025
3.0.747 85 1/2/2025
3.0.746 91 1/2/2025
3.0.745 4,622 1/1/2025
3.0.744 975 1/1/2025
3.0.743 251 1/1/2025
3.0.742 98 1/1/2025
3.0.741 1,442 1/1/2025
3.0.740 93 1/1/2025
3.0.739 98 1/1/2025
3.0.738 101 1/1/2025
3.0.737 300 12/31/2024
3.0.736 96 12/31/2024
3.0.735 110 12/31/2024
3.0.734 593 12/31/2024
3.0.733 111 12/31/2024
3.0.732 4,520 12/31/2024
3.0.731 104 12/31/2024
3.0.730 4,337 12/31/2024
3.0.729 84 12/31/2024
3.0.728 2,554 12/31/2024
3.0.727 312 12/31/2024
3.0.726 86 12/31/2024
3.0.725 1,301 12/31/2024
3.0.724 87 12/31/2024
3.0.723 8,831 12/28/2024
3.0.722 1,106 12/28/2024
3.0.721 1,200 12/27/2024
3.0.720 92 12/27/2024
3.0.719 2,662 12/27/2024
3.0.718 4,867 12/24/2024
3.0.717 1,228 12/24/2024
3.0.716 921 12/24/2024
3.0.715 787 12/24/2024
3.0.714 1,362 12/24/2024
3.0.713 78 12/24/2024
3.0.712 2,233 12/24/2024
3.0.711 627 12/24/2024
3.0.710 86 12/24/2024
3.0.709 442 12/24/2024
3.0.708 955 12/24/2024
3.0.707 237 12/24/2024
3.0.706 106 12/24/2024
3.0.705 1,033 12/24/2024
3.0.704 86 12/24/2024
3.0.703 1,765 12/23/2024
3.0.702 2,728 12/23/2024
3.0.701 92 12/23/2024
3.0.700 649 12/23/2024
3.0.699 85 12/23/2024
3.0.698 1,810 12/23/2024
3.0.697 90 12/23/2024
3.0.696 1,433 12/23/2024
3.0.695 95 12/23/2024
3.0.694 420 12/22/2024
3.0.693 1,377 12/22/2024
3.0.692 3,977 12/22/2024
3.0.691 95 12/22/2024
3.0.690 1,525 12/22/2024
3.0.689 143 12/22/2024
3.0.688 453 12/22/2024
3.0.687 87 12/22/2024
3.0.686 249 12/22/2024
3.0.685 87 12/22/2024
3.0.684 6,736 12/22/2024
3.0.683 86 12/22/2024
3.0.682 1,048 12/21/2024
3.0.681 250 12/21/2024
3.0.680 92 12/21/2024
3.0.679 469 12/21/2024
3.0.678 754 12/21/2024
3.0.677 85 12/21/2024
3.0.676 3,752 12/21/2024
3.0.675 371 12/21/2024
3.0.674 85 12/21/2024
3.0.673 2,514 12/21/2024
3.0.672 663 12/21/2024
3.0.671 91 12/21/2024
3.0.670 1,562 12/20/2024
3.0.669 94 12/20/2024
3.0.668 87 12/20/2024
3.0.667 3,663 12/20/2024
3.0.666 1,121 12/20/2024
3.0.665 201 12/20/2024
3.0.664 3,428 12/19/2024
3.0.663 411 12/19/2024
3.0.662 1,997 12/18/2024
3.0.661 93 12/18/2024
3.0.660 6,553 12/17/2024
3.0.659 196 12/17/2024
3.0.658 674 12/16/2024
3.0.657 96 12/16/2024
3.0.656 126 12/16/2024
3.0.655 84 12/16/2024
3.0.654 6,458 12/10/2024
3.0.653 980 12/10/2024
3.0.652 362 12/9/2024
3.0.651 90 12/9/2024
3.0.650 2,651 12/9/2024
3.0.649 1,350 12/9/2024
3.0.648 84 12/9/2024
3.0.647 3,611 12/9/2024
3.0.646 2,713 12/6/2024
3.0.645 411 12/6/2024
3.0.644 95 12/6/2024
3.0.643 672 12/6/2024
3.0.641 3,855 12/6/2024
3.0.640 2,427 12/6/2024
3.0.639 5,259 12/6/2024
3.0.637 358 12/6/2024
3.0.636 2,504 12/5/2024
3.0.635 3,548 12/5/2024
3.0.634 3,154 12/5/2024
3.0.633 90 12/5/2024
3.0.632 1,722 12/5/2024
3.0.631 1,015 12/5/2024
3.0.630 93 12/5/2024
3.0.629 363 12/5/2024
3.0.628 88 12/5/2024
3.0.627 130 12/5/2024
3.0.626 87 12/5/2024
3.0.625 3,341 12/4/2024
3.0.624 86 12/4/2024
3.0.623 97 12/4/2024
3.0.622 94 12/4/2024
3.0.621 1,698 12/4/2024
3.0.620 281 12/4/2024
3.0.619 396 12/4/2024
3.0.618 3,343 12/3/2024
3.0.617 94 12/3/2024
3.0.616 1,109 12/3/2024
3.0.615 425 12/3/2024
3.0.614 100 12/3/2024
3.0.613 97 12/3/2024
3.0.612 4,018 12/3/2024
3.0.611 91 12/3/2024
3.0.610 3,278 12/3/2024
3.0.609 84 12/3/2024
3.0.608 3,048 12/2/2024
3.0.607 2,628 12/2/2024
3.0.606 1,606 12/2/2024
3.0.605 257 12/2/2024
3.0.604 93 12/2/2024
3.0.603 383 12/2/2024
3.0.602 3,425 12/1/2024
3.0.601 94 12/1/2024
3.0.600 1,856 12/1/2024
3.0.599 181 12/1/2024
3.0.598 3,440 12/1/2024
3.0.597 100 12/1/2024
3.0.596 3,550 11/29/2024
3.0.595 1,036 11/29/2024
3.0.594 5,429 11/21/2024
3.0.593 278 11/21/2024
3.0.592 4,492 11/20/2024
3.0.591 318 11/20/2024
3.0.590 93 11/20/2024
3.0.589 98 11/20/2024
3.0.588 404 11/20/2024
3.0.587 140 11/20/2024
3.0.586 88 11/20/2024
3.0.585 2,013 11/20/2024
3.0.584 2,744 11/19/2024
3.0.583 87 11/19/2024
3.0.582 626 11/19/2024
3.0.581 88 11/19/2024
3.0.580 2,660 11/19/2024
3.0.579 84 11/19/2024
3.0.578 1,298 11/19/2024
3.0.577 91 11/19/2024
3.0.576 8,498 11/14/2024
3.0.575 123 11/14/2024
3.0.574 494 11/14/2024
3.0.573 2,355 11/14/2024
3.0.572 704 11/14/2024
3.0.571 96 11/14/2024
3.0.570 99 11/14/2024
3.0.569 4,125 11/14/2024
3.0.568 101 11/14/2024
3.0.567 97 11/14/2024
3.0.566 3,468 11/14/2024
3.0.565 97 11/14/2024
3.0.564 93 11/14/2024
3.0.563 96 11/14/2024
2.1.562 8,228 11/13/2024
2.1.561 1,356 11/13/2024
2.1.560 3,039 11/13/2024
2.1.559 97 11/13/2024
2.1.558 1,317 11/12/2024
2.1.557 387 11/12/2024
2.1.556 8,228 11/9/2024
2.1.555 349 11/9/2024
2.1.554 92 11/9/2024
2.1.553 1,718 11/9/2024
2.1.552 95 11/9/2024
2.1.551 944 11/8/2024
2.1.550 97 11/8/2024
2.1.549 96 11/8/2024
2.1.548 97 11/8/2024
2.1.547 411 11/8/2024
2.1.546 1,877 11/8/2024
2.1.545 93 11/8/2024
2.1.544 5,439 11/8/2024
2.1.543 89 11/8/2024
2.1.542 11,596 11/1/2024
2.1.541 447 11/1/2024
2.1.540 6,763 10/29/2024
2.1.539 723 10/29/2024
2.1.538 2,821 10/29/2024
2.1.537 615 10/29/2024
2.1.536 5,545 10/28/2024
2.1.535 1,837 10/28/2024
2.1.534 3,995 10/26/2024
2.1.533 691 10/26/2024
2.1.532 8,574 10/22/2024
2.1.531 242 10/22/2024
2.1.530 537 10/22/2024
2.1.529 866 10/22/2024
2.1.528 78 10/22/2024
2.1.527 477 10/22/2024
2.1.526 6,481 10/18/2024
2.1.525 1,073 10/17/2024
2.1.524 4,135 10/15/2024
2.1.523 1,584 10/15/2024
2.1.522 89 10/14/2024
2.1.521 5,113 10/12/2024
2.1.520 638 10/11/2024
2.1.519 92 10/11/2024
2.1.518 462 10/11/2024
2.1.517 2,902 10/11/2024
2.1.516 6,358 10/9/2024
2.1.515 370 10/9/2024
2.1.514 88 10/9/2024
2.1.513 1,957 10/8/2024
2.1.512 129 10/8/2024
2.1.511 2,204 10/8/2024
2.1.510 133 10/8/2024
2.1.509 85 10/8/2024
2.1.508 3,925 10/8/2024
2.1.507 6,138 10/3/2024
2.1.506 93 10/3/2024
2.1.505 1,088 10/3/2024
2.1.504 1,908 10/3/2024
2.1.503 1,397 10/3/2024
2.1.502 5,703 10/2/2024
2.1.501 90 10/2/2024
2.1.500 1,803 10/2/2024
2.1.499 986 10/2/2024
2.1.498 4,157 10/1/2024
2.1.497 686 10/1/2024
2.1.496 101 10/1/2024
2.1.495 2,609 10/1/2024
2.1.494 93 10/1/2024
2.1.493 133 10/1/2024
2.1.492 5,391 9/29/2024
2.1.491 1,362 9/29/2024
2.1.490 94 9/29/2024
2.1.489 1,203 9/29/2024
2.1.488 91 9/29/2024
2.1.487 2,502 9/29/2024
2.1.486 5,056 9/27/2024
2.1.485 764 9/27/2024
2.1.484 3,114 9/27/2024
2.1.483 100 9/27/2024
2.1.482 430 9/27/2024
2.1.481 2,145 9/27/2024
2.1.480 3,141 9/26/2024
2.1.479 3,466 9/26/2024
2.1.478 2,342 9/26/2024
2.1.477 2,152 9/26/2024
2.1.476 3,782 9/26/2024
2.1.475 96 9/26/2024
2.1.474 5,589 9/23/2024
2.1.473 1,283 9/23/2024
2.1.472 938 9/23/2024
2.1.471 1,127 9/23/2024
2.1.470 88 9/23/2024
2.1.469 1,536 9/23/2024
2.1.468 89 9/23/2024
2.1.467 4,645 9/23/2024
2.1.466 94 9/23/2024
2.1.465 703 9/23/2024
2.1.464 103 9/23/2024
2.1.463 90 9/23/2024
2.1.462 866 9/23/2024
2.1.461 9,069 9/18/2024
2.1.460 241 9/17/2024
2.1.459 1,189 9/17/2024
2.1.458 1,698 9/17/2024
2.1.457 95 9/17/2024
2.1.456 1,792 9/17/2024
2.1.455 446 9/17/2024
2.1.454 3,254 9/17/2024
2.1.453 533 9/17/2024
2.1.452 184 9/17/2024
2.1.451 2,629 9/17/2024
2.1.450 7,438 9/16/2024
2.1.449 707 9/16/2024
2.1.448 5,001 9/12/2024
2.1.447 2,905 9/12/2024
2.1.446 1,296 9/11/2024
2.1.445 1,518 9/11/2024
2.1.443 3,701 9/11/2024
2.1.442 983 9/11/2024
2.1.441 944 9/11/2024
2.1.440 2,299 9/11/2024
2.1.439 8,069 9/10/2024
2.1.438 117 9/10/2024
2.1.437 1,140 9/10/2024
2.1.436 111 9/10/2024
2.1.434 2,898 9/10/2024
2.1.433 594 9/9/2024
2.1.432 1,994 9/9/2024
2.1.430 1,536 9/9/2024
2.1.428 133 9/9/2024
2.1.427 453 9/9/2024
2.1.426 13,230 9/7/2024
2.1.425 125 9/7/2024
2.1.424 4,983 9/6/2024
2.1.423 362 9/6/2024
2.1.422 2,196 9/6/2024
2.1.421 109 9/5/2024
2.1.420 120 9/5/2024
2.1.419 2,376 9/5/2024
2.1.418 1,137 9/5/2024
2.1.417 118 9/5/2024
2.1.416 1,133 9/5/2024
2.1.415 423 9/5/2024
2.1.414 111 9/5/2024
2.1.413 5,017 9/5/2024
2.1.412 190 9/5/2024
2.1.411 116 9/5/2024
2.1.410 2,247 9/4/2024
2.1.409 7,982 9/3/2024
2.1.408 102 9/3/2024
2.1.407 96 9/3/2024
2.1.406 3,999 9/3/2024
2.1.405 146 9/3/2024
2.1.404 2,474 9/3/2024
2.1.403 5,268 8/29/2024
2.1.402 2,540 8/29/2024
2.1.401 2,877 8/26/2024
2.1.400 103 8/26/2024
2.1.399 4,916 8/21/2024
2.1.398 602 8/21/2024
2.1.397 125 8/21/2024
2.1.396 2,542 8/21/2024
2.1.395 137 8/20/2024
2.1.394 125 8/20/2024
2.1.393 459 8/20/2024
2.1.392 2,946 8/20/2024
2.1.391 408 8/20/2024
2.1.390 110 8/20/2024
2.1.389 2,635 8/20/2024
2.1.388 112 8/20/2024
2.1.387 1,193 8/20/2024
2.1.386 2,885 8/19/2024
2.1.385 4,747 8/15/2024
2.1.384 2,104 8/15/2024
2.1.383 4,796 8/14/2024
2.1.382 149 8/13/2024
2.1.381 5,665 8/7/2024
2.1.380 268 8/6/2024
2.1.379 2,679 8/6/2024
2.1.378 4,908 8/1/2024
2.1.377 325 8/1/2024
2.1.376 92 8/1/2024
2.1.374 1,126 8/1/2024
2.1.373 5,774 7/25/2024
2.1.372 87 7/25/2024
2.1.371 714 7/25/2024
2.1.370 299 7/25/2024
2.1.369 349 7/25/2024
2.1.368 175 7/25/2024
2.1.367 375 7/24/2024
2.1.366 134 7/24/2024
2.1.365 198 7/24/2024
2.1.364 308 7/24/2024
2.1.363 8,272 7/20/2024
2.1.362 1,439 7/20/2024
2.1.361 4,985 7/14/2024
2.1.360 1,527 7/14/2024
2.1.359 96 7/14/2024
2.1.358 1,489 7/14/2024
2.1.357 4,296 7/10/2024
2.1.355 788 7/10/2024
2.1.354 1,174 7/10/2024
2.1.353 114 7/10/2024
2.1.352 1,894 7/10/2024
2.1.351 116 7/10/2024
2.1.350 102 7/10/2024
2.1.349 168 7/10/2024
2.1.348 100 7/10/2024
2.1.347 2,037 7/10/2024
2.1.346 116 7/10/2024
2.1.345 803 7/10/2024
2.1.344 101 7/10/2024
2.1.343 202 7/9/2024
2.1.342 91 7/9/2024
2.1.339 1,965 7/9/2024
2.1.338 478 7/9/2024
2.1.337 3,996 7/9/2024
2.1.336 1,061 7/9/2024
2.1.335 107 7/9/2024
2.1.334 2,562 7/9/2024
2.1.333 108 7/9/2024
2.1.332 7,070 7/9/2024
2.1.331 97 7/9/2024
2.1.330 2,493 7/9/2024
2.1.329 88 7/9/2024
2.1.328 1,051 7/9/2024
2.1.327 703 7/8/2024
2.1.326 953 7/8/2024
2.1.325 117 7/8/2024
2.1.324 113 7/8/2024
2.1.323 4,827 7/8/2024
2.1.322 1,608 7/8/2024
2.1.321 119 7/8/2024
2.1.320 2,265 7/7/2024
2.1.319 113 7/7/2024
2.1.318 122 7/7/2024
2.1.317 104 7/7/2024
2.1.316 1,139 7/7/2024
2.1.315 2,151 7/7/2024
2.1.314 1,839 7/7/2024
2.1.313 210 7/7/2024
2.1.312 3,366 7/5/2024
2.1.311 3,856 7/3/2024
2.1.310 3,020 7/3/2024
2.1.309 378 7/3/2024
2.1.308 3,884 7/2/2024
2.1.307 1,840 6/30/2024
2.1.306 2,230 6/28/2024
2.1.305 5,365 6/22/2024
2.1.304 4,836 6/15/2024
2.1.303 4,069 6/14/2024
2.1.302 5,862 6/1/2024
2.1.301 1,571 6/1/2024
2.1.300 571 6/1/2024
2.1.299 5,796 5/31/2024
2.1.298 3,678 5/29/2024
2.1.297 3,012 5/28/2024
2.1.296 2,439 5/27/2024
2.1.295 4,794 5/26/2024
2.1.294 1,996 5/26/2024
2.1.293 472 5/26/2024
2.1.292 2,483 5/25/2024
2.1.291 1,363 5/25/2024
2.1.290 120 5/25/2024
2.1.289 113 5/25/2024
2.1.288 667 5/25/2024
2.1.287 114 5/25/2024
2.1.286 394 5/25/2024
2.1.285 125 5/25/2024
2.1.284 115 5/25/2024
2.1.283 7,358 5/23/2024
2.1.282 517 5/23/2024
2.1.281 254 5/22/2024
2.1.280 3,605 5/22/2024
2.1.279 108 5/22/2024
2.1.278 121 5/22/2024
2.1.277 123 5/22/2024
2.1.276 2,100 5/22/2024
2.1.275 3,390 5/18/2024
2.1.274 1,876 5/18/2024
2.1.273 1,784 5/17/2024
2.1.272 103 5/17/2024
2.1.271 2,703 5/16/2024
2.1.270 420 5/15/2024
2.1.269 2,722 5/15/2024
2.1.268 4,420 5/12/2024
2.1.267 2,708 5/3/2024
2.1.266 1,119 4/30/2024
2.1.265 1,729 4/29/2024
2.1.264 1,886 4/29/2024
2.1.263 2,616 4/28/2024
2.1.262 1,454 4/28/2024
2.1.261 1,088 4/28/2024
2.1.260 1,735 4/28/2024
2.1.259 893 4/28/2024
2.1.258 106 4/28/2024
2.1.257 4,122 4/27/2024
2.1.256 119 4/27/2024
2.1.255 4,348 4/19/2024
2.1.254 4,040 4/18/2024
2.1.253 3,399 4/12/2024
2.1.252 1,130 4/12/2024
2.1.251 714 4/12/2024
2.1.250 847 4/12/2024
2.1.249 185 4/12/2024
2.1.248 102 4/12/2024
2.1.247 974 4/12/2024
2.1.246 293 4/12/2024
2.1.245 1,633 4/11/2024
2.1.244 3,686 4/10/2024
2.1.243 1,118 4/9/2024
2.1.242 3,145 4/2/2024
2.1.241 884 4/1/2024
2.1.240 2,061 3/29/2024
2.1.239 1,815 3/25/2024
2.1.238 282 3/25/2024
2.1.237 3,272 3/20/2024
2.1.236 2,120 3/19/2024
2.1.235 514 3/19/2024
2.1.234 2,317 3/18/2024
2.1.233 1,380 3/18/2024
2.1.232 1,361 3/15/2024
2.1.231 2,323 3/13/2024
2.1.230 1,083 3/13/2024
2.1.229 647 3/13/2024
2.1.228 748 3/13/2024
2.1.227 127 3/13/2024
2.1.226 528 3/13/2024
2.1.225 132 3/13/2024
2.1.224 138 3/13/2024
2.1.223 1,642 3/12/2024
2.1.222 2,808 3/11/2024
2.1.221 2,444 3/11/2024
2.1.220 1,601 3/10/2024
2.1.219 1,856 3/8/2024
2.1.218 1,041 3/8/2024
2.1.217 1,528 3/8/2024
2.1.216 2,058 3/6/2024
2.1.215 1,975 3/4/2024
2.1.214 1,397 3/4/2024
2.1.213 2,541 3/2/2024
2.1.212 1,190 3/2/2024
2.1.211 394 3/2/2024
2.1.210 338 3/2/2024
2.1.209 460 3/2/2024
2.1.208 3,394 2/29/2024
2.1.207 626 2/29/2024
2.1.206 327 2/29/2024
2.1.205 3,275 2/26/2024
2.1.204 1,470 2/25/2024
2.1.203 2,572 2/23/2024
2.1.202 1,877 2/22/2024
2.1.201 941 2/22/2024
2.1.200 420 2/21/2024
2.1.199 1,173 2/21/2024
2.1.198 282 2/21/2024
2.1.197 756 2/21/2024
2.1.196 122 2/21/2024
2.1.195 1,222 2/21/2024
2.1.194 397 2/21/2024
2.1.193 130 2/21/2024
2.1.192 129 2/21/2024
2.1.191 583 2/21/2024
2.1.190 108 2/21/2024
2.1.189 2,612 2/20/2024
2.1.188 707 2/20/2024
2.1.187 631 2/20/2024
2.1.186 741 2/20/2024
2.1.185 2,091 2/19/2024
2.1.184 1,854 2/17/2024
2.1.183 881 2/16/2024
2.1.182 847 2/16/2024
2.1.181 1,328 2/16/2024
2.1.180 116 2/16/2024
2.1.179 627 2/16/2024
2.1.178 125 2/16/2024
2.1.177 124 2/16/2024
2.1.176 544 2/16/2024
2.1.175 110 2/16/2024
2.1.174 3,271 2/13/2024
2.1.173 1,356 2/13/2024
2.1.172 1,068 2/13/2024
2.1.171 443 2/13/2024
2.1.170 614 2/13/2024
2.1.169 1,911 2/12/2024
2.1.168 500 2/11/2024
2.1.167 1,504 2/11/2024
2.1.166 840 2/11/2024
2.1.165 2,755 2/10/2024
2.1.164 535 2/9/2024
2.1.163 136 2/9/2024
2.1.162 1,545 2/9/2024
2.1.161 1,652 2/9/2024
2.1.160 377 2/8/2024
2.1.159 1,204 2/8/2024
2.1.158 838 2/8/2024
2.1.157 1,445 2/8/2024
2.1.156 120 2/8/2024
2.1.155 1,840 2/7/2024
2.1.154 432 2/7/2024
2.1.153 593 2/7/2024
2.1.152 1,250 2/7/2024
2.1.151 371 2/6/2024
2.1.150 128 2/6/2024
2.1.149 121 2/6/2024
2.1.148 2,750 2/5/2024
2.1.147 1,513 2/4/2024
2.1.146 2,068 2/2/2024
2.1.145 1,899 1/31/2024
2.1.144 2,118 1/29/2024
2.1.143 1,344 1/29/2024
2.1.142 337 1/29/2024
2.1.141 1,466 1/28/2024
2.1.140 443 1/28/2024
2.1.139 297 1/28/2024
2.1.138 530 1/28/2024
2.1.137 1,899 1/28/2024
2.1.136 913 1/28/2024
2.1.135 278 1/27/2024
2.1.134 918 1/27/2024
2.1.133 1,150 1/27/2024
2.1.132 1,169 1/27/2024
2.1.131 146 1/27/2024
2.1.130 687 1/27/2024
2.1.129 1,040 1/26/2024
2.1.128 211 1/26/2024
2.1.127 862 1/26/2024
2.1.126 1,108 1/26/2024
2.1.125 1,613 1/26/2024
2.1.124 869 1/25/2024
2.1.123 1,089 1/25/2024
2.1.122 444 1/25/2024
2.1.121 906 1/25/2024
2.1.120 511 1/25/2024
2.1.119 2,554 1/19/2024
2.1.118 2,195 1/15/2024
2.1.117 493 1/15/2024
2.1.116 1,198 1/15/2024
2.1.115 123 1/15/2024
2.1.114 554 1/15/2024
2.1.113 1,361 1/15/2024
2.1.112 2,532 1/14/2024
2.1.111 1,590 1/13/2024
2.1.110 1,821 1/12/2024
2.1.109 2,033 1/11/2024
2.1.108 2,625 1/7/2024
2.1.107 2,076 1/5/2024
2.1.106 477 1/5/2024
2.1.105 134 1/5/2024
2.1.104 139 1/5/2024
2.1.103 1,477 1/5/2024
2.1.102 139 1/5/2024
2.1.101 2,744 1/1/2024
2.1.100 2,206 12/28/2023
2.1.99 730 12/28/2023
2.1.98 490 12/28/2023
2.1.97 129 12/28/2023
2.1.96 126 12/28/2023
2.1.95 707 12/27/2023
2.1.94 137 12/27/2023
2.1.93 462 12/27/2023
2.1.92 132 12/27/2023
2.1.91 133 12/27/2023
2.1.90 2,203 12/25/2023
2.1.89 347 12/25/2023
2.1.88 766 12/25/2023
2.1.87 135 12/25/2023
2.1.86 626 12/25/2023
2.1.85 126 12/25/2023
2.1.84 565 12/25/2023
2.1.83 133 12/25/2023
2.1.82 1,646 12/24/2023
2.1.81 1,062 12/23/2023
2.1.80 860 12/23/2023
2.1.79 308 12/23/2023
2.1.78 550 12/23/2023
2.1.77 126 12/23/2023
2.1.76 117 12/23/2023
2.1.75 1,079 12/23/2023
2.1.74 120 12/23/2023
2.1.73 1,388 12/19/2023
2.1.72 214 12/19/2023
2.1.71 3,071 12/11/2023
2.1.70 716 12/10/2023
2.1.69 115 12/10/2023
2.1.68 482 12/10/2023
2.1.67 1,406 12/10/2023
2.1.66 363 12/9/2023
2.1.65 363 12/9/2023
2.1.64 288 12/9/2023
2.1.63 128 12/9/2023
2.1.62 259 12/9/2023
2.1.61 195 12/9/2023
2.1.60 130 12/9/2023
2.1.59 1,064 12/9/2023
2.1.58 124 12/9/2023
2.1.57 1,514 12/6/2023
2.1.56 388 12/6/2023
2.1.55 243 12/6/2023
2.1.54 272 12/6/2023
2.1.53 919 12/5/2023
2.1.52 378 12/5/2023
2.1.51 342 12/5/2023
2.1.50 382 12/5/2023
2.1.49 130 12/5/2023
2.1.48 339 12/5/2023
2.1.47 276 12/5/2023
2.1.46 129 12/4/2023
2.1.45 132 12/4/2023
2.1.44 327 12/4/2023
2.1.43 143 12/4/2023
2.1.42 1,001 12/4/2023
2.1.41 113 12/4/2023
2.1.40 1,164 11/27/2023
2.1.39 518 11/26/2023
2.1.38 214 11/26/2023
2.1.37 624 11/23/2023
2.1.36 679 11/23/2023
2.1.35 639 11/23/2023
2.1.34 131 11/23/2023
2.1.33 398 11/23/2023
2.1.32 137 11/23/2023
2.1.31 1,075 11/20/2023
2.1.30 1,041 11/20/2023
2.1.29 794 11/19/2023
2.1.28 256 11/19/2023
2.1.27 453 11/19/2023
2.1.26 506 11/19/2023
2.1.25 500 11/19/2023
2.1.24 120 11/19/2023
2.1.23 219 11/18/2023
2.1.22 972 11/18/2023
2.1.21 378 11/18/2023
2.1.20 531 11/18/2023
2.1.19 130 11/18/2023
2.1.18 305 11/18/2023
2.1.17 126 11/18/2023
2.1.16 600 11/17/2023
2.1.15 513 11/17/2023
2.1.14 124 11/17/2023
2.1.13 421 11/17/2023
2.1.12 296 11/17/2023
2.1.11 493 11/17/2023
2.1.10 126 11/17/2023
2.1.9 508 11/17/2023
2.1.8 126 11/17/2023
2.1.7 143 11/17/2023
2.1.6 320 11/17/2023
2.1.5 369 11/16/2023
2.0.101 2,066 11/15/2023
2.0.100 121 11/15/2023
2.0.99 129 11/15/2023
2.0.4 128 11/16/2023
2.0.3 133 11/16/2023
2.0.2 125 11/16/2023
2.0.1 121 11/16/2023
1.0.98 609 11/14/2023
1.0.97 749 11/13/2023
1.0.96 116 11/13/2023
1.0.95 570 11/10/2023
1.0.94 120 11/10/2023
1.0.93 927 11/9/2023
1.0.92 126 11/9/2023
1.0.91 1,032 11/7/2023
1.0.90 117 11/7/2023
1.0.89 503 11/6/2023
1.0.88 126 11/6/2023
1.0.87 595 11/3/2023
1.0.86 132 11/3/2023
1.0.85 889 11/2/2023
1.0.84 123 11/2/2023
1.0.83 598 11/1/2023
1.0.82 1,446 10/26/2023
1.0.81 1,291 10/19/2023
1.0.80 139 10/19/2023
1.0.79 774 10/18/2023
1.0.78 156 10/18/2023
1.0.77 726 10/17/2023
1.0.76 144 10/17/2023
1.0.75 637 10/16/2023
1.0.74 149 10/16/2023
1.0.73 696 10/13/2023
1.0.72 333 10/12/2023
1.0.71 1,728 9/20/2023
1.0.70 671 9/19/2023
1.0.69 672 9/18/2023
1.0.68 138 9/18/2023
1.0.67 885 9/14/2023
1.0.66 1,497 8/31/2023
1.0.65 144 8/31/2023
1.0.64 794 8/30/2023
1.0.63 153 8/30/2023
1.0.62 156 8/30/2023
1.0.61 832 8/28/2023
1.0.60 687 8/25/2023
1.0.59 146 8/25/2023
1.0.58 485 8/24/2023
1.0.57 1,437 8/21/2023
1.0.56 819 8/18/2023
1.0.55 740 8/17/2023
1.0.54 149 8/17/2023
1.0.53 1,891 8/10/2023
1.0.52 557 8/9/2023
1.0.51 665 8/8/2023
1.0.50 638 8/7/2023
1.0.49 173 8/7/2023
1.0.48 2,446 7/13/2023
1.0.47 877 7/11/2023
1.0.46 714 7/10/2023
1.0.45 678 7/7/2023
1.0.44 165 7/7/2023
1.0.43 2,093 6/30/2023
1.0.42 1,048 6/29/2023
1.0.41 589 6/28/2023
1.0.40 1,495 6/26/2023
1.0.39 773 6/23/2023
1.0.38 1,071 6/21/2023
1.0.37 1,409 6/15/2023
1.0.36 469 6/14/2023
1.0.35 1,744 6/9/2023
1.0.34 817 6/8/2023
1.0.33 1,593 6/7/2023
1.0.32 167 6/7/2023
1.0.31 1,197 6/6/2023
1.0.30 1,139 6/5/2023
1.0.29 1,333 6/2/2023
1.0.28 153 6/2/2023
1.0.27 1,229 6/1/2023
1.0.26 595 5/31/2023
1.0.25 479 5/31/2023
1.0.24 162 5/31/2023
1.0.23 1,458 5/30/2023
1.0.22 1,515 5/26/2023
1.0.21 669 5/25/2023
1.0.20 148 5/25/2023
1.0.19 826 5/24/2023
1.0.18 156 5/24/2023
1.0.17 444 5/23/2023
1.0.13 1,464 5/22/2023
1.0.12 1,185 5/18/2023
1.0.11 589 5/17/2023
1.0.10 1,547 5/1/2023
1.0.9 1,021 4/25/2023
1.0.8 473 4/24/2023
1.0.7 995 4/21/2023
1.0.6 1,955 4/13/2023
1.0.5 591 4/12/2023
1.0.4 1,014 4/8/2023
1.0.3 187 4/8/2023
1.0.2 586 4/8/2023
1.0.1 191 4/8/2023