Soenneker.Utils.SingletonDictionary 3.0.1085

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.1085
                    
NuGet\Install-Package Soenneker.Utils.SingletonDictionary -Version 3.0.1085
                    
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.1085" />
                    
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.1085" />
                    
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.1085
                    
#r "nuget: Soenneker.Utils.SingletonDictionary, 3.0.1085"
                    
#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.1085
                    
#: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.1085
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.SingletonDictionary&version=3.0.1085
                    
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.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.Utils.RateLimiting.Factory

An async thread-safe singleton dictionary for Soenneker.Utils.RateLimiting.Executors, designed to manage the rate at which tasks are executed.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1107 27,872 9/9/2025
3.0.1106 21,054 9/3/2025
3.0.1105 343 9/3/2025
3.0.1104 2,066 9/3/2025
3.0.1103 27,661 8/14/2025
3.0.1102 6,932 8/11/2025
3.0.1101 2,812 8/11/2025
3.0.1100 718 8/11/2025
3.0.1099 148 8/11/2025
3.0.1098 20,915 8/6/2025
3.0.1097 4,519 8/5/2025
3.0.1096 25,949 7/9/2025
3.0.1095 28,359 6/28/2025
3.0.1094 1,572 6/28/2025
3.0.1093 2,265 6/27/2025
3.0.1092 2,874 6/27/2025
3.0.1091 30,276 6/10/2025
3.0.1090 21,159 5/27/2025
3.0.1089 1,114 5/27/2025
3.0.1088 1,209 5/27/2025
3.0.1087 2,902 5/27/2025
3.0.1086 17,477 5/23/2025
3.0.1085 1,549 5/23/2025
3.0.1084 1,554 5/23/2025
3.0.1083 1,522 5/23/2025
3.0.1082 311 5/22/2025
3.0.1081 12,091 5/18/2025
3.0.1079 1,854 5/18/2025
3.0.1078 1,795 5/18/2025
3.0.1077 5,174 5/14/2025
3.0.1076 11,446 5/8/2025
3.0.1075 354 5/8/2025
3.0.1074 755 5/8/2025
3.0.1073 1,336 5/7/2025
3.0.1072 15,853 5/5/2025
3.0.1071 1,048 5/5/2025
3.0.1070 1,947 5/5/2025
3.0.1069 911 5/5/2025
3.0.1068 275 5/5/2025
3.0.1067 188 5/5/2025
3.0.1066 22,366 4/9/2025
3.0.1065 330 4/9/2025
3.0.1064 1,342 4/8/2025
3.0.1063 2,803 4/8/2025
3.0.1062 3,776 4/8/2025
3.0.1061 239 4/8/2025
3.0.1060 212 4/8/2025
3.0.1059 237 4/8/2025
3.0.1058 195 4/8/2025
3.0.1057 1,091 4/8/2025
3.0.1056 352 4/8/2025
3.0.1055 8,217 4/8/2025
3.0.1054 826 4/8/2025
3.0.1053 4,152 4/7/2025
3.0.1052 874 4/7/2025
3.0.1051 202 4/7/2025
3.0.1050 735 4/7/2025
3.0.1049 204 4/7/2025
3.0.1048 8,672 4/7/2025
3.0.1047 204 4/7/2025
3.0.1046 12,061 4/7/2025
3.0.1045 207 4/7/2025
3.0.1044 1,731 4/7/2025
3.0.1043 205 4/7/2025
3.0.1042 2,020 4/7/2025
3.0.1041 1,204 4/6/2025
3.0.1040 348 4/6/2025
3.0.1039 210 4/6/2025
3.0.1038 1,449 4/6/2025
3.0.1037 210 4/6/2025
3.0.1036 465 4/6/2025
3.0.1035 1,478 4/6/2025
3.0.1034 174 4/6/2025
3.0.1033 2,677 4/6/2025
3.0.1032 152 4/6/2025
3.0.1031 192 4/6/2025
3.0.1030 158 4/6/2025
3.0.1029 2,064 4/5/2025
3.0.1028 216 4/5/2025
3.0.1027 1,510 4/5/2025
3.0.1026 1,412 4/5/2025
3.0.1025 1,344 4/5/2025
3.0.1024 777 4/5/2025
3.0.1023 671 4/5/2025
3.0.1022 152 4/5/2025
3.0.1021 1,648 4/4/2025
3.0.1020 8,759 4/4/2025
3.0.1019 29,623 4/4/2025
3.0.1018 8,627 4/1/2025
3.0.1017 3,334 4/1/2025
3.0.1016 209 4/1/2025
3.0.1015 7,023 4/1/2025
3.0.1014 3,057 3/31/2025
3.0.1013 450 3/31/2025
3.0.1012 4,921 3/31/2025
3.0.1011 8,799 3/29/2025
3.0.1010 1,385 3/29/2025
3.0.1009 1,861 3/29/2025
3.0.1008 143 3/29/2025
3.0.1007 5,656 3/27/2025
3.0.1006 4,846 3/25/2025
3.0.1005 664 3/25/2025
3.0.1004 3,911 3/25/2025
3.0.1003 7,931 3/21/2025
3.0.1002 3,326 3/21/2025
3.0.1001 8,961 3/18/2025
3.0.1000 4,399 3/18/2025
3.0.999 8,318 3/15/2025
3.0.998 2,350 3/15/2025
3.0.997 120 3/15/2025
3.0.996 7,908 3/12/2025
3.0.995 2,773 3/12/2025
3.0.994 210 3/12/2025
3.0.993 486 3/12/2025
3.0.992 198 3/12/2025
3.0.991 3,507 3/11/2025
3.0.990 210 3/11/2025
3.0.989 1,566 3/11/2025
3.0.988 211 3/11/2025
3.0.987 3,285 3/11/2025
3.0.986 215 3/11/2025
3.0.985 3,353 3/11/2025
3.0.984 199 3/11/2025
3.0.983 2,126 3/11/2025
3.0.982 195 3/11/2025
3.0.981 11,461 3/7/2025
3.0.980 3,371 3/7/2025
3.0.979 7,873 3/2/2025
3.0.978 1,338 3/2/2025
3.0.977 837 3/2/2025
3.0.976 140 3/2/2025
3.0.975 5,656 3/2/2025
3.0.974 147 3/2/2025
3.0.973 4,186 3/1/2025
3.0.972 130 3/1/2025
3.0.971 5,693 3/1/2025
3.0.970 161 3/1/2025
3.0.969 128 3/1/2025
3.0.968 534 3/1/2025
3.0.967 139 3/1/2025
3.0.966 7,659 3/1/2025
3.0.965 6,138 2/26/2025
3.0.964 1,055 2/26/2025
3.0.963 3,077 2/25/2025
3.0.962 143 2/25/2025
3.0.961 1,072 2/25/2025
3.0.960 124 2/25/2025
3.0.959 165 2/25/2025
3.0.958 2,392 2/25/2025
3.0.957 6,350 2/24/2025
3.0.956 5,836 2/23/2025
3.0.955 1,398 2/22/2025
3.0.954 130 2/22/2025
3.0.953 9,915 2/22/2025
3.0.952 2,881 2/22/2025
3.0.951 1,396 2/22/2025
3.0.950 983 2/22/2025
3.0.949 177 2/22/2025
3.0.948 145 2/22/2025
3.0.947 148 2/22/2025
3.0.946 6,096 2/21/2025
3.0.945 141 2/21/2025
3.0.944 7,235 2/21/2025
3.0.943 5,912 2/19/2025
3.0.942 2,060 2/19/2025
3.0.941 853 2/19/2025
3.0.940 147 2/19/2025
3.0.939 479 2/18/2025
3.0.938 145 2/18/2025
3.0.937 7,051 2/18/2025
3.0.936 140 2/18/2025
3.0.935 3,562 2/18/2025
3.0.934 8,623 2/16/2025
3.0.933 1,961 2/14/2025
3.0.932 1,022 2/14/2025
3.0.931 907 2/13/2025
3.0.930 3,148 2/13/2025
3.0.929 365 2/13/2025
3.0.928 4,750 2/13/2025
3.0.927 4,863 2/12/2025
3.0.926 1,857 2/12/2025
3.0.925 168 2/12/2025
3.0.924 146 2/12/2025
3.0.923 2,577 2/12/2025
3.0.922 414 2/12/2025
3.0.921 153 2/12/2025
3.0.920 221 2/12/2025
3.0.919 220 2/12/2025
3.0.918 146 2/12/2025
3.0.917 205 2/11/2025
3.0.916 4,409 2/11/2025
3.0.915 4,852 2/11/2025
3.0.914 2,889 2/11/2025
3.0.913 156 2/11/2025
3.0.912 489 2/11/2025
3.0.911 2,236 2/10/2025
3.0.910 165 2/10/2025
3.0.909 933 2/10/2025
3.0.908 161 2/10/2025
3.0.907 8,175 2/10/2025
3.0.906 156 2/10/2025
3.0.905 1,513 2/9/2025
3.0.904 7,294 2/9/2025
3.0.903 141 2/9/2025
3.0.902 9,466 2/8/2025
3.0.901 155 2/8/2025
3.0.900 2,205 2/7/2025
3.0.899 147 2/7/2025
3.0.898 2,069 2/7/2025
3.0.897 147 2/7/2025
3.0.896 802 2/7/2025
3.0.895 546 2/7/2025
3.0.894 157 2/7/2025
3.0.893 437 2/7/2025
3.0.892 145 2/7/2025
3.0.891 1,340 2/7/2025
3.0.890 139 2/7/2025
3.0.889 155 2/7/2025
3.0.888 13,723 2/7/2025
3.0.887 8,106 2/5/2025
3.0.886 780 2/5/2025
3.0.885 1,178 2/5/2025
3.0.884 367 2/5/2025
3.0.883 1,304 2/5/2025
3.0.882 838 2/5/2025
3.0.881 3,975 2/5/2025
3.0.880 136 2/5/2025
3.0.879 13,637 1/28/2025
3.0.878 865 1/28/2025
3.0.877 2,408 1/28/2025
3.0.876 285 1/28/2025
3.0.875 5,104 1/28/2025
3.0.874 848 1/27/2025
3.0.873 117 1/27/2025
3.0.872 240 1/27/2025
3.0.871 350 1/27/2025
3.0.870 133 1/27/2025
3.0.869 6,496 1/27/2025
3.0.868 5,886 1/26/2025
3.0.867 1,239 1/26/2025
3.0.866 229 1/26/2025
3.0.865 1,332 1/26/2025
3.0.864 1,732 1/25/2025
3.0.863 134 1/25/2025
3.0.862 7,430 1/25/2025
3.0.861 1,317 1/25/2025
3.0.860 399 1/25/2025
3.0.859 143 1/25/2025
3.0.858 2,479 1/25/2025
3.0.857 1,633 1/25/2025
3.0.856 8,520 1/24/2025
3.0.855 2,063 1/24/2025
3.0.854 122 1/24/2025
3.0.853 2,658 1/24/2025
3.0.852 417 1/24/2025
3.0.851 294 1/24/2025
3.0.850 4,115 1/24/2025
3.0.849 136 1/24/2025
3.0.848 631 1/23/2025
3.0.847 140 1/23/2025
3.0.846 748 1/23/2025
3.0.845 134 1/23/2025
3.0.844 10,209 1/22/2025
3.0.843 1,272 1/21/2025
3.0.842 1,250 1/21/2025
3.0.841 732 1/21/2025
3.0.840 128 1/21/2025
3.0.839 750 1/21/2025
3.0.838 940 1/21/2025
3.0.837 6,986 1/21/2025
3.0.836 716 1/21/2025
3.0.835 1,289 1/21/2025
3.0.834 141 1/21/2025
3.0.833 1,065 1/21/2025
3.0.832 133 1/21/2025
3.0.831 2,852 1/21/2025
3.0.830 125 1/21/2025
3.0.829 507 1/20/2025
3.0.828 3,664 1/20/2025
3.0.827 320 1/20/2025
3.0.826 2,655 1/20/2025
3.0.825 137 1/20/2025
3.0.824 1,401 1/20/2025
3.0.823 144 1/20/2025
3.0.822 148 1/20/2025
3.0.821 140 1/20/2025
3.0.820 463 1/20/2025
3.0.819 144 1/20/2025
3.0.818 138 1/20/2025
3.0.817 7,320 1/19/2025
3.0.816 143 1/19/2025
3.0.815 6,748 1/19/2025
3.0.814 2,098 1/19/2025
3.0.813 162 1/19/2025
3.0.812 504 1/19/2025
3.0.811 135 1/19/2025
3.0.810 2,492 1/19/2025
3.0.809 133 1/19/2025
3.0.808 4,178 1/18/2025
3.0.807 141 1/18/2025
3.0.806 9,133 1/17/2025
3.0.805 147 1/17/2025
3.0.804 803 1/17/2025
3.0.803 1,197 1/17/2025
3.0.802 5,460 1/16/2025
3.0.801 1,879 1/16/2025
3.0.800 2,731 1/16/2025
3.0.799 686 1/16/2025
3.0.798 1,571 1/16/2025
3.0.797 1,318 1/16/2025
3.0.796 128 1/16/2025
3.0.795 6,020 1/15/2025
3.0.794 132 1/15/2025
3.0.793 3,595 1/15/2025
3.0.792 130 1/15/2025
3.0.791 185 1/15/2025
3.0.790 4,321 1/15/2025
3.0.789 117 1/15/2025
3.0.788 3,728 1/15/2025
3.0.787 114 1/15/2025
3.0.786 619 1/15/2025
3.0.785 108 1/15/2025
3.0.784 2,156 1/15/2025
3.0.783 111 1/15/2025
3.0.782 317 1/14/2025
3.0.781 123 1/14/2025
3.0.780 125 1/14/2025
3.0.779 4,487 1/14/2025
3.0.778 740 1/14/2025
3.0.777 124 1/14/2025
3.0.776 1,502 1/14/2025
3.0.775 114 1/14/2025
3.0.774 7,134 1/13/2025
3.0.773 2,165 1/13/2025
3.0.772 1,796 1/13/2025
3.0.771 131 1/13/2025
3.0.770 6,869 1/11/2025
3.0.769 2,764 1/11/2025
3.0.768 155 1/11/2025
3.0.767 2,645 1/11/2025
3.0.766 142 1/11/2025
3.0.765 2,299 1/10/2025
3.0.764 2,606 1/10/2025
3.0.763 135 1/10/2025
3.0.762 1,081 1/10/2025
3.0.761 149 1/10/2025
3.0.760 137 1/10/2025
3.0.759 8,438 1/3/2025
3.0.758 595 1/3/2025
3.0.757 1,305 1/3/2025
3.0.756 171 1/3/2025
3.0.755 1,903 1/3/2025
3.0.754 145 1/3/2025
3.0.753 1,458 1/3/2025
3.0.752 1,373 1/2/2025
3.0.751 141 1/2/2025
3.0.750 2,328 1/2/2025
3.0.749 145 1/2/2025
3.0.748 3,876 1/2/2025
3.0.747 135 1/2/2025
3.0.746 154 1/2/2025
3.0.745 6,335 1/1/2025
3.0.744 1,336 1/1/2025
3.0.743 348 1/1/2025
3.0.742 162 1/1/2025
3.0.741 2,007 1/1/2025
3.0.740 147 1/1/2025
3.0.739 146 1/1/2025
3.0.738 157 1/1/2025
3.0.737 425 12/31/2024
3.0.736 158 12/31/2024
3.0.735 169 12/31/2024
3.0.734 816 12/31/2024
3.0.733 168 12/31/2024
3.0.732 6,186 12/31/2024
3.0.731 156 12/31/2024
3.0.730 5,929 12/31/2024
3.0.729 129 12/31/2024
3.0.728 3,400 12/31/2024
3.0.727 430 12/31/2024
3.0.726 146 12/31/2024
3.0.725 1,776 12/31/2024
3.0.724 144 12/31/2024
3.0.723 11,950 12/28/2024
3.0.722 1,533 12/28/2024
3.0.721 1,634 12/27/2024
3.0.720 158 12/27/2024
3.0.719 3,596 12/27/2024
3.0.718 6,739 12/24/2024
3.0.717 1,677 12/24/2024
3.0.716 1,207 12/24/2024
3.0.715 1,056 12/24/2024
3.0.714 1,855 12/24/2024
3.0.713 139 12/24/2024
3.0.712 2,951 12/24/2024
3.0.711 833 12/24/2024
3.0.710 140 12/24/2024
3.0.709 586 12/24/2024
3.0.708 1,267 12/24/2024
3.0.707 335 12/24/2024
3.0.706 168 12/24/2024
3.0.705 1,385 12/24/2024
3.0.704 149 12/24/2024
3.0.703 2,369 12/23/2024
3.0.702 3,758 12/23/2024
3.0.701 147 12/23/2024
3.0.700 914 12/23/2024
3.0.699 144 12/23/2024
3.0.698 2,550 12/23/2024
3.0.697 146 12/23/2024
3.0.696 1,927 12/23/2024
3.0.695 152 12/23/2024
3.0.694 586 12/22/2024
3.0.693 1,894 12/22/2024
3.0.692 5,395 12/22/2024
3.0.691 156 12/22/2024
3.0.690 2,118 12/22/2024
3.0.689 213 12/22/2024
3.0.688 611 12/22/2024
3.0.687 140 12/22/2024
3.0.686 348 12/22/2024
3.0.685 147 12/22/2024
3.0.684 9,088 12/22/2024
3.0.683 135 12/22/2024
3.0.682 1,442 12/21/2024
3.0.681 375 12/21/2024
3.0.680 143 12/21/2024
3.0.679 646 12/21/2024
3.0.678 1,046 12/21/2024
3.0.677 140 12/21/2024
3.0.676 5,200 12/21/2024
3.0.675 519 12/21/2024
3.0.674 143 12/21/2024
3.0.673 3,480 12/21/2024
3.0.672 903 12/21/2024
3.0.671 152 12/21/2024
3.0.670 2,082 12/20/2024
3.0.669 152 12/20/2024
3.0.668 148 12/20/2024
3.0.667 4,983 12/20/2024
3.0.666 1,465 12/20/2024
3.0.665 291 12/20/2024
3.0.664 4,652 12/19/2024
3.0.663 572 12/19/2024
3.0.662 2,746 12/18/2024
3.0.661 142 12/18/2024
3.0.660 8,554 12/17/2024
3.0.659 268 12/17/2024
3.0.658 907 12/16/2024
3.0.657 151 12/16/2024
3.0.656 195 12/16/2024
3.0.655 136 12/16/2024
3.0.654 8,541 12/10/2024
3.0.653 1,336 12/10/2024
3.0.652 507 12/9/2024
3.0.651 146 12/9/2024
3.0.650 3,582 12/9/2024
3.0.649 1,813 12/9/2024
3.0.648 142 12/9/2024
3.0.647 5,009 12/9/2024
3.0.646 3,734 12/6/2024
3.0.645 561 12/6/2024
3.0.644 147 12/6/2024
3.0.643 925 12/6/2024
3.0.641 5,162 12/6/2024
3.0.640 3,306 12/6/2024
3.0.639 7,143 12/6/2024
3.0.637 477 12/6/2024
3.0.636 3,417 12/5/2024
3.0.635 4,682 12/5/2024
3.0.634 3,994 12/5/2024
3.0.633 141 12/5/2024
3.0.632 2,497 12/5/2024
3.0.631 1,340 12/5/2024
3.0.630 150 12/5/2024
3.0.629 487 12/5/2024
3.0.628 143 12/5/2024
3.0.627 187 12/5/2024
3.0.626 143 12/5/2024
3.0.625 4,494 12/4/2024
3.0.624 145 12/4/2024
3.0.623 160 12/4/2024
3.0.622 163 12/4/2024
3.0.621 2,222 12/4/2024
3.0.620 392 12/4/2024
3.0.619 544 12/4/2024
3.0.618 4,517 12/3/2024
3.0.617 149 12/3/2024
3.0.616 1,490 12/3/2024
3.0.615 584 12/3/2024
3.0.614 160 12/3/2024
3.0.613 160 12/3/2024
3.0.612 5,316 12/3/2024
3.0.611 142 12/3/2024
3.0.610 4,465 12/3/2024
3.0.609 136 12/3/2024
3.0.608 4,113 12/2/2024
3.0.607 3,663 12/2/2024
3.0.606 2,216 12/2/2024
3.0.605 349 12/2/2024
3.0.604 151 12/2/2024
3.0.603 534 12/2/2024
3.0.602 4,584 12/1/2024
3.0.601 152 12/1/2024
3.0.600 2,510 12/1/2024
3.0.599 260 12/1/2024
3.0.598 4,655 12/1/2024
3.0.597 154 12/1/2024
3.0.596 4,753 11/29/2024
3.0.595 1,436 11/29/2024
3.0.594 7,509 11/21/2024
3.0.593 405 11/21/2024
3.0.592 6,033 11/20/2024
3.0.591 436 11/20/2024
3.0.590 156 11/20/2024
3.0.589 143 11/20/2024
3.0.588 569 11/20/2024
3.0.587 225 11/20/2024
3.0.586 141 11/20/2024
3.0.585 2,642 11/20/2024
3.0.584 3,629 11/19/2024
3.0.583 146 11/19/2024
3.0.582 828 11/19/2024
3.0.581 133 11/19/2024
3.0.580 3,360 11/19/2024
3.0.579 128 11/19/2024
3.0.578 1,693 11/19/2024
3.0.577 153 11/19/2024
3.0.576 11,266 11/14/2024
3.0.575 197 11/14/2024
3.0.574 682 11/14/2024
3.0.573 3,137 11/14/2024
3.0.572 981 11/14/2024
3.0.571 160 11/14/2024
3.0.570 155 11/14/2024
3.0.569 5,452 11/14/2024
3.0.568 153 11/14/2024
3.0.567 152 11/14/2024
3.0.566 4,699 11/14/2024
3.0.565 149 11/14/2024
3.0.564 151 11/14/2024
3.0.563 147 11/14/2024
2.1.562 10,953 11/13/2024
2.1.561 1,807 11/13/2024
2.1.560 4,018 11/13/2024
2.1.559 163 11/13/2024
2.1.558 1,767 11/12/2024
2.1.557 516 11/12/2024
2.1.556 10,694 11/9/2024
2.1.555 468 11/9/2024
2.1.554 161 11/9/2024
2.1.553 2,290 11/9/2024
2.1.552 146 11/9/2024
2.1.551 1,178 11/8/2024
2.1.550 150 11/8/2024
2.1.549 154 11/8/2024
2.1.548 152 11/8/2024
2.1.547 533 11/8/2024
2.1.546 2,469 11/8/2024
2.1.545 139 11/8/2024
2.1.544 7,150 11/8/2024
2.1.543 133 11/8/2024
2.1.542 15,341 11/1/2024
2.1.541 574 11/1/2024
2.1.540 8,891 10/29/2024
2.1.539 992 10/29/2024
2.1.538 3,640 10/29/2024
2.1.537 804 10/29/2024
2.1.536 7,237 10/28/2024
2.1.535 2,490 10/28/2024
2.1.534 5,109 10/26/2024
2.1.533 890 10/26/2024
2.1.532 11,282 10/22/2024
2.1.531 356 10/22/2024
2.1.530 699 10/22/2024
2.1.529 1,204 10/22/2024
2.1.528 146 10/22/2024
2.1.527 602 10/22/2024
2.1.526 8,606 10/18/2024
2.1.525 1,441 10/17/2024
2.1.524 5,477 10/15/2024
2.1.523 2,109 10/15/2024
2.1.522 146 10/14/2024
2.1.521 6,716 10/12/2024
2.1.520 857 10/11/2024
2.1.519 142 10/11/2024
2.1.518 626 10/11/2024
2.1.517 3,838 10/11/2024
2.1.516 8,467 10/9/2024
2.1.515 494 10/9/2024
2.1.514 132 10/9/2024
2.1.513 2,569 10/8/2024
2.1.512 198 10/8/2024
2.1.511 2,872 10/8/2024
2.1.510 178 10/8/2024
2.1.509 137 10/8/2024
2.1.508 5,236 10/8/2024
2.1.507 8,093 10/3/2024
2.1.506 148 10/3/2024
2.1.505 1,473 10/3/2024
2.1.504 2,578 10/3/2024
2.1.503 1,880 10/3/2024
2.1.502 7,608 10/2/2024
2.1.501 143 10/2/2024
2.1.500 2,394 10/2/2024
2.1.499 1,351 10/2/2024
2.1.498 5,473 10/1/2024
2.1.497 880 10/1/2024
2.1.496 157 10/1/2024
2.1.495 3,450 10/1/2024
2.1.494 150 10/1/2024
2.1.493 190 10/1/2024
2.1.492 7,111 9/29/2024
2.1.491 1,780 9/29/2024
2.1.490 148 9/29/2024
2.1.489 1,622 9/29/2024
2.1.488 158 9/29/2024
2.1.487 3,333 9/29/2024
2.1.486 6,762 9/27/2024
2.1.485 1,010 9/27/2024
2.1.484 4,077 9/27/2024
2.1.483 162 9/27/2024
2.1.482 547 9/27/2024
2.1.481 2,850 9/27/2024
2.1.480 4,158 9/26/2024
2.1.479 4,491 9/26/2024
2.1.478 3,063 9/26/2024
2.1.477 2,818 9/26/2024
2.1.476 4,889 9/26/2024
2.1.475 146 9/26/2024
2.1.474 7,256 9/23/2024
2.1.473 1,663 9/23/2024
2.1.472 1,241 9/23/2024
2.1.471 1,453 9/23/2024
2.1.470 158 9/23/2024
2.1.469 1,978 9/23/2024
2.1.468 132 9/23/2024
2.1.467 6,215 9/23/2024
2.1.466 153 9/23/2024
2.1.465 937 9/23/2024
2.1.464 167 9/23/2024
2.1.463 138 9/23/2024
2.1.462 1,183 9/23/2024
2.1.461 12,088 9/18/2024
2.1.460 325 9/17/2024
2.1.459 1,561 9/17/2024
2.1.458 2,170 9/17/2024
2.1.457 158 9/17/2024
2.1.456 2,319 9/17/2024
2.1.455 593 9/17/2024
2.1.454 4,205 9/17/2024
2.1.453 704 9/17/2024
2.1.452 261 9/17/2024
2.1.451 3,377 9/17/2024
2.1.450 9,688 9/16/2024
2.1.449 906 9/16/2024
2.1.448 6,387 9/12/2024
2.1.447 3,738 9/12/2024
2.1.446 1,684 9/11/2024
2.1.445 2,001 9/11/2024
2.1.443 4,658 9/11/2024
2.1.442 1,241 9/11/2024
2.1.441 1,184 9/11/2024
2.1.440 2,821 9/11/2024
2.1.439 10,171 9/10/2024
2.1.438 172 9/10/2024
2.1.437 1,458 9/10/2024
2.1.436 166 9/10/2024
2.1.434 3,657 9/10/2024
2.1.433 744 9/9/2024
2.1.432 2,361 9/9/2024
2.1.430 1,916 9/9/2024
2.1.428 175 9/9/2024
2.1.427 567 9/9/2024
2.1.426 16,600 9/7/2024
2.1.425 188 9/7/2024
2.1.424 6,338 9/6/2024
2.1.423 459 9/6/2024
2.1.422 2,837 9/6/2024
2.1.421 165 9/5/2024
2.1.420 174 9/5/2024
2.1.419 3,033 9/5/2024
2.1.418 1,407 9/5/2024
2.1.417 163 9/5/2024
2.1.416 1,408 9/5/2024
2.1.415 557 9/5/2024
2.1.414 160 9/5/2024
2.1.413 6,398 9/5/2024
2.1.412 242 9/5/2024
2.1.411 170 9/5/2024
2.1.410 2,852 9/4/2024
2.1.409 10,263 9/3/2024
2.1.408 152 9/3/2024
2.1.407 156 9/3/2024
2.1.406 5,125 9/3/2024
2.1.405 188 9/3/2024
2.1.404 3,187 9/3/2024
2.1.403 6,827 8/29/2024
2.1.402 3,286 8/29/2024
2.1.401 3,648 8/26/2024
2.1.400 146 8/26/2024
2.1.399 6,354 8/21/2024
2.1.398 769 8/21/2024
2.1.397 189 8/21/2024
2.1.396 3,328 8/21/2024
2.1.395 192 8/20/2024
2.1.394 191 8/20/2024
2.1.393 595 8/20/2024
2.1.392 3,847 8/20/2024
2.1.391 566 8/20/2024
2.1.390 165 8/20/2024
2.1.389 3,404 8/20/2024
2.1.388 170 8/20/2024
2.1.387 1,517 8/20/2024
2.1.386 3,758 8/19/2024
2.1.385 6,182 8/15/2024
2.1.384 2,691 8/15/2024
2.1.383 6,151 8/14/2024
2.1.382 191 8/13/2024
2.1.381 7,160 8/7/2024
2.1.380 374 8/6/2024
2.1.379 3,495 8/6/2024
2.1.378 6,448 8/1/2024
2.1.377 452 8/1/2024
2.1.376 145 8/1/2024
2.1.374 1,559 8/1/2024
2.1.373 7,652 7/25/2024
2.1.372 138 7/25/2024
2.1.371 986 7/25/2024
2.1.370 402 7/25/2024
2.1.369 464 7/25/2024
2.1.368 260 7/25/2024
2.1.367 514 7/24/2024
2.1.366 209 7/24/2024
2.1.365 288 7/24/2024
2.1.364 419 7/24/2024
2.1.363 11,033 7/20/2024
2.1.362 1,925 7/20/2024
2.1.361 6,579 7/14/2024
2.1.360 2,014 7/14/2024
2.1.359 153 7/14/2024
2.1.358 1,943 7/14/2024
2.1.357 5,614 7/10/2024
2.1.355 962 7/10/2024
2.1.354 1,542 7/10/2024
2.1.353 161 7/10/2024
2.1.352 2,333 7/10/2024
2.1.351 181 7/10/2024
2.1.350 150 7/10/2024
2.1.349 227 7/10/2024
2.1.348 157 7/10/2024
2.1.347 2,653 7/10/2024
2.1.346 173 7/10/2024
2.1.345 1,037 7/10/2024
2.1.344 152 7/10/2024
2.1.343 282 7/9/2024
2.1.342 138 7/9/2024
2.1.339 2,469 7/9/2024
2.1.338 581 7/9/2024
2.1.337 5,165 7/9/2024
2.1.336 1,431 7/9/2024
2.1.335 164 7/9/2024
2.1.334 3,375 7/9/2024
2.1.333 148 7/9/2024
2.1.332 10,997 7/9/2024
2.1.331 160 7/9/2024
2.1.330 3,221 7/9/2024
2.1.329 147 7/9/2024
2.1.328 1,353 7/9/2024
2.1.327 862 7/8/2024
2.1.326 1,282 7/8/2024
2.1.325 162 7/8/2024
2.1.324 172 7/8/2024
2.1.323 6,284 7/8/2024
2.1.322 2,097 7/8/2024
2.1.321 159 7/8/2024
2.1.320 2,998 7/7/2024
2.1.319 168 7/7/2024
2.1.318 183 7/7/2024
2.1.317 166 7/7/2024
2.1.316 1,487 7/7/2024
2.1.315 2,821 7/7/2024
2.1.314 2,390 7/7/2024
2.1.313 297 7/7/2024
2.1.312 4,394 7/5/2024
2.1.311 5,132 7/3/2024
2.1.310 3,945 7/3/2024
2.1.309 517 7/3/2024
2.1.308 5,226 7/2/2024
2.1.307 2,406 6/30/2024
2.1.306 2,917 6/28/2024
2.1.305 6,948 6/22/2024
2.1.304 6,283 6/15/2024
2.1.303 5,240 6/14/2024
2.1.302 7,525 6/1/2024
2.1.301 2,066 6/1/2024
2.1.300 764 6/1/2024
2.1.299 7,544 5/31/2024
2.1.298 4,773 5/29/2024
2.1.297 3,960 5/28/2024
2.1.296 3,171 5/27/2024
2.1.295 6,193 5/26/2024
2.1.294 2,616 5/26/2024
2.1.293 612 5/26/2024
2.1.292 3,286 5/25/2024
2.1.291 1,744 5/25/2024
2.1.290 179 5/25/2024
2.1.289 174 5/25/2024
2.1.288 905 5/25/2024
2.1.287 170 5/25/2024
2.1.286 509 5/25/2024
2.1.285 170 5/25/2024
2.1.284 166 5/25/2024
2.1.283 9,576 5/23/2024
2.1.282 697 5/23/2024
2.1.281 351 5/22/2024
2.1.280 4,676 5/22/2024
2.1.279 173 5/22/2024
2.1.278 181 5/22/2024
2.1.277 170 5/22/2024
2.1.276 2,792 5/22/2024
2.1.275 4,338 5/18/2024
2.1.274 2,423 5/18/2024
2.1.273 2,289 5/17/2024
2.1.272 166 5/17/2024
2.1.271 3,495 5/16/2024
2.1.270 568 5/15/2024
2.1.269 3,522 5/15/2024
2.1.268 5,750 5/12/2024
2.1.267 3,547 5/3/2024
2.1.266 1,492 4/30/2024
2.1.265 2,284 4/29/2024
2.1.264 2,407 4/29/2024
2.1.263 3,431 4/28/2024
2.1.262 1,907 4/28/2024
2.1.261 1,406 4/28/2024
2.1.260 2,241 4/28/2024
2.1.259 1,190 4/28/2024
2.1.258 158 4/28/2024
2.1.257 5,298 4/27/2024
2.1.256 179 4/27/2024
2.1.255 5,514 4/19/2024
2.1.254 5,198 4/18/2024
2.1.253 4,342 4/12/2024
2.1.252 1,444 4/12/2024
2.1.251 884 4/12/2024
2.1.250 1,093 4/12/2024
2.1.249 273 4/12/2024
2.1.248 153 4/12/2024
2.1.247 1,217 4/12/2024
2.1.246 394 4/12/2024
2.1.245 2,000 4/11/2024
2.1.244 4,726 4/10/2024
2.1.243 1,396 4/9/2024
2.1.242 3,947 4/2/2024
2.1.241 1,107 4/1/2024
2.1.240 2,600 3/29/2024
2.1.239 2,256 3/25/2024
2.1.238 383 3/25/2024
2.1.237 4,038 3/20/2024
2.1.236 2,641 3/19/2024
2.1.235 616 3/19/2024
2.1.234 2,981 3/18/2024
2.1.233 1,697 3/18/2024
2.1.232 1,635 3/15/2024
2.1.231 2,915 3/13/2024
2.1.230 1,342 3/13/2024
2.1.229 834 3/13/2024
2.1.228 932 3/13/2024
2.1.227 183 3/13/2024
2.1.226 657 3/13/2024
2.1.225 180 3/13/2024
2.1.224 184 3/13/2024
2.1.223 2,061 3/12/2024
2.1.222 3,456 3/11/2024
2.1.221 3,033 3/11/2024
2.1.220 2,025 3/10/2024
2.1.219 2,336 3/8/2024
2.1.218 1,296 3/8/2024
2.1.217 1,914 3/8/2024
2.1.216 2,552 3/6/2024
2.1.215 2,453 3/4/2024
2.1.214 1,719 3/4/2024
2.1.213 3,181 3/2/2024
2.1.212 1,482 3/2/2024
2.1.211 521 3/2/2024
2.1.210 447 3/2/2024
2.1.209 618 3/2/2024
2.1.208 4,190 2/29/2024
2.1.207 786 2/29/2024
2.1.206 438 2/29/2024
2.1.205 4,063 2/26/2024
2.1.204 1,772 2/25/2024
2.1.203 3,167 2/23/2024
2.1.202 2,280 2/22/2024
2.1.201 1,156 2/22/2024
2.1.200 552 2/21/2024
2.1.199 1,425 2/21/2024
2.1.198 372 2/21/2024
2.1.197 882 2/21/2024
2.1.196 168 2/21/2024
2.1.195 1,553 2/21/2024
2.1.194 522 2/21/2024
2.1.193 175 2/21/2024
2.1.192 186 2/21/2024
2.1.191 704 2/21/2024
2.1.190 162 2/21/2024
2.1.189 3,215 2/20/2024
2.1.188 858 2/20/2024
2.1.187 796 2/20/2024
2.1.186 974 2/20/2024
2.1.185 2,593 2/19/2024
2.1.184 2,272 2/17/2024
2.1.183 1,114 2/16/2024
2.1.182 1,029 2/16/2024
2.1.181 1,608 2/16/2024
2.1.180 178 2/16/2024
2.1.179 813 2/16/2024
2.1.178 180 2/16/2024
2.1.177 175 2/16/2024
2.1.176 688 2/16/2024
2.1.175 164 2/16/2024
2.1.174 4,007 2/13/2024
2.1.173 1,668 2/13/2024
2.1.172 1,328 2/13/2024
2.1.171 566 2/13/2024
2.1.170 753 2/13/2024
2.1.169 2,363 2/12/2024
2.1.168 604 2/11/2024
2.1.167 1,879 2/11/2024
2.1.166 1,055 2/11/2024
2.1.165 3,431 2/10/2024
2.1.164 662 2/9/2024
2.1.163 176 2/9/2024
2.1.162 1,895 2/9/2024
2.1.161 1,994 2/9/2024
2.1.160 500 2/8/2024
2.1.159 1,462 2/8/2024
2.1.158 1,018 2/8/2024
2.1.157 1,777 2/8/2024
2.1.156 162 2/8/2024
2.1.155 2,255 2/7/2024
2.1.154 553 2/7/2024
2.1.153 728 2/7/2024
2.1.152 1,551 2/7/2024
2.1.151 452 2/6/2024
2.1.150 171 2/6/2024
2.1.149 173 2/6/2024
2.1.148 3,330 2/5/2024
2.1.147 1,883 2/4/2024
2.1.146 2,537 2/2/2024
2.1.145 2,321 1/31/2024
2.1.144 2,537 1/29/2024
2.1.143 1,635 1/29/2024
2.1.142 451 1/29/2024
2.1.141 1,777 1/28/2024
2.1.140 577 1/28/2024
2.1.139 391 1/28/2024
2.1.138 658 1/28/2024
2.1.137 2,311 1/28/2024
2.1.136 1,173 1/28/2024
2.1.135 378 1/27/2024
2.1.134 1,129 1/27/2024
2.1.133 1,459 1/27/2024
2.1.132 1,467 1/27/2024
2.1.131 196 1/27/2024
2.1.130 817 1/27/2024
2.1.129 1,297 1/26/2024
2.1.128 300 1/26/2024
2.1.127 1,050 1/26/2024
2.1.126 1,390 1/26/2024
2.1.125 1,987 1/26/2024
2.1.124 1,097 1/25/2024
2.1.123 1,278 1/25/2024
2.1.122 558 1/25/2024
2.1.121 1,110 1/25/2024
2.1.120 628 1/25/2024
2.1.119 3,164 1/19/2024
2.1.118 2,621 1/15/2024
2.1.117 611 1/15/2024
2.1.116 1,515 1/15/2024
2.1.115 171 1/15/2024
2.1.114 690 1/15/2024
2.1.113 1,642 1/15/2024
2.1.112 3,022 1/14/2024
2.1.111 1,911 1/13/2024
2.1.110 2,149 1/12/2024
2.1.109 2,426 1/11/2024
2.1.108 3,145 1/7/2024
2.1.107 2,437 1/5/2024
2.1.106 614 1/5/2024
2.1.105 191 1/5/2024
2.1.104 179 1/5/2024
2.1.103 1,764 1/5/2024
2.1.102 185 1/5/2024
2.1.101 3,290 1/1/2024
2.1.100 2,653 12/28/2023
2.1.99 898 12/28/2023
2.1.98 615 12/28/2023
2.1.97 173 12/28/2023
2.1.96 177 12/28/2023
2.1.95 868 12/27/2023
2.1.94 191 12/27/2023
2.1.93 610 12/27/2023
2.1.92 185 12/27/2023
2.1.91 190 12/27/2023
2.1.90 2,721 12/25/2023
2.1.89 448 12/25/2023
2.1.88 984 12/25/2023
2.1.87 193 12/25/2023
2.1.86 831 12/25/2023
2.1.85 182 12/25/2023
2.1.84 730 12/25/2023
2.1.83 183 12/25/2023
2.1.82 2,061 12/24/2023
2.1.81 1,356 12/23/2023
2.1.80 1,087 12/23/2023
2.1.79 381 12/23/2023
2.1.78 700 12/23/2023
2.1.77 185 12/23/2023
2.1.76 170 12/23/2023
2.1.75 1,346 12/23/2023
2.1.74 173 12/23/2023
2.1.73 1,745 12/19/2023
2.1.72 278 12/19/2023
2.1.71 3,752 12/11/2023
2.1.70 899 12/10/2023
2.1.69 172 12/10/2023
2.1.68 571 12/10/2023
2.1.67 1,746 12/10/2023
2.1.66 473 12/9/2023
2.1.65 468 12/9/2023
2.1.64 365 12/9/2023
2.1.63 188 12/9/2023
2.1.62 331 12/9/2023
2.1.61 271 12/9/2023
2.1.60 168 12/9/2023
2.1.59 1,322 12/9/2023
2.1.58 183 12/9/2023
2.1.57 1,885 12/6/2023
2.1.56 498 12/6/2023
2.1.55 305 12/6/2023
2.1.54 342 12/6/2023
2.1.53 1,140 12/5/2023
2.1.52 479 12/5/2023
2.1.51 425 12/5/2023
2.1.50 477 12/5/2023
2.1.49 152 12/5/2023
2.1.48 429 12/5/2023
2.1.47 348 12/5/2023
2.1.46 155 12/4/2023
2.1.45 169 12/4/2023
2.1.44 421 12/4/2023
2.1.43 183 12/4/2023
2.1.42 1,282 12/4/2023
2.1.41 135 12/4/2023
2.1.40 1,479 11/27/2023
2.1.39 673 11/26/2023
2.1.38 290 11/26/2023
2.1.37 794 11/23/2023
2.1.36 883 11/23/2023
2.1.35 831 11/23/2023
2.1.34 164 11/23/2023
2.1.33 520 11/23/2023
2.1.32 175 11/23/2023
2.1.31 1,354 11/20/2023
2.1.30 1,415 11/20/2023
2.1.29 1,051 11/19/2023
2.1.28 331 11/19/2023
2.1.27 601 11/19/2023
2.1.26 620 11/19/2023
2.1.25 644 11/19/2023
2.1.24 153 11/19/2023
2.1.23 285 11/18/2023
2.1.22 1,261 11/18/2023
2.1.21 467 11/18/2023
2.1.20 689 11/18/2023
2.1.19 174 11/18/2023
2.1.18 384 11/18/2023
2.1.17 164 11/18/2023
2.1.16 777 11/17/2023
2.1.15 686 11/17/2023
2.1.14 164 11/17/2023
2.1.13 542 11/17/2023
2.1.12 387 11/17/2023
2.1.11 623 11/17/2023
2.1.10 160 11/17/2023
2.1.9 637 11/17/2023
2.1.8 168 11/17/2023
2.1.7 199 11/17/2023
2.1.6 428 11/17/2023
2.1.5 475 11/16/2023
2.0.101 2,767 11/15/2023
2.0.100 149 11/15/2023
2.0.99 168 11/15/2023
2.0.4 160 11/16/2023
2.0.3 173 11/16/2023
2.0.2 166 11/16/2023
2.0.1 159 11/16/2023
1.0.98 779 11/14/2023
1.0.97 933 11/13/2023
1.0.96 146 11/13/2023
1.0.95 671 11/10/2023
1.0.94 161 11/10/2023
1.0.93 1,159 11/9/2023
1.0.92 162 11/9/2023
1.0.91 1,275 11/7/2023
1.0.90 160 11/7/2023
1.0.89 617 11/6/2023
1.0.88 170 11/6/2023
1.0.87 722 11/3/2023
1.0.86 176 11/3/2023
1.0.85 1,079 11/2/2023
1.0.84 156 11/2/2023
1.0.83 740 11/1/2023
1.0.82 1,783 10/26/2023
1.0.81 1,613 10/19/2023
1.0.80 178 10/19/2023
1.0.79 967 10/18/2023
1.0.78 201 10/18/2023
1.0.77 883 10/17/2023
1.0.76 189 10/17/2023
1.0.75 813 10/16/2023
1.0.74 192 10/16/2023
1.0.73 858 10/13/2023
1.0.72 413 10/12/2023
1.0.71 2,069 9/20/2023
1.0.70 839 9/19/2023
1.0.69 832 9/18/2023
1.0.68 188 9/18/2023
1.0.67 1,106 9/14/2023
1.0.66 1,797 8/31/2023
1.0.65 191 8/31/2023
1.0.64 991 8/30/2023
1.0.63 216 8/30/2023
1.0.62 233 8/30/2023
1.0.61 1,017 8/28/2023
1.0.60 850 8/25/2023
1.0.59 193 8/25/2023
1.0.58 614 8/24/2023
1.0.57 1,773 8/21/2023
1.0.56 1,021 8/18/2023
1.0.55 909 8/17/2023
1.0.54 211 8/17/2023
1.0.53 2,319 8/10/2023
1.0.52 697 8/9/2023
1.0.51 830 8/8/2023
1.0.50 791 8/7/2023
1.0.49 238 8/7/2023
1.0.48 2,963 7/13/2023
1.0.47 1,074 7/11/2023
1.0.46 869 7/10/2023
1.0.45 835 7/7/2023
1.0.44 235 7/7/2023
1.0.43 2,524 6/30/2023
1.0.42 1,280 6/29/2023
1.0.41 716 6/28/2023
1.0.40 1,829 6/26/2023
1.0.39 969 6/23/2023
1.0.38 1,297 6/21/2023
1.0.37 1,756 6/15/2023
1.0.36 578 6/14/2023
1.0.35 2,128 6/9/2023
1.0.34 975 6/8/2023
1.0.33 1,873 6/7/2023
1.0.32 232 6/7/2023
1.0.31 1,403 6/6/2023
1.0.30 1,379 6/5/2023
1.0.29 1,563 6/2/2023
1.0.28 224 6/2/2023
1.0.27 1,440 6/1/2023
1.0.26 727 5/31/2023
1.0.25 582 5/31/2023
1.0.24 230 5/31/2023
1.0.23 1,694 5/30/2023
1.0.22 1,776 5/26/2023
1.0.21 820 5/25/2023
1.0.20 204 5/25/2023
1.0.19 967 5/24/2023
1.0.18 221 5/24/2023
1.0.17 565 5/23/2023
1.0.13 1,704 5/22/2023
1.0.12 1,407 5/18/2023
1.0.11 724 5/17/2023
1.0.10 1,743 5/1/2023
1.0.9 1,168 4/25/2023
1.0.8 565 4/24/2023
1.0.7 1,151 4/21/2023
1.0.6 2,233 4/13/2023
1.0.5 715 4/12/2023
1.0.4 1,175 4/8/2023
1.0.3 259 4/8/2023
1.0.2 706 4/8/2023
1.0.1 263 4/8/2023