Soenneker.Utils.SingletonDictionary 2.1.52

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 2.1.52
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 2.1.52
                    
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="2.1.52" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="2.1.52" />
                    
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 2.1.52
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 2.1.52"
                    
#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@2.1.52
                    
#: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=2.1.52
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=2.1.52
                    
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 net8.0 is compatible.  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.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

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.1108 1,629 9/30/2025
3.0.1107 34,684 9/9/2025
3.0.1106 22,615 9/3/2025
3.0.1105 362 9/3/2025
3.0.1104 2,206 9/3/2025
3.0.1103 29,714 8/14/2025
3.0.1102 7,464 8/11/2025
3.0.1101 3,020 8/11/2025
3.0.1100 781 8/11/2025
3.0.1099 149 8/11/2025
3.0.1098 22,531 8/6/2025
3.0.1097 4,856 8/5/2025
3.0.1096 28,228 7/9/2025
3.0.1095 30,204 6/28/2025
3.0.1094 1,672 6/28/2025
3.0.1093 2,424 6/27/2025
3.0.1092 2,995 6/27/2025
3.0.1091 32,643 6/10/2025
3.0.1090 22,730 5/27/2025
3.0.1089 1,209 5/27/2025
3.0.1088 1,276 5/27/2025
3.0.1087 3,096 5/27/2025
3.0.1086 18,848 5/23/2025
3.0.1085 1,657 5/23/2025
3.0.1084 1,643 5/23/2025
3.0.1083 1,595 5/23/2025
3.0.1082 319 5/22/2025
3.0.1081 13,037 5/18/2025
3.0.1079 1,969 5/18/2025
3.0.1078 1,908 5/18/2025
3.0.1077 5,547 5/14/2025
3.0.1076 12,142 5/8/2025
3.0.1075 373 5/8/2025
3.0.1074 791 5/8/2025
3.0.1073 1,424 5/7/2025
3.0.1072 16,931 5/5/2025
3.0.1071 1,134 5/5/2025
3.0.1070 2,090 5/5/2025
3.0.1069 977 5/5/2025
3.0.1068 281 5/5/2025
3.0.1067 191 5/5/2025
3.0.1066 23,792 4/9/2025
3.0.1065 350 4/9/2025
3.0.1064 1,410 4/8/2025
3.0.1063 2,958 4/8/2025
3.0.1062 4,033 4/8/2025
3.0.1061 249 4/8/2025
3.0.1060 212 4/8/2025
3.0.1059 243 4/8/2025
3.0.1058 195 4/8/2025
3.0.1057 1,216 4/8/2025
3.0.1056 384 4/8/2025
3.0.1055 8,939 4/8/2025
3.0.1054 903 4/8/2025
3.0.1053 4,470 4/7/2025
3.0.1052 986 4/7/2025
3.0.1051 202 4/7/2025
3.0.1050 774 4/7/2025
3.0.1049 205 4/7/2025
3.0.1048 9,370 4/7/2025
3.0.1047 205 4/7/2025
3.0.1046 12,996 4/7/2025
3.0.1045 207 4/7/2025
3.0.1044 1,811 4/7/2025
3.0.1043 206 4/7/2025
3.0.1042 2,160 4/7/2025
3.0.1041 1,260 4/6/2025
3.0.1040 355 4/6/2025
3.0.1039 211 4/6/2025
3.0.1038 1,491 4/6/2025
3.0.1037 210 4/6/2025
3.0.1036 496 4/6/2025
3.0.1035 1,595 4/6/2025
3.0.1034 177 4/6/2025
3.0.1033 2,799 4/6/2025
3.0.1032 154 4/6/2025
3.0.1031 195 4/6/2025
3.0.1030 159 4/6/2025
3.0.1029 2,171 4/5/2025
3.0.1028 228 4/5/2025
3.0.1027 1,618 4/5/2025
3.0.1026 1,457 4/5/2025
3.0.1025 1,419 4/5/2025
3.0.1024 817 4/5/2025
3.0.1023 710 4/5/2025
3.0.1022 153 4/5/2025
3.0.1021 1,783 4/4/2025
3.0.1020 9,309 4/4/2025
3.0.1019 31,956 4/4/2025
3.0.1018 9,361 4/1/2025
3.0.1017 3,645 4/1/2025
3.0.1016 209 4/1/2025
3.0.1015 7,644 4/1/2025
3.0.1014 3,287 3/31/2025
3.0.1013 463 3/31/2025
3.0.1012 5,342 3/31/2025
3.0.1011 9,547 3/29/2025
3.0.1010 1,478 3/29/2025
3.0.1009 1,998 3/29/2025
3.0.1008 145 3/29/2025
3.0.1007 6,129 3/27/2025
3.0.1006 5,253 3/25/2025
3.0.1005 691 3/25/2025
3.0.1004 4,214 3/25/2025
3.0.1003 8,635 3/21/2025
3.0.1002 3,602 3/21/2025
3.0.1001 9,574 3/18/2025
3.0.1000 4,763 3/18/2025
3.0.999 9,026 3/15/2025
3.0.998 2,567 3/15/2025
3.0.997 121 3/15/2025
3.0.996 8,551 3/12/2025
3.0.995 3,005 3/12/2025
3.0.994 210 3/12/2025
3.0.993 517 3/12/2025
3.0.992 198 3/12/2025
3.0.991 3,747 3/11/2025
3.0.990 210 3/11/2025
3.0.989 1,693 3/11/2025
3.0.988 212 3/11/2025
3.0.987 3,568 3/11/2025
3.0.986 216 3/11/2025
3.0.985 3,552 3/11/2025
3.0.984 201 3/11/2025
3.0.983 2,229 3/11/2025
3.0.982 195 3/11/2025
3.0.981 12,411 3/7/2025
3.0.980 3,601 3/7/2025
3.0.979 8,395 3/2/2025
3.0.978 1,465 3/2/2025
3.0.977 929 3/2/2025
3.0.976 140 3/2/2025
3.0.975 6,017 3/2/2025
3.0.974 147 3/2/2025
3.0.973 4,482 3/1/2025
3.0.972 130 3/1/2025
3.0.971 6,198 3/1/2025
3.0.970 161 3/1/2025
3.0.969 128 3/1/2025
3.0.968 595 3/1/2025
3.0.967 139 3/1/2025
3.0.966 8,208 3/1/2025
3.0.965 6,595 2/26/2025
3.0.964 1,113 2/26/2025
3.0.963 3,310 2/25/2025
3.0.962 143 2/25/2025
3.0.961 1,190 2/25/2025
3.0.960 124 2/25/2025
3.0.959 168 2/25/2025
3.0.958 2,604 2/25/2025
3.0.957 6,738 2/24/2025
3.0.956 6,313 2/23/2025
3.0.955 1,497 2/22/2025
3.0.954 130 2/22/2025
3.0.953 10,701 2/22/2025
3.0.952 3,048 2/22/2025
3.0.951 1,493 2/22/2025
3.0.950 1,087 2/22/2025
3.0.949 177 2/22/2025
3.0.948 145 2/22/2025
3.0.947 148 2/22/2025
3.0.946 6,470 2/21/2025
3.0.945 141 2/21/2025
3.0.944 7,846 2/21/2025
3.0.943 6,266 2/19/2025
3.0.942 2,156 2/19/2025
3.0.941 948 2/19/2025
3.0.940 147 2/19/2025
3.0.939 521 2/18/2025
3.0.938 146 2/18/2025
3.0.937 7,452 2/18/2025
3.0.936 140 2/18/2025
3.0.935 3,786 2/18/2025
3.0.934 9,190 2/16/2025
3.0.933 2,070 2/14/2025
3.0.932 1,076 2/14/2025
3.0.931 954 2/13/2025
3.0.930 3,295 2/13/2025
3.0.929 383 2/13/2025
3.0.928 5,109 2/13/2025
3.0.927 5,100 2/12/2025
3.0.926 1,946 2/12/2025
3.0.925 168 2/12/2025
3.0.924 146 2/12/2025
3.0.923 2,715 2/12/2025
3.0.922 427 2/12/2025
3.0.921 153 2/12/2025
3.0.920 227 2/12/2025
3.0.919 220 2/12/2025
3.0.918 146 2/12/2025
3.0.917 205 2/11/2025
3.0.916 4,628 2/11/2025
3.0.915 5,219 2/11/2025
3.0.914 3,053 2/11/2025
3.0.913 157 2/11/2025
3.0.912 503 2/11/2025
3.0.911 2,394 2/10/2025
3.0.910 165 2/10/2025
3.0.909 1,071 2/10/2025
3.0.908 162 2/10/2025
3.0.907 8,796 2/10/2025
3.0.906 157 2/10/2025
3.0.905 1,590 2/9/2025
3.0.904 7,771 2/9/2025
3.0.903 141 2/9/2025
3.0.902 10,100 2/8/2025
3.0.901 156 2/8/2025
3.0.900 2,333 2/7/2025
3.0.899 148 2/7/2025
3.0.898 2,225 2/7/2025
3.0.897 149 2/7/2025
3.0.896 853 2/7/2025
3.0.895 571 2/7/2025
3.0.894 159 2/7/2025
3.0.893 469 2/7/2025
3.0.892 145 2/7/2025
3.0.891 1,435 2/7/2025
3.0.890 140 2/7/2025
3.0.889 155 2/7/2025
3.0.888 14,697 2/7/2025
3.0.887 8,707 2/5/2025
3.0.886 842 2/5/2025
3.0.885 1,255 2/5/2025
3.0.884 370 2/5/2025
3.0.883 1,369 2/5/2025
3.0.882 890 2/5/2025
3.0.881 4,255 2/5/2025
3.0.880 136 2/5/2025
3.0.879 14,462 1/28/2025
3.0.878 918 1/28/2025
3.0.877 2,608 1/28/2025
3.0.876 298 1/28/2025
3.0.875 5,541 1/28/2025
3.0.874 888 1/27/2025
3.0.873 117 1/27/2025
3.0.872 242 1/27/2025
3.0.871 387 1/27/2025
3.0.870 133 1/27/2025
3.0.869 6,925 1/27/2025
3.0.868 6,302 1/26/2025
3.0.867 1,306 1/26/2025
3.0.866 238 1/26/2025
3.0.865 1,462 1/26/2025
3.0.864 1,846 1/25/2025
3.0.863 135 1/25/2025
3.0.862 7,960 1/25/2025
3.0.861 1,420 1/25/2025
3.0.860 403 1/25/2025
3.0.859 144 1/25/2025
3.0.858 2,689 1/25/2025
3.0.857 1,771 1/25/2025
3.0.856 9,050 1/24/2025
3.0.855 2,159 1/24/2025
3.0.854 122 1/24/2025
3.0.853 2,853 1/24/2025
3.0.852 440 1/24/2025
3.0.851 300 1/24/2025
3.0.850 4,396 1/24/2025
3.0.849 136 1/24/2025
3.0.848 673 1/23/2025
3.0.847 140 1/23/2025
3.0.846 850 1/23/2025
3.0.845 135 1/23/2025
3.0.844 10,960 1/22/2025
3.0.843 1,340 1/21/2025
3.0.842 1,312 1/21/2025
3.0.841 766 1/21/2025
3.0.840 128 1/21/2025
3.0.839 776 1/21/2025
3.0.838 981 1/21/2025
3.0.837 7,515 1/21/2025
3.0.836 826 1/21/2025
3.0.835 1,387 1/21/2025
3.0.834 142 1/21/2025
3.0.833 1,104 1/21/2025
3.0.832 133 1/21/2025
3.0.831 3,087 1/21/2025
3.0.830 125 1/21/2025
3.0.829 551 1/20/2025
3.0.828 3,904 1/20/2025
3.0.827 338 1/20/2025
3.0.826 2,858 1/20/2025
3.0.825 137 1/20/2025
3.0.824 1,492 1/20/2025
3.0.823 144 1/20/2025
3.0.822 148 1/20/2025
3.0.821 141 1/20/2025
3.0.820 484 1/20/2025
3.0.819 144 1/20/2025
3.0.818 138 1/20/2025
3.0.817 7,756 1/19/2025
3.0.816 143 1/19/2025
3.0.815 7,311 1/19/2025
3.0.814 2,258 1/19/2025
3.0.813 168 1/19/2025
3.0.812 540 1/19/2025
3.0.811 135 1/19/2025
3.0.810 2,657 1/19/2025
3.0.809 134 1/19/2025
3.0.808 4,547 1/18/2025
3.0.807 141 1/18/2025
3.0.806 9,872 1/17/2025
3.0.805 150 1/17/2025
3.0.804 891 1/17/2025
3.0.803 1,362 1/17/2025
3.0.802 5,824 1/16/2025
3.0.801 2,009 1/16/2025
3.0.800 2,898 1/16/2025
3.0.799 728 1/16/2025
3.0.798 1,752 1/16/2025
3.0.797 1,401 1/16/2025
3.0.796 128 1/16/2025
3.0.795 6,453 1/15/2025
3.0.794 133 1/15/2025
3.0.793 3,895 1/15/2025
3.0.792 130 1/15/2025
3.0.791 193 1/15/2025
3.0.790 4,692 1/15/2025
3.0.789 117 1/15/2025
3.0.788 3,972 1/15/2025
3.0.787 114 1/15/2025
3.0.786 728 1/15/2025
3.0.785 109 1/15/2025
3.0.784 2,328 1/15/2025
3.0.783 112 1/15/2025
3.0.782 341 1/14/2025
3.0.781 124 1/14/2025
3.0.780 125 1/14/2025
3.0.779 4,850 1/14/2025
3.0.778 809 1/14/2025
3.0.777 126 1/14/2025
3.0.776 1,556 1/14/2025
3.0.775 114 1/14/2025
3.0.774 7,771 1/13/2025
3.0.773 2,276 1/13/2025
3.0.772 1,937 1/13/2025
3.0.771 131 1/13/2025
3.0.770 7,466 1/11/2025
3.0.769 2,985 1/11/2025
3.0.768 155 1/11/2025
3.0.767 2,793 1/11/2025
3.0.766 142 1/11/2025
3.0.765 2,518 1/10/2025
3.0.764 2,766 1/10/2025
3.0.763 135 1/10/2025
3.0.762 1,146 1/10/2025
3.0.761 150 1/10/2025
3.0.760 137 1/10/2025
3.0.759 9,174 1/3/2025
3.0.758 626 1/3/2025
3.0.757 1,370 1/3/2025
3.0.756 172 1/3/2025
3.0.755 2,027 1/3/2025
3.0.754 145 1/3/2025
3.0.753 1,532 1/3/2025
3.0.752 1,479 1/2/2025
3.0.751 141 1/2/2025
3.0.750 2,511 1/2/2025
3.0.749 145 1/2/2025
3.0.748 4,105 1/2/2025
3.0.747 135 1/2/2025
3.0.746 155 1/2/2025
3.0.745 6,831 1/1/2025
3.0.744 1,435 1/1/2025
3.0.743 364 1/1/2025
3.0.742 164 1/1/2025
3.0.741 2,155 1/1/2025
3.0.740 148 1/1/2025
3.0.739 146 1/1/2025
3.0.738 158 1/1/2025
3.0.737 434 12/31/2024
3.0.736 159 12/31/2024
3.0.735 169 12/31/2024
3.0.734 871 12/31/2024
3.0.733 169 12/31/2024
3.0.732 6,628 12/31/2024
3.0.731 158 12/31/2024
3.0.730 6,435 12/31/2024
3.0.729 129 12/31/2024
3.0.728 3,588 12/31/2024
3.0.727 463 12/31/2024
3.0.726 147 12/31/2024
3.0.725 1,882 12/31/2024
3.0.724 144 12/31/2024
3.0.723 12,753 12/28/2024
3.0.722 1,615 12/28/2024
3.0.721 1,825 12/27/2024
3.0.720 158 12/27/2024
3.0.719 3,823 12/27/2024
3.0.718 7,224 12/24/2024
3.0.717 1,777 12/24/2024
3.0.716 1,314 12/24/2024
3.0.715 1,107 12/24/2024
3.0.714 1,931 12/24/2024
3.0.713 140 12/24/2024
3.0.712 3,146 12/24/2024
3.0.711 871 12/24/2024
3.0.710 142 12/24/2024
3.0.709 620 12/24/2024
3.0.708 1,348 12/24/2024
3.0.707 345 12/24/2024
3.0.706 175 12/24/2024
3.0.705 1,474 12/24/2024
3.0.704 150 12/24/2024
3.0.703 2,494 12/23/2024
3.0.702 4,022 12/23/2024
3.0.701 147 12/23/2024
3.0.700 978 12/23/2024
3.0.699 146 12/23/2024
3.0.698 2,681 12/23/2024
3.0.697 146 12/23/2024
3.0.696 2,135 12/23/2024
3.0.695 153 12/23/2024
3.0.694 610 12/22/2024
3.0.693 2,047 12/22/2024
3.0.692 5,665 12/22/2024
3.0.691 157 12/22/2024
3.0.690 2,295 12/22/2024
3.0.689 213 12/22/2024
3.0.688 636 12/22/2024
3.0.687 141 12/22/2024
3.0.686 355 12/22/2024
3.0.685 148 12/22/2024
3.0.684 9,774 12/22/2024
3.0.683 136 12/22/2024
3.0.682 1,527 12/21/2024
3.0.681 378 12/21/2024
3.0.680 143 12/21/2024
3.0.679 712 12/21/2024
3.0.678 1,148 12/21/2024
3.0.677 140 12/21/2024
3.0.676 5,460 12/21/2024
3.0.675 547 12/21/2024
3.0.674 143 12/21/2024
3.0.673 3,616 12/21/2024
3.0.672 985 12/21/2024
3.0.671 153 12/21/2024
3.0.670 2,201 12/20/2024
3.0.669 153 12/20/2024
3.0.668 149 12/20/2024
3.0.667 5,386 12/20/2024
3.0.666 1,609 12/20/2024
3.0.665 303 12/20/2024
3.0.664 4,965 12/19/2024
3.0.663 603 12/19/2024
3.0.662 2,930 12/18/2024
3.0.661 142 12/18/2024
3.0.660 9,145 12/17/2024
3.0.659 287 12/17/2024
3.0.658 945 12/16/2024
3.0.657 151 12/16/2024
3.0.656 202 12/16/2024
3.0.655 139 12/16/2024
3.0.654 9,091 12/10/2024
3.0.653 1,446 12/10/2024
3.0.652 530 12/9/2024
3.0.651 146 12/9/2024
3.0.650 3,826 12/9/2024
3.0.649 2,000 12/9/2024
3.0.648 142 12/9/2024
3.0.647 5,335 12/9/2024
3.0.646 4,022 12/6/2024
3.0.645 607 12/6/2024
3.0.644 148 12/6/2024
3.0.643 981 12/6/2024
3.0.641 5,510 12/6/2024
3.0.640 3,575 12/6/2024
3.0.639 7,657 12/6/2024
3.0.637 499 12/6/2024
3.0.636 3,628 12/5/2024
3.0.635 4,961 12/5/2024
3.0.634 4,204 12/5/2024
3.0.633 141 12/5/2024
3.0.632 2,582 12/5/2024
3.0.631 1,428 12/5/2024
3.0.630 150 12/5/2024
3.0.629 523 12/5/2024
3.0.628 145 12/5/2024
3.0.627 196 12/5/2024
3.0.626 145 12/5/2024
3.0.625 4,830 12/4/2024
3.0.624 145 12/4/2024
3.0.623 161 12/4/2024
3.0.622 164 12/4/2024
3.0.621 2,409 12/4/2024
3.0.620 419 12/4/2024
3.0.619 583 12/4/2024
3.0.618 4,905 12/3/2024
3.0.617 150 12/3/2024
3.0.616 1,594 12/3/2024
3.0.615 656 12/3/2024
3.0.614 161 12/3/2024
3.0.613 161 12/3/2024
3.0.612 5,560 12/3/2024
3.0.611 142 12/3/2024
3.0.610 4,762 12/3/2024
3.0.609 136 12/3/2024
3.0.608 4,447 12/2/2024
3.0.607 3,982 12/2/2024
3.0.606 2,310 12/2/2024
3.0.605 379 12/2/2024
3.0.604 152 12/2/2024
3.0.603 561 12/2/2024
3.0.602 4,912 12/1/2024
3.0.601 154 12/1/2024
3.0.600 2,707 12/1/2024
3.0.599 260 12/1/2024
3.0.598 5,010 12/1/2024
3.0.597 155 12/1/2024
3.0.596 5,142 11/29/2024
3.0.595 1,566 11/29/2024
3.0.594 7,956 11/21/2024
3.0.593 432 11/21/2024
3.0.592 6,482 11/20/2024
3.0.591 464 11/20/2024
3.0.590 156 11/20/2024
3.0.589 143 11/20/2024
3.0.588 605 11/20/2024
3.0.587 231 11/20/2024
3.0.586 141 11/20/2024
3.0.585 2,771 11/20/2024
3.0.584 3,885 11/19/2024
3.0.583 147 11/19/2024
3.0.582 896 11/19/2024
3.0.581 133 11/19/2024
3.0.580 3,575 11/19/2024
3.0.579 128 11/19/2024
3.0.578 1,802 11/19/2024
3.0.577 153 11/19/2024
3.0.576 12,160 11/14/2024
3.0.575 206 11/14/2024
3.0.574 735 11/14/2024
3.0.573 3,361 11/14/2024
3.0.572 1,037 11/14/2024
3.0.571 161 11/14/2024
3.0.570 155 11/14/2024
3.0.569 5,846 11/14/2024
3.0.568 154 11/14/2024
3.0.567 153 11/14/2024
3.0.566 5,019 11/14/2024
3.0.565 149 11/14/2024
3.0.564 151 11/14/2024
3.0.563 148 11/14/2024
2.1.562 11,699 11/13/2024
2.1.561 1,933 11/13/2024
2.1.560 4,293 11/13/2024
2.1.559 164 11/13/2024
2.1.558 1,866 11/12/2024
2.1.557 520 11/12/2024
2.1.556 11,446 11/9/2024
2.1.555 514 11/9/2024
2.1.554 161 11/9/2024
2.1.553 2,403 11/9/2024
2.1.552 146 11/9/2024
2.1.551 1,273 11/8/2024
2.1.550 150 11/8/2024
2.1.549 154 11/8/2024
2.1.548 155 11/8/2024
2.1.547 546 11/8/2024
2.1.546 2,630 11/8/2024
2.1.545 139 11/8/2024
2.1.544 7,546 11/8/2024
2.1.543 133 11/8/2024
2.1.542 16,477 11/1/2024
2.1.541 619 11/1/2024
2.1.540 9,571 10/29/2024
2.1.539 1,032 10/29/2024
2.1.538 3,872 10/29/2024
2.1.537 859 10/29/2024
2.1.536 7,715 10/28/2024
2.1.535 2,623 10/28/2024
2.1.534 5,422 10/26/2024
2.1.533 977 10/26/2024
2.1.532 11,812 10/22/2024
2.1.531 360 10/22/2024
2.1.530 728 10/22/2024
2.1.529 1,258 10/22/2024
2.1.528 146 10/22/2024
2.1.527 655 10/22/2024
2.1.526 9,186 10/18/2024
2.1.525 1,510 10/17/2024
2.1.524 5,843 10/15/2024
2.1.523 2,211 10/15/2024
2.1.522 147 10/14/2024
2.1.521 7,201 10/12/2024
2.1.520 936 10/11/2024
2.1.519 143 10/11/2024
2.1.518 661 10/11/2024
2.1.517 4,093 10/11/2024
2.1.516 9,045 10/9/2024
2.1.515 522 10/9/2024
2.1.514 132 10/9/2024
2.1.513 2,717 10/8/2024
2.1.512 206 10/8/2024
2.1.511 3,045 10/8/2024
2.1.510 189 10/8/2024
2.1.509 137 10/8/2024
2.1.508 5,555 10/8/2024
2.1.507 8,656 10/3/2024
2.1.506 150 10/3/2024
2.1.505 1,584 10/3/2024
2.1.504 2,723 10/3/2024
2.1.503 1,999 10/3/2024
2.1.502 8,221 10/2/2024
2.1.501 143 10/2/2024
2.1.500 2,529 10/2/2024
2.1.499 1,413 10/2/2024
2.1.498 5,848 10/1/2024
2.1.497 958 10/1/2024
2.1.496 159 10/1/2024
2.1.495 3,680 10/1/2024
2.1.494 151 10/1/2024
2.1.493 191 10/1/2024
2.1.492 7,682 9/29/2024
2.1.491 1,906 9/29/2024
2.1.490 150 9/29/2024
2.1.489 1,683 9/29/2024
2.1.488 158 9/29/2024
2.1.487 3,576 9/29/2024
2.1.486 7,213 9/27/2024
2.1.485 1,070 9/27/2024
2.1.484 4,295 9/27/2024
2.1.483 162 9/27/2024
2.1.482 598 9/27/2024
2.1.481 3,006 9/27/2024
2.1.480 4,508 9/26/2024
2.1.479 4,871 9/26/2024
2.1.478 3,264 9/26/2024
2.1.477 2,987 9/26/2024
2.1.476 5,236 9/26/2024
2.1.475 146 9/26/2024
2.1.474 7,841 9/23/2024
2.1.473 1,759 9/23/2024
2.1.472 1,325 9/23/2024
2.1.471 1,604 9/23/2024
2.1.470 159 9/23/2024
2.1.469 2,121 9/23/2024
2.1.468 132 9/23/2024
2.1.467 6,595 9/23/2024
2.1.466 154 9/23/2024
2.1.465 1,046 9/23/2024
2.1.464 167 9/23/2024
2.1.463 138 9/23/2024
2.1.462 1,265 9/23/2024
2.1.461 12,916 9/18/2024
2.1.460 325 9/17/2024
2.1.459 1,700 9/17/2024
2.1.458 2,277 9/17/2024
2.1.457 159 9/17/2024
2.1.456 2,509 9/17/2024
2.1.455 623 9/17/2024
2.1.454 4,452 9/17/2024
2.1.453 789 9/17/2024
2.1.452 261 9/17/2024
2.1.451 3,576 9/17/2024
2.1.450 10,338 9/16/2024
2.1.449 955 9/16/2024
2.1.448 6,753 9/12/2024
2.1.447 3,985 9/12/2024
2.1.446 1,744 9/11/2024
2.1.445 2,153 9/11/2024
2.1.443 4,839 9/11/2024
2.1.442 1,300 9/11/2024
2.1.441 1,227 9/11/2024
2.1.440 3,111 9/11/2024
2.1.439 10,759 9/10/2024
2.1.438 172 9/10/2024
2.1.437 1,517 9/10/2024
2.1.436 166 9/10/2024
2.1.434 3,837 9/10/2024
2.1.433 778 9/9/2024
2.1.432 2,452 9/9/2024
2.1.430 2,001 9/9/2024
2.1.428 175 9/9/2024
2.1.427 580 9/9/2024
2.1.426 17,872 9/7/2024
2.1.425 188 9/7/2024
2.1.424 6,699 9/6/2024
2.1.423 479 9/6/2024
2.1.422 3,016 9/6/2024
2.1.421 165 9/5/2024
2.1.420 175 9/5/2024
2.1.419 3,226 9/5/2024
2.1.418 1,557 9/5/2024
2.1.417 163 9/5/2024
2.1.416 1,458 9/5/2024
2.1.415 595 9/5/2024
2.1.414 160 9/5/2024
2.1.413 6,753 9/5/2024
2.1.412 263 9/5/2024
2.1.411 170 9/5/2024
2.1.410 3,071 9/4/2024
2.1.409 10,841 9/3/2024
2.1.408 154 9/3/2024
2.1.407 156 9/3/2024
2.1.406 5,346 9/3/2024
2.1.405 199 9/3/2024
2.1.404 3,405 9/3/2024
2.1.403 7,148 8/29/2024
2.1.402 3,481 8/29/2024
2.1.401 3,865 8/26/2024
2.1.400 146 8/26/2024
2.1.399 6,822 8/21/2024
2.1.398 831 8/21/2024
2.1.397 189 8/21/2024
2.1.396 3,499 8/21/2024
2.1.395 196 8/20/2024
2.1.394 192 8/20/2024
2.1.393 644 8/20/2024
2.1.392 4,081 8/20/2024
2.1.391 570 8/20/2024
2.1.390 165 8/20/2024
2.1.389 3,609 8/20/2024
2.1.388 170 8/20/2024
2.1.387 1,706 8/20/2024
2.1.386 4,014 8/19/2024
2.1.385 6,554 8/15/2024
2.1.384 2,818 8/15/2024
2.1.383 6,526 8/14/2024
2.1.382 191 8/13/2024
2.1.381 7,675 8/7/2024
2.1.380 390 8/6/2024
2.1.379 3,711 8/6/2024
2.1.378 6,930 8/1/2024
2.1.377 468 8/1/2024
2.1.376 145 8/1/2024
2.1.374 1,675 8/1/2024
2.1.373 8,194 7/25/2024
2.1.372 141 7/25/2024
2.1.371 1,083 7/25/2024
2.1.370 440 7/25/2024
2.1.369 524 7/25/2024
2.1.368 260 7/25/2024
2.1.367 575 7/24/2024
2.1.366 209 7/24/2024
2.1.365 320 7/24/2024
2.1.364 465 7/24/2024
2.1.363 11,763 7/20/2024
2.1.362 2,063 7/20/2024
2.1.361 7,031 7/14/2024
2.1.360 2,123 7/14/2024
2.1.359 154 7/14/2024
2.1.358 2,077 7/14/2024
2.1.357 6,049 7/10/2024
2.1.355 1,014 7/10/2024
2.1.354 1,645 7/10/2024
2.1.353 161 7/10/2024
2.1.352 2,440 7/10/2024
2.1.351 182 7/10/2024
2.1.350 151 7/10/2024
2.1.349 227 7/10/2024
2.1.348 157 7/10/2024
2.1.347 2,766 7/10/2024
2.1.346 173 7/10/2024
2.1.345 1,191 7/10/2024
2.1.344 153 7/10/2024
2.1.343 283 7/9/2024
2.1.342 138 7/9/2024
2.1.339 2,667 7/9/2024
2.1.338 604 7/9/2024
2.1.337 5,577 7/9/2024
2.1.336 1,530 7/9/2024
2.1.335 164 7/9/2024
2.1.334 3,488 7/9/2024
2.1.333 148 7/9/2024
2.1.332 11,150 7/9/2024
2.1.331 161 7/9/2024
2.1.330 3,415 7/9/2024
2.1.329 147 7/9/2024
2.1.328 1,430 7/9/2024
2.1.327 912 7/8/2024
2.1.326 1,374 7/8/2024
2.1.325 162 7/8/2024
2.1.324 174 7/8/2024
2.1.323 6,831 7/8/2024
2.1.322 2,238 7/8/2024
2.1.321 159 7/8/2024
2.1.320 3,242 7/7/2024
2.1.319 169 7/7/2024
2.1.318 183 7/7/2024
2.1.317 167 7/7/2024
2.1.316 1,606 7/7/2024
2.1.315 3,001 7/7/2024
2.1.314 2,565 7/7/2024
2.1.313 308 7/7/2024
2.1.312 4,733 7/5/2024
2.1.311 5,492 7/3/2024
2.1.310 4,264 7/3/2024
2.1.309 569 7/3/2024
2.1.308 5,565 7/2/2024
2.1.307 2,567 6/30/2024
2.1.306 3,118 6/28/2024
2.1.305 7,365 6/22/2024
2.1.304 6,685 6/15/2024
2.1.303 5,487 6/14/2024
2.1.302 7,965 6/1/2024
2.1.301 2,192 6/1/2024
2.1.300 780 6/1/2024
2.1.299 8,001 5/31/2024
2.1.298 5,035 5/29/2024
2.1.297 4,171 5/28/2024
2.1.296 3,346 5/27/2024
2.1.295 6,615 5/26/2024
2.1.294 2,789 5/26/2024
2.1.293 657 5/26/2024
2.1.292 3,452 5/25/2024
2.1.291 1,845 5/25/2024
2.1.290 180 5/25/2024
2.1.289 174 5/25/2024
2.1.288 968 5/25/2024
2.1.287 170 5/25/2024
2.1.286 530 5/25/2024
2.1.285 170 5/25/2024
2.1.284 167 5/25/2024
2.1.283 10,188 5/23/2024
2.1.282 716 5/23/2024
2.1.281 355 5/22/2024
2.1.280 4,960 5/22/2024
2.1.279 175 5/22/2024
2.1.278 181 5/22/2024
2.1.277 170 5/22/2024
2.1.276 2,979 5/22/2024
2.1.275 4,638 5/18/2024
2.1.274 2,536 5/18/2024
2.1.273 2,511 5/17/2024
2.1.272 166 5/17/2024
2.1.271 3,669 5/16/2024
2.1.270 590 5/15/2024
2.1.269 3,772 5/15/2024
2.1.268 6,146 5/12/2024
2.1.267 3,761 5/3/2024
2.1.266 1,572 4/30/2024
2.1.265 2,437 4/29/2024
2.1.264 2,554 4/29/2024
2.1.263 3,626 4/28/2024
2.1.262 2,050 4/28/2024
2.1.261 1,500 4/28/2024
2.1.260 2,309 4/28/2024
2.1.259 1,307 4/28/2024
2.1.258 159 4/28/2024
2.1.257 5,650 4/27/2024
2.1.256 179 4/27/2024
2.1.255 5,836 4/19/2024
2.1.254 5,596 4/18/2024
2.1.253 4,619 4/12/2024
2.1.252 1,537 4/12/2024
2.1.251 953 4/12/2024
2.1.250 1,152 4/12/2024
2.1.249 273 4/12/2024
2.1.248 153 4/12/2024
2.1.247 1,321 4/12/2024
2.1.246 418 4/12/2024
2.1.245 2,088 4/11/2024
2.1.244 5,240 4/10/2024
2.1.243 1,499 4/9/2024
2.1.242 4,287 4/2/2024
2.1.241 1,216 4/1/2024
2.1.240 2,826 3/29/2024
2.1.239 2,438 3/25/2024
2.1.238 383 3/25/2024
2.1.237 4,483 3/20/2024
2.1.236 2,764 3/19/2024
2.1.235 645 3/19/2024
2.1.234 3,253 3/18/2024
2.1.233 1,787 3/18/2024
2.1.232 1,787 3/15/2024
2.1.231 3,109 3/13/2024
2.1.230 1,410 3/13/2024
2.1.229 942 3/13/2024
2.1.228 985 3/13/2024
2.1.227 185 3/13/2024
2.1.226 677 3/13/2024
2.1.225 180 3/13/2024
2.1.224 184 3/13/2024
2.1.223 2,206 3/12/2024
2.1.222 3,738 3/11/2024
2.1.221 3,274 3/11/2024
2.1.220 2,132 3/10/2024
2.1.219 2,487 3/8/2024
2.1.218 1,371 3/8/2024
2.1.217 2,037 3/8/2024
2.1.216 2,779 3/6/2024
2.1.215 2,628 3/4/2024
2.1.214 1,863 3/4/2024
2.1.213 3,405 3/2/2024
2.1.212 1,585 3/2/2024
2.1.211 525 3/2/2024
2.1.210 447 3/2/2024
2.1.209 687 3/2/2024
2.1.208 4,425 2/29/2024
2.1.207 810 2/29/2024
2.1.206 457 2/29/2024
2.1.205 4,341 2/26/2024
2.1.204 1,932 2/25/2024
2.1.203 3,401 2/23/2024
2.1.202 2,428 2/22/2024
2.1.201 1,209 2/22/2024
2.1.200 575 2/21/2024
2.1.199 1,503 2/21/2024
2.1.198 376 2/21/2024
2.1.197 894 2/21/2024
2.1.196 169 2/21/2024
2.1.195 1,701 2/21/2024
2.1.194 531 2/21/2024
2.1.193 175 2/21/2024
2.1.192 188 2/21/2024
2.1.191 709 2/21/2024
2.1.190 163 2/21/2024
2.1.189 3,471 2/20/2024
2.1.188 858 2/20/2024
2.1.187 805 2/20/2024
2.1.186 1,076 2/20/2024
2.1.185 2,740 2/19/2024
2.1.184 2,437 2/17/2024
2.1.183 1,154 2/16/2024
2.1.182 1,064 2/16/2024
2.1.181 1,798 2/16/2024
2.1.180 179 2/16/2024
2.1.179 842 2/16/2024
2.1.178 180 2/16/2024
2.1.177 176 2/16/2024
2.1.176 701 2/16/2024
2.1.175 164 2/16/2024
2.1.174 4,317 2/13/2024
2.1.173 1,756 2/13/2024
2.1.172 1,419 2/13/2024
2.1.171 611 2/13/2024
2.1.170 798 2/13/2024
2.1.169 2,503 2/12/2024
2.1.168 612 2/11/2024
2.1.167 2,002 2/11/2024
2.1.166 1,086 2/11/2024
2.1.165 3,628 2/10/2024
2.1.164 676 2/9/2024
2.1.163 176 2/9/2024
2.1.162 2,062 2/9/2024
2.1.161 2,117 2/9/2024
2.1.160 516 2/8/2024
2.1.159 1,590 2/8/2024
2.1.158 1,026 2/8/2024
2.1.157 1,887 2/8/2024
2.1.156 162 2/8/2024
2.1.155 2,425 2/7/2024
2.1.154 569 2/7/2024
2.1.153 742 2/7/2024
2.1.152 1,689 2/7/2024
2.1.151 453 2/6/2024
2.1.150 171 2/6/2024
2.1.149 173 2/6/2024
2.1.148 3,557 2/5/2024
2.1.147 2,016 2/4/2024
2.1.146 2,694 2/2/2024
2.1.145 2,437 1/31/2024
2.1.144 2,698 1/29/2024
2.1.143 1,726 1/29/2024
2.1.142 452 1/29/2024
2.1.141 1,833 1/28/2024
2.1.140 608 1/28/2024
2.1.139 391 1/28/2024
2.1.138 663 1/28/2024
2.1.137 2,563 1/28/2024
2.1.136 1,222 1/28/2024
2.1.135 394 1/27/2024
2.1.134 1,145 1/27/2024
2.1.133 1,650 1/27/2024
2.1.132 1,565 1/27/2024
2.1.131 196 1/27/2024
2.1.130 838 1/27/2024
2.1.129 1,421 1/26/2024
2.1.128 300 1/26/2024
2.1.127 1,079 1/26/2024
2.1.126 1,495 1/26/2024
2.1.125 2,077 1/26/2024
2.1.124 1,175 1/25/2024
2.1.123 1,304 1/25/2024
2.1.122 572 1/25/2024
2.1.121 1,126 1/25/2024
2.1.120 633 1/25/2024
2.1.119 3,431 1/19/2024
2.1.118 2,760 1/15/2024
2.1.117 615 1/15/2024
2.1.116 1,637 1/15/2024
2.1.115 171 1/15/2024
2.1.114 699 1/15/2024
2.1.113 1,747 1/15/2024
2.1.112 3,206 1/14/2024
2.1.111 2,050 1/13/2024
2.1.110 2,226 1/12/2024
2.1.109 2,614 1/11/2024
2.1.108 3,269 1/7/2024
2.1.107 2,555 1/5/2024
2.1.106 638 1/5/2024
2.1.105 192 1/5/2024
2.1.104 179 1/5/2024
2.1.103 1,776 1/5/2024
2.1.102 186 1/5/2024
2.1.101 3,544 1/1/2024
2.1.100 2,779 12/28/2023
2.1.99 945 12/28/2023
2.1.98 661 12/28/2023
2.1.97 173 12/28/2023
2.1.96 178 12/28/2023
2.1.95 880 12/27/2023
2.1.94 192 12/27/2023
2.1.93 651 12/27/2023
2.1.92 185 12/27/2023
2.1.91 190 12/27/2023
2.1.90 2,977 12/25/2023
2.1.89 452 12/25/2023
2.1.88 1,112 12/25/2023
2.1.87 193 12/25/2023
2.1.86 839 12/25/2023
2.1.85 182 12/25/2023
2.1.84 777 12/25/2023
2.1.83 183 12/25/2023
2.1.82 2,216 12/24/2023
2.1.81 1,452 12/23/2023
2.1.80 1,206 12/23/2023
2.1.79 385 12/23/2023
2.1.78 737 12/23/2023
2.1.77 185 12/23/2023
2.1.76 170 12/23/2023
2.1.75 1,450 12/23/2023
2.1.74 175 12/23/2023
2.1.73 1,871 12/19/2023
2.1.72 278 12/19/2023
2.1.71 4,053 12/11/2023
2.1.70 967 12/10/2023
2.1.69 173 12/10/2023
2.1.68 587 12/10/2023
2.1.67 1,917 12/10/2023
2.1.66 504 12/9/2023
2.1.65 476 12/9/2023
2.1.64 365 12/9/2023
2.1.63 190 12/9/2023
2.1.62 331 12/9/2023
2.1.61 271 12/9/2023
2.1.60 168 12/9/2023
2.1.59 1,444 12/9/2023
2.1.58 183 12/9/2023
2.1.57 2,049 12/6/2023
2.1.56 538 12/6/2023
2.1.55 335 12/6/2023
2.1.54 357 12/6/2023
2.1.53 1,225 12/5/2023
2.1.52 502 12/5/2023
2.1.51 442 12/5/2023
2.1.50 509 12/5/2023
2.1.49 152 12/5/2023
2.1.48 440 12/5/2023
2.1.47 349 12/5/2023
2.1.46 156 12/4/2023
2.1.45 169 12/4/2023
2.1.44 438 12/4/2023
2.1.43 183 12/4/2023
2.1.42 1,392 12/4/2023
2.1.41 135 12/4/2023
2.1.40 1,610 11/27/2023
2.1.39 712 11/26/2023
2.1.38 302 11/26/2023
2.1.37 873 11/23/2023
2.1.36 951 11/23/2023
2.1.35 855 11/23/2023
2.1.34 165 11/23/2023
2.1.33 585 11/23/2023
2.1.32 175 11/23/2023
2.1.31 1,452 11/20/2023
2.1.30 1,560 11/20/2023
2.1.29 1,140 11/19/2023
2.1.28 365 11/19/2023
2.1.27 644 11/19/2023
2.1.26 688 11/19/2023
2.1.25 696 11/19/2023
2.1.24 153 11/19/2023
2.1.23 285 11/18/2023
2.1.22 1,366 11/18/2023
2.1.21 519 11/18/2023
2.1.20 746 11/18/2023
2.1.19 175 11/18/2023
2.1.18 441 11/18/2023
2.1.17 164 11/18/2023
2.1.16 837 11/17/2023
2.1.15 745 11/17/2023
2.1.14 164 11/17/2023
2.1.13 583 11/17/2023
2.1.12 399 11/17/2023
2.1.11 695 11/17/2023
2.1.10 160 11/17/2023
2.1.9 729 11/17/2023
2.1.8 168 11/17/2023
2.1.7 199 11/17/2023
2.1.6 450 11/17/2023
2.1.5 541 11/16/2023
2.0.101 2,903 11/15/2023
2.0.100 150 11/15/2023
2.0.99 168 11/15/2023
2.0.4 160 11/16/2023
2.0.3 174 11/16/2023
2.0.2 166 11/16/2023
2.0.1 161 11/16/2023
1.0.98 822 11/14/2023
1.0.97 965 11/13/2023
1.0.96 146 11/13/2023
1.0.95 691 11/10/2023
1.0.94 161 11/10/2023
1.0.93 1,285 11/9/2023
1.0.92 162 11/9/2023
1.0.91 1,376 11/7/2023
1.0.90 161 11/7/2023
1.0.89 627 11/6/2023
1.0.88 171 11/6/2023
1.0.87 762 11/3/2023
1.0.86 176 11/3/2023
1.0.85 1,178 11/2/2023
1.0.84 156 11/2/2023
1.0.83 770 11/1/2023
1.0.82 1,938 10/26/2023
1.0.81 1,736 10/19/2023
1.0.80 179 10/19/2023
1.0.79 1,049 10/18/2023
1.0.78 202 10/18/2023
1.0.77 962 10/17/2023
1.0.76 190 10/17/2023
1.0.75 848 10/16/2023
1.0.74 193 10/16/2023
1.0.73 919 10/13/2023
1.0.72 437 10/12/2023
1.0.71 2,244 9/20/2023
1.0.70 924 9/19/2023
1.0.69 902 9/18/2023
1.0.68 188 9/18/2023
1.0.67 1,186 9/14/2023
1.0.66 1,949 8/31/2023
1.0.65 191 8/31/2023
1.0.64 1,087 8/30/2023
1.0.63 216 8/30/2023
1.0.62 233 8/30/2023
1.0.61 1,091 8/28/2023
1.0.60 914 8/25/2023
1.0.59 193 8/25/2023
1.0.58 624 8/24/2023
1.0.57 1,974 8/21/2023
1.0.56 1,121 8/18/2023
1.0.55 999 8/17/2023
1.0.54 211 8/17/2023
1.0.53 2,510 8/10/2023
1.0.52 711 8/9/2023
1.0.51 856 8/8/2023
1.0.50 816 8/7/2023
1.0.49 238 8/7/2023
1.0.48 3,254 7/13/2023
1.0.47 1,140 7/11/2023
1.0.46 890 7/10/2023
1.0.45 861 7/7/2023
1.0.44 236 7/7/2023
1.0.43 2,758 6/30/2023
1.0.42 1,368 6/29/2023
1.0.41 743 6/28/2023
1.0.40 1,948 6/26/2023
1.0.39 1,030 6/23/2023
1.0.38 1,392 6/21/2023
1.0.37 1,891 6/15/2023
1.0.36 598 6/14/2023
1.0.35 2,285 6/9/2023
1.0.34 1,000 6/8/2023
1.0.33 2,001 6/7/2023
1.0.32 233 6/7/2023
1.0.31 1,464 6/6/2023
1.0.30 1,440 6/5/2023
1.0.29 1,629 6/2/2023
1.0.28 227 6/2/2023
1.0.27 1,495 6/1/2023
1.0.26 747 5/31/2023
1.0.25 590 5/31/2023
1.0.24 230 5/31/2023
1.0.23 1,795 5/30/2023
1.0.22 1,838 5/26/2023
1.0.21 852 5/25/2023
1.0.20 204 5/25/2023
1.0.19 1,007 5/24/2023
1.0.18 221 5/24/2023
1.0.17 571 5/23/2023
1.0.13 1,762 5/22/2023
1.0.12 1,452 5/18/2023
1.0.11 750 5/17/2023
1.0.10 1,809 5/1/2023
1.0.9 1,194 4/25/2023
1.0.8 566 4/24/2023
1.0.7 1,176 4/21/2023
1.0.6 2,287 4/13/2023
1.0.5 731 4/12/2023
1.0.4 1,190 4/8/2023
1.0.3 259 4/8/2023
1.0.2 731 4/8/2023
1.0.1 264 4/8/2023