Soenneker.Utils.SingletonDictionary 3.0.1098

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.SingletonDictionary --version 3.0.1098
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1098
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Utils.SingletonDictionary" Version="3.0.1098" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.SingletonDictionary" Version="3.0.1098" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.SingletonDictionary" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Utils.SingletonDictionary --version 3.0.1098
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1098"
                    
#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@3.0.1098
                    
#: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=3.0.1098
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1098
                    
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

A flexible singleton dictionary with double-check async locking, sync/async disposal, and external initialization


Features

  • ✅ Async and sync initialization patterns
  • ✅ Optional cancellation support
  • ✅ Async and sync access methods
  • ✅ Fully disposable (sync and async)
  • ✅ Thread-safe with AsyncLock from Nito.AsyncEx

Installation

dotnet add package Soenneker.Utils.SingletonDictionary

✨ Example Usage

Here’s an example using SingletonDictionary to manage singleton HttpClient instances keyed by configuration (e.g. timeout):

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly SingletonDictionary<HttpClient> _clients;

    public HttpRequester()
    {
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            var client = new HttpClient(socketsHandler)
            {
                Timeout = TimeSpan.FromSeconds((int)args[0])
            };

            return client;
        });
    }

    public async ValueTask Get()
    {
        var client = await _clients.Get("100", 100);
        await client.GetAsync("https://google.com");
    }

    public async ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(this);
        await _clients.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(this);
        _clients.Dispose();
    }
}

🔍 Internals

SingletonDictionary<T> is backed by a ConcurrentDictionary<string, T> and supports:

  • Multiple constructor overloads for async/sync factory functions
  • Internal double-checked locking on access
  • Deferred/lazy factory execution
  • Proper disposal of values (both sync and async interfaces)
  • Safe mutation via SetInitialization before first use

Example constructor overloads include:

new SingletonDictionary<T>(Func<string, object[], ValueTask<T>> factory);
new SingletonDictionary<T>(Func<object[], T> factory);
new SingletonDictionary<T>(Func<string, CancellationToken, object[], ValueTask<T>> factory);
// And more...

You can also initialize manually:

var dict = new SingletonDictionary<MyService>();
dict.SetInitialization((args) => new MyService(args));

🛡️ Thread Safety

This library uses AsyncLock for safe concurrent access in async contexts, and synchronously via Lock() for blocking methods. This avoids race conditions and guarantees safe singleton creation.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  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.1102 12 8/11/2025
3.0.1101 9 8/11/2025
3.0.1100 11 8/11/2025
3.0.1099 9 8/11/2025
3.0.1098 175 8/6/2025
3.0.1097 174 8/5/2025
3.0.1096 7,721 7/9/2025
3.0.1095 23,027 6/28/2025
3.0.1094 1,245 6/28/2025
3.0.1093 1,792 6/27/2025
3.0.1092 2,273 6/27/2025
3.0.1091 24,311 6/10/2025
3.0.1090 17,325 5/27/2025
3.0.1089 891 5/27/2025
3.0.1088 963 5/27/2025
3.0.1087 2,287 5/27/2025
3.0.1086 13,847 5/23/2025
3.0.1085 1,256 5/23/2025
3.0.1084 1,215 5/23/2025
3.0.1083 1,236 5/23/2025
3.0.1082 257 5/22/2025
3.0.1081 9,453 5/18/2025
3.0.1079 1,422 5/18/2025
3.0.1078 1,373 5/18/2025
3.0.1077 4,135 5/14/2025
3.0.1076 9,176 5/8/2025
3.0.1075 292 5/8/2025
3.0.1074 598 5/8/2025
3.0.1073 1,096 5/7/2025
3.0.1072 12,977 5/5/2025
3.0.1071 864 5/5/2025
3.0.1070 1,557 5/5/2025
3.0.1069 726 5/5/2025
3.0.1068 239 5/5/2025
3.0.1067 154 5/5/2025
3.0.1066 18,109 4/9/2025
3.0.1065 281 4/9/2025
3.0.1064 1,072 4/8/2025
3.0.1063 2,207 4/8/2025
3.0.1062 3,019 4/8/2025
3.0.1061 204 4/8/2025
3.0.1060 181 4/8/2025
3.0.1059 204 4/8/2025
3.0.1058 170 4/8/2025
3.0.1057 876 4/8/2025
3.0.1056 301 4/8/2025
3.0.1055 6,412 4/8/2025
3.0.1054 668 4/8/2025
3.0.1053 3,296 4/7/2025
3.0.1052 722 4/7/2025
3.0.1051 179 4/7/2025
3.0.1050 607 4/7/2025
3.0.1049 182 4/7/2025
3.0.1048 6,788 4/7/2025
3.0.1047 186 4/7/2025
3.0.1046 9,347 4/7/2025
3.0.1045 175 4/7/2025
3.0.1044 1,392 4/7/2025
3.0.1043 181 4/7/2025
3.0.1042 1,638 4/7/2025
3.0.1041 950 4/6/2025
3.0.1040 305 4/6/2025
3.0.1039 179 4/6/2025
3.0.1038 1,078 4/6/2025
3.0.1037 178 4/6/2025
3.0.1036 416 4/6/2025
3.0.1035 1,199 4/6/2025
3.0.1034 160 4/6/2025
3.0.1033 2,066 4/6/2025
3.0.1032 123 4/6/2025
3.0.1031 163 4/6/2025
3.0.1030 130 4/6/2025
3.0.1029 1,619 4/5/2025
3.0.1028 188 4/5/2025
3.0.1027 1,166 4/5/2025
3.0.1026 1,226 4/5/2025
3.0.1025 1,067 4/5/2025
3.0.1024 651 4/5/2025
3.0.1023 557 4/5/2025
3.0.1022 127 4/5/2025
3.0.1021 1,289 4/4/2025
3.0.1020 6,968 4/4/2025
3.0.1019 23,341 4/4/2025
3.0.1018 6,647 4/1/2025
3.0.1017 2,627 4/1/2025
3.0.1016 178 4/1/2025
3.0.1015 5,408 4/1/2025
3.0.1014 2,350 3/31/2025
3.0.1013 378 3/31/2025
3.0.1012 3,908 3/31/2025
3.0.1011 6,733 3/29/2025
3.0.1010 1,068 3/29/2025
3.0.1009 1,408 3/29/2025
3.0.1008 114 3/29/2025
3.0.1007 4,315 3/27/2025
3.0.1006 3,839 3/25/2025
3.0.1005 609 3/25/2025
3.0.1004 3,097 3/25/2025
3.0.1003 6,051 3/21/2025
3.0.1002 2,549 3/21/2025
3.0.1001 7,290 3/18/2025
3.0.1000 3,385 3/18/2025
3.0.999 6,328 3/15/2025
3.0.998 1,787 3/15/2025
3.0.997 90 3/15/2025
3.0.996 6,040 3/12/2025
3.0.995 2,159 3/12/2025
3.0.994 180 3/12/2025
3.0.993 406 3/12/2025
3.0.992 169 3/12/2025
3.0.991 2,700 3/11/2025
3.0.990 173 3/11/2025
3.0.989 1,281 3/11/2025
3.0.988 183 3/11/2025
3.0.987 2,566 3/11/2025
3.0.986 183 3/11/2025
3.0.985 2,648 3/11/2025
3.0.984 167 3/11/2025
3.0.983 1,626 3/11/2025
3.0.982 174 3/11/2025
3.0.981 8,858 3/7/2025
3.0.980 2,598 3/7/2025
3.0.979 6,153 3/2/2025
3.0.978 1,042 3/2/2025
3.0.977 651 3/2/2025
3.0.976 119 3/2/2025
3.0.975 4,323 3/2/2025
3.0.974 117 3/2/2025
3.0.973 3,177 3/1/2025
3.0.972 107 3/1/2025
3.0.971 4,270 3/1/2025
3.0.970 131 3/1/2025
3.0.969 107 3/1/2025
3.0.968 412 3/1/2025
3.0.967 111 3/1/2025
3.0.966 5,793 3/1/2025
3.0.965 4,762 2/26/2025
3.0.964 826 2/26/2025
3.0.963 2,320 2/25/2025
3.0.962 111 2/25/2025
3.0.961 851 2/25/2025
3.0.960 103 2/25/2025
3.0.959 137 2/25/2025
3.0.958 1,830 2/25/2025
3.0.957 4,826 2/24/2025
3.0.956 4,471 2/23/2025
3.0.955 1,087 2/22/2025
3.0.954 109 2/22/2025
3.0.953 7,544 2/22/2025
3.0.952 2,198 2/22/2025
3.0.951 1,055 2/22/2025
3.0.950 771 2/22/2025
3.0.949 147 2/22/2025
3.0.948 121 2/22/2025
3.0.947 115 2/22/2025
3.0.946 4,620 2/21/2025
3.0.945 112 2/21/2025
3.0.944 5,486 2/21/2025
3.0.943 4,541 2/19/2025
3.0.942 1,614 2/19/2025
3.0.941 726 2/19/2025
3.0.940 119 2/19/2025
3.0.939 408 2/18/2025
3.0.938 120 2/18/2025
3.0.937 5,443 2/18/2025
3.0.936 112 2/18/2025
3.0.935 2,808 2/18/2025
3.0.934 6,792 2/16/2025
3.0.933 1,528 2/14/2025
3.0.932 814 2/14/2025
3.0.931 713 2/13/2025
3.0.930 2,381 2/13/2025
3.0.929 289 2/13/2025
3.0.928 3,680 2/13/2025
3.0.927 3,843 2/12/2025
3.0.926 1,456 2/12/2025
3.0.925 154 2/12/2025
3.0.924 119 2/12/2025
3.0.923 2,003 2/12/2025
3.0.922 358 2/12/2025
3.0.921 131 2/12/2025
3.0.920 192 2/12/2025
3.0.919 196 2/12/2025
3.0.918 119 2/12/2025
3.0.917 172 2/11/2025
3.0.916 3,384 2/11/2025
3.0.915 3,675 2/11/2025
3.0.914 2,191 2/11/2025
3.0.913 129 2/11/2025
3.0.912 402 2/11/2025
3.0.911 1,729 2/10/2025
3.0.910 132 2/10/2025
3.0.909 790 2/10/2025
3.0.908 129 2/10/2025
3.0.907 6,311 2/10/2025
3.0.906 126 2/10/2025
3.0.905 1,169 2/9/2025
3.0.904 5,595 2/9/2025
3.0.903 118 2/9/2025
3.0.902 7,107 2/8/2025
3.0.901 125 2/8/2025
3.0.900 1,690 2/7/2025
3.0.899 115 2/7/2025
3.0.898 1,586 2/7/2025
3.0.897 121 2/7/2025
3.0.896 652 2/7/2025
3.0.895 426 2/7/2025
3.0.894 130 2/7/2025
3.0.893 339 2/7/2025
3.0.892 115 2/7/2025
3.0.891 1,038 2/7/2025
3.0.890 112 2/7/2025
3.0.889 127 2/7/2025
3.0.888 10,572 2/7/2025
3.0.887 6,170 2/5/2025
3.0.886 608 2/5/2025
3.0.885 894 2/5/2025
3.0.884 293 2/5/2025
3.0.883 988 2/5/2025
3.0.882 660 2/5/2025
3.0.881 2,915 2/5/2025
3.0.880 116 2/5/2025
3.0.879 10,743 1/28/2025
3.0.878 645 1/28/2025
3.0.877 1,740 1/28/2025
3.0.876 230 1/28/2025
3.0.875 3,655 1/28/2025
3.0.874 630 1/27/2025
3.0.873 98 1/27/2025
3.0.872 194 1/27/2025
3.0.871 272 1/27/2025
3.0.870 104 1/27/2025
3.0.869 4,707 1/27/2025
3.0.868 4,372 1/26/2025
3.0.867 936 1/26/2025
3.0.866 186 1/26/2025
3.0.865 1,013 1/26/2025
3.0.864 1,320 1/25/2025
3.0.863 111 1/25/2025
3.0.862 5,522 1/25/2025
3.0.861 961 1/25/2025
3.0.860 303 1/25/2025
3.0.859 114 1/25/2025
3.0.858 1,800 1/25/2025
3.0.857 1,263 1/25/2025
3.0.856 6,386 1/24/2025
3.0.855 1,477 1/24/2025
3.0.854 99 1/24/2025
3.0.853 1,923 1/24/2025
3.0.852 326 1/24/2025
3.0.851 218 1/24/2025
3.0.850 3,012 1/24/2025
3.0.849 109 1/24/2025
3.0.848 486 1/23/2025
3.0.847 112 1/23/2025
3.0.846 572 1/23/2025
3.0.845 104 1/23/2025
3.0.844 7,562 1/22/2025
3.0.843 972 1/21/2025
3.0.842 953 1/21/2025
3.0.841 570 1/21/2025
3.0.840 107 1/21/2025
3.0.839 594 1/21/2025
3.0.838 740 1/21/2025
3.0.837 5,225 1/21/2025
3.0.836 536 1/21/2025
3.0.835 997 1/21/2025
3.0.834 117 1/21/2025
3.0.833 794 1/21/2025
3.0.832 112 1/21/2025
3.0.831 2,084 1/21/2025
3.0.830 100 1/21/2025
3.0.829 390 1/20/2025
3.0.828 2,694 1/20/2025
3.0.827 243 1/20/2025
3.0.826 1,971 1/20/2025
3.0.825 110 1/20/2025
3.0.824 1,052 1/20/2025
3.0.823 113 1/20/2025
3.0.822 124 1/20/2025
3.0.821 110 1/20/2025
3.0.820 358 1/20/2025
3.0.819 117 1/20/2025
3.0.818 115 1/20/2025
3.0.817 5,395 1/19/2025
3.0.816 116 1/19/2025
3.0.815 4,990 1/19/2025
3.0.814 1,557 1/19/2025
3.0.813 126 1/19/2025
3.0.812 379 1/19/2025
3.0.811 108 1/19/2025
3.0.810 1,816 1/19/2025
3.0.809 104 1/19/2025
3.0.808 3,107 1/18/2025
3.0.807 112 1/18/2025
3.0.806 6,889 1/17/2025
3.0.805 119 1/17/2025
3.0.804 591 1/17/2025
3.0.803 909 1/17/2025
3.0.802 4,003 1/16/2025
3.0.801 1,399 1/16/2025
3.0.800 2,008 1/16/2025
3.0.799 538 1/16/2025
3.0.798 1,169 1/16/2025
3.0.797 996 1/16/2025
3.0.796 101 1/16/2025
3.0.795 4,390 1/15/2025
3.0.794 103 1/15/2025
3.0.793 2,707 1/15/2025
3.0.792 103 1/15/2025
3.0.791 150 1/15/2025
3.0.790 3,187 1/15/2025
3.0.789 98 1/15/2025
3.0.788 2,680 1/15/2025
3.0.787 83 1/15/2025
3.0.786 444 1/15/2025
3.0.785 79 1/15/2025
3.0.784 1,554 1/15/2025
3.0.783 79 1/15/2025
3.0.782 225 1/14/2025
3.0.781 94 1/14/2025
3.0.780 100 1/14/2025
3.0.779 2,955 1/14/2025
3.0.778 527 1/14/2025
3.0.777 98 1/14/2025
3.0.776 1,189 1/14/2025
3.0.775 95 1/14/2025
3.0.774 4,977 1/13/2025
3.0.773 1,547 1/13/2025
3.0.772 1,308 1/13/2025
3.0.771 101 1/13/2025
3.0.770 4,844 1/11/2025
3.0.769 1,956 1/11/2025
3.0.768 130 1/11/2025
3.0.767 2,072 1/11/2025
3.0.766 113 1/11/2025
3.0.765 1,671 1/10/2025
3.0.764 1,816 1/10/2025
3.0.763 113 1/10/2025
3.0.762 768 1/10/2025
3.0.761 118 1/10/2025
3.0.760 108 1/10/2025
3.0.759 6,262 1/3/2025
3.0.758 473 1/3/2025
3.0.757 990 1/3/2025
3.0.756 141 1/3/2025
3.0.755 1,427 1/3/2025
3.0.754 117 1/3/2025
3.0.753 1,067 1/3/2025
3.0.752 1,033 1/2/2025
3.0.751 119 1/2/2025
3.0.750 1,712 1/2/2025
3.0.749 126 1/2/2025
3.0.748 2,838 1/2/2025
3.0.747 115 1/2/2025
3.0.746 125 1/2/2025
3.0.745 4,659 1/1/2025
3.0.744 1,012 1/1/2025
3.0.743 286 1/1/2025
3.0.742 133 1/1/2025
3.0.741 1,478 1/1/2025
3.0.740 124 1/1/2025
3.0.739 127 1/1/2025
3.0.738 132 1/1/2025
3.0.737 328 12/31/2024
3.0.736 132 12/31/2024
3.0.735 136 12/31/2024
3.0.734 626 12/31/2024
3.0.733 142 12/31/2024
3.0.732 4,566 12/31/2024
3.0.731 132 12/31/2024
3.0.730 4,368 12/31/2024
3.0.729 109 12/31/2024
3.0.728 2,582 12/31/2024
3.0.727 342 12/31/2024
3.0.726 122 12/31/2024
3.0.725 1,327 12/31/2024
3.0.724 118 12/31/2024
3.0.723 8,872 12/28/2024
3.0.722 1,135 12/28/2024
3.0.721 1,240 12/27/2024
3.0.720 130 12/27/2024
3.0.719 2,696 12/27/2024
3.0.718 4,901 12/24/2024
3.0.717 1,259 12/24/2024
3.0.716 947 12/24/2024
3.0.715 815 12/24/2024
3.0.714 1,384 12/24/2024
3.0.713 111 12/24/2024
3.0.712 2,271 12/24/2024
3.0.711 652 12/24/2024
3.0.710 113 12/24/2024
3.0.709 469 12/24/2024
3.0.708 982 12/24/2024
3.0.707 269 12/24/2024
3.0.706 141 12/24/2024
3.0.705 1,061 12/24/2024
3.0.704 118 12/24/2024
3.0.703 1,805 12/23/2024
3.0.702 2,760 12/23/2024
3.0.701 122 12/23/2024
3.0.700 686 12/23/2024
3.0.699 118 12/23/2024
3.0.698 1,849 12/23/2024
3.0.697 116 12/23/2024
3.0.696 1,458 12/23/2024
3.0.695 126 12/23/2024
3.0.694 454 12/22/2024
3.0.693 1,405 12/22/2024
3.0.692 4,006 12/22/2024
3.0.691 123 12/22/2024
3.0.690 1,564 12/22/2024
3.0.689 170 12/22/2024
3.0.688 483 12/22/2024
3.0.687 113 12/22/2024
3.0.686 276 12/22/2024
3.0.685 120 12/22/2024
3.0.684 6,776 12/22/2024
3.0.683 113 12/22/2024
3.0.682 1,078 12/21/2024
3.0.681 283 12/21/2024
3.0.680 118 12/21/2024
3.0.679 505 12/21/2024
3.0.678 790 12/21/2024
3.0.677 114 12/21/2024
3.0.676 3,795 12/21/2024
3.0.675 401 12/21/2024
3.0.674 117 12/21/2024
3.0.673 2,543 12/21/2024
3.0.672 687 12/21/2024
3.0.671 124 12/21/2024
3.0.670 1,592 12/20/2024
3.0.669 128 12/20/2024
3.0.668 118 12/20/2024
3.0.667 3,701 12/20/2024
3.0.666 1,146 12/20/2024
3.0.665 235 12/20/2024
3.0.664 3,465 12/19/2024
3.0.663 432 12/19/2024
3.0.662 2,034 12/18/2024
3.0.661 118 12/18/2024
3.0.660 6,588 12/17/2024
3.0.659 229 12/17/2024
3.0.658 701 12/16/2024
3.0.657 124 12/16/2024
3.0.656 158 12/16/2024
3.0.655 112 12/16/2024
3.0.654 6,495 12/10/2024
3.0.653 1,009 12/10/2024
3.0.652 395 12/9/2024
3.0.651 118 12/9/2024
3.0.650 2,682 12/9/2024
3.0.649 1,384 12/9/2024
3.0.648 114 12/9/2024
3.0.647 3,640 12/9/2024
3.0.646 2,751 12/6/2024
3.0.645 437 12/6/2024
3.0.644 119 12/6/2024
3.0.643 698 12/6/2024
3.0.641 3,890 12/6/2024
3.0.640 2,459 12/6/2024
3.0.639 5,285 12/6/2024
3.0.637 387 12/6/2024
3.0.636 2,539 12/5/2024
3.0.635 3,577 12/5/2024
3.0.634 3,182 12/5/2024
3.0.633 117 12/5/2024
3.0.632 1,756 12/5/2024
3.0.631 1,044 12/5/2024
3.0.630 124 12/5/2024
3.0.629 392 12/5/2024
3.0.628 115 12/5/2024
3.0.627 159 12/5/2024
3.0.626 118 12/5/2024
3.0.625 3,373 12/4/2024
3.0.624 115 12/4/2024
3.0.623 132 12/4/2024
3.0.622 131 12/4/2024
3.0.621 1,728 12/4/2024
3.0.620 311 12/4/2024
3.0.619 423 12/4/2024
3.0.618 3,385 12/3/2024
3.0.617 126 12/3/2024
3.0.616 1,134 12/3/2024
3.0.615 454 12/3/2024
3.0.614 132 12/3/2024
3.0.613 133 12/3/2024
3.0.612 4,047 12/3/2024
3.0.611 115 12/3/2024
3.0.610 3,304 12/3/2024
3.0.609 111 12/3/2024
3.0.608 3,086 12/2/2024
3.0.607 2,670 12/2/2024
3.0.606 1,634 12/2/2024
3.0.605 293 12/2/2024
3.0.604 124 12/2/2024
3.0.603 414 12/2/2024
3.0.602 3,469 12/1/2024
3.0.601 122 12/1/2024
3.0.600 1,903 12/1/2024
3.0.599 215 12/1/2024
3.0.598 3,470 12/1/2024
3.0.597 126 12/1/2024
3.0.596 3,574 11/29/2024
3.0.595 1,060 11/29/2024
3.0.594 5,901 11/21/2024
3.0.593 314 11/21/2024
3.0.592 4,538 11/20/2024
3.0.591 359 11/20/2024
3.0.590 129 11/20/2024
3.0.589 122 11/20/2024
3.0.588 441 11/20/2024
3.0.587 174 11/20/2024
3.0.586 115 11/20/2024
3.0.585 2,044 11/20/2024
3.0.584 2,770 11/19/2024
3.0.583 121 11/19/2024
3.0.582 652 11/19/2024
3.0.581 112 11/19/2024
3.0.580 2,685 11/19/2024
3.0.579 108 11/19/2024
3.0.578 1,328 11/19/2024
3.0.577 129 11/19/2024
3.0.576 8,536 11/14/2024
3.0.575 157 11/14/2024
3.0.574 525 11/14/2024
3.0.573 2,389 11/14/2024
3.0.572 740 11/14/2024
3.0.571 132 11/14/2024
3.0.570 131 11/14/2024
3.0.569 4,164 11/14/2024
3.0.568 126 11/14/2024
3.0.567 124 11/14/2024
3.0.566 3,496 11/14/2024
3.0.565 125 11/14/2024
3.0.564 123 11/14/2024
3.0.563 124 11/14/2024
2.1.562 8,579 11/13/2024
2.1.561 1,413 11/13/2024
2.1.560 3,076 11/13/2024
2.1.559 135 11/13/2024
2.1.558 1,347 11/12/2024
2.1.557 411 11/12/2024
2.1.556 8,266 11/9/2024
2.1.555 379 11/9/2024
2.1.554 129 11/9/2024
2.1.553 1,752 11/9/2024
2.1.552 121 11/9/2024
2.1.551 983 11/8/2024
2.1.550 124 11/8/2024
2.1.549 127 11/8/2024
2.1.548 126 11/8/2024
2.1.547 441 11/8/2024
2.1.546 1,911 11/8/2024
2.1.545 118 11/8/2024
2.1.544 5,487 11/8/2024
2.1.543 114 11/8/2024
2.1.542 11,681 11/1/2024
2.1.541 480 11/1/2024
2.1.540 6,795 10/29/2024
2.1.539 762 10/29/2024
2.1.538 2,846 10/29/2024
2.1.537 643 10/29/2024
2.1.536 5,576 10/28/2024
2.1.535 1,868 10/28/2024
2.1.534 4,026 10/26/2024
2.1.533 715 10/26/2024
2.1.532 9,348 10/22/2024
2.1.531 269 10/22/2024
2.1.530 565 10/22/2024
2.1.529 898 10/22/2024
2.1.528 118 10/22/2024
2.1.527 511 10/22/2024
2.1.526 6,516 10/18/2024
2.1.525 1,100 10/17/2024
2.1.524 4,165 10/15/2024
2.1.523 1,612 10/15/2024
2.1.522 116 10/14/2024
2.1.521 5,148 10/12/2024
2.1.520 666 10/11/2024
2.1.519 115 10/11/2024
2.1.518 492 10/11/2024
2.1.517 2,955 10/11/2024
2.1.516 6,479 10/9/2024
2.1.515 396 10/9/2024
2.1.514 112 10/9/2024
2.1.513 1,993 10/8/2024
2.1.512 164 10/8/2024
2.1.511 2,241 10/8/2024
2.1.510 159 10/8/2024
2.1.509 112 10/8/2024
2.1.508 3,957 10/8/2024
2.1.507 6,246 10/3/2024
2.1.506 121 10/3/2024
2.1.505 1,119 10/3/2024
2.1.504 1,944 10/3/2024
2.1.503 1,434 10/3/2024
2.1.502 5,747 10/2/2024
2.1.501 117 10/2/2024
2.1.500 1,833 10/2/2024
2.1.499 1,023 10/2/2024
2.1.498 4,196 10/1/2024
2.1.497 721 10/1/2024
2.1.496 133 10/1/2024
2.1.495 2,642 10/1/2024
2.1.494 124 10/1/2024
2.1.493 163 10/1/2024
2.1.492 5,455 9/29/2024
2.1.491 1,400 9/29/2024
2.1.490 121 9/29/2024
2.1.489 1,241 9/29/2024
2.1.488 129 9/29/2024
2.1.487 2,529 9/29/2024
2.1.486 5,245 9/27/2024
2.1.485 788 9/27/2024
2.1.484 3,146 9/27/2024
2.1.483 134 9/27/2024
2.1.482 466 9/27/2024
2.1.481 2,170 9/27/2024
2.1.480 3,183 9/26/2024
2.1.479 3,493 9/26/2024
2.1.478 2,368 9/26/2024
2.1.477 2,181 9/26/2024
2.1.476 3,828 9/26/2024
2.1.475 120 9/26/2024
2.1.474 5,626 9/23/2024
2.1.473 1,312 9/23/2024
2.1.472 974 9/23/2024
2.1.471 1,165 9/23/2024
2.1.470 125 9/23/2024
2.1.469 1,562 9/23/2024
2.1.468 112 9/23/2024
2.1.467 4,683 9/23/2024
2.1.466 125 9/23/2024
2.1.465 740 9/23/2024
2.1.464 141 9/23/2024
2.1.463 113 9/23/2024
2.1.462 899 9/23/2024
2.1.461 9,349 9/18/2024
2.1.460 267 9/17/2024
2.1.459 1,220 9/17/2024
2.1.458 1,728 9/17/2024
2.1.457 129 9/17/2024
2.1.456 1,823 9/17/2024
2.1.455 486 9/17/2024
2.1.454 3,302 9/17/2024
2.1.453 577 9/17/2024
2.1.452 214 9/17/2024
2.1.451 2,673 9/17/2024
2.1.450 7,466 9/16/2024
2.1.449 732 9/16/2024
2.1.448 5,071 9/12/2024
2.1.447 2,935 9/12/2024
2.1.446 1,337 9/11/2024
2.1.445 1,551 9/11/2024
2.1.443 3,736 9/11/2024
2.1.442 1,018 9/11/2024
2.1.441 979 9/11/2024
2.1.440 2,330 9/11/2024
2.1.439 8,100 9/10/2024
2.1.438 144 9/10/2024
2.1.437 1,169 9/10/2024
2.1.436 140 9/10/2024
2.1.434 2,939 9/10/2024
2.1.433 618 9/9/2024
2.1.432 2,022 9/9/2024
2.1.430 1,568 9/9/2024
2.1.428 155 9/9/2024
2.1.427 487 9/9/2024
2.1.426 13,265 9/7/2024
2.1.425 159 9/7/2024
2.1.424 5,030 9/6/2024
2.1.423 389 9/6/2024
2.1.422 2,230 9/6/2024
2.1.421 141 9/5/2024
2.1.420 149 9/5/2024
2.1.419 2,409 9/5/2024
2.1.418 1,172 9/5/2024
2.1.417 144 9/5/2024
2.1.416 1,165 9/5/2024
2.1.415 457 9/5/2024
2.1.414 139 9/5/2024
2.1.413 5,067 9/5/2024
2.1.412 218 9/5/2024
2.1.411 145 9/5/2024
2.1.410 2,282 9/4/2024
2.1.409 8,031 9/3/2024
2.1.408 128 9/3/2024
2.1.407 126 9/3/2024
2.1.406 4,031 9/3/2024
2.1.405 167 9/3/2024
2.1.404 2,508 9/3/2024
2.1.403 5,308 8/29/2024
2.1.402 2,573 8/29/2024
2.1.401 2,900 8/26/2024
2.1.400 126 8/26/2024
2.1.399 4,959 8/21/2024
2.1.398 629 8/21/2024
2.1.397 160 8/21/2024
2.1.396 2,569 8/21/2024
2.1.395 167 8/20/2024
2.1.394 164 8/20/2024
2.1.393 502 8/20/2024
2.1.392 2,978 8/20/2024
2.1.391 441 8/20/2024
2.1.390 138 8/20/2024
2.1.389 2,669 8/20/2024
2.1.388 143 8/20/2024
2.1.387 1,226 8/20/2024
2.1.386 2,912 8/19/2024
2.1.385 4,798 8/15/2024
2.1.384 2,137 8/15/2024
2.1.383 4,830 8/14/2024
2.1.382 169 8/13/2024
2.1.381 5,713 8/7/2024
2.1.380 296 8/6/2024
2.1.379 2,710 8/6/2024
2.1.378 4,943 8/1/2024
2.1.377 353 8/1/2024
2.1.376 116 8/1/2024
2.1.374 1,159 8/1/2024
2.1.373 5,821 7/25/2024
2.1.372 113 7/25/2024
2.1.371 748 7/25/2024
2.1.370 328 7/25/2024
2.1.369 380 7/25/2024
2.1.368 198 7/25/2024
2.1.367 405 7/24/2024
2.1.366 174 7/24/2024
2.1.365 222 7/24/2024
2.1.364 333 7/24/2024
2.1.363 8,589 7/20/2024
2.1.362 1,475 7/20/2024
2.1.361 5,035 7/14/2024
2.1.360 1,568 7/14/2024
2.1.359 122 7/14/2024
2.1.358 1,515 7/14/2024
2.1.357 4,340 7/10/2024
2.1.355 814 7/10/2024
2.1.354 1,206 7/10/2024
2.1.353 139 7/10/2024
2.1.352 1,917 7/10/2024
2.1.351 147 7/10/2024
2.1.350 124 7/10/2024
2.1.349 192 7/10/2024
2.1.348 130 7/10/2024
2.1.347 2,068 7/10/2024
2.1.346 146 7/10/2024
2.1.345 827 7/10/2024
2.1.344 128 7/10/2024
2.1.343 233 7/9/2024
2.1.342 114 7/9/2024
2.1.339 1,994 7/9/2024
2.1.338 501 7/9/2024
2.1.337 4,034 7/9/2024
2.1.336 1,082 7/9/2024
2.1.335 139 7/9/2024
2.1.334 2,598 7/9/2024
2.1.333 129 7/9/2024
2.1.332 9,341 7/9/2024
2.1.331 130 7/9/2024
2.1.330 2,521 7/9/2024
2.1.329 118 7/9/2024
2.1.328 1,084 7/9/2024
2.1.327 725 7/8/2024
2.1.326 982 7/8/2024
2.1.325 141 7/8/2024
2.1.324 144 7/8/2024
2.1.323 4,869 7/8/2024
2.1.322 1,644 7/8/2024
2.1.321 139 7/8/2024
2.1.320 2,297 7/7/2024
2.1.319 144 7/7/2024
2.1.318 157 7/7/2024
2.1.317 140 7/7/2024
2.1.316 1,167 7/7/2024
2.1.315 2,187 7/7/2024
2.1.314 1,883 7/7/2024
2.1.313 238 7/7/2024
2.1.312 3,411 7/5/2024
2.1.311 3,892 7/3/2024
2.1.310 3,054 7/3/2024
2.1.309 409 7/3/2024
2.1.308 3,916 7/2/2024
2.1.307 1,875 6/30/2024
2.1.306 2,260 6/28/2024
2.1.305 5,407 6/22/2024
2.1.304 4,877 6/15/2024
2.1.303 4,102 6/14/2024
2.1.302 5,886 6/1/2024
2.1.301 1,610 6/1/2024
2.1.300 601 6/1/2024
2.1.299 5,827 5/31/2024
2.1.298 3,710 5/29/2024
2.1.297 3,039 5/28/2024
2.1.296 2,475 5/27/2024
2.1.295 4,836 5/26/2024
2.1.294 2,032 5/26/2024
2.1.293 498 5/26/2024
2.1.292 2,510 5/25/2024
2.1.291 1,393 5/25/2024
2.1.290 151 5/25/2024
2.1.289 147 5/25/2024
2.1.288 707 5/25/2024
2.1.287 143 5/25/2024
2.1.286 425 5/25/2024
2.1.285 148 5/25/2024
2.1.284 139 5/25/2024
2.1.283 7,416 5/23/2024
2.1.282 542 5/23/2024
2.1.281 294 5/22/2024
2.1.280 3,646 5/22/2024
2.1.279 139 5/22/2024
2.1.278 153 5/22/2024
2.1.277 150 5/22/2024
2.1.276 2,137 5/22/2024
2.1.275 3,429 5/18/2024
2.1.274 1,904 5/18/2024
2.1.273 1,821 5/17/2024
2.1.272 134 5/17/2024
2.1.271 2,726 5/16/2024
2.1.270 454 5/15/2024
2.1.269 2,748 5/15/2024
2.1.268 4,452 5/12/2024
2.1.267 2,753 5/3/2024
2.1.266 1,156 4/30/2024
2.1.265 1,776 4/29/2024
2.1.264 1,928 4/29/2024
2.1.263 2,660 4/28/2024
2.1.262 1,498 4/28/2024
2.1.261 1,114 4/28/2024
2.1.260 1,757 4/28/2024
2.1.259 924 4/28/2024
2.1.258 134 4/28/2024
2.1.257 4,155 4/27/2024
2.1.256 151 4/27/2024
2.1.255 4,381 4/19/2024
2.1.254 4,086 4/18/2024
2.1.253 3,437 4/12/2024
2.1.252 1,162 4/12/2024
2.1.251 743 4/12/2024
2.1.250 879 4/12/2024
2.1.249 220 4/12/2024
2.1.248 126 4/12/2024
2.1.247 1,003 4/12/2024
2.1.246 325 4/12/2024
2.1.245 1,664 4/11/2024
2.1.244 3,736 4/10/2024
2.1.243 1,154 4/9/2024
2.1.242 3,173 4/2/2024
2.1.241 923 4/1/2024
2.1.240 2,097 3/29/2024
2.1.239 1,855 3/25/2024
2.1.238 315 3/25/2024
2.1.237 3,321 3/20/2024
2.1.236 2,149 3/19/2024
2.1.235 535 3/19/2024
2.1.234 2,356 3/18/2024
2.1.233 1,416 3/18/2024
2.1.232 1,393 3/15/2024
2.1.231 2,356 3/13/2024
2.1.230 1,116 3/13/2024
2.1.229 677 3/13/2024
2.1.228 782 3/13/2024
2.1.227 157 3/13/2024
2.1.226 552 3/13/2024
2.1.225 159 3/13/2024
2.1.224 162 3/13/2024
2.1.223 1,672 3/12/2024
2.1.222 2,841 3/11/2024
2.1.221 2,488 3/11/2024
2.1.220 1,644 3/10/2024
2.1.219 1,900 3/8/2024
2.1.218 1,076 3/8/2024
2.1.217 1,574 3/8/2024
2.1.216 2,089 3/6/2024
2.1.215 2,012 3/4/2024
2.1.214 1,423 3/4/2024
2.1.213 2,568 3/2/2024
2.1.212 1,230 3/2/2024
2.1.211 428 3/2/2024
2.1.210 368 3/2/2024
2.1.209 492 3/2/2024
2.1.208 3,438 2/29/2024
2.1.207 655 2/29/2024
2.1.206 357 2/29/2024
2.1.205 3,323 2/26/2024
2.1.204 1,497 2/25/2024
2.1.203 2,608 2/23/2024
2.1.202 1,910 2/22/2024
2.1.201 975 2/22/2024
2.1.200 453 2/21/2024
2.1.199 1,201 2/21/2024
2.1.198 319 2/21/2024
2.1.197 781 2/21/2024
2.1.196 146 2/21/2024
2.1.195 1,263 2/21/2024
2.1.194 429 2/21/2024
2.1.193 155 2/21/2024
2.1.192 159 2/21/2024
2.1.191 608 2/21/2024
2.1.190 137 2/21/2024
2.1.189 2,643 2/20/2024
2.1.188 733 2/20/2024
2.1.187 660 2/20/2024
2.1.186 780 2/20/2024
2.1.185 2,130 2/19/2024
2.1.184 1,890 2/17/2024
2.1.183 916 2/16/2024
2.1.182 875 2/16/2024
2.1.181 1,366 2/16/2024
2.1.180 148 2/16/2024
2.1.179 656 2/16/2024
2.1.178 157 2/16/2024
2.1.177 149 2/16/2024
2.1.176 571 2/16/2024
2.1.175 136 2/16/2024
2.1.174 3,306 2/13/2024
2.1.173 1,391 2/13/2024
2.1.172 1,106 2/13/2024
2.1.171 471 2/13/2024
2.1.170 640 2/13/2024
2.1.169 1,950 2/12/2024
2.1.168 527 2/11/2024
2.1.167 1,541 2/11/2024
2.1.166 877 2/11/2024
2.1.165 2,805 2/10/2024
2.1.164 558 2/9/2024
2.1.163 157 2/9/2024
2.1.162 1,573 2/9/2024
2.1.161 1,682 2/9/2024
2.1.160 413 2/8/2024
2.1.159 1,242 2/8/2024
2.1.158 875 2/8/2024
2.1.157 1,483 2/8/2024
2.1.156 142 2/8/2024
2.1.155 1,884 2/7/2024
2.1.154 453 2/7/2024
2.1.153 620 2/7/2024
2.1.152 1,280 2/7/2024
2.1.151 394 2/6/2024
2.1.150 151 2/6/2024
2.1.149 146 2/6/2024
2.1.148 2,781 2/5/2024
2.1.147 1,543 2/4/2024
2.1.146 2,098 2/2/2024
2.1.145 1,924 1/31/2024
2.1.144 2,157 1/29/2024
2.1.143 1,379 1/29/2024
2.1.142 361 1/29/2024
2.1.141 1,505 1/28/2024
2.1.140 483 1/28/2024
2.1.139 326 1/28/2024
2.1.138 564 1/28/2024
2.1.137 1,940 1/28/2024
2.1.136 943 1/28/2024
2.1.135 308 1/27/2024
2.1.134 941 1/27/2024
2.1.133 1,177 1/27/2024
2.1.132 1,195 1/27/2024
2.1.131 167 1/27/2024
2.1.130 713 1/27/2024
2.1.129 1,074 1/26/2024
2.1.128 241 1/26/2024
2.1.127 887 1/26/2024
2.1.126 1,139 1/26/2024
2.1.125 1,647 1/26/2024
2.1.124 897 1/25/2024
2.1.123 1,127 1/25/2024
2.1.122 473 1/25/2024
2.1.121 933 1/25/2024
2.1.120 537 1/25/2024
2.1.119 2,594 1/19/2024
2.1.118 2,228 1/15/2024
2.1.117 518 1/15/2024
2.1.116 1,253 1/15/2024
2.1.115 146 1/15/2024
2.1.114 583 1/15/2024
2.1.113 1,384 1/15/2024
2.1.112 2,557 1/14/2024
2.1.111 1,631 1/13/2024
2.1.110 1,853 1/12/2024
2.1.109 2,053 1/11/2024
2.1.108 2,660 1/7/2024
2.1.107 2,104 1/5/2024
2.1.106 510 1/5/2024
2.1.105 160 1/5/2024
2.1.104 158 1/5/2024
2.1.103 1,506 1/5/2024
2.1.102 160 1/5/2024
2.1.101 2,801 1/1/2024
2.1.100 2,237 12/28/2023
2.1.99 754 12/28/2023
2.1.98 519 12/28/2023
2.1.97 153 12/28/2023
2.1.96 151 12/28/2023
2.1.95 728 12/27/2023
2.1.94 164 12/27/2023
2.1.93 495 12/27/2023
2.1.92 160 12/27/2023
2.1.91 164 12/27/2023
2.1.90 2,241 12/25/2023
2.1.89 370 12/25/2023
2.1.88 799 12/25/2023
2.1.87 166 12/25/2023
2.1.86 681 12/25/2023
2.1.85 157 12/25/2023
2.1.84 594 12/25/2023
2.1.83 157 12/25/2023
2.1.82 1,681 12/24/2023
2.1.81 1,098 12/23/2023
2.1.80 891 12/23/2023
2.1.79 327 12/23/2023
2.1.78 579 12/23/2023
2.1.77 154 12/23/2023
2.1.76 141 12/23/2023
2.1.75 1,105 12/23/2023
2.1.74 144 12/23/2023
2.1.73 1,425 12/19/2023
2.1.72 235 12/19/2023
2.1.71 3,111 12/11/2023
2.1.70 742 12/10/2023
2.1.69 142 12/10/2023
2.1.68 512 12/10/2023
2.1.67 1,437 12/10/2023
2.1.66 397 12/9/2023
2.1.65 391 12/9/2023
2.1.64 309 12/9/2023
2.1.63 164 12/9/2023
2.1.62 287 12/9/2023
2.1.61 221 12/9/2023
2.1.60 148 12/9/2023
2.1.59 1,086 12/9/2023
2.1.58 153 12/9/2023
2.1.57 1,547 12/6/2023
2.1.56 418 12/6/2023
2.1.55 258 12/6/2023
2.1.54 287 12/6/2023
2.1.53 943 12/5/2023
2.1.52 392 12/5/2023
2.1.51 352 12/5/2023
2.1.50 391 12/5/2023
2.1.49 139 12/5/2023
2.1.48 355 12/5/2023
2.1.47 288 12/5/2023
2.1.46 141 12/4/2023
2.1.45 147 12/4/2023
2.1.44 351 12/4/2023
2.1.43 159 12/4/2023
2.1.42 1,031 12/4/2023
2.1.41 122 12/4/2023
2.1.40 1,181 11/27/2023
2.1.39 540 11/26/2023
2.1.38 240 11/26/2023
2.1.37 642 11/23/2023
2.1.36 701 11/23/2023
2.1.35 658 11/23/2023
2.1.34 147 11/23/2023
2.1.33 418 11/23/2023
2.1.32 151 11/23/2023
2.1.31 1,093 11/20/2023
2.1.30 1,074 11/20/2023
2.1.29 820 11/19/2023
2.1.28 276 11/19/2023
2.1.27 467 11/19/2023
2.1.26 515 11/19/2023
2.1.25 517 11/19/2023
2.1.24 135 11/19/2023
2.1.23 229 11/18/2023
2.1.22 999 11/18/2023
2.1.21 388 11/18/2023
2.1.20 547 11/18/2023
2.1.19 149 11/18/2023
2.1.18 318 11/18/2023
2.1.17 143 11/18/2023
2.1.16 621 11/17/2023
2.1.15 537 11/17/2023
2.1.14 143 11/17/2023
2.1.13 437 11/17/2023
2.1.12 317 11/17/2023
2.1.11 507 11/17/2023
2.1.10 141 11/17/2023
2.1.9 522 11/17/2023
2.1.8 149 11/17/2023
2.1.7 164 11/17/2023
2.1.6 354 11/17/2023
2.1.5 391 11/16/2023
2.0.101 2,088 11/15/2023
2.0.100 137 11/15/2023
2.0.99 147 11/15/2023
2.0.4 141 11/16/2023
2.0.3 150 11/16/2023
2.0.2 147 11/16/2023
2.0.1 142 11/16/2023
1.0.98 628 11/14/2023
1.0.97 761 11/13/2023
1.0.96 127 11/13/2023
1.0.95 585 11/10/2023
1.0.94 138 11/10/2023
1.0.93 953 11/9/2023
1.0.92 141 11/9/2023
1.0.91 1,054 11/7/2023
1.0.90 136 11/7/2023
1.0.89 519 11/6/2023
1.0.88 151 11/6/2023
1.0.87 612 11/3/2023
1.0.86 155 11/3/2023
1.0.85 901 11/2/2023
1.0.84 137 11/2/2023
1.0.83 618 11/1/2023
1.0.82 1,478 10/26/2023
1.0.81 1,321 10/19/2023
1.0.80 164 10/19/2023
1.0.79 802 10/18/2023
1.0.78 182 10/18/2023
1.0.77 754 10/17/2023
1.0.76 167 10/17/2023
1.0.75 681 10/16/2023
1.0.74 172 10/16/2023
1.0.73 719 10/13/2023
1.0.72 358 10/12/2023
1.0.71 1,760 9/20/2023
1.0.70 703 9/19/2023
1.0.69 699 9/18/2023
1.0.68 165 9/18/2023
1.0.67 911 9/14/2023
1.0.66 1,523 8/31/2023
1.0.65 171 8/31/2023
1.0.64 835 8/30/2023
1.0.63 183 8/30/2023
1.0.62 199 8/30/2023
1.0.61 863 8/28/2023
1.0.60 718 8/25/2023
1.0.59 173 8/25/2023
1.0.58 522 8/24/2023
1.0.57 1,482 8/21/2023
1.0.56 853 8/18/2023
1.0.55 773 8/17/2023
1.0.54 182 8/17/2023
1.0.53 1,921 8/10/2023
1.0.52 592 8/9/2023
1.0.51 702 8/8/2023
1.0.50 686 8/7/2023
1.0.49 206 8/7/2023
1.0.48 2,502 7/13/2023
1.0.47 918 7/11/2023
1.0.46 750 7/10/2023
1.0.45 722 7/7/2023
1.0.44 202 7/7/2023
1.0.43 2,138 6/30/2023
1.0.42 1,095 6/29/2023
1.0.41 627 6/28/2023
1.0.40 1,574 6/26/2023
1.0.39 822 6/23/2023
1.0.38 1,114 6/21/2023
1.0.37 1,477 6/15/2023
1.0.36 512 6/14/2023
1.0.35 1,833 6/9/2023
1.0.34 860 6/8/2023
1.0.33 1,652 6/7/2023
1.0.32 203 6/7/2023
1.0.31 1,251 6/6/2023
1.0.30 1,209 6/5/2023
1.0.29 1,393 6/2/2023
1.0.28 189 6/2/2023
1.0.27 1,278 6/1/2023
1.0.26 633 5/31/2023
1.0.25 518 5/31/2023
1.0.24 200 5/31/2023
1.0.23 1,498 5/30/2023
1.0.22 1,560 5/26/2023
1.0.21 716 5/25/2023
1.0.20 183 5/25/2023
1.0.19 867 5/24/2023
1.0.18 194 5/24/2023
1.0.17 487 5/23/2023
1.0.13 1,500 5/22/2023
1.0.12 1,224 5/18/2023
1.0.11 629 5/17/2023
1.0.10 1,586 5/1/2023
1.0.9 1,057 4/25/2023
1.0.8 518 4/24/2023
1.0.7 1,035 4/21/2023
1.0.6 1,989 4/13/2023
1.0.5 635 4/12/2023
1.0.4 1,056 4/8/2023
1.0.3 226 4/8/2023
1.0.2 630 4/8/2023
1.0.1 232 4/8/2023