Soenneker.Utils.SingletonDictionary 1.0.10

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.10
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 1.0.10
                    
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.10" />
                    
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.10" />
                    
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.10
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 1.0.10"
                    
#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.10
                    
#: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.10
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=1.0.10
                    
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.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.1107 18,712 9/9/2025
3.0.1106 16,317 9/3/2025
3.0.1105 272 9/3/2025
3.0.1104 1,539 9/3/2025
3.0.1103 21,910 8/14/2025
3.0.1102 5,253 8/11/2025
3.0.1101 2,100 8/11/2025
3.0.1100 568 8/11/2025
3.0.1099 126 8/11/2025
3.0.1098 16,205 8/6/2025
3.0.1097 3,657 8/5/2025
3.0.1096 21,176 7/9/2025
3.0.1095 24,881 6/28/2025
3.0.1094 1,328 6/28/2025
3.0.1093 1,922 6/27/2025
3.0.1092 2,404 6/27/2025
3.0.1091 26,486 6/10/2025
3.0.1090 18,567 5/27/2025
3.0.1089 974 5/27/2025
3.0.1088 1,020 5/27/2025
3.0.1087 2,471 5/27/2025
3.0.1086 15,060 5/23/2025
3.0.1085 1,331 5/23/2025
3.0.1084 1,316 5/23/2025
3.0.1083 1,317 5/23/2025
3.0.1082 271 5/22/2025
3.0.1081 10,441 5/18/2025
3.0.1079 1,569 5/18/2025
3.0.1078 1,491 5/18/2025
3.0.1077 4,482 5/14/2025
3.0.1076 9,903 5/8/2025
3.0.1075 314 5/8/2025
3.0.1074 643 5/8/2025
3.0.1073 1,167 5/7/2025
3.0.1072 13,805 5/5/2025
3.0.1071 935 5/5/2025
3.0.1070 1,637 5/5/2025
3.0.1069 778 5/5/2025
3.0.1068 255 5/5/2025
3.0.1067 176 5/5/2025
3.0.1066 19,392 4/9/2025
3.0.1065 311 4/9/2025
3.0.1064 1,163 4/8/2025
3.0.1063 2,375 4/8/2025
3.0.1062 3,227 4/8/2025
3.0.1061 224 4/8/2025
3.0.1060 200 4/8/2025
3.0.1059 222 4/8/2025
3.0.1058 191 4/8/2025
3.0.1057 914 4/8/2025
3.0.1056 329 4/8/2025
3.0.1055 6,926 4/8/2025
3.0.1054 725 4/8/2025
3.0.1053 3,620 4/7/2025
3.0.1052 758 4/7/2025
3.0.1051 199 4/7/2025
3.0.1050 625 4/7/2025
3.0.1049 201 4/7/2025
3.0.1048 7,307 4/7/2025
3.0.1047 200 4/7/2025
3.0.1046 10,037 4/7/2025
3.0.1045 193 4/7/2025
3.0.1044 1,481 4/7/2025
3.0.1043 193 4/7/2025
3.0.1042 1,767 4/7/2025
3.0.1041 1,013 4/6/2025
3.0.1040 324 4/6/2025
3.0.1039 197 4/6/2025
3.0.1038 1,258 4/6/2025
3.0.1037 197 4/6/2025
3.0.1036 429 4/6/2025
3.0.1035 1,288 4/6/2025
3.0.1034 172 4/6/2025
3.0.1033 2,217 4/6/2025
3.0.1032 139 4/6/2025
3.0.1031 174 4/6/2025
3.0.1030 144 4/6/2025
3.0.1029 1,717 4/5/2025
3.0.1028 198 4/5/2025
3.0.1027 1,324 4/5/2025
3.0.1026 1,284 4/5/2025
3.0.1025 1,173 4/5/2025
3.0.1024 679 4/5/2025
3.0.1023 592 4/5/2025
3.0.1022 140 4/5/2025
3.0.1021 1,391 4/4/2025
3.0.1020 7,211 4/4/2025
3.0.1019 25,719 4/4/2025
3.0.1018 7,284 4/1/2025
3.0.1017 2,801 4/1/2025
3.0.1016 194 4/1/2025
3.0.1015 5,905 4/1/2025
3.0.1014 2,557 3/31/2025
3.0.1013 391 3/31/2025
3.0.1012 4,200 3/31/2025
3.0.1011 7,386 3/29/2025
3.0.1010 1,147 3/29/2025
3.0.1009 1,532 3/29/2025
3.0.1008 130 3/29/2025
3.0.1007 4,722 3/27/2025
3.0.1006 4,177 3/25/2025
3.0.1005 632 3/25/2025
3.0.1004 3,314 3/25/2025
3.0.1003 6,681 3/21/2025
3.0.1002 2,767 3/21/2025
3.0.1001 7,823 3/18/2025
3.0.1000 3,692 3/18/2025
3.0.999 6,906 3/15/2025
3.0.998 1,949 3/15/2025
3.0.997 106 3/15/2025
3.0.996 6,580 3/12/2025
3.0.995 2,321 3/12/2025
3.0.994 197 3/12/2025
3.0.993 449 3/12/2025
3.0.992 183 3/12/2025
3.0.991 2,936 3/11/2025
3.0.990 196 3/11/2025
3.0.989 1,350 3/11/2025
3.0.988 197 3/11/2025
3.0.987 2,835 3/11/2025
3.0.986 201 3/11/2025
3.0.985 2,807 3/11/2025
3.0.984 184 3/11/2025
3.0.983 1,761 3/11/2025
3.0.982 183 3/11/2025
3.0.981 9,611 3/7/2025
3.0.980 2,817 3/7/2025
3.0.979 6,672 3/2/2025
3.0.978 1,125 3/2/2025
3.0.977 689 3/2/2025
3.0.976 128 3/2/2025
3.0.975 4,666 3/2/2025
3.0.974 134 3/2/2025
3.0.973 3,433 3/1/2025
3.0.972 117 3/1/2025
3.0.971 4,688 3/1/2025
3.0.970 143 3/1/2025
3.0.969 116 3/1/2025
3.0.968 474 3/1/2025
3.0.967 126 3/1/2025
3.0.966 6,172 3/1/2025
3.0.965 5,174 2/26/2025
3.0.964 898 2/26/2025
3.0.963 2,535 2/25/2025
3.0.962 128 2/25/2025
3.0.961 941 2/25/2025
3.0.960 112 2/25/2025
3.0.959 152 2/25/2025
3.0.958 1,964 2/25/2025
3.0.957 5,206 2/24/2025
3.0.956 4,898 2/23/2025
3.0.955 1,158 2/22/2025
3.0.954 118 2/22/2025
3.0.953 8,228 2/22/2025
3.0.952 2,400 2/22/2025
3.0.951 1,161 2/22/2025
3.0.950 814 2/22/2025
3.0.949 157 2/22/2025
3.0.948 130 2/22/2025
3.0.947 132 2/22/2025
3.0.946 4,947 2/21/2025
3.0.945 127 2/21/2025
3.0.944 5,953 2/21/2025
3.0.943 4,954 2/19/2025
3.0.942 1,737 2/19/2025
3.0.941 745 2/19/2025
3.0.940 133 2/19/2025
3.0.939 419 2/18/2025
3.0.938 133 2/18/2025
3.0.937 5,817 2/18/2025
3.0.936 124 2/18/2025
3.0.935 3,030 2/18/2025
3.0.934 7,265 2/16/2025
3.0.933 1,653 2/14/2025
3.0.932 867 2/14/2025
3.0.931 765 2/13/2025
3.0.930 2,578 2/13/2025
3.0.929 325 2/13/2025
3.0.928 3,965 2/13/2025
3.0.927 4,106 2/12/2025
3.0.926 1,581 2/12/2025
3.0.925 163 2/12/2025
3.0.924 134 2/12/2025
3.0.923 2,139 2/12/2025
3.0.922 372 2/12/2025
3.0.921 151 2/12/2025
3.0.920 200 2/12/2025
3.0.919 208 2/12/2025
3.0.918 133 2/12/2025
3.0.917 186 2/11/2025
3.0.916 3,622 2/11/2025
3.0.915 4,118 2/11/2025
3.0.914 2,403 2/11/2025
3.0.913 144 2/11/2025
3.0.912 415 2/11/2025
3.0.911 1,892 2/10/2025
3.0.910 151 2/10/2025
3.0.909 857 2/10/2025
3.0.908 147 2/10/2025
3.0.907 6,716 2/10/2025
3.0.906 143 2/10/2025
3.0.905 1,281 2/9/2025
3.0.904 6,043 2/9/2025
3.0.903 135 2/9/2025
3.0.902 7,798 2/8/2025
3.0.901 141 2/8/2025
3.0.900 1,865 2/7/2025
3.0.899 133 2/7/2025
3.0.898 1,681 2/7/2025
3.0.897 135 2/7/2025
3.0.896 676 2/7/2025
3.0.895 444 2/7/2025
3.0.894 145 2/7/2025
3.0.893 356 2/7/2025
3.0.892 132 2/7/2025
3.0.891 1,142 2/7/2025
3.0.890 126 2/7/2025
3.0.889 140 2/7/2025
3.0.888 11,388 2/7/2025
3.0.887 6,716 2/5/2025
3.0.886 659 2/5/2025
3.0.885 988 2/5/2025
3.0.884 304 2/5/2025
3.0.883 1,088 2/5/2025
3.0.882 700 2/5/2025
3.0.881 3,212 2/5/2025
3.0.880 124 2/5/2025
3.0.879 11,535 1/28/2025
3.0.878 722 1/28/2025
3.0.877 1,919 1/28/2025
3.0.876 242 1/28/2025
3.0.875 4,050 1/28/2025
3.0.874 669 1/27/2025
3.0.873 105 1/27/2025
3.0.872 203 1/27/2025
3.0.871 305 1/27/2025
3.0.870 120 1/27/2025
3.0.869 5,150 1/27/2025
3.0.868 4,733 1/26/2025
3.0.867 1,019 1/26/2025
3.0.866 203 1/26/2025
3.0.865 1,135 1/26/2025
3.0.864 1,401 1/25/2025
3.0.863 122 1/25/2025
3.0.862 6,039 1/25/2025
3.0.861 1,068 1/25/2025
3.0.860 316 1/25/2025
3.0.859 130 1/25/2025
3.0.858 2,054 1/25/2025
3.0.857 1,340 1/25/2025
3.0.856 6,939 1/24/2025
3.0.855 1,623 1/24/2025
3.0.854 109 1/24/2025
3.0.853 2,095 1/24/2025
3.0.852 362 1/24/2025
3.0.851 243 1/24/2025
3.0.850 3,284 1/24/2025
3.0.849 121 1/24/2025
3.0.848 515 1/23/2025
3.0.847 127 1/23/2025
3.0.846 596 1/23/2025
3.0.845 118 1/23/2025
3.0.844 8,301 1/22/2025
3.0.843 1,048 1/21/2025
3.0.842 1,027 1/21/2025
3.0.841 606 1/21/2025
3.0.840 116 1/21/2025
3.0.839 619 1/21/2025
3.0.838 802 1/21/2025
3.0.837 5,769 1/21/2025
3.0.836 571 1/21/2025
3.0.835 1,090 1/21/2025
3.0.834 128 1/21/2025
3.0.833 856 1/21/2025
3.0.832 121 1/21/2025
3.0.831 2,257 1/21/2025
3.0.830 112 1/21/2025
3.0.829 432 1/20/2025
3.0.828 2,967 1/20/2025
3.0.827 279 1/20/2025
3.0.826 2,182 1/20/2025
3.0.825 125 1/20/2025
3.0.824 1,128 1/20/2025
3.0.823 131 1/20/2025
3.0.822 136 1/20/2025
3.0.821 127 1/20/2025
3.0.820 382 1/20/2025
3.0.819 130 1/20/2025
3.0.818 125 1/20/2025
3.0.817 5,825 1/19/2025
3.0.816 129 1/19/2025
3.0.815 5,485 1/19/2025
3.0.814 1,679 1/19/2025
3.0.813 148 1/19/2025
3.0.812 404 1/19/2025
3.0.811 120 1/19/2025
3.0.810 2,021 1/19/2025
3.0.809 118 1/19/2025
3.0.808 3,415 1/18/2025
3.0.807 128 1/18/2025
3.0.806 7,568 1/17/2025
3.0.805 134 1/17/2025
3.0.804 662 1/17/2025
3.0.803 985 1/17/2025
3.0.802 4,338 1/16/2025
3.0.801 1,563 1/16/2025
3.0.800 2,187 1/16/2025
3.0.799 563 1/16/2025
3.0.798 1,308 1/16/2025
3.0.797 1,097 1/16/2025
3.0.796 115 1/16/2025
3.0.795 4,746 1/15/2025
3.0.794 119 1/15/2025
3.0.793 2,956 1/15/2025
3.0.792 116 1/15/2025
3.0.791 163 1/15/2025
3.0.790 3,500 1/15/2025
3.0.789 105 1/15/2025
3.0.788 2,931 1/15/2025
3.0.787 100 1/15/2025
3.0.786 458 1/15/2025
3.0.785 96 1/15/2025
3.0.784 1,739 1/15/2025
3.0.783 96 1/15/2025
3.0.782 260 1/14/2025
3.0.781 108 1/14/2025
3.0.780 112 1/14/2025
3.0.779 3,336 1/14/2025
3.0.778 583 1/14/2025
3.0.777 111 1/14/2025
3.0.776 1,293 1/14/2025
3.0.775 102 1/14/2025
3.0.774 5,539 1/13/2025
3.0.773 1,758 1/13/2025
3.0.772 1,435 1/13/2025
3.0.771 116 1/13/2025
3.0.770 5,454 1/11/2025
3.0.769 2,156 1/11/2025
3.0.768 141 1/11/2025
3.0.767 2,262 1/11/2025
3.0.766 128 1/11/2025
3.0.765 1,810 1/10/2025
3.0.764 2,009 1/10/2025
3.0.763 122 1/10/2025
3.0.762 888 1/10/2025
3.0.761 136 1/10/2025
3.0.760 123 1/10/2025
3.0.759 6,805 1/3/2025
3.0.758 505 1/3/2025
3.0.757 1,092 1/3/2025
3.0.756 158 1/3/2025
3.0.755 1,548 1/3/2025
3.0.754 132 1/3/2025
3.0.753 1,166 1/3/2025
3.0.752 1,155 1/2/2025
3.0.751 129 1/2/2025
3.0.750 1,880 1/2/2025
3.0.749 133 1/2/2025
3.0.748 3,070 1/2/2025
3.0.747 123 1/2/2025
3.0.746 140 1/2/2025
3.0.745 5,145 1/1/2025
3.0.744 1,098 1/1/2025
3.0.743 298 1/1/2025
3.0.742 149 1/1/2025
3.0.741 1,641 1/1/2025
3.0.740 134 1/1/2025
3.0.739 134 1/1/2025
3.0.738 145 1/1/2025
3.0.737 336 12/31/2024
3.0.736 145 12/31/2024
3.0.735 150 12/31/2024
3.0.734 685 12/31/2024
3.0.733 152 12/31/2024
3.0.732 4,942 12/31/2024
3.0.731 144 12/31/2024
3.0.730 4,696 12/31/2024
3.0.729 117 12/31/2024
3.0.728 2,777 12/31/2024
3.0.727 375 12/31/2024
3.0.726 133 12/31/2024
3.0.725 1,563 12/31/2024
3.0.724 130 12/31/2024
3.0.723 9,665 12/28/2024
3.0.722 1,237 12/28/2024
3.0.721 1,374 12/27/2024
3.0.720 145 12/27/2024
3.0.719 2,940 12/27/2024
3.0.718 5,400 12/24/2024
3.0.717 1,381 12/24/2024
3.0.716 1,020 12/24/2024
3.0.715 899 12/24/2024
3.0.714 1,504 12/24/2024
3.0.713 125 12/24/2024
3.0.712 2,478 12/24/2024
3.0.711 688 12/24/2024
3.0.710 126 12/24/2024
3.0.709 511 12/24/2024
3.0.708 1,058 12/24/2024
3.0.707 289 12/24/2024
3.0.706 155 12/24/2024
3.0.705 1,166 12/24/2024
3.0.704 134 12/24/2024
3.0.703 1,953 12/23/2024
3.0.702 3,087 12/23/2024
3.0.701 134 12/23/2024
3.0.700 748 12/23/2024
3.0.699 130 12/23/2024
3.0.698 2,006 12/23/2024
3.0.697 133 12/23/2024
3.0.696 1,542 12/23/2024
3.0.695 137 12/23/2024
3.0.694 476 12/22/2024
3.0.693 1,599 12/22/2024
3.0.692 4,307 12/22/2024
3.0.691 141 12/22/2024
3.0.690 1,703 12/22/2024
3.0.689 177 12/22/2024
3.0.688 495 12/22/2024
3.0.687 126 12/22/2024
3.0.686 287 12/22/2024
3.0.685 133 12/22/2024
3.0.684 7,367 12/22/2024
3.0.683 123 12/22/2024
3.0.682 1,130 12/21/2024
3.0.681 295 12/21/2024
3.0.680 128 12/21/2024
3.0.679 518 12/21/2024
3.0.678 881 12/21/2024
3.0.677 127 12/21/2024
3.0.676 4,053 12/21/2024
3.0.675 425 12/21/2024
3.0.674 130 12/21/2024
3.0.673 2,755 12/21/2024
3.0.672 714 12/21/2024
3.0.671 138 12/21/2024
3.0.670 1,766 12/20/2024
3.0.669 139 12/20/2024
3.0.668 135 12/20/2024
3.0.667 4,061 12/20/2024
3.0.666 1,225 12/20/2024
3.0.665 247 12/20/2024
3.0.664 3,794 12/19/2024
3.0.663 468 12/19/2024
3.0.662 2,236 12/18/2024
3.0.661 127 12/18/2024
3.0.660 6,908 12/17/2024
3.0.659 242 12/17/2024
3.0.658 757 12/16/2024
3.0.657 136 12/16/2024
3.0.656 172 12/16/2024
3.0.655 122 12/16/2024
3.0.654 7,047 12/10/2024
3.0.653 1,107 12/10/2024
3.0.652 407 12/9/2024
3.0.651 131 12/9/2024
3.0.650 2,875 12/9/2024
3.0.649 1,505 12/9/2024
3.0.648 127 12/9/2024
3.0.647 4,014 12/9/2024
3.0.646 3,011 12/6/2024
3.0.645 477 12/6/2024
3.0.644 135 12/6/2024
3.0.643 746 12/6/2024
3.0.641 4,159 12/6/2024
3.0.640 2,730 12/6/2024
3.0.639 5,720 12/6/2024
3.0.637 423 12/6/2024
3.0.636 2,706 12/5/2024
3.0.635 3,756 12/5/2024
3.0.634 3,326 12/5/2024
3.0.633 129 12/5/2024
3.0.632 1,815 12/5/2024
3.0.631 1,113 12/5/2024
3.0.630 138 12/5/2024
3.0.629 410 12/5/2024
3.0.628 129 12/5/2024
3.0.627 174 12/5/2024
3.0.626 130 12/5/2024
3.0.625 3,614 12/4/2024
3.0.624 132 12/4/2024
3.0.623 147 12/4/2024
3.0.622 147 12/4/2024
3.0.621 1,840 12/4/2024
3.0.620 329 12/4/2024
3.0.619 461 12/4/2024
3.0.618 3,595 12/3/2024
3.0.617 136 12/3/2024
3.0.616 1,194 12/3/2024
3.0.615 510 12/3/2024
3.0.614 147 12/3/2024
3.0.613 146 12/3/2024
3.0.612 4,374 12/3/2024
3.0.611 128 12/3/2024
3.0.610 3,484 12/3/2024
3.0.609 124 12/3/2024
3.0.608 3,286 12/2/2024
3.0.607 2,896 12/2/2024
3.0.606 1,719 12/2/2024
3.0.605 311 12/2/2024
3.0.604 136 12/2/2024
3.0.603 427 12/2/2024
3.0.602 3,675 12/1/2024
3.0.601 137 12/1/2024
3.0.600 2,011 12/1/2024
3.0.599 229 12/1/2024
3.0.598 3,742 12/1/2024
3.0.597 139 12/1/2024
3.0.596 3,797 11/29/2024
3.0.595 1,152 11/29/2024
3.0.594 6,343 11/21/2024
3.0.593 340 11/21/2024
3.0.592 4,828 11/20/2024
3.0.591 379 11/20/2024
3.0.590 143 11/20/2024
3.0.589 131 11/20/2024
3.0.588 493 11/20/2024
3.0.587 203 11/20/2024
3.0.586 127 11/20/2024
3.0.585 2,120 11/20/2024
3.0.584 2,951 11/19/2024
3.0.583 133 11/19/2024
3.0.582 713 11/19/2024
3.0.581 120 11/19/2024
3.0.580 2,864 11/19/2024
3.0.579 116 11/19/2024
3.0.578 1,382 11/19/2024
3.0.577 140 11/19/2024
3.0.576 9,139 11/14/2024
3.0.575 175 11/14/2024
3.0.574 575 11/14/2024
3.0.573 2,547 11/14/2024
3.0.572 793 11/14/2024
3.0.571 146 11/14/2024
3.0.570 142 11/14/2024
3.0.569 4,467 11/14/2024
3.0.568 138 11/14/2024
3.0.567 138 11/14/2024
3.0.566 3,770 11/14/2024
3.0.565 136 11/14/2024
3.0.564 138 11/14/2024
3.0.563 134 11/14/2024
2.1.562 9,227 11/13/2024
2.1.561 1,528 11/13/2024
2.1.560 3,240 11/13/2024
2.1.559 148 11/13/2024
2.1.558 1,428 11/12/2024
2.1.557 419 11/12/2024
2.1.556 8,843 11/9/2024
2.1.555 405 11/9/2024
2.1.554 146 11/9/2024
2.1.553 1,868 11/9/2024
2.1.552 133 11/9/2024
2.1.551 1,026 11/8/2024
2.1.550 137 11/8/2024
2.1.549 142 11/8/2024
2.1.548 140 11/8/2024
2.1.547 454 11/8/2024
2.1.546 2,093 11/8/2024
2.1.545 127 11/8/2024
2.1.544 5,797 11/8/2024
2.1.543 121 11/8/2024
2.1.542 12,443 11/1/2024
2.1.541 514 11/1/2024
2.1.540 7,248 10/29/2024
2.1.539 836 10/29/2024
2.1.538 3,039 10/29/2024
2.1.537 667 10/29/2024
2.1.536 5,955 10/28/2024
2.1.535 2,001 10/28/2024
2.1.534 4,217 10/26/2024
2.1.533 775 10/26/2024
2.1.532 9,752 10/22/2024
2.1.531 294 10/22/2024
2.1.530 579 10/22/2024
2.1.529 952 10/22/2024
2.1.528 133 10/22/2024
2.1.527 522 10/22/2024
2.1.526 6,958 10/18/2024
2.1.525 1,177 10/17/2024
2.1.524 4,452 10/15/2024
2.1.523 1,705 10/15/2024
2.1.522 131 10/14/2024
2.1.521 5,492 10/12/2024
2.1.520 731 10/11/2024
2.1.519 128 10/11/2024
2.1.518 569 10/11/2024
2.1.517 3,098 10/11/2024
2.1.516 6,854 10/9/2024
2.1.515 433 10/9/2024
2.1.514 120 10/9/2024
2.1.513 2,067 10/8/2024
2.1.512 186 10/8/2024
2.1.511 2,379 10/8/2024
2.1.510 166 10/8/2024
2.1.509 123 10/8/2024
2.1.508 4,267 10/8/2024
2.1.507 6,657 10/3/2024
2.1.506 135 10/3/2024
2.1.505 1,241 10/3/2024
2.1.504 2,056 10/3/2024
2.1.503 1,554 10/3/2024
2.1.502 6,167 10/2/2024
2.1.501 129 10/2/2024
2.1.500 1,897 10/2/2024
2.1.499 1,122 10/2/2024
2.1.498 4,483 10/1/2024
2.1.497 758 10/1/2024
2.1.496 144 10/1/2024
2.1.495 2,833 10/1/2024
2.1.494 137 10/1/2024
2.1.493 176 10/1/2024
2.1.492 5,840 9/29/2024
2.1.491 1,465 9/29/2024
2.1.490 134 9/29/2024
2.1.489 1,315 9/29/2024
2.1.488 146 9/29/2024
2.1.487 2,731 9/29/2024
2.1.486 5,586 9/27/2024
2.1.485 862 9/27/2024
2.1.484 3,343 9/27/2024
2.1.483 147 9/27/2024
2.1.482 490 9/27/2024
2.1.481 2,272 9/27/2024
2.1.480 3,476 9/26/2024
2.1.479 3,708 9/26/2024
2.1.478 2,479 9/26/2024
2.1.477 2,346 9/26/2024
2.1.476 4,055 9/26/2024
2.1.475 133 9/26/2024
2.1.474 6,032 9/23/2024
2.1.473 1,415 9/23/2024
2.1.472 1,051 9/23/2024
2.1.471 1,244 9/23/2024
2.1.470 145 9/23/2024
2.1.469 1,650 9/23/2024
2.1.468 119 9/23/2024
2.1.467 5,047 9/23/2024
2.1.466 138 9/23/2024
2.1.465 790 9/23/2024
2.1.464 154 9/23/2024
2.1.463 125 9/23/2024
2.1.462 1,000 9/23/2024
2.1.461 9,994 9/18/2024
2.1.460 280 9/17/2024
2.1.459 1,349 9/17/2024
2.1.458 1,816 9/17/2024
2.1.457 146 9/17/2024
2.1.456 1,934 9/17/2024
2.1.455 503 9/17/2024
2.1.454 3,455 9/17/2024
2.1.453 614 9/17/2024
2.1.452 229 9/17/2024
2.1.451 2,802 9/17/2024
2.1.450 8,147 9/16/2024
2.1.449 760 9/16/2024
2.1.448 5,389 9/12/2024
2.1.447 3,070 9/12/2024
2.1.446 1,392 9/11/2024
2.1.445 1,723 9/11/2024
2.1.443 3,930 9/11/2024
2.1.442 1,082 9/11/2024
2.1.441 1,019 9/11/2024
2.1.440 2,445 9/11/2024
2.1.439 8,513 9/10/2024
2.1.438 157 9/10/2024
2.1.437 1,267 9/10/2024
2.1.436 151 9/10/2024
2.1.434 3,151 9/10/2024
2.1.433 667 9/9/2024
2.1.432 2,114 9/9/2024
2.1.430 1,635 9/9/2024
2.1.428 163 9/9/2024
2.1.427 499 9/9/2024
2.1.426 14,072 9/7/2024
2.1.425 176 9/7/2024
2.1.424 5,259 9/6/2024
2.1.423 396 9/6/2024
2.1.422 2,401 9/6/2024
2.1.421 152 9/5/2024
2.1.420 161 9/5/2024
2.1.419 2,566 9/5/2024
2.1.418 1,256 9/5/2024
2.1.417 151 9/5/2024
2.1.416 1,186 9/5/2024
2.1.415 515 9/5/2024
2.1.414 148 9/5/2024
2.1.413 5,348 9/5/2024
2.1.412 229 9/5/2024
2.1.411 158 9/5/2024
2.1.410 2,414 9/4/2024
2.1.409 8,549 9/3/2024
2.1.408 139 9/3/2024
2.1.407 142 9/3/2024
2.1.406 4,253 9/3/2024
2.1.405 176 9/3/2024
2.1.404 2,632 9/3/2024
2.1.403 5,632 8/29/2024
2.1.402 2,707 8/29/2024
2.1.401 3,061 8/26/2024
2.1.400 134 8/26/2024
2.1.399 5,340 8/21/2024
2.1.398 666 8/21/2024
2.1.397 175 8/21/2024
2.1.396 2,760 8/21/2024
2.1.395 180 8/20/2024
2.1.394 177 8/20/2024
2.1.393 519 8/20/2024
2.1.392 3,160 8/20/2024
2.1.391 453 8/20/2024
2.1.390 153 8/20/2024
2.1.389 2,898 8/20/2024
2.1.388 158 8/20/2024
2.1.387 1,267 8/20/2024
2.1.386 3,106 8/19/2024
2.1.385 5,205 8/15/2024
2.1.384 2,295 8/15/2024
2.1.383 5,068 8/14/2024
2.1.382 177 8/13/2024
2.1.381 6,108 8/7/2024
2.1.380 309 8/6/2024
2.1.379 2,889 8/6/2024
2.1.378 5,338 8/1/2024
2.1.377 375 8/1/2024
2.1.376 131 8/1/2024
2.1.374 1,285 8/1/2024
2.1.373 6,209 7/25/2024
2.1.372 124 7/25/2024
2.1.371 815 7/25/2024
2.1.370 340 7/25/2024
2.1.369 408 7/25/2024
2.1.368 210 7/25/2024
2.1.367 445 7/24/2024
2.1.366 187 7/24/2024
2.1.365 267 7/24/2024
2.1.364 351 7/24/2024
2.1.363 9,245 7/20/2024
2.1.362 1,583 7/20/2024
2.1.361 5,434 7/14/2024
2.1.360 1,650 7/14/2024
2.1.359 139 7/14/2024
2.1.358 1,621 7/14/2024
2.1.357 4,684 7/10/2024
2.1.355 872 7/10/2024
2.1.354 1,341 7/10/2024
2.1.353 149 7/10/2024
2.1.352 2,002 7/10/2024
2.1.351 159 7/10/2024
2.1.350 136 7/10/2024
2.1.349 199 7/10/2024
2.1.348 144 7/10/2024
2.1.347 2,219 7/10/2024
2.1.346 161 7/10/2024
2.1.345 925 7/10/2024
2.1.344 139 7/10/2024
2.1.343 243 7/9/2024
2.1.342 124 7/9/2024
2.1.339 2,155 7/9/2024
2.1.338 509 7/9/2024
2.1.337 4,323 7/9/2024
2.1.336 1,167 7/9/2024
2.1.335 152 7/9/2024
2.1.334 2,733 7/9/2024
2.1.333 136 7/9/2024
2.1.332 10,757 7/9/2024
2.1.331 146 7/9/2024
2.1.330 2,666 7/9/2024
2.1.329 132 7/9/2024
2.1.328 1,133 7/9/2024
2.1.327 732 7/8/2024
2.1.326 1,108 7/8/2024
2.1.325 150 7/8/2024
2.1.324 158 7/8/2024
2.1.323 5,276 7/8/2024
2.1.322 1,792 7/8/2024
2.1.321 147 7/8/2024
2.1.320 2,553 7/7/2024
2.1.319 156 7/7/2024
2.1.318 170 7/7/2024
2.1.317 153 7/7/2024
2.1.316 1,199 7/7/2024
2.1.315 2,340 7/7/2024
2.1.314 2,025 7/7/2024
2.1.313 269 7/7/2024
2.1.312 3,645 7/5/2024
2.1.311 4,161 7/3/2024
2.1.310 3,273 7/3/2024
2.1.309 420 7/3/2024
2.1.308 4,264 7/2/2024
2.1.307 1,983 6/30/2024
2.1.306 2,413 6/28/2024
2.1.305 5,765 6/22/2024
2.1.304 5,104 6/15/2024
2.1.303 4,309 6/14/2024
2.1.302 6,203 6/1/2024
2.1.301 1,697 6/1/2024
2.1.300 638 6/1/2024
2.1.299 6,133 5/31/2024
2.1.298 3,888 5/29/2024
2.1.297 3,214 5/28/2024
2.1.296 2,579 5/27/2024
2.1.295 5,131 5/26/2024
2.1.294 2,140 5/26/2024
2.1.293 546 5/26/2024
2.1.292 2,680 5/25/2024
2.1.291 1,446 5/25/2024
2.1.290 164 5/25/2024
2.1.289 161 5/25/2024
2.1.288 729 5/25/2024
2.1.287 156 5/25/2024
2.1.286 461 5/25/2024
2.1.285 158 5/25/2024
2.1.284 153 5/25/2024
2.1.283 7,892 5/23/2024
2.1.282 570 5/23/2024
2.1.281 314 5/22/2024
2.1.280 3,834 5/22/2024
2.1.279 159 5/22/2024
2.1.278 167 5/22/2024
2.1.277 158 5/22/2024
2.1.276 2,252 5/22/2024
2.1.275 3,612 5/18/2024
2.1.274 2,000 5/18/2024
2.1.273 1,906 5/17/2024
2.1.272 151 5/17/2024
2.1.271 2,876 5/16/2024
2.1.270 471 5/15/2024
2.1.269 2,893 5/15/2024
2.1.268 4,715 5/12/2024
2.1.267 2,918 5/3/2024
2.1.266 1,212 4/30/2024
2.1.265 1,867 4/29/2024
2.1.264 2,012 4/29/2024
2.1.263 2,826 4/28/2024
2.1.262 1,564 4/28/2024
2.1.261 1,184 4/28/2024
2.1.260 1,856 4/28/2024
2.1.259 982 4/28/2024
2.1.258 146 4/28/2024
2.1.257 4,401 4/27/2024
2.1.256 164 4/27/2024
2.1.255 4,606 4/19/2024
2.1.254 4,316 4/18/2024
2.1.253 3,606 4/12/2024
2.1.252 1,216 4/12/2024
2.1.251 770 4/12/2024
2.1.250 915 4/12/2024
2.1.249 240 4/12/2024
2.1.248 140 4/12/2024
2.1.247 1,047 4/12/2024
2.1.246 357 4/12/2024
2.1.245 1,684 4/11/2024
2.1.244 3,858 4/10/2024
2.1.243 1,186 4/9/2024
2.1.242 3,285 4/2/2024
2.1.241 955 4/1/2024
2.1.240 2,169 3/29/2024
2.1.239 1,897 3/25/2024
2.1.238 327 3/25/2024
2.1.237 3,408 3/20/2024
2.1.236 2,187 3/19/2024
2.1.235 548 3/19/2024
2.1.234 2,443 3/18/2024
2.1.233 1,442 3/18/2024
2.1.232 1,413 3/15/2024
2.1.231 2,437 3/13/2024
2.1.230 1,164 3/13/2024
2.1.229 700 3/13/2024
2.1.228 796 3/13/2024
2.1.227 170 3/13/2024
2.1.226 561 3/13/2024
2.1.225 166 3/13/2024
2.1.224 170 3/13/2024
2.1.223 1,721 3/12/2024
2.1.222 2,895 3/11/2024
2.1.221 2,554 3/11/2024
2.1.220 1,670 3/10/2024
2.1.219 1,970 3/8/2024
2.1.218 1,095 3/8/2024
2.1.217 1,607 3/8/2024
2.1.216 2,146 3/6/2024
2.1.215 2,078 3/4/2024
2.1.214 1,451 3/4/2024
2.1.213 2,655 3/2/2024
2.1.212 1,261 3/2/2024
2.1.211 443 3/2/2024
2.1.210 383 3/2/2024
2.1.209 511 3/2/2024
2.1.208 3,497 2/29/2024
2.1.207 665 2/29/2024
2.1.206 367 2/29/2024
2.1.205 3,423 2/26/2024
2.1.204 1,526 2/25/2024
2.1.203 2,685 2/23/2024
2.1.202 1,974 2/22/2024
2.1.201 992 2/22/2024
2.1.200 485 2/21/2024
2.1.199 1,216 2/21/2024
2.1.198 333 2/21/2024
2.1.197 817 2/21/2024
2.1.196 155 2/21/2024
2.1.195 1,299 2/21/2024
2.1.194 458 2/21/2024
2.1.193 163 2/21/2024
2.1.192 171 2/21/2024
2.1.191 621 2/21/2024
2.1.190 148 2/21/2024
2.1.189 2,705 2/20/2024
2.1.188 748 2/20/2024
2.1.187 686 2/20/2024
2.1.186 824 2/20/2024
2.1.185 2,200 2/19/2024
2.1.184 1,933 2/17/2024
2.1.183 959 2/16/2024
2.1.182 905 2/16/2024
2.1.181 1,383 2/16/2024
2.1.180 164 2/16/2024
2.1.179 687 2/16/2024
2.1.178 167 2/16/2024
2.1.177 162 2/16/2024
2.1.176 608 2/16/2024
2.1.175 149 2/16/2024
2.1.174 3,386 2/13/2024
2.1.173 1,415 2/13/2024
2.1.172 1,139 2/13/2024
2.1.171 484 2/13/2024
2.1.170 674 2/13/2024
2.1.169 2,000 2/12/2024
2.1.168 553 2/11/2024
2.1.167 1,594 2/11/2024
2.1.166 929 2/11/2024
2.1.165 2,889 2/10/2024
2.1.164 569 2/9/2024
2.1.163 164 2/9/2024
2.1.162 1,631 2/9/2024
2.1.161 1,701 2/9/2024
2.1.160 432 2/8/2024
2.1.159 1,277 2/8/2024
2.1.158 890 2/8/2024
2.1.157 1,524 2/8/2024
2.1.156 150 2/8/2024
2.1.155 1,931 2/7/2024
2.1.154 482 2/7/2024
2.1.153 643 2/7/2024
2.1.152 1,312 2/7/2024
2.1.151 406 2/6/2024
2.1.150 159 2/6/2024
2.1.149 161 2/6/2024
2.1.148 2,833 2/5/2024
2.1.147 1,581 2/4/2024
2.1.146 2,152 2/2/2024
2.1.145 1,984 1/31/2024
2.1.144 2,204 1/29/2024
2.1.143 1,434 1/29/2024
2.1.142 379 1/29/2024
2.1.141 1,547 1/28/2024
2.1.140 528 1/28/2024
2.1.139 340 1/28/2024
2.1.138 588 1/28/2024
2.1.137 1,987 1/28/2024
2.1.136 970 1/28/2024
2.1.135 334 1/27/2024
2.1.134 980 1/27/2024
2.1.133 1,191 1/27/2024
2.1.132 1,242 1/27/2024
2.1.131 176 1/27/2024
2.1.130 741 1/27/2024
2.1.129 1,114 1/26/2024
2.1.128 256 1/26/2024
2.1.127 916 1/26/2024
2.1.126 1,186 1/26/2024
2.1.125 1,685 1/26/2024
2.1.124 921 1/25/2024
2.1.123 1,159 1/25/2024
2.1.122 488 1/25/2024
2.1.121 950 1/25/2024
2.1.120 561 1/25/2024
2.1.119 2,657 1/19/2024
2.1.118 2,299 1/15/2024
2.1.117 535 1/15/2024
2.1.116 1,293 1/15/2024
2.1.115 159 1/15/2024
2.1.114 597 1/15/2024
2.1.113 1,416 1/15/2024
2.1.112 2,619 1/14/2024
2.1.111 1,672 1/13/2024
2.1.110 1,880 1/12/2024
2.1.109 2,118 1/11/2024
2.1.108 2,717 1/7/2024
2.1.107 2,153 1/5/2024
2.1.106 545 1/5/2024
2.1.105 175 1/5/2024
2.1.104 167 1/5/2024
2.1.103 1,534 1/5/2024
2.1.102 171 1/5/2024
2.1.101 2,853 1/1/2024
2.1.100 2,311 12/28/2023
2.1.99 786 12/28/2023
2.1.98 536 12/28/2023
2.1.97 161 12/28/2023
2.1.96 162 12/28/2023
2.1.95 742 12/27/2023
2.1.94 179 12/27/2023
2.1.93 539 12/27/2023
2.1.92 169 12/27/2023
2.1.91 175 12/27/2023
2.1.90 2,277 12/25/2023
2.1.89 389 12/25/2023
2.1.88 839 12/25/2023
2.1.87 180 12/25/2023
2.1.86 693 12/25/2023
2.1.85 170 12/25/2023
2.1.84 613 12/25/2023
2.1.83 170 12/25/2023
2.1.82 1,732 12/24/2023
2.1.81 1,160 12/23/2023
2.1.80 923 12/23/2023
2.1.79 335 12/23/2023
2.1.78 597 12/23/2023
2.1.77 169 12/23/2023
2.1.76 157 12/23/2023
2.1.75 1,147 12/23/2023
2.1.74 158 12/23/2023
2.1.73 1,457 12/19/2023
2.1.72 244 12/19/2023
2.1.71 3,210 12/11/2023
2.1.70 774 12/10/2023
2.1.69 156 12/10/2023
2.1.68 525 12/10/2023
2.1.67 1,507 12/10/2023
2.1.66 410 12/9/2023
2.1.65 402 12/9/2023
2.1.64 320 12/9/2023
2.1.63 176 12/9/2023
2.1.62 297 12/9/2023
2.1.61 236 12/9/2023
2.1.60 156 12/9/2023
2.1.59 1,126 12/9/2023
2.1.58 168 12/9/2023
2.1.57 1,585 12/6/2023
2.1.56 430 12/6/2023
2.1.55 269 12/6/2023
2.1.54 300 12/6/2023
2.1.53 975 12/5/2023
2.1.52 401 12/5/2023
2.1.51 364 12/5/2023
2.1.50 397 12/5/2023
2.1.49 142 12/5/2023
2.1.48 375 12/5/2023
2.1.47 297 12/5/2023
2.1.46 145 12/4/2023
2.1.45 156 12/4/2023
2.1.44 383 12/4/2023
2.1.43 171 12/4/2023
2.1.42 1,043 12/4/2023
2.1.41 125 12/4/2023
2.1.40 1,216 11/27/2023
2.1.39 566 11/26/2023
2.1.38 250 11/26/2023
2.1.37 657 11/23/2023
2.1.36 730 11/23/2023
2.1.35 688 11/23/2023
2.1.34 153 11/23/2023
2.1.33 433 11/23/2023
2.1.32 164 11/23/2023
2.1.31 1,132 11/20/2023
2.1.30 1,126 11/20/2023
2.1.29 851 11/19/2023
2.1.28 287 11/19/2023
2.1.27 520 11/19/2023
2.1.26 524 11/19/2023
2.1.25 529 11/19/2023
2.1.24 141 11/19/2023
2.1.23 235 11/18/2023
2.1.22 1,041 11/18/2023
2.1.21 407 11/18/2023
2.1.20 569 11/18/2023
2.1.19 160 11/18/2023
2.1.18 330 11/18/2023
2.1.17 154 11/18/2023
2.1.16 643 11/17/2023
2.1.15 547 11/17/2023
2.1.14 152 11/17/2023
2.1.13 478 11/17/2023
2.1.12 330 11/17/2023
2.1.11 523 11/17/2023
2.1.10 149 11/17/2023
2.1.9 536 11/17/2023
2.1.8 157 11/17/2023
2.1.7 176 11/17/2023
2.1.6 382 11/17/2023
2.1.5 404 11/16/2023
2.0.101 2,126 11/15/2023
2.0.100 149 11/15/2023
2.0.99 157 11/15/2023
2.0.4 149 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 646 11/14/2023
1.0.97 789 11/13/2023
1.0.96 136 11/13/2023
1.0.95 613 11/10/2023
1.0.94 149 11/10/2023
1.0.93 973 11/9/2023
1.0.92 152 11/9/2023
1.0.91 1,091 11/7/2023
1.0.90 146 11/7/2023
1.0.89 528 11/6/2023
1.0.88 159 11/6/2023
1.0.87 659 11/3/2023
1.0.86 165 11/3/2023
1.0.85 916 11/2/2023
1.0.84 146 11/2/2023
1.0.83 648 11/1/2023
1.0.82 1,541 10/26/2023
1.0.81 1,365 10/19/2023
1.0.80 174 10/19/2023
1.0.79 849 10/18/2023
1.0.78 191 10/18/2023
1.0.77 777 10/17/2023
1.0.76 177 10/17/2023
1.0.75 708 10/16/2023
1.0.74 181 10/16/2023
1.0.73 758 10/13/2023
1.0.72 389 10/12/2023
1.0.71 1,815 9/20/2023
1.0.70 722 9/19/2023
1.0.69 720 9/18/2023
1.0.68 176 9/18/2023
1.0.67 964 9/14/2023
1.0.66 1,572 8/31/2023
1.0.65 181 8/31/2023
1.0.64 876 8/30/2023
1.0.63 204 8/30/2023
1.0.62 219 8/30/2023
1.0.61 914 8/28/2023
1.0.60 774 8/25/2023
1.0.59 183 8/25/2023
1.0.58 540 8/24/2023
1.0.57 1,541 8/21/2023
1.0.56 891 8/18/2023
1.0.55 818 8/17/2023
1.0.54 199 8/17/2023
1.0.53 2,005 8/10/2023
1.0.52 619 8/9/2023
1.0.51 742 8/8/2023
1.0.50 724 8/7/2023
1.0.49 226 8/7/2023
1.0.48 2,589 7/13/2023
1.0.47 961 7/11/2023
1.0.46 790 7/10/2023
1.0.45 766 7/7/2023
1.0.44 222 7/7/2023
1.0.43 2,216 6/30/2023
1.0.42 1,152 6/29/2023
1.0.41 661 6/28/2023
1.0.40 1,657 6/26/2023
1.0.39 848 6/23/2023
1.0.38 1,154 6/21/2023
1.0.37 1,570 6/15/2023
1.0.36 534 6/14/2023
1.0.35 1,934 6/9/2023
1.0.34 894 6/8/2023
1.0.33 1,711 6/7/2023
1.0.32 219 6/7/2023
1.0.31 1,298 6/6/2023
1.0.30 1,257 6/5/2023
1.0.29 1,444 6/2/2023
1.0.28 211 6/2/2023
1.0.27 1,323 6/1/2023
1.0.26 661 5/31/2023
1.0.25 541 5/31/2023
1.0.24 218 5/31/2023
1.0.23 1,574 5/30/2023
1.0.22 1,628 5/26/2023
1.0.21 763 5/25/2023
1.0.20 201 5/25/2023
1.0.19 916 5/24/2023
1.0.18 210 5/24/2023
1.0.17 510 5/23/2023
1.0.13 1,550 5/22/2023
1.0.12 1,282 5/18/2023
1.0.11 664 5/17/2023
1.0.10 1,651 5/1/2023
1.0.9 1,100 4/25/2023
1.0.8 540 4/24/2023
1.0.7 1,073 4/21/2023
1.0.6 2,047 4/13/2023
1.0.5 672 4/12/2023
1.0.4 1,090 4/8/2023
1.0.3 248 4/8/2023
1.0.2 670 4/8/2023
1.0.1 250 4/8/2023