Soenneker.Utils.SingletonDictionary 1.0.35

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 1.0.35
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 1.0.35
                    
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="1.0.35" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="1.0.35" />
                    
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 1.0.35
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 1.0.35"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.Utils.SingletonDictionary@1.0.35
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Utils.SingletonDictionary&version=1.0.35
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=1.0.35
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Utils.SingletonDictionary

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

Installation

Install-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 net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
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.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.SignalR.Web.Clients

Providing async thread-safe resilient and dependable SignalR web client singletons

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1107 23,987 9/9/2025
3.0.1106 19,309 9/3/2025
3.0.1105 324 9/3/2025
3.0.1104 1,917 9/3/2025
3.0.1103 25,375 8/14/2025
3.0.1102 6,290 8/11/2025
3.0.1101 2,613 8/11/2025
3.0.1100 686 8/11/2025
3.0.1099 148 8/11/2025
3.0.1098 19,317 8/6/2025
3.0.1097 4,136 8/5/2025
3.0.1096 23,440 7/9/2025
3.0.1095 26,817 6/28/2025
3.0.1094 1,465 6/28/2025
3.0.1093 2,090 6/27/2025
3.0.1092 2,686 6/27/2025
3.0.1091 28,437 6/10/2025
3.0.1090 19,891 5/27/2025
3.0.1089 1,071 5/27/2025
3.0.1088 1,099 5/27/2025
3.0.1087 2,666 5/27/2025
3.0.1086 16,449 5/23/2025
3.0.1085 1,458 5/23/2025
3.0.1084 1,478 5/23/2025
3.0.1083 1,452 5/23/2025
3.0.1082 283 5/22/2025
3.0.1081 11,405 5/18/2025
3.0.1079 1,744 5/18/2025
3.0.1078 1,671 5/18/2025
3.0.1077 4,908 5/14/2025
3.0.1076 10,812 5/8/2025
3.0.1075 351 5/8/2025
3.0.1074 718 5/8/2025
3.0.1073 1,257 5/7/2025
3.0.1072 15,127 5/5/2025
3.0.1071 988 5/5/2025
3.0.1070 1,735 5/5/2025
3.0.1069 834 5/5/2025
3.0.1068 270 5/5/2025
3.0.1067 188 5/5/2025
3.0.1066 21,191 4/9/2025
3.0.1065 329 4/9/2025
3.0.1064 1,269 4/8/2025
3.0.1063 2,618 4/8/2025
3.0.1062 3,546 4/8/2025
3.0.1061 237 4/8/2025
3.0.1060 212 4/8/2025
3.0.1059 235 4/8/2025
3.0.1058 194 4/8/2025
3.0.1057 1,057 4/8/2025
3.0.1056 348 4/8/2025
3.0.1055 7,659 4/8/2025
3.0.1054 746 4/8/2025
3.0.1053 3,899 4/7/2025
3.0.1052 859 4/7/2025
3.0.1051 202 4/7/2025
3.0.1050 715 4/7/2025
3.0.1049 204 4/7/2025
3.0.1048 8,084 4/7/2025
3.0.1047 203 4/7/2025
3.0.1046 11,270 4/7/2025
3.0.1045 206 4/7/2025
3.0.1044 1,677 4/7/2025
3.0.1043 205 4/7/2025
3.0.1042 1,899 4/7/2025
3.0.1041 1,160 4/6/2025
3.0.1040 338 4/6/2025
3.0.1039 210 4/6/2025
3.0.1038 1,403 4/6/2025
3.0.1037 209 4/6/2025
3.0.1036 453 4/6/2025
3.0.1035 1,385 4/6/2025
3.0.1034 174 4/6/2025
3.0.1033 2,506 4/6/2025
3.0.1032 152 4/6/2025
3.0.1031 186 4/6/2025
3.0.1030 157 4/6/2025
3.0.1029 1,865 4/5/2025
3.0.1028 210 4/5/2025
3.0.1027 1,432 4/5/2025
3.0.1026 1,379 4/5/2025
3.0.1025 1,279 4/5/2025
3.0.1024 735 4/5/2025
3.0.1023 621 4/5/2025
3.0.1022 152 4/5/2025
3.0.1021 1,602 4/4/2025
3.0.1020 7,957 4/4/2025
3.0.1019 28,112 4/4/2025
3.0.1018 8,020 4/1/2025
3.0.1017 3,110 4/1/2025
3.0.1016 208 4/1/2025
3.0.1015 6,566 4/1/2025
3.0.1014 2,845 3/31/2025
3.0.1013 418 3/31/2025
3.0.1012 4,583 3/31/2025
3.0.1011 8,225 3/29/2025
3.0.1010 1,302 3/29/2025
3.0.1009 1,712 3/29/2025
3.0.1008 142 3/29/2025
3.0.1007 5,243 3/27/2025
3.0.1006 4,546 3/25/2025
3.0.1005 652 3/25/2025
3.0.1004 3,602 3/25/2025
3.0.1003 7,407 3/21/2025
3.0.1002 3,084 3/21/2025
3.0.1001 8,475 3/18/2025
3.0.1000 4,069 3/18/2025
3.0.999 7,726 3/15/2025
3.0.998 2,135 3/15/2025
3.0.997 119 3/15/2025
3.0.996 7,371 3/12/2025
3.0.995 2,547 3/12/2025
3.0.994 209 3/12/2025
3.0.993 470 3/12/2025
3.0.992 198 3/12/2025
3.0.991 3,233 3/11/2025
3.0.990 210 3/11/2025
3.0.989 1,471 3/11/2025
3.0.988 209 3/11/2025
3.0.987 3,109 3/11/2025
3.0.986 214 3/11/2025
3.0.985 3,070 3/11/2025
3.0.984 197 3/11/2025
3.0.983 1,930 3/11/2025
3.0.982 195 3/11/2025
3.0.981 10,725 3/7/2025
3.0.980 3,118 3/7/2025
3.0.979 7,393 3/2/2025
3.0.978 1,231 3/2/2025
3.0.977 768 3/2/2025
3.0.976 140 3/2/2025
3.0.975 5,156 3/2/2025
3.0.974 146 3/2/2025
3.0.973 3,833 3/1/2025
3.0.972 129 3/1/2025
3.0.971 5,298 3/1/2025
3.0.970 158 3/1/2025
3.0.969 128 3/1/2025
3.0.968 522 3/1/2025
3.0.967 139 3/1/2025
3.0.966 7,021 3/1/2025
3.0.965 5,643 2/26/2025
3.0.964 994 2/26/2025
3.0.963 2,847 2/25/2025
3.0.962 141 2/25/2025
3.0.961 990 2/25/2025
3.0.960 124 2/25/2025
3.0.959 165 2/25/2025
3.0.958 2,195 2/25/2025
3.0.957 5,850 2/24/2025
3.0.956 5,458 2/23/2025
3.0.955 1,272 2/22/2025
3.0.954 130 2/22/2025
3.0.953 9,158 2/22/2025
3.0.952 2,674 2/22/2025
3.0.951 1,330 2/22/2025
3.0.950 905 2/22/2025
3.0.949 177 2/22/2025
3.0.948 145 2/22/2025
3.0.947 146 2/22/2025
3.0.946 5,610 2/21/2025
3.0.945 139 2/21/2025
3.0.944 6,606 2/21/2025
3.0.943 5,529 2/19/2025
3.0.942 1,930 2/19/2025
3.0.941 821 2/19/2025
3.0.940 146 2/19/2025
3.0.939 461 2/18/2025
3.0.938 145 2/18/2025
3.0.937 6,462 2/18/2025
3.0.936 138 2/18/2025
3.0.935 3,284 2/18/2025
3.0.934 8,181 2/16/2025
3.0.933 1,821 2/14/2025
3.0.932 957 2/14/2025
3.0.931 827 2/13/2025
3.0.930 2,902 2/13/2025
3.0.929 364 2/13/2025
3.0.928 4,466 2/13/2025
3.0.927 4,515 2/12/2025
3.0.926 1,740 2/12/2025
3.0.925 168 2/12/2025
3.0.924 146 2/12/2025
3.0.923 2,377 2/12/2025
3.0.922 390 2/12/2025
3.0.921 153 2/12/2025
3.0.920 212 2/12/2025
3.0.919 213 2/12/2025
3.0.918 145 2/12/2025
3.0.917 202 2/11/2025
3.0.916 4,004 2/11/2025
3.0.915 4,513 2/11/2025
3.0.914 2,697 2/11/2025
3.0.913 156 2/11/2025
3.0.912 474 2/11/2025
3.0.911 2,026 2/10/2025
3.0.910 163 2/10/2025
3.0.909 876 2/10/2025
3.0.908 161 2/10/2025
3.0.907 7,643 2/10/2025
3.0.906 155 2/10/2025
3.0.905 1,371 2/9/2025
3.0.904 6,826 2/9/2025
3.0.903 140 2/9/2025
3.0.902 8,873 2/8/2025
3.0.901 155 2/8/2025
3.0.900 2,085 2/7/2025
3.0.899 146 2/7/2025
3.0.898 1,908 2/7/2025
3.0.897 147 2/7/2025
3.0.896 698 2/7/2025
3.0.895 513 2/7/2025
3.0.894 157 2/7/2025
3.0.893 423 2/7/2025
3.0.892 144 2/7/2025
3.0.891 1,231 2/7/2025
3.0.890 139 2/7/2025
3.0.889 154 2/7/2025
3.0.888 12,761 2/7/2025
3.0.887 7,499 2/5/2025
3.0.886 732 2/5/2025
3.0.885 1,104 2/5/2025
3.0.884 328 2/5/2025
3.0.883 1,222 2/5/2025
3.0.882 751 2/5/2025
3.0.881 3,618 2/5/2025
3.0.880 136 2/5/2025
3.0.879 12,707 1/28/2025
3.0.878 812 1/28/2025
3.0.877 2,269 1/28/2025
3.0.876 255 1/28/2025
3.0.875 4,617 1/28/2025
3.0.874 749 1/27/2025
3.0.873 117 1/27/2025
3.0.872 230 1/27/2025
3.0.871 332 1/27/2025
3.0.870 132 1/27/2025
3.0.869 5,925 1/27/2025
3.0.868 5,382 1/26/2025
3.0.867 1,129 1/26/2025
3.0.866 228 1/26/2025
3.0.865 1,230 1/26/2025
3.0.864 1,555 1/25/2025
3.0.863 134 1/25/2025
3.0.862 6,837 1/25/2025
3.0.861 1,223 1/25/2025
3.0.860 328 1/25/2025
3.0.859 143 1/25/2025
3.0.858 2,237 1/25/2025
3.0.857 1,474 1/25/2025
3.0.856 7,904 1/24/2025
3.0.855 1,889 1/24/2025
3.0.854 122 1/24/2025
3.0.853 2,434 1/24/2025
3.0.852 416 1/24/2025
3.0.851 286 1/24/2025
3.0.850 3,673 1/24/2025
3.0.849 135 1/24/2025
3.0.848 585 1/23/2025
3.0.847 139 1/23/2025
3.0.846 717 1/23/2025
3.0.845 132 1/23/2025
3.0.844 9,416 1/22/2025
3.0.843 1,172 1/21/2025
3.0.842 1,140 1/21/2025
3.0.841 663 1/21/2025
3.0.840 128 1/21/2025
3.0.839 673 1/21/2025
3.0.838 870 1/21/2025
3.0.837 6,510 1/21/2025
3.0.836 709 1/21/2025
3.0.835 1,189 1/21/2025
3.0.834 141 1/21/2025
3.0.833 967 1/21/2025
3.0.832 133 1/21/2025
3.0.831 2,597 1/21/2025
3.0.830 125 1/21/2025
3.0.829 483 1/20/2025
3.0.828 3,387 1/20/2025
3.0.827 318 1/20/2025
3.0.826 2,367 1/20/2025
3.0.825 137 1/20/2025
3.0.824 1,308 1/20/2025
3.0.823 144 1/20/2025
3.0.822 148 1/20/2025
3.0.821 139 1/20/2025
3.0.820 407 1/20/2025
3.0.819 143 1/20/2025
3.0.818 138 1/20/2025
3.0.817 6,796 1/19/2025
3.0.816 142 1/19/2025
3.0.815 6,283 1/19/2025
3.0.814 1,930 1/19/2025
3.0.813 161 1/19/2025
3.0.812 463 1/19/2025
3.0.811 134 1/19/2025
3.0.810 2,258 1/19/2025
3.0.809 131 1/19/2025
3.0.808 3,792 1/18/2025
3.0.807 140 1/18/2025
3.0.806 8,422 1/17/2025
3.0.805 147 1/17/2025
3.0.804 748 1/17/2025
3.0.803 1,138 1/17/2025
3.0.802 4,961 1/16/2025
3.0.801 1,715 1/16/2025
3.0.800 2,554 1/16/2025
3.0.799 590 1/16/2025
3.0.798 1,482 1/16/2025
3.0.797 1,202 1/16/2025
3.0.796 127 1/16/2025
3.0.795 5,513 1/15/2025
3.0.794 131 1/15/2025
3.0.793 3,231 1/15/2025
3.0.792 128 1/15/2025
3.0.791 184 1/15/2025
3.0.790 4,111 1/15/2025
3.0.789 117 1/15/2025
3.0.788 3,370 1/15/2025
3.0.787 113 1/15/2025
3.0.786 574 1/15/2025
3.0.785 108 1/15/2025
3.0.784 1,975 1/15/2025
3.0.783 109 1/15/2025
3.0.782 296 1/14/2025
3.0.781 122 1/14/2025
3.0.780 125 1/14/2025
3.0.779 3,976 1/14/2025
3.0.778 664 1/14/2025
3.0.777 124 1/14/2025
3.0.776 1,353 1/14/2025
3.0.775 114 1/14/2025
3.0.774 6,460 1/13/2025
3.0.773 1,974 1/13/2025
3.0.772 1,664 1/13/2025
3.0.771 130 1/13/2025
3.0.770 6,326 1/11/2025
3.0.769 2,481 1/11/2025
3.0.768 154 1/11/2025
3.0.767 2,474 1/11/2025
3.0.766 141 1/11/2025
3.0.765 2,116 1/10/2025
3.0.764 2,371 1/10/2025
3.0.763 135 1/10/2025
3.0.762 944 1/10/2025
3.0.761 148 1/10/2025
3.0.760 135 1/10/2025
3.0.759 7,775 1/3/2025
3.0.758 553 1/3/2025
3.0.757 1,227 1/3/2025
3.0.756 171 1/3/2025
3.0.755 1,732 1/3/2025
3.0.754 145 1/3/2025
3.0.753 1,341 1/3/2025
3.0.752 1,258 1/2/2025
3.0.751 141 1/2/2025
3.0.750 2,194 1/2/2025
3.0.749 145 1/2/2025
3.0.748 3,475 1/2/2025
3.0.747 135 1/2/2025
3.0.746 153 1/2/2025
3.0.745 5,875 1/1/2025
3.0.744 1,258 1/1/2025
3.0.743 310 1/1/2025
3.0.742 162 1/1/2025
3.0.741 1,841 1/1/2025
3.0.740 147 1/1/2025
3.0.739 146 1/1/2025
3.0.738 157 1/1/2025
3.0.737 396 12/31/2024
3.0.736 158 12/31/2024
3.0.735 169 12/31/2024
3.0.734 757 12/31/2024
3.0.733 165 12/31/2024
3.0.732 5,620 12/31/2024
3.0.731 156 12/31/2024
3.0.730 5,480 12/31/2024
3.0.729 129 12/31/2024
3.0.728 3,145 12/31/2024
3.0.727 421 12/31/2024
3.0.726 145 12/31/2024
3.0.725 1,634 12/31/2024
3.0.724 142 12/31/2024
3.0.723 11,128 12/28/2024
3.0.722 1,438 12/28/2024
3.0.721 1,504 12/27/2024
3.0.720 158 12/27/2024
3.0.719 3,273 12/27/2024
3.0.718 6,215 12/24/2024
3.0.717 1,559 12/24/2024
3.0.716 1,105 12/24/2024
3.0.715 973 12/24/2024
3.0.714 1,678 12/24/2024
3.0.713 138 12/24/2024
3.0.712 2,725 12/24/2024
3.0.711 789 12/24/2024
3.0.710 139 12/24/2024
3.0.709 561 12/24/2024
3.0.708 1,218 12/24/2024
3.0.707 311 12/24/2024
3.0.706 167 12/24/2024
3.0.705 1,250 12/24/2024
3.0.704 147 12/24/2024
3.0.703 2,218 12/23/2024
3.0.702 3,536 12/23/2024
3.0.701 147 12/23/2024
3.0.700 797 12/23/2024
3.0.699 143 12/23/2024
3.0.698 2,362 12/23/2024
3.0.697 146 12/23/2024
3.0.696 1,808 12/23/2024
3.0.695 151 12/23/2024
3.0.694 518 12/22/2024
3.0.693 1,760 12/22/2024
3.0.692 4,958 12/22/2024
3.0.691 154 12/22/2024
3.0.690 1,899 12/22/2024
3.0.689 210 12/22/2024
3.0.688 508 12/22/2024
3.0.687 138 12/22/2024
3.0.686 299 12/22/2024
3.0.685 146 12/22/2024
3.0.684 8,316 12/22/2024
3.0.683 135 12/22/2024
3.0.682 1,312 12/21/2024
3.0.681 351 12/21/2024
3.0.680 141 12/21/2024
3.0.679 566 12/21/2024
3.0.678 994 12/21/2024
3.0.677 139 12/21/2024
3.0.676 4,856 12/21/2024
3.0.675 472 12/21/2024
3.0.674 143 12/21/2024
3.0.673 3,201 12/21/2024
3.0.672 855 12/21/2024
3.0.671 152 12/21/2024
3.0.670 1,921 12/20/2024
3.0.669 151 12/20/2024
3.0.668 147 12/20/2024
3.0.667 4,642 12/20/2024
3.0.666 1,354 12/20/2024
3.0.665 266 12/20/2024
3.0.664 4,250 12/19/2024
3.0.663 519 12/19/2024
3.0.662 2,536 12/18/2024
3.0.661 140 12/18/2024
3.0.660 7,624 12/17/2024
3.0.659 265 12/17/2024
3.0.658 814 12/16/2024
3.0.657 149 12/16/2024
3.0.656 185 12/16/2024
3.0.655 135 12/16/2024
3.0.654 7,879 12/10/2024
3.0.653 1,255 12/10/2024
3.0.652 464 12/9/2024
3.0.651 144 12/9/2024
3.0.650 3,273 12/9/2024
3.0.649 1,763 12/9/2024
3.0.648 142 12/9/2024
3.0.647 4,514 12/9/2024
3.0.646 3,447 12/6/2024
3.0.645 534 12/6/2024
3.0.644 147 12/6/2024
3.0.643 865 12/6/2024
3.0.641 4,753 12/6/2024
3.0.640 3,066 12/6/2024
3.0.639 6,626 12/6/2024
3.0.637 458 12/6/2024
3.0.636 3,153 12/5/2024
3.0.635 4,254 12/5/2024
3.0.634 3,765 12/5/2024
3.0.633 141 12/5/2024
3.0.632 2,367 12/5/2024
3.0.631 1,213 12/5/2024
3.0.630 150 12/5/2024
3.0.629 451 12/5/2024
3.0.628 143 12/5/2024
3.0.627 186 12/5/2024
3.0.626 142 12/5/2024
3.0.625 4,137 12/4/2024
3.0.624 145 12/4/2024
3.0.623 159 12/4/2024
3.0.622 160 12/4/2024
3.0.621 1,999 12/4/2024
3.0.620 376 12/4/2024
3.0.619 517 12/4/2024
3.0.618 4,166 12/3/2024
3.0.617 149 12/3/2024
3.0.616 1,358 12/3/2024
3.0.615 575 12/3/2024
3.0.614 159 12/3/2024
3.0.613 159 12/3/2024
3.0.612 4,561 12/3/2024
3.0.611 140 12/3/2024
3.0.610 4,065 12/3/2024
3.0.609 136 12/3/2024
3.0.608 3,758 12/2/2024
3.0.607 3,473 12/2/2024
3.0.606 1,999 12/2/2024
3.0.605 328 12/2/2024
3.0.604 148 12/2/2024
3.0.603 519 12/2/2024
3.0.602 4,123 12/1/2024
3.0.601 150 12/1/2024
3.0.600 2,370 12/1/2024
3.0.599 254 12/1/2024
3.0.598 4,261 12/1/2024
3.0.597 153 12/1/2024
3.0.596 4,403 11/29/2024
3.0.595 1,308 11/29/2024
3.0.594 7,005 11/21/2024
3.0.593 370 11/21/2024
3.0.592 5,551 11/20/2024
3.0.591 420 11/20/2024
3.0.590 155 11/20/2024
3.0.589 143 11/20/2024
3.0.588 535 11/20/2024
3.0.587 222 11/20/2024
3.0.586 140 11/20/2024
3.0.585 2,424 11/20/2024
3.0.584 3,289 11/19/2024
3.0.583 146 11/19/2024
3.0.582 765 11/19/2024
3.0.581 132 11/19/2024
3.0.580 3,123 11/19/2024
3.0.579 128 11/19/2024
3.0.578 1,492 11/19/2024
3.0.577 152 11/19/2024
3.0.576 10,481 11/14/2024
3.0.575 194 11/14/2024
3.0.574 638 11/14/2024
3.0.573 2,892 11/14/2024
3.0.572 877 11/14/2024
3.0.571 159 11/14/2024
3.0.570 155 11/14/2024
3.0.569 5,041 11/14/2024
3.0.568 151 11/14/2024
3.0.567 152 11/14/2024
3.0.566 4,375 11/14/2024
3.0.565 149 11/14/2024
3.0.564 151 11/14/2024
3.0.563 147 11/14/2024
2.1.562 10,180 11/13/2024
2.1.561 1,668 11/13/2024
2.1.560 3,691 11/13/2024
2.1.559 162 11/13/2024
2.1.558 1,619 11/12/2024
2.1.557 489 11/12/2024
2.1.556 9,915 11/9/2024
2.1.555 444 11/9/2024
2.1.554 159 11/9/2024
2.1.553 2,075 11/9/2024
2.1.552 146 11/9/2024
2.1.551 1,089 11/8/2024
2.1.550 149 11/8/2024
2.1.549 154 11/8/2024
2.1.548 152 11/8/2024
2.1.547 480 11/8/2024
2.1.546 2,353 11/8/2024
2.1.545 139 11/8/2024
2.1.544 6,598 11/8/2024
2.1.543 133 11/8/2024
2.1.542 14,201 11/1/2024
2.1.541 550 11/1/2024
2.1.540 8,245 10/29/2024
2.1.539 888 10/29/2024
2.1.538 3,377 10/29/2024
2.1.537 767 10/29/2024
2.1.536 6,782 10/28/2024
2.1.535 2,328 10/28/2024
2.1.534 4,734 10/26/2024
2.1.533 865 10/26/2024
2.1.532 10,663 10/22/2024
2.1.531 346 10/22/2024
2.1.530 628 10/22/2024
2.1.529 1,064 10/22/2024
2.1.528 146 10/22/2024
2.1.527 592 10/22/2024
2.1.526 8,064 10/18/2024
2.1.525 1,327 10/17/2024
2.1.524 5,123 10/15/2024
2.1.523 1,968 10/15/2024
2.1.522 146 10/14/2024
2.1.521 6,271 10/12/2024
2.1.520 778 10/11/2024
2.1.519 141 10/11/2024
2.1.518 597 10/11/2024
2.1.517 3,639 10/11/2024
2.1.516 7,941 10/9/2024
2.1.515 465 10/9/2024
2.1.514 132 10/9/2024
2.1.513 2,398 10/8/2024
2.1.512 198 10/8/2024
2.1.511 2,737 10/8/2024
2.1.510 178 10/8/2024
2.1.509 137 10/8/2024
2.1.508 4,960 10/8/2024
2.1.507 7,641 10/3/2024
2.1.506 147 10/3/2024
2.1.505 1,342 10/3/2024
2.1.504 2,430 10/3/2024
2.1.503 1,797 10/3/2024
2.1.502 7,165 10/2/2024
2.1.501 143 10/2/2024
2.1.500 2,254 10/2/2024
2.1.499 1,230 10/2/2024
2.1.498 5,270 10/1/2024
2.1.497 861 10/1/2024
2.1.496 156 10/1/2024
2.1.495 3,230 10/1/2024
2.1.494 149 10/1/2024
2.1.493 190 10/1/2024
2.1.492 6,837 9/29/2024
2.1.491 1,712 9/29/2024
2.1.490 147 9/29/2024
2.1.489 1,509 9/29/2024
2.1.488 158 9/29/2024
2.1.487 3,104 9/29/2024
2.1.486 6,490 9/27/2024
2.1.485 954 9/27/2024
2.1.484 3,858 9/27/2024
2.1.483 160 9/27/2024
2.1.482 539 9/27/2024
2.1.481 2,675 9/27/2024
2.1.480 4,015 9/26/2024
2.1.479 4,250 9/26/2024
2.1.478 2,914 9/26/2024
2.1.477 2,641 9/26/2024
2.1.476 4,653 9/26/2024
2.1.475 145 9/26/2024
2.1.474 6,962 9/23/2024
2.1.473 1,613 9/23/2024
2.1.472 1,176 9/23/2024
2.1.471 1,406 9/23/2024
2.1.470 157 9/23/2024
2.1.469 1,840 9/23/2024
2.1.468 131 9/23/2024
2.1.467 5,914 9/23/2024
2.1.466 152 9/23/2024
2.1.465 916 9/23/2024
2.1.464 166 9/23/2024
2.1.463 137 9/23/2024
2.1.462 1,091 9/23/2024
2.1.461 11,540 9/18/2024
2.1.460 325 9/17/2024
2.1.459 1,427 9/17/2024
2.1.458 2,046 9/17/2024
2.1.457 158 9/17/2024
2.1.456 2,152 9/17/2024
2.1.455 565 9/17/2024
2.1.454 4,018 9/17/2024
2.1.453 669 9/17/2024
2.1.452 261 9/17/2024
2.1.451 3,167 9/17/2024
2.1.450 9,298 9/16/2024
2.1.449 882 9/16/2024
2.1.448 6,088 9/12/2024
2.1.447 3,542 9/12/2024
2.1.446 1,603 9/11/2024
2.1.445 1,860 9/11/2024
2.1.443 4,475 9/11/2024
2.1.442 1,189 9/11/2024
2.1.441 1,142 9/11/2024
2.1.440 2,724 9/11/2024
2.1.439 9,726 9/10/2024
2.1.438 170 9/10/2024
2.1.437 1,358 9/10/2024
2.1.436 165 9/10/2024
2.1.434 3,429 9/10/2024
2.1.433 701 9/9/2024
2.1.432 2,270 9/9/2024
2.1.430 1,857 9/9/2024
2.1.428 175 9/9/2024
2.1.427 541 9/9/2024
2.1.426 15,956 9/7/2024
2.1.425 188 9/7/2024
2.1.424 6,061 9/6/2024
2.1.423 447 9/6/2024
2.1.422 2,695 9/6/2024
2.1.421 165 9/5/2024
2.1.420 174 9/5/2024
2.1.419 2,916 9/5/2024
2.1.418 1,366 9/5/2024
2.1.417 163 9/5/2024
2.1.416 1,350 9/5/2024
2.1.415 537 9/5/2024
2.1.414 160 9/5/2024
2.1.413 6,192 9/5/2024
2.1.412 242 9/5/2024
2.1.411 170 9/5/2024
2.1.410 2,711 9/4/2024
2.1.409 9,810 9/3/2024
2.1.408 151 9/3/2024
2.1.407 155 9/3/2024
2.1.406 4,928 9/3/2024
2.1.405 188 9/3/2024
2.1.404 3,053 9/3/2024
2.1.403 6,551 8/29/2024
2.1.402 3,186 8/29/2024
2.1.401 3,494 8/26/2024
2.1.400 146 8/26/2024
2.1.399 6,082 8/21/2024
2.1.398 725 8/21/2024
2.1.397 188 8/21/2024
2.1.396 3,121 8/21/2024
2.1.395 192 8/20/2024
2.1.394 189 8/20/2024
2.1.393 578 8/20/2024
2.1.392 3,691 8/20/2024
2.1.391 529 8/20/2024
2.1.390 165 8/20/2024
2.1.389 3,300 8/20/2024
2.1.388 170 8/20/2024
2.1.387 1,458 8/20/2024
2.1.386 3,567 8/19/2024
2.1.385 5,887 8/15/2024
2.1.384 2,605 8/15/2024
2.1.383 5,877 8/14/2024
2.1.382 191 8/13/2024
2.1.381 6,835 8/7/2024
2.1.380 357 8/6/2024
2.1.379 3,306 8/6/2024
2.1.378 6,123 8/1/2024
2.1.377 432 8/1/2024
2.1.376 144 8/1/2024
2.1.374 1,475 8/1/2024
2.1.373 7,303 7/25/2024
2.1.372 138 7/25/2024
2.1.371 905 7/25/2024
2.1.370 396 7/25/2024
2.1.369 440 7/25/2024
2.1.368 242 7/25/2024
2.1.367 486 7/24/2024
2.1.366 208 7/24/2024
2.1.365 284 7/24/2024
2.1.364 399 7/24/2024
2.1.363 10,529 7/20/2024
2.1.362 1,820 7/20/2024
2.1.361 6,272 7/14/2024
2.1.360 1,917 7/14/2024
2.1.359 153 7/14/2024
2.1.358 1,891 7/14/2024
2.1.357 5,360 7/10/2024
2.1.355 956 7/10/2024
2.1.354 1,455 7/10/2024
2.1.353 161 7/10/2024
2.1.352 2,242 7/10/2024
2.1.351 180 7/10/2024
2.1.350 149 7/10/2024
2.1.349 227 7/10/2024
2.1.348 156 7/10/2024
2.1.347 2,601 7/10/2024
2.1.346 173 7/10/2024
2.1.345 1,001 7/10/2024
2.1.344 152 7/10/2024
2.1.343 273 7/9/2024
2.1.342 137 7/9/2024
2.1.339 2,408 7/9/2024
2.1.338 565 7/9/2024
2.1.337 4,820 7/9/2024
2.1.336 1,326 7/9/2024
2.1.335 164 7/9/2024
2.1.334 3,193 7/9/2024
2.1.333 148 7/9/2024
2.1.332 10,960 7/9/2024
2.1.331 159 7/9/2024
2.1.330 3,075 7/9/2024
2.1.329 145 7/9/2024
2.1.328 1,288 7/9/2024
2.1.327 823 7/8/2024
2.1.326 1,206 7/8/2024
2.1.325 162 7/8/2024
2.1.324 171 7/8/2024
2.1.323 5,948 7/8/2024
2.1.322 2,005 7/8/2024
2.1.321 159 7/8/2024
2.1.320 2,850 7/7/2024
2.1.319 168 7/7/2024
2.1.318 183 7/7/2024
2.1.317 165 7/7/2024
2.1.316 1,423 7/7/2024
2.1.315 2,643 7/7/2024
2.1.314 2,327 7/7/2024
2.1.313 295 7/7/2024
2.1.312 4,216 7/5/2024
2.1.311 4,861 7/3/2024
2.1.310 3,672 7/3/2024
2.1.309 512 7/3/2024
2.1.308 5,000 7/2/2024
2.1.307 2,317 6/30/2024
2.1.306 2,759 6/28/2024
2.1.305 6,597 6/22/2024
2.1.304 6,018 6/15/2024
2.1.303 5,027 6/14/2024
2.1.302 7,199 6/1/2024
2.1.301 1,973 6/1/2024
2.1.300 763 6/1/2024
2.1.299 7,271 5/31/2024
2.1.298 4,602 5/29/2024
2.1.297 3,794 5/28/2024
2.1.296 3,053 5/27/2024
2.1.295 5,948 5/26/2024
2.1.294 2,549 5/26/2024
2.1.293 608 5/26/2024
2.1.292 3,144 5/25/2024
2.1.291 1,648 5/25/2024
2.1.290 177 5/25/2024
2.1.289 174 5/25/2024
2.1.288 881 5/25/2024
2.1.287 169 5/25/2024
2.1.286 507 5/25/2024
2.1.285 170 5/25/2024
2.1.284 165 5/25/2024
2.1.283 9,256 5/23/2024
2.1.282 675 5/23/2024
2.1.281 350 5/22/2024
2.1.280 4,519 5/22/2024
2.1.279 173 5/22/2024
2.1.278 180 5/22/2024
2.1.277 170 5/22/2024
2.1.276 2,687 5/22/2024
2.1.275 4,247 5/18/2024
2.1.274 2,332 5/18/2024
2.1.273 2,240 5/17/2024
2.1.272 164 5/17/2024
2.1.271 3,404 5/16/2024
2.1.270 548 5/15/2024
2.1.269 3,452 5/15/2024
2.1.268 5,571 5/12/2024
2.1.267 3,445 5/3/2024
2.1.266 1,449 4/30/2024
2.1.265 2,220 4/29/2024
2.1.264 2,311 4/29/2024
2.1.263 3,357 4/28/2024
2.1.262 1,864 4/28/2024
2.1.261 1,386 4/28/2024
2.1.260 2,190 4/28/2024
2.1.259 1,170 4/28/2024
2.1.258 158 4/28/2024
2.1.257 5,147 4/27/2024
2.1.256 177 4/27/2024
2.1.255 5,350 4/19/2024
2.1.254 5,034 4/18/2024
2.1.253 4,226 4/12/2024
2.1.252 1,394 4/12/2024
2.1.251 878 4/12/2024
2.1.250 1,081 4/12/2024
2.1.249 272 4/12/2024
2.1.248 152 4/12/2024
2.1.247 1,147 4/12/2024
2.1.246 394 4/12/2024
2.1.245 1,895 4/11/2024
2.1.244 4,568 4/10/2024
2.1.243 1,352 4/9/2024
2.1.242 3,783 4/2/2024
2.1.241 1,067 4/1/2024
2.1.240 2,510 3/29/2024
2.1.239 2,179 3/25/2024
2.1.238 370 3/25/2024
2.1.237 3,898 3/20/2024
2.1.236 2,503 3/19/2024
2.1.235 608 3/19/2024
2.1.234 2,849 3/18/2024
2.1.233 1,628 3/18/2024
2.1.232 1,561 3/15/2024
2.1.231 2,805 3/13/2024
2.1.230 1,319 3/13/2024
2.1.229 819 3/13/2024
2.1.228 904 3/13/2024
2.1.227 183 3/13/2024
2.1.226 628 3/13/2024
2.1.225 178 3/13/2024
2.1.224 182 3/13/2024
2.1.223 1,998 3/12/2024
2.1.222 3,322 3/11/2024
2.1.221 2,929 3/11/2024
2.1.220 1,931 3/10/2024
2.1.219 2,258 3/8/2024
2.1.218 1,269 3/8/2024
2.1.217 1,831 3/8/2024
2.1.216 2,463 3/6/2024
2.1.215 2,365 3/4/2024
2.1.214 1,661 3/4/2024
2.1.213 3,073 3/2/2024
2.1.212 1,463 3/2/2024
2.1.211 500 3/2/2024
2.1.210 437 3/2/2024
2.1.209 610 3/2/2024
2.1.208 4,015 2/29/2024
2.1.207 778 2/29/2024
2.1.206 433 2/29/2024
2.1.205 3,928 2/26/2024
2.1.204 1,728 2/25/2024
2.1.203 3,080 2/23/2024
2.1.202 2,230 2/22/2024
2.1.201 1,117 2/22/2024
2.1.200 546 2/21/2024
2.1.199 1,393 2/21/2024
2.1.198 359 2/21/2024
2.1.197 880 2/21/2024
2.1.196 167 2/21/2024
2.1.195 1,507 2/21/2024
2.1.194 521 2/21/2024
2.1.193 175 2/21/2024
2.1.192 184 2/21/2024
2.1.191 692 2/21/2024
2.1.190 160 2/21/2024
2.1.189 3,132 2/20/2024
2.1.188 838 2/20/2024
2.1.187 782 2/20/2024
2.1.186 952 2/20/2024
2.1.185 2,537 2/19/2024
2.1.184 2,213 2/17/2024
2.1.183 1,094 2/16/2024
2.1.182 1,013 2/16/2024
2.1.181 1,584 2/16/2024
2.1.180 177 2/16/2024
2.1.179 807 2/16/2024
2.1.178 180 2/16/2024
2.1.177 174 2/16/2024
2.1.176 673 2/16/2024
2.1.175 162 2/16/2024
2.1.174 3,921 2/13/2024
2.1.173 1,632 2/13/2024
2.1.172 1,298 2/13/2024
2.1.171 550 2/13/2024
2.1.170 740 2/13/2024
2.1.169 2,294 2/12/2024
2.1.168 590 2/11/2024
2.1.167 1,839 2/11/2024
2.1.166 1,018 2/11/2024
2.1.165 3,361 2/10/2024
2.1.164 653 2/9/2024
2.1.163 176 2/9/2024
2.1.162 1,870 2/9/2024
2.1.161 1,939 2/9/2024
2.1.160 492 2/8/2024
2.1.159 1,452 2/8/2024
2.1.158 986 2/8/2024
2.1.157 1,740 2/8/2024
2.1.156 162 2/8/2024
2.1.155 2,209 2/7/2024
2.1.154 549 2/7/2024
2.1.153 721 2/7/2024
2.1.152 1,506 2/7/2024
2.1.151 447 2/6/2024
2.1.150 171 2/6/2024
2.1.149 173 2/6/2024
2.1.148 3,255 2/5/2024
2.1.147 1,835 2/4/2024
2.1.146 2,493 2/2/2024
2.1.145 2,250 1/31/2024
2.1.144 2,462 1/29/2024
2.1.143 1,601 1/29/2024
2.1.142 435 1/29/2024
2.1.141 1,728 1/28/2024
2.1.140 571 1/28/2024
2.1.139 391 1/28/2024
2.1.138 647 1/28/2024
2.1.137 2,262 1/28/2024
2.1.136 1,154 1/28/2024
2.1.135 370 1/27/2024
2.1.134 1,110 1/27/2024
2.1.133 1,419 1/27/2024
2.1.132 1,446 1/27/2024
2.1.131 196 1/27/2024
2.1.130 800 1/27/2024
2.1.129 1,256 1/26/2024
2.1.128 300 1/26/2024
2.1.127 1,037 1/26/2024
2.1.126 1,385 1/26/2024
2.1.125 1,923 1/26/2024
2.1.124 1,070 1/25/2024
2.1.123 1,256 1/25/2024
2.1.122 557 1/25/2024
2.1.121 1,102 1/25/2024
2.1.120 617 1/25/2024
2.1.119 3,118 1/19/2024
2.1.118 2,564 1/15/2024
2.1.117 599 1/15/2024
2.1.116 1,500 1/15/2024
2.1.115 171 1/15/2024
2.1.114 668 1/15/2024
2.1.113 1,605 1/15/2024
2.1.112 2,984 1/14/2024
2.1.111 1,868 1/13/2024
2.1.110 2,113 1/12/2024
2.1.109 2,386 1/11/2024
2.1.108 3,096 1/7/2024
2.1.107 2,385 1/5/2024
2.1.106 614 1/5/2024
2.1.105 190 1/5/2024
2.1.104 179 1/5/2024
2.1.103 1,719 1/5/2024
2.1.102 184 1/5/2024
2.1.101 3,235 1/1/2024
2.1.100 2,619 12/28/2023
2.1.99 882 12/28/2023
2.1.98 602 12/28/2023
2.1.97 173 12/28/2023
2.1.96 176 12/28/2023
2.1.95 859 12/27/2023
2.1.94 191 12/27/2023
2.1.93 608 12/27/2023
2.1.92 182 12/27/2023
2.1.91 188 12/27/2023
2.1.90 2,680 12/25/2023
2.1.89 438 12/25/2023
2.1.88 976 12/25/2023
2.1.87 193 12/25/2023
2.1.86 823 12/25/2023
2.1.85 182 12/25/2023
2.1.84 708 12/25/2023
2.1.83 182 12/25/2023
2.1.82 2,036 12/24/2023
2.1.81 1,344 12/23/2023
2.1.80 1,071 12/23/2023
2.1.79 377 12/23/2023
2.1.78 698 12/23/2023
2.1.77 183 12/23/2023
2.1.76 170 12/23/2023
2.1.75 1,322 12/23/2023
2.1.74 172 12/23/2023
2.1.73 1,732 12/19/2023
2.1.72 278 12/19/2023
2.1.71 3,715 12/11/2023
2.1.70 886 12/10/2023
2.1.69 170 12/10/2023
2.1.68 564 12/10/2023
2.1.67 1,737 12/10/2023
2.1.66 468 12/9/2023
2.1.65 464 12/9/2023
2.1.64 361 12/9/2023
2.1.63 188 12/9/2023
2.1.62 327 12/9/2023
2.1.61 271 12/9/2023
2.1.60 168 12/9/2023
2.1.59 1,303 12/9/2023
2.1.58 182 12/9/2023
2.1.57 1,864 12/6/2023
2.1.56 489 12/6/2023
2.1.55 300 12/6/2023
2.1.54 340 12/6/2023
2.1.53 1,119 12/5/2023
2.1.52 470 12/5/2023
2.1.51 413 12/5/2023
2.1.50 473 12/5/2023
2.1.49 152 12/5/2023
2.1.48 423 12/5/2023
2.1.47 339 12/5/2023
2.1.46 155 12/4/2023
2.1.45 168 12/4/2023
2.1.44 419 12/4/2023
2.1.43 183 12/4/2023
2.1.42 1,246 12/4/2023
2.1.41 135 12/4/2023
2.1.40 1,461 11/27/2023
2.1.39 660 11/26/2023
2.1.38 280 11/26/2023
2.1.37 786 11/23/2023
2.1.36 879 11/23/2023
2.1.35 815 11/23/2023
2.1.34 164 11/23/2023
2.1.33 519 11/23/2023
2.1.32 175 11/23/2023
2.1.31 1,330 11/20/2023
2.1.30 1,387 11/20/2023
2.1.29 1,033 11/19/2023
2.1.28 331 11/19/2023
2.1.27 588 11/19/2023
2.1.26 616 11/19/2023
2.1.25 628 11/19/2023
2.1.24 152 11/19/2023
2.1.23 281 11/18/2023
2.1.22 1,239 11/18/2023
2.1.21 467 11/18/2023
2.1.20 664 11/18/2023
2.1.19 172 11/18/2023
2.1.18 383 11/18/2023
2.1.17 164 11/18/2023
2.1.16 769 11/17/2023
2.1.15 662 11/17/2023
2.1.14 163 11/17/2023
2.1.13 534 11/17/2023
2.1.12 381 11/17/2023
2.1.11 619 11/17/2023
2.1.10 160 11/17/2023
2.1.9 637 11/17/2023
2.1.8 168 11/17/2023
2.1.7 199 11/17/2023
2.1.6 423 11/17/2023
2.1.5 475 11/16/2023
2.0.101 2,675 11/15/2023
2.0.100 149 11/15/2023
2.0.99 168 11/15/2023
2.0.4 160 11/16/2023
2.0.3 170 11/16/2023
2.0.2 165 11/16/2023
2.0.1 159 11/16/2023
1.0.98 758 11/14/2023
1.0.97 909 11/13/2023
1.0.96 146 11/13/2023
1.0.95 661 11/10/2023
1.0.94 161 11/10/2023
1.0.93 1,143 11/9/2023
1.0.92 162 11/9/2023
1.0.91 1,240 11/7/2023
1.0.90 156 11/7/2023
1.0.89 600 11/6/2023
1.0.88 169 11/6/2023
1.0.87 714 11/3/2023
1.0.86 176 11/3/2023
1.0.85 1,070 11/2/2023
1.0.84 156 11/2/2023
1.0.83 727 11/1/2023
1.0.82 1,742 10/26/2023
1.0.81 1,575 10/19/2023
1.0.80 177 10/19/2023
1.0.79 946 10/18/2023
1.0.78 201 10/18/2023
1.0.77 867 10/17/2023
1.0.76 188 10/17/2023
1.0.75 798 10/16/2023
1.0.74 192 10/16/2023
1.0.73 852 10/13/2023
1.0.72 413 10/12/2023
1.0.71 2,017 9/20/2023
1.0.70 828 9/19/2023
1.0.69 822 9/18/2023
1.0.68 186 9/18/2023
1.0.67 1,085 9/14/2023
1.0.66 1,777 8/31/2023
1.0.65 191 8/31/2023
1.0.64 981 8/30/2023
1.0.63 215 8/30/2023
1.0.62 231 8/30/2023
1.0.61 1,008 8/28/2023
1.0.60 839 8/25/2023
1.0.59 193 8/25/2023
1.0.58 605 8/24/2023
1.0.57 1,753 8/21/2023
1.0.56 1,009 8/18/2023
1.0.55 897 8/17/2023
1.0.54 211 8/17/2023
1.0.53 2,295 8/10/2023
1.0.52 685 8/9/2023
1.0.51 819 8/8/2023
1.0.50 780 8/7/2023
1.0.49 236 8/7/2023
1.0.48 2,920 7/13/2023
1.0.47 1,064 7/11/2023
1.0.46 863 7/10/2023
1.0.45 830 7/7/2023
1.0.44 234 7/7/2023
1.0.43 2,490 6/30/2023
1.0.42 1,269 6/29/2023
1.0.41 711 6/28/2023
1.0.40 1,803 6/26/2023
1.0.39 967 6/23/2023
1.0.38 1,276 6/21/2023
1.0.37 1,740 6/15/2023
1.0.36 570 6/14/2023
1.0.35 2,114 6/9/2023
1.0.34 964 6/8/2023
1.0.33 1,869 6/7/2023
1.0.32 230 6/7/2023
1.0.31 1,387 6/6/2023
1.0.30 1,363 6/5/2023
1.0.29 1,555 6/2/2023
1.0.28 222 6/2/2023
1.0.27 1,420 6/1/2023
1.0.26 726 5/31/2023
1.0.25 570 5/31/2023
1.0.24 228 5/31/2023
1.0.23 1,672 5/30/2023
1.0.22 1,755 5/26/2023
1.0.21 803 5/25/2023
1.0.20 202 5/25/2023
1.0.19 966 5/24/2023
1.0.18 220 5/24/2023
1.0.17 564 5/23/2023
1.0.13 1,678 5/22/2023
1.0.12 1,377 5/18/2023
1.0.11 718 5/17/2023
1.0.10 1,731 5/1/2023
1.0.9 1,148 4/25/2023
1.0.8 564 4/24/2023
1.0.7 1,145 4/21/2023
1.0.6 2,205 4/13/2023
1.0.5 709 4/12/2023
1.0.4 1,158 4/8/2023
1.0.3 258 4/8/2023
1.0.2 705 4/8/2023
1.0.1 262 4/8/2023