Soenneker.Utils.SingletonDictionary 1.0.7

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.7
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 1.0.7
                    
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.7" />
                    
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.7" />
                    
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.7
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 1.0.7"
                    
#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.7
                    
#: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.7
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=1.0.7
                    
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 13,137 9/9/2025
3.0.1106 14,860 9/3/2025
3.0.1105 252 9/3/2025
3.0.1104 1,437 9/3/2025
3.0.1103 20,148 8/14/2025
3.0.1102 4,764 8/11/2025
3.0.1101 1,923 8/11/2025
3.0.1100 505 8/11/2025
3.0.1099 126 8/11/2025
3.0.1098 14,668 8/6/2025
3.0.1097 3,380 8/5/2025
3.0.1096 18,765 7/9/2025
3.0.1095 23,574 6/28/2025
3.0.1094 1,268 6/28/2025
3.0.1093 1,831 6/27/2025
3.0.1092 2,281 6/27/2025
3.0.1091 24,958 6/10/2025
3.0.1090 17,529 5/27/2025
3.0.1089 917 5/27/2025
3.0.1088 980 5/27/2025
3.0.1087 2,341 5/27/2025
3.0.1086 14,151 5/23/2025
3.0.1085 1,282 5/23/2025
3.0.1084 1,237 5/23/2025
3.0.1083 1,261 5/23/2025
3.0.1082 268 5/22/2025
3.0.1081 9,788 5/18/2025
3.0.1079 1,451 5/18/2025
3.0.1078 1,404 5/18/2025
3.0.1077 4,227 5/14/2025
3.0.1076 9,465 5/8/2025
3.0.1075 303 5/8/2025
3.0.1074 618 5/8/2025
3.0.1073 1,103 5/7/2025
3.0.1072 13,120 5/5/2025
3.0.1071 903 5/5/2025
3.0.1070 1,585 5/5/2025
3.0.1069 740 5/5/2025
3.0.1068 250 5/5/2025
3.0.1067 174 5/5/2025
3.0.1066 18,391 4/9/2025
3.0.1065 294 4/9/2025
3.0.1064 1,084 4/8/2025
3.0.1063 2,240 4/8/2025
3.0.1062 3,051 4/8/2025
3.0.1061 216 4/8/2025
3.0.1060 197 4/8/2025
3.0.1059 214 4/8/2025
3.0.1058 188 4/8/2025
3.0.1057 888 4/8/2025
3.0.1056 309 4/8/2025
3.0.1055 6,508 4/8/2025
3.0.1054 676 4/8/2025
3.0.1053 3,360 4/7/2025
3.0.1052 729 4/7/2025
3.0.1051 195 4/7/2025
3.0.1050 620 4/7/2025
3.0.1049 199 4/7/2025
3.0.1048 6,942 4/7/2025
3.0.1047 197 4/7/2025
3.0.1046 9,452 4/7/2025
3.0.1045 190 4/7/2025
3.0.1044 1,406 4/7/2025
3.0.1043 191 4/7/2025
3.0.1042 1,655 4/7/2025
3.0.1041 965 4/6/2025
3.0.1040 321 4/6/2025
3.0.1039 194 4/6/2025
3.0.1038 1,093 4/6/2025
3.0.1037 194 4/6/2025
3.0.1036 427 4/6/2025
3.0.1035 1,226 4/6/2025
3.0.1034 170 4/6/2025
3.0.1033 2,083 4/6/2025
3.0.1032 137 4/6/2025
3.0.1031 172 4/6/2025
3.0.1030 140 4/6/2025
3.0.1029 1,634 4/5/2025
3.0.1028 196 4/5/2025
3.0.1027 1,179 4/5/2025
3.0.1026 1,239 4/5/2025
3.0.1025 1,081 4/5/2025
3.0.1024 658 4/5/2025
3.0.1023 571 4/5/2025
3.0.1022 138 4/5/2025
3.0.1021 1,303 4/4/2025
3.0.1020 6,979 4/4/2025
3.0.1019 23,860 4/4/2025
3.0.1018 6,771 4/1/2025
3.0.1017 2,676 4/1/2025
3.0.1016 192 4/1/2025
3.0.1015 5,509 4/1/2025
3.0.1014 2,389 3/31/2025
3.0.1013 389 3/31/2025
3.0.1012 3,984 3/31/2025
3.0.1011 6,833 3/29/2025
3.0.1010 1,107 3/29/2025
3.0.1009 1,439 3/29/2025
3.0.1008 128 3/29/2025
3.0.1007 4,378 3/27/2025
3.0.1006 3,927 3/25/2025
3.0.1005 618 3/25/2025
3.0.1004 3,153 3/25/2025
3.0.1003 6,183 3/21/2025
3.0.1002 2,604 3/21/2025
3.0.1001 7,373 3/18/2025
3.0.1000 3,474 3/18/2025
3.0.999 6,417 3/15/2025
3.0.998 1,830 3/15/2025
3.0.997 103 3/15/2025
3.0.996 6,129 3/12/2025
3.0.995 2,185 3/12/2025
3.0.994 194 3/12/2025
3.0.993 419 3/12/2025
3.0.992 181 3/12/2025
3.0.991 2,753 3/11/2025
3.0.990 193 3/11/2025
3.0.989 1,309 3/11/2025
3.0.988 194 3/11/2025
3.0.987 2,629 3/11/2025
3.0.986 198 3/11/2025
3.0.985 2,685 3/11/2025
3.0.984 181 3/11/2025
3.0.983 1,648 3/11/2025
3.0.982 181 3/11/2025
3.0.981 8,973 3/7/2025
3.0.980 2,632 3/7/2025
3.0.979 6,230 3/2/2025
3.0.978 1,055 3/2/2025
3.0.977 671 3/2/2025
3.0.976 126 3/2/2025
3.0.975 4,412 3/2/2025
3.0.974 131 3/2/2025
3.0.973 3,207 3/1/2025
3.0.972 114 3/1/2025
3.0.971 4,339 3/1/2025
3.0.970 140 3/1/2025
3.0.969 114 3/1/2025
3.0.968 424 3/1/2025
3.0.967 121 3/1/2025
3.0.966 5,851 3/1/2025
3.0.965 4,838 2/26/2025
3.0.964 851 2/26/2025
3.0.963 2,357 2/25/2025
3.0.962 126 2/25/2025
3.0.961 863 2/25/2025
3.0.960 110 2/25/2025
3.0.959 149 2/25/2025
3.0.958 1,861 2/25/2025
3.0.957 4,877 2/24/2025
3.0.956 4,552 2/23/2025
3.0.955 1,103 2/22/2025
3.0.954 116 2/22/2025
3.0.953 7,684 2/22/2025
3.0.952 2,246 2/22/2025
3.0.951 1,064 2/22/2025
3.0.950 787 2/22/2025
3.0.949 155 2/22/2025
3.0.948 128 2/22/2025
3.0.947 130 2/22/2025
3.0.946 4,693 2/21/2025
3.0.945 125 2/21/2025
3.0.944 5,556 2/21/2025
3.0.943 4,597 2/19/2025
3.0.942 1,639 2/19/2025
3.0.941 736 2/19/2025
3.0.940 130 2/19/2025
3.0.939 414 2/18/2025
3.0.938 131 2/18/2025
3.0.937 5,536 2/18/2025
3.0.936 122 2/18/2025
3.0.935 2,830 2/18/2025
3.0.934 6,846 2/16/2025
3.0.933 1,559 2/14/2025
3.0.932 832 2/14/2025
3.0.931 734 2/13/2025
3.0.930 2,423 2/13/2025
3.0.929 301 2/13/2025
3.0.928 3,723 2/13/2025
3.0.927 3,934 2/12/2025
3.0.926 1,496 2/12/2025
3.0.925 161 2/12/2025
3.0.924 132 2/12/2025
3.0.923 2,028 2/12/2025
3.0.922 369 2/12/2025
3.0.921 149 2/12/2025
3.0.920 198 2/12/2025
3.0.919 206 2/12/2025
3.0.918 130 2/12/2025
3.0.917 184 2/11/2025
3.0.916 3,428 2/11/2025
3.0.915 3,774 2/11/2025
3.0.914 2,235 2/11/2025
3.0.913 142 2/11/2025
3.0.912 413 2/11/2025
3.0.911 1,762 2/10/2025
3.0.910 147 2/10/2025
3.0.909 803 2/10/2025
3.0.908 144 2/10/2025
3.0.907 6,393 2/10/2025
3.0.906 141 2/10/2025
3.0.905 1,189 2/9/2025
3.0.904 5,671 2/9/2025
3.0.903 133 2/9/2025
3.0.902 7,210 2/8/2025
3.0.901 139 2/8/2025
3.0.900 1,733 2/7/2025
3.0.899 131 2/7/2025
3.0.898 1,610 2/7/2025
3.0.897 132 2/7/2025
3.0.896 661 2/7/2025
3.0.895 442 2/7/2025
3.0.894 142 2/7/2025
3.0.893 354 2/7/2025
3.0.892 128 2/7/2025
3.0.891 1,068 2/7/2025
3.0.890 124 2/7/2025
3.0.889 136 2/7/2025
3.0.888 10,732 2/7/2025
3.0.887 6,265 2/5/2025
3.0.886 626 2/5/2025
3.0.885 914 2/5/2025
3.0.884 299 2/5/2025
3.0.883 1,008 2/5/2025
3.0.882 672 2/5/2025
3.0.881 2,970 2/5/2025
3.0.880 122 2/5/2025
3.0.879 10,896 1/28/2025
3.0.878 661 1/28/2025
3.0.877 1,765 1/28/2025
3.0.876 239 1/28/2025
3.0.875 3,737 1/28/2025
3.0.874 643 1/27/2025
3.0.873 103 1/27/2025
3.0.872 201 1/27/2025
3.0.871 285 1/27/2025
3.0.870 116 1/27/2025
3.0.869 4,799 1/27/2025
3.0.868 4,444 1/26/2025
3.0.867 969 1/26/2025
3.0.866 196 1/26/2025
3.0.865 1,065 1/26/2025
3.0.864 1,338 1/25/2025
3.0.863 120 1/25/2025
3.0.862 5,613 1/25/2025
3.0.861 976 1/25/2025
3.0.860 313 1/25/2025
3.0.859 128 1/25/2025
3.0.858 1,890 1/25/2025
3.0.857 1,282 1/25/2025
3.0.856 6,489 1/24/2025
3.0.855 1,509 1/24/2025
3.0.854 107 1/24/2025
3.0.853 1,957 1/24/2025
3.0.852 339 1/24/2025
3.0.851 228 1/24/2025
3.0.850 3,046 1/24/2025
3.0.849 119 1/24/2025
3.0.848 497 1/23/2025
3.0.847 124 1/23/2025
3.0.846 581 1/23/2025
3.0.845 115 1/23/2025
3.0.844 7,686 1/22/2025
3.0.843 987 1/21/2025
3.0.842 971 1/21/2025
3.0.841 583 1/21/2025
3.0.840 114 1/21/2025
3.0.839 610 1/21/2025
3.0.838 756 1/21/2025
3.0.837 5,292 1/21/2025
3.0.836 550 1/21/2025
3.0.835 1,034 1/21/2025
3.0.834 125 1/21/2025
3.0.833 814 1/21/2025
3.0.832 119 1/21/2025
3.0.831 2,134 1/21/2025
3.0.830 110 1/21/2025
3.0.829 400 1/20/2025
3.0.828 2,730 1/20/2025
3.0.827 253 1/20/2025
3.0.826 2,042 1/20/2025
3.0.825 123 1/20/2025
3.0.824 1,065 1/20/2025
3.0.823 129 1/20/2025
3.0.822 134 1/20/2025
3.0.821 125 1/20/2025
3.0.820 369 1/20/2025
3.0.819 127 1/20/2025
3.0.818 122 1/20/2025
3.0.817 5,466 1/19/2025
3.0.816 125 1/19/2025
3.0.815 5,099 1/19/2025
3.0.814 1,586 1/19/2025
3.0.813 141 1/19/2025
3.0.812 389 1/19/2025
3.0.811 117 1/19/2025
3.0.810 1,844 1/19/2025
3.0.809 116 1/19/2025
3.0.808 3,155 1/18/2025
3.0.807 125 1/18/2025
3.0.806 7,024 1/17/2025
3.0.805 130 1/17/2025
3.0.804 600 1/17/2025
3.0.803 936 1/17/2025
3.0.802 4,080 1/16/2025
3.0.801 1,445 1/16/2025
3.0.800 2,017 1/16/2025
3.0.799 549 1/16/2025
3.0.798 1,218 1/16/2025
3.0.797 1,020 1/16/2025
3.0.796 112 1/16/2025
3.0.795 4,481 1/15/2025
3.0.794 115 1/15/2025
3.0.793 2,785 1/15/2025
3.0.792 114 1/15/2025
3.0.791 161 1/15/2025
3.0.790 3,238 1/15/2025
3.0.789 103 1/15/2025
3.0.788 2,712 1/15/2025
3.0.787 97 1/15/2025
3.0.786 455 1/15/2025
3.0.785 94 1/15/2025
3.0.784 1,602 1/15/2025
3.0.783 93 1/15/2025
3.0.782 241 1/14/2025
3.0.781 105 1/14/2025
3.0.780 109 1/14/2025
3.0.779 3,074 1/14/2025
3.0.778 539 1/14/2025
3.0.777 109 1/14/2025
3.0.776 1,216 1/14/2025
3.0.775 100 1/14/2025
3.0.774 5,050 1/13/2025
3.0.773 1,614 1/13/2025
3.0.772 1,333 1/13/2025
3.0.771 113 1/13/2025
3.0.770 4,952 1/11/2025
3.0.769 1,999 1/11/2025
3.0.768 139 1/11/2025
3.0.767 2,133 1/11/2025
3.0.766 124 1/11/2025
3.0.765 1,690 1/10/2025
3.0.764 1,860 1/10/2025
3.0.763 119 1/10/2025
3.0.762 786 1/10/2025
3.0.761 133 1/10/2025
3.0.760 120 1/10/2025
3.0.759 6,383 1/3/2025
3.0.758 485 1/3/2025
3.0.757 1,015 1/3/2025
3.0.756 156 1/3/2025
3.0.755 1,459 1/3/2025
3.0.754 130 1/3/2025
3.0.753 1,093 1/3/2025
3.0.752 1,064 1/2/2025
3.0.751 127 1/2/2025
3.0.750 1,720 1/2/2025
3.0.749 131 1/2/2025
3.0.748 2,929 1/2/2025
3.0.747 121 1/2/2025
3.0.746 137 1/2/2025
3.0.745 4,739 1/1/2025
3.0.744 1,031 1/1/2025
3.0.743 296 1/1/2025
3.0.742 146 1/1/2025
3.0.741 1,516 1/1/2025
3.0.740 132 1/1/2025
3.0.739 132 1/1/2025
3.0.738 142 1/1/2025
3.0.737 334 12/31/2024
3.0.736 142 12/31/2024
3.0.735 146 12/31/2024
3.0.734 653 12/31/2024
3.0.733 148 12/31/2024
3.0.732 4,637 12/31/2024
3.0.731 142 12/31/2024
3.0.730 4,410 12/31/2024
3.0.729 115 12/31/2024
3.0.728 2,647 12/31/2024
3.0.727 349 12/31/2024
3.0.726 131 12/31/2024
3.0.725 1,350 12/31/2024
3.0.724 127 12/31/2024
3.0.723 9,006 12/28/2024
3.0.722 1,159 12/28/2024
3.0.721 1,278 12/27/2024
3.0.720 142 12/27/2024
3.0.719 2,743 12/27/2024
3.0.718 5,032 12/24/2024
3.0.717 1,300 12/24/2024
3.0.716 968 12/24/2024
3.0.715 831 12/24/2024
3.0.714 1,401 12/24/2024
3.0.713 122 12/24/2024
3.0.712 2,315 12/24/2024
3.0.711 661 12/24/2024
3.0.710 124 12/24/2024
3.0.709 479 12/24/2024
3.0.708 1,009 12/24/2024
3.0.707 284 12/24/2024
3.0.706 151 12/24/2024
3.0.705 1,075 12/24/2024
3.0.704 132 12/24/2024
3.0.703 1,832 12/23/2024
3.0.702 2,798 12/23/2024
3.0.701 131 12/23/2024
3.0.700 707 12/23/2024
3.0.699 127 12/23/2024
3.0.698 1,871 12/23/2024
3.0.697 131 12/23/2024
3.0.696 1,491 12/23/2024
3.0.695 134 12/23/2024
3.0.694 464 12/22/2024
3.0.693 1,445 12/22/2024
3.0.692 4,049 12/22/2024
3.0.691 137 12/22/2024
3.0.690 1,606 12/22/2024
3.0.689 175 12/22/2024
3.0.688 493 12/22/2024
3.0.687 124 12/22/2024
3.0.686 284 12/22/2024
3.0.685 130 12/22/2024
3.0.684 6,903 12/22/2024
3.0.683 121 12/22/2024
3.0.682 1,090 12/21/2024
3.0.681 293 12/21/2024
3.0.680 125 12/21/2024
3.0.679 514 12/21/2024
3.0.678 800 12/21/2024
3.0.677 123 12/21/2024
3.0.676 3,819 12/21/2024
3.0.675 417 12/21/2024
3.0.674 127 12/21/2024
3.0.673 2,558 12/21/2024
3.0.672 694 12/21/2024
3.0.671 136 12/21/2024
3.0.670 1,623 12/20/2024
3.0.669 137 12/20/2024
3.0.668 133 12/20/2024
3.0.667 3,841 12/20/2024
3.0.666 1,164 12/20/2024
3.0.665 244 12/20/2024
3.0.664 3,538 12/19/2024
3.0.663 439 12/19/2024
3.0.662 2,096 12/18/2024
3.0.661 125 12/18/2024
3.0.660 6,672 12/17/2024
3.0.659 240 12/17/2024
3.0.658 722 12/16/2024
3.0.657 133 12/16/2024
3.0.656 170 12/16/2024
3.0.655 120 12/16/2024
3.0.654 6,589 12/10/2024
3.0.653 1,034 12/10/2024
3.0.652 405 12/9/2024
3.0.651 127 12/9/2024
3.0.650 2,729 12/9/2024
3.0.649 1,410 12/9/2024
3.0.648 125 12/9/2024
3.0.647 3,692 12/9/2024
3.0.646 2,816 12/6/2024
3.0.645 453 12/6/2024
3.0.644 132 12/6/2024
3.0.643 708 12/6/2024
3.0.641 3,920 12/6/2024
3.0.640 2,552 12/6/2024
3.0.639 5,324 12/6/2024
3.0.637 397 12/6/2024
3.0.636 2,561 12/5/2024
3.0.635 3,595 12/5/2024
3.0.634 3,230 12/5/2024
3.0.633 125 12/5/2024
3.0.632 1,768 12/5/2024
3.0.631 1,063 12/5/2024
3.0.630 136 12/5/2024
3.0.629 407 12/5/2024
3.0.628 126 12/5/2024
3.0.627 172 12/5/2024
3.0.626 128 12/5/2024
3.0.625 3,398 12/4/2024
3.0.624 129 12/4/2024
3.0.623 145 12/4/2024
3.0.622 144 12/4/2024
3.0.621 1,780 12/4/2024
3.0.620 325 12/4/2024
3.0.619 429 12/4/2024
3.0.618 3,410 12/3/2024
3.0.617 134 12/3/2024
3.0.616 1,159 12/3/2024
3.0.615 466 12/3/2024
3.0.614 144 12/3/2024
3.0.613 143 12/3/2024
3.0.612 4,111 12/3/2024
3.0.611 126 12/3/2024
3.0.610 3,389 12/3/2024
3.0.609 122 12/3/2024
3.0.608 3,112 12/2/2024
3.0.607 2,732 12/2/2024
3.0.606 1,651 12/2/2024
3.0.605 304 12/2/2024
3.0.604 134 12/2/2024
3.0.603 424 12/2/2024
3.0.602 3,505 12/1/2024
3.0.601 134 12/1/2024
3.0.600 1,917 12/1/2024
3.0.599 227 12/1/2024
3.0.598 3,541 12/1/2024
3.0.597 137 12/1/2024
3.0.596 3,608 11/29/2024
3.0.595 1,082 11/29/2024
3.0.594 6,119 11/21/2024
3.0.593 325 11/21/2024
3.0.592 4,627 11/20/2024
3.0.591 371 11/20/2024
3.0.590 140 11/20/2024
3.0.589 129 11/20/2024
3.0.588 459 11/20/2024
3.0.587 192 11/20/2024
3.0.586 125 11/20/2024
3.0.585 2,074 11/20/2024
3.0.584 2,802 11/19/2024
3.0.583 130 11/19/2024
3.0.582 670 11/19/2024
3.0.581 118 11/19/2024
3.0.580 2,782 11/19/2024
3.0.579 113 11/19/2024
3.0.578 1,343 11/19/2024
3.0.577 137 11/19/2024
3.0.576 8,657 11/14/2024
3.0.575 167 11/14/2024
3.0.574 546 11/14/2024
3.0.573 2,419 11/14/2024
3.0.572 764 11/14/2024
3.0.571 144 11/14/2024
3.0.570 140 11/14/2024
3.0.569 4,213 11/14/2024
3.0.568 136 11/14/2024
3.0.567 136 11/14/2024
3.0.566 3,570 11/14/2024
3.0.565 134 11/14/2024
3.0.564 136 11/14/2024
3.0.563 131 11/14/2024
2.1.562 8,795 11/13/2024
2.1.561 1,456 11/13/2024
2.1.560 3,123 11/13/2024
2.1.559 146 11/13/2024
2.1.558 1,357 11/12/2024
2.1.557 417 11/12/2024
2.1.556 8,389 11/9/2024
2.1.555 393 11/9/2024
2.1.554 142 11/9/2024
2.1.553 1,765 11/9/2024
2.1.552 130 11/9/2024
2.1.551 1,019 11/8/2024
2.1.550 135 11/8/2024
2.1.549 140 11/8/2024
2.1.548 137 11/8/2024
2.1.547 450 11/8/2024
2.1.546 1,940 11/8/2024
2.1.545 125 11/8/2024
2.1.544 5,549 11/8/2024
2.1.543 119 11/8/2024
2.1.542 11,870 11/1/2024
2.1.541 491 11/1/2024
2.1.540 6,910 10/29/2024
2.1.539 778 10/29/2024
2.1.538 2,887 10/29/2024
2.1.537 656 10/29/2024
2.1.536 5,665 10/28/2024
2.1.535 1,903 10/28/2024
2.1.534 4,065 10/26/2024
2.1.533 729 10/26/2024
2.1.532 9,429 10/22/2024
2.1.531 280 10/22/2024
2.1.530 576 10/22/2024
2.1.529 912 10/22/2024
2.1.528 130 10/22/2024
2.1.527 520 10/22/2024
2.1.526 6,559 10/18/2024
2.1.525 1,116 10/17/2024
2.1.524 4,181 10/15/2024
2.1.523 1,627 10/15/2024
2.1.522 128 10/14/2024
2.1.521 5,181 10/12/2024
2.1.520 684 10/11/2024
2.1.519 125 10/11/2024
2.1.518 505 10/11/2024
2.1.517 2,967 10/11/2024
2.1.516 6,507 10/9/2024
2.1.515 410 10/9/2024
2.1.514 118 10/9/2024
2.1.513 2,004 10/8/2024
2.1.512 176 10/8/2024
2.1.511 2,250 10/8/2024
2.1.510 164 10/8/2024
2.1.509 120 10/8/2024
2.1.508 3,985 10/8/2024
2.1.507 6,277 10/3/2024
2.1.506 133 10/3/2024
2.1.505 1,143 10/3/2024
2.1.504 1,954 10/3/2024
2.1.503 1,451 10/3/2024
2.1.502 5,778 10/2/2024
2.1.501 127 10/2/2024
2.1.500 1,841 10/2/2024
2.1.499 1,038 10/2/2024
2.1.498 4,211 10/1/2024
2.1.497 733 10/1/2024
2.1.496 142 10/1/2024
2.1.495 2,661 10/1/2024
2.1.494 134 10/1/2024
2.1.493 173 10/1/2024
2.1.492 5,493 9/29/2024
2.1.491 1,409 9/29/2024
2.1.490 131 9/29/2024
2.1.489 1,252 9/29/2024
2.1.488 142 9/29/2024
2.1.487 2,555 9/29/2024
2.1.486 5,278 9/27/2024
2.1.485 804 9/27/2024
2.1.484 3,168 9/27/2024
2.1.483 145 9/27/2024
2.1.482 480 9/27/2024
2.1.481 2,177 9/27/2024
2.1.480 3,200 9/26/2024
2.1.479 3,511 9/26/2024
2.1.478 2,384 9/26/2024
2.1.477 2,198 9/26/2024
2.1.476 3,858 9/26/2024
2.1.475 131 9/26/2024
2.1.474 5,663 9/23/2024
2.1.473 1,333 9/23/2024
2.1.472 997 9/23/2024
2.1.471 1,179 9/23/2024
2.1.470 143 9/23/2024
2.1.469 1,583 9/23/2024
2.1.468 117 9/23/2024
2.1.467 4,722 9/23/2024
2.1.466 136 9/23/2024
2.1.465 753 9/23/2024
2.1.464 152 9/23/2024
2.1.463 123 9/23/2024
2.1.462 916 9/23/2024
2.1.461 9,466 9/18/2024
2.1.460 277 9/17/2024
2.1.459 1,256 9/17/2024
2.1.458 1,741 9/17/2024
2.1.457 143 9/17/2024
2.1.456 1,847 9/17/2024
2.1.455 499 9/17/2024
2.1.454 3,328 9/17/2024
2.1.453 592 9/17/2024
2.1.452 227 9/17/2024
2.1.451 2,701 9/17/2024
2.1.450 7,482 9/16/2024
2.1.449 742 9/16/2024
2.1.448 5,145 9/12/2024
2.1.447 2,951 9/12/2024
2.1.446 1,349 9/11/2024
2.1.445 1,578 9/11/2024
2.1.443 3,756 9/11/2024
2.1.442 1,033 9/11/2024
2.1.441 991 9/11/2024
2.1.440 2,361 9/11/2024
2.1.439 8,124 9/10/2024
2.1.438 154 9/10/2024
2.1.437 1,192 9/10/2024
2.1.436 149 9/10/2024
2.1.434 2,960 9/10/2024
2.1.433 634 9/9/2024
2.1.432 2,033 9/9/2024
2.1.430 1,575 9/9/2024
2.1.428 161 9/9/2024
2.1.427 497 9/9/2024
2.1.426 13,331 9/7/2024
2.1.425 174 9/7/2024
2.1.424 5,053 9/6/2024
2.1.423 394 9/6/2024
2.1.422 2,262 9/6/2024
2.1.421 150 9/5/2024
2.1.420 159 9/5/2024
2.1.419 2,420 9/5/2024
2.1.418 1,198 9/5/2024
2.1.417 149 9/5/2024
2.1.416 1,181 9/5/2024
2.1.415 469 9/5/2024
2.1.414 146 9/5/2024
2.1.413 5,094 9/5/2024
2.1.412 226 9/5/2024
2.1.411 156 9/5/2024
2.1.410 2,310 9/4/2024
2.1.409 8,062 9/3/2024
2.1.408 137 9/3/2024
2.1.407 140 9/3/2024
2.1.406 4,057 9/3/2024
2.1.405 174 9/3/2024
2.1.404 2,526 9/3/2024
2.1.403 5,334 8/29/2024
2.1.402 2,589 8/29/2024
2.1.401 2,906 8/26/2024
2.1.400 132 8/26/2024
2.1.399 4,996 8/21/2024
2.1.398 641 8/21/2024
2.1.397 172 8/21/2024
2.1.396 2,590 8/21/2024
2.1.395 178 8/20/2024
2.1.394 175 8/20/2024
2.1.393 515 8/20/2024
2.1.392 2,989 8/20/2024
2.1.391 451 8/20/2024
2.1.390 151 8/20/2024
2.1.389 2,687 8/20/2024
2.1.388 156 8/20/2024
2.1.387 1,238 8/20/2024
2.1.386 2,921 8/19/2024
2.1.385 4,825 8/15/2024
2.1.384 2,154 8/15/2024
2.1.383 4,855 8/14/2024
2.1.382 175 8/13/2024
2.1.381 5,752 8/7/2024
2.1.380 306 8/6/2024
2.1.379 2,732 8/6/2024
2.1.378 4,957 8/1/2024
2.1.377 365 8/1/2024
2.1.376 128 8/1/2024
2.1.374 1,177 8/1/2024
2.1.373 5,849 7/25/2024
2.1.372 122 7/25/2024
2.1.371 760 7/25/2024
2.1.370 338 7/25/2024
2.1.369 390 7/25/2024
2.1.368 208 7/25/2024
2.1.367 422 7/24/2024
2.1.366 184 7/24/2024
2.1.365 248 7/24/2024
2.1.364 344 7/24/2024
2.1.363 8,643 7/20/2024
2.1.362 1,486 7/20/2024
2.1.361 5,079 7/14/2024
2.1.360 1,585 7/14/2024
2.1.359 137 7/14/2024
2.1.358 1,527 7/14/2024
2.1.357 4,376 7/10/2024
2.1.355 819 7/10/2024
2.1.354 1,236 7/10/2024
2.1.353 147 7/10/2024
2.1.352 1,928 7/10/2024
2.1.351 156 7/10/2024
2.1.350 134 7/10/2024
2.1.349 197 7/10/2024
2.1.348 141 7/10/2024
2.1.347 2,073 7/10/2024
2.1.346 158 7/10/2024
2.1.345 871 7/10/2024
2.1.344 136 7/10/2024
2.1.343 241 7/9/2024
2.1.342 121 7/9/2024
2.1.339 2,015 7/9/2024
2.1.338 507 7/9/2024
2.1.337 4,043 7/9/2024
2.1.336 1,116 7/9/2024
2.1.335 150 7/9/2024
2.1.334 2,603 7/9/2024
2.1.333 134 7/9/2024
2.1.332 10,412 7/9/2024
2.1.331 142 7/9/2024
2.1.330 2,532 7/9/2024
2.1.329 127 7/9/2024
2.1.328 1,099 7/9/2024
2.1.327 730 7/8/2024
2.1.326 1,012 7/8/2024
2.1.325 148 7/8/2024
2.1.324 155 7/8/2024
2.1.323 4,887 7/8/2024
2.1.322 1,661 7/8/2024
2.1.321 145 7/8/2024
2.1.320 2,319 7/7/2024
2.1.319 154 7/7/2024
2.1.318 168 7/7/2024
2.1.317 151 7/7/2024
2.1.316 1,177 7/7/2024
2.1.315 2,205 7/7/2024
2.1.314 1,893 7/7/2024
2.1.313 252 7/7/2024
2.1.312 3,430 7/5/2024
2.1.311 3,921 7/3/2024
2.1.310 3,085 7/3/2024
2.1.309 418 7/3/2024
2.1.308 3,951 7/2/2024
2.1.307 1,888 6/30/2024
2.1.306 2,278 6/28/2024
2.1.305 5,448 6/22/2024
2.1.304 4,897 6/15/2024
2.1.303 4,115 6/14/2024
2.1.302 5,904 6/1/2024
2.1.301 1,624 6/1/2024
2.1.300 613 6/1/2024
2.1.299 5,840 5/31/2024
2.1.298 3,727 5/29/2024
2.1.297 3,049 5/28/2024
2.1.296 2,485 5/27/2024
2.1.295 4,848 5/26/2024
2.1.294 2,046 5/26/2024
2.1.293 511 5/26/2024
2.1.292 2,520 5/25/2024
2.1.291 1,408 5/25/2024
2.1.290 162 5/25/2024
2.1.289 159 5/25/2024
2.1.288 718 5/25/2024
2.1.287 151 5/25/2024
2.1.286 435 5/25/2024
2.1.285 156 5/25/2024
2.1.284 150 5/25/2024
2.1.283 7,433 5/23/2024
2.1.282 551 5/23/2024
2.1.281 303 5/22/2024
2.1.280 3,659 5/22/2024
2.1.279 155 5/22/2024
2.1.278 163 5/22/2024
2.1.277 156 5/22/2024
2.1.276 2,150 5/22/2024
2.1.275 3,437 5/18/2024
2.1.274 1,912 5/18/2024
2.1.273 1,831 5/17/2024
2.1.272 148 5/17/2024
2.1.271 2,732 5/16/2024
2.1.270 468 5/15/2024
2.1.269 2,760 5/15/2024
2.1.268 4,467 5/12/2024
2.1.267 2,765 5/3/2024
2.1.266 1,165 4/30/2024
2.1.265 1,788 4/29/2024
2.1.264 1,941 4/29/2024
2.1.263 2,673 4/28/2024
2.1.262 1,505 4/28/2024
2.1.261 1,127 4/28/2024
2.1.260 1,763 4/28/2024
2.1.259 938 4/28/2024
2.1.258 142 4/28/2024
2.1.257 4,169 4/27/2024
2.1.256 161 4/27/2024
2.1.255 4,386 4/19/2024
2.1.254 4,096 4/18/2024
2.1.253 3,449 4/12/2024
2.1.252 1,175 4/12/2024
2.1.251 760 4/12/2024
2.1.250 891 4/12/2024
2.1.249 238 4/12/2024
2.1.248 138 4/12/2024
2.1.247 1,016 4/12/2024
2.1.246 334 4/12/2024
2.1.245 1,673 4/11/2024
2.1.244 3,748 4/10/2024
2.1.243 1,174 4/9/2024
2.1.242 3,189 4/2/2024
2.1.241 935 4/1/2024
2.1.240 2,109 3/29/2024
2.1.239 1,867 3/25/2024
2.1.238 324 3/25/2024
2.1.237 3,336 3/20/2024
2.1.236 2,162 3/19/2024
2.1.235 542 3/19/2024
2.1.234 2,373 3/18/2024
2.1.233 1,432 3/18/2024
2.1.232 1,406 3/15/2024
2.1.231 2,366 3/13/2024
2.1.230 1,130 3/13/2024
2.1.229 691 3/13/2024
2.1.228 794 3/13/2024
2.1.227 167 3/13/2024
2.1.226 559 3/13/2024
2.1.225 164 3/13/2024
2.1.224 168 3/13/2024
2.1.223 1,690 3/12/2024
2.1.222 2,851 3/11/2024
2.1.221 2,503 3/11/2024
2.1.220 1,657 3/10/2024
2.1.219 1,911 3/8/2024
2.1.218 1,090 3/8/2024
2.1.217 1,588 3/8/2024
2.1.216 2,098 3/6/2024
2.1.215 2,030 3/4/2024
2.1.214 1,437 3/4/2024
2.1.213 2,581 3/2/2024
2.1.212 1,242 3/2/2024
2.1.211 439 3/2/2024
2.1.210 380 3/2/2024
2.1.209 509 3/2/2024
2.1.208 3,448 2/29/2024
2.1.207 663 2/29/2024
2.1.206 365 2/29/2024
2.1.205 3,337 2/26/2024
2.1.204 1,512 2/25/2024
2.1.203 2,622 2/23/2024
2.1.202 1,925 2/22/2024
2.1.201 988 2/22/2024
2.1.200 461 2/21/2024
2.1.199 1,210 2/21/2024
2.1.198 330 2/21/2024
2.1.197 793 2/21/2024
2.1.196 153 2/21/2024
2.1.195 1,274 2/21/2024
2.1.194 442 2/21/2024
2.1.193 161 2/21/2024
2.1.192 168 2/21/2024
2.1.191 619 2/21/2024
2.1.190 145 2/21/2024
2.1.189 2,664 2/20/2024
2.1.188 744 2/20/2024
2.1.187 671 2/20/2024
2.1.186 797 2/20/2024
2.1.185 2,144 2/19/2024
2.1.184 1,896 2/17/2024
2.1.183 926 2/16/2024
2.1.182 887 2/16/2024
2.1.181 1,376 2/16/2024
2.1.180 161 2/16/2024
2.1.179 672 2/16/2024
2.1.178 165 2/16/2024
2.1.177 160 2/16/2024
2.1.176 587 2/16/2024
2.1.175 146 2/16/2024
2.1.174 3,314 2/13/2024
2.1.173 1,397 2/13/2024
2.1.172 1,118 2/13/2024
2.1.171 482 2/13/2024
2.1.170 649 2/13/2024
2.1.169 1,960 2/12/2024
2.1.168 542 2/11/2024
2.1.167 1,557 2/11/2024
2.1.166 888 2/11/2024
2.1.165 2,832 2/10/2024
2.1.164 567 2/9/2024
2.1.163 162 2/9/2024
2.1.162 1,590 2/9/2024
2.1.161 1,691 2/9/2024
2.1.160 422 2/8/2024
2.1.159 1,253 2/8/2024
2.1.158 884 2/8/2024
2.1.157 1,498 2/8/2024
2.1.156 148 2/8/2024
2.1.155 1,894 2/7/2024
2.1.154 462 2/7/2024
2.1.153 628 2/7/2024
2.1.152 1,294 2/7/2024
2.1.151 403 2/6/2024
2.1.150 157 2/6/2024
2.1.149 158 2/6/2024
2.1.148 2,793 2/5/2024
2.1.147 1,553 2/4/2024
2.1.146 2,109 2/2/2024
2.1.145 1,938 1/31/2024
2.1.144 2,168 1/29/2024
2.1.143 1,394 1/29/2024
2.1.142 376 1/29/2024
2.1.141 1,518 1/28/2024
2.1.140 498 1/28/2024
2.1.139 337 1/28/2024
2.1.138 578 1/28/2024
2.1.137 1,952 1/28/2024
2.1.136 956 1/28/2024
2.1.135 322 1/27/2024
2.1.134 955 1/27/2024
2.1.133 1,189 1/27/2024
2.1.132 1,210 1/27/2024
2.1.131 174 1/27/2024
2.1.130 728 1/27/2024
2.1.129 1,091 1/26/2024
2.1.128 254 1/26/2024
2.1.127 895 1/26/2024
2.1.126 1,151 1/26/2024
2.1.125 1,659 1/26/2024
2.1.124 903 1/25/2024
2.1.123 1,138 1/25/2024
2.1.122 481 1/25/2024
2.1.121 947 1/25/2024
2.1.120 548 1/25/2024
2.1.119 2,615 1/19/2024
2.1.118 2,245 1/15/2024
2.1.117 533 1/15/2024
2.1.116 1,268 1/15/2024
2.1.115 156 1/15/2024
2.1.114 595 1/15/2024
2.1.113 1,390 1/15/2024
2.1.112 2,568 1/14/2024
2.1.111 1,643 1/13/2024
2.1.110 1,862 1/12/2024
2.1.109 2,065 1/11/2024
2.1.108 2,676 1/7/2024
2.1.107 2,112 1/5/2024
2.1.106 522 1/5/2024
2.1.105 170 1/5/2024
2.1.104 165 1/5/2024
2.1.103 1,513 1/5/2024
2.1.102 169 1/5/2024
2.1.101 2,814 1/1/2024
2.1.100 2,244 12/28/2023
2.1.99 768 12/28/2023
2.1.98 533 12/28/2023
2.1.97 159 12/28/2023
2.1.96 160 12/28/2023
2.1.95 740 12/27/2023
2.1.94 176 12/27/2023
2.1.93 504 12/27/2023
2.1.92 167 12/27/2023
2.1.91 172 12/27/2023
2.1.90 2,255 12/25/2023
2.1.89 386 12/25/2023
2.1.88 813 12/25/2023
2.1.87 178 12/25/2023
2.1.86 690 12/25/2023
2.1.85 168 12/25/2023
2.1.84 606 12/25/2023
2.1.83 167 12/25/2023
2.1.82 1,700 12/24/2023
2.1.81 1,108 12/23/2023
2.1.80 905 12/23/2023
2.1.79 333 12/23/2023
2.1.78 593 12/23/2023
2.1.77 166 12/23/2023
2.1.76 154 12/23/2023
2.1.75 1,116 12/23/2023
2.1.74 156 12/23/2023
2.1.73 1,439 12/19/2023
2.1.72 242 12/19/2023
2.1.71 3,118 12/11/2023
2.1.70 750 12/10/2023
2.1.69 153 12/10/2023
2.1.68 523 12/10/2023
2.1.67 1,453 12/10/2023
2.1.66 408 12/9/2023
2.1.65 400 12/9/2023
2.1.64 317 12/9/2023
2.1.63 174 12/9/2023
2.1.62 294 12/9/2023
2.1.61 234 12/9/2023
2.1.60 154 12/9/2023
2.1.59 1,092 12/9/2023
2.1.58 165 12/9/2023
2.1.57 1,559 12/6/2023
2.1.56 425 12/6/2023
2.1.55 268 12/6/2023
2.1.54 296 12/6/2023
2.1.53 950 12/5/2023
2.1.52 401 12/5/2023
2.1.51 356 12/5/2023
2.1.50 397 12/5/2023
2.1.49 142 12/5/2023
2.1.48 367 12/5/2023
2.1.47 295 12/5/2023
2.1.46 145 12/4/2023
2.1.45 155 12/4/2023
2.1.44 359 12/4/2023
2.1.43 170 12/4/2023
2.1.42 1,043 12/4/2023
2.1.41 125 12/4/2023
2.1.40 1,191 11/27/2023
2.1.39 551 11/26/2023
2.1.38 246 11/26/2023
2.1.37 650 11/23/2023
2.1.36 710 11/23/2023
2.1.35 667 11/23/2023
2.1.34 153 11/23/2023
2.1.33 432 11/23/2023
2.1.32 162 11/23/2023
2.1.31 1,100 11/20/2023
2.1.30 1,083 11/20/2023
2.1.29 828 11/19/2023
2.1.28 287 11/19/2023
2.1.27 474 11/19/2023
2.1.26 524 11/19/2023
2.1.25 524 11/19/2023
2.1.24 140 11/19/2023
2.1.23 232 11/18/2023
2.1.22 1,004 11/18/2023
2.1.21 392 11/18/2023
2.1.20 557 11/18/2023
2.1.19 158 11/18/2023
2.1.18 328 11/18/2023
2.1.17 153 11/18/2023
2.1.16 629 11/17/2023
2.1.15 546 11/17/2023
2.1.14 152 11/17/2023
2.1.13 445 11/17/2023
2.1.12 327 11/17/2023
2.1.11 510 11/17/2023
2.1.10 149 11/17/2023
2.1.9 526 11/17/2023
2.1.8 157 11/17/2023
2.1.7 176 11/17/2023
2.1.6 367 11/17/2023
2.1.5 404 11/16/2023
2.0.101 2,098 11/15/2023
2.0.100 149 11/15/2023
2.0.99 156 11/15/2023
2.0.4 148 11/16/2023
2.0.3 160 11/16/2023
2.0.2 153 11/16/2023
2.0.1 149 11/16/2023
1.0.98 634 11/14/2023
1.0.97 767 11/13/2023
1.0.96 136 11/13/2023
1.0.95 594 11/10/2023
1.0.94 148 11/10/2023
1.0.93 962 11/9/2023
1.0.92 150 11/9/2023
1.0.91 1,058 11/7/2023
1.0.90 145 11/7/2023
1.0.89 523 11/6/2023
1.0.88 159 11/6/2023
1.0.87 622 11/3/2023
1.0.86 164 11/3/2023
1.0.85 911 11/2/2023
1.0.84 145 11/2/2023
1.0.83 628 11/1/2023
1.0.82 1,492 10/26/2023
1.0.81 1,332 10/19/2023
1.0.80 173 10/19/2023
1.0.79 814 10/18/2023
1.0.78 190 10/18/2023
1.0.77 762 10/17/2023
1.0.76 176 10/17/2023
1.0.75 697 10/16/2023
1.0.74 178 10/16/2023
1.0.73 725 10/13/2023
1.0.72 369 10/12/2023
1.0.71 1,770 9/20/2023
1.0.70 712 9/19/2023
1.0.69 710 9/18/2023
1.0.68 175 9/18/2023
1.0.67 923 9/14/2023
1.0.66 1,532 8/31/2023
1.0.65 181 8/31/2023
1.0.64 857 8/30/2023
1.0.63 203 8/30/2023
1.0.62 218 8/30/2023
1.0.61 880 8/28/2023
1.0.60 732 8/25/2023
1.0.59 183 8/25/2023
1.0.58 535 8/24/2023
1.0.57 1,495 8/21/2023
1.0.56 869 8/18/2023
1.0.55 788 8/17/2023
1.0.54 197 8/17/2023
1.0.53 1,935 8/10/2023
1.0.52 607 8/9/2023
1.0.51 717 8/8/2023
1.0.50 700 8/7/2023
1.0.49 224 8/7/2023
1.0.48 2,519 7/13/2023
1.0.47 935 7/11/2023
1.0.46 769 7/10/2023
1.0.45 741 7/7/2023
1.0.44 222 7/7/2023
1.0.43 2,158 6/30/2023
1.0.42 1,115 6/29/2023
1.0.41 650 6/28/2023
1.0.40 1,590 6/26/2023
1.0.39 841 6/23/2023
1.0.38 1,135 6/21/2023
1.0.37 1,506 6/15/2023
1.0.36 534 6/14/2023
1.0.35 1,850 6/9/2023
1.0.34 881 6/8/2023
1.0.33 1,672 6/7/2023
1.0.32 219 6/7/2023
1.0.31 1,271 6/6/2023
1.0.30 1,230 6/5/2023
1.0.29 1,423 6/2/2023
1.0.28 209 6/2/2023
1.0.27 1,297 6/1/2023
1.0.26 646 5/31/2023
1.0.25 539 5/31/2023
1.0.24 217 5/31/2023
1.0.23 1,519 5/30/2023
1.0.22 1,582 5/26/2023
1.0.21 741 5/25/2023
1.0.20 200 5/25/2023
1.0.19 885 5/24/2023
1.0.18 210 5/24/2023
1.0.17 505 5/23/2023
1.0.13 1,515 5/22/2023
1.0.12 1,246 5/18/2023
1.0.11 654 5/17/2023
1.0.10 1,602 5/1/2023
1.0.9 1,079 4/25/2023
1.0.8 539 4/24/2023
1.0.7 1,052 4/21/2023
1.0.6 2,010 4/13/2023
1.0.5 657 4/12/2023
1.0.4 1,076 4/8/2023
1.0.3 247 4/8/2023
1.0.2 649 4/8/2023
1.0.1 250 4/8/2023